draft-components 1.0.0-beta.1 → 1.0.0-beta.4

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 (648) hide show
  1. package/cjs/components/alert/alert.cjs +18 -0
  2. package/cjs/components/avatar/avatar.cjs +31 -0
  3. package/cjs/components/avatar-group/avatar-group.cjs +10 -0
  4. package/{dist/components/badge/badge.js → cjs/components/badge/badge.cjs} +7 -6
  5. package/cjs/components/breadcrumbs/breadcrumbs-context.cjs +19 -0
  6. package/cjs/components/breadcrumbs/breadcrumbs-item.cjs +21 -0
  7. package/cjs/components/breadcrumbs/breadcrumbs.cjs +12 -0
  8. package/cjs/components/button/button.cjs +39 -0
  9. package/cjs/components/button/icon-button.cjs +12 -0
  10. package/cjs/components/button-group/button-group.cjs +10 -0
  11. package/cjs/components/caption/caption.cjs +27 -0
  12. package/cjs/components/caption/icons.cjs +21 -0
  13. package/cjs/components/checkbox/checkbox.cjs +16 -0
  14. package/{dist/components/date-picker/calendar-day.js → cjs/components/date-picker/calendar-day.cjs} +8 -7
  15. package/cjs/components/date-picker/calendar-grid-head.cjs +16 -0
  16. package/cjs/components/date-picker/calendar-grid.cjs +106 -0
  17. package/cjs/components/date-picker/calendar-header.cjs +48 -0
  18. package/cjs/components/date-picker/calendar.cjs +24 -0
  19. package/{dist/components/date-picker/date-helpers.js → cjs/components/date-picker/date-helpers.cjs} +30 -26
  20. package/cjs/components/date-picker/date-picker.cjs +20 -0
  21. package/cjs/components/date-picker/date-range-picker.cjs +61 -0
  22. package/cjs/components/date-picker/date-range.cjs +28 -0
  23. package/cjs/components/date-picker/icons.cjs +13 -0
  24. package/{dist/components/date-picker/parse-min-max-props.js → cjs/components/date-picker/parse-min-max-props.cjs} +7 -6
  25. package/cjs/components/date-picker-popover/date-picker-popover.cjs +24 -0
  26. package/cjs/components/date-range-picker-popover/date-range-picker-popover-footer.cjs +11 -0
  27. package/cjs/components/date-range-picker-popover/date-range-picker-popover-presets.cjs +35 -0
  28. package/cjs/components/date-range-picker-popover/date-range-picker-popover.cjs +59 -0
  29. package/{dist/components/date-range-picker-popover/helpers.js → cjs/components/date-range-picker-popover/helpers.cjs} +3 -3
  30. package/{dist/components/date-range-picker-popover/use-is-compact-view.js → cjs/components/date-range-picker-popover/use-is-compact-view.cjs} +8 -7
  31. package/{dist/components/dialog/dialog-body.js → cjs/components/dialog/dialog-body.cjs} +17 -16
  32. package/{dist/components/dialog/dialog-context.js → cjs/components/dialog/dialog-context.cjs} +10 -9
  33. package/cjs/components/dialog/dialog-footer.cjs +10 -0
  34. package/cjs/components/dialog/dialog-header.cjs +18 -0
  35. package/cjs/components/dialog/dialog.cjs +50 -0
  36. package/cjs/components/dialog/x-mark-icon.cjs +9 -0
  37. package/cjs/components/empty-state/empty-state.cjs +10 -0
  38. package/cjs/components/file-picker/file-picker.cjs +47 -0
  39. package/cjs/components/filter-buttons/filter-button.cjs +11 -0
  40. package/cjs/components/filter-buttons/filter-buttons.cjs +27 -0
  41. package/cjs/components/form-field/form-field.cjs +26 -0
  42. package/cjs/components/index.cjs +123 -0
  43. package/cjs/components/label/label.cjs +13 -0
  44. package/cjs/components/menu/menu-item.cjs +14 -0
  45. package/cjs/components/menu/menu-separator.cjs +10 -0
  46. package/{dist/components/menu/menu.js → cjs/components/menu/menu.cjs} +50 -52
  47. package/cjs/components/nav-list/nav-list-item.cjs +20 -0
  48. package/cjs/components/nav-list/nav-list-title.cjs +10 -0
  49. package/cjs/components/nav-list/nav-list.cjs +10 -0
  50. package/cjs/components/password-input/icons.cjs +13 -0
  51. package/cjs/components/password-input/password-input.cjs +30 -0
  52. package/cjs/components/popover/popover.cjs +97 -0
  53. package/{dist/components/popover/use-page-click.js → cjs/components/popover/use-page-click.cjs} +8 -7
  54. package/cjs/components/portal/portal-context.cjs +22 -0
  55. package/cjs/components/portal/portal.cjs +11 -0
  56. package/{dist/components/positioner/calc-position.js → cjs/components/positioner/calc-position.cjs} +4 -4
  57. package/{dist/components/positioner/positioner.js → cjs/components/positioner/positioner.cjs} +14 -13
  58. package/cjs/components/radio/radio.cjs +24 -0
  59. package/cjs/components/segmented-control/segmented-control-button.cjs +15 -0
  60. package/cjs/components/segmented-control/segmented-control.cjs +48 -0
  61. package/cjs/components/select/select.cjs +27 -0
  62. package/cjs/components/selection-control/selection-control.cjs +18 -0
  63. package/cjs/components/slider/slider-tick-marks.cjs +17 -0
  64. package/{dist/components/slider/slider.js → cjs/components/slider/slider.cjs} +16 -14
  65. package/cjs/components/spinner/spinner.cjs +11 -0
  66. package/cjs/components/switch/switch.cjs +15 -0
  67. package/cjs/components/table/icons.cjs +17 -0
  68. package/cjs/components/table/table-body.cjs +11 -0
  69. package/cjs/components/table/table-cell.cjs +11 -0
  70. package/cjs/components/table/table-container.cjs +23 -0
  71. package/cjs/components/table/table-head-cell.cjs +30 -0
  72. package/cjs/components/table/table-head.cjs +14 -0
  73. package/cjs/components/table/table-row.cjs +14 -0
  74. package/cjs/components/table/table.cjs +16 -0
  75. package/cjs/components/tabs/tab-list.cjs +67 -0
  76. package/cjs/components/tabs/tab-panel.cjs +16 -0
  77. package/cjs/components/tabs/tab.cjs +19 -0
  78. package/{dist/components/tabs/tabs-context.js → cjs/components/tabs/tabs-context.cjs} +13 -12
  79. package/cjs/components/tabs/tabs.cjs +11 -0
  80. package/cjs/components/tag/tag.cjs +15 -0
  81. package/cjs/components/text-input/text-input.cjs +26 -0
  82. package/cjs/components/textarea/textarea.cjs +40 -0
  83. package/cjs/components/toast/toast-button.cjs +11 -0
  84. package/cjs/components/toast/toast.cjs +11 -0
  85. package/cjs/components/toast/x-mark-icon.cjs +9 -0
  86. package/cjs/components/toaster/toaster.cjs +115 -0
  87. package/cjs/components/tooltip/tooltip.cjs +75 -0
  88. package/cjs/hooks/index.cjs +13 -0
  89. package/{dist/hooks/use-disable-body-scroll.js → cjs/hooks/use-disable-body-scroll.cjs} +9 -8
  90. package/{dist/hooks/use-esc-key-down.js → cjs/hooks/use-esc-key-down.cjs} +10 -9
  91. package/{dist/hooks/use-focus-trap.js → cjs/hooks/use-focus-trap.cjs} +12 -11
  92. package/{dist/hooks/use-mount-transition.js → cjs/hooks/use-mount-transition.cjs} +13 -12
  93. package/cjs/index.cjs +141 -0
  94. package/{dist/shared/util.js → cjs/lib/helpers.cjs} +4 -4
  95. package/cjs/lib/index.cjs +15 -0
  96. package/{dist/shared/keyboard-keys.js → cjs/lib/keyboard-keys.cjs} +5 -4
  97. package/{dist/shared/react-helpers.js → cjs/lib/react-helpers.cjs} +9 -8
  98. package/css/draft-components-utilities.css +4 -0
  99. package/css/draft-components.css +15 -1
  100. package/esm/components/alert/alert.js +9 -5
  101. package/esm/components/avatar/avatar.js +17 -14
  102. package/esm/components/avatar-group/avatar-group.js +7 -4
  103. package/esm/components/badge/badge.js +7 -4
  104. package/esm/components/breadcrumbs/breadcrumbs-context.js +7 -4
  105. package/esm/components/breadcrumbs/breadcrumbs-item.js +10 -7
  106. package/esm/components/breadcrumbs/breadcrumbs.js +9 -6
  107. package/esm/components/button/button.js +11 -8
  108. package/esm/components/button/icon-button.js +8 -5
  109. package/esm/components/button-group/button-group.js +7 -4
  110. package/esm/components/caption/caption.js +10 -7
  111. package/esm/components/caption/icons.js +12 -9
  112. package/esm/components/checkbox/checkbox.js +12 -9
  113. package/esm/components/date-picker/calendar-day.js +8 -5
  114. package/esm/components/date-picker/calendar-grid-head.js +8 -5
  115. package/esm/components/date-picker/calendar-grid.js +15 -12
  116. package/esm/components/date-picker/calendar-header.js +20 -16
  117. package/esm/components/date-picker/calendar.js +11 -8
  118. package/esm/components/date-picker/date-helpers.js +22 -20
  119. package/esm/components/date-picker/date-picker.js +10 -7
  120. package/esm/components/date-picker/date-range-picker.js +15 -12
  121. package/esm/components/date-picker/date-range.js +5 -2
  122. package/esm/components/date-picker/icons.js +8 -5
  123. package/esm/components/date-picker/parse-min-max-props.js +5 -2
  124. package/esm/components/date-picker-popover/date-picker-popover.js +14 -8
  125. package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.js +8 -4
  126. package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.js +12 -9
  127. package/esm/components/date-range-picker-popover/date-range-picker-popover.js +20 -13
  128. package/esm/components/date-range-picker-popover/helpers.js +3 -1
  129. package/esm/components/date-range-picker-popover/use-is-compact-view.js +6 -3
  130. package/esm/components/dialog/dialog-body.js +14 -11
  131. package/esm/components/dialog/dialog-context.js +7 -4
  132. package/esm/components/dialog/dialog-footer.js +7 -4
  133. package/esm/components/dialog/dialog-header.js +11 -7
  134. package/esm/components/dialog/dialog.js +18 -12
  135. package/esm/components/dialog/x-mark-icon.js +6 -3
  136. package/esm/components/empty-state/empty-state.js +7 -4
  137. package/esm/components/file-picker/file-picker.js +13 -9
  138. package/esm/components/filter-buttons/filter-button.js +7 -4
  139. package/esm/components/filter-buttons/filter-buttons.js +9 -6
  140. package/esm/components/form-field/form-field.js +11 -8
  141. package/esm/components/index.js +59 -0
  142. package/esm/components/label/label.js +7 -4
  143. package/esm/components/menu/menu-item.js +9 -6
  144. package/esm/components/menu/menu-separator.js +7 -4
  145. package/esm/components/menu/menu.js +24 -24
  146. package/esm/components/nav-list/nav-list-item.js +10 -7
  147. package/esm/components/nav-list/nav-list-title.js +7 -4
  148. package/esm/components/nav-list/nav-list.js +7 -4
  149. package/esm/components/password-input/icons.js +8 -5
  150. package/esm/components/password-input/password-input.js +12 -9
  151. package/esm/components/popover/popover.js +22 -21
  152. package/esm/components/popover/use-page-click.js +5 -2
  153. package/esm/components/portal/portal-context.js +5 -6
  154. package/esm/components/portal/portal.js +5 -2
  155. package/esm/components/positioner/calc-position.js +4 -2
  156. package/esm/components/positioner/positioner.js +9 -6
  157. package/esm/components/radio/radio.js +12 -9
  158. package/esm/components/segmented-control/segmented-control-button.js +7 -4
  159. package/esm/components/segmented-control/segmented-control.js +12 -9
  160. package/esm/components/select/select.js +13 -10
  161. package/esm/components/selection-control/selection-control.js +10 -7
  162. package/esm/components/slider/slider-tick-marks.js +8 -5
  163. package/esm/components/slider/slider.js +13 -10
  164. package/esm/components/spinner/spinner.js +7 -4
  165. package/esm/components/switch/switch.js +11 -8
  166. package/esm/components/table/icons.js +10 -7
  167. package/esm/components/table/table-body.js +7 -4
  168. package/esm/components/table/table-cell.js +7 -4
  169. package/esm/components/table/table-container.js +7 -4
  170. package/esm/components/table/table-head-cell.js +18 -15
  171. package/esm/components/table/table-head.js +7 -4
  172. package/esm/components/table/table-row.js +7 -4
  173. package/esm/components/table/table.js +7 -4
  174. package/esm/components/tabs/tab-list.js +14 -11
  175. package/esm/components/tabs/tab-panel.js +8 -5
  176. package/esm/components/tabs/tab.js +10 -7
  177. package/esm/components/tabs/tabs-context.js +8 -5
  178. package/esm/components/tabs/tabs.js +8 -5
  179. package/esm/components/tag/tag.js +7 -4
  180. package/esm/components/text-input/text-input.js +11 -8
  181. package/esm/components/textarea/textarea.js +20 -17
  182. package/esm/components/toast/toast-button.js +7 -4
  183. package/esm/components/toast/toast.js +8 -5
  184. package/esm/components/toast/x-mark-icon.js +6 -3
  185. package/esm/components/toaster/toaster.js +29 -46
  186. package/esm/components/tooltip/tooltip.js +22 -24
  187. package/esm/hooks/index.js +4 -4
  188. package/esm/hooks/use-disable-body-scroll.js +5 -2
  189. package/esm/hooks/use-esc-key-down.js +6 -3
  190. package/esm/hooks/use-focus-trap.js +6 -3
  191. package/esm/hooks/use-mount-transition.js +6 -3
  192. package/esm/index.js +66 -37
  193. package/esm/{shared/util.js → lib/helpers.js} +4 -2
  194. package/esm/lib/index.js +3 -0
  195. package/esm/{shared → lib}/keyboard-keys.js +3 -1
  196. package/esm/{shared → lib}/react-helpers.js +8 -5
  197. package/package.json +30 -26
  198. package/{dist → types}/components/alert/alert.d.ts +0 -0
  199. package/{dist → types}/components/alert/index.d.ts +0 -0
  200. package/{dist → types}/components/avatar/avatar.d.ts +0 -0
  201. package/{dist → types}/components/avatar/index.d.ts +0 -0
  202. package/{dist → types}/components/avatar-group/avatar-group.d.ts +0 -0
  203. package/{dist → types}/components/avatar-group/index.d.ts +0 -0
  204. package/{dist → types}/components/badge/badge.d.ts +0 -0
  205. package/{dist → types}/components/badge/index.d.ts +0 -0
  206. package/{dist → types}/components/breadcrumbs/breadcrumbs-context.d.ts +0 -0
  207. package/{dist → types}/components/breadcrumbs/breadcrumbs-item.d.ts +0 -0
  208. package/{dist → types}/components/breadcrumbs/breadcrumbs.d.ts +0 -0
  209. package/{dist → types}/components/breadcrumbs/index.d.ts +0 -0
  210. package/{dist → types}/components/button/button.d.ts +0 -0
  211. package/{dist → types}/components/button/icon-button.d.ts +1 -1
  212. package/{dist → types}/components/button/index.d.ts +0 -0
  213. package/{dist → types}/components/button-group/button-group.d.ts +0 -0
  214. package/{dist → types}/components/button-group/index.d.ts +0 -0
  215. package/{dist → types}/components/caption/caption.d.ts +0 -0
  216. package/{dist → types}/components/caption/icons.d.ts +0 -0
  217. package/{dist → types}/components/caption/index.d.ts +0 -0
  218. package/{dist → types}/components/checkbox/checkbox.d.ts +1 -1
  219. package/{dist → types}/components/checkbox/index.d.ts +0 -0
  220. package/{dist → types}/components/color-picker/color-picker-button.d.ts +0 -0
  221. package/{dist → types}/components/color-picker/color-picker.d.ts +0 -0
  222. package/{dist → types}/components/color-picker/index.d.ts +0 -0
  223. package/{dist → types}/components/date-picker/calendar-day.d.ts +0 -0
  224. package/{dist → types}/components/date-picker/calendar-grid-head.d.ts +0 -0
  225. package/{dist → types}/components/date-picker/calendar-grid.d.ts +0 -0
  226. package/{dist → types}/components/date-picker/calendar-header.d.ts +0 -0
  227. package/{dist → types}/components/date-picker/calendar.d.ts +0 -0
  228. package/{dist → types}/components/date-picker/date-helpers.d.ts +0 -0
  229. package/{dist → types}/components/date-picker/date-picker.d.ts +0 -0
  230. package/{dist → types}/components/date-picker/date-range-picker.d.ts +0 -0
  231. package/{dist → types}/components/date-picker/date-range.d.ts +0 -0
  232. package/{dist → types}/components/date-picker/icons.d.ts +0 -0
  233. package/{dist → types}/components/date-picker/index.d.ts +0 -0
  234. package/{dist → types}/components/date-picker/parse-min-max-props.d.ts +0 -0
  235. package/{dist → types}/components/date-picker-popover/date-picker-popover.d.ts +0 -0
  236. package/{dist → types}/components/date-picker-popover/index.d.ts +0 -0
  237. package/{dist → types}/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +0 -0
  238. package/{dist → types}/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +0 -0
  239. package/{dist → types}/components/date-range-picker-popover/date-range-picker-popover.d.ts +0 -0
  240. package/{dist → types}/components/date-range-picker-popover/helpers.d.ts +0 -0
  241. package/{dist → types}/components/date-range-picker-popover/index.d.ts +0 -0
  242. package/{dist → types}/components/date-range-picker-popover/types.d.ts +0 -0
  243. package/{dist → types}/components/date-range-picker-popover/use-is-compact-view.d.ts +0 -0
  244. package/{dist → types}/components/dialog/dialog-body.d.ts +0 -0
  245. package/{dist → types}/components/dialog/dialog-context.d.ts +0 -0
  246. package/{dist → types}/components/dialog/dialog-footer.d.ts +0 -0
  247. package/{dist → types}/components/dialog/dialog-header.d.ts +0 -0
  248. package/{dist → types}/components/dialog/dialog.d.ts +0 -0
  249. package/{dist → types}/components/dialog/index.d.ts +0 -0
  250. package/{dist → types}/components/dialog/x-mark-icon.d.ts +0 -0
  251. package/{dist → types}/components/empty-state/empty-state.d.ts +0 -0
  252. package/{dist → types}/components/empty-state/index.d.ts +0 -0
  253. package/{esm → types}/components/file-picker/file-picker.d.ts +1 -1
  254. package/{dist → types}/components/file-picker/index.d.ts +0 -0
  255. package/{dist → types}/components/filter-buttons/filter-button.d.ts +0 -0
  256. package/{dist → types}/components/filter-buttons/filter-buttons.d.ts +0 -0
  257. package/{dist → types}/components/filter-buttons/index.d.ts +0 -0
  258. package/{dist → types}/components/form-field/form-field.d.ts +0 -0
  259. package/{dist → types}/components/form-field/index.d.ts +0 -0
  260. package/types/components/index.d.ts +37 -0
  261. package/{dist → types}/components/label/index.d.ts +0 -0
  262. package/{dist → types}/components/label/label.d.ts +0 -0
  263. package/{dist → types}/components/menu/index.d.ts +0 -0
  264. package/{esm → types}/components/menu/menu-item.d.ts +1 -1
  265. package/{dist → types}/components/menu/menu-separator.d.ts +1 -1
  266. package/{dist → types}/components/menu/menu.d.ts +0 -0
  267. package/{dist → types}/components/nav-list/index.d.ts +0 -0
  268. package/{dist → types}/components/nav-list/nav-list-item.d.ts +0 -0
  269. package/{dist → types}/components/nav-list/nav-list-title.d.ts +0 -0
  270. package/{dist → types}/components/nav-list/nav-list.d.ts +0 -0
  271. package/{dist → types}/components/password-input/icons.d.ts +0 -0
  272. package/{dist → types}/components/password-input/index.d.ts +0 -0
  273. package/{esm → types}/components/password-input/password-input.d.ts +1 -1
  274. package/{dist → types}/components/popover/index.d.ts +0 -0
  275. package/{dist → types}/components/popover/popover.d.ts +0 -0
  276. package/{dist → types}/components/popover/use-page-click.d.ts +0 -0
  277. package/{dist → types}/components/portal/index.d.ts +0 -0
  278. package/{dist → types}/components/portal/portal-context.d.ts +0 -0
  279. package/{dist → types}/components/portal/portal.d.ts +0 -0
  280. package/{dist → types}/components/positioner/calc-position.d.ts +0 -0
  281. package/{dist → types}/components/positioner/index.d.ts +0 -0
  282. package/{dist → types}/components/positioner/positioner.d.ts +0 -0
  283. package/{dist → types}/components/positioner/types.d.ts +0 -0
  284. package/{dist → types}/components/radio/index.d.ts +0 -0
  285. package/{dist → types}/components/radio/radio.d.ts +1 -1
  286. package/{dist → types}/components/segmented-control/index.d.ts +0 -0
  287. package/{dist → types}/components/segmented-control/segmented-control-button.d.ts +0 -0
  288. package/{dist → types}/components/segmented-control/segmented-control.d.ts +0 -0
  289. package/{dist → types}/components/select/index.d.ts +0 -0
  290. package/{dist → types}/components/select/select.d.ts +3 -3
  291. package/{dist → types}/components/selection-control/index.d.ts +0 -0
  292. package/{dist → types}/components/selection-control/selection-control.d.ts +0 -0
  293. package/{dist → types}/components/slider/index.d.ts +0 -0
  294. package/{dist → types}/components/slider/slider-tick-marks.d.ts +0 -0
  295. package/{esm → types}/components/slider/slider.d.ts +1 -1
  296. package/{dist → types}/components/spinner/index.d.ts +0 -0
  297. package/{dist → types}/components/spinner/spinner.d.ts +0 -0
  298. package/{dist → types}/components/switch/index.d.ts +0 -0
  299. package/{esm → types}/components/switch/switch.d.ts +1 -1
  300. package/{dist → types}/components/table/icons.d.ts +0 -0
  301. package/{dist → types}/components/table/index.d.ts +0 -0
  302. package/{dist → types}/components/table/table-body.d.ts +0 -0
  303. package/{dist → types}/components/table/table-cell.d.ts +0 -0
  304. package/{dist → types}/components/table/table-container.d.ts +0 -0
  305. package/{dist → types}/components/table/table-head-cell.d.ts +0 -0
  306. package/{dist → types}/components/table/table-head.d.ts +0 -0
  307. package/{dist → types}/components/table/table-row.d.ts +0 -0
  308. package/{dist → types}/components/table/table.d.ts +0 -0
  309. package/{dist → types}/components/tabs/index.d.ts +0 -0
  310. package/{dist → types}/components/tabs/tab-list.d.ts +0 -0
  311. package/{dist → types}/components/tabs/tab-panel.d.ts +0 -0
  312. package/{dist → types}/components/tabs/tab.d.ts +0 -0
  313. package/{dist → types}/components/tabs/tabs-context.d.ts +0 -0
  314. package/{dist → types}/components/tabs/tabs.d.ts +0 -0
  315. package/{dist → types}/components/tabs/types.d.ts +0 -0
  316. package/{dist → types}/components/tag/index.d.ts +0 -0
  317. package/{dist → types}/components/tag/tag.d.ts +0 -0
  318. package/{dist → types}/components/text-input/index.d.ts +0 -0
  319. package/{dist → types}/components/text-input/text-input.d.ts +1 -1
  320. package/{dist → types}/components/textarea/index.d.ts +0 -0
  321. package/{dist → types}/components/textarea/textarea.d.ts +0 -0
  322. package/{dist → types}/components/toast/index.d.ts +0 -0
  323. package/{dist → types}/components/toast/toast-button.d.ts +0 -0
  324. package/{dist → types}/components/toast/toast.d.ts +0 -0
  325. package/{dist → types}/components/toast/x-mark-icon.d.ts +0 -0
  326. package/{dist → types}/components/toaster/index.d.ts +0 -0
  327. package/{esm → types}/components/toaster/toaster.d.ts +5 -1
  328. package/{dist → types}/components/tooltip/index.d.ts +0 -0
  329. package/{dist → types}/components/tooltip/tooltip.d.ts +0 -0
  330. package/{dist → types}/hooks/index.d.ts +0 -0
  331. package/{dist → types}/hooks/use-disable-body-scroll.d.ts +0 -0
  332. package/{dist → types}/hooks/use-esc-key-down.d.ts +0 -0
  333. package/{dist → types}/hooks/use-focus-trap.d.ts +0 -0
  334. package/{dist → types}/hooks/use-mount-transition.d.ts +0 -0
  335. package/types/index.d.ts +3 -0
  336. package/types/lib/helpers.d.ts +4 -0
  337. package/types/lib/index.d.ts +3 -0
  338. package/{dist/shared → types/lib}/keyboard-keys.d.ts +0 -0
  339. package/{dist/shared → types/lib}/react-helpers.d.ts +0 -0
  340. package/css/draft-components-utilities.min.css +0 -1
  341. package/css/draft-components.dark.min.css +0 -1
  342. package/css/draft-components.min.css +0 -1
  343. package/dist/components/alert/alert.js +0 -16
  344. package/dist/components/alert/index.js +0 -17
  345. package/dist/components/avatar/avatar.js +0 -29
  346. package/dist/components/avatar/index.js +0 -17
  347. package/dist/components/avatar-group/avatar-group.js +0 -9
  348. package/dist/components/avatar-group/index.js +0 -17
  349. package/dist/components/badge/index.js +0 -17
  350. package/dist/components/breadcrumbs/breadcrumbs-context.js +0 -18
  351. package/dist/components/breadcrumbs/breadcrumbs-item.js +0 -20
  352. package/dist/components/breadcrumbs/breadcrumbs.js +0 -11
  353. package/dist/components/breadcrumbs/index.js +0 -18
  354. package/dist/components/button/button.js +0 -37
  355. package/dist/components/button/icon-button.js +0 -10
  356. package/dist/components/button/index.js +0 -18
  357. package/dist/components/button-group/button-group.js +0 -9
  358. package/dist/components/button-group/index.js +0 -17
  359. package/dist/components/caption/caption.js +0 -25
  360. package/dist/components/caption/icons.js +0 -20
  361. package/dist/components/caption/index.js +0 -17
  362. package/dist/components/checkbox/checkbox.js +0 -14
  363. package/dist/components/checkbox/index.js +0 -17
  364. package/dist/components/color-picker/color-picker-button.js +0 -15
  365. package/dist/components/color-picker/color-picker.js +0 -13
  366. package/dist/components/color-picker/index.js +0 -17
  367. package/dist/components/date-picker/calendar-grid-head.js +0 -15
  368. package/dist/components/date-picker/calendar-grid.js +0 -105
  369. package/dist/components/date-picker/calendar-header.js +0 -46
  370. package/dist/components/date-picker/calendar.js +0 -23
  371. package/dist/components/date-picker/date-picker.js +0 -19
  372. package/dist/components/date-picker/date-range-picker.js +0 -60
  373. package/dist/components/date-picker/date-range.js +0 -27
  374. package/dist/components/date-picker/icons.js +0 -12
  375. package/dist/components/date-picker/index.js +0 -18
  376. package/dist/components/date-picker-popover/date-picker-popover.js +0 -20
  377. package/dist/components/date-picker-popover/index.js +0 -17
  378. package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.js +0 -9
  379. package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.js +0 -34
  380. package/dist/components/date-range-picker-popover/date-range-picker-popover.js +0 -54
  381. package/dist/components/date-range-picker-popover/index.js +0 -18
  382. package/dist/components/date-range-picker-popover/types.js +0 -2
  383. package/dist/components/dialog/dialog-footer.js +0 -9
  384. package/dist/components/dialog/dialog-header.js +0 -16
  385. package/dist/components/dialog/dialog.js +0 -46
  386. package/dist/components/dialog/index.js +0 -20
  387. package/dist/components/dialog/x-mark-icon.js +0 -8
  388. package/dist/components/empty-state/empty-state.js +0 -9
  389. package/dist/components/empty-state/index.js +0 -17
  390. package/dist/components/file-picker/file-picker.d.ts +0 -13
  391. package/dist/components/file-picker/file-picker.js +0 -44
  392. package/dist/components/file-picker/index.js +0 -17
  393. package/dist/components/filter-buttons/filter-button.js +0 -9
  394. package/dist/components/filter-buttons/filter-buttons.js +0 -26
  395. package/dist/components/filter-buttons/index.js +0 -18
  396. package/dist/components/form-field/form-field.js +0 -25
  397. package/dist/components/form-field/index.js +0 -17
  398. package/dist/components/label/index.js +0 -17
  399. package/dist/components/label/label.js +0 -11
  400. package/dist/components/menu/index.js +0 -19
  401. package/dist/components/menu/menu-item.d.ts +0 -11
  402. package/dist/components/menu/menu-item.js +0 -12
  403. package/dist/components/menu/menu-separator.js +0 -9
  404. package/dist/components/nav-list/index.js +0 -19
  405. package/dist/components/nav-list/nav-list-item.js +0 -19
  406. package/dist/components/nav-list/nav-list-title.js +0 -9
  407. package/dist/components/nav-list/nav-list.js +0 -9
  408. package/dist/components/password-input/icons.js +0 -12
  409. package/dist/components/password-input/index.js +0 -17
  410. package/dist/components/password-input/password-input.d.ts +0 -10
  411. package/dist/components/password-input/password-input.js +0 -28
  412. package/dist/components/popover/index.js +0 -17
  413. package/dist/components/popover/popover.js +0 -97
  414. package/dist/components/portal/index.js +0 -17
  415. package/dist/components/portal/portal-context.js +0 -26
  416. package/dist/components/portal/portal.js +0 -10
  417. package/dist/components/positioner/index.js +0 -17
  418. package/dist/components/positioner/types.js +0 -2
  419. package/dist/components/radio/index.js +0 -17
  420. package/dist/components/radio/radio.js +0 -22
  421. package/dist/components/segmented-control/index.js +0 -17
  422. package/dist/components/segmented-control/segmented-control-button.js +0 -14
  423. package/dist/components/segmented-control/segmented-control.js +0 -47
  424. package/dist/components/select/index.js +0 -17
  425. package/dist/components/select/select.js +0 -25
  426. package/dist/components/selection-control/index.js +0 -17
  427. package/dist/components/selection-control/selection-control.js +0 -17
  428. package/dist/components/slider/index.js +0 -20
  429. package/dist/components/slider/slider-tick-marks.js +0 -16
  430. package/dist/components/slider/slider.d.ts +0 -17
  431. package/dist/components/spinner/index.js +0 -17
  432. package/dist/components/spinner/spinner.js +0 -9
  433. package/dist/components/switch/index.js +0 -17
  434. package/dist/components/switch/switch.d.ts +0 -10
  435. package/dist/components/switch/switch.js +0 -13
  436. package/dist/components/table/icons.js +0 -16
  437. package/dist/components/table/index.js +0 -23
  438. package/dist/components/table/table-body.js +0 -9
  439. package/dist/components/table/table-cell.js +0 -9
  440. package/dist/components/table/table-container.js +0 -21
  441. package/dist/components/table/table-head-cell.js +0 -28
  442. package/dist/components/table/table-head.js +0 -12
  443. package/dist/components/table/table-row.js +0 -12
  444. package/dist/components/table/table.js +0 -14
  445. package/dist/components/tabs/index.js +0 -20
  446. package/dist/components/tabs/tab-list.js +0 -66
  447. package/dist/components/tabs/tab-panel.js +0 -15
  448. package/dist/components/tabs/tab.js +0 -18
  449. package/dist/components/tabs/tabs.js +0 -10
  450. package/dist/components/tabs/types.js +0 -2
  451. package/dist/components/tag/index.js +0 -17
  452. package/dist/components/tag/tag.js +0 -14
  453. package/dist/components/text-input/index.js +0 -17
  454. package/dist/components/text-input/text-input.js +0 -24
  455. package/dist/components/textarea/index.js +0 -17
  456. package/dist/components/textarea/textarea.js +0 -38
  457. package/dist/components/toast/index.js +0 -18
  458. package/dist/components/toast/toast-button.js +0 -9
  459. package/dist/components/toast/toast.js +0 -10
  460. package/dist/components/toast/x-mark-icon.js +0 -8
  461. package/dist/components/toaster/index.js +0 -17
  462. package/dist/components/toaster/toaster.d.ts +0 -40
  463. package/dist/components/toaster/toaster.js +0 -134
  464. package/dist/components/tooltip/index.js +0 -17
  465. package/dist/components/tooltip/tooltip.js +0 -79
  466. package/dist/hooks/index.js +0 -20
  467. package/dist/index.d.ts +0 -37
  468. package/dist/index.js +0 -53
  469. package/dist/shared/util.d.ts +0 -2
  470. package/esm/components/alert/alert.d.ts +0 -10
  471. package/esm/components/alert/index.d.ts +0 -1
  472. package/esm/components/alert/index.js +0 -1
  473. package/esm/components/avatar/avatar.d.ts +0 -13
  474. package/esm/components/avatar/index.d.ts +0 -1
  475. package/esm/components/avatar/index.js +0 -1
  476. package/esm/components/avatar-group/avatar-group.d.ts +0 -7
  477. package/esm/components/avatar-group/index.d.ts +0 -1
  478. package/esm/components/avatar-group/index.js +0 -1
  479. package/esm/components/badge/badge.d.ts +0 -8
  480. package/esm/components/badge/index.d.ts +0 -1
  481. package/esm/components/badge/index.js +0 -1
  482. package/esm/components/breadcrumbs/breadcrumbs-context.d.ts +0 -9
  483. package/esm/components/breadcrumbs/breadcrumbs-item.d.ts +0 -12
  484. package/esm/components/breadcrumbs/breadcrumbs.d.ts +0 -7
  485. package/esm/components/breadcrumbs/index.d.ts +0 -2
  486. package/esm/components/breadcrumbs/index.js +0 -2
  487. package/esm/components/button/button.d.ts +0 -19
  488. package/esm/components/button/icon-button.d.ts +0 -6
  489. package/esm/components/button/index.d.ts +0 -2
  490. package/esm/components/button/index.js +0 -2
  491. package/esm/components/button-group/button-group.d.ts +0 -7
  492. package/esm/components/button-group/index.d.ts +0 -1
  493. package/esm/components/button-group/index.js +0 -1
  494. package/esm/components/caption/caption.d.ts +0 -7
  495. package/esm/components/caption/icons.d.ts +0 -5
  496. package/esm/components/caption/index.d.ts +0 -1
  497. package/esm/components/caption/index.js +0 -1
  498. package/esm/components/checkbox/checkbox.d.ts +0 -10
  499. package/esm/components/checkbox/index.d.ts +0 -1
  500. package/esm/components/checkbox/index.js +0 -1
  501. package/esm/components/color-picker/color-picker-button.d.ts +0 -12
  502. package/esm/components/color-picker/color-picker-button.js +0 -11
  503. package/esm/components/color-picker/color-picker.d.ts +0 -13
  504. package/esm/components/color-picker/color-picker.js +0 -9
  505. package/esm/components/color-picker/index.d.ts +0 -1
  506. package/esm/components/color-picker/index.js +0 -1
  507. package/esm/components/date-picker/calendar-day.d.ts +0 -17
  508. package/esm/components/date-picker/calendar-grid-head.d.ts +0 -7
  509. package/esm/components/date-picker/calendar-grid.d.ts +0 -17
  510. package/esm/components/date-picker/calendar-header.d.ts +0 -12
  511. package/esm/components/date-picker/calendar.d.ts +0 -11
  512. package/esm/components/date-picker/date-helpers.d.ts +0 -22
  513. package/esm/components/date-picker/date-picker.d.ts +0 -13
  514. package/esm/components/date-picker/date-range-picker.d.ts +0 -14
  515. package/esm/components/date-picker/date-range.d.ts +0 -13
  516. package/esm/components/date-picker/icons.d.ts +0 -3
  517. package/esm/components/date-picker/index.d.ts +0 -2
  518. package/esm/components/date-picker/index.js +0 -2
  519. package/esm/components/date-picker/parse-min-max-props.d.ts +0 -8
  520. package/esm/components/date-picker-popover/date-picker-popover.d.ts +0 -13
  521. package/esm/components/date-picker-popover/index.d.ts +0 -1
  522. package/esm/components/date-picker-popover/index.js +0 -1
  523. package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +0 -9
  524. package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +0 -10
  525. package/esm/components/date-range-picker-popover/date-range-picker-popover.d.ts +0 -26
  526. package/esm/components/date-range-picker-popover/helpers.d.ts +0 -2
  527. package/esm/components/date-range-picker-popover/index.d.ts +0 -2
  528. package/esm/components/date-range-picker-popover/index.js +0 -2
  529. package/esm/components/date-range-picker-popover/types.d.ts +0 -10
  530. package/esm/components/date-range-picker-popover/types.js +0 -1
  531. package/esm/components/date-range-picker-popover/use-is-compact-view.d.ts +0 -1
  532. package/esm/components/dialog/dialog-body.d.ts +0 -8
  533. package/esm/components/dialog/dialog-context.d.ts +0 -15
  534. package/esm/components/dialog/dialog-footer.d.ts +0 -5
  535. package/esm/components/dialog/dialog-header.d.ts +0 -8
  536. package/esm/components/dialog/dialog.d.ts +0 -12
  537. package/esm/components/dialog/index.d.ts +0 -4
  538. package/esm/components/dialog/index.js +0 -4
  539. package/esm/components/dialog/x-mark-icon.d.ts +0 -2
  540. package/esm/components/empty-state/empty-state.d.ts +0 -11
  541. package/esm/components/empty-state/index.d.ts +0 -1
  542. package/esm/components/empty-state/index.js +0 -1
  543. package/esm/components/file-picker/index.d.ts +0 -1
  544. package/esm/components/file-picker/index.js +0 -1
  545. package/esm/components/filter-buttons/filter-button.d.ts +0 -7
  546. package/esm/components/filter-buttons/filter-buttons.d.ts +0 -5
  547. package/esm/components/filter-buttons/index.d.ts +0 -2
  548. package/esm/components/filter-buttons/index.js +0 -2
  549. package/esm/components/form-field/form-field.d.ts +0 -15
  550. package/esm/components/form-field/index.d.ts +0 -1
  551. package/esm/components/form-field/index.js +0 -1
  552. package/esm/components/label/index.d.ts +0 -1
  553. package/esm/components/label/index.js +0 -1
  554. package/esm/components/label/label.d.ts +0 -5
  555. package/esm/components/menu/index.d.ts +0 -3
  556. package/esm/components/menu/index.js +0 -3
  557. package/esm/components/menu/menu-separator.d.ts +0 -6
  558. package/esm/components/menu/menu.d.ts +0 -31
  559. package/esm/components/nav-list/index.d.ts +0 -3
  560. package/esm/components/nav-list/index.js +0 -3
  561. package/esm/components/nav-list/nav-list-item.d.ts +0 -13
  562. package/esm/components/nav-list/nav-list-title.d.ts +0 -8
  563. package/esm/components/nav-list/nav-list.d.ts +0 -5
  564. package/esm/components/password-input/icons.d.ts +0 -3
  565. package/esm/components/password-input/index.d.ts +0 -1
  566. package/esm/components/password-input/index.js +0 -1
  567. package/esm/components/popover/index.d.ts +0 -1
  568. package/esm/components/popover/index.js +0 -1
  569. package/esm/components/popover/popover.d.ts +0 -49
  570. package/esm/components/popover/use-page-click.d.ts +0 -16
  571. package/esm/components/portal/index.d.ts +0 -1
  572. package/esm/components/portal/index.js +0 -1
  573. package/esm/components/portal/portal-context.d.ts +0 -6
  574. package/esm/components/portal/portal.d.ts +0 -5
  575. package/esm/components/positioner/calc-position.d.ts +0 -32
  576. package/esm/components/positioner/index.d.ts +0 -1
  577. package/esm/components/positioner/index.js +0 -1
  578. package/esm/components/positioner/positioner.d.ts +0 -20
  579. package/esm/components/positioner/types.d.ts +0 -14
  580. package/esm/components/positioner/types.js +0 -1
  581. package/esm/components/radio/index.d.ts +0 -1
  582. package/esm/components/radio/index.js +0 -1
  583. package/esm/components/radio/radio.d.ts +0 -11
  584. package/esm/components/segmented-control/index.d.ts +0 -1
  585. package/esm/components/segmented-control/index.js +0 -1
  586. package/esm/components/segmented-control/segmented-control-button.d.ts +0 -10
  587. package/esm/components/segmented-control/segmented-control.d.ts +0 -15
  588. package/esm/components/select/index.d.ts +0 -1
  589. package/esm/components/select/index.js +0 -1
  590. package/esm/components/select/select.d.ts +0 -46
  591. package/esm/components/selection-control/index.d.ts +0 -1
  592. package/esm/components/selection-control/index.js +0 -1
  593. package/esm/components/selection-control/selection-control.d.ts +0 -14
  594. package/esm/components/slider/index.d.ts +0 -2
  595. package/esm/components/slider/index.js +0 -2
  596. package/esm/components/slider/slider-tick-marks.d.ts +0 -7
  597. package/esm/components/spinner/index.d.ts +0 -1
  598. package/esm/components/spinner/index.js +0 -1
  599. package/esm/components/spinner/spinner.d.ts +0 -7
  600. package/esm/components/switch/index.d.ts +0 -1
  601. package/esm/components/switch/index.js +0 -1
  602. package/esm/components/table/icons.d.ts +0 -4
  603. package/esm/components/table/index.d.ts +0 -7
  604. package/esm/components/table/index.js +0 -7
  605. package/esm/components/table/table-body.d.ts +0 -5
  606. package/esm/components/table/table-cell.d.ts +0 -5
  607. package/esm/components/table/table-container.d.ts +0 -13
  608. package/esm/components/table/table-head-cell.d.ts +0 -10
  609. package/esm/components/table/table-head.d.ts +0 -7
  610. package/esm/components/table/table-row.d.ts +0 -7
  611. package/esm/components/table/table.d.ts +0 -11
  612. package/esm/components/tabs/index.d.ts +0 -4
  613. package/esm/components/tabs/index.js +0 -4
  614. package/esm/components/tabs/tab-list.d.ts +0 -3
  615. package/esm/components/tabs/tab-panel.d.ts +0 -6
  616. package/esm/components/tabs/tab.d.ts +0 -7
  617. package/esm/components/tabs/tabs-context.d.ts +0 -20
  618. package/esm/components/tabs/tabs.d.ts +0 -7
  619. package/esm/components/tabs/types.d.ts +0 -2
  620. package/esm/components/tabs/types.js +0 -1
  621. package/esm/components/tag/index.d.ts +0 -1
  622. package/esm/components/tag/index.js +0 -1
  623. package/esm/components/tag/tag.d.ts +0 -13
  624. package/esm/components/text-input/index.d.ts +0 -1
  625. package/esm/components/text-input/index.js +0 -1
  626. package/esm/components/text-input/text-input.d.ts +0 -21
  627. package/esm/components/textarea/index.d.ts +0 -1
  628. package/esm/components/textarea/index.js +0 -1
  629. package/esm/components/textarea/textarea.d.ts +0 -20
  630. package/esm/components/toast/index.d.ts +0 -2
  631. package/esm/components/toast/index.js +0 -2
  632. package/esm/components/toast/toast-button.d.ts +0 -5
  633. package/esm/components/toast/toast.d.ts +0 -11
  634. package/esm/components/toast/x-mark-icon.d.ts +0 -2
  635. package/esm/components/toaster/index.d.ts +0 -1
  636. package/esm/components/toaster/index.js +0 -1
  637. package/esm/components/tooltip/index.d.ts +0 -1
  638. package/esm/components/tooltip/index.js +0 -1
  639. package/esm/components/tooltip/tooltip.d.ts +0 -25
  640. package/esm/hooks/index.d.ts +0 -4
  641. package/esm/hooks/use-disable-body-scroll.d.ts +0 -5
  642. package/esm/hooks/use-esc-key-down.d.ts +0 -17
  643. package/esm/hooks/use-focus-trap.d.ts +0 -15
  644. package/esm/hooks/use-mount-transition.d.ts +0 -32
  645. package/esm/index.d.ts +0 -37
  646. package/esm/shared/keyboard-keys.d.ts +0 -14
  647. package/esm/shared/react-helpers.d.ts +0 -13
  648. package/esm/shared/util.d.ts +0 -2
