@primer/components 0.0.0-2021929153151 → 0.0.0-202192923313

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 (186) hide show
  1. package/CHANGELOG.md +1 -25
  2. package/dist/browser.esm.js +49 -53
  3. package/dist/browser.esm.js.map +1 -1
  4. package/dist/browser.umd.js +46 -50
  5. package/dist/browser.umd.js.map +1 -1
  6. package/lib/ActionList/Item.d.ts +0 -6
  7. package/lib/ActionList/Item.js +1 -5
  8. package/lib/AnchoredOverlay/AnchoredOverlay.d.ts +4 -2
  9. package/lib/Autocomplete/Autocomplete.d.ts +32 -30
  10. package/lib/Autocomplete/AutocompleteInput.d.ts +32 -30
  11. package/lib/Button/Button.d.ts +27 -27
  12. package/lib/Button/ButtonBase.d.ts +1 -1
  13. package/lib/Button/ButtonClose.d.ts +45 -45
  14. package/lib/Button/ButtonDanger.d.ts +27 -27
  15. package/lib/Button/ButtonInvisible.d.ts +27 -27
  16. package/lib/Button/ButtonOutline.d.ts +27 -27
  17. package/lib/Button/ButtonPrimary.d.ts +27 -27
  18. package/lib/CircleBadge.d.ts +2 -2
  19. package/lib/CircleOcticon.d.ts +43 -43
  20. package/lib/DatePicker/DatePicker.d.ts +48 -0
  21. package/lib/DatePicker/DatePicker.js +106 -0
  22. package/lib/DatePicker/DatePickerAnchor.d.ts +5 -0
  23. package/lib/DatePicker/DatePickerAnchor.js +223 -0
  24. package/lib/DatePicker/DatePickerOverlay.d.ts +3 -0
  25. package/lib/DatePicker/DatePickerOverlay.js +48 -0
  26. package/lib/DatePicker/DatePickerPanel.d.ts +2 -0
  27. package/lib/DatePicker/DatePickerPanel.js +126 -0
  28. package/lib/DatePicker/Day.d.ts +14 -0
  29. package/lib/DatePicker/Day.js +192 -0
  30. package/lib/DatePicker/Month.d.ts +9 -0
  31. package/lib/DatePicker/Month.js +122 -0
  32. package/lib/DatePicker/dateParser.d.ts +11 -0
  33. package/lib/DatePicker/dateParser.js +192 -0
  34. package/lib/DatePicker/index.d.ts +2 -0
  35. package/lib/DatePicker/index.js +13 -0
  36. package/lib/DatePicker/useDatePicker.d.ts +89 -0
  37. package/lib/DatePicker/useDatePicker.js +439 -0
  38. package/lib/Dialog.d.ts +46 -46
  39. package/lib/Dropdown.d.ts +178 -178
  40. package/lib/DropdownMenu/DropdownButton.d.ts +47 -47
  41. package/lib/FilterList.d.ts +42 -42
  42. package/lib/Flash.d.ts +1 -1
  43. package/lib/Label.d.ts +1 -1
  44. package/lib/Position.d.ts +4 -4
  45. package/lib/ProgressBar.d.ts +1 -1
  46. package/lib/SelectMenu/SelectMenu.d.ts +248 -246
  47. package/lib/SelectMenu/SelectMenuItem.d.ts +1 -1
  48. package/lib/SelectMenu/SelectMenuModal.d.ts +1 -1
  49. package/lib/TextInputWithTokens.d.ts +32 -34
  50. package/lib/TextInputWithTokens.js +29 -102
  51. package/lib/Timeline.d.ts +44 -44
  52. package/lib/Token/AvatarToken.d.ts +1 -1
  53. package/lib/Token/IssueLabelToken.d.ts +1 -1
  54. package/lib/Token/Token.d.ts +1 -1
  55. package/lib/Token/Token.js +2 -13
  56. package/lib/Token/TokenBase.js +4 -0
  57. package/lib/Token/_RemoveTokenButton.js +2 -15
  58. package/lib/_TextInputWrapper.d.ts +1 -1
  59. package/lib/_TextInputWrapper.js +1 -1
  60. package/lib/hooks/useDebounce.d.ts +2 -0
  61. package/lib/hooks/useDebounce.js +24 -0
  62. package/lib/sx.d.ts +2 -10
  63. package/lib/sx.js +0 -8
  64. package/lib/theme-preval.js +2 -2
  65. package/lib/theme.d.ts +0 -78
  66. package/lib/theme.js +1 -3
  67. package/lib/utils/testing.d.ts +1 -1
  68. package/lib-esm/ActionList/Item.d.ts +0 -6
  69. package/lib-esm/ActionList/Item.js +1 -5
  70. package/lib-esm/AnchoredOverlay/AnchoredOverlay.d.ts +4 -2
  71. package/lib-esm/Autocomplete/Autocomplete.d.ts +32 -30
  72. package/lib-esm/Autocomplete/AutocompleteInput.d.ts +32 -30
  73. package/lib-esm/Button/Button.d.ts +27 -27
  74. package/lib-esm/Button/ButtonBase.d.ts +1 -1
  75. package/lib-esm/Button/ButtonClose.d.ts +45 -45
  76. package/lib-esm/Button/ButtonDanger.d.ts +27 -27
  77. package/lib-esm/Button/ButtonInvisible.d.ts +27 -27
  78. package/lib-esm/Button/ButtonOutline.d.ts +27 -27
  79. package/lib-esm/Button/ButtonPrimary.d.ts +27 -27
  80. package/lib-esm/CircleBadge.d.ts +2 -2
  81. package/lib-esm/CircleOcticon.d.ts +43 -43
  82. package/lib-esm/DatePicker/DatePicker.d.ts +48 -0
  83. package/lib-esm/DatePicker/DatePicker.js +89 -0
  84. package/lib-esm/DatePicker/DatePickerAnchor.d.ts +5 -0
  85. package/lib-esm/DatePicker/DatePickerAnchor.js +196 -0
  86. package/lib-esm/DatePicker/DatePickerOverlay.d.ts +3 -0
  87. package/lib-esm/DatePicker/DatePickerOverlay.js +29 -0
  88. package/lib-esm/DatePicker/DatePickerPanel.d.ts +2 -0
  89. package/lib-esm/DatePicker/DatePickerPanel.js +100 -0
  90. package/lib-esm/DatePicker/Day.d.ts +14 -0
  91. package/lib-esm/DatePicker/Day.js +169 -0
  92. package/lib-esm/DatePicker/Month.d.ts +9 -0
  93. package/lib-esm/DatePicker/Month.js +98 -0
  94. package/lib-esm/DatePicker/dateParser.d.ts +11 -0
  95. package/lib-esm/DatePicker/dateParser.js +178 -0
  96. package/lib-esm/DatePicker/index.d.ts +2 -0
  97. package/lib-esm/DatePicker/index.js +1 -0
  98. package/lib-esm/DatePicker/useDatePicker.d.ts +89 -0
  99. package/lib-esm/DatePicker/useDatePicker.js +408 -0
  100. package/lib-esm/Dialog.d.ts +46 -46
  101. package/lib-esm/Dropdown.d.ts +178 -178
  102. package/lib-esm/DropdownMenu/DropdownButton.d.ts +47 -47
  103. package/lib-esm/FilterList.d.ts +42 -42
  104. package/lib-esm/Flash.d.ts +1 -1
  105. package/lib-esm/Label.d.ts +1 -1
  106. package/lib-esm/Position.d.ts +4 -4
  107. package/lib-esm/ProgressBar.d.ts +1 -1
  108. package/lib-esm/SelectMenu/SelectMenu.d.ts +248 -246
  109. package/lib-esm/SelectMenu/SelectMenuItem.d.ts +1 -1
  110. package/lib-esm/SelectMenu/SelectMenuModal.d.ts +1 -1
  111. package/lib-esm/TextInputWithTokens.d.ts +32 -34
  112. package/lib-esm/TextInputWithTokens.js +30 -101
  113. package/lib-esm/Timeline.d.ts +44 -44
  114. package/lib-esm/Token/AvatarToken.d.ts +1 -1
  115. package/lib-esm/Token/IssueLabelToken.d.ts +1 -1
  116. package/lib-esm/Token/Token.d.ts +1 -1
  117. package/lib-esm/Token/Token.js +2 -13
  118. package/lib-esm/Token/TokenBase.js +4 -0
  119. package/lib-esm/Token/_RemoveTokenButton.js +2 -11
  120. package/lib-esm/_TextInputWrapper.d.ts +1 -1
  121. package/lib-esm/_TextInputWrapper.js +1 -1
  122. package/lib-esm/hooks/useDebounce.d.ts +2 -0
  123. package/lib-esm/hooks/useDebounce.js +16 -0
  124. package/lib-esm/sx.d.ts +2 -10
  125. package/lib-esm/sx.js +1 -3
  126. package/lib-esm/theme-preval.js +2 -2
  127. package/lib-esm/theme.d.ts +0 -78
  128. package/lib-esm/theme.js +1 -2
  129. package/lib-esm/utils/testing.d.ts +1 -1
  130. package/package.json +14 -16
  131. package/lib/ActionList2/Description.d.ts +0 -6
  132. package/lib/ActionList2/Description.js +0 -53
  133. package/lib/ActionList2/Divider.d.ts +0 -5
  134. package/lib/ActionList2/Divider.js +0 -33
  135. package/lib/ActionList2/Group.d.ts +0 -11
  136. package/lib/ActionList2/Group.js +0 -55
  137. package/lib/ActionList2/Header.d.ts +0 -26
  138. package/lib/ActionList2/Header.js +0 -55
  139. package/lib/ActionList2/Item.d.ts +0 -48
  140. package/lib/ActionList2/Item.js +0 -204
  141. package/lib/ActionList2/List.d.ts +0 -26
  142. package/lib/ActionList2/List.js +0 -56
  143. package/lib/ActionList2/Selection.d.ts +0 -5
  144. package/lib/ActionList2/Selection.js +0 -73
  145. package/lib/ActionList2/Visuals.d.ts +0 -11
  146. package/lib/ActionList2/Visuals.js +0 -90
  147. package/lib/ActionList2/hacks.d.ts +0 -30
  148. package/lib/ActionList2/hacks.js +0 -38
  149. package/lib/ActionList2/index.d.ts +0 -28
  150. package/lib/ActionList2/index.js +0 -42
  151. package/lib/experiments.d.ts +0 -1
  152. package/lib/experiments.js +0 -18
  153. package/lib/utils/create-slots.d.ts +0 -17
  154. package/lib/utils/create-slots.js +0 -105
  155. package/lib/utils/types/KeyPaths.d.ts +0 -3
  156. package/lib/utils/types/KeyPaths.js +0 -1
  157. package/lib/utils/use-force-update.d.ts +0 -1
  158. package/lib/utils/use-force-update.js +0 -19
  159. package/lib-esm/ActionList2/Description.d.ts +0 -6
  160. package/lib-esm/ActionList2/Description.js +0 -37
  161. package/lib-esm/ActionList2/Divider.d.ts +0 -5
  162. package/lib-esm/ActionList2/Divider.js +0 -21
  163. package/lib-esm/ActionList2/Group.d.ts +0 -11
  164. package/lib-esm/ActionList2/Group.js +0 -38
  165. package/lib-esm/ActionList2/Header.d.ts +0 -26
  166. package/lib-esm/ActionList2/Header.js +0 -45
  167. package/lib-esm/ActionList2/Item.d.ts +0 -48
  168. package/lib-esm/ActionList2/Item.js +0 -176
  169. package/lib-esm/ActionList2/List.d.ts +0 -26
  170. package/lib-esm/ActionList2/List.js +0 -38
  171. package/lib-esm/ActionList2/Selection.d.ts +0 -5
  172. package/lib-esm/ActionList2/Selection.js +0 -55
  173. package/lib-esm/ActionList2/Visuals.d.ts +0 -11
  174. package/lib-esm/ActionList2/Visuals.js +0 -68
  175. package/lib-esm/ActionList2/hacks.d.ts +0 -30
  176. package/lib-esm/ActionList2/hacks.js +0 -30
  177. package/lib-esm/ActionList2/index.d.ts +0 -28
  178. package/lib-esm/ActionList2/index.js +0 -29
  179. package/lib-esm/experiments.d.ts +0 -1
  180. package/lib-esm/experiments.js +0 -2
  181. package/lib-esm/utils/create-slots.d.ts +0 -17
  182. package/lib-esm/utils/create-slots.js +0 -84
  183. package/lib-esm/utils/types/KeyPaths.d.ts +0 -3
  184. package/lib-esm/utils/types/KeyPaths.js +0 -1
  185. package/lib-esm/utils/use-force-update.d.ts +0 -1
  186. package/lib-esm/utils/use-force-update.js +0 -6
