@rovula/ui 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/bundle.css +155 -495
- package/dist/cjs/bundle.js +3 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/ActionButton/ActionButton.stories.d.ts +7 -7
- package/dist/cjs/types/components/Button/Button.d.ts +1 -1
- package/dist/cjs/types/components/Button/Button.styles.d.ts +1 -1
- package/dist/cjs/types/components/Button/Buttons.stories.d.ts +13 -13
- package/dist/cjs/types/components/Checkbox/Checkbox.stories.d.ts +60 -60
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +64 -64
- package/dist/cjs/types/components/Icon/Icon.d.ts +11 -0
- package/dist/cjs/types/components/Icon/Icon.stories.d.ts +508 -0
- package/dist/cjs/types/components/Icon/Icon.styles.d.ts +4 -0
- package/dist/cjs/types/components/Input/Input.stories.d.ts +115 -115
- package/dist/cjs/types/components/Label/Label.stories.d.ts +51 -51
- package/dist/cjs/types/components/RadioGroup/RadioGroup.stories.d.ts +54 -54
- package/dist/cjs/types/components/Search/Search.stories.d.ts +64 -64
- package/dist/cjs/types/components/Slider/Slider.d.ts +5 -0
- package/dist/cjs/types/components/Slider/Slider.stories.d.ts +303 -0
- package/dist/cjs/types/components/Switch/Switch.d.ts +4 -0
- package/dist/cjs/types/components/Switch/Switch.stories.d.ts +305 -0
- package/dist/cjs/types/components/Table/Table.stories.d.ts +7 -7
- package/dist/cjs/types/components/Tabs/Tabs.d.ts +12 -3
- package/dist/cjs/types/components/Tabs/Tabs.stories.d.ts +18 -0
- package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +62 -62
- package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +1 -1
- package/dist/cjs/types/icons/heroIconConfig.d.ts +1 -0
- package/dist/cjs/types/icons/iconConfig.d.ts +2 -0
- package/dist/cjs/types/icons/iconRegistry.d.ts +19 -0
- package/dist/cjs/types/icons/index.d.ts +1 -0
- package/dist/cjs/types/icons/material-icon/outline/ChevronDownIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/CollapseContentIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/ContentCopyIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/ContentPasteIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/DataTableIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/ExpandCircleDownIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/ExpandCircleRightIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/ExpandCircleUpIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/ExpandContentIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/InterestsIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/SaveIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/TableChartIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/index.d.ts +12 -0
- package/dist/cjs/types/icons/material-icon/solid/ChevronDownIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/CollapseContentIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/ContentCopyIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/ContentPasteIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/DataTableIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/ExpandCircleDownIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/ExpandCircleRightIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/ExpandCircleUpIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/ExpandContentIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/InterestsIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/SaveIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/TableChartIcon.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/index.d.ts +12 -0
- package/dist/cjs/types/icons/materialIconConfig.d.ts +1 -0
- package/dist/cjs/types/icons/type.d.ts +8 -0
- package/dist/cjs/types/icons/utils.d.ts +1 -0
- package/dist/cjs/types/index.d.ts +4 -0
- package/dist/components/ActionButton/ActionButton.js +8 -19
- package/dist/components/ActionButton/ActionButton.stories.js +12 -22
- package/dist/components/ActionButton/ActionButton.styles.js +33 -8
- package/dist/components/AlertDialog/Alert.stories.js +5 -16
- package/dist/components/AlertDialog/AlertDialog.js +27 -38
- package/dist/components/Avatar/Avatar.js +7 -8
- package/dist/components/Avatar/Avatar.stories.js +11 -22
- package/dist/components/Avatar/Avatar.styles.js +1 -1
- package/dist/components/Avatar/AvatarBase.js +9 -20
- package/dist/components/Avatar/AvatarGroup.js +9 -10
- package/dist/components/Avatar/AvatarGroup.stories.js +9 -20
- package/dist/components/Button/Button.js +4 -15
- package/dist/components/Button/Button.styles.js +1 -1
- package/dist/components/Button/Buttons.stories.js +18 -29
- package/dist/components/Calendar/Calendar.js +3 -14
- package/dist/components/Calendar/Calendar.stories.js +6 -17
- package/dist/components/Checkbox/Checkbox.js +3 -14
- package/dist/components/Checkbox/Checkbox.stories.js +12 -23
- package/dist/components/Collapsible/Collapsible.js +14 -17
- package/dist/components/Collapsible/Collapsible.stories.js +9 -20
- package/dist/components/Collapsible/Collapsible.styles.js +4 -4
- package/dist/components/Collapsible/CollapsibleContext.js +9 -10
- package/dist/components/DataTable/DataTable.js +25 -26
- package/dist/components/DataTable/DataTable.stories.js +10 -21
- package/dist/components/DatePicker/DatePicker.js +4 -20
- package/dist/components/DatePicker/DatePicker.stories.js +6 -17
- package/dist/components/Dialog/Dialog.js +22 -33
- package/dist/components/Dialog/Dialog.stories.js +8 -19
- package/dist/components/Dropdown/Dropdown.js +26 -37
- package/dist/components/Dropdown/Dropdown.stories.js +36 -55
- package/dist/components/Dropdown/Dropdown.styles.js +3 -3
- package/dist/components/Form/Form.js +26 -87
- package/dist/components/Form/Text.js +2 -3
- package/dist/components/Form/TextInput.js +2 -3
- package/dist/components/Icon/Icon.js +37 -0
- package/dist/components/Icon/Icon.stories.js +356 -0
- package/dist/components/Icon/Icon.styles.js +25 -0
- package/dist/components/Input/Input.js +9 -20
- package/dist/components/Input/Input.stories.js +6 -17
- package/dist/components/Input/Input.styles.js +1 -1
- package/dist/components/Label/Label.js +3 -14
- package/dist/components/Label/Label.stories.js +5 -16
- package/dist/components/Label/Label.styles.js +1 -1
- package/dist/components/Loading/Loading.js +5 -17
- package/dist/components/Loading/Loading.stories.js +6 -17
- package/dist/components/Navbar/Navbar.js +3 -4
- package/dist/components/Navbar/Navbar.stories.js +8 -19
- package/dist/components/Popover/Popover.js +5 -16
- package/dist/components/Popover/Popover.stories.js +5 -16
- package/dist/components/ProgressBar/ProgressBar.js +8 -9
- package/dist/components/ProgressBar/ProgressBar.stories.js +14 -27
- package/dist/components/RadioGroup/RadioGroup.js +6 -17
- package/dist/components/RadioGroup/RadioGroup.stories.js +9 -20
- package/dist/components/Search/Search.js +2 -13
- package/dist/components/Search/Search.stories.js +10 -21
- package/dist/components/Slider/Slider.js +22 -0
- package/dist/components/Slider/Slider.stories.js +33 -0
- package/dist/components/Switch/Switch.js +22 -0
- package/dist/components/Switch/Switch.stories.js +32 -0
- package/dist/components/Table/Datagrid.js +2 -3
- package/dist/components/Table/Table.js +24 -35
- package/dist/components/Table/Table.stories.js +5 -16
- package/dist/components/Tabs/Tabs.js +56 -9
- package/dist/components/Tabs/Tabs.stories.js +13 -24
- package/dist/components/Text/Text.js +3 -4
- package/dist/components/Text/Text.stories.js +12 -23
- package/dist/components/TextInput/TextInput.js +30 -41
- package/dist/components/TextInput/TextInput.stories.js +17 -28
- package/dist/components/TextInput/TextInput.styles.js +7 -7
- package/dist/components/ThemeToggle.js +3 -3
- package/dist/esm/bundle.css +155 -495
- package/dist/esm/bundle.js +3 -3
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/ActionButton/ActionButton.stories.d.ts +7 -7
- package/dist/esm/types/components/Button/Button.d.ts +1 -1
- package/dist/esm/types/components/Button/Button.styles.d.ts +1 -1
- package/dist/esm/types/components/Button/Buttons.stories.d.ts +13 -13
- package/dist/esm/types/components/Checkbox/Checkbox.stories.d.ts +60 -60
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +64 -64
- package/dist/esm/types/components/Icon/Icon.d.ts +11 -0
- package/dist/esm/types/components/Icon/Icon.stories.d.ts +508 -0
- package/dist/esm/types/components/Icon/Icon.styles.d.ts +4 -0
- package/dist/esm/types/components/Input/Input.stories.d.ts +115 -115
- package/dist/esm/types/components/Label/Label.stories.d.ts +51 -51
- package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +54 -54
- package/dist/esm/types/components/Search/Search.stories.d.ts +64 -64
- package/dist/esm/types/components/Slider/Slider.d.ts +5 -0
- package/dist/esm/types/components/Slider/Slider.stories.d.ts +303 -0
- package/dist/esm/types/components/Switch/Switch.d.ts +4 -0
- package/dist/esm/types/components/Switch/Switch.stories.d.ts +305 -0
- package/dist/esm/types/components/Table/Table.stories.d.ts +7 -7
- package/dist/esm/types/components/Tabs/Tabs.d.ts +12 -3
- package/dist/esm/types/components/Tabs/Tabs.stories.d.ts +18 -0
- package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +62 -62
- package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +1 -1
- package/dist/esm/types/icons/heroIconConfig.d.ts +1 -0
- package/dist/esm/types/icons/iconConfig.d.ts +2 -0
- package/dist/esm/types/icons/iconRegistry.d.ts +19 -0
- package/dist/esm/types/icons/index.d.ts +1 -0
- package/dist/esm/types/icons/material-icon/outline/ChevronDownIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/CollapseContentIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/ContentCopyIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/ContentPasteIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/DataTableIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/ExpandCircleDownIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/ExpandCircleRightIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/ExpandCircleUpIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/ExpandContentIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/InterestsIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/SaveIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/TableChartIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/index.d.ts +12 -0
- package/dist/esm/types/icons/material-icon/solid/ChevronDownIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/CollapseContentIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/ContentCopyIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/ContentPasteIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/DataTableIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/ExpandCircleDownIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/ExpandCircleRightIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/ExpandCircleUpIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/ExpandContentIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/InterestsIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/SaveIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/TableChartIcon.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/index.d.ts +12 -0
- package/dist/esm/types/icons/materialIconConfig.d.ts +1 -0
- package/dist/esm/types/icons/type.d.ts +8 -0
- package/dist/esm/types/icons/utils.d.ts +1 -0
- package/dist/esm/types/index.d.ts +4 -0
- package/dist/icons/heroIconConfig.js +13 -0
- package/dist/icons/iconConfig.js +2 -0
- package/dist/icons/iconRegistry.js +47 -0
- package/dist/icons/index.js +1 -0
- package/dist/icons/material-icon/outline/ChevronDownIcon.js +3 -0
- package/dist/icons/material-icon/outline/CollapseContentIcon.js +3 -0
- package/dist/icons/material-icon/outline/ContentCopyIcon.js +3 -0
- package/dist/icons/material-icon/outline/ContentPasteIcon.js +3 -0
- package/dist/icons/material-icon/outline/DataTableIcon.js +3 -0
- package/dist/icons/material-icon/outline/ExpandCircleDownIcon.js +3 -0
- package/dist/icons/material-icon/outline/ExpandCircleRightIcon.js +3 -0
- package/dist/icons/material-icon/outline/ExpandCircleUpIcon.js +3 -0
- package/dist/icons/material-icon/outline/ExpandContentIcon.js +3 -0
- package/dist/icons/material-icon/outline/InterestsIcon.js +3 -0
- package/dist/icons/material-icon/outline/SaveIcon.js +3 -0
- package/dist/icons/material-icon/outline/TableChartIcon.js +3 -0
- package/dist/icons/material-icon/outline/index.js +12 -0
- package/dist/icons/material-icon/solid/ChevronDownIcon.js +3 -0
- package/dist/icons/material-icon/solid/CollapseContentIcon.js +3 -0
- package/dist/icons/material-icon/solid/ContentCopyIcon.js +3 -0
- package/dist/icons/material-icon/solid/ContentPasteIcon.js +3 -0
- package/dist/icons/material-icon/solid/DataTableIcon.js +3 -0
- package/dist/icons/material-icon/solid/ExpandCircleDownIcon.js +3 -0
- package/dist/icons/material-icon/solid/ExpandCircleRightIcon.js +3 -0
- package/dist/icons/material-icon/solid/ExpandCircleUpIcon.js +3 -0
- package/dist/icons/material-icon/solid/ExpandContentIcon.js +3 -0
- package/dist/icons/material-icon/solid/InterestsIcon.js +3 -0
- package/dist/icons/material-icon/solid/SaveIcon.js +3 -0
- package/dist/icons/material-icon/solid/TableChartIcon.js +3 -0
- package/dist/icons/material-icon/solid/index.js +12 -0
- package/dist/icons/materialIconConfig.js +13 -0
- package/dist/icons/type.js +1 -0
- package/dist/icons/utils.js +6 -0
- package/dist/index.d.ts +30 -4
- package/dist/index.js +4 -0
- package/dist/src/theme/global.css +187 -619
- package/dist/stories/ColorGroupPreview.js +6 -9
- package/dist/stories/ColorPreview.js +1 -2
- package/dist/theme/presets/colors.js +2 -1
- package/dist/utils/cn.js +1 -5
- package/dist/utils/datetime.js +12 -12
- package/package.json +3 -1
- package/src/components/ActionButton/ActionButton.stories.tsx +32 -13
- package/src/components/ActionButton/ActionButton.styles.ts +33 -8
- package/src/components/DataTable/DataTable.tsx +2 -2
- package/src/components/Icon/Icon.stories.tsx +450 -0
- package/src/components/Icon/Icon.styles.ts +26 -0
- package/src/components/Icon/Icon.tsx +67 -0
- package/src/components/Slider/Slider.stories.tsx +47 -0
- package/src/components/Slider/Slider.tsx +32 -0
- package/src/components/Switch/Switch.stories.tsx +46 -0
- package/src/components/Switch/Switch.tsx +32 -0
- package/src/components/Table/Table.tsx +2 -2
- package/src/components/Tabs/Tabs.tsx +99 -12
- package/src/icons/heroIconConfig.ts +23 -0
- package/src/icons/iconConfig.ts +2 -0
- package/src/icons/iconRegistry.ts +76 -0
- package/src/icons/index.ts +1 -0
- package/src/icons/material-icon/outline/ChevronDownIcon.tsx +22 -0
- package/src/icons/material-icon/outline/CollapseContentIcon.tsx +20 -0
- package/src/icons/material-icon/outline/ContentCopyIcon.tsx +20 -0
- package/src/icons/material-icon/outline/ContentPasteIcon.tsx +20 -0
- package/src/icons/material-icon/outline/DataTableIcon.tsx +20 -0
- package/src/icons/material-icon/outline/ExpandCircleDownIcon.tsx +20 -0
- package/src/icons/material-icon/outline/ExpandCircleRightIcon.tsx +20 -0
- package/src/icons/material-icon/outline/ExpandCircleUpIcon.tsx +20 -0
- package/src/icons/material-icon/outline/ExpandContentIcon.tsx +20 -0
- package/src/icons/material-icon/outline/InterestsIcon.tsx +20 -0
- package/src/icons/material-icon/outline/SaveIcon.tsx +20 -0
- package/src/icons/material-icon/outline/TableChartIcon.tsx +20 -0
- package/src/icons/material-icon/outline/index.ts +12 -0
- package/src/icons/material-icon/solid/ChevronDownIcon.tsx +22 -0
- package/src/icons/material-icon/solid/CollapseContentIcon.tsx +20 -0
- package/src/icons/material-icon/solid/ContentCopyIcon.tsx +20 -0
- package/src/icons/material-icon/solid/ContentPasteIcon.tsx +20 -0
- package/src/icons/material-icon/solid/DataTableIcon.tsx +20 -0
- package/src/icons/material-icon/solid/ExpandCircleDownIcon.tsx +20 -0
- package/src/icons/material-icon/solid/ExpandCircleRightIcon.tsx +20 -0
- package/src/icons/material-icon/solid/ExpandCircleUpIcon.tsx +20 -0
- package/src/icons/material-icon/solid/ExpandContentIcon.tsx +20 -0
- package/src/icons/material-icon/solid/InterestsIcon.tsx +20 -0
- package/src/icons/material-icon/solid/SaveIcon.tsx +20 -0
- package/src/icons/material-icon/solid/TableChartIcon.tsx +20 -0
- package/src/icons/material-icon/solid/index.ts +12 -0
- package/src/icons/materialIconConfig.tsx +23 -0
- package/src/icons/type.ts +11 -0
- package/src/icons/utils.ts +6 -0
- package/src/index.ts +5 -0
- package/src/theme/presets/colors.js +2 -1
- package/dist/cjs/types/components/ActionButton/ActionButton.styles copy.d.ts +0 -6
- package/dist/cjs/types/components/Button/Button.styles copy.d.ts +0 -7
- package/dist/components/ActionButton/ActionButton.styles copy.js +0 -90
- package/dist/components/Button/Button.styles copy.js +0 -210
- package/dist/esm/types/components/ActionButton/ActionButton.styles copy.d.ts +0 -6
- package/dist/esm/types/components/Button/Button.styles copy.d.ts +0 -7
- package/src/_theme/global copy.css +0 -761
- package/src/_theme/global.css +0 -39
- package/src/_theme/main-preset.js +0 -239
- package/src/_theme/plugins/utilities/typography.js +0 -81
- package/src/_theme/presets/colors copy 2.js +0 -319
- package/src/_theme/presets/colors copy.js +0 -229
- package/src/_theme/presets/colors.js +0 -94
- package/src/_theme/theme.d.ts +0 -69
- package/src/_theme/variables/base/button.css +0 -334
- package/src/_theme/variables/base/components copy.css +0 -19
- package/src/_theme/variables/default/colors.css +0 -292
- package/src/_theme/variables/default/typography.css +0 -178
- package/src/_theme/variables/xspector/colors.css +0 -468
- package/src/_theme/variables/xspector/typography.css +0 -178
- package/src/components/ActionButton/ActionButton.styles copy.ts +0 -95
- package/src/components/Button/Button.styles copy.ts +0 -214
|
@@ -24,67 +24,22 @@ declare const meta: {
|
|
|
24
24
|
error?: boolean | undefined;
|
|
25
25
|
hiddenPlaceholder?: boolean | undefined;
|
|
26
26
|
className?: string | undefined;
|
|
27
|
-
color?: string | undefined;
|
|
28
|
-
form?: string | undefined;
|
|
29
|
-
list?: string | undefined;
|
|
30
|
-
title?: string | undefined;
|
|
31
|
-
children?: React.ReactNode;
|
|
32
|
-
formAction?: string | undefined;
|
|
33
|
-
formEncType?: string | undefined;
|
|
34
|
-
formMethod?: string | undefined;
|
|
35
|
-
formNoValidate?: boolean | undefined;
|
|
36
|
-
formTarget?: string | undefined;
|
|
37
|
-
name?: string | undefined;
|
|
38
|
-
type?: React.HTMLInputTypeAttribute | undefined;
|
|
39
|
-
value?: string | number | readonly string[] | undefined;
|
|
40
|
-
defaultChecked?: boolean | undefined;
|
|
41
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
42
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
43
27
|
suppressHydrationWarning?: boolean | undefined;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
47
|
-
contextMenu?: string | undefined;
|
|
48
|
-
dir?: string | undefined;
|
|
49
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
50
|
-
hidden?: boolean | undefined;
|
|
28
|
+
color?: string | undefined;
|
|
29
|
+
height?: string | number | undefined;
|
|
51
30
|
id?: string | undefined;
|
|
52
31
|
lang?: string | undefined;
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
32
|
+
max?: string | number | undefined;
|
|
33
|
+
min?: string | number | undefined;
|
|
34
|
+
name?: string | undefined;
|
|
56
35
|
style?: React.CSSProperties | undefined;
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
radioGroup?: string | undefined;
|
|
36
|
+
type?: React.HTMLInputTypeAttribute | undefined;
|
|
37
|
+
width?: string | number | undefined;
|
|
60
38
|
role?: React.AriaRole | undefined;
|
|
61
|
-
|
|
62
|
-
content?: string | undefined;
|
|
63
|
-
datatype?: string | undefined;
|
|
64
|
-
inlist?: any;
|
|
65
|
-
prefix?: string | undefined;
|
|
66
|
-
property?: string | undefined;
|
|
67
|
-
rel?: string | undefined;
|
|
68
|
-
resource?: string | undefined;
|
|
69
|
-
rev?: string | undefined;
|
|
70
|
-
typeof?: string | undefined;
|
|
71
|
-
vocab?: string | undefined;
|
|
72
|
-
autoCapitalize?: string | undefined;
|
|
73
|
-
autoCorrect?: string | undefined;
|
|
74
|
-
autoSave?: string | undefined;
|
|
75
|
-
itemProp?: string | undefined;
|
|
76
|
-
itemScope?: boolean | undefined;
|
|
77
|
-
itemType?: string | undefined;
|
|
78
|
-
itemID?: string | undefined;
|
|
79
|
-
itemRef?: string | undefined;
|
|
80
|
-
results?: number | undefined;
|
|
81
|
-
security?: string | undefined;
|
|
82
|
-
unselectable?: "off" | "on" | undefined;
|
|
83
|
-
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
84
|
-
is?: string | undefined;
|
|
39
|
+
tabIndex?: number | undefined;
|
|
85
40
|
"aria-activedescendant"?: string | undefined;
|
|
86
41
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
87
|
-
"aria-autocomplete"?: "
|
|
42
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
88
43
|
"aria-braillelabel"?: string | undefined;
|
|
89
44
|
"aria-brailleroledescription"?: string | undefined;
|
|
90
45
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
@@ -94,7 +49,7 @@ declare const meta: {
|
|
|
94
49
|
"aria-colindextext"?: string | undefined;
|
|
95
50
|
"aria-colspan"?: number | undefined;
|
|
96
51
|
"aria-controls"?: string | undefined;
|
|
97
|
-
"aria-current"?: boolean | "true" | "false" | "
|
|
52
|
+
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
98
53
|
"aria-describedby"?: string | undefined;
|
|
99
54
|
"aria-description"?: string | undefined;
|
|
100
55
|
"aria-details"?: string | undefined;
|
|
@@ -104,14 +59,14 @@ declare const meta: {
|
|
|
104
59
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
105
60
|
"aria-flowto"?: string | undefined;
|
|
106
61
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
107
|
-
"aria-haspopup"?: boolean | "
|
|
62
|
+
"aria-haspopup"?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "true" | "false" | undefined;
|
|
108
63
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
109
64
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
110
65
|
"aria-keyshortcuts"?: string | undefined;
|
|
111
66
|
"aria-label"?: string | undefined;
|
|
112
67
|
"aria-labelledby"?: string | undefined;
|
|
113
68
|
"aria-level"?: number | undefined;
|
|
114
|
-
"aria-live"?: "
|
|
69
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
115
70
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
116
71
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
117
72
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
@@ -121,7 +76,7 @@ declare const meta: {
|
|
|
121
76
|
"aria-posinset"?: number | undefined;
|
|
122
77
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
123
78
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
124
|
-
"aria-relevant"?: "
|
|
79
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
125
80
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
126
81
|
"aria-roledescription"?: string | undefined;
|
|
127
82
|
"aria-rowcount"?: number | undefined;
|
|
@@ -135,6 +90,7 @@ declare const meta: {
|
|
|
135
90
|
"aria-valuemin"?: number | undefined;
|
|
136
91
|
"aria-valuenow"?: number | undefined;
|
|
137
92
|
"aria-valuetext"?: string | undefined;
|
|
93
|
+
children?: React.ReactNode;
|
|
138
94
|
dangerouslySetInnerHTML?: {
|
|
139
95
|
__html: string | TrustedHTML;
|
|
140
96
|
} | undefined;
|
|
@@ -298,58 +254,19 @@ declare const meta: {
|
|
|
298
254
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
299
255
|
onTransitionEnd?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
300
256
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
301
|
-
accept?: string | undefined;
|
|
302
|
-
alt?: string | undefined;
|
|
303
|
-
autoComplete?: React.HTMLInputAutoCompleteAttribute | undefined;
|
|
304
|
-
capture?: boolean | "user" | "environment" | undefined;
|
|
305
|
-
checked?: boolean | undefined;
|
|
306
|
-
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
307
|
-
height?: string | number | undefined;
|
|
308
|
-
max?: string | number | undefined;
|
|
309
|
-
maxLength?: number | undefined;
|
|
310
|
-
min?: string | number | undefined;
|
|
311
|
-
minLength?: number | undefined;
|
|
312
|
-
multiple?: boolean | undefined;
|
|
313
|
-
pattern?: string | undefined;
|
|
314
|
-
placeholder?: string | undefined;
|
|
315
|
-
readOnly?: boolean | undefined;
|
|
316
|
-
required?: boolean | undefined;
|
|
317
|
-
src?: string | undefined;
|
|
318
|
-
step?: string | number | undefined;
|
|
319
|
-
width?: string | number | undefined;
|
|
320
|
-
ref?: React.LegacyRef<HTMLInputElement> | undefined;
|
|
321
|
-
key?: React.Key | null | undefined;
|
|
322
|
-
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
323
|
-
};
|
|
324
|
-
export default meta;
|
|
325
|
-
export declare const Default: {
|
|
326
|
-
args: {};
|
|
327
|
-
render: (args: {
|
|
328
|
-
size?: "sm" | "md" | "lg" | undefined;
|
|
329
|
-
rounded?: "none" | "normal" | "full" | undefined;
|
|
330
|
-
variant?: "outline" | "flat" | "underline" | undefined;
|
|
331
|
-
fullwidth?: boolean | undefined;
|
|
332
|
-
disabled?: boolean | undefined;
|
|
333
|
-
error?: boolean | undefined;
|
|
334
|
-
hiddenPlaceholder?: boolean | undefined;
|
|
335
|
-
className?: string | undefined;
|
|
336
|
-
color?: string | undefined;
|
|
337
257
|
form?: string | undefined;
|
|
338
258
|
list?: string | undefined;
|
|
259
|
+
step?: string | number | undefined;
|
|
339
260
|
title?: string | undefined;
|
|
340
|
-
children?: React.ReactNode;
|
|
341
261
|
formAction?: string | undefined;
|
|
342
262
|
formEncType?: string | undefined;
|
|
343
263
|
formMethod?: string | undefined;
|
|
344
264
|
formNoValidate?: boolean | undefined;
|
|
345
265
|
formTarget?: string | undefined;
|
|
346
|
-
name?: string | undefined;
|
|
347
|
-
type?: React.HTMLInputTypeAttribute | undefined;
|
|
348
266
|
value?: string | number | readonly string[] | undefined;
|
|
349
267
|
defaultChecked?: boolean | undefined;
|
|
350
268
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
351
269
|
suppressContentEditableWarning?: boolean | undefined;
|
|
352
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
353
270
|
accessKey?: string | undefined;
|
|
354
271
|
autoFocus?: boolean | undefined;
|
|
355
272
|
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
@@ -357,16 +274,11 @@ export declare const Default: {
|
|
|
357
274
|
dir?: string | undefined;
|
|
358
275
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
359
276
|
hidden?: boolean | undefined;
|
|
360
|
-
id?: string | undefined;
|
|
361
|
-
lang?: string | undefined;
|
|
362
277
|
nonce?: string | undefined;
|
|
363
278
|
slot?: string | undefined;
|
|
364
279
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
365
|
-
|
|
366
|
-
tabIndex?: number | undefined;
|
|
367
|
-
translate?: "yes" | "no" | undefined;
|
|
280
|
+
translate?: "no" | "yes" | undefined;
|
|
368
281
|
radioGroup?: string | undefined;
|
|
369
|
-
role?: React.AriaRole | undefined;
|
|
370
282
|
about?: string | undefined;
|
|
371
283
|
content?: string | undefined;
|
|
372
284
|
datatype?: string | undefined;
|
|
@@ -389,11 +301,54 @@ export declare const Default: {
|
|
|
389
301
|
results?: number | undefined;
|
|
390
302
|
security?: string | undefined;
|
|
391
303
|
unselectable?: "off" | "on" | undefined;
|
|
392
|
-
inputMode?: "
|
|
304
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
393
305
|
is?: string | undefined;
|
|
306
|
+
accept?: string | undefined;
|
|
307
|
+
alt?: string | undefined;
|
|
308
|
+
autoComplete?: React.HTMLInputAutoCompleteAttribute | undefined;
|
|
309
|
+
capture?: boolean | "user" | "environment" | undefined;
|
|
310
|
+
checked?: boolean | undefined;
|
|
311
|
+
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
312
|
+
maxLength?: number | undefined;
|
|
313
|
+
minLength?: number | undefined;
|
|
314
|
+
multiple?: boolean | undefined;
|
|
315
|
+
pattern?: string | undefined;
|
|
316
|
+
placeholder?: string | undefined;
|
|
317
|
+
readOnly?: boolean | undefined;
|
|
318
|
+
required?: boolean | undefined;
|
|
319
|
+
src?: string | undefined;
|
|
320
|
+
ref?: React.LegacyRef<HTMLInputElement> | undefined;
|
|
321
|
+
key?: React.Key | null | undefined;
|
|
322
|
+
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
323
|
+
};
|
|
324
|
+
export default meta;
|
|
325
|
+
export declare const Default: {
|
|
326
|
+
args: {};
|
|
327
|
+
render: (args: {
|
|
328
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
329
|
+
rounded?: "none" | "normal" | "full" | undefined;
|
|
330
|
+
variant?: "outline" | "flat" | "underline" | undefined;
|
|
331
|
+
fullwidth?: boolean | undefined;
|
|
332
|
+
disabled?: boolean | undefined;
|
|
333
|
+
error?: boolean | undefined;
|
|
334
|
+
hiddenPlaceholder?: boolean | undefined;
|
|
335
|
+
className?: string | undefined;
|
|
336
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
337
|
+
color?: string | undefined;
|
|
338
|
+
height?: string | number | undefined;
|
|
339
|
+
id?: string | undefined;
|
|
340
|
+
lang?: string | undefined;
|
|
341
|
+
max?: string | number | undefined;
|
|
342
|
+
min?: string | number | undefined;
|
|
343
|
+
name?: string | undefined;
|
|
344
|
+
style?: React.CSSProperties | undefined;
|
|
345
|
+
type?: React.HTMLInputTypeAttribute | undefined;
|
|
346
|
+
width?: string | number | undefined;
|
|
347
|
+
role?: React.AriaRole | undefined;
|
|
348
|
+
tabIndex?: number | undefined;
|
|
394
349
|
"aria-activedescendant"?: string | undefined;
|
|
395
350
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
396
|
-
"aria-autocomplete"?: "
|
|
351
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
397
352
|
"aria-braillelabel"?: string | undefined;
|
|
398
353
|
"aria-brailleroledescription"?: string | undefined;
|
|
399
354
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
@@ -403,7 +358,7 @@ export declare const Default: {
|
|
|
403
358
|
"aria-colindextext"?: string | undefined;
|
|
404
359
|
"aria-colspan"?: number | undefined;
|
|
405
360
|
"aria-controls"?: string | undefined;
|
|
406
|
-
"aria-current"?: boolean | "true" | "false" | "
|
|
361
|
+
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
407
362
|
"aria-describedby"?: string | undefined;
|
|
408
363
|
"aria-description"?: string | undefined;
|
|
409
364
|
"aria-details"?: string | undefined;
|
|
@@ -413,14 +368,14 @@ export declare const Default: {
|
|
|
413
368
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
414
369
|
"aria-flowto"?: string | undefined;
|
|
415
370
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
416
|
-
"aria-haspopup"?: boolean | "
|
|
371
|
+
"aria-haspopup"?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "true" | "false" | undefined;
|
|
417
372
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
418
373
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
419
374
|
"aria-keyshortcuts"?: string | undefined;
|
|
420
375
|
"aria-label"?: string | undefined;
|
|
421
376
|
"aria-labelledby"?: string | undefined;
|
|
422
377
|
"aria-level"?: number | undefined;
|
|
423
|
-
"aria-live"?: "
|
|
378
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
424
379
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
425
380
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
426
381
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
@@ -430,7 +385,7 @@ export declare const Default: {
|
|
|
430
385
|
"aria-posinset"?: number | undefined;
|
|
431
386
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
432
387
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
433
|
-
"aria-relevant"?: "
|
|
388
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
434
389
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
435
390
|
"aria-roledescription"?: string | undefined;
|
|
436
391
|
"aria-rowcount"?: number | undefined;
|
|
@@ -444,6 +399,7 @@ export declare const Default: {
|
|
|
444
399
|
"aria-valuemin"?: number | undefined;
|
|
445
400
|
"aria-valuenow"?: number | undefined;
|
|
446
401
|
"aria-valuetext"?: string | undefined;
|
|
402
|
+
children?: React.ReactNode;
|
|
447
403
|
dangerouslySetInnerHTML?: {
|
|
448
404
|
__html: string | TrustedHTML;
|
|
449
405
|
} | undefined;
|
|
@@ -607,16 +563,62 @@ export declare const Default: {
|
|
|
607
563
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
608
564
|
onTransitionEnd?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
609
565
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
566
|
+
form?: string | undefined;
|
|
567
|
+
list?: string | undefined;
|
|
568
|
+
step?: string | number | undefined;
|
|
569
|
+
title?: string | undefined;
|
|
570
|
+
formAction?: string | undefined;
|
|
571
|
+
formEncType?: string | undefined;
|
|
572
|
+
formMethod?: string | undefined;
|
|
573
|
+
formNoValidate?: boolean | undefined;
|
|
574
|
+
formTarget?: string | undefined;
|
|
575
|
+
value?: string | number | readonly string[] | undefined;
|
|
576
|
+
defaultChecked?: boolean | undefined;
|
|
577
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
578
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
579
|
+
accessKey?: string | undefined;
|
|
580
|
+
autoFocus?: boolean | undefined;
|
|
581
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
582
|
+
contextMenu?: string | undefined;
|
|
583
|
+
dir?: string | undefined;
|
|
584
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
585
|
+
hidden?: boolean | undefined;
|
|
586
|
+
nonce?: string | undefined;
|
|
587
|
+
slot?: string | undefined;
|
|
588
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
589
|
+
translate?: "no" | "yes" | undefined;
|
|
590
|
+
radioGroup?: string | undefined;
|
|
591
|
+
about?: string | undefined;
|
|
592
|
+
content?: string | undefined;
|
|
593
|
+
datatype?: string | undefined;
|
|
594
|
+
inlist?: any;
|
|
595
|
+
prefix?: string | undefined;
|
|
596
|
+
property?: string | undefined;
|
|
597
|
+
rel?: string | undefined;
|
|
598
|
+
resource?: string | undefined;
|
|
599
|
+
rev?: string | undefined;
|
|
600
|
+
typeof?: string | undefined;
|
|
601
|
+
vocab?: string | undefined;
|
|
602
|
+
autoCapitalize?: string | undefined;
|
|
603
|
+
autoCorrect?: string | undefined;
|
|
604
|
+
autoSave?: string | undefined;
|
|
605
|
+
itemProp?: string | undefined;
|
|
606
|
+
itemScope?: boolean | undefined;
|
|
607
|
+
itemType?: string | undefined;
|
|
608
|
+
itemID?: string | undefined;
|
|
609
|
+
itemRef?: string | undefined;
|
|
610
|
+
results?: number | undefined;
|
|
611
|
+
security?: string | undefined;
|
|
612
|
+
unselectable?: "off" | "on" | undefined;
|
|
613
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
614
|
+
is?: string | undefined;
|
|
610
615
|
accept?: string | undefined;
|
|
611
616
|
alt?: string | undefined;
|
|
612
617
|
autoComplete?: React.HTMLInputAutoCompleteAttribute | undefined;
|
|
613
618
|
capture?: boolean | "user" | "environment" | undefined;
|
|
614
619
|
checked?: boolean | undefined;
|
|
615
620
|
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
616
|
-
height?: string | number | undefined;
|
|
617
|
-
max?: string | number | undefined;
|
|
618
621
|
maxLength?: number | undefined;
|
|
619
|
-
min?: string | number | undefined;
|
|
620
622
|
minLength?: number | undefined;
|
|
621
623
|
multiple?: boolean | undefined;
|
|
622
624
|
pattern?: string | undefined;
|
|
@@ -624,8 +626,6 @@ export declare const Default: {
|
|
|
624
626
|
readOnly?: boolean | undefined;
|
|
625
627
|
required?: boolean | undefined;
|
|
626
628
|
src?: string | undefined;
|
|
627
|
-
step?: string | number | undefined;
|
|
628
|
-
width?: string | number | undefined;
|
|
629
629
|
ref?: React.LegacyRef<HTMLInputElement> | undefined;
|
|
630
630
|
key?: React.Key | null | undefined;
|
|
631
631
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,59 +12,17 @@ declare const meta: {
|
|
|
12
12
|
layout: string;
|
|
13
13
|
};
|
|
14
14
|
decorators: ((Story: import("@storybook/types").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
15
|
-
color?: string | undefined;
|
|
16
|
-
className?: string | undefined;
|
|
17
|
-
form?: string | undefined;
|
|
18
|
-
title?: string | undefined;
|
|
19
|
-
children?: React.ReactNode;
|
|
20
|
-
defaultChecked?: boolean | undefined;
|
|
21
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
22
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
23
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
27
|
-
contextMenu?: string | undefined;
|
|
28
|
-
dir?: string | undefined;
|
|
29
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
30
|
-
hidden?: boolean | undefined;
|
|
16
|
+
className?: string | undefined;
|
|
17
|
+
color?: string | undefined;
|
|
31
18
|
id?: string | undefined;
|
|
32
19
|
lang?: string | undefined;
|
|
33
|
-
nonce?: string | undefined;
|
|
34
|
-
slot?: string | undefined;
|
|
35
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
36
20
|
style?: React.CSSProperties | undefined;
|
|
37
|
-
tabIndex?: number | undefined;
|
|
38
|
-
translate?: "yes" | "no" | undefined;
|
|
39
|
-
radioGroup?: string | undefined;
|
|
40
21
|
role?: React.AriaRole | undefined;
|
|
41
|
-
|
|
42
|
-
content?: string | undefined;
|
|
43
|
-
datatype?: string | undefined;
|
|
44
|
-
inlist?: any;
|
|
45
|
-
prefix?: string | undefined;
|
|
46
|
-
property?: string | undefined;
|
|
47
|
-
rel?: string | undefined;
|
|
48
|
-
resource?: string | undefined;
|
|
49
|
-
rev?: string | undefined;
|
|
50
|
-
typeof?: string | undefined;
|
|
51
|
-
vocab?: string | undefined;
|
|
52
|
-
autoCapitalize?: string | undefined;
|
|
53
|
-
autoCorrect?: string | undefined;
|
|
54
|
-
autoSave?: string | undefined;
|
|
55
|
-
itemProp?: string | undefined;
|
|
56
|
-
itemScope?: boolean | undefined;
|
|
57
|
-
itemType?: string | undefined;
|
|
58
|
-
itemID?: string | undefined;
|
|
59
|
-
itemRef?: string | undefined;
|
|
60
|
-
results?: number | undefined;
|
|
61
|
-
security?: string | undefined;
|
|
62
|
-
unselectable?: "off" | "on" | undefined;
|
|
63
|
-
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
64
|
-
is?: string | undefined;
|
|
22
|
+
tabIndex?: number | undefined;
|
|
65
23
|
"aria-activedescendant"?: string | undefined;
|
|
66
24
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
67
|
-
"aria-autocomplete"?: "
|
|
25
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
68
26
|
"aria-braillelabel"?: string | undefined;
|
|
69
27
|
"aria-brailleroledescription"?: string | undefined;
|
|
70
28
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
@@ -74,7 +32,7 @@ declare const meta: {
|
|
|
74
32
|
"aria-colindextext"?: string | undefined;
|
|
75
33
|
"aria-colspan"?: number | undefined;
|
|
76
34
|
"aria-controls"?: string | undefined;
|
|
77
|
-
"aria-current"?: boolean | "true" | "false" | "
|
|
35
|
+
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
78
36
|
"aria-describedby"?: string | undefined;
|
|
79
37
|
"aria-description"?: string | undefined;
|
|
80
38
|
"aria-details"?: string | undefined;
|
|
@@ -84,14 +42,14 @@ declare const meta: {
|
|
|
84
42
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
85
43
|
"aria-flowto"?: string | undefined;
|
|
86
44
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
87
|
-
"aria-haspopup"?: boolean | "
|
|
45
|
+
"aria-haspopup"?: boolean | "dialog" | "grid" | "listbox" | "menu" | "tree" | "true" | "false" | undefined;
|
|
88
46
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
89
47
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
90
48
|
"aria-keyshortcuts"?: string | undefined;
|
|
91
49
|
"aria-label"?: string | undefined;
|
|
92
50
|
"aria-labelledby"?: string | undefined;
|
|
93
51
|
"aria-level"?: number | undefined;
|
|
94
|
-
"aria-live"?: "
|
|
52
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
95
53
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
96
54
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
97
55
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
@@ -101,7 +59,7 @@ declare const meta: {
|
|
|
101
59
|
"aria-posinset"?: number | undefined;
|
|
102
60
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
103
61
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
104
|
-
"aria-relevant"?: "
|
|
62
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
105
63
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
106
64
|
"aria-roledescription"?: string | undefined;
|
|
107
65
|
"aria-rowcount"?: number | undefined;
|
|
@@ -115,6 +73,7 @@ declare const meta: {
|
|
|
115
73
|
"aria-valuemin"?: number | undefined;
|
|
116
74
|
"aria-valuenow"?: number | undefined;
|
|
117
75
|
"aria-valuetext"?: string | undefined;
|
|
76
|
+
children?: React.ReactNode;
|
|
118
77
|
dangerouslySetInnerHTML?: {
|
|
119
78
|
__html: string | TrustedHTML;
|
|
120
79
|
} | undefined;
|
|
@@ -278,8 +237,49 @@ declare const meta: {
|
|
|
278
237
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLLabelElement> | undefined;
|
|
279
238
|
onTransitionEnd?: React.TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
280
239
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLLabelElement> | undefined;
|
|
281
|
-
htmlFor?: string | undefined;
|
|
282
240
|
key?: React.Key | null | undefined;
|
|
241
|
+
form?: string | undefined;
|
|
242
|
+
title?: string | undefined;
|
|
243
|
+
defaultChecked?: boolean | undefined;
|
|
244
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
245
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
246
|
+
accessKey?: string | undefined;
|
|
247
|
+
autoFocus?: boolean | undefined;
|
|
248
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
249
|
+
contextMenu?: string | undefined;
|
|
250
|
+
dir?: string | undefined;
|
|
251
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
252
|
+
hidden?: boolean | undefined;
|
|
253
|
+
nonce?: string | undefined;
|
|
254
|
+
slot?: string | undefined;
|
|
255
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
256
|
+
translate?: "no" | "yes" | undefined;
|
|
257
|
+
radioGroup?: string | undefined;
|
|
258
|
+
about?: string | undefined;
|
|
259
|
+
content?: string | undefined;
|
|
260
|
+
datatype?: string | undefined;
|
|
261
|
+
inlist?: any;
|
|
262
|
+
prefix?: string | undefined;
|
|
263
|
+
property?: string | undefined;
|
|
264
|
+
rel?: string | undefined;
|
|
265
|
+
resource?: string | undefined;
|
|
266
|
+
rev?: string | undefined;
|
|
267
|
+
typeof?: string | undefined;
|
|
268
|
+
vocab?: string | undefined;
|
|
269
|
+
autoCapitalize?: string | undefined;
|
|
270
|
+
autoCorrect?: string | undefined;
|
|
271
|
+
autoSave?: string | undefined;
|
|
272
|
+
itemProp?: string | undefined;
|
|
273
|
+
itemScope?: boolean | undefined;
|
|
274
|
+
itemType?: string | undefined;
|
|
275
|
+
itemID?: string | undefined;
|
|
276
|
+
itemRef?: string | undefined;
|
|
277
|
+
results?: number | undefined;
|
|
278
|
+
security?: string | undefined;
|
|
279
|
+
unselectable?: "off" | "on" | undefined;
|
|
280
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
281
|
+
is?: string | undefined;
|
|
282
|
+
htmlFor?: string | undefined;
|
|
283
283
|
asChild?: boolean | undefined;
|
|
284
284
|
error?: boolean | null | undefined;
|
|
285
285
|
size?: "sm" | "md" | "lg" | null | undefined;
|