@indico-data/design-system 1.0.11 → 1.0.13

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.
Files changed (34) hide show
  1. package/lib/components/Accordion/Accordion.styles.d.ts +24 -24
  2. package/lib/components/Icon/Icon.stories.d.ts +2 -2
  3. package/lib/components/Icon/storyHelpers.d.ts +72 -72
  4. package/lib/components/ListTable/Header/Header.styles.d.ts +24 -24
  5. package/lib/components/ListTable/ListTable.styles.d.ts +24 -24
  6. package/lib/components/Pagination/Pagination.styles.d.ts +24 -24
  7. package/lib/components/basic-section/Section/Section.styles.d.ts +24 -24
  8. package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +24 -24
  9. package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +24 -24
  10. package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +24 -24
  11. package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +24 -24
  12. package/lib/components/buttons/Button/Button.styles.d.ts +24 -24
  13. package/lib/components/buttons/IconButton/IconButton.styles.d.ts +56 -56
  14. package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +48 -48
  15. package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -1
  16. package/lib/components/dropdowns/Select/Select.styles.d.ts +24 -24
  17. package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -1
  18. package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +24 -24
  19. package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +24 -24
  20. package/lib/components/inputs/SearchInput/SearchInput.styles.d.ts +24 -24
  21. package/lib/components/inputs/TextInput/TextInput.styles.d.ts +48 -48
  22. package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +24 -24
  23. package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +24 -24
  24. package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +24 -24
  25. package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +24 -24
  26. package/lib/index.d.ts +3 -1
  27. package/lib/index.esm.js +7699 -7175
  28. package/lib/index.esm.js.map +1 -1
  29. package/lib/index.js +7698 -7173
  30. package/lib/index.js.map +1 -1
  31. package/lib/styles/index.d.ts +1 -0
  32. package/package.json +1 -1
  33. package/rollup.config.mjs +5 -0
  34. package/src/styles/globals/index.tsx +2 -2
@@ -12,17 +12,17 @@ export declare const StyledAccordion: import("styled-components").IStyledCompone
12
12
  accessKey?: string | undefined;
13
13
  autoFocus?: boolean | undefined;
14
14
  className?: string | undefined;
15
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
15
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
16
16
  contextMenu?: string | undefined;
17
17
  dir?: string | undefined;
18
- draggable?: (boolean | "true" | "false") | undefined;
18
+ draggable?: (boolean | "false" | "true") | undefined;
19
19
  hidden?: boolean | undefined;
20
20
  id?: string | undefined;
21
21
  lang?: string | undefined;
22
22
  nonce?: string | undefined;
23
23
  placeholder?: string | undefined;
24
24
  slot?: string | undefined;
25
- spellCheck?: (boolean | "true" | "false") | undefined;
25
+ spellCheck?: (boolean | "false" | "true") | undefined;
26
26
  style?: import("react").CSSProperties | undefined;
27
27
  tabIndex?: number | undefined;
28
28
  title?: string | undefined;
@@ -52,55 +52,55 @@ export declare const StyledAccordion: import("styled-components").IStyledCompone
52
52
  results?: number | undefined;
53
53
  security?: string | undefined;
54
54
  unselectable?: "on" | "off" | undefined;
55
- inputMode?: "search" | "text" | "none" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
55
+ inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
56
56
  is?: string | undefined;
57
57
  "aria-activedescendant"?: string | undefined;
58
- "aria-atomic"?: (boolean | "true" | "false") | undefined;
59
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
58
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
59
+ "aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
60
60
  "aria-braillelabel"?: string | undefined;
61
61
  "aria-brailleroledescription"?: string | undefined;
62
- "aria-busy"?: (boolean | "true" | "false") | undefined;
63
- "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
62
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
63
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
64
64
  "aria-colcount"?: number | undefined;
65
65
  "aria-colindex"?: number | undefined;
66
66
  "aria-colindextext"?: string | undefined;
67
67
  "aria-colspan"?: number | undefined;
68
68
  "aria-controls"?: string | undefined;
69
- "aria-current"?: boolean | "time" | "date" | "location" | "true" | "false" | "step" | "page" | undefined;
69
+ "aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
70
70
  "aria-describedby"?: string | undefined;
71
71
  "aria-description"?: string | undefined;
72
72
  "aria-details"?: string | undefined;
73
- "aria-disabled"?: (boolean | "true" | "false") | undefined;
74
- "aria-dropeffect"?: "link" | "none" | "popup" | "copy" | "execute" | "move" | undefined;
73
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
74
+ "aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
75
75
  "aria-errormessage"?: string | undefined;
76
- "aria-expanded"?: (boolean | "true" | "false") | undefined;
76
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
77
77
  "aria-flowto"?: string | undefined;
78
- "aria-grabbed"?: (boolean | "true" | "false") | undefined;
79
- "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
80
- "aria-hidden"?: (boolean | "true" | "false") | undefined;
81
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
78
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
79
+ "aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
80
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
81
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
82
82
  "aria-keyshortcuts"?: string | undefined;