@@ -28,19 +28,13 @@ export interface ItemProps extends SxProp {
28
28
  */
29
29
  leadingVisual?: React.FunctionComponent<IconProps>;
30
30
  /**
31
- * @deprecated Use `trailingVisual` instead
32
31
  * Icon (or similar) positioned after `Item` text.
33
32
  */
34
33
  trailingIcon?: React.FunctionComponent<IconProps>;
35
34
  /**
36
- * @deprecated Use `trailingVisual` instead
37
35
  * Text positioned after `Item` text and optional trailing icon.
38
36
  */
39
37
  trailingText?: string;
40
- /**
41
- * Icon or text positioned after `Item` text.
42
- */
43
- trailingVisual?: React.ReactNode;
44
38
  /**
45
39
  * Style variations associated with various `Item` types.
46
40
  *
@@ -187,7 +187,6 @@ const Item = /*#__PURE__*/_react.default.forwardRef((itemProps, ref) => {
187
187
  selectionVariant,
188
188
  leadingVisual: LeadingVisual,
189
189
  trailingIcon: TrailingIcon,
190
- trailingVisual: TrailingVisual,
191
190
  trailingText,
192
191
  variant = 'default',
193
192
  showDivider,
@@ -279,10 +278,7 @@ const Item = /*#__PURE__*/_react.default.forwardRef((itemProps, ref) => {
279
278
  title: description,
280
279
  inline: true,
281
280
  maxWidth: "100%"
282
- }, description)) : null), TrailingVisual ? /*#__PURE__*/_react.default.createElement(TrailingContent, {
283
- variant: variant,
284
- disabled: disabled
285
- }, typeof TrailingVisual === 'function' ? /*#__PURE__*/_react.default.createElement(TrailingVisual, null) : TrailingVisual) : TrailingIcon || trailingText ? /*#__PURE__*/_react.default.createElement(TrailingContent, {
281
+ }, description)) : null), TrailingIcon || trailingText ? /*#__PURE__*/_react.default.createElement(TrailingContent, {
286
282
  variant: variant,
287
283
  disabled: disabled
288
284
  }, trailingText, TrailingIcon && /*#__PURE__*/_react.default.createElement(TrailingIcon, null)) : null));
