diff --git a/packages/vue/src/accordion/docs/accordion.types.json b/packages/vue/src/accordion/docs/accordion.types.json index c8cc49cc96..4b2b5fe384 100644 --- a/packages/vue/src/accordion/docs/accordion.types.json +++ b/packages/vue/src/accordion/docs/accordion.types.json @@ -16,10 +16,15 @@ "description": "Whether the accordion items are disabled" }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n root: string\n item(value: string): string\n content(value: string): string\n trigger(value: string): string\n}>", "isRequired": false, diff --git a/packages/vue/src/checkbox/docs/checkbox.types.json b/packages/vue/src/checkbox/docs/checkbox.types.json index ca9b1b454e..f2421b9d18 100644 --- a/packages/vue/src/checkbox/docs/checkbox.types.json +++ b/packages/vue/src/checkbox/docs/checkbox.types.json @@ -21,10 +21,15 @@ "description": "The id of the form that the checkbox belongs to." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{ root: string; input: string; control: string; label: string }>", "isRequired": false, diff --git a/packages/vue/src/color-picker/docs/color-picker.types.json b/packages/vue/src/color-picker/docs/color-picker.types.json index c70b65fd4f..5ae3f39a7b 100644 --- a/packages/vue/src/color-picker/docs/color-picker.types.json +++ b/packages/vue/src/color-picker/docs/color-picker.types.json @@ -11,7 +11,7 @@ "description": "Whether the color picker is disabled" }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, @@ -48,79 +48,48 @@ "yChannel": { "type": "ColorChannel", "isRequired": true } }, "ColorPickerContext": { - "channels": { - "type": "[ColorChannel, ColorChannel, ColorChannel]", + "id": { + "type": "string", "isRequired": true, - "description": "The current color channels of the color" - }, - "contentProps": { "type": "Attrs", "isRequired": true }, - "eyeDropperTriggerProps": { "type": "ElementAttrs", "isRequired": true }, - "getAreaGradientProps": { - "type": "(props: ColorAreaProps) => Attrs", - "isRequired": true - }, - "getAreaProps": { - "type": "(props: ColorAreaProps) => Attrs", - "isRequired": true - }, - "getAreaThumbProps": { - "type": "(props: ColorAreaProps) => Attrs", - "isRequired": true + "description": "The unique identifier of the machine." }, - "getChannelInputProps": { - "type": "(props: ColorChannelInputProps) => ElementAttrs", - "isRequired": true + "dir": { + "type": "'ltr' | 'rtl'", + "isRequired": false, + "description": "The direction of the color picker" }, - "getChannelSliderBackgroundProps": { - "type": "(props: ColorChannelProps) => Attrs", - "isRequired": true + "disabled": { + "type": "boolean", + "isRequired": false, + "description": "Whether the color picker is disabled" }, - "getChannelSliderThumbProps": { - "type": "(props: ColorChannelProps) => Attrs", - "isRequired": true + "getRootNode": { + "type": "() => ShadowRoot | Node | Document", + "isRequired": false, + "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, - "getChannelSliderTrackProps": { - "type": "(props: ColorChannelProps) => Attrs", - "isRequired": true + "ids": { + "type": "Partial<{\n content: string\n area: string\n areaGradient: string\n areaThumb: string\n channelInput(id: string): string\n channelSliderTrack(id: ColorChannel): string\n channelSliderThumb(id: ColorChannel): string\n}>", + "isRequired": false, + "description": "The ids of the elements in the color picker. Useful for composition." }, - "getSwatchBackgroundProps": { - "type": "(props: ColorSwatchProps) => Attrs", - "isRequired": true + "modelValue": { "type": "string", "isRequired": false }, + "onChange": { + "type": "(details: ChangeDetails) => void", + "isRequired": false, + "description": "Handler that is called when the value changes, as the user drags." }, - "getSwatchProps": { - "type": "(props: ColorSwatchProps) => Attrs", - "isRequired": true + "onChangeEnd": { + "type": "(details: ChangeDetails) => void", + "isRequired": false, + "description": "Handler that is called when the user stops dragging." }, - "isDragging": { + "readOnly": { "type": "boolean", - "isRequired": true, - "description": "Whether the color picker is being dragged" - }, - "setChannelValue": { - "type": "(channel: ColorChannel, value: number) => void", - "isRequired": true, - "description": "Function to set the color value of a specific channel" - }, - "setColor": { - "type": "(value: string | Color) => void", - "isRequired": true, - "description": "Function to set the color value" - }, - "setFormat": { - "type": "(format: ColorFormat) => void", - "isRequired": true, - "description": "Function to set the color format" - }, - "value": { - "type": "string", - "isRequired": true, - "description": "The current color value (as a string)" + "isRequired": false, + "description": "Whether the color picker is read-only" }, - "valueAsColor": { - "type": "Color", - "isRequired": true, - "description": "The current color value (as a Color object)" - } + "value": { "type": "string", "isRequired": false, "description": "The current color value" } }, "ColorPickerSwatchProps": { "value": { "type": "string | Color", "isRequired": true }, diff --git a/packages/vue/src/combobox/docs/combobox.types.json b/packages/vue/src/combobox/docs/combobox.types.json index 1c8c730916..8770b23ff9 100644 --- a/packages/vue/src/combobox/docs/combobox.types.json +++ b/packages/vue/src/combobox/docs/combobox.types.json @@ -41,17 +41,22 @@ "description": "The associate form of the combobox." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n root: string\n label: string\n control: string\n input: string\n content: string\n trigger: string\n clearTrigger: string\n option(id: string, index?: number | undefined): string\n positioner: string\n}>", "isRequired": false, "description": "The ids of the elements in the combobox. Useful for composition." }, "inputBehavior": { - "type": "'none' | 'autohighlight' | 'autocomplete'", + "type": "'autohighlight' | 'autocomplete' | 'none'", "isRequired": false, "description": "Defines the auto-completion behavior of the combobox.\n\n- `autohighlight`: The first focused option is highlighted as the user types\n- `autocomplete`: Navigating the listbox with the arrow keys selects the option and the input is updated" }, diff --git a/packages/vue/src/dialog/docs/dialog.types.json b/packages/vue/src/dialog/docs/dialog.types.json index a4cedf5955..87c9e97c1b 100644 --- a/packages/vue/src/dialog/docs/dialog.types.json +++ b/packages/vue/src/dialog/docs/dialog.types.json @@ -26,10 +26,15 @@ "description": "Element to receive focus when the dialog is closed" }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n trigger: string\n container: string\n backdrop: string\n content: string\n closeTrigger: string\n title: string\n description: string\n}>", "isRequired": false, diff --git a/packages/vue/src/editable/docs/editable.types.json b/packages/vue/src/editable/docs/editable.types.json index 0ba6603d2b..87271ba4f6 100644 --- a/packages/vue/src/editable/docs/editable.types.json +++ b/packages/vue/src/editable/docs/editable.types.json @@ -31,7 +31,7 @@ "description": "The associate form of the underlying input." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, diff --git a/packages/vue/src/hover-card/docs/hover-card.types.json b/packages/vue/src/hover-card/docs/hover-card.types.json index 74ac22e0b3..0aef426be3 100644 --- a/packages/vue/src/hover-card/docs/hover-card.types.json +++ b/packages/vue/src/hover-card/docs/hover-card.types.json @@ -11,10 +11,15 @@ "description": "The document's text/writing direction." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n trigger: string\n content: string\n positioner: string\n arrow: string\n}>", "isRequired": false, diff --git a/packages/vue/src/menu/docs/menu.types.json b/packages/vue/src/menu/docs/menu.types.json index c29fe019bd..06d4b50b97 100644 --- a/packages/vue/src/menu/docs/menu.types.json +++ b/packages/vue/src/menu/docs/menu.types.json @@ -21,7 +21,7 @@ "description": "The document's text/writing direction." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, diff --git a/packages/vue/src/number-input/docs/number-input.types.json b/packages/vue/src/number-input/docs/number-input.types.json index 477000102a..3f88cb8a74 100644 --- a/packages/vue/src/number-input/docs/number-input.types.json +++ b/packages/vue/src/number-input/docs/number-input.types.json @@ -41,10 +41,15 @@ "description": "If using a custom display format, this converts the default format to the custom format." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n root: string\n label: string\n input: string\n incrementTrigger: string\n decrementTrigger: string\n scrubber: string\n}>", "isRequired": false, diff --git a/packages/vue/src/pagination/docs/pagination.types.json b/packages/vue/src/pagination/docs/pagination.types.json index bccae50967..f4f323350a 100644 --- a/packages/vue/src/pagination/docs/pagination.types.json +++ b/packages/vue/src/pagination/docs/pagination.types.json @@ -7,7 +7,7 @@ "description": "The document's text/writing direction." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, diff --git a/packages/vue/src/pin-input/docs/pin-input.types.json b/packages/vue/src/pin-input/docs/pin-input.types.json index 43a7c7bf47..71d6693c3a 100644 --- a/packages/vue/src/pin-input/docs/pin-input.types.json +++ b/packages/vue/src/pin-input/docs/pin-input.types.json @@ -1,4 +1,112 @@ { + "PinInputContext": { + "id": { + "type": "string", + "isRequired": true, + "description": "The unique identifier of the machine." + }, + "autoFocus": { + "type": "boolean", + "isRequired": false, + "description": "Whether to auto-focus the first input." + }, + "blurOnComplete": { + "type": "boolean", + "isRequired": false, + "description": "Whether to blur the input when the value is complete" + }, + "dir": { + "type": "'ltr' | 'rtl'", + "isRequired": false, + "description": "The document's text/writing direction." + }, + "disabled": { + "type": "boolean", + "isRequired": false, + "description": "Whether the inputs are disabled" + }, + "form": { + "type": "string", + "isRequired": false, + "description": "The associate form of the underlying input element." + }, + "getRootNode": { + "type": "() => ShadowRoot | Node | Document", + "isRequired": false, + "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." + }, + "ids": { + "type": "Partial<{\n root: string\n hiddenInput: string\n label: string\n control: string\n input(id: string): string\n}>", + "isRequired": false, + "description": "The ids of the elements in the pin input. Useful for composition." + }, + "invalid": { + "type": "boolean", + "isRequired": false, + "description": "Whether the pin input is in the invalid state" + }, + "mask": { + "type": "boolean", + "isRequired": false, + "description": "If `true`, the input's value will be masked just like `type=password`" + }, + "modelValue": { "type": "string[]", "isRequired": false }, + "name": { + "type": "string", + "isRequired": false, + "description": "The name of the input element. Useful for form submission." + }, + "onChange": { + "type": "(details: { value: string[] }) => void", + "isRequired": false, + "description": "Function called on input change" + }, + "onComplete": { + "type": "(details: { value: string[]; valueAsString: string }) => void", + "isRequired": false, + "description": "Function called when all inputs have valid values" + }, + "onInvalid": { + "type": "(details: { value: string; index: number }) => void", + "isRequired": false, + "description": "Function called when an invalid value is entered" + }, + "otp": { + "type": "boolean", + "isRequired": false, + "description": "If `true`, the pin input component signals to its fields that they should\nuse `autocomplete=\"one-time-code\"`." + }, + "pattern": { + "type": "string", + "isRequired": false, + "description": "The regular expression that the user-entered input value is checked against." + }, + "placeholder": { + "type": "string", + "isRequired": false, + "description": "The placeholder text for the input" + }, + "selectOnFocus": { + "type": "boolean", + "isRequired": false, + "description": "Whether to select input value when input is focused" + }, + "translations": { + "type": "IntlTranslations", + "isRequired": false, + "description": "Specifies the localized strings that identifies the accessibility elements and their states" + }, + "type": { + "type": "'numeric' | 'alphanumeric' | 'alphabetic'", + "isRequired": false, + "description": "The type of value the pin-input should allow" + }, + "value": { + "type": "string[]", + "isRequired": false, + "description": "The value of the the pin input." + } + }, "PinInputProps": { "autoFocus": { "type": "boolean", @@ -26,10 +134,15 @@ "description": "The associate form of the underlying input element." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n root: string\n hiddenInput: string\n label: string\n control: string\n input(id: string): string\n}>", "isRequired": false, diff --git a/packages/vue/src/popover/docs/popover.types.json b/packages/vue/src/popover/docs/popover.types.json index ccbd0822c3..a8d724ee9e 100644 --- a/packages/vue/src/popover/docs/popover.types.json +++ b/packages/vue/src/popover/docs/popover.types.json @@ -16,7 +16,7 @@ "description": "Whether to close the popover when the user clicks outside of the popover." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, diff --git a/packages/vue/src/pressable/docs/pressable.types.json b/packages/vue/src/pressable/docs/pressable.types.json index e9e7f864e3..ee1fea4a20 100644 --- a/packages/vue/src/pressable/docs/pressable.types.json +++ b/packages/vue/src/pressable/docs/pressable.types.json @@ -1,71 +1,42 @@ { "PressableProps": { - "allowTextSelectionOnPress": { - "type": "boolean", - "isRequired": false, - "description": "Whether text selection should be enabled on the pressable element." - }, - "dir": { - "type": "'ltr' | 'rtl'", + "id": { + "type": "string", "isRequired": false, - "description": "The document's text/writing direction." - }, - "getRootNode": { - "type": "() => Node | ShadowRoot | Document", - "isRequired": false, - "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." - }, - "isCanceledOnExit": { "type": "boolean", "isRequired": false }, - "isDisabled": { "type": "boolean", "isRequired": false }, - "onLongPress": { - "type": "(event: PressEvent) => void", - "isRequired": false, - "description": "Handler that is called when the element has been pressed for 500 milliseconds" - }, - "onPress": { - "type": "(event: PressEvent) => void", - "isRequired": false, - "description": "Handler that is called when the press is released over the target." - }, - "onPressEnd": { - "type": "(event: PressEvent) => void", - "isRequired": false, - "description": "Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target." - }, - "onPressStart": { - "type": "(event: PressEvent) => void", - "isRequired": false, - "description": "Handler that is called when a press interaction starts." - }, - "onPressUp": { - "type": "(event: PressEvent) => void", - "isRequired": false, - "description": "Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not." - }, - "preventFocusOnPress": { - "type": "boolean", - "isRequired": false, - "description": "Whether the target should not receive focus on press." + "description": "The unique identifier of the machine." } }, "UsePressableContext": { + "id": { + "type": "string", + "isRequired": true, + "description": "The unique identifier of the machine." + }, "allowTextSelectionOnPress": { "type": "boolean", "isRequired": false, "description": "Whether text selection should be enabled on the pressable element." }, + "cancelOnPointerExit": { + "type": "boolean", + "isRequired": false, + "description": "Whether press events should be canceled when the pointer leaves the target while pressed.\n\nBy default, this is `false`, which means if the pointer returns back over the target while\nstill pressed, onPressStart will be fired again.\n\nIf set to `true`, the press is canceled when the pointer leaves the target and\nonPressStart will not be fired if the pointer returns." + }, "dir": { "type": "'ltr' | 'rtl'", "isRequired": false, "description": "The document's text/writing direction." }, + "disabled": { + "type": "boolean", + "isRequired": false, + "description": "Whether the element is disabled" + }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, - "isCanceledOnExit": { "type": "boolean", "isRequired": false }, - "isDisabled": { "type": "boolean", "isRequired": false }, "onLongPress": { "type": "(event: PressEvent) => void", "isRequired": false, diff --git a/packages/vue/src/radio-group/docs/radio-group.types.json b/packages/vue/src/radio-group/docs/radio-group.types.json index db360b28a1..b880998568 100644 --- a/packages/vue/src/radio-group/docs/radio-group.types.json +++ b/packages/vue/src/radio-group/docs/radio-group.types.json @@ -11,6 +11,7 @@ "isRequired": false, "description": "If `true`, the radio is marked as invalid." }, + "modelValue": { "type": "string", "isRequired": false }, "readOnly": { "type": "boolean", "isRequired": false, @@ -34,7 +35,7 @@ "description": "The associate form of the underlying input." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, diff --git a/packages/vue/src/range-slider/docs/range-slider.types.json b/packages/vue/src/range-slider/docs/range-slider.types.json index c94ba1215b..941237174b 100644 --- a/packages/vue/src/range-slider/docs/range-slider.types.json +++ b/packages/vue/src/range-slider/docs/range-slider.types.json @@ -31,7 +31,7 @@ "description": "Function that returns a human readable value for the slider thumb" }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, diff --git a/packages/vue/src/rating-group/docs/rating-group.types.json b/packages/vue/src/rating-group/docs/rating-group.types.json index 782dcda7ba..fa6dc44269 100644 --- a/packages/vue/src/rating-group/docs/rating-group.types.json +++ b/packages/vue/src/rating-group/docs/rating-group.types.json @@ -27,10 +27,15 @@ "description": "The associate form of the underlying input element." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n root: string\n label: string\n hiddenInput: string\n control: string\n rating(id: string): string\n}>", "isRequired": false, diff --git a/packages/vue/src/select/docs/select.types.json b/packages/vue/src/select/docs/select.types.json index 284cad5327..73a8f10dd1 100644 --- a/packages/vue/src/select/docs/select.types.json +++ b/packages/vue/src/select/docs/select.types.json @@ -21,7 +21,7 @@ "description": "The associate form of the underlying select." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, @@ -30,6 +30,11 @@ "isRequired": false, "description": "The highlighted option" }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n content: string\n trigger: string\n label: string\n option(id: string | number): string\n hiddenSelect: string\n positioner: string\n optionGroup(id: string | number): string\n optionGroupLabel(id: string | number): string\n}>", "isRequired": false, diff --git a/packages/vue/src/slider/docs/slider.types.json b/packages/vue/src/slider/docs/slider.types.json index 26575dda4c..e1f420595d 100644 --- a/packages/vue/src/slider/docs/slider.types.json +++ b/packages/vue/src/slider/docs/slider.types.json @@ -36,7 +36,7 @@ "description": "Function that returns a human readable value for the slider" }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, diff --git a/packages/vue/src/splitter/docs/splitter.types.json b/packages/vue/src/splitter/docs/splitter.types.json index 97bd70caf7..9554919f2d 100644 --- a/packages/vue/src/splitter/docs/splitter.types.json +++ b/packages/vue/src/splitter/docs/splitter.types.json @@ -6,7 +6,7 @@ "description": "The document's text/writing direction." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, diff --git a/packages/vue/src/tabs/docs/tabs.types.json b/packages/vue/src/tabs/docs/tabs.types.json index aa56e88b00..52a10e00ff 100644 --- a/packages/vue/src/tabs/docs/tabs.types.json +++ b/packages/vue/src/tabs/docs/tabs.types.json @@ -17,10 +17,15 @@ "description": "The document's text/writing direction." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine." + }, "ids": { "type": "Partial<{\n root: string\n trigger: string\n tablist: string\n contentGroup: string\n content: string\n indicator: string\n}>", "isRequired": false, @@ -55,6 +60,7 @@ "type": "IntlTranslations", "isRequired": false, "description": "Specifies the localized strings that identifies the accessibility elements and their states" - } + }, + "value": { "type": "string", "isRequired": false, "description": "The selected tab id" } } } diff --git a/packages/vue/src/tags-input/docs/tags-input.types.json b/packages/vue/src/tags-input/docs/tags-input.types.json index fe0b98c4fc..4f46572124 100644 --- a/packages/vue/src/tags-input/docs/tags-input.types.json +++ b/packages/vue/src/tags-input/docs/tags-input.types.json @@ -56,7 +56,7 @@ "description": "The associate form of the underlying input element." }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, @@ -208,10 +208,6 @@ "description": "The value of the tags as a string." } }, - "UseTagsInputProps": { - "context": { "type": "UseTagsInputPropsContext", "isRequired": true }, - "emit": { "type": "CallableFunction", "isRequired": true } - }, "UseTagsInputReturn": { "addValue": { "type": "(value: string) => void", diff --git a/packages/vue/src/tooltip/docs/tooltip.types.json b/packages/vue/src/tooltip/docs/tooltip.types.json index d16f8dfb30..973f94757f 100644 --- a/packages/vue/src/tooltip/docs/tooltip.types.json +++ b/packages/vue/src/tooltip/docs/tooltip.types.json @@ -26,10 +26,15 @@ "description": "Whether the tooltip is disabled" }, "getRootNode": { - "type": "() => Node | ShadowRoot | Document", + "type": "() => ShadowRoot | Node | Document", "isRequired": false, "description": "A root node to correctly resolve document in custom environments. E.x.: Iframes, Electron." }, + "id": { + "type": "string", + "isRequired": false, + "description": "The unique identifier of the machine.\n\n\nThe `id` of the tooltip." + }, "ids": { "type": "Partial<{\n trigger: string\n content: string\n arrow: string\n positioner: string\n}>", "isRequired": false,