83
83
  "aria-label"?: string | undefined;
84
84
  "aria-labelledby"?: string | undefined;
85
85
  "aria-level"?: number | undefined;
86
86
  "aria-live"?: "off" | "assertive" | "polite" | undefined;
87
- "aria-modal"?: (boolean | "true" | "false") | undefined;
88
- "aria-multiline"?: (boolean | "true" | "false") | undefined;
89
- "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
87
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
88
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
89
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
90
90
  "aria-orientation"?: "horizontal" | "vertical" | undefined;
91
91
  "aria-owns"?: string | undefined;
92
92
  "aria-placeholder"?: string | undefined;
93
93
  "aria-posinset"?: number | undefined;
94
- "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
95
- "aria-readonly"?: (boolean | "true" | "false") | undefined;
96
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
97
- "aria-required"?: (boolean | "true" | "false") | undefined;
94
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
95
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
96
+ "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
97
+ "aria-required"?: (boolean | "false" | "true") | undefined;
98
98
  "aria-roledescription"?: string | undefined;
99
99
  "aria-rowcount"?: number | undefined;
100
100
  "aria-rowindex"?: number | undefined;
101
101
  "aria-rowindextext"?: string | undefined;
102
102
  "aria-rowspan"?: number | undefined;
103
- "aria-selected"?: (boolean | "true" | "false") | undefined;
103
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
104
104
  "aria-setsize"?: number | undefined;
105
105
  "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
106
106
  "aria-valuemax"?: number | undefined;