File without changes
File without changes
@@ -9,5 +9,5 @@ export type FilePickerProps = FilePickerBaseProps & {
9
9
  buttonLabel?: ReactNode;
10
10
  onSelectFiles?: SelectFilesHandler;
11
11
  };
12
- export declare const FilePicker: import("react").ForwardRefExoticComponent<Pick<FilePickerProps, "caption" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "buttonLabel" | "onSelectFiles"> & import("react").RefAttributes<HTMLInputElement>>;
12
+ export declare const FilePicker: import("react").ForwardRefExoticComponent<Pick<FilePickerProps, "hidden" | "caption" | "form" | "label" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "buttonLabel" | "onSelectFiles"> & import("react").RefAttributes<HTMLInputElement>>;
13
13
  export {};
File without changes
@@ -0,0 +1,37 @@
1
+ export * from './alert';
2
+ export * from './avatar';
3
+ export * from './avatar-group';
4
+ export * from './badge';
5
+ export * from './breadcrumbs';
6
+ export * from './button';
7
+ export * from './button-group';
8
+ export * from './caption';
9
+ export * from './checkbox';
10
+ export * from './date-picker';
11
+ export * from './date-picker-popover';
12
+ export * from './date-range-picker-popover';
13
+ export * from './dialog';
14
+ export * from './empty-state';
15
+ export * from './file-picker';
16
+ export * from './filter-buttons';
17
+ export * from './form-field';
18
+ export * from './label';
19
+ export * from './menu';
20
+ export * from './nav-list';
21
+ export * from './password-input';
22
+ export * from './popover';
23
+ export * from './portal';
24
+ export * from './radio';
25
+ export * from './segmented-control';
26
+ export * from './select';
27
+ export * from './slider';
28
+ export * from './spinner';
29
+ export * from './switch';
30
+ export * from './table';
31
+ export * from './tabs';
32
+ export * from './tag';
33
+ export * from './text-input';
34
+ export * from './textarea';
35
+ export * from './toast';
36
+ export * from './toaster';
37
+ export * from './tooltip';
File without changes
File without changes
File without changes
@@ -7,5 +7,5 @@ export type MenuItemProps = {
7
7
  icon?: ReactNode;
8
8
  children: ReactNode;
9
9
  } & MenuItemBaseProps;
