From 10bfb1fa493d05cb83dc7ce37d70a338e5b80462 Mon Sep 17 00:00:00 2001 From: Joe Fehrman Date: Wed, 15 May 2024 09:54:59 -0400 Subject: [PATCH 1/7] refactor: Renaming onConfirmDisabled to isConfirmDisabled. --- .../components/alert-dialog/src/AlertDialog.tsx | 14 ++++++++++++-- .../alert-dialog/src/AlertDialogFooter.tsx | 7 +++++-- .../alert-dialog/stories/index.stories.tsx | 2 +- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/packages/paste-core/components/alert-dialog/src/AlertDialog.tsx b/packages/paste-core/components/alert-dialog/src/AlertDialog.tsx index 741a93b25e..e8d0dcb71f 100644 --- a/packages/paste-core/components/alert-dialog/src/AlertDialog.tsx +++ b/packages/paste-core/components/alert-dialog/src/AlertDialog.tsx @@ -75,13 +75,22 @@ export interface AlertDialogProps extends HTMLPasteProps<"div"> { */ onDismissLabel: string; /** - * Disable the confirm button + * Disable the confirm button. Use isConfirmDisabled + * @deprecated This prop has been deprecated in favor of the `isConfirmDisabled` prop. * * @default false * @type {boolean} * @memberof AlertDialogProps */ onConfirmDisabled?: boolean; + /** + * Disable the confirm button + * + * @default false + * @type {boolean} + * @memberof AlertDialogProps + */ + isConfirmDisabled?: boolean; /** * Overrides the default element name to apply unique styles with the Customization Provider * @@ -105,6 +114,7 @@ export const AlertDialog = React.forwardRef( onDismiss, onDismissLabel, onConfirmDisabled, + isConfirmDisabled, ...props }, ref, @@ -143,7 +153,7 @@ export const AlertDialog = React.forwardRef( onDismissLabel={onDismissLabel} onConfirm={onConfirm} onConfirmLabel={onConfirmLabel} - onConfirmDisabled={onConfirmDisabled} + isConfirmDisabled={isConfirmDisabled || onConfirmDisabled} /> diff --git a/packages/paste-core/components/alert-dialog/src/AlertDialogFooter.tsx b/packages/paste-core/components/alert-dialog/src/AlertDialogFooter.tsx index 253ba95bf6..2912576abb 100644 --- a/packages/paste-core/components/alert-dialog/src/AlertDialogFooter.tsx +++ b/packages/paste-core/components/alert-dialog/src/AlertDialogFooter.tsx @@ -11,6 +11,8 @@ export interface AlertDialogFooterProps extends HTMLPasteProps<"div">, Pick void; onDismissLabel: string; + isConfirmDisabled?: boolean; + /** @deprecated This prop has been deprecated in favor of the `isConfirmDisabled` prop. */ onConfirmDisabled?: boolean; } @@ -23,7 +25,8 @@ export const AlertDialogFooter = React.forwardRef {onDismissLabel} - diff --git a/packages/paste-core/components/alert-dialog/stories/index.stories.tsx b/packages/paste-core/components/alert-dialog/stories/index.stories.tsx index 1ebee777a8..4e3e47c1b4 100644 --- a/packages/paste-core/components/alert-dialog/stories/index.stories.tsx +++ b/packages/paste-core/components/alert-dialog/stories/index.stories.tsx @@ -129,7 +129,7 @@ export const DisabledButtonDestructiveAlertDialog = ({ dialogIsOpen = false }): onDismiss={handleDismiss} onDismissLabel="Cancel" destructive - onConfirmDisabled={isDisabled} + isConfirmDisabled={isDisabled} > You're about to delete “Toyota TCB Automobile (Gevelsberg)“ and all data associated with it. This regulatory bundle will be deleted immediately. You can't undo this action. From b044ce02b0d3f552886d3a44770a64ad5aca44ae Mon Sep 17 00:00:00 2001 From: Joe Fehrman Date: Fri, 17 May 2024 09:57:36 -0400 Subject: [PATCH 2/7] chore: Adding changeset. --- .changeset/three-carrots-hope.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/three-carrots-hope.md diff --git a/.changeset/three-carrots-hope.md b/.changeset/three-carrots-hope.md new file mode 100644 index 0000000000..03fd1f9b78 --- /dev/null +++ b/.changeset/three-carrots-hope.md @@ -0,0 +1,6 @@ +--- +"@twilio-paste/alert-dialog": patch +"@twilio-paste/core": patch +--- + +Changing the property name, onConfirmDisabled, in AlertDialog component. The property is called isConfirmDisabled. Non breaking change. From 43ee956b9431acf5c695fc966a6da708ea7f1985 Mon Sep 17 00:00:00 2001 From: Joe Fehrman Date: Fri, 17 May 2024 10:01:14 -0400 Subject: [PATCH 3/7] chore: Generating typedocs. --- .../account-switcher/type-docs.json | 14 ++-- .../components/alert-dialog/type-docs.json | 11 ++- .../components/alert/type-docs.json | 2 +- .../components/button/type-docs.json | 81 +++++++++++++------ .../components/chat-log/type-docs.json | 26 +++--- .../components/code-block/type-docs.json | 12 +-- .../components/data-grid/type-docs.json | 16 ++-- .../components/file-picker/type-docs.json | 2 +- .../components/file-uploader/type-docs.json | 4 +- .../components/input/type-docs.json | 2 +- .../minimizable-dialog/type-docs.json | 8 +- .../components/modal/type-docs.json | 12 +-- .../radio-button-group/type-docs.json | 2 +- .../components/side-modal/type-docs.json | 14 ++-- .../components/sidebar/type-docs.json | 32 ++++---- .../components/status/type-docs.json | 14 ++-- .../components/toast/type-docs.json | 4 +- .../components/user-dialog/type-docs.json | 12 +-- 18 files changed, 155 insertions(+), 113 deletions(-) diff --git a/packages/paste-core/components/account-switcher/type-docs.json b/packages/paste-core/components/account-switcher/type-docs.json index 6621159fbe..94bc68dd52 100644 --- a/packages/paste-core/components/account-switcher/type-docs.json +++ b/packages/paste-core/components/account-switcher/type-docs.json @@ -1150,7 +1150,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2997,7 +2997,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4855,7 +4855,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6714,7 +6714,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"next\"\n | \"previous\"\n | \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"send\"", + "type": "| \"search\"\n | \"next\"\n | \"previous\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true @@ -6802,7 +6802,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8610,7 +8610,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10205,7 +10205,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/alert-dialog/type-docs.json b/packages/paste-core/components/alert-dialog/type-docs.json index 566e5c68cf..47f75d6a49 100644 --- a/packages/paste-core/components/alert-dialog/type-docs.json +++ b/packages/paste-core/components/alert-dialog/type-docs.json @@ -489,7 +489,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -502,6 +502,13 @@ "externalProp": true, "description": "Specify that a standard HTML element should behave like a defined custom built-in element" }, + "isConfirmDisabled": { + "type": "boolean", + "defaultValue": false, + "required": false, + "externalProp": false, + "description": "Disable the confirm button" + }, "itemID": { "type": "string", "defaultValue": null, @@ -723,7 +730,7 @@ "defaultValue": false, "required": false, "externalProp": false, - "description": "Disable the confirm button" + "description": "Disable the confirm button. Use isConfirmDisabled" }, "onContextMenu": { "type": "MouseEventHandler", diff --git a/packages/paste-core/components/alert/type-docs.json b/packages/paste-core/components/alert/type-docs.json index 6e0fbb47f2..020964cc8d 100644 --- a/packages/paste-core/components/alert/type-docs.json +++ b/packages/paste-core/components/alert/type-docs.json @@ -474,7 +474,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/button/type-docs.json b/packages/paste-core/components/button/type-docs.json index 132eeda21f..ec8f51abe3 100644 --- a/packages/paste-core/components/button/type-docs.json +++ b/packages/paste-core/components/button/type-docs.json @@ -40,12 +40,25 @@ "externalProp": true, "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made." }, + "aria-braillelabel": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a string value that labels the current element, which is intended to be converted into Braille." + }, + "aria-brailleroledescription": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille." + }, "aria-busy": { "type": "Booleanish", "defaultValue": null, "required": false, - "externalProp": true, - "description": "Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user." + "externalProp": true }, "aria-checked": { "type": "boolean | \"true\" | \"false\" | \"mixed\"", @@ -68,6 +81,13 @@ "externalProp": true, "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid." }, + "aria-colindextext": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a human readable text alternative of aria-colindex." + }, "aria-colspan": { "type": "number", "defaultValue": null, @@ -96,6 +116,13 @@ "externalProp": true, "description": "Identifies the element (or elements) that describes the object." }, + "aria-description": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a string value that describes or annotates the current element." + }, "aria-details": { "type": "string", "defaultValue": null, @@ -299,6 +326,13 @@ "externalProp": true, "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid." }, + "aria-rowindextext": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a human readable text alternative of aria-rowindex." + }, "aria-rowspan": { "type": "number", "defaultValue": null, @@ -386,8 +420,15 @@ "required": false, "externalProp": true }, + "content": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Style prop for the CSS `content` property" + }, "contentEditable": { - "type": "Booleanish | \"inherit\"", + "type": "Booleanish | \"inherit\" | \"plaintext-only\"", "defaultValue": null, "required": false, "externalProp": true @@ -399,7 +440,7 @@ "externalProp": true }, "dangerouslySetInnerHTML": { - "type": "{ __html: string }", + "type": "{ __html: string | TrustedHTML }", "defaultValue": null, "required": false, "externalProp": true @@ -524,7 +565,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"search\"\n | \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -1264,24 +1305,12 @@ "required": false, "externalProp": true }, - "onPointerEnterCapture": { - "type": "PointerEventHandler", - "defaultValue": null, - "required": false, - "externalProp": true - }, "onPointerLeave": { "type": "PointerEventHandler", "defaultValue": null, "required": false, "externalProp": true }, - "onPointerLeaveCapture": { - "type": "PointerEventHandler", - "defaultValue": null, - "required": false, - "externalProp": true - }, "onPointerMove": { "type": "PointerEventHandler", "defaultValue": null, @@ -1570,12 +1599,6 @@ "required": false, "externalProp": true }, - "placeholder": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true - }, "prefix": { "type": "string", "defaultValue": null, @@ -1601,6 +1624,12 @@ "required": false, "externalProp": true }, + "rel": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true + }, "resource": { "type": "string", "defaultValue": null, @@ -1613,6 +1642,12 @@ "required": false, "externalProp": true }, + "rev": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true + }, "role": { "type": "AriaRole", "defaultValue": null, diff --git a/packages/paste-core/components/chat-log/type-docs.json b/packages/paste-core/components/chat-log/type-docs.json index 3e26814599..a64d094430 100644 --- a/packages/paste-core/components/chat-log/type-docs.json +++ b/packages/paste-core/components/chat-log/type-docs.json @@ -440,7 +440,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2029,7 +2029,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3612,7 +3612,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5195,7 +5195,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6778,7 +6778,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8368,7 +8368,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -9965,7 +9965,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11595,7 +11595,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -13402,7 +13402,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -14985,7 +14985,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -16568,7 +16568,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -18151,7 +18151,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -19734,7 +19734,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/code-block/type-docs.json b/packages/paste-core/components/code-block/type-docs.json index 16401c9b50..63bfd1404f 100644 --- a/packages/paste-core/components/code-block/type-docs.json +++ b/packages/paste-core/components/code-block/type-docs.json @@ -484,7 +484,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2099,7 +2099,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3697,7 +3697,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5273,7 +5273,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6863,7 +6863,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8446,7 +8446,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/data-grid/type-docs.json b/packages/paste-core/components/data-grid/type-docs.json index 9fd3f2e948..ce6aac3c38 100644 --- a/packages/paste-core/components/data-grid/type-docs.json +++ b/packages/paste-core/components/data-grid/type-docs.json @@ -476,7 +476,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2120,7 +2120,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3717,7 +3717,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5344,7 +5344,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7036,7 +7036,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8638,7 +8638,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10252,7 +10252,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11868,7 +11868,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/file-picker/type-docs.json b/packages/paste-core/components/file-picker/type-docs.json index c4851fbfca..046b4ac322 100644 --- a/packages/paste-core/components/file-picker/type-docs.json +++ b/packages/paste-core/components/file-picker/type-docs.json @@ -472,7 +472,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", + "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/file-uploader/type-docs.json b/packages/paste-core/components/file-uploader/type-docs.json index 6e345db756..a3029abb27 100644 --- a/packages/paste-core/components/file-uploader/type-docs.json +++ b/packages/paste-core/components/file-uploader/type-docs.json @@ -478,7 +478,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", + "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true @@ -11807,7 +11807,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", + "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/input/type-docs.json b/packages/paste-core/components/input/type-docs.json index e048be05e1..05a4f1ba7c 100644 --- a/packages/paste-core/components/input/type-docs.json +++ b/packages/paste-core/components/input/type-docs.json @@ -572,7 +572,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"email\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"none\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"email\"\n | \"tel\"\n | \"url\"\n | \"none\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/minimizable-dialog/type-docs.json b/packages/paste-core/components/minimizable-dialog/type-docs.json index 10a8eee489..4318ffb7e8 100644 --- a/packages/paste-core/components/minimizable-dialog/type-docs.json +++ b/packages/paste-core/components/minimizable-dialog/type-docs.json @@ -686,7 +686,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2346,7 +2346,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3994,7 +3994,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5662,7 +5662,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/modal/type-docs.json b/packages/paste-core/components/modal/type-docs.json index c90272dfe2..120a1c0b5c 100644 --- a/packages/paste-core/components/modal/type-docs.json +++ b/packages/paste-core/components/modal/type-docs.json @@ -482,7 +482,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2072,7 +2072,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3670,7 +3670,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5253,7 +5253,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6836,7 +6836,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8419,7 +8419,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/radio-button-group/type-docs.json b/packages/paste-core/components/radio-button-group/type-docs.json index 0d029dd20e..9f768e5b88 100644 --- a/packages/paste-core/components/radio-button-group/type-docs.json +++ b/packages/paste-core/components/radio-button-group/type-docs.json @@ -473,7 +473,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider." }, "enterKeyHint": { - "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", + "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/side-modal/type-docs.json b/packages/paste-core/components/side-modal/type-docs.json index e778996ee8..9fd75f0db8 100644 --- a/packages/paste-core/components/side-modal/type-docs.json +++ b/packages/paste-core/components/side-modal/type-docs.json @@ -447,7 +447,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2108,7 +2108,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3743,7 +3743,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5341,7 +5341,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7170,7 +7170,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8753,7 +8753,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10336,7 +10336,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/sidebar/type-docs.json b/packages/paste-core/components/sidebar/type-docs.json index 11ac57dc8e..c25812c4ce 100644 --- a/packages/paste-core/components/sidebar/type-docs.json +++ b/packages/paste-core/components/sidebar/type-docs.json @@ -496,7 +496,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2079,7 +2079,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3669,7 +3669,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5266,7 +5266,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6856,7 +6856,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8439,7 +8439,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10092,7 +10092,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11708,7 +11708,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -13353,7 +13353,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -14969,7 +14969,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -16660,7 +16660,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -18250,7 +18250,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -19867,7 +19867,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -21516,7 +21516,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -23142,7 +23142,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -24738,7 +24738,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/status/type-docs.json b/packages/paste-core/components/status/type-docs.json index 618e843dfb..3b7bba2eda 100644 --- a/packages/paste-core/components/status/type-docs.json +++ b/packages/paste-core/components/status/type-docs.json @@ -460,7 +460,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2766,7 +2766,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4613,7 +4613,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6471,7 +6471,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8411,7 +8411,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10463,7 +10463,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -12264,7 +12264,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/toast/type-docs.json b/packages/paste-core/components/toast/type-docs.json index 93ff6dd816..ec226945ba 100644 --- a/packages/paste-core/components/toast/type-docs.json +++ b/packages/paste-core/components/toast/type-docs.json @@ -482,7 +482,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2095,7 +2095,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/user-dialog/type-docs.json b/packages/paste-core/components/user-dialog/type-docs.json index 536e0cfa0d..ffd9c42d63 100644 --- a/packages/paste-core/components/user-dialog/type-docs.json +++ b/packages/paste-core/components/user-dialog/type-docs.json @@ -461,7 +461,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2432,7 +2432,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4015,7 +4015,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5598,7 +5598,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7269,7 +7269,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -9316,7 +9316,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, From 26189da497564ed9d4a6b20e3f0b7e5d188859b7 Mon Sep 17 00:00:00 2001 From: Joe Fehrman Date: Mon, 20 May 2024 10:42:14 -0400 Subject: [PATCH 4/7] refactor: Adding fallback boolean too be defensive. --- .../components/alert-dialog/src/AlertDialogFooter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/paste-core/components/alert-dialog/src/AlertDialogFooter.tsx b/packages/paste-core/components/alert-dialog/src/AlertDialogFooter.tsx index 2912576abb..ef247f3cf9 100644 --- a/packages/paste-core/components/alert-dialog/src/AlertDialogFooter.tsx +++ b/packages/paste-core/components/alert-dialog/src/AlertDialogFooter.tsx @@ -50,7 +50,7 @@ export const AlertDialogFooter = React.forwardRef {onDismissLabel} - From bbf577b69fd4b2f9123de768a4259d4e684f521c Mon Sep 17 00:00:00 2001 From: Joe Fehrman Date: Wed, 22 May 2024 10:17:09 -0400 Subject: [PATCH 5/7] Revert "chore: Generating typedocs." This reverts commit 43ee956b9431acf5c695fc966a6da708ea7f1985. --- .../account-switcher/type-docs.json | 14 ++-- .../components/alert-dialog/type-docs.json | 11 +-- .../components/alert/type-docs.json | 2 +- .../components/button/type-docs.json | 81 ++++++------------- .../components/chat-log/type-docs.json | 26 +++--- .../components/code-block/type-docs.json | 12 +-- .../components/data-grid/type-docs.json | 16 ++-- .../components/file-picker/type-docs.json | 2 +- .../components/file-uploader/type-docs.json | 4 +- .../components/input/type-docs.json | 2 +- .../minimizable-dialog/type-docs.json | 8 +- .../components/modal/type-docs.json | 12 +-- .../radio-button-group/type-docs.json | 2 +- .../components/side-modal/type-docs.json | 14 ++-- .../components/sidebar/type-docs.json | 32 ++++---- .../components/status/type-docs.json | 14 ++-- .../components/toast/type-docs.json | 4 +- .../components/user-dialog/type-docs.json | 12 +-- 18 files changed, 113 insertions(+), 155 deletions(-) diff --git a/packages/paste-core/components/account-switcher/type-docs.json b/packages/paste-core/components/account-switcher/type-docs.json index 94bc68dd52..6621159fbe 100644 --- a/packages/paste-core/components/account-switcher/type-docs.json +++ b/packages/paste-core/components/account-switcher/type-docs.json @@ -1150,7 +1150,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2997,7 +2997,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4855,7 +4855,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6714,7 +6714,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"search\"\n | \"next\"\n | \"previous\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"send\"", + "type": "| \"next\"\n | \"previous\"\n | \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true @@ -6802,7 +6802,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8610,7 +8610,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10205,7 +10205,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/alert-dialog/type-docs.json b/packages/paste-core/components/alert-dialog/type-docs.json index 47f75d6a49..566e5c68cf 100644 --- a/packages/paste-core/components/alert-dialog/type-docs.json +++ b/packages/paste-core/components/alert-dialog/type-docs.json @@ -489,7 +489,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -502,13 +502,6 @@ "externalProp": true, "description": "Specify that a standard HTML element should behave like a defined custom built-in element" }, - "isConfirmDisabled": { - "type": "boolean", - "defaultValue": false, - "required": false, - "externalProp": false, - "description": "Disable the confirm button" - }, "itemID": { "type": "string", "defaultValue": null, @@ -730,7 +723,7 @@ "defaultValue": false, "required": false, "externalProp": false, - "description": "Disable the confirm button. Use isConfirmDisabled" + "description": "Disable the confirm button" }, "onContextMenu": { "type": "MouseEventHandler", diff --git a/packages/paste-core/components/alert/type-docs.json b/packages/paste-core/components/alert/type-docs.json index 020964cc8d..6e0fbb47f2 100644 --- a/packages/paste-core/components/alert/type-docs.json +++ b/packages/paste-core/components/alert/type-docs.json @@ -474,7 +474,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/button/type-docs.json b/packages/paste-core/components/button/type-docs.json index ec8f51abe3..132eeda21f 100644 --- a/packages/paste-core/components/button/type-docs.json +++ b/packages/paste-core/components/button/type-docs.json @@ -40,25 +40,12 @@ "externalProp": true, "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made." }, - "aria-braillelabel": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a string value that labels the current element, which is intended to be converted into Braille." - }, - "aria-brailleroledescription": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille." - }, "aria-busy": { "type": "Booleanish", "defaultValue": null, "required": false, - "externalProp": true + "externalProp": true, + "description": "Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user." }, "aria-checked": { "type": "boolean | \"true\" | \"false\" | \"mixed\"", @@ -81,13 +68,6 @@ "externalProp": true, "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid." }, - "aria-colindextext": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a human readable text alternative of aria-colindex." - }, "aria-colspan": { "type": "number", "defaultValue": null, @@ -116,13 +96,6 @@ "externalProp": true, "description": "Identifies the element (or elements) that describes the object." }, - "aria-description": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a string value that describes or annotates the current element." - }, "aria-details": { "type": "string", "defaultValue": null, @@ -326,13 +299,6 @@ "externalProp": true, "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid." }, - "aria-rowindextext": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a human readable text alternative of aria-rowindex." - }, "aria-rowspan": { "type": "number", "defaultValue": null, @@ -420,15 +386,8 @@ "required": false, "externalProp": true }, - "content": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Style prop for the CSS `content` property" - }, "contentEditable": { - "type": "Booleanish | \"inherit\" | \"plaintext-only\"", + "type": "Booleanish | \"inherit\"", "defaultValue": null, "required": false, "externalProp": true @@ -440,7 +399,7 @@ "externalProp": true }, "dangerouslySetInnerHTML": { - "type": "{ __html: string | TrustedHTML }", + "type": "{ __html: string }", "defaultValue": null, "required": false, "externalProp": true @@ -565,7 +524,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"search\"\n | \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -1305,12 +1264,24 @@ "required": false, "externalProp": true }, + "onPointerEnterCapture": { + "type": "PointerEventHandler", + "defaultValue": null, + "required": false, + "externalProp": true + }, "onPointerLeave": { "type": "PointerEventHandler", "defaultValue": null, "required": false, "externalProp": true }, + "onPointerLeaveCapture": { + "type": "PointerEventHandler", + "defaultValue": null, + "required": false, + "externalProp": true + }, "onPointerMove": { "type": "PointerEventHandler", "defaultValue": null, @@ -1599,6 +1570,12 @@ "required": false, "externalProp": true }, + "placeholder": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true + }, "prefix": { "type": "string", "defaultValue": null, @@ -1624,12 +1601,6 @@ "required": false, "externalProp": true }, - "rel": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true - }, "resource": { "type": "string", "defaultValue": null, @@ -1642,12 +1613,6 @@ "required": false, "externalProp": true }, - "rev": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true - }, "role": { "type": "AriaRole", "defaultValue": null, diff --git a/packages/paste-core/components/chat-log/type-docs.json b/packages/paste-core/components/chat-log/type-docs.json index a64d094430..3e26814599 100644 --- a/packages/paste-core/components/chat-log/type-docs.json +++ b/packages/paste-core/components/chat-log/type-docs.json @@ -440,7 +440,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2029,7 +2029,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3612,7 +3612,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5195,7 +5195,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6778,7 +6778,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8368,7 +8368,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -9965,7 +9965,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11595,7 +11595,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -13402,7 +13402,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -14985,7 +14985,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -16568,7 +16568,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -18151,7 +18151,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -19734,7 +19734,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/code-block/type-docs.json b/packages/paste-core/components/code-block/type-docs.json index 63bfd1404f..16401c9b50 100644 --- a/packages/paste-core/components/code-block/type-docs.json +++ b/packages/paste-core/components/code-block/type-docs.json @@ -484,7 +484,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2099,7 +2099,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3697,7 +3697,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5273,7 +5273,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6863,7 +6863,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8446,7 +8446,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/data-grid/type-docs.json b/packages/paste-core/components/data-grid/type-docs.json index ce6aac3c38..9fd3f2e948 100644 --- a/packages/paste-core/components/data-grid/type-docs.json +++ b/packages/paste-core/components/data-grid/type-docs.json @@ -476,7 +476,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2120,7 +2120,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3717,7 +3717,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5344,7 +5344,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7036,7 +7036,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8638,7 +8638,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10252,7 +10252,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11868,7 +11868,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/file-picker/type-docs.json b/packages/paste-core/components/file-picker/type-docs.json index 046b4ac322..c4851fbfca 100644 --- a/packages/paste-core/components/file-picker/type-docs.json +++ b/packages/paste-core/components/file-picker/type-docs.json @@ -472,7 +472,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", + "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/file-uploader/type-docs.json b/packages/paste-core/components/file-uploader/type-docs.json index a3029abb27..6e345db756 100644 --- a/packages/paste-core/components/file-uploader/type-docs.json +++ b/packages/paste-core/components/file-uploader/type-docs.json @@ -478,7 +478,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", + "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true @@ -11807,7 +11807,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", + "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/input/type-docs.json b/packages/paste-core/components/input/type-docs.json index 05a4f1ba7c..e048be05e1 100644 --- a/packages/paste-core/components/input/type-docs.json +++ b/packages/paste-core/components/input/type-docs.json @@ -572,7 +572,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"email\"\n | \"tel\"\n | \"url\"\n | \"none\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"email\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"none\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/minimizable-dialog/type-docs.json b/packages/paste-core/components/minimizable-dialog/type-docs.json index 4318ffb7e8..10a8eee489 100644 --- a/packages/paste-core/components/minimizable-dialog/type-docs.json +++ b/packages/paste-core/components/minimizable-dialog/type-docs.json @@ -686,7 +686,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2346,7 +2346,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3994,7 +3994,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5662,7 +5662,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/modal/type-docs.json b/packages/paste-core/components/modal/type-docs.json index 120a1c0b5c..c90272dfe2 100644 --- a/packages/paste-core/components/modal/type-docs.json +++ b/packages/paste-core/components/modal/type-docs.json @@ -482,7 +482,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2072,7 +2072,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3670,7 +3670,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5253,7 +5253,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6836,7 +6836,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8419,7 +8419,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/radio-button-group/type-docs.json b/packages/paste-core/components/radio-button-group/type-docs.json index 9f768e5b88..0d029dd20e 100644 --- a/packages/paste-core/components/radio-button-group/type-docs.json +++ b/packages/paste-core/components/radio-button-group/type-docs.json @@ -473,7 +473,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider." }, "enterKeyHint": { - "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", + "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/side-modal/type-docs.json b/packages/paste-core/components/side-modal/type-docs.json index 9fd75f0db8..e778996ee8 100644 --- a/packages/paste-core/components/side-modal/type-docs.json +++ b/packages/paste-core/components/side-modal/type-docs.json @@ -447,7 +447,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2108,7 +2108,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3743,7 +3743,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5341,7 +5341,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7170,7 +7170,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8753,7 +8753,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10336,7 +10336,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/sidebar/type-docs.json b/packages/paste-core/components/sidebar/type-docs.json index c25812c4ce..11ac57dc8e 100644 --- a/packages/paste-core/components/sidebar/type-docs.json +++ b/packages/paste-core/components/sidebar/type-docs.json @@ -496,7 +496,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2079,7 +2079,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3669,7 +3669,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5266,7 +5266,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6856,7 +6856,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8439,7 +8439,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10092,7 +10092,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11708,7 +11708,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -13353,7 +13353,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -14969,7 +14969,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -16660,7 +16660,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -18250,7 +18250,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -19867,7 +19867,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -21516,7 +21516,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -23142,7 +23142,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -24738,7 +24738,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/status/type-docs.json b/packages/paste-core/components/status/type-docs.json index 3b7bba2eda..618e843dfb 100644 --- a/packages/paste-core/components/status/type-docs.json +++ b/packages/paste-core/components/status/type-docs.json @@ -460,7 +460,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2766,7 +2766,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4613,7 +4613,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6471,7 +6471,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8411,7 +8411,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10463,7 +10463,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -12264,7 +12264,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/toast/type-docs.json b/packages/paste-core/components/toast/type-docs.json index ec226945ba..93ff6dd816 100644 --- a/packages/paste-core/components/toast/type-docs.json +++ b/packages/paste-core/components/toast/type-docs.json @@ -482,7 +482,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2095,7 +2095,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/user-dialog/type-docs.json b/packages/paste-core/components/user-dialog/type-docs.json index ffd9c42d63..536e0cfa0d 100644 --- a/packages/paste-core/components/user-dialog/type-docs.json +++ b/packages/paste-core/components/user-dialog/type-docs.json @@ -461,7 +461,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2432,7 +2432,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4015,7 +4015,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5598,7 +5598,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7269,7 +7269,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -9316,7 +9316,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, From 1ac20cf5e4186699dd2bd59ead4ac9228a4d6a11 Mon Sep 17 00:00:00 2001 From: Joe Fehrman Date: Wed, 22 May 2024 10:19:04 -0400 Subject: [PATCH 6/7] chore: Generating typedocs. --- .../account-switcher/type-docs.json | 14 ++-- .../components/alert-dialog/type-docs.json | 11 ++- .../components/alert/type-docs.json | 2 +- .../components/button/type-docs.json | 81 +++++++++++++------ .../components/chat-log/type-docs.json | 26 +++--- .../components/code-block/type-docs.json | 12 +-- .../components/data-grid/type-docs.json | 16 ++-- .../components/file-picker/type-docs.json | 2 +- .../components/file-uploader/type-docs.json | 4 +- .../components/input/type-docs.json | 2 +- .../minimizable-dialog/type-docs.json | 8 +- .../components/modal/type-docs.json | 12 +-- .../radio-button-group/type-docs.json | 2 +- .../components/side-modal/type-docs.json | 14 ++-- .../components/sidebar/type-docs.json | 32 ++++---- .../components/status/type-docs.json | 14 ++-- .../components/toast/type-docs.json | 4 +- .../components/user-dialog/type-docs.json | 12 +-- 18 files changed, 155 insertions(+), 113 deletions(-) diff --git a/packages/paste-core/components/account-switcher/type-docs.json b/packages/paste-core/components/account-switcher/type-docs.json index 6621159fbe..94bc68dd52 100644 --- a/packages/paste-core/components/account-switcher/type-docs.json +++ b/packages/paste-core/components/account-switcher/type-docs.json @@ -1150,7 +1150,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2997,7 +2997,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4855,7 +4855,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6714,7 +6714,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"next\"\n | \"previous\"\n | \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"send\"", + "type": "| \"search\"\n | \"next\"\n | \"previous\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true @@ -6802,7 +6802,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8610,7 +8610,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10205,7 +10205,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/alert-dialog/type-docs.json b/packages/paste-core/components/alert-dialog/type-docs.json index 566e5c68cf..47f75d6a49 100644 --- a/packages/paste-core/components/alert-dialog/type-docs.json +++ b/packages/paste-core/components/alert-dialog/type-docs.json @@ -489,7 +489,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -502,6 +502,13 @@ "externalProp": true, "description": "Specify that a standard HTML element should behave like a defined custom built-in element" }, + "isConfirmDisabled": { + "type": "boolean", + "defaultValue": false, + "required": false, + "externalProp": false, + "description": "Disable the confirm button" + }, "itemID": { "type": "string", "defaultValue": null, @@ -723,7 +730,7 @@ "defaultValue": false, "required": false, "externalProp": false, - "description": "Disable the confirm button" + "description": "Disable the confirm button. Use isConfirmDisabled" }, "onContextMenu": { "type": "MouseEventHandler", diff --git a/packages/paste-core/components/alert/type-docs.json b/packages/paste-core/components/alert/type-docs.json index 6e0fbb47f2..020964cc8d 100644 --- a/packages/paste-core/components/alert/type-docs.json +++ b/packages/paste-core/components/alert/type-docs.json @@ -474,7 +474,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/button/type-docs.json b/packages/paste-core/components/button/type-docs.json index 132eeda21f..ec8f51abe3 100644 --- a/packages/paste-core/components/button/type-docs.json +++ b/packages/paste-core/components/button/type-docs.json @@ -40,12 +40,25 @@ "externalProp": true, "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made." }, + "aria-braillelabel": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a string value that labels the current element, which is intended to be converted into Braille." + }, + "aria-brailleroledescription": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille." + }, "aria-busy": { "type": "Booleanish", "defaultValue": null, "required": false, - "externalProp": true, - "description": "Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user." + "externalProp": true }, "aria-checked": { "type": "boolean | \"true\" | \"false\" | \"mixed\"", @@ -68,6 +81,13 @@ "externalProp": true, "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid." }, + "aria-colindextext": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a human readable text alternative of aria-colindex." + }, "aria-colspan": { "type": "number", "defaultValue": null, @@ -96,6 +116,13 @@ "externalProp": true, "description": "Identifies the element (or elements) that describes the object." }, + "aria-description": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a string value that describes or annotates the current element." + }, "aria-details": { "type": "string", "defaultValue": null, @@ -299,6 +326,13 @@ "externalProp": true, "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid." }, + "aria-rowindextext": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Defines a human readable text alternative of aria-rowindex." + }, "aria-rowspan": { "type": "number", "defaultValue": null, @@ -386,8 +420,15 @@ "required": false, "externalProp": true }, + "content": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true, + "description": "Style prop for the CSS `content` property" + }, "contentEditable": { - "type": "Booleanish | \"inherit\"", + "type": "Booleanish | \"inherit\" | \"plaintext-only\"", "defaultValue": null, "required": false, "externalProp": true @@ -399,7 +440,7 @@ "externalProp": true }, "dangerouslySetInnerHTML": { - "type": "{ __html: string }", + "type": "{ __html: string | TrustedHTML }", "defaultValue": null, "required": false, "externalProp": true @@ -524,7 +565,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"search\"\n | \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -1264,24 +1305,12 @@ "required": false, "externalProp": true }, - "onPointerEnterCapture": { - "type": "PointerEventHandler", - "defaultValue": null, - "required": false, - "externalProp": true - }, "onPointerLeave": { "type": "PointerEventHandler", "defaultValue": null, "required": false, "externalProp": true }, - "onPointerLeaveCapture": { - "type": "PointerEventHandler", - "defaultValue": null, - "required": false, - "externalProp": true - }, "onPointerMove": { "type": "PointerEventHandler", "defaultValue": null, @@ -1570,12 +1599,6 @@ "required": false, "externalProp": true }, - "placeholder": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true - }, "prefix": { "type": "string", "defaultValue": null, @@ -1601,6 +1624,12 @@ "required": false, "externalProp": true }, + "rel": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true + }, "resource": { "type": "string", "defaultValue": null, @@ -1613,6 +1642,12 @@ "required": false, "externalProp": true }, + "rev": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true + }, "role": { "type": "AriaRole", "defaultValue": null, diff --git a/packages/paste-core/components/chat-log/type-docs.json b/packages/paste-core/components/chat-log/type-docs.json index 3e26814599..a64d094430 100644 --- a/packages/paste-core/components/chat-log/type-docs.json +++ b/packages/paste-core/components/chat-log/type-docs.json @@ -440,7 +440,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2029,7 +2029,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3612,7 +3612,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5195,7 +5195,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6778,7 +6778,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8368,7 +8368,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -9965,7 +9965,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11595,7 +11595,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -13402,7 +13402,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -14985,7 +14985,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -16568,7 +16568,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -18151,7 +18151,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -19734,7 +19734,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/code-block/type-docs.json b/packages/paste-core/components/code-block/type-docs.json index 16401c9b50..63bfd1404f 100644 --- a/packages/paste-core/components/code-block/type-docs.json +++ b/packages/paste-core/components/code-block/type-docs.json @@ -484,7 +484,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2099,7 +2099,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3697,7 +3697,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5273,7 +5273,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6863,7 +6863,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8446,7 +8446,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/data-grid/type-docs.json b/packages/paste-core/components/data-grid/type-docs.json index 9fd3f2e948..ce6aac3c38 100644 --- a/packages/paste-core/components/data-grid/type-docs.json +++ b/packages/paste-core/components/data-grid/type-docs.json @@ -476,7 +476,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2120,7 +2120,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3717,7 +3717,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5344,7 +5344,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7036,7 +7036,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8638,7 +8638,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10252,7 +10252,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11868,7 +11868,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/file-picker/type-docs.json b/packages/paste-core/components/file-picker/type-docs.json index c4851fbfca..046b4ac322 100644 --- a/packages/paste-core/components/file-picker/type-docs.json +++ b/packages/paste-core/components/file-picker/type-docs.json @@ -472,7 +472,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", + "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/file-uploader/type-docs.json b/packages/paste-core/components/file-uploader/type-docs.json index 6e345db756..a3029abb27 100644 --- a/packages/paste-core/components/file-uploader/type-docs.json +++ b/packages/paste-core/components/file-uploader/type-docs.json @@ -478,7 +478,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", + "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true @@ -11807,7 +11807,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", + "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/input/type-docs.json b/packages/paste-core/components/input/type-docs.json index e048be05e1..05a4f1ba7c 100644 --- a/packages/paste-core/components/input/type-docs.json +++ b/packages/paste-core/components/input/type-docs.json @@ -572,7 +572,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"email\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"none\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"email\"\n | \"tel\"\n | \"url\"\n | \"none\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/minimizable-dialog/type-docs.json b/packages/paste-core/components/minimizable-dialog/type-docs.json index 10a8eee489..4318ffb7e8 100644 --- a/packages/paste-core/components/minimizable-dialog/type-docs.json +++ b/packages/paste-core/components/minimizable-dialog/type-docs.json @@ -686,7 +686,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2346,7 +2346,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3994,7 +3994,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5662,7 +5662,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/modal/type-docs.json b/packages/paste-core/components/modal/type-docs.json index c90272dfe2..120a1c0b5c 100644 --- a/packages/paste-core/components/modal/type-docs.json +++ b/packages/paste-core/components/modal/type-docs.json @@ -482,7 +482,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2072,7 +2072,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3670,7 +3670,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5253,7 +5253,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6836,7 +6836,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8419,7 +8419,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/radio-button-group/type-docs.json b/packages/paste-core/components/radio-button-group/type-docs.json index 0d029dd20e..9f768e5b88 100644 --- a/packages/paste-core/components/radio-button-group/type-docs.json +++ b/packages/paste-core/components/radio-button-group/type-docs.json @@ -473,7 +473,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider." }, "enterKeyHint": { - "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", + "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/side-modal/type-docs.json b/packages/paste-core/components/side-modal/type-docs.json index e778996ee8..9fd75f0db8 100644 --- a/packages/paste-core/components/side-modal/type-docs.json +++ b/packages/paste-core/components/side-modal/type-docs.json @@ -447,7 +447,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2108,7 +2108,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3743,7 +3743,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5341,7 +5341,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7170,7 +7170,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8753,7 +8753,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10336,7 +10336,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/sidebar/type-docs.json b/packages/paste-core/components/sidebar/type-docs.json index 11ac57dc8e..c25812c4ce 100644 --- a/packages/paste-core/components/sidebar/type-docs.json +++ b/packages/paste-core/components/sidebar/type-docs.json @@ -496,7 +496,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2079,7 +2079,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3669,7 +3669,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5266,7 +5266,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6856,7 +6856,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8439,7 +8439,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10092,7 +10092,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11708,7 +11708,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -13353,7 +13353,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -14969,7 +14969,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -16660,7 +16660,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -18250,7 +18250,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -19867,7 +19867,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -21516,7 +21516,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -23142,7 +23142,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -24738,7 +24738,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/status/type-docs.json b/packages/paste-core/components/status/type-docs.json index 618e843dfb..3b7bba2eda 100644 --- a/packages/paste-core/components/status/type-docs.json +++ b/packages/paste-core/components/status/type-docs.json @@ -460,7 +460,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2766,7 +2766,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4613,7 +4613,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6471,7 +6471,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8411,7 +8411,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10463,7 +10463,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -12264,7 +12264,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/toast/type-docs.json b/packages/paste-core/components/toast/type-docs.json index 93ff6dd816..ec226945ba 100644 --- a/packages/paste-core/components/toast/type-docs.json +++ b/packages/paste-core/components/toast/type-docs.json @@ -482,7 +482,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2095,7 +2095,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/user-dialog/type-docs.json b/packages/paste-core/components/user-dialog/type-docs.json index 536e0cfa0d..ffd9c42d63 100644 --- a/packages/paste-core/components/user-dialog/type-docs.json +++ b/packages/paste-core/components/user-dialog/type-docs.json @@ -461,7 +461,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2432,7 +2432,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4015,7 +4015,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5598,7 +5598,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7269,7 +7269,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -9316,7 +9316,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, From 1a3645cd171c36c8dd253d4fa9a7646eda015f91 Mon Sep 17 00:00:00 2001 From: Joe Fehrman Date: Fri, 24 May 2024 09:33:59 -0400 Subject: [PATCH 7/7] Revert "chore: Generating typedocs." This reverts commit 1ac20cf5e4186699dd2bd59ead4ac9228a4d6a11. --- .../account-switcher/type-docs.json | 14 ++-- .../components/alert-dialog/type-docs.json | 11 +-- .../components/alert/type-docs.json | 2 +- .../components/button/type-docs.json | 81 ++++++------------- .../components/chat-log/type-docs.json | 26 +++--- .../components/code-block/type-docs.json | 12 +-- .../components/data-grid/type-docs.json | 16 ++-- .../components/file-picker/type-docs.json | 2 +- .../components/file-uploader/type-docs.json | 4 +- .../components/input/type-docs.json | 2 +- .../minimizable-dialog/type-docs.json | 8 +- .../components/modal/type-docs.json | 12 +-- .../radio-button-group/type-docs.json | 2 +- .../components/side-modal/type-docs.json | 14 ++-- .../components/sidebar/type-docs.json | 32 ++++---- .../components/status/type-docs.json | 14 ++-- .../components/toast/type-docs.json | 4 +- .../components/user-dialog/type-docs.json | 12 +-- 18 files changed, 113 insertions(+), 155 deletions(-) diff --git a/packages/paste-core/components/account-switcher/type-docs.json b/packages/paste-core/components/account-switcher/type-docs.json index 94bc68dd52..6621159fbe 100644 --- a/packages/paste-core/components/account-switcher/type-docs.json +++ b/packages/paste-core/components/account-switcher/type-docs.json @@ -1150,7 +1150,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2997,7 +2997,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4855,7 +4855,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6714,7 +6714,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"search\"\n | \"next\"\n | \"previous\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"send\"", + "type": "| \"next\"\n | \"previous\"\n | \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true @@ -6802,7 +6802,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8610,7 +8610,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10205,7 +10205,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/alert-dialog/type-docs.json b/packages/paste-core/components/alert-dialog/type-docs.json index 47f75d6a49..566e5c68cf 100644 --- a/packages/paste-core/components/alert-dialog/type-docs.json +++ b/packages/paste-core/components/alert-dialog/type-docs.json @@ -489,7 +489,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -502,13 +502,6 @@ "externalProp": true, "description": "Specify that a standard HTML element should behave like a defined custom built-in element" }, - "isConfirmDisabled": { - "type": "boolean", - "defaultValue": false, - "required": false, - "externalProp": false, - "description": "Disable the confirm button" - }, "itemID": { "type": "string", "defaultValue": null, @@ -730,7 +723,7 @@ "defaultValue": false, "required": false, "externalProp": false, - "description": "Disable the confirm button. Use isConfirmDisabled" + "description": "Disable the confirm button" }, "onContextMenu": { "type": "MouseEventHandler", diff --git a/packages/paste-core/components/alert/type-docs.json b/packages/paste-core/components/alert/type-docs.json index 020964cc8d..6e0fbb47f2 100644 --- a/packages/paste-core/components/alert/type-docs.json +++ b/packages/paste-core/components/alert/type-docs.json @@ -474,7 +474,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/button/type-docs.json b/packages/paste-core/components/button/type-docs.json index ec8f51abe3..132eeda21f 100644 --- a/packages/paste-core/components/button/type-docs.json +++ b/packages/paste-core/components/button/type-docs.json @@ -40,25 +40,12 @@ "externalProp": true, "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made." }, - "aria-braillelabel": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a string value that labels the current element, which is intended to be converted into Braille." - }, - "aria-brailleroledescription": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille." - }, "aria-busy": { "type": "Booleanish", "defaultValue": null, "required": false, - "externalProp": true + "externalProp": true, + "description": "Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user." }, "aria-checked": { "type": "boolean | \"true\" | \"false\" | \"mixed\"", @@ -81,13 +68,6 @@ "externalProp": true, "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid." }, - "aria-colindextext": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a human readable text alternative of aria-colindex." - }, "aria-colspan": { "type": "number", "defaultValue": null, @@ -116,13 +96,6 @@ "externalProp": true, "description": "Identifies the element (or elements) that describes the object." }, - "aria-description": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a string value that describes or annotates the current element." - }, "aria-details": { "type": "string", "defaultValue": null, @@ -326,13 +299,6 @@ "externalProp": true, "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid." }, - "aria-rowindextext": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Defines a human readable text alternative of aria-rowindex." - }, "aria-rowspan": { "type": "number", "defaultValue": null, @@ -420,15 +386,8 @@ "required": false, "externalProp": true }, - "content": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true, - "description": "Style prop for the CSS `content` property" - }, "contentEditable": { - "type": "Booleanish | \"inherit\" | \"plaintext-only\"", + "type": "Booleanish | \"inherit\"", "defaultValue": null, "required": false, "externalProp": true @@ -440,7 +399,7 @@ "externalProp": true }, "dangerouslySetInnerHTML": { - "type": "{ __html: string | TrustedHTML }", + "type": "{ __html: string }", "defaultValue": null, "required": false, "externalProp": true @@ -565,7 +524,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"search\"\n | \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -1305,12 +1264,24 @@ "required": false, "externalProp": true }, + "onPointerEnterCapture": { + "type": "PointerEventHandler", + "defaultValue": null, + "required": false, + "externalProp": true + }, "onPointerLeave": { "type": "PointerEventHandler", "defaultValue": null, "required": false, "externalProp": true }, + "onPointerLeaveCapture": { + "type": "PointerEventHandler", + "defaultValue": null, + "required": false, + "externalProp": true + }, "onPointerMove": { "type": "PointerEventHandler", "defaultValue": null, @@ -1599,6 +1570,12 @@ "required": false, "externalProp": true }, + "placeholder": { + "type": "string", + "defaultValue": null, + "required": false, + "externalProp": true + }, "prefix": { "type": "string", "defaultValue": null, @@ -1624,12 +1601,6 @@ "required": false, "externalProp": true }, - "rel": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true - }, "resource": { "type": "string", "defaultValue": null, @@ -1642,12 +1613,6 @@ "required": false, "externalProp": true }, - "rev": { - "type": "string", - "defaultValue": null, - "required": false, - "externalProp": true - }, "role": { "type": "AriaRole", "defaultValue": null, diff --git a/packages/paste-core/components/chat-log/type-docs.json b/packages/paste-core/components/chat-log/type-docs.json index a64d094430..3e26814599 100644 --- a/packages/paste-core/components/chat-log/type-docs.json +++ b/packages/paste-core/components/chat-log/type-docs.json @@ -440,7 +440,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2029,7 +2029,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3612,7 +3612,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5195,7 +5195,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6778,7 +6778,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8368,7 +8368,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -9965,7 +9965,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11595,7 +11595,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -13402,7 +13402,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -14985,7 +14985,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -16568,7 +16568,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -18151,7 +18151,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -19734,7 +19734,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/code-block/type-docs.json b/packages/paste-core/components/code-block/type-docs.json index 63bfd1404f..16401c9b50 100644 --- a/packages/paste-core/components/code-block/type-docs.json +++ b/packages/paste-core/components/code-block/type-docs.json @@ -484,7 +484,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2099,7 +2099,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3697,7 +3697,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5273,7 +5273,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6863,7 +6863,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8446,7 +8446,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/data-grid/type-docs.json b/packages/paste-core/components/data-grid/type-docs.json index ce6aac3c38..9fd3f2e948 100644 --- a/packages/paste-core/components/data-grid/type-docs.json +++ b/packages/paste-core/components/data-grid/type-docs.json @@ -476,7 +476,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2120,7 +2120,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3717,7 +3717,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5344,7 +5344,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7036,7 +7036,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8638,7 +8638,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10252,7 +10252,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11868,7 +11868,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"\n | \"search\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/file-picker/type-docs.json b/packages/paste-core/components/file-picker/type-docs.json index 046b4ac322..c4851fbfca 100644 --- a/packages/paste-core/components/file-picker/type-docs.json +++ b/packages/paste-core/components/file-picker/type-docs.json @@ -472,7 +472,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", + "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/file-uploader/type-docs.json b/packages/paste-core/components/file-uploader/type-docs.json index a3029abb27..6e345db756 100644 --- a/packages/paste-core/components/file-uploader/type-docs.json +++ b/packages/paste-core/components/file-uploader/type-docs.json @@ -478,7 +478,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", + "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true @@ -11807,7 +11807,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider" }, "enterKeyHint": { - "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", + "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/input/type-docs.json b/packages/paste-core/components/input/type-docs.json index 05a4f1ba7c..e048be05e1 100644 --- a/packages/paste-core/components/input/type-docs.json +++ b/packages/paste-core/components/input/type-docs.json @@ -572,7 +572,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"email\"\n | \"tel\"\n | \"url\"\n | \"none\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"email\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"none\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/minimizable-dialog/type-docs.json b/packages/paste-core/components/minimizable-dialog/type-docs.json index 4318ffb7e8..10a8eee489 100644 --- a/packages/paste-core/components/minimizable-dialog/type-docs.json +++ b/packages/paste-core/components/minimizable-dialog/type-docs.json @@ -686,7 +686,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2346,7 +2346,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3994,7 +3994,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5662,7 +5662,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/modal/type-docs.json b/packages/paste-core/components/modal/type-docs.json index 120a1c0b5c..c90272dfe2 100644 --- a/packages/paste-core/components/modal/type-docs.json +++ b/packages/paste-core/components/modal/type-docs.json @@ -482,7 +482,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2072,7 +2072,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3670,7 +3670,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5253,7 +5253,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6836,7 +6836,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8419,7 +8419,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/radio-button-group/type-docs.json b/packages/paste-core/components/radio-button-group/type-docs.json index 9f768e5b88..0d029dd20e 100644 --- a/packages/paste-core/components/radio-button-group/type-docs.json +++ b/packages/paste-core/components/radio-button-group/type-docs.json @@ -473,7 +473,7 @@ "description": "Overrides the default element name to apply unique styles with the Customization Provider." }, "enterKeyHint": { - "type": "| \"search\"\n | \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"send\"", + "type": "| \"enter\"\n | \"done\"\n | \"go\"\n | \"next\"\n | \"previous\"\n | \"search\"\n | \"send\"", "defaultValue": null, "required": false, "externalProp": true diff --git a/packages/paste-core/components/side-modal/type-docs.json b/packages/paste-core/components/side-modal/type-docs.json index 9fd75f0db8..e778996ee8 100644 --- a/packages/paste-core/components/side-modal/type-docs.json +++ b/packages/paste-core/components/side-modal/type-docs.json @@ -447,7 +447,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2108,7 +2108,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3743,7 +3743,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5341,7 +5341,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7170,7 +7170,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8753,7 +8753,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10336,7 +10336,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/sidebar/type-docs.json b/packages/paste-core/components/sidebar/type-docs.json index c25812c4ce..11ac57dc8e 100644 --- a/packages/paste-core/components/sidebar/type-docs.json +++ b/packages/paste-core/components/sidebar/type-docs.json @@ -496,7 +496,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2079,7 +2079,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -3669,7 +3669,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5266,7 +5266,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6856,7 +6856,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8439,7 +8439,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10092,7 +10092,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -11708,7 +11708,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -13353,7 +13353,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -14969,7 +14969,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -16660,7 +16660,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -18250,7 +18250,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -19867,7 +19867,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -21516,7 +21516,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -23142,7 +23142,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -24738,7 +24738,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/status/type-docs.json b/packages/paste-core/components/status/type-docs.json index 3b7bba2eda..618e843dfb 100644 --- a/packages/paste-core/components/status/type-docs.json +++ b/packages/paste-core/components/status/type-docs.json @@ -460,7 +460,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2766,7 +2766,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4613,7 +4613,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -6471,7 +6471,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -8411,7 +8411,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -10463,7 +10463,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -12264,7 +12264,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/toast/type-docs.json b/packages/paste-core/components/toast/type-docs.json index ec226945ba..93ff6dd816 100644 --- a/packages/paste-core/components/toast/type-docs.json +++ b/packages/paste-core/components/toast/type-docs.json @@ -482,7 +482,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2095,7 +2095,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, diff --git a/packages/paste-core/components/user-dialog/type-docs.json b/packages/paste-core/components/user-dialog/type-docs.json index ffd9c42d63..536e0cfa0d 100644 --- a/packages/paste-core/components/user-dialog/type-docs.json +++ b/packages/paste-core/components/user-dialog/type-docs.json @@ -461,7 +461,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -2432,7 +2432,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -4015,7 +4015,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -5598,7 +5598,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -7269,7 +7269,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true, @@ -9316,7 +9316,7 @@ "externalProp": true }, "inputMode": { - "type": "| \"text\"\n | \"search\"\n | \"none\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", + "type": "| \"text\"\n | \"none\"\n | \"search\"\n | \"tel\"\n | \"url\"\n | \"email\"\n | \"numeric\"\n | \"decimal\"", "defaultValue": null, "required": false, "externalProp": true,