@@ -16,7 +16,7 @@ declare const meta: {
16
16
  name: {
17
17
  control: {
18
18
  type: string;
19
- options: ("search" | "split" | "address" | "form" | "label" | "menu" | "output" | "time" | "filter" | "text" | "indico-o-white" | "account" | "api-doc" | "arrow-dots" | "arrow-down" | "arrow-up-circle" | "arrows-cursor" | "branch" | "check-circle" | "check" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "classification-document" | "classification-image" | "classification-page" | "classify-and-unbundle" | "clipboard" | "coffee-1" | "coffee-2" | "coffee-fail" | "coffeecup" | "coffeesteam" | "company-name" | "confidence-bar-1" | "confidence-bar-2" | "confidence-bar-3" | "confidence-bar-4" | "confidence-bars" | "configure" | "crowdlabel" | "currency" | "dashboard" | "data-and-access" | "database" | "date" | "draggable" | "droplet" | "edit" | "education" | "ellipsis" | "elmos-fire" | "email" | "enterprise" | "extraction" | "eye" | "file" | "fileHappy" | "filter-outline" | "folder" | "gallery" | "graphiql" | "happy" | "help-solid" | "help" | "highlight" | "highlight-outline" | "indico-logo-white" | "indico-o" | "info" | "kabob" | "key" | "layout-complex" | "layout-simple" | "location" | "lock" | "model-import" | "model-starter" | "moon" | "moonbow" | "no-format" | "object-detection" | "organizations" | "page-thumbnail" | "pay-as-you-go" | "person" | "phone" | "pin" | "plus" | "pointer" | "popup" | "price" | "radio-button" | "recruiter" | "regex" | "reject" | "repair" | "research" | "retrain" | "sad" | "shrug" | "signature" | "sort-down" | "step-forward" | "sun" | "surround" | "surround-outline" | "swagger" | "thumbs-down" | "thumbs-up" | "trash" | "unlock" | "upload" | "url" | "user" | "wand" | "warning" | "workflows" | "x-close" | "zoom-in" | "zoom-out" | "fa-dot-circle" | "fa-file" | "fa-file-alt" | "fa-file-pdf" | "fa-file-word" | "fa-check-square" | "fa-square" | "fa-angle-double-left" | "fa-arrow-circle-right" | "fa-arrow-down" | "fa-arrow-left" | "fa-arrow-right" | "fa-arrow-up" | "fa-ban" | "fa-caret-down" | "fa-caret-up" | "fa-chart-bar" | "fa-check" | "fa-check-circle" | "fa-circle-notch" | "fa-clipboard" | "fa-clock" | "fa-clone" | "fa-cloud" | "fa-cog" | "fa-cogs" | "fa-coins" | "fa-cube" | "fa-cut" | "fa-download" | "fa-exclamation-circle" | "fa-exclamation-triangle" | "fa-external-link-alt" | "fa-eye-dropper" | "fa-file-download" | "fa-file-export" | "fa-file-upload" | "fa-filter" | "fa-ghost" | "fa-hat-wizard" | "fa-info-circle" | "fa-key" | "fa-keyboard" | "fa-layer-group" | "fa-pencil-alt" | "fa-plus" | "fa-plus-square" | "fa-question-circle" | "fa-robot" | "fa-search" | "fa-sign-out-alt" | "fa-sliders-h" | "fa-sync-alt" | "fa-tag" | "fa-times" | "fa-times-circle" | "fa-tint" | "fa-toggle-off" | "fa-toggle-on" | "fa-trash" | "fa-trash-alt" | "fa-undo" | "fa-user" | "fa-users" | "fa-mouse-pointer" | "fa-step-forward" | "fa-search-minus" | "fa-search-plus" | "fa-table" | "fa-image" | "fa-link" | "fa-list")[];
19
+ options: ("checkbox" | "ellipsis" | "help" | "pointer" | "text" | "zoom-in" | "zoom-out" | "menu" | "filter" | "search" | "split" | "address" | "form" | "label" | "output" | "time" | "indico-o-white" | "account" | "api-doc" | "arrow-dots" | "arrow-down" | "arrow-up-circle" | "arrows-cursor" | "branch" | "check-circle" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "classification-document" | "classification-image" | "classification-page" | "classify-and-unbundle" | "clipboard" | "coffee-1" | "coffee-2" | "coffee-fail" | "coffeecup" | "coffeesteam" | "company-name" | "confidence-bar-1" | "confidence-bar-2" | "confidence-bar-3" | "confidence-bar-4" | "confidence-bars" | "configure" | "crowdlabel" | "currency" | "dashboard" | "data-and-access" | "database" | "date" | "draggable" | "droplet" | "edit" | "education" | "elmos-fire" | "email" | "enterprise" | "extraction" | "eye" | "file" | "fileHappy" | "filter-outline" | "folder" | "gallery" | "graphiql" | "happy" | "help-solid" | "highlight" | "highlight-outline" | "indico-logo-white" | "indico-o" | "info" | "kabob" | "key" | "layout-complex" | "layout-simple" | "location" | "lock" | "model-import" | "model-starter" | "moon" | "moonbow" | "no-format" | "object-detection" | "organizations" | "page-thumbnail" | "pay-as-you-go" | "person" | "phone" | "pin" | "plus" | "popup" | "price" | "radio-button" | "recruiter" | "regex" | "reject" | "repair" | "research" | "retrain" | "sad" | "shrug" | "signature" | "sort-down" | "step-forward" | "sun" | "surround" | "surround-outline" | "swagger" | "thumbs-down" | "thumbs-up" | "trash" | "unlock" | "upload" | "url" | "user" | "wand" | "warning" | "workflows" | "x-close" | "fa-dot-circle" | "fa-file" | "fa-file-alt" | "fa-file-pdf" | "fa-file-word" | "fa-check-square" | "fa-square" | "fa-angle-double-left" | "fa-arrow-circle-right" | "fa-arrow-down" | "fa-arrow-left" | "fa-arrow-right" | "fa-arrow-up" | "fa-ban" | "fa-caret-down" | "fa-caret-up" | "fa-chart-bar" | "fa-check" | "fa-check-circle" | "fa-circle-notch" | "fa-clipboard" | "fa-clock" | "fa-clone" | "fa-cloud" | "fa-cog" | "fa-cogs" | "fa-coins" | "fa-cube" | "fa-cut" | "fa-download" | "fa-exclamation-circle" | "fa-exclamation-triangle" | "fa-external-link-alt" | "fa-eye-dropper" | "fa-file-download" | "fa-file-export" | "fa-file-upload" | "fa-filter" | "fa-ghost" | "fa-hat-wizard" | "fa-info-circle" | "fa-key" | "fa-keyboard" | "fa-layer-group" | "fa-pencil-alt" | "fa-plus" | "fa-plus-square" | "fa-question-circle" | "fa-robot" | "fa-search" | "fa-sign-out-alt" | "fa-sliders-h" | "fa-sync-alt" | "fa-tag" | "fa-times" | "fa-times-circle" | "fa-tint" | "fa-toggle-off" | "fa-toggle-on" | "fa-trash" | "fa-trash-alt" | "fa-undo" | "fa-user" | "fa-users" | "fa-mouse-pointer" | "fa-step-forward" | "fa-search-minus" | "fa-search-plus" | "fa-table" | "fa-image" | "fa-link" | "fa-list")[];
20
20
  };
21
21
  };
22
22
  };