10
- export declare const MenuItem: import("react").ForwardRefExoticComponent<Pick<MenuItemProps, "form" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "appearance" | "value" | "type" | "name" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget"> & import("react").RefAttributes<HTMLButtonElement>>;
10
+ export declare const MenuItem: import("react").ForwardRefExoticComponent<Pick<MenuItemProps, "hidden" | "form" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "appearance" | "value" | "type" | "name" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget"> & import("react").RefAttributes<HTMLButtonElement>>;
11
11
  export {};
@@ -1,4 +1,4 @@
1
- import { ComponentPropsWithoutRef } from 'react';
1
+ import { type ComponentPropsWithoutRef } from 'react';
2
2
  type MenuSeparatorHTMLProps = ComponentPropsWithoutRef<'li'>;
3
3
  type MenuSeparatorBaseProps = Omit<MenuSeparatorHTMLProps, 'children'>;
4
4
  export type MenuSeparatorProps = MenuSeparatorBaseProps;
File without changes
File without changes
@@ -6,5 +6,5 @@ export type PasswordInputProps = {
6
6
  showPasswordTitle?: string;
7
7
  hidePasswordTitle?: string;
8
8
  } & PasswordInputBaseProps;
9
- export declare const PasswordInput: import("react").ForwardRefExoticComponent<Pick<PasswordInputProps, "form" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "isBlock" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "hasError" | "htmlSize" | "onChangeValue" | "widthCh" | "isDefaultVisible" | "showPasswordTitle" | "hidePasswordTitle"> & import("react").RefAttributes<HTMLInputElement>>;
9
+ export declare const PasswordInput: import("react").ForwardRefExoticComponent<Pick<PasswordInputProps, "hidden" | "form" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "isBlock" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "hasError" | "htmlSize" | "onChangeValue" | "widthCh" | "isDefaultVisible" | "showPasswordTitle" | "hidePasswordTitle"> & import("react").RefAttributes<HTMLInputElement>>;
10
10
  export {};
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -7,5 +7,5 @@ export type RadioProps = RadioBaseProps & {
7
7
  icon?: RadioIcon;
8
8
  onToggle?: RadioToggleHandler;
9
9
  };
