diff --git a/docs/docs/components/checkbox.md b/docs/docs/components/checkbox.md index 57ff73526..ecbe6e8bb 100644 --- a/docs/docs/components/checkbox.md +++ b/docs/docs/components/checkbox.md @@ -1,7 +1,7 @@ --- title: Checkbox description: Checkboxes allow the user to toggle an option on or off. -tags: forms +tags: component native: checkbox --- @@ -93,4 +93,4 @@ Use the `setCustomValidity()` method to set a custom validation message. This wi }); }); -``` +``` \ No newline at end of file diff --git a/docs/docs/components/range.md b/docs/docs/components/range.md index b315eacf1..af8b884c0 100644 --- a/docs/docs/components/range.md +++ b/docs/docs/components/range.md @@ -1,7 +1,7 @@ --- title: Range description: Ranges allow the user to select a single value within a given range using a slider. -tags: forms +tags: component native: slider --- @@ -114,4 +114,4 @@ The component adapts to right-to-left (RTL) languages as you would expect. label="مقدار" hint="التحكم في مستوى صوت الأغنية الحالية." style="--track-color-active: var(--wa-color-brand-fill-loud)" value="10"> -``` +``` \ No newline at end of file diff --git a/docs/docs/components/select.md b/docs/docs/components/select.md index 44b7d5cb7..4d5e653fa 100644 --- a/docs/docs/components/select.md +++ b/docs/docs/components/select.md @@ -1,7 +1,7 @@ --- title: Select description: Selects allow you to choose items from a menu of predefined options. -tags: forms +tags: component native: select --- @@ -420,4 +420,4 @@ This can be hard to conceptualize, so heres a fairly large example showing how l // TODO - remove once we switch to the Popover API // document.querySelectorAll('wa-code-demo [slot="preview"] wa-select').forEach(select => select.hoist = true); - + \ No newline at end of file diff --git a/docs/docs/components/textarea.md b/docs/docs/components/textarea.md index 4e6970f94..44b8b7678 100644 --- a/docs/docs/components/textarea.md +++ b/docs/docs/components/textarea.md @@ -1,7 +1,7 @@ --- title: Textarea description: Textareas collect data from the user and allow multiple lines of text. -tags: forms +tags: component icon: textarea native: input --- @@ -114,4 +114,4 @@ Textareas can be made to resize both vertically and horizontally when `resize` i ```html {.example} -``` +``` \ No newline at end of file diff --git a/src/components/format-number/format-number.ts b/src/components/format-number/format-number.ts index 3a065f7f0..7b2dd2d75 100644 --- a/src/components/format-number/format-number.ts +++ b/src/components/format-number/format-number.ts @@ -34,10 +34,10 @@ export default class WaFormatNumber extends WebAwesomeElement { /** The minimum number of integer digits to use. Possible values are 1-21. */ @property({ attribute: 'minimum-integer-digits', type: Number }) minimumIntegerDigits: number; - /** The minimum number of fraction digits to use. Possible values are 0-20. */ + /** The minimum number of fraction digits to use. Possible values are 0-100. */ @property({ attribute: 'minimum-fraction-digits', type: Number }) minimumFractionDigits: number; - /** The maximum number of fraction digits to use. Possible values are 0-0. */ + /** The maximum number of fraction digits to use. Possible values are 0-100. */ @property({ attribute: 'maximum-fraction-digits', type: Number }) maximumFractionDigits: number; /** The minimum number of significant digits to use. Possible values are 1-21. */