@@ -26,6 +26,8 @@ interface AnchoredOverlayPropsWithoutAnchor {
26
26
  */
27
27
  anchorRef: React.RefObject<HTMLElement>;
28
28
  }
29
+ export declare type OverlayOpenGesture = 'anchor-click' | 'anchor-key-press';
30
+ export declare type OverlayCloseGesture = 'anchor-click' | 'click-outside' | 'escape';
29
31
  export declare type AnchoredOverlayWrapperAnchorProps = Partial<AnchoredOverlayPropsWithAnchor> | AnchoredOverlayPropsWithoutAnchor;
30
32
  interface AnchoredOverlayBaseProps extends Pick<OverlayProps, 'height' | 'width'> {
31
33
  /**
@@ -35,11 +37,11 @@ interface AnchoredOverlayBaseProps extends Pick<OverlayProps, 'height' | 'width'
35
37
  /**
36
38
  * A callback which is called whenever the overlay is currently closed and an "open gesture" is detected.
37
39
  */
38
- onOpen?: (gesture: 'anchor-click' | 'anchor-key-press') => unknown;
40
+ onOpen?: (gesture: OverlayOpenGesture) => unknown;
39
41
  /**
40
42
  * A callback which is called whenever the overlay is currently open and a "close gesture" is detected.
41
43
  */
42
- onClose?: (gesture: 'anchor-click' | 'click-outside' | 'escape') => unknown;
44
+ onClose?: (gesture: OverlayCloseGesture) => unknown;
43
45
  /**
44
46
  * Props to be spread on the internal `Overlay` component.
45
47
  */
@@ -12,15 +12,17 @@ export type { AutocompleteOverlayProps } from './AutocompleteOverlay';
12
12
  declare const _default: React.FC<{
13
13
  id?: string | undefined;
14
14
  }> & {
15
- Input: import("@radix-ui/react-polymorphic").ForwardRefComponent<React.ForwardRefExoticComponent<Pick<Omit<Pick<{
15
+ Input: import("@radix-ui/react-polymorphic").ForwardRefComponent<React.ForwardRefExoticComponent<Pick<Omit<Pick<({
16
16
  [x: string]: any;
17
17
  [x: number]: any;
18
18
  } & {
19
19
  theme?: any;
20
- } & {
20
+ } & ({} | {
21
+ children?: React.ReactNode;
22
+ })) & {
21
23
  as?: string | React.ComponentType<any> | undefined;
22
24
  forwardedAs?: string | React.ComponentType<any> | undefined;
23
- }, string | number | symbol>, "maxWidth" | "minWidth" | "width" | "theme" | "block" | "icon" | "className" | "sx" | "variant" | "disabled" | "contrast"> & {
25
+ }, string | number | symbol>, "maxWidth" | "minWidth" | "width" | "theme" | "className" | "block" | "icon" | "sx" | "disabled" | "variant" | "contrast"> & {
24
26
  className?: string | undefined;
25
27
  icon?: React.ComponentType<{
26
28
  className?: string | undefined;
@@ -37,7 +39,6 @@ declare const _default: React.FC<{
37
39
  slot?: string | undefined;
38
40
  style?: React.CSSProperties | undefined;
39
41
  title?: string | undefined;
40
- block?: boolean | undefined;
41
42
  key?: React.Key | null | undefined;
42
43
  defaultChecked?: boolean | undefined;
43
44
  defaultValue?: string | number | readonly string[] | undefined;
@@ -45,14 +46,14 @@ declare const _default: React.FC<{
45
46
  suppressHydrationWarning?: boolean | undefined;
46
47
  accessKey?: string | undefined;
47
48
  className?: string | undefined;
48
- contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
49
+ contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
49
50
  contextMenu?: string | undefined;
50
51
  dir?: string | undefined;
51
- draggable?: (boolean | "false" | "true") | undefined;
52
+ draggable?: (boolean | "true" | "false") | undefined;
52
53
  id?: string | undefined;
53
54
  lang?: string | undefined;
54
55
  placeholder?: string | undefined;
55
- spellCheck?: (boolean | "false" | "true") | undefined;
56
+ spellCheck?: (boolean | "true" | "false") | undefined;
56
57
  tabIndex?: number | undefined;
57
58
  radioGroup?: string | undefined;
58
59
  role?: React.AriaRole | undefined;
@@ -75,50 +76,50 @@ declare const _default: React.FC<{
75
76
  results?: number | undefined;
76
77
  security?: string | undefined;
77
78
  unselectable?: "on" | "off" | undefined;
78
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
79
+ inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
79
80
  is?: string | undefined;
80
81
  'aria-activedescendant'?: string | undefined;
81
- 'aria-atomic'?: boolean | "false" | "true" | undefined;
82
- 'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
83
- 'aria-busy'?: boolean | "false" | "true" | undefined;
84
- 'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
82
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
83
+ 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
84
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
85
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
85
86
  'aria-colcount'?: number | undefined;
86
87
  'aria-colindex'?: number | undefined;
87
88
  'aria-colspan'?: number | undefined;
88
89
  'aria-controls'?: string | undefined;
89
- 'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
90
+ 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
90
91
  'aria-describedby'?: string | undefined;
91
92
  'aria-details'?: string | undefined;
92
- 'aria-disabled'?: boolean | "false" | "true" | undefined;
93
- 'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
93
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
94
+ 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
94
95
  'aria-errormessage'?: string | undefined;
95
- 'aria-expanded'?: boolean | "false" | "true" | undefined;
96
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
96
97
  'aria-flowto'?: string | undefined;
97
- 'aria-grabbed'?: boolean | "false" | "true" | undefined;
98
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
99
- 'aria-hidden'?: boolean | "false" | "true" | undefined;
100
- 'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
98
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
99
+ 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "tree" | "true" | "false" | undefined;
100
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
101
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
101
102
  'aria-keyshortcuts'?: string | undefined;
102
103
  'aria-label'?: string | undefined;
103
104
  'aria-labelledby'?: string | undefined;
104
105
  'aria-level'?: number | undefined;
105
106
  'aria-live'?: "off" | "assertive" | "polite" | undefined;
106
- 'aria-modal'?: boolean | "false" | "true" | undefined;
107
- 'aria-multiline'?: boolean | "false" | "true" | undefined;
108
- 'aria-multiselectable'?: boolean | "false" | "true" | undefined;
107
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
108
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
109
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
109
110
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
110
111
  'aria-owns'?: string | undefined;
111
112
  'aria-placeholder'?: string | undefined;
112
113
  'aria-posinset'?: number | undefined;
113
- 'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
114
- 'aria-readonly'?: boolean | "false" | "true" | undefined;
114
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
115
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
115
116
  'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
116
- 'aria-required'?: boolean | "false" | "true" | undefined;
117
+ 'aria-required'?: boolean | "true" | "false" | undefined;
117
118
  'aria-roledescription'?: string | undefined;
118
119
  'aria-rowcount'?: number | undefined;
119
120
  'aria-rowindex'?: number | undefined;
120
121
  'aria-rowspan'?: number | undefined;
121
- 'aria-selected'?: boolean | "false" | "true" | undefined;
122
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
122
123
  'aria-setsize'?: number | undefined;
123
124
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
124
125
  'aria-valuemax'?: number | undefined;
@@ -288,14 +289,15 @@ declare const _default: React.FC<{
288
289
  onAnimationIterationCapture?: React.AnimationEventHandler<HTMLSpanElement> | undefined;
289
290
  onTransitionEnd?: React.TransitionEventHandler<HTMLSpanElement> | undefined;
290
291
  onTransitionEndCapture?: React.TransitionEventHandler<HTMLSpanElement> | undefined;
291
- sx?: import("../sx").BetterSystemStyleObject | undefined;
292
- variant?: "small" | "large" | undefined;
292
+ block?: boolean | undefined;
293
+ sx?: import("@styled-system/css").SystemStyleObject | undefined;
293
294
  disabled?: boolean | undefined;
295
+ variant?: "large" | "small" | undefined;
294
296
  hasIcon?: boolean | undefined;
295
297
  contrast?: boolean | undefined;
296
298
  } & {
297
299
  theme?: any;
298
- }, "maxWidth" | "minWidth" | "width" | "theme" | "block" | "sx" | "variant" | "disabled" | "contrast">, string | number | symbol> & React.RefAttributes<HTMLInputElement>>, {
300
+ }, "maxWidth" | "minWidth" | "width" | "theme" | "block" | "sx" | "disabled" | "variant" | "contrast">, string | number | symbol> & React.RefAttributes<HTMLInputElement>>, {
299
301
  as?: React.ComponentType<any> | undefined;
300
302
  }>;
301
303
  Menu: typeof AutocompleteMenu;
@@ -4,15 +4,17 @@ import { ComponentProps } from '../utils/types';
4
4
  declare type InternalAutocompleteInputProps = {
5
5
  as?: React.ComponentType<any>;
6
6
  };
7
- declare const AutocompleteInput: PolymorphicForwardRefComponent<React.ForwardRefExoticComponent<Pick<Omit<Pick<{
7
+ declare const AutocompleteInput: PolymorphicForwardRefComponent<React.ForwardRefExoticComponent<Pick<Omit<Pick<({
8
8
  [x: string]: any;
9
9
  [x: number]: any;
10
10
  } & {
11
11
  theme?: any;
12
- } & {
12
+ } & ({} | {
13
+ children?: React.ReactNode;
14
+ })) & {
13
15
  as?: string | React.ComponentType<any> | undefined;
14
16
  forwardedAs?: string | React.ComponentType<any> | undefined;
15
- }, string | number | symbol>, "maxWidth" | "minWidth" | "width" | "theme" | "block" | "icon" | "className" | "sx" | "variant" | "disabled" | "contrast"> & {
17
+ }, string | number | symbol>, "maxWidth" | "minWidth" | "width" | "theme" | "className" | "block" | "icon" | "sx" | "disabled" | "variant" | "contrast"> & {
16
18
  className?: string | undefined;
17
19
  icon?: React.ComponentType<{
18
20
  className?: string | undefined;
@@ -29,7 +31,6 @@ declare const AutocompleteInput: PolymorphicForwardRefComponent<React.ForwardRef
29
31
  slot?: string | undefined;
30
32
  style?: React.CSSProperties | undefined;
31
33
  title?: string | undefined;
32
- block?: boolean | undefined;
33
34
  key?: React.Key | null | undefined;
34
35
  defaultChecked?: boolean | undefined;
35
36
  defaultValue?: string | number | readonly string[] | undefined;
@@ -37,14 +38,14 @@ declare const AutocompleteInput: PolymorphicForwardRefComponent<React.ForwardRef
37
38
  suppressHydrationWarning?: boolean | undefined;
38
39
  accessKey?: string | undefined;
39
40
  className?: string | undefined;
40
- contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
41
+ contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
41
42
  contextMenu?: string | undefined;
42
43
  dir?: string | undefined;
43
- draggable?: (boolean | "false" | "true") | undefined;
44
+ draggable?: (boolean | "true" | "false") | undefined;
44
45
  id?: string | undefined;
45
46
  lang?: string | undefined;
46
47
  placeholder?: string | undefined;
47
- spellCheck?: (boolean | "false" | "true") | undefined;
48
+ spellCheck?: (boolean | "true" | "false") | undefined;
48
49
  tabIndex?: number | undefined;
49
50
  radioGroup?: string | undefined;
50
51
  role?: React.AriaRole | undefined;
@@ -67,50 +68,50 @@ declare const AutocompleteInput: PolymorphicForwardRefComponent<React.ForwardRef
67
68
  results?: number | undefined;
68
69
  security?: string | undefined;
69
70
  unselectable?: "on" | "off" | undefined;
70
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
71
+ inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
71
72
  is?: string | undefined;
72
73
  'aria-activedescendant'?: string | undefined;
73
- 'aria-atomic'?: boolean | "false" | "true" | undefined;
74
- 'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
75
- 'aria-busy'?: boolean | "false" | "true" | undefined;
76
- 'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
74
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
75
+ 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
76
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
77
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
77
78
  'aria-colcount'?: number | undefined;
78
79
  'aria-colindex'?: number | undefined;
79
80
  'aria-colspan'?: number | undefined;
80
81
  'aria-controls'?: string | undefined;
81
- 'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
82
+ 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
82
83
  'aria-describedby'?: string | undefined;
83
84
  'aria-details'?: string | undefined;
84
- 'aria-disabled'?: boolean | "false" | "true" | undefined;
85
- 'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
85
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
86
+ 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
86
87
  'aria-errormessage'?: string | undefined;
87
- 'aria-expanded'?: boolean | "false" | "true" | undefined;
88
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
88
89
  'aria-flowto'?: string | undefined;
89
- 'aria-grabbed'?: boolean | "false" | "true" | undefined;
90
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
91
- 'aria-hidden'?: boolean | "false" | "true" | undefined;
92
- 'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
90
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
91
+ 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "tree" | "true" | "false" | undefined;
92
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
93
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
93
94
  'aria-keyshortcuts'?: string | undefined;
94
95
  'aria-label'?: string | undefined;
95
96
  'aria-labelledby'?: string | undefined;
96
97
  'aria-level'?: number | undefined;
97
98
  'aria-live'?: "off" | "assertive" | "polite" | undefined;
98
- 'aria-modal'?: boolean | "false" | "true" | undefined;
99
- 'aria-multiline'?: boolean | "false" | "true" | undefined;
100
- 'aria-multiselectable'?: boolean | "false" | "true" | undefined;
99
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
100
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
101
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
101
102
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
102
103
  'aria-owns'?: string | undefined;
103
104
  'aria-placeholder'?: string | undefined;
104
105
  'aria-posinset'?: number | undefined;
105
- 'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
106
- 'aria-readonly'?: boolean | "false" | "true" | undefined;
106
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
107
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
107
108
  'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
108
- 'aria-required'?: boolean | "false" | "true" | undefined;
109
+ 'aria-required'?: boolean | "true" | "false" | undefined;
109
110
  'aria-roledescription'?: string | undefined;
110
111
  'aria-rowcount'?: number | undefined;
111
112
  'aria-rowindex'?: number | undefined;
112
113
  'aria-rowspan'?: number | undefined;
113
- 'aria-selected'?: boolean | "false" | "true" | undefined;
114
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
114
115
  'aria-setsize'?: number | undefined;
115
116
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
116
117
  'aria-valuemax'?: number | undefined;
@@ -280,13 +281,14 @@ declare const AutocompleteInput: PolymorphicForwardRefComponent<React.ForwardRef
280
281
  onAnimationIterationCapture?: React.AnimationEventHandler<HTMLSpanElement> | undefined;
281
282
  onTransitionEnd?: React.TransitionEventHandler<HTMLSpanElement> | undefined;
282
283
  onTransitionEndCapture?: React.TransitionEventHandler<HTMLSpanElement> | undefined;
283
- sx?: import("../sx").BetterSystemStyleObject | undefined;
284
- variant?: "small" | "large" | undefined;
284
+ block?: boolean | undefined;
285
+ sx?: import("@styled-system/css").SystemStyleObject | undefined;
285
286
  disabled?: boolean | undefined;
287
+ variant?: "large" | "small" | undefined;
286
288
  hasIcon?: boolean | undefined;
287
289
  contrast?: boolean | undefined;
288
290
  } & {
289
291
  theme?: any;
290
- }, "maxWidth" | "minWidth" | "width" | "theme" | "block" | "sx" | "variant" | "disabled" | "contrast">, string | number | symbol> & React.RefAttributes<HTMLInputElement>>, InternalAutocompleteInputProps>;
292
+ }, "maxWidth" | "minWidth" | "width" | "theme" | "block" | "sx" | "disabled" | "variant" | "contrast">, string | number | symbol> & React.RefAttributes<HTMLInputElement>>, InternalAutocompleteInputProps>;
291
293
  export declare type AutocompleteInputProps = ComponentProps<typeof AutocompleteInput>;
292
294
  export default AutocompleteInput;
@@ -3,7 +3,7 @@ import { SxProp } from '../sx';
3
3
  import { ComponentProps } from '../utils/types';
4
4
  declare const Button: import("styled-components").StyledComponent<"button", any, {
5
5
  as?: string | import("react").ComponentClass<any, any> | import("react").FunctionComponent<any> | undefined;
6
- variant?: "small" | "medium" | "large" | undefined;
6
+ variant?: "large" | "medium" | "small" | undefined;
7
7
  } & import("styled-system").FontSizeProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & {
8
8
  color?: string | undefined;
9
9
  fontSize?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
@@ -25,14 +25,14 @@ declare const Button: import("styled-components").StyledComponent<"button", any,
25
25
  suppressHydrationWarning?: boolean | undefined;
26
26
  accessKey?: string | undefined;
27
27
  className?: string | undefined;
28
- contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
28
+ contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
29
29
  contextMenu?: string | undefined;
30
30
  dir?: string | undefined;
31
- draggable?: (boolean | "false" | "true") | undefined;
31
+ draggable?: (boolean | "true" | "false") | undefined;
32
32
  id?: string | undefined;
33
33
  lang?: string | undefined;
34
34
  placeholder?: string | undefined;
35
- spellCheck?: (boolean | "false" | "true") | undefined;
35
+ spellCheck?: (boolean | "true" | "false") | undefined;
36
36
  tabIndex?: number | undefined;
37
37
  radioGroup?: string | undefined;
38
38
  role?: import("react").AriaRole | undefined;
@@ -55,50 +55,50 @@ declare const Button: import("styled-components").StyledComponent<"button", any,
55
55
  results?: number | undefined;
56
56
  security?: string | undefined;
57
57
  unselectable?: "on" | "off" | undefined;
58
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
58
+ inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
59
59
  is?: string | undefined;
60
60
  'aria-activedescendant'?: string | undefined;
61
- 'aria-atomic'?: boolean | "false" | "true" | undefined;
62
- 'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
63
- 'aria-busy'?: boolean | "false" | "true" | undefined;
64
- 'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
61
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
62
+ 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
63
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
64
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
65
65
  'aria-colcount'?: number | undefined;
66
66
  'aria-colindex'?: number | undefined;
67
67
  'aria-colspan'?: number | undefined;
68
68
  'aria-controls'?: string | undefined;
69
- 'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
69
+ 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
70
70
  'aria-describedby'?: string | undefined;
71
71
  'aria-details'?: string | undefined;
72
- 'aria-disabled'?: boolean | "false" | "true" | undefined;
73
- 'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
72
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
73
+ 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
74
74
  'aria-errormessage'?: string | undefined;
75
- 'aria-expanded'?: boolean | "false" | "true" | undefined;
75
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
76
76
  'aria-flowto'?: string | undefined;
77
- 'aria-grabbed'?: boolean | "false" | "true" | undefined;
78
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
79
- 'aria-hidden'?: boolean | "false" | "true" | undefined;
80
- 'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
77
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
78
+ 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "tree" | "true" | "false" | undefined;
79
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
80
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
81
81
  'aria-keyshortcuts'?: string | undefined;
82
82
  'aria-label'?: string | undefined;
83
83
  'aria-labelledby'?: string | undefined;
84
84
  'aria-level'?: number | undefined;
85
85
  'aria-live'?: "off" | "assertive" | "polite" | undefined;
86
- 'aria-modal'?: boolean | "false" | "true" | undefined;
87
- 'aria-multiline'?: boolean | "false" | "true" | undefined;
88
- 'aria-multiselectable'?: boolean | "false" | "true" | undefined;
86
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
87
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
88
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
89
89
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
90
90
  'aria-owns'?: string | undefined;
91
91
  'aria-placeholder'?: string | undefined;
92
92
  'aria-posinset'?: number | undefined;
93
- 'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
94
- 'aria-readonly'?: boolean | "false" | "true" | undefined;
93
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
94
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
95
95
  'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
96
- 'aria-required'?: boolean | "false" | "true" | undefined;
96
+ 'aria-required'?: boolean | "true" | "false" | undefined;
97
97
  'aria-roledescription'?: string | undefined;
98
98
  'aria-rowcount'?: number | undefined;
99
99
  'aria-rowindex'?: number | undefined;
100
100
  'aria-rowspan'?: number | undefined;
101
- 'aria-selected'?: boolean | "false" | "true" | undefined;
101
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
102
102
  'aria-setsize'?: number | undefined;
103
103
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
104
104
  'aria-valuemax'?: number | undefined;
@@ -268,15 +268,15 @@ declare const Button: import("styled-components").StyledComponent<"button", any,
268
268
  onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
269
269
  onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
270
270
  onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
271
- variant?: "small" | "medium" | "large" | undefined;
272
- as?: string | import("react").ComponentClass<any, any> | import("react").FunctionComponent<any> | undefined;
273
- disabled?: boolean | undefined;
274
271
  autoFocus?: boolean | undefined;
272
+ disabled?: boolean | undefined;
275
273
  formAction?: string | undefined;
276
274
  formEncType?: string | undefined;
277
275
  formMethod?: string | undefined;
278
276
  formNoValidate?: boolean | undefined;
279
277
  formTarget?: string | undefined;
278
+ as?: string | import("react").ComponentClass<any, any> | import("react").FunctionComponent<any> | undefined;
279
+ variant?: "large" | "medium" | "small" | undefined;
280
280
  } & {
281
281
  theme?: any;
282
282
  } & import("styled-system").FontSizeProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & import("../constants").SystemCommonProps & import("../constants").SystemLayoutProps & SxProp, never>;
@@ -6,7 +6,7 @@ export declare const buttonSystemProps: import("styled-system").styleFn;
6
6
  export declare type ButtonSystemProps = FontSizeProps & SystemCommonProps & SystemLayoutProps;
7
7
  declare const ButtonBase: import("styled-components").StyledComponent<"button", any, {
8
8
  as?: string | import("react").ComponentClass<any, any> | import("react").FunctionComponent<any> | undefined;
9
- variant?: "small" | "medium" | "large" | undefined;
9
+ variant?: "large" | "medium" | "small" | undefined;
10
10
  } & FontSizeProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol>, never>;
11
11
  export declare type ButtonBaseProps = ComponentProps<typeof ButtonBase>;
12
12
  export default ButtonBase;