10
- export declare const Radio: import("react").ForwardRefExoticComponent<Pick<RadioProps, "form" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "onToggle"> & import("react").RefAttributes<HTMLInputElement>>;
10
+ export declare const Radio: import("react").ForwardRefExoticComponent<Pick<RadioProps, "hidden" | "form" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "onToggle"> & import("react").RefAttributes<HTMLInputElement>>;
11
11
  export {};
File without changes
@@ -1,4 +1,5 @@
1
1
  import { type ComponentPropsWithRef } from 'react';
2
+ export type SelectSize = 'sm' | 'md' | 'lg';
2
3
  type SelectHTMLProps = ComponentPropsWithRef<'select'>;
3
4
  type SelectBaseProps = Omit<SelectHTMLProps, 'size' | 'multiple' | 'value' | 'defaultValue'> & {
4
5
  hasError?: boolean;
@@ -6,7 +7,6 @@ type SelectBaseProps = Omit<SelectHTMLProps, 'size' | 'multiple' | 'value' | 'de
6
7
  size?: SelectSize;
7
8
  htmlSize?: SelectHTMLProps['size'];
8
9
  };
9
- export type SelectSize = 'sm' | 'md' | 'lg';
10
10
  export type SelectProps = SelectBaseProps & ({
11
11
  multiple?: false;
12
12
  value?: string | number;
@@ -30,7 +30,7 @@ export declare const Select: import("react").ForwardRefExoticComponent<(Pick<Omi
30
30
  value?: string | number | undefined;
31
31
  defaultValue?: string | number | undefined;
32
32
  onChangeValue?: ((value: string) => void) | undefined;
33
- }, "form" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "value" | "name" | "autoFocus" | "disabled" | "isBlock" | "autoComplete" | "multiple" | "required" | "hasError" | "htmlSize" | "onChangeValue"> | Pick<Omit<Pick<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "key" | keyof import("react").SelectHTMLAttributes<HTMLSelectElement>> & {
33
+ }, "hidden" | "form" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "value" | "name" | "autoFocus" | "disabled" | "isBlock" | "autoComplete" | "multiple" | "required" | "hasError" | "htmlSize" | "onChangeValue"> | Pick<Omit<Pick<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "key" | keyof import("react").SelectHTMLAttributes<HTMLSelectElement>> & {
34
34
  ref?: ((instance: HTMLSelectElement | null) => void) | import("react").RefObject<HTMLSelectElement> | null | undefined;
35
35
  }, "defaultValue" | "size" | "value" | "multiple"> & {
36
36
  hasError?: boolean | undefined;
@@ -42,5 +42,5 @@ export declare const Select: import("react").ForwardRefExoticComponent<(Pick<Omi
42
42
  value?: string[] | undefined;
43
43
  defaultValue?: string[] | undefined;
44
44
  onChangeValue?: ((value: string[]) => void) | undefined;
45
- }, "form" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "value" | "name" | "autoFocus" | "disabled" | "isBlock" | "autoComplete" | "multiple" | "required" | "hasError" | "htmlSize" | "onChangeValue">) & import("react").RefAttributes<HTMLSelectElement>>;
45
+ }, "hidden" | "form" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "value" | "name" | "autoFocus" | "disabled" | "isBlock" | "autoComplete" | "multiple" | "required" | "hasError" | "htmlSize" | "onChangeValue">) & import("react").RefAttributes<HTMLSelectElement>>;
46
46
  export {};