@@ -27,7 +27,7 @@ declare const meta: {
27
27
  'data-testid'?: string | undefined;
28
28
  ariaLabel?: string | undefined;
29
29
  fill?: string | undefined;
30
- name: "search" | "split" | "address" | "form" | "label" | "menu" | "output" | "time" | "filter" | "text" | "indico-o-white" | "account" | "api-doc" | "arrow-dots" | "arrow-down" | "arrow-up-circle" | "arrows-cursor" | "branch" | "check-circle" | "check" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "classification-document" | "classification-image" | "classification-page" | "classify-and-unbundle" | "clipboard" | "coffee-1" | "coffee-2" | "coffee-fail" | "coffeecup" | "coffeesteam" | "company-name" | "confidence-bar-1" | "confidence-bar-2" | "confidence-bar-3" | "confidence-bar-4" | "confidence-bars" | "configure" | "crowdlabel" | "currency" | "dashboard" | "data-and-access" | "database" | "date" | "draggable" | "droplet" | "edit" | "education" | "ellipsis" | "elmos-fire" | "email" | "enterprise" | "extraction" | "eye" | "file" | "fileHappy" | "filter-outline" | "folder" | "gallery" | "graphiql" | "happy" | "help-solid" | "help" | "highlight" | "highlight-outline" | "indico-logo-white" | "indico-o" | "info" | "kabob" | "key" | "layout-complex" | "layout-simple" | "location" | "lock" | "model-import" | "model-starter" | "moon" | "moonbow" | "no-format" | "object-detection" | "organizations" | "page-thumbnail" | "pay-as-you-go" | "person" | "phone" | "pin" | "plus" | "pointer" | "popup" | "price" | "radio-button" | "recruiter" | "regex" | "reject" | "repair" | "research" | "retrain" | "sad" | "shrug" | "signature" | "sort-down" | "step-forward" | "sun" | "surround" | "surround-outline" | "swagger" | "thumbs-down" | "thumbs-up" | "trash" | "unlock" | "upload" | "url" | "user" | "wand" | "warning" | "workflows" | "x-close" | "zoom-in" | "zoom-out" | "fa-dot-circle" | "fa-file" | "fa-file-alt" | "fa-file-pdf" | "fa-file-word" | "fa-check-square" | "fa-square" | "fa-angle-double-left" | "fa-arrow-circle-right" | "fa-arrow-down" | "fa-arrow-left" | "fa-arrow-right" | "fa-arrow-up" | "fa-ban" | "fa-caret-down" | "fa-caret-up" | "fa-chart-bar" | "fa-check" | "fa-check-circle" | "fa-circle-notch" | "fa-clipboard" | "fa-clock" | "fa-clone" | "fa-cloud" | "fa-cog" | "fa-cogs" | "fa-coins" | "fa-cube" | "fa-cut" | "fa-download" | "fa-exclamation-circle" | "fa-exclamation-triangle" | "fa-external-link-alt" | "fa-eye-dropper" | "fa-file-download" | "fa-file-export" | "fa-file-upload" | "fa-filter" | "fa-ghost" | "fa-hat-wizard" | "fa-info-circle" | "fa-key" | "fa-keyboard" | "fa-layer-group" | "fa-pencil-alt" | "fa-plus" | "fa-plus-square" | "fa-question-circle" | "fa-robot" | "fa-search" | "fa-sign-out-alt" | "fa-sliders-h" | "fa-sync-alt" | "fa-tag" | "fa-times" | "fa-times-circle" | "fa-tint" | "fa-toggle-off" | "fa-toggle-on" | "fa-trash" | "fa-trash-alt" | "fa-undo" | "fa-user" | "fa-users" | "fa-mouse-pointer" | "fa-step-forward" | "fa-search-minus" | "fa-search-plus" | "fa-table" | "fa-image" | "fa-link" | "fa-list";
30
+ name: "checkbox" | "ellipsis" | "help" | "pointer" | "text" | "zoom-in" | "zoom-out" | "menu" | "filter" | "search" | "split" | "address" | "form" | "label" | "output" | "time" | "indico-o-white" | "account" | "api-doc" | "arrow-dots" | "arrow-down" | "arrow-up-circle" | "arrows-cursor" | "branch" | "check-circle" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "classification-document" | "classification-image" | "classification-page" | "classify-and-unbundle" | "clipboard" | "coffee-1" | "coffee-2" | "coffee-fail" | "coffeecup" | "coffeesteam" | "company-name" | "confidence-bar-1" | "confidence-bar-2" | "confidence-bar-3" | "confidence-bar-4" | "confidence-bars" | "configure" | "crowdlabel" | "currency" | "dashboard" | "data-and-access" | "database" | "date" | "draggable" | "droplet" | "edit" | "education" | "elmos-fire" | "email" | "enterprise" | "extraction" | "eye" | "file" | "fileHappy" | "filter-outline" | "folder" | "gallery" | "graphiql" | "happy" | "help-solid" | "highlight" | "highlight-outline" | "indico-logo-white" | "indico-o" | "info" | "kabob" | "key" | "layout-complex" | "layout-simple" | "location" | "lock" | "model-import" | "model-starter" | "moon" | "moonbow" | "no-format" | "object-detection" | "organizations" | "page-thumbnail" | "pay-as-you-go" | "person" | "phone" | "pin" | "plus" | "popup" | "price" | "radio-button" | "recruiter" | "regex" | "reject" | "repair" | "research" | "retrain" | "sad" | "shrug" | "signature" | "sort-down" | "step-forward" | "sun" | "surround" | "surround-outline" | "swagger" | "thumbs-down" | "thumbs-up" | "trash" | "unlock" | "upload" | "url" | "user" | "wand" | "warning" | "workflows" | "x-close" | "fa-dot-circle" | "fa-file" | "fa-file-alt" | "fa-file-pdf" | "fa-file-word" | "fa-check-square" | "fa-square" | "fa-angle-double-left" | "fa-arrow-circle-right" | "fa-arrow-down" | "fa-arrow-left" | "fa-arrow-right" | "fa-arrow-up" | "fa-ban" | "fa-caret-down" | "fa-caret-up" | "fa-chart-bar" | "fa-check" | "fa-check-circle" | "fa-circle-notch" | "fa-clipboard" | "fa-clock" | "fa-clone" | "fa-cloud" | "fa-cog" | "fa-cogs" | "fa-coins" | "fa-cube" | "fa-cut" | "fa-download" | "fa-exclamation-circle" | "fa-exclamation-triangle" | "fa-external-link-alt" | "fa-eye-dropper" | "fa-file-download" | "fa-file-export" | "fa-file-upload" | "fa-filter" | "fa-ghost" | "fa-hat-wizard" | "fa-info-circle" | "fa-key" | "fa-keyboard" | "fa-layer-group" | "fa-pencil-alt" | "fa-plus" | "fa-plus-square" | "fa-question-circle" | "fa-robot" | "fa-search" | "fa-sign-out-alt" | "fa-sliders-h" | "fa-sync-alt" | "fa-tag" | "fa-times" | "fa-times-circle" | "fa-tint" | "fa-toggle-off" | "fa-toggle-on" | "fa-trash" | "fa-trash-alt" | "fa-undo" | "fa-user" | "fa-users" | "fa-mouse-pointer" | "fa-step-forward" | "fa-search-minus" | "fa-search-plus" | "fa-table" | "fa-image" | "fa-link" | "fa-list";
31
31
  size?: [string | number] | [string | number, string | number] | undefined;
32
32
  style?: any;
33
33
  onClick?: (() => void) | undefined;
@@ -13,17 +13,17 @@ export declare const IconContainer: import("styled-components").IStyledComponent
13
13
  accessKey?: string | undefined;
14
14
  autoFocus?: boolean | undefined;
15
15
  className?: string | undefined;
16
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
16
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
17
17
  contextMenu?: string | undefined;
18
18
  dir?: string | undefined;
19
- draggable?: (boolean | "true" | "false") | undefined;
19
+ draggable?: (boolean | "false" | "true") | undefined;
20
20
  hidden?: boolean | undefined;
21
21
  id?: string | undefined;
22
22
  lang?: string | undefined;
23
23
  nonce?: string | undefined;
24
24
  placeholder?: string | undefined;
25
25
  slot?: string | undefined;
26
- spellCheck?: (boolean | "true" | "false") | undefined;
26
+ spellCheck?: (boolean | "false" | "true") | undefined;
27
27
  style?: React.CSSProperties | undefined;
28
28
  tabIndex?: number | undefined;
29
29
  title?: string | undefined;
@@ -53,55 +53,55 @@ export declare const IconContainer: import("styled-components").IStyledComponent
53
53
  results?: number | undefined;
54
54
  security?: string | undefined;
55
55
  unselectable?: "on" | "off" | undefined;
56
- inputMode?: "search" | "text" | "none" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
56
+ inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
57
57
  is?: string | undefined;
58
58
  "aria-activedescendant"?: string | undefined;
59
- "aria-atomic"?: (boolean | "true" | "false") | undefined;
60
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
59
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
60
+ "aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
61
61
  "aria-braillelabel"?: string | undefined;
62
62
  "aria-brailleroledescription"?: string | undefined;
63
- "aria-busy"?: (boolean | "true" | "false") | undefined;
64
- "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
63
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
64
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
65
65
  "aria-colcount"?: number | undefined;
66
66
  "aria-colindex"?: number | undefined;
67
67
  "aria-colindextext"?: string | undefined;
68
68
  "aria-colspan"?: number | undefined;
69
69
  "aria-controls"?: string | undefined;
70
- "aria-current"?: boolean | "time" | "date" | "location" | "true" | "false" | "step" | "page" | undefined;
70
+ "aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
71
71
  "aria-describedby"?: string | undefined;
72
72
  "aria-description"?: string | undefined;
73
73
  "aria-details"?: string | undefined;
74
- "aria-disabled"?: (boolean | "true" | "false") | undefined;
75
- "aria-dropeffect"?: "link" | "none" | "popup" | "copy" | "execute" | "move" | undefined;
74
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
75
+ "aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
76
76
  "aria-errormessage"?: string | undefined;
77
- "aria-expanded"?: (boolean | "true" | "false") | undefined;
77
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
78
78
  "aria-flowto"?: string | undefined;
79
- "aria-grabbed"?: (boolean | "true" | "false") | undefined;
80
- "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
81
- "aria-hidden"?: (boolean | "true" | "false") | undefined;
82
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
79
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
80
+ "aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
81
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
82
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
83
83
  "aria-keyshortcuts"?: string | undefined;
84
84
  "aria-label"?: string | undefined;
85
85
  "aria-labelledby"?: string | undefined;
86
86
  "aria-level"?: number | undefined;
87
87
  "aria-live"?: "off" | "assertive" | "polite" | undefined;
88
- "aria-modal"?: (boolean | "true" | "false") | undefined;
89
- "aria-multiline"?: (boolean | "true" | "false") | undefined;
90
- "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
88
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
89
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
90
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
91
91
  "aria-orientation"?: "horizontal" | "vertical" | undefined;
92
92
  "aria-owns"?: string | undefined;
93
93
  "aria-placeholder"?: string | undefined;
94
94
  "aria-posinset"?: number | undefined;
95
- "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
96
- "aria-readonly"?: (boolean | "true" | "false") | undefined;
97
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
98
- "aria-required"?: (boolean | "true" | "false") | undefined;
95
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
96
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
97
+ "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
98
+ "aria-required"?: (boolean | "false" | "true") | undefined;
99
99
  "aria-roledescription"?: string | undefined;
100
100
  "aria-rowcount"?: number | undefined;
101
101
  "aria-rowindex"?: number | undefined;
102
102
  "aria-rowindextext"?: string | undefined;
103
103
  "aria-rowspan"?: number | undefined;
104
- "aria-selected"?: (boolean | "true" | "false") | undefined;
104
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
105
105
  "aria-setsize"?: number | undefined;
106
106
  "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
107
107
  "aria-valuemax"?: number | undefined;
@@ -285,17 +285,17 @@ export declare const IconGroupContainer: import("styled-components").IStyledComp
285
285
  accessKey?: string | undefined;
286
286
  autoFocus?: boolean | undefined;
287
287
  className?: string | undefined;
288
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
288
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
289
289
  contextMenu?: string | undefined;
290
290
  dir?: string | undefined;
291
- draggable?: (boolean | "true" | "false") | undefined;
291
+ draggable?: (boolean | "false" | "true") | undefined;
292
292
  hidden?: boolean | undefined;
293
293
  id?: string | undefined;
294
294
  lang?: string | undefined;
295
295
  nonce?: string | undefined;
296
296
  placeholder?: string | undefined;
297
297
  slot?: string | undefined;
298
- spellCheck?: (boolean | "true" | "false") | undefined;
298
+ spellCheck?: (boolean | "false" | "true") | undefined;
299
299
  style?: React.CSSProperties | undefined;
300
300
  tabIndex?: number | undefined;
301
301
  title?: string | undefined;
@@ -325,55 +325,55 @@ export declare const IconGroupContainer: import("styled-components").IStyledComp
325
325
  results?: number | undefined;
326
326
  security?: string | undefined;
327
327
  unselectable?: "on" | "off" | undefined;
328
- inputMode?: "search" | "text" | "none" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
328
+ inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
329
329
  is?: string | undefined;
330
330
  "aria-activedescendant"?: string | undefined;
331
- "aria-atomic"?: (boolean | "true" | "false") | undefined;
332
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
331
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
332
+ "aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
333
333
  "aria-braillelabel"?: string | undefined;
334
334
  "aria-brailleroledescription"?: string | undefined;
335
- "aria-busy"?: (boolean | "true" | "false") | undefined;
336
- "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
335
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
336
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
337
337
  "aria-colcount"?: number | undefined;
338
338
  "aria-colindex"?: number | undefined;
339
339
  "aria-colindextext"?: string | undefined;
340
340
  "aria-colspan"?: number | undefined;
341
341
  "aria-controls"?: string | undefined;
342
- "aria-current"?: boolean | "time" | "date" | "location" | "true" | "false" | "step" | "page" | undefined;
342
+ "aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
343
343
  "aria-describedby"?: string | undefined;
344
344
  "aria-description"?: string | undefined;
345
345
  "aria-details"?: string | undefined;
346
- "aria-disabled"?: (boolean | "true" | "false") | undefined;
347
- "aria-dropeffect"?: "link" | "none" | "popup" | "copy" | "execute" | "move" | undefined;
346
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
347
+ "aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
348
348
  "aria-errormessage"?: string | undefined;
349
- "aria-expanded"?: (boolean | "true" | "false") | undefined;
349
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
350
350
  "aria-flowto"?: string | undefined;
351
- "aria-grabbed"?: (boolean | "true" | "false") | undefined;
352
- "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
353
- "aria-hidden"?: (boolean | "true" | "false") | undefined;
354
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
351
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
352
+ "aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
353
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
354
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
355
355
  "aria-keyshortcuts"?: string | undefined;
356
356
  "aria-label"?: string | undefined;
357
357
  "aria-labelledby"?: string | undefined;
358
358
  "aria-level"?: number | undefined;
359
359
  "aria-live"?: "off" | "assertive" | "polite" | undefined;
360
- "aria-modal"?: (boolean | "true" | "false") | undefined;
361
- "aria-multiline"?: (boolean | "true" | "false") | undefined;
362
- "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
360
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
361
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
362
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
363
363
  "aria-orientation"?: "horizontal" | "vertical" | undefined;
364
364
  "aria-owns"?: string | undefined;
365
365
  "aria-placeholder"?: string | undefined;
366
366
  "aria-posinset"?: number | undefined;
367
- "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
368
- "aria-readonly"?: (boolean | "true" | "false") | undefined;
369
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
370
- "aria-required"?: (boolean | "true" | "false") | undefined;
367
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
368
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
369
+ "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
370
+ "aria-required"?: (boolean | "false" | "true") | undefined;
371
371
  "aria-roledescription"?: string | undefined;
372
372
  "aria-rowcount"?: number | undefined;
373
373
  "aria-rowindex"?: number | undefined;
374
374
  "aria-rowindextext"?: string | undefined;
375
375
  "aria-rowspan"?: number | undefined;
376
- "aria-selected"?: (boolean | "true" | "false") | undefined;
376
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
377
377
  "aria-setsize"?: number | undefined;
378
378
  "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
379
379
  "aria-valuemax"?: number | undefined;
@@ -557,17 +557,17 @@ export declare const SpecifiedSizeContainer: import("styled-components").IStyled
557
557
  accessKey?: string | undefined;
558
558
  autoFocus?: boolean | undefined;
559
559
  className?: string | undefined;
560
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
560
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
561
561
  contextMenu?: string | undefined;
562
562
  dir?: string | undefined;
563
- draggable?: (boolean | "true" | "false") | undefined;
563
+ draggable?: (boolean | "false" | "true") | undefined;
564
564
  hidden?: boolean | undefined;
565
565
  id?: string | undefined;
566
566
  lang?: string | undefined;
567
567
  nonce?: string | undefined;
568
568
  placeholder?: string | undefined;
569
569
  slot?: string | undefined;
570
- spellCheck?: (boolean | "true" | "false") | undefined;
570
+ spellCheck?: (boolean | "false" | "true") | undefined;
571
571
  style?: React.CSSProperties | undefined;
572
572
  tabIndex?: number | undefined;
573
573
  title?: string | undefined;
@@ -597,55 +597,55 @@ export declare const SpecifiedSizeContainer: import("styled-components").IStyled
597
597
  results?: number | undefined;
598
598
  security?: string | undefined;
599
599
  unselectable?: "on" | "off" | undefined;
600
- inputMode?: "search" | "text" | "none" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
600
+ inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
601
601
  is?: string | undefined;
602
602
  "aria-activedescendant"?: string | undefined;
603
- "aria-atomic"?: (boolean | "true" | "false") | undefined;
604
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
603
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
604
+ "aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
605
605
  "aria-braillelabel"?: string | undefined;
606
606
  "aria-brailleroledescription"?: string | undefined;
607
- "aria-busy"?: (boolean | "true" | "false") | undefined;
608
- "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
607
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
608
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
609
609
  "aria-colcount"?: number | undefined;
610
610
  "aria-colindex"?: number | undefined;
611
611
  "aria-colindextext"?: string | undefined;
612
612
  "aria-colspan"?: number | undefined;
613
613
  "aria-controls"?: string | undefined;
614
- "aria-current"?: boolean | "time" | "date" | "location" | "true" | "false" | "step" | "page" | undefined;
614
+ "aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
615
615
  "aria-describedby"?: string | undefined;
616
616
  "aria-description"?: string | undefined;
617
617
  "aria-details"?: string | undefined;
618
- "aria-disabled"?: (boolean | "true" | "false") | undefined;
619
- "aria-dropeffect"?: "link" | "none" | "popup" | "copy" | "execute" | "move" | undefined;
618
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
619
+ "aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
620
620
  "aria-errormessage"?: string | undefined;
621
- "aria-expanded"?: (boolean | "true" | "false") | undefined;
621
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
622
622
  "aria-flowto"?: string | undefined;
623
- "aria-grabbed"?: (boolean | "true" | "false") | undefined;
624
- "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
625
- "aria-hidden"?: (boolean | "true" | "false") | undefined;
626
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
623
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
624
+ "aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
625
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
626
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
627
627
  "aria-keyshortcuts"?: string | undefined;
628
628
  "aria-label"?: string | undefined;
629
629
  "aria-labelledby"?: string | undefined;
630
630
  "aria-level"?: number | undefined;
631
631
  "aria-live"?: "off" | "assertive" | "polite" | undefined;
632
- "aria-modal"?: (boolean | "true" | "false") | undefined;
633
- "aria-multiline"?: (boolean | "true" | "false") | undefined;
634
- "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
632
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
633
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
634
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
635
635
  "aria-orientation"?: "horizontal" | "vertical" | undefined;
636
636
  "aria-owns"?: string | undefined;
637
637
  "aria-placeholder"?: string | undefined;
638
638
  "aria-posinset"?: number | undefined;
639
- "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
640
- "aria-readonly"?: (boolean | "true" | "false") | undefined;
641
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
642
- "aria-required"?: (boolean | "true" | "false") | undefined;
639
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
640
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
641
+ "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
642
+ "aria-required"?: (boolean | "false" | "true") | undefined;
643
643
  "aria-roledescription"?: string | undefined;
644
644
  "aria-rowcount"?: number | undefined;
645
645
  "aria-rowindex"?: number | undefined;
646
646
  "aria-rowindextext"?: string | undefined;
647
647
  "aria-rowspan"?: number | undefined;
648
- "aria-selected"?: (boolean | "true" | "false") | undefined;
648
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
649
649
  "aria-setsize"?: number | undefined;
650
650
  "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
651
651
  "aria-valuemax"?: number | undefined;
@@ -10,17 +10,17 @@ export declare const StyledHeader: import("styled-components").IStyledComponent<
10
10
  accessKey?: string | undefined;
11
11
  autoFocus?: boolean | undefined;
12
12
  className?: string | undefined;
13
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
13
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
14
14
  contextMenu?: string | undefined;
15
15
  dir?: string | undefined;
16
- draggable?: (boolean | "true" | "false") | undefined;
16
+ draggable?: (boolean | "false" | "true") | undefined;
17
17
  hidden?: boolean | undefined;
18
18
  id?: string | undefined;
19
19
  lang?: string | undefined;
20
20
  nonce?: string | undefined;
21
21
  placeholder?: string | undefined;
22
22
  slot?: string | undefined;
23
- spellCheck?: (boolean | "true" | "false") | undefined;
23
+ spellCheck?: (boolean | "false" | "true") | undefined;
24
24
  style?: import("react").CSSProperties | undefined;
25
25
  tabIndex?: number | undefined;
26
26
  title?: string | undefined;
@@ -50,55 +50,55 @@ export declare const StyledHeader: import("styled-components").IStyledComponent<
50
50
  results?: number | undefined;
51
51
  security?: string | undefined;
52
52
  unselectable?: "on" | "off" | undefined;
53
- inputMode?: "search" | "text" | "none" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
53
+ inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
54
54
  is?: string | undefined;
55
55
  "aria-activedescendant"?: string | undefined;
56
- "aria-atomic"?: (boolean | "true" | "false") | undefined;
57
- "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
56
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
57
+ "aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
58
58
  "aria-braillelabel"?: string | undefined;
59
59
  "aria-brailleroledescription"?: string | undefined;
60
- "aria-busy"?: (boolean | "true" | "false") | undefined;
61
- "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
60
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
61
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
62
62
  "aria-colcount"?: number | undefined;
63
63
  "aria-colindex"?: number | undefined;
64
64
  "aria-colindextext"?: string | undefined;
65
65
  "aria-colspan"?: number | undefined;
66
66
  "aria-controls"?: string | undefined;
67
- "aria-current"?: boolean | "time" | "date" | "location" | "true" | "false" | "step" | "page" | undefined;
67
+ "aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
68
68
  "aria-describedby"?: string | undefined;
69
69
  "aria-description"?: string | undefined;
70
70
  "aria-details"?: string | undefined;
71
- "aria-disabled"?: (boolean | "true" | "false") | undefined;
72
- "aria-dropeffect"?: "link" | "none" | "popup" | "copy" | "execute" | "move" | undefined;
71
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
72
+ "aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
73
73
  "aria-errormessage"?: string | undefined;
74
- "aria-expanded"?: (boolean | "true" | "false") | undefined;
74
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
75
75
  "aria-flowto"?: string | undefined;
76
- "aria-grabbed"?: (boolean | "true" | "false") | undefined;
77
- "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
78
- "aria-hidden"?: (boolean | "true" | "false") | undefined;
79
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
76
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
77
+ "aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
78
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
79
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
80
80
  "aria-keyshortcuts"?: string | undefined;
81
81
  "aria-label"?: string | undefined;
82
82
  "aria-labelledby"?: string | undefined;
83
83
  "aria-level"?: number | undefined;
84
84
  "aria-live"?: "off" | "assertive" | "polite" | undefined;
85
- "aria-modal"?: (boolean | "true" | "false") | undefined;
86
- "aria-multiline"?: (boolean | "true" | "false") | undefined;
87
- "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
85
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
86
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
87
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
88
88
  "aria-orientation"?: "horizontal" | "vertical" | undefined;
89
89
  "aria-owns"?: string | undefined;
90
90
  "aria-placeholder"?: string | undefined;
91
91
  "aria-posinset"?: number | undefined;
92
- "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
93
- "aria-readonly"?: (boolean | "true" | "false") | undefined;
94
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
95
- "aria-required"?: (boolean | "true" | "false") | undefined;
92
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
93
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
94
+ "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
95
+ "aria-required"?: (boolean | "false" | "true") | undefined;
96
96
  "aria-roledescription"?: string | undefined;
97
97
  "aria-rowcount"?: number | undefined;
98
98
  "aria-rowindex"?: number | undefined;
99
99
  "aria-rowindextext"?: string | undefined;
100
100
  "aria-rowspan"?: number | undefined;
101
- "aria-selected"?: (boolean | "true" | "false") | undefined;
101
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
102
102
  "aria-setsize"?: number | undefined;
103
103
  "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
104
104
  "aria-valuemax"?: number | undefined;