File without changes
@@ -13,5 +13,5 @@ export type SliderProps = {
13
13
  defaultValue?: number;
14
14
  onChangeValue?: SliderChangeValueHandler;
15
15
  } & SliderBaseProps & Partial<SliderTickMarksProps>;
16
- export declare const Slider: import("react").ForwardRefExoticComponent<Pick<SliderProps, "form" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "onChangeValue" | "thumbStyle" | keyof SliderTickMarksProps> & import("react").RefAttributes<HTMLInputElement>>;
16
+ export declare const Slider: import("react").ForwardRefExoticComponent<Pick<SliderProps, "hidden" | "form" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "onChangeValue" | "thumbStyle" | keyof SliderTickMarksProps> & import("react").RefAttributes<HTMLInputElement>>;
17
17
  export {};
File without changes
File without changes
File without changes
@@ -6,5 +6,5 @@ export type SwitchProps = SwitchBaseProps & {
6
6
  showCheckIcon?: boolean;
7
7
  onToggle?: SwitchToggleHandler;
8
8
  };
9
- export declare const Switch: import("react").ForwardRefExoticComponent<Pick<SwitchProps, "form" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "onToggle" | "showCheckIcon"> & import("react").RefAttributes<HTMLInputElement>>;
9
+ export declare const Switch: import("react").ForwardRefExoticComponent<Pick<SwitchProps, "hidden" | "form" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "size" | "src" | "alt" | "width" | "height" | "value" | "max" | "min" | "name" | "crossOrigin" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "onToggle" | "showCheckIcon"> & import("react").RefAttributes<HTMLInputElement>>;
10
10
  export {};
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes