@connectif/ui-components 0.0.1

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 (881) hide show
  1. package/dist/components/alert/Alert.d.ts +33 -0
  2. package/dist/components/alert/Alert.theme.d.ts +2 -0
  3. package/dist/components/alert/AlertTitle.theme.d.ts +2 -0
  4. package/dist/components/alert/index.d.ts +1 -0
  5. package/dist/components/avatar/Avatar.d.ts +91 -0
  6. package/dist/components/avatar/AvatarCard.d.ts +9 -0
  7. package/dist/components/avatar/AvatarMultiple.d.ts +35 -0
  8. package/dist/components/avatar/index.d.ts +3 -0
  9. package/dist/components/button/BadgeToggleButton.d.ts +42 -0
  10. package/dist/components/button/Button.d.ts +175 -0
  11. package/dist/components/button/Button.theme.d.ts +2 -0
  12. package/dist/components/button/ButtonGroup.d.ts +26 -0
  13. package/dist/components/button/ButtonWithActions.d.ts +68 -0
  14. package/dist/components/button/IconButton.d.ts +78 -0
  15. package/dist/components/button/IconButton.theme.d.ts +2 -0
  16. package/dist/components/button/IconToggleButton.d.ts +35 -0
  17. package/dist/components/button/MenuButton.d.ts +56 -0
  18. package/dist/components/button/MenuIconButton.d.ts +77 -0
  19. package/dist/components/button/MenuItem.theme.d.ts +2 -0
  20. package/dist/components/button/ToggleButton.d.ts +28 -0
  21. package/dist/components/button/ToggleButton.theme.d.ts +2 -0
  22. package/dist/components/button/ToggleButtonGroup.d.ts +40 -0
  23. package/dist/components/button/UploadButton.d.ts +25 -0
  24. package/dist/components/button/index.d.ts +11 -0
  25. package/dist/components/card/Card.d.ts +40 -0
  26. package/dist/components/card/CardActions.d.ts +17 -0
  27. package/dist/components/card/CardChips.d.ts +17 -0
  28. package/dist/components/card/CardDescription.d.ts +13 -0
  29. package/dist/components/card/CardImage.d.ts +22 -0
  30. package/dist/components/card/CardStatus.d.ts +23 -0
  31. package/dist/components/card/CardTable.d.ts +22 -0
  32. package/dist/components/card/CardTitle.d.ts +22 -0
  33. package/dist/components/card/CardTitleWithIcon.d.ts +29 -0
  34. package/dist/components/card/EnhancedCard.d.ts +97 -0
  35. package/dist/components/card/EnhancedCardImage.d.ts +43 -0
  36. package/dist/components/card/EnhancedCardRow.d.ts +11 -0
  37. package/dist/components/card/EnhancedCardSubtitle.d.ts +26 -0
  38. package/dist/components/card/EnhancedCardTitle.d.ts +38 -0
  39. package/dist/components/card/index.d.ts +14 -0
  40. package/dist/components/chart/BarChart.d.ts +84 -0
  41. package/dist/components/chart/CategorizedChartProps.d.ts +35 -0
  42. package/dist/components/chart/ChartUtils.d.ts +8 -0
  43. package/dist/components/chart/DonutChart.d.ts +79 -0
  44. package/dist/components/chart/DonutChartLegendItem.d.ts +9 -0
  45. package/dist/components/chart/EchartsConfig.d.ts +1 -0
  46. package/dist/components/chart/FunnelChart.d.ts +84 -0
  47. package/dist/components/chart/IncrementLabel.d.ts +18 -0
  48. package/dist/components/chart/LineChart.d.ts +98 -0
  49. package/dist/components/chart/MicroPieChart.d.ts +18 -0
  50. package/dist/components/chart/RankingChart.d.ts +33 -0
  51. package/dist/components/chart/RankingChartItem.d.ts +7 -0
  52. package/dist/components/chart/RankingChartTooltip.d.ts +15 -0
  53. package/dist/components/chart/WeekChart.d.ts +41 -0
  54. package/dist/components/chart/WeekChartItem.d.ts +5 -0
  55. package/dist/components/chart/WeekChartTooltip.d.ts +19 -0
  56. package/dist/components/chart/index.d.ts +8 -0
  57. package/dist/components/chat/Chat.d.ts +13 -0
  58. package/dist/components/chat/ChatMessage.d.ts +35 -0
  59. package/dist/components/chat/index.d.ts +2 -0
  60. package/dist/components/chip/Chip.d.ts +1002 -0
  61. package/dist/components/chip/ChipList.d.ts +14 -0
  62. package/dist/components/chip/MenuChip.d.ts +56 -0
  63. package/dist/components/chip/index.d.ts +3 -0
  64. package/dist/components/dialog/ConfirmationDialog.d.ts +54 -0
  65. package/dist/components/dialog/Dialog.d.ts +16 -0
  66. package/dist/components/dialog/index.d.ts +2 -0
  67. package/dist/components/divider/Divider.d.ts +18 -0
  68. package/dist/components/divider/index.d.ts +1 -0
  69. package/dist/components/drawer/Drawer.d.ts +9 -0
  70. package/dist/components/drawer/InputDrawer.d.ts +41 -0
  71. package/dist/components/drawer/index.d.ts +2 -0
  72. package/dist/components/formatter/CompactNumberFormatter.d.ts +13 -0
  73. package/dist/components/formatter/CurrencyFormatter.d.ts +21 -0
  74. package/dist/components/formatter/DateFormatter.d.ts +18 -0
  75. package/dist/components/formatter/NumberFormatter.d.ts +17 -0
  76. package/dist/components/formatter/PercentageFormatter.d.ts +17 -0
  77. package/dist/components/formatter/index.d.ts +5 -0
  78. package/dist/components/header/Header.d.ts +33 -0
  79. package/dist/components/header/HeaderSubtitle.d.ts +13 -0
  80. package/dist/components/header/HeaderTitle.d.ts +13 -0
  81. package/dist/components/header/index.d.ts +3 -0
  82. package/dist/components/icon/Icon.d.ts +47 -0
  83. package/dist/components/icon/StackedIcons.d.ts +13 -0
  84. package/dist/components/icon/SvgIcon.theme.d.ts +2 -0
  85. package/dist/components/icon/icons.d.ts +1953 -0
  86. package/dist/components/icon/index.d.ts +1 -0
  87. package/dist/components/image/ImageEditor.d.ts +12 -0
  88. package/dist/components/image/index.d.ts +1 -0
  89. package/dist/components/index.d.ts +35 -0
  90. package/dist/components/info/InfoBox.d.ts +10 -0
  91. package/dist/components/info/index.d.ts +1 -0
  92. package/dist/components/input/Autocomplete.d.ts +118 -0
  93. package/dist/components/input/CalendarDay.d.ts +17 -0
  94. package/dist/components/input/CalendarMonth.d.ts +19 -0
  95. package/dist/components/input/CalendarScrollPicker.d.ts +17 -0
  96. package/dist/components/input/CategorizedPicker.d.ts +22 -0
  97. package/dist/components/input/Checkbox.d.ts +39 -0
  98. package/dist/components/input/CodeEditor.d.ts +29 -0
  99. package/dist/components/input/CodeEditorPopup.d.ts +18 -0
  100. package/dist/components/input/ColorPicker.d.ts +62 -0
  101. package/dist/components/input/DateIntervalPicker.d.ts +84 -0
  102. package/dist/components/input/DateIntervalPickerInputs.d.ts +18 -0
  103. package/dist/components/input/DateIntervalPickerList.d.ts +35 -0
  104. package/dist/components/input/DateIntervalPickerPopover.d.ts +32 -0
  105. package/dist/components/input/DatePicker.d.ts +59 -0
  106. package/dist/components/input/DatePickerPopover.d.ts +10 -0
  107. package/dist/components/input/DatePickerStatic.d.ts +9 -0
  108. package/dist/components/input/DaysOfWeekPicker.d.ts +11 -0
  109. package/dist/components/input/DaysOfWeekRow.d.ts +3 -0
  110. package/dist/components/input/DebouncedTextField.d.ts +18 -0
  111. package/dist/components/input/InputHelperText.d.ts +29 -0
  112. package/dist/components/input/InputLabel.d.ts +47 -0
  113. package/dist/components/input/ItemSelector.d.ts +27 -0
  114. package/dist/components/input/NumberField.d.ts +106 -0
  115. package/dist/components/input/PageSelector.d.ts +30 -0
  116. package/dist/components/input/PhoneField.d.ts +43 -0
  117. package/dist/components/input/Radio.d.ts +49 -0
  118. package/dist/components/input/Select.d.ts +89 -0
  119. package/dist/components/input/SelectPopover.d.ts +107 -0
  120. package/dist/components/input/SelectPopoverItem.d.ts +17 -0
  121. package/dist/components/input/Switch.d.ts +22 -0
  122. package/dist/components/input/Switch.theme.d.ts +2 -0
  123. package/dist/components/input/TextEditor.d.ts +123 -0
  124. package/dist/components/input/TextField.d.ts +156 -0
  125. package/dist/components/input/TextFieldContainer.d.ts +95 -0
  126. package/dist/components/input/TimeField.d.ts +20 -0
  127. package/dist/components/input/TimezoneSelector.d.ts +7 -0
  128. package/dist/components/input/UploadClickableArea.d.ts +14 -0
  129. package/dist/components/input/index.d.ts +26 -0
  130. package/dist/components/layout/Box.d.ts +2 -0
  131. package/dist/components/layout/Collapse.d.ts +5 -0
  132. package/dist/components/layout/CollapsiblePanel.d.ts +48 -0
  133. package/dist/components/layout/CollapsiblePanelSwitcher.d.ts +87 -0
  134. package/dist/components/layout/Container.d.ts +5 -0
  135. package/dist/components/layout/Container.theme.d.ts +2 -0
  136. package/dist/components/layout/Grid.d.ts +8 -0
  137. package/dist/components/layout/LazyLoad.d.ts +5 -0
  138. package/dist/components/layout/PageScrollContext.d.ts +5 -0
  139. package/dist/components/layout/PageWithHeader.d.ts +13 -0
  140. package/dist/components/layout/PageWithNavbar.d.ts +13 -0
  141. package/dist/components/layout/PageWithSidePanel.d.ts +17 -0
  142. package/dist/components/layout/PageWithToolBox.d.ts +17 -0
  143. package/dist/components/layout/PageWithToolbar.d.ts +18 -0
  144. package/dist/components/layout/Paper.d.ts +13 -0
  145. package/dist/components/layout/SidePanel.d.ts +7 -0
  146. package/dist/components/layout/Stack.d.ts +2 -0
  147. package/dist/components/layout/Stepper.d.ts +23 -0
  148. package/dist/components/layout/SwipeableViews.d.ts +8 -0
  149. package/dist/components/layout/ToolBox.d.ts +12 -0
  150. package/dist/components/layout/index.d.ts +17 -0
  151. package/dist/components/list/BaseListItem.d.ts +70 -0
  152. package/dist/components/list/List.d.ts +5 -0
  153. package/dist/components/list/ListItem.d.ts +16 -0
  154. package/dist/components/list/ListItemButton.d.ts +42 -0
  155. package/dist/components/list/ListItemText.d.ts +17 -0
  156. package/dist/components/list/index.d.ts +3 -0
  157. package/dist/components/loader/Loader.d.ts +32 -0
  158. package/dist/components/loader/index.d.ts +1 -0
  159. package/dist/components/navbar/Navbar.d.ts +41 -0
  160. package/dist/components/navbar/NavbarButton.d.ts +39 -0
  161. package/dist/components/navbar/NavbarHeader.d.ts +12 -0
  162. package/dist/components/navbar/NavbarLogo.d.ts +16 -0
  163. package/dist/components/navbar/index.d.ts +4 -0
  164. package/dist/components/overlay/DonutFocusOverlay.d.ts +11 -0
  165. package/dist/components/overlay/index.d.ts +1 -0
  166. package/dist/components/pager/Pager.d.ts +31 -0
  167. package/dist/components/pager/index.d.ts +1 -0
  168. package/dist/components/popover/Popover.d.ts +26 -0
  169. package/dist/components/popover/Popover.theme.d.ts +2 -0
  170. package/dist/components/popover/PopoverActions.d.ts +21 -0
  171. package/dist/components/popover/index.d.ts +2 -0
  172. package/dist/components/progress/CircularProgress.d.ts +35 -0
  173. package/dist/components/progress/DonutProgress.d.ts +45 -0
  174. package/dist/components/progress/LinearProgress.d.ts +19 -0
  175. package/dist/components/progress/LinearProgress.theme.d.ts +2 -0
  176. package/dist/components/progress/index.d.ts +2 -0
  177. package/dist/components/scrollable/HorizontalScrollable.d.ts +18 -0
  178. package/dist/components/scrollable/index.d.ts +1 -0
  179. package/dist/components/skeleton/Skeleton.d.ts +8 -0
  180. package/dist/components/skeleton/index.d.ts +1 -0
  181. package/dist/components/snackbar/Snackbar.d.ts +52 -0
  182. package/dist/components/snackbar/SnackbarProvider.d.ts +10 -0
  183. package/dist/components/snackbar/enqueueSnackbar.d.ts +27 -0
  184. package/dist/components/snackbar/index.d.ts +3 -0
  185. package/dist/components/tab/TabButton.d.ts +30 -0
  186. package/dist/components/tab/TabContent.d.ts +7 -0
  187. package/dist/components/tab/Tabs.d.ts +52 -0
  188. package/dist/components/tab/Tabs.theme.d.ts +2 -0
  189. package/dist/components/tab/index.d.ts +3 -0
  190. package/dist/components/table/NestedTable.d.ts +29 -0
  191. package/dist/components/table/Table.d.ts +5 -0
  192. package/dist/components/table/Table.theme.d.ts +2 -0
  193. package/dist/components/table/TableBody.d.ts +4 -0
  194. package/dist/components/table/TableCell.d.ts +20 -0
  195. package/dist/components/table/TableCell.theme.d.ts +2 -0
  196. package/dist/components/table/TableCellCopy.d.ts +10 -0
  197. package/dist/components/table/TableDivider.d.ts +3 -0
  198. package/dist/components/table/TableHead.d.ts +4 -0
  199. package/dist/components/table/TableRow.d.ts +9 -0
  200. package/dist/components/table/TableSortLabel.d.ts +8 -0
  201. package/dist/components/table/index.d.ts +9 -0
  202. package/dist/components/toolbar/Toolbar.d.ts +24 -0
  203. package/dist/components/toolbar/ToolbarBreadcrumb.d.ts +15 -0
  204. package/dist/components/toolbar/ToolbarBreadcrumbButton.d.ts +11 -0
  205. package/dist/components/toolbar/ToolbarTitle.d.ts +27 -0
  206. package/dist/components/toolbar/index.d.ts +4 -0
  207. package/dist/components/tooltip/TextEllipsis.d.ts +18 -0
  208. package/dist/components/tooltip/TextEllipsisTooltip.d.ts +27 -0
  209. package/dist/components/tooltip/Tooltip.d.ts +59 -0
  210. package/dist/components/tooltip/Tooltip.theme.d.ts +2 -0
  211. package/dist/components/tooltip/TooltipMenu.d.ts +35 -0
  212. package/dist/components/tooltip/index.d.ts +4 -0
  213. package/dist/components/transition/Slide.d.ts +3 -0
  214. package/dist/components/transition/index.d.ts +1 -0
  215. package/dist/components/typography/TextMarker.d.ts +32 -0
  216. package/dist/components/typography/Typography.d.ts +39 -0
  217. package/dist/components/typography/index.d.ts +2 -0
  218. package/dist/components/widget/Widget.d.ts +7 -0
  219. package/dist/components/widget/WidgetActions.d.ts +8 -0
  220. package/dist/components/widget/WidgetLegendItem.d.ts +65 -0
  221. package/dist/components/widget/WidgetTitle.d.ts +23 -0
  222. package/dist/components/widget/index.d.ts +4 -0
  223. package/dist/components/window/MinimizableWindow.d.ts +98 -0
  224. package/dist/components/window/index.d.ts +1 -0
  225. package/dist/contexts/IntlContext.d.ts +7 -0
  226. package/dist/contexts/index.d.ts +1 -0
  227. package/dist/hooks/index.d.ts +3 -0
  228. package/dist/hooks/useDebouncedCallback.d.ts +1 -0
  229. package/dist/hooks/useFormatters.d.ts +8 -0
  230. package/dist/hooks/useResizeObserver.d.ts +7 -0
  231. package/dist/i18n/TranslationKey.d.ts +11 -0
  232. package/dist/i18n/en.d.ts +202 -0
  233. package/dist/i18n/es.d.ts +202 -0
  234. package/dist/i18n/fr.d.ts +202 -0
  235. package/dist/i18n/it.d.ts +202 -0
  236. package/dist/i18n/pt.d.ts +202 -0
  237. package/dist/i18n/translate.d.ts +4 -0
  238. package/dist/index.d.ts +6 -0
  239. package/dist/index.js +25410 -0
  240. package/dist/models/ComparisonInterval.d.ts +1 -0
  241. package/dist/models/DateInputFormat.d.ts +4 -0
  242. package/dist/models/DateInterval.d.ts +1 -0
  243. package/dist/models/SimpleDate.d.ts +8 -0
  244. package/dist/propTypes/IncrementLabel.d.ts +15 -0
  245. package/dist/propTypes/index.d.ts +1 -0
  246. package/dist/src/components/alert/Alert.d.ts +33 -0
  247. package/dist/src/components/alert/Alert.theme.d.ts +2 -0
  248. package/dist/src/components/alert/AlertTitle.theme.d.ts +2 -0
  249. package/dist/src/components/alert/index.d.ts +1 -0
  250. package/dist/src/components/avatar/Avatar.d.ts +91 -0
  251. package/dist/src/components/avatar/AvatarCard.d.ts +9 -0
  252. package/dist/src/components/avatar/AvatarMultiple.d.ts +35 -0
  253. package/dist/src/components/avatar/index.d.ts +3 -0
  254. package/dist/src/components/button/BadgeToggleButton.d.ts +42 -0
  255. package/dist/src/components/button/Button.d.ts +175 -0
  256. package/dist/src/components/button/Button.theme.d.ts +2 -0
  257. package/dist/src/components/button/ButtonGroup.d.ts +26 -0
  258. package/dist/src/components/button/ButtonWithActions.d.ts +68 -0
  259. package/dist/src/components/button/IconButton.d.ts +78 -0
  260. package/dist/src/components/button/IconButton.theme.d.ts +2 -0
  261. package/dist/src/components/button/IconToggleButton.d.ts +35 -0
  262. package/dist/src/components/button/MenuButton.d.ts +56 -0
  263. package/dist/src/components/button/MenuIconButton.d.ts +77 -0
  264. package/dist/src/components/button/MenuItem.theme.d.ts +2 -0
  265. package/dist/src/components/button/ToggleButton.d.ts +28 -0
  266. package/dist/src/components/button/ToggleButton.theme.d.ts +2 -0
  267. package/dist/src/components/button/ToggleButtonGroup.d.ts +40 -0
  268. package/dist/src/components/button/UploadButton.d.ts +25 -0
  269. package/dist/src/components/button/index.d.ts +11 -0
  270. package/dist/src/components/card/Card.d.ts +40 -0
  271. package/dist/src/components/card/CardActions.d.ts +17 -0
  272. package/dist/src/components/card/CardChips.d.ts +17 -0
  273. package/dist/src/components/card/CardDescription.d.ts +13 -0
  274. package/dist/src/components/card/CardImage.d.ts +22 -0
  275. package/dist/src/components/card/CardStatus.d.ts +23 -0
  276. package/dist/src/components/card/CardTable.d.ts +22 -0
  277. package/dist/src/components/card/CardTitle.d.ts +22 -0
  278. package/dist/src/components/card/CardTitleWithIcon.d.ts +29 -0
  279. package/dist/src/components/card/EnhancedCard.d.ts +97 -0
  280. package/dist/src/components/card/EnhancedCardImage.d.ts +43 -0
  281. package/dist/src/components/card/EnhancedCardRow.d.ts +11 -0
  282. package/dist/src/components/card/EnhancedCardSubtitle.d.ts +26 -0
  283. package/dist/src/components/card/EnhancedCardTitle.d.ts +38 -0
  284. package/dist/src/components/card/index.d.ts +14 -0
  285. package/dist/src/components/chart/BarChart.d.ts +84 -0
  286. package/dist/src/components/chart/CategorizedChartProps.d.ts +35 -0
  287. package/dist/src/components/chart/ChartUtils.d.ts +8 -0
  288. package/dist/src/components/chart/DonutChart.d.ts +79 -0
  289. package/dist/src/components/chart/DonutChartLegendItem.d.ts +9 -0
  290. package/dist/src/components/chart/EchartsConfig.d.ts +1 -0
  291. package/dist/src/components/chart/FunnelChart.d.ts +84 -0
  292. package/dist/src/components/chart/IncrementLabel.d.ts +18 -0
  293. package/dist/src/components/chart/LineChart.d.ts +98 -0
  294. package/dist/src/components/chart/MicroPieChart.d.ts +18 -0
  295. package/dist/src/components/chart/RankingChart.d.ts +33 -0
  296. package/dist/src/components/chart/RankingChartItem.d.ts +7 -0
  297. package/dist/src/components/chart/RankingChartTooltip.d.ts +15 -0
  298. package/dist/src/components/chart/WeekChart.d.ts +41 -0
  299. package/dist/src/components/chart/WeekChartItem.d.ts +5 -0
  300. package/dist/src/components/chart/WeekChartTooltip.d.ts +19 -0
  301. package/dist/src/components/chart/index.d.ts +8 -0
  302. package/dist/src/components/chat/Chat.d.ts +13 -0
  303. package/dist/src/components/chat/ChatMessage.d.ts +35 -0
  304. package/dist/src/components/chat/index.d.ts +2 -0
  305. package/dist/src/components/chip/Chip.d.ts +1002 -0
  306. package/dist/src/components/chip/ChipList.d.ts +14 -0
  307. package/dist/src/components/chip/MenuChip.d.ts +56 -0
  308. package/dist/src/components/chip/index.d.ts +3 -0
  309. package/dist/src/components/dialog/ConfirmationDialog.d.ts +54 -0
  310. package/dist/src/components/dialog/Dialog.d.ts +16 -0
  311. package/dist/src/components/dialog/index.d.ts +2 -0
  312. package/dist/src/components/divider/Divider.d.ts +18 -0
  313. package/dist/src/components/divider/index.d.ts +1 -0
  314. package/dist/src/components/drawer/Drawer.d.ts +9 -0
  315. package/dist/src/components/drawer/InputDrawer.d.ts +41 -0
  316. package/dist/src/components/drawer/index.d.ts +2 -0
  317. package/dist/src/components/formatter/CompactNumberFormatter.d.ts +13 -0
  318. package/dist/src/components/formatter/CurrencyFormatter.d.ts +21 -0
  319. package/dist/src/components/formatter/DateFormatter.d.ts +18 -0
  320. package/dist/src/components/formatter/NumberFormatter.d.ts +17 -0
  321. package/dist/src/components/formatter/PercentageFormatter.d.ts +17 -0
  322. package/dist/src/components/formatter/index.d.ts +5 -0
  323. package/dist/src/components/header/Header.d.ts +33 -0
  324. package/dist/src/components/header/HeaderSubtitle.d.ts +13 -0
  325. package/dist/src/components/header/HeaderTitle.d.ts +13 -0
  326. package/dist/src/components/header/index.d.ts +3 -0
  327. package/dist/src/components/icon/Icon.d.ts +47 -0
  328. package/dist/src/components/icon/StackedIcons.d.ts +13 -0
  329. package/dist/src/components/icon/SvgIcon.theme.d.ts +2 -0
  330. package/dist/src/components/icon/icons.d.ts +1953 -0
  331. package/dist/src/components/icon/index.d.ts +1 -0
  332. package/dist/src/components/image/ImageEditor.d.ts +12 -0
  333. package/dist/src/components/image/index.d.ts +1 -0
  334. package/dist/src/components/index.d.ts +35 -0
  335. package/dist/src/components/info/InfoBox.d.ts +10 -0
  336. package/dist/src/components/info/index.d.ts +1 -0
  337. package/dist/src/components/input/Autocomplete.d.ts +118 -0
  338. package/dist/src/components/input/CalendarDay.d.ts +17 -0
  339. package/dist/src/components/input/CalendarMonth.d.ts +19 -0
  340. package/dist/src/components/input/CalendarScrollPicker.d.ts +17 -0
  341. package/dist/src/components/input/CategorizedPicker.d.ts +22 -0
  342. package/dist/src/components/input/Checkbox.d.ts +39 -0
  343. package/dist/src/components/input/CodeEditor.d.ts +29 -0
  344. package/dist/src/components/input/CodeEditorPopup.d.ts +18 -0
  345. package/dist/src/components/input/ColorPicker.d.ts +62 -0
  346. package/dist/src/components/input/DateIntervalPicker.d.ts +84 -0
  347. package/dist/src/components/input/DateIntervalPickerInputs.d.ts +18 -0
  348. package/dist/src/components/input/DateIntervalPickerList.d.ts +35 -0
  349. package/dist/src/components/input/DateIntervalPickerPopover.d.ts +32 -0
  350. package/dist/src/components/input/DatePicker.d.ts +59 -0
  351. package/dist/src/components/input/DatePickerPopover.d.ts +10 -0
  352. package/dist/src/components/input/DatePickerStatic.d.ts +9 -0
  353. package/dist/src/components/input/DaysOfWeekPicker.d.ts +11 -0
  354. package/dist/src/components/input/DaysOfWeekRow.d.ts +3 -0
  355. package/dist/src/components/input/DebouncedTextField.d.ts +18 -0
  356. package/dist/src/components/input/InputHelperText.d.ts +29 -0
  357. package/dist/src/components/input/InputLabel.d.ts +47 -0
  358. package/dist/src/components/input/ItemSelector.d.ts +27 -0
  359. package/dist/src/components/input/NumberField.d.ts +106 -0
  360. package/dist/src/components/input/PageSelector.d.ts +30 -0
  361. package/dist/src/components/input/PhoneField.d.ts +43 -0
  362. package/dist/src/components/input/Radio.d.ts +49 -0
  363. package/dist/src/components/input/Select.d.ts +89 -0
  364. package/dist/src/components/input/SelectPopover.d.ts +107 -0
  365. package/dist/src/components/input/SelectPopoverItem.d.ts +17 -0
  366. package/dist/src/components/input/Switch.d.ts +22 -0
  367. package/dist/src/components/input/Switch.theme.d.ts +2 -0
  368. package/dist/src/components/input/TextEditor.d.ts +123 -0
  369. package/dist/src/components/input/TextField.d.ts +156 -0
  370. package/dist/src/components/input/TextFieldContainer.d.ts +95 -0
  371. package/dist/src/components/input/TimeField.d.ts +20 -0
  372. package/dist/src/components/input/TimezoneSelector.d.ts +7 -0
  373. package/dist/src/components/input/UploadClickableArea.d.ts +14 -0
  374. package/dist/src/components/input/index.d.ts +26 -0
  375. package/dist/src/components/layout/Box.d.ts +2 -0
  376. package/dist/src/components/layout/Collapse.d.ts +5 -0
  377. package/dist/src/components/layout/CollapsiblePanel.d.ts +48 -0
  378. package/dist/src/components/layout/CollapsiblePanelSwitcher.d.ts +87 -0
  379. package/dist/src/components/layout/Container.d.ts +5 -0
  380. package/dist/src/components/layout/Container.theme.d.ts +2 -0
  381. package/dist/src/components/layout/Grid.d.ts +8 -0
  382. package/dist/src/components/layout/LazyLoad.d.ts +5 -0
  383. package/dist/src/components/layout/PageScrollContext.d.ts +5 -0
  384. package/dist/src/components/layout/PageWithHeader.d.ts +13 -0
  385. package/dist/src/components/layout/PageWithNavbar.d.ts +13 -0
  386. package/dist/src/components/layout/PageWithSidePanel.d.ts +17 -0
  387. package/dist/src/components/layout/PageWithToolBox.d.ts +17 -0
  388. package/dist/src/components/layout/PageWithToolbar.d.ts +18 -0
  389. package/dist/src/components/layout/Paper.d.ts +13 -0
  390. package/dist/src/components/layout/SidePanel.d.ts +7 -0
  391. package/dist/src/components/layout/Stack.d.ts +2 -0
  392. package/dist/src/components/layout/Stepper.d.ts +23 -0
  393. package/dist/src/components/layout/ToolBox.d.ts +12 -0
  394. package/dist/src/components/layout/index.d.ts +17 -0
  395. package/dist/src/components/list/BaseListItem.d.ts +70 -0
  396. package/dist/src/components/list/List.d.ts +5 -0
  397. package/dist/src/components/list/ListItem.d.ts +16 -0
  398. package/dist/src/components/list/ListItemButton.d.ts +42 -0
  399. package/dist/src/components/list/ListItemText.d.ts +17 -0
  400. package/dist/src/components/list/index.d.ts +3 -0
  401. package/dist/src/components/loader/Loader.d.ts +32 -0
  402. package/dist/src/components/loader/index.d.ts +1 -0
  403. package/dist/src/components/navbar/Navbar.d.ts +41 -0
  404. package/dist/src/components/navbar/NavbarButton.d.ts +39 -0
  405. package/dist/src/components/navbar/NavbarHeader.d.ts +12 -0
  406. package/dist/src/components/navbar/NavbarLogo.d.ts +16 -0
  407. package/dist/src/components/navbar/index.d.ts +4 -0
  408. package/dist/src/components/overlay/DonutFocusOverlay.d.ts +11 -0
  409. package/dist/src/components/overlay/index.d.ts +1 -0
  410. package/dist/src/components/pager/Pager.d.ts +31 -0
  411. package/dist/src/components/pager/index.d.ts +1 -0
  412. package/dist/src/components/popover/Popover.d.ts +26 -0
  413. package/dist/src/components/popover/Popover.theme.d.ts +2 -0
  414. package/dist/src/components/popover/PopoverActions.d.ts +21 -0
  415. package/dist/src/components/popover/index.d.ts +2 -0
  416. package/dist/src/components/progress/CircularProgress.d.ts +35 -0
  417. package/dist/src/components/progress/LinearProgress.d.ts +19 -0
  418. package/dist/src/components/progress/LinearProgress.theme.d.ts +2 -0
  419. package/dist/src/components/progress/index.d.ts +2 -0
  420. package/dist/src/components/scrollable/HorizontalScrollable.d.ts +18 -0
  421. package/dist/src/components/scrollable/index.d.ts +1 -0
  422. package/dist/src/components/skeleton/Skeleton.d.ts +8 -0
  423. package/dist/src/components/skeleton/index.d.ts +1 -0
  424. package/dist/src/components/snackbar/Snackbar.d.ts +52 -0
  425. package/dist/src/components/snackbar/SnackbarProvider.d.ts +10 -0
  426. package/dist/src/components/snackbar/enqueueSnackbar.d.ts +27 -0
  427. package/dist/src/components/snackbar/index.d.ts +3 -0
  428. package/dist/src/components/tab/TabButton.d.ts +30 -0
  429. package/dist/src/components/tab/TabContent.d.ts +7 -0
  430. package/dist/src/components/tab/Tabs.d.ts +52 -0
  431. package/dist/src/components/tab/Tabs.theme.d.ts +2 -0
  432. package/dist/src/components/tab/index.d.ts +3 -0
  433. package/dist/src/components/table/NestedTable.d.ts +29 -0
  434. package/dist/src/components/table/Table.d.ts +5 -0
  435. package/dist/src/components/table/Table.theme.d.ts +2 -0
  436. package/dist/src/components/table/TableBody.d.ts +4 -0
  437. package/dist/src/components/table/TableCell.d.ts +20 -0
  438. package/dist/src/components/table/TableCell.theme.d.ts +2 -0
  439. package/dist/src/components/table/TableCellCopy.d.ts +10 -0
  440. package/dist/src/components/table/TableDivider.d.ts +3 -0
  441. package/dist/src/components/table/TableHead.d.ts +4 -0
  442. package/dist/src/components/table/TableRow.d.ts +9 -0
  443. package/dist/src/components/table/TableSortLabel.d.ts +8 -0
  444. package/dist/src/components/table/index.d.ts +9 -0
  445. package/dist/src/components/toolbar/Toolbar.d.ts +24 -0
  446. package/dist/src/components/toolbar/ToolbarBreadcrumb.d.ts +15 -0
  447. package/dist/src/components/toolbar/ToolbarBreadcrumbButton.d.ts +11 -0
  448. package/dist/src/components/toolbar/ToolbarTitle.d.ts +27 -0
  449. package/dist/src/components/toolbar/index.d.ts +4 -0
  450. package/dist/src/components/tooltip/TextEllipsis.d.ts +18 -0
  451. package/dist/src/components/tooltip/TextEllipsisTooltip.d.ts +27 -0
  452. package/dist/src/components/tooltip/Tooltip.d.ts +59 -0
  453. package/dist/src/components/tooltip/Tooltip.theme.d.ts +2 -0
  454. package/dist/src/components/tooltip/TooltipMenu.d.ts +35 -0
  455. package/dist/src/components/tooltip/index.d.ts +4 -0
  456. package/dist/src/components/transition/Slide.d.ts +3 -0
  457. package/dist/src/components/transition/index.d.ts +1 -0
  458. package/dist/src/components/typography/TextMarker.d.ts +32 -0
  459. package/dist/src/components/typography/Typography.d.ts +39 -0
  460. package/dist/src/components/typography/index.d.ts +2 -0
  461. package/dist/src/components/widget/Widget.d.ts +7 -0
  462. package/dist/src/components/widget/WidgetActions.d.ts +8 -0
  463. package/dist/src/components/widget/WidgetLegendItem.d.ts +65 -0
  464. package/dist/src/components/widget/WidgetTitle.d.ts +23 -0
  465. package/dist/src/components/widget/index.d.ts +4 -0
  466. package/dist/src/components/window/MinimizableWindow.d.ts +98 -0
  467. package/dist/src/components/window/index.d.ts +1 -0
  468. package/dist/src/contexts/IntlContext.d.ts +7 -0
  469. package/dist/src/contexts/index.d.ts +1 -0
  470. package/dist/src/hooks/index.d.ts +3 -0
  471. package/dist/src/hooks/useDebouncedCallback.d.ts +1 -0
  472. package/dist/src/hooks/useFormatters.d.ts +8 -0
  473. package/dist/src/hooks/useResizeObserver.d.ts +7 -0
  474. package/dist/src/i18n/TranslationKey.d.ts +11 -0
  475. package/dist/src/i18n/en.d.ts +202 -0
  476. package/dist/src/i18n/es.d.ts +202 -0
  477. package/dist/src/i18n/fr.d.ts +202 -0
  478. package/dist/src/i18n/it.d.ts +202 -0
  479. package/dist/src/i18n/pt.d.ts +202 -0
  480. package/dist/src/i18n/translate.d.ts +4 -0
  481. package/dist/src/index.d.ts +6 -0
  482. package/dist/src/models/ComparisonInterval.d.ts +1 -0
  483. package/dist/src/models/DateInputFormat.d.ts +4 -0
  484. package/dist/src/models/DateInterval.d.ts +1 -0
  485. package/dist/src/models/SimpleDate.d.ts +8 -0
  486. package/dist/src/propTypes/IncrementLabel.d.ts +15 -0
  487. package/dist/src/propTypes/index.d.ts +1 -0
  488. package/dist/src/stories/alert/Alert.stories.d.ts +6 -0
  489. package/dist/src/stories/avatar/Avatar.stories.d.ts +31 -0
  490. package/dist/src/stories/avatar/AvatarCard.stories.d.ts +8 -0
  491. package/dist/src/stories/avatar/AvatarMultiple.stories.d.ts +13 -0
  492. package/dist/src/stories/button/BadgeToggleButton.stories.d.ts +5 -0
  493. package/dist/src/stories/button/Button.stories.d.ts +33 -0
  494. package/dist/src/stories/button/ButtonGroup.stories.d.ts +6 -0
  495. package/dist/src/stories/button/ButtonWithActions.stories.d.ts +45 -0
  496. package/dist/src/stories/button/IconButton.stories.d.ts +17 -0
  497. package/dist/src/stories/button/IconToggleButton.stories.d.ts +15 -0
  498. package/dist/src/stories/button/MenuButton.stories.d.ts +13 -0
  499. package/dist/src/stories/button/MenuIconButton.stories.d.ts +23 -0
  500. package/dist/src/stories/button/ToggleButton.stories.d.ts +6 -0
  501. package/dist/src/stories/button/ToggleButtonGroup.stories.d.ts +6 -0
  502. package/dist/src/stories/button/UploadButton.stories.d.ts +11 -0
  503. package/dist/src/stories/card/Card.stories.d.ts +6 -0
  504. package/dist/src/stories/card/CardActions.stories.d.ts +6 -0
  505. package/dist/src/stories/card/CardChips.stories.d.ts +6 -0
  506. package/dist/src/stories/card/CardDescription.stories.d.ts +6 -0
  507. package/dist/src/stories/card/CardImage.stories.d.ts +6 -0
  508. package/dist/src/stories/card/CardStatus.stories.d.ts +6 -0
  509. package/dist/src/stories/card/CardTable.stories.d.ts +6 -0
  510. package/dist/src/stories/card/CardTitle.stories.d.ts +6 -0
  511. package/dist/src/stories/card/CardTitleWithIcon.stories.d.ts +6 -0
  512. package/dist/src/stories/card/EnhancedCard.stories.d.ts +6 -0
  513. package/dist/src/stories/chart/BarChart.stories.d.ts +9 -0
  514. package/dist/src/stories/chart/DonutChart.stories.d.ts +11 -0
  515. package/dist/src/stories/chart/FunnelChart.stories.d.ts +9 -0
  516. package/dist/src/stories/chart/IncrementLabel.stories.d.ts +7 -0
  517. package/dist/src/stories/chart/LineChart.stories.d.ts +10 -0
  518. package/dist/src/stories/chart/MicroPieChart.stories.d.ts +6 -0
  519. package/dist/src/stories/chart/RankingChart.stories.d.ts +8 -0
  520. package/dist/src/stories/chart/WeekChart.stories.d.ts +9 -0
  521. package/dist/src/stories/chat/Chat.stories.d.ts +7 -0
  522. package/dist/src/stories/chat/ChatMessage.stories.d.ts +8 -0
  523. package/dist/src/stories/chip/Chip.stories.d.ts +131 -0
  524. package/dist/src/stories/chip/ChipList.stories.d.ts +6 -0
  525. package/dist/src/stories/chip/MenuChip.stories.d.ts +13 -0
  526. package/dist/src/stories/dialog/ConformationDialog.stories.d.ts +7 -0
  527. package/dist/src/stories/dialog/Dialog.stories.d.ts +7 -0
  528. package/dist/src/stories/divider/Divider.stories.d.ts +6 -0
  529. package/dist/src/stories/drawer/Drawer.stories.d.ts +6 -0
  530. package/dist/src/stories/drawer/InputDrawer.stories.d.ts +6 -0
  531. package/dist/src/stories/formatter/CompactNumberFormatter.stories.d.ts +6 -0
  532. package/dist/src/stories/formatter/CurrencyFormatter.stories.d.ts +6 -0
  533. package/dist/src/stories/formatter/DateFormatter.stories.d.ts +6 -0
  534. package/dist/src/stories/formatter/NumberFormatter.stories.d.ts +6 -0
  535. package/dist/src/stories/formatter/PercentageFormatter.stories.d.ts +6 -0
  536. package/dist/src/stories/header/Header.stories.d.ts +6 -0
  537. package/dist/src/stories/header/HeaderSubtitle.stories.d.ts +6 -0
  538. package/dist/src/stories/header/HeaderTitle.stories.d.ts +6 -0
  539. package/dist/src/stories/icon/Icon.stories.d.ts +12 -0
  540. package/dist/src/stories/icon/StackedIcons.stories.d.ts +6 -0
  541. package/dist/src/stories/image/ImageEditor.stories.d.ts +6 -0
  542. package/dist/src/stories/info/InfoBox.stories.d.ts +6 -0
  543. package/dist/src/stories/input/Autocomplete.stories.d.ts +11 -0
  544. package/dist/src/stories/input/CategorizedPicker.stories.d.ts +9 -0
  545. package/dist/src/stories/input/Checkbox.stories.d.ts +6 -0
  546. package/dist/src/stories/input/CodeEditor.stories.d.ts +6 -0
  547. package/dist/src/stories/input/ColorPicker.stories.d.ts +6 -0
  548. package/dist/src/stories/input/DateIntervalPicker.stories.d.ts +6 -0
  549. package/dist/src/stories/input/DatePicker.stories.d.ts +13 -0
  550. package/dist/src/stories/input/DaysOfWeekPicker.stories.d.ts +6 -0
  551. package/dist/src/stories/input/DebouncedTextField.stories.d.ts +8 -0
  552. package/dist/src/stories/input/InputHelperText.stories.d.ts +11 -0
  553. package/dist/src/stories/input/InputLabel.stories.d.ts +13 -0
  554. package/dist/src/stories/input/ItemSelector.stories.d.ts +6 -0
  555. package/dist/src/stories/input/NumberField.stories.d.ts +18 -0
  556. package/dist/src/stories/input/PageSelector.stories.d.ts +6 -0
  557. package/dist/src/stories/input/PhoneField.stories.d.ts +11 -0
  558. package/dist/src/stories/input/Radio.stories.d.ts +6 -0
  559. package/dist/src/stories/input/Select.stories.d.ts +23 -0
  560. package/dist/src/stories/input/SelectPopover.stories.d.ts +9 -0
  561. package/dist/src/stories/input/Switch.stories.d.ts +6 -0
  562. package/dist/src/stories/input/TextEditor.stories.d.ts +6 -0
  563. package/dist/src/stories/input/TextField.stories.d.ts +10 -0
  564. package/dist/src/stories/input/TextFieldContainer.stories.d.ts +20 -0
  565. package/dist/src/stories/input/TimeField.stories.d.ts +6 -0
  566. package/dist/src/stories/input/TimezoneSelector.stories.d.ts +6 -0
  567. package/dist/src/stories/input/UploadClickableArea.stories.d.ts +5 -0
  568. package/dist/src/stories/layout/CollapsiblePanel.stories.d.ts +6 -0
  569. package/dist/src/stories/layout/CollapsiblePanelSwitcher.stories.d.ts +7 -0
  570. package/dist/src/stories/layout/Container.stories.d.ts +6 -0
  571. package/dist/src/stories/layout/Grid.stories.d.ts +6 -0
  572. package/dist/src/stories/layout/LazyLoad.stories.d.ts +6 -0
  573. package/dist/src/stories/layout/PageWIthNavbar.stories.d.ts +10 -0
  574. package/dist/src/stories/layout/PageWIthSidePanel.stories.d.ts +8 -0
  575. package/dist/src/stories/layout/PageWIthToolBox.stories.d.ts +8 -0
  576. package/dist/src/stories/layout/PageWithHeader.stories.d.ts +6 -0
  577. package/dist/src/stories/layout/PageWithToolbar.stories.d.ts +6 -0
  578. package/dist/src/stories/layout/Paper.stories.d.ts +6 -0
  579. package/dist/src/stories/layout/SidePanel.stories.d.ts +6 -0
  580. package/dist/src/stories/layout/Stepper.stories.d.ts +6 -0
  581. package/dist/src/stories/layout/ToolBox.stories.d.ts +6 -0
  582. package/dist/src/stories/list/List.stories.d.ts +6 -0
  583. package/dist/src/stories/list/ListItem.stories.d.ts +28 -0
  584. package/dist/src/stories/list/ListItemButton.stories.d.ts +57 -0
  585. package/dist/src/stories/loader/Loader.stories.d.ts +8 -0
  586. package/dist/src/stories/navbar/Navbar.stories.d.ts +6 -0
  587. package/dist/src/stories/overlay/DonutFocusOverlay.stories.d.ts +6 -0
  588. package/dist/src/stories/pager/Pager.stories.d.ts +6 -0
  589. package/dist/src/stories/popover/Popover.stories.d.ts +6 -0
  590. package/dist/src/stories/progress/CircularProgress.stories.d.ts +9 -0
  591. package/dist/src/stories/progress/LinearProgress.stories.d.ts +9 -0
  592. package/dist/src/stories/scrollable/HorizontalScrollable.stories.d.ts +6 -0
  593. package/dist/src/stories/skeleton/Skeleton.stories.d.ts +33 -0
  594. package/dist/src/stories/snackbar/Snackbar.stories.d.ts +10 -0
  595. package/dist/src/stories/tab/TabButton.stories.d.ts +5 -0
  596. package/dist/src/stories/tab/Tabs.stories.d.ts +5 -0
  597. package/dist/src/stories/table/NestedTable.stories.d.ts +6 -0
  598. package/dist/src/stories/table/Table.stories.d.ts +7 -0
  599. package/dist/src/stories/text-ellipsis/TextEllipsis.stories.d.ts +6 -0
  600. package/dist/src/stories/toolbar/Toolbar.stories.d.ts +9 -0
  601. package/dist/src/stories/toolbar/ToolbarBreadcrumb.stories.d.ts +6 -0
  602. package/dist/src/stories/toolbar/ToolbarTitle.stories.d.ts +6 -0
  603. package/dist/src/stories/tooltip/Tooltip.stories.d.ts +7 -0
  604. package/dist/src/stories/tooltip/TooltipMenu.stories.d.ts +6 -0
  605. package/dist/src/stories/typography/TextMarker.stories.d.ts +6 -0
  606. package/dist/src/stories/typography/Typography.stories.d.ts +11 -0
  607. package/dist/src/stories/utils/StoryUtilities.d.ts +2 -0
  608. package/dist/src/stories/widget/Widget.stories.d.ts +6 -0
  609. package/dist/src/stories/widget/WidgetActions.stories.d.ts +6 -0
  610. package/dist/src/stories/widget/WidgetLegendItem.stories.d.ts +7 -0
  611. package/dist/src/stories/widget/WidgetTitle.stories.d.ts +6 -0
  612. package/dist/src/stories/window/MinimizableWindow.stories.d.ts +25 -0
  613. package/dist/src/theme/Animations.d.ts +3 -0
  614. package/dist/src/theme/Breakpoints.d.ts +11 -0
  615. package/dist/src/theme/Colors.d.ts +90 -0
  616. package/dist/src/theme/GlobalStyles.d.ts +3 -0
  617. package/dist/src/theme/Palettes.d.ts +4 -0
  618. package/dist/src/theme/Shadows.d.ts +2 -0
  619. package/dist/src/theme/Theme.d.ts +1 -0
  620. package/dist/src/theme/Typography.d.ts +97 -0
  621. package/dist/src/theme/index.d.ts +7 -0
  622. package/dist/src/utils/ChartUtils.d.ts +23 -0
  623. package/dist/src/utils/CurrencyFormatter.d.ts +1 -0
  624. package/dist/src/utils/DateUtils.d.ts +45 -0
  625. package/dist/src/utils/NumberFormatter.d.ts +2 -0
  626. package/dist/src/utils/PercentageFormatter.d.ts +1 -0
  627. package/dist/src/utils/PhoneUtils.d.ts +11 -0
  628. package/dist/src/utils/RegExpUtils.d.ts +1 -0
  629. package/dist/src/utils/ResizeObserverUtils.d.ts +1 -0
  630. package/dist/src/utils/index.d.ts +5 -0
  631. package/dist/test/Setup.d.ts +1 -0
  632. package/dist/test/TestUtils.d.ts +3 -0
  633. package/dist/test/unit/components/button/Button.spec.d.ts +1 -0
  634. package/dist/test/unit/components/button/MenuButton.spec.d.ts +1 -0
  635. package/dist/test/unit/components/formatter/CurrencyFormatter.spec.d.ts +1 -0
  636. package/dist/test/unit/components/formatter/DateFormatter.spec.d.ts +1 -0
  637. package/dist/test/unit/components/formatter/NumberFormatter.spec.d.ts +1 -0
  638. package/dist/test/unit/components/formatter/PercentageFormatter.spec.d.ts +1 -0
  639. package/dist/test/unit/components/input/DateIntervalPicker.spec.d.ts +1 -0
  640. package/dist/test/unit/components/input/DatePicker.spec.d.ts +1 -0
  641. package/dist/test/unit/components/input/NumberField.spec.d.ts +1 -0
  642. package/dist/test/unit/components/input/PhoneField.spec.d.ts +1 -0
  643. package/dist/test/unit/components/input/TextField.spec.d.ts +1 -0
  644. package/dist/test/unit/components/input/__mocks__/react-virtualized-auto-sizer.d.ts +4 -0
  645. package/dist/test/unit/components/list/ListItemButton.spec.d.ts +1 -0
  646. package/dist/test/unit/components/tab/Tabs.spec.d.ts +1 -0
  647. package/dist/test/unit/components/tooltop/Tooltip.spec.d.ts +1 -0
  648. package/dist/test/unit/components/widget/WidgetLegendItem.spec.d.ts +1 -0
  649. package/dist/test/unit/i18n/translate.spec.d.ts +1 -0
  650. package/dist/test/unit/utils/DateUtils.spec.d.ts +1 -0
  651. package/dist/theme/Animations.d.ts +3 -0
  652. package/dist/theme/Breakpoints.d.ts +11 -0
  653. package/dist/theme/Colors.d.ts +90 -0
  654. package/dist/theme/GlobalStyles.d.ts +3 -0
  655. package/dist/theme/Palettes.d.ts +4 -0
  656. package/dist/theme/Shadows.d.ts +2 -0
  657. package/dist/theme/Theme.d.ts +1 -0
  658. package/dist/theme/Typography.d.ts +97 -0
  659. package/dist/theme/index.d.ts +7 -0
  660. package/dist/tinymce/icons/default/icons.js +194 -0
  661. package/dist/tinymce/icons/default/icons.min.js +1 -0
  662. package/dist/tinymce/icons/default/index.js +7 -0
  663. package/dist/tinymce/models/dom/index.js +7 -0
  664. package/dist/tinymce/models/dom/model.js +8040 -0
  665. package/dist/tinymce/models/dom/model.min.js +4 -0
  666. package/dist/tinymce/plugins/accordion/index.js +7 -0
  667. package/dist/tinymce/plugins/accordion/plugin.js +1054 -0
  668. package/dist/tinymce/plugins/accordion/plugin.min.js +4 -0
  669. package/dist/tinymce/plugins/advlist/index.js +7 -0
  670. package/dist/tinymce/plugins/advlist/plugin.js +259 -0
  671. package/dist/tinymce/plugins/advlist/plugin.min.js +4 -0
  672. package/dist/tinymce/plugins/anchor/index.js +7 -0
  673. package/dist/tinymce/plugins/anchor/plugin.js +214 -0
  674. package/dist/tinymce/plugins/anchor/plugin.min.js +4 -0
  675. package/dist/tinymce/plugins/autolink/index.js +7 -0
  676. package/dist/tinymce/plugins/autolink/plugin.js +228 -0
  677. package/dist/tinymce/plugins/autolink/plugin.min.js +4 -0
  678. package/dist/tinymce/plugins/autoresize/index.js +7 -0
  679. package/dist/tinymce/plugins/autoresize/plugin.js +192 -0
  680. package/dist/tinymce/plugins/autoresize/plugin.min.js +4 -0
  681. package/dist/tinymce/plugins/autosave/index.js +7 -0
  682. package/dist/tinymce/plugins/autosave/plugin.js +233 -0
  683. package/dist/tinymce/plugins/autosave/plugin.min.js +4 -0
  684. package/dist/tinymce/plugins/charmap/index.js +7 -0
  685. package/dist/tinymce/plugins/charmap/plugin.js +1658 -0
  686. package/dist/tinymce/plugins/charmap/plugin.min.js +4 -0
  687. package/dist/tinymce/plugins/code/index.js +7 -0
  688. package/dist/tinymce/plugins/code/plugin.js +85 -0
  689. package/dist/tinymce/plugins/code/plugin.min.js +4 -0
  690. package/dist/tinymce/plugins/codesample/index.js +7 -0
  691. package/dist/tinymce/plugins/codesample/plugin.js +2463 -0
  692. package/dist/tinymce/plugins/codesample/plugin.min.js +4 -0
  693. package/dist/tinymce/plugins/directionality/index.js +7 -0
  694. package/dist/tinymce/plugins/directionality/plugin.js +395 -0
  695. package/dist/tinymce/plugins/directionality/plugin.min.js +4 -0
  696. package/dist/tinymce/plugins/emoticons/index.js +7 -0
  697. package/dist/tinymce/plugins/emoticons/js/emojiimages.js +1 -0
  698. package/dist/tinymce/plugins/emoticons/js/emojiimages.min.js +3 -0
  699. package/dist/tinymce/plugins/emoticons/js/emojis.js +1 -0
  700. package/dist/tinymce/plugins/emoticons/js/emojis.min.js +2 -0
  701. package/dist/tinymce/plugins/emoticons/plugin.js +595 -0
  702. package/dist/tinymce/plugins/emoticons/plugin.min.js +4 -0
  703. package/dist/tinymce/plugins/fullscreen/index.js +7 -0
  704. package/dist/tinymce/plugins/fullscreen/plugin.js +1249 -0
  705. package/dist/tinymce/plugins/fullscreen/plugin.min.js +4 -0
  706. package/dist/tinymce/plugins/help/index.js +7 -0
  707. package/dist/tinymce/plugins/help/js/i18n/keynav/ar.js +90 -0
  708. package/dist/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +90 -0
  709. package/dist/tinymce/plugins/help/js/i18n/keynav/ca.js +90 -0
  710. package/dist/tinymce/plugins/help/js/i18n/keynav/cs.js +90 -0
  711. package/dist/tinymce/plugins/help/js/i18n/keynav/da.js +90 -0
  712. package/dist/tinymce/plugins/help/js/i18n/keynav/de.js +90 -0
  713. package/dist/tinymce/plugins/help/js/i18n/keynav/el.js +90 -0
  714. package/dist/tinymce/plugins/help/js/i18n/keynav/en.js +90 -0
  715. package/dist/tinymce/plugins/help/js/i18n/keynav/es.js +90 -0
  716. package/dist/tinymce/plugins/help/js/i18n/keynav/eu.js +90 -0
  717. package/dist/tinymce/plugins/help/js/i18n/keynav/fa.js +90 -0
  718. package/dist/tinymce/plugins/help/js/i18n/keynav/fi.js +90 -0
  719. package/dist/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +90 -0
  720. package/dist/tinymce/plugins/help/js/i18n/keynav/he_IL.js +90 -0
  721. package/dist/tinymce/plugins/help/js/i18n/keynav/hi.js +90 -0
  722. package/dist/tinymce/plugins/help/js/i18n/keynav/hr.js +90 -0
  723. package/dist/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +90 -0
  724. package/dist/tinymce/plugins/help/js/i18n/keynav/id.js +90 -0
  725. package/dist/tinymce/plugins/help/js/i18n/keynav/it.js +90 -0
  726. package/dist/tinymce/plugins/help/js/i18n/keynav/ja.js +90 -0
  727. package/dist/tinymce/plugins/help/js/i18n/keynav/kk.js +90 -0
  728. package/dist/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +90 -0
  729. package/dist/tinymce/plugins/help/js/i18n/keynav/ms.js +90 -0
  730. package/dist/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +90 -0
  731. package/dist/tinymce/plugins/help/js/i18n/keynav/nl.js +90 -0
  732. package/dist/tinymce/plugins/help/js/i18n/keynav/pl.js +90 -0
  733. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +90 -0
  734. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +90 -0
  735. package/dist/tinymce/plugins/help/js/i18n/keynav/ro.js +90 -0
  736. package/dist/tinymce/plugins/help/js/i18n/keynav/ru.js +90 -0
  737. package/dist/tinymce/plugins/help/js/i18n/keynav/sk.js +90 -0
  738. package/dist/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +90 -0
  739. package/dist/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +90 -0
  740. package/dist/tinymce/plugins/help/js/i18n/keynav/th_TH.js +90 -0
  741. package/dist/tinymce/plugins/help/js/i18n/keynav/tr.js +90 -0
  742. package/dist/tinymce/plugins/help/js/i18n/keynav/uk.js +90 -0
  743. package/dist/tinymce/plugins/help/js/i18n/keynav/vi.js +90 -0
  744. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +84 -0
  745. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +90 -0
  746. package/dist/tinymce/plugins/help/plugin.js +898 -0
  747. package/dist/tinymce/plugins/help/plugin.min.js +4 -0
  748. package/dist/tinymce/plugins/image/index.js +7 -0
  749. package/dist/tinymce/plugins/image/plugin.js +1505 -0
  750. package/dist/tinymce/plugins/image/plugin.min.js +4 -0
  751. package/dist/tinymce/plugins/importcss/index.js +7 -0
  752. package/dist/tinymce/plugins/importcss/plugin.js +344 -0
  753. package/dist/tinymce/plugins/importcss/plugin.min.js +4 -0
  754. package/dist/tinymce/plugins/insertdatetime/index.js +7 -0
  755. package/dist/tinymce/plugins/insertdatetime/plugin.js +187 -0
  756. package/dist/tinymce/plugins/insertdatetime/plugin.min.js +4 -0
  757. package/dist/tinymce/plugins/link/index.js +7 -0
  758. package/dist/tinymce/plugins/link/plugin.js +1242 -0
  759. package/dist/tinymce/plugins/link/plugin.min.js +4 -0
  760. package/dist/tinymce/plugins/lists/index.js +7 -0
  761. package/dist/tinymce/plugins/lists/plugin.js +2172 -0
  762. package/dist/tinymce/plugins/lists/plugin.min.js +4 -0
  763. package/dist/tinymce/plugins/media/index.js +7 -0
  764. package/dist/tinymce/plugins/media/plugin.js +1217 -0
  765. package/dist/tinymce/plugins/media/plugin.min.js +4 -0
  766. package/dist/tinymce/plugins/nonbreaking/index.js +7 -0
  767. package/dist/tinymce/plugins/nonbreaking/plugin.js +123 -0
  768. package/dist/tinymce/plugins/nonbreaking/plugin.min.js +4 -0
  769. package/dist/tinymce/plugins/pagebreak/index.js +7 -0
  770. package/dist/tinymce/plugins/pagebreak/plugin.js +117 -0
  771. package/dist/tinymce/plugins/pagebreak/plugin.min.js +4 -0
  772. package/dist/tinymce/plugins/preview/index.js +7 -0
  773. package/dist/tinymce/plugins/preview/plugin.js +97 -0
  774. package/dist/tinymce/plugins/preview/plugin.min.js +4 -0
  775. package/dist/tinymce/plugins/quickbars/index.js +7 -0
  776. package/dist/tinymce/plugins/quickbars/plugin.js +447 -0
  777. package/dist/tinymce/plugins/quickbars/plugin.min.js +4 -0
  778. package/dist/tinymce/plugins/save/index.js +7 -0
  779. package/dist/tinymce/plugins/save/plugin.js +118 -0
  780. package/dist/tinymce/plugins/save/plugin.min.js +4 -0
  781. package/dist/tinymce/plugins/searchreplace/index.js +7 -0
  782. package/dist/tinymce/plugins/searchreplace/plugin.js +1093 -0
  783. package/dist/tinymce/plugins/searchreplace/plugin.min.js +4 -0
  784. package/dist/tinymce/plugins/table/index.js +7 -0
  785. package/dist/tinymce/plugins/table/plugin.js +3462 -0
  786. package/dist/tinymce/plugins/table/plugin.min.js +4 -0
  787. package/dist/tinymce/plugins/template/index.js +7 -0
  788. package/dist/tinymce/plugins/template/plugin.js +567 -0
  789. package/dist/tinymce/plugins/template/plugin.min.js +4 -0
  790. package/dist/tinymce/plugins/visualblocks/index.js +7 -0
  791. package/dist/tinymce/plugins/visualblocks/plugin.js +98 -0
  792. package/dist/tinymce/plugins/visualblocks/plugin.min.js +4 -0
  793. package/dist/tinymce/plugins/visualchars/index.js +7 -0
  794. package/dist/tinymce/plugins/visualchars/plugin.js +560 -0
  795. package/dist/tinymce/plugins/visualchars/plugin.min.js +4 -0
  796. package/dist/tinymce/plugins/wordcount/index.js +7 -0
  797. package/dist/tinymce/plugins/wordcount/plugin.js +405 -0
  798. package/dist/tinymce/plugins/wordcount/plugin.min.js +4 -0
  799. package/dist/tinymce/skins/content/dark/content.css +66 -0
  800. package/dist/tinymce/skins/content/dark/content.js +2 -0
  801. package/dist/tinymce/skins/content/dark/content.min.css +1 -0
  802. package/dist/tinymce/skins/content/default/content.css +61 -0
  803. package/dist/tinymce/skins/content/default/content.js +2 -0
  804. package/dist/tinymce/skins/content/default/content.min.css +1 -0
  805. package/dist/tinymce/skins/content/document/content.css +66 -0
  806. package/dist/tinymce/skins/content/document/content.js +2 -0
  807. package/dist/tinymce/skins/content/document/content.min.css +1 -0
  808. package/dist/tinymce/skins/content/tinymce-5/content.css +61 -0
  809. package/dist/tinymce/skins/content/tinymce-5/content.js +2 -0
  810. package/dist/tinymce/skins/content/tinymce-5/content.min.css +1 -0
  811. package/dist/tinymce/skins/content/tinymce-5-dark/content.css +66 -0
  812. package/dist/tinymce/skins/content/tinymce-5-dark/content.js +2 -0
  813. package/dist/tinymce/skins/content/tinymce-5-dark/content.min.css +1 -0
  814. package/dist/tinymce/skins/content/writer/content.css +62 -0
  815. package/dist/tinymce/skins/content/writer/content.js +2 -0
  816. package/dist/tinymce/skins/content/writer/content.min.css +1 -0
  817. package/dist/tinymce/skins/ui/oxide/content.css +785 -0
  818. package/dist/tinymce/skins/ui/oxide/content.inline.css +779 -0
  819. package/dist/tinymce/skins/ui/oxide/content.inline.js +2 -0
  820. package/dist/tinymce/skins/ui/oxide/content.inline.min.css +1 -0
  821. package/dist/tinymce/skins/ui/oxide/content.js +2 -0
  822. package/dist/tinymce/skins/ui/oxide/content.min.css +1 -0
  823. package/dist/tinymce/skins/ui/oxide/skin.css +3763 -0
  824. package/dist/tinymce/skins/ui/oxide/skin.js +2 -0
  825. package/dist/tinymce/skins/ui/oxide/skin.min.css +1 -0
  826. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.css +30 -0
  827. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.js +2 -0
  828. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -0
  829. package/dist/tinymce/skins/ui/oxide-dark/content.css +766 -0
  830. package/dist/tinymce/skins/ui/oxide-dark/content.inline.css +779 -0
  831. package/dist/tinymce/skins/ui/oxide-dark/content.inline.js +2 -0
  832. package/dist/tinymce/skins/ui/oxide-dark/content.inline.min.css +1 -0
  833. package/dist/tinymce/skins/ui/oxide-dark/content.js +2 -0
  834. package/dist/tinymce/skins/ui/oxide-dark/content.min.css +1 -0
  835. package/dist/tinymce/skins/ui/oxide-dark/skin.css +3766 -0
  836. package/dist/tinymce/skins/ui/oxide-dark/skin.js +2 -0
  837. package/dist/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
  838. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +30 -0
  839. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +2 -0
  840. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -0
  841. package/dist/tinymce/skins/ui/tinymce-5/content.css +785 -0
  842. package/dist/tinymce/skins/ui/tinymce-5/content.inline.css +779 -0
  843. package/dist/tinymce/skins/ui/tinymce-5/content.inline.js +2 -0
  844. package/dist/tinymce/skins/ui/tinymce-5/content.inline.min.css +1 -0
  845. package/dist/tinymce/skins/ui/tinymce-5/content.js +2 -0
  846. package/dist/tinymce/skins/ui/tinymce-5/content.min.css +1 -0
  847. package/dist/tinymce/skins/ui/tinymce-5/skin.css +3857 -0
  848. package/dist/tinymce/skins/ui/tinymce-5/skin.js +2 -0
  849. package/dist/tinymce/skins/ui/tinymce-5/skin.min.css +1 -0
  850. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +30 -0
  851. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +2 -0
  852. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -0
  853. package/dist/tinymce/skins/ui/tinymce-5-dark/content.css +766 -0
  854. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.css +779 -0
  855. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.js +2 -0
  856. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +1 -0
  857. package/dist/tinymce/skins/ui/tinymce-5-dark/content.js +2 -0
  858. package/dist/tinymce/skins/ui/tinymce-5-dark/content.min.css +1 -0
  859. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.css +3857 -0
  860. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.js +2 -0
  861. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -0
  862. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +30 -0
  863. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +2 -0
  864. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -0
  865. package/dist/tinymce/themes/silver/index.js +7 -0
  866. package/dist/tinymce/themes/silver/theme.js +30754 -0
  867. package/dist/tinymce/themes/silver/theme.min.js +4 -0
  868. package/dist/tinymce/tinymce.js +31757 -0
  869. package/dist/tinymce/tinymce.min.js +4 -0
  870. package/dist/tsconfig.build.tsbuildinfo +1 -0
  871. package/dist/tsconfig.tsbuildinfo +1 -0
  872. package/dist/utils/ChartUtils.d.ts +23 -0
  873. package/dist/utils/CurrencyFormatter.d.ts +1 -0
  874. package/dist/utils/DateUtils.d.ts +45 -0
  875. package/dist/utils/NumberFormatter.d.ts +2 -0
  876. package/dist/utils/PercentageFormatter.d.ts +1 -0
  877. package/dist/utils/PhoneUtils.d.ts +11 -0
  878. package/dist/utils/RegExpUtils.d.ts +1 -0
  879. package/dist/utils/ResizeObserverUtils.d.ts +1 -0
  880. package/dist/utils/index.d.ts +5 -0
  881. package/package.json +110 -0
@@ -0,0 +1,1002 @@
1
+ import * as React from 'react';
2
+ import { IconId, IconProps } from '../icon/Icon';
3
+ import { IconButtonProps } from '../button/IconButton';
4
+ import { variants } from '../../theme/Typography';
5
+ import { ChipProps as MuiChipProps } from '@mui/material/Chip';
6
+ import { AvatarProps } from '../avatar';
7
+ import { Link } from '@mui/material';
8
+ declare const variantStyles: {
9
+ default: {
10
+ backgroundColor: string;
11
+ color: string;
12
+ hoverBackgroundColor: string;
13
+ borderColor: string;
14
+ iconColor: string;
15
+ avatarColor: string;
16
+ };
17
+ primary: {
18
+ backgroundColor: string;
19
+ color: string;
20
+ hoverBackgroundColor: string;
21
+ borderColor: string;
22
+ iconColor: string;
23
+ avatarColor: string;
24
+ };
25
+ success: {
26
+ backgroundColor: string;
27
+ color: string;
28
+ hoverBackgroundColor: string;
29
+ borderColor: string;
30
+ iconColor: string;
31
+ avatarColor: string;
32
+ };
33
+ error: {
34
+ backgroundColor: string;
35
+ color: string;
36
+ hoverBackgroundColor: string;
37
+ borderColor: string;
38
+ iconColor: string;
39
+ avatarColor: string;
40
+ };
41
+ warning: {
42
+ backgroundColor: string;
43
+ color: string;
44
+ hoverBackgroundColor: string;
45
+ borderColor: string;
46
+ iconColor: string;
47
+ avatarColor: string;
48
+ };
49
+ dark: {
50
+ backgroundColor: string;
51
+ color: string;
52
+ hoverBackgroundColor: string;
53
+ borderColor: string;
54
+ iconColor: string;
55
+ avatarColor: string;
56
+ };
57
+ darker: {
58
+ backgroundColor: string;
59
+ color: string;
60
+ hoverBackgroundColor: string;
61
+ borderColor: string;
62
+ iconColor: string;
63
+ avatarColor: string;
64
+ };
65
+ black: {
66
+ backgroundColor: string;
67
+ color: string;
68
+ hoverBackgroundColor: string;
69
+ borderColor: string;
70
+ iconColor: string;
71
+ avatarColor: string;
72
+ };
73
+ };
74
+ declare const sizeStyles: {
75
+ XS: {
76
+ borderRadius: string;
77
+ height: string;
78
+ };
79
+ S: {
80
+ borderRadius: string;
81
+ height: string;
82
+ };
83
+ M: {
84
+ borderRadius: string;
85
+ height: string;
86
+ };
87
+ L: {
88
+ accentColor?: import("csstype").Property.AccentColor | undefined;
89
+ alignContent?: import("csstype").Property.AlignContent | undefined;
90
+ alignItems?: import("csstype").Property.AlignItems | undefined;
91
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
92
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
93
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
94
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
95
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
96
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
97
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
98
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
99
+ animationName?: import("csstype").Property.AnimationName | undefined;
100
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
101
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
102
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
103
+ appearance?: import("csstype").Property.Appearance | undefined;
104
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
105
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
106
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
107
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
108
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
109
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
110
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
111
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
112
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
113
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
114
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
115
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
116
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
117
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
118
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
119
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
120
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
121
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
122
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
123
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
124
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
125
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
126
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
127
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
128
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
129
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
130
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
131
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
132
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
133
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
134
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
135
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
136
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
137
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
138
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
139
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
140
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
141
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
142
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
143
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
144
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
145
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
146
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
147
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
148
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
149
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
150
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
151
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
152
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
153
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
154
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
155
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
156
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
157
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
158
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
159
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
160
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
161
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
162
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
163
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
164
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
165
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
166
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
167
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
168
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
169
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
170
+ breakInside?: import("csstype").Property.BreakInside | undefined;
171
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
172
+ caretColor?: import("csstype").Property.CaretColor | undefined;
173
+ clear?: import("csstype").Property.Clear | undefined;
174
+ clipPath?: import("csstype").Property.ClipPath | undefined;
175
+ color?: import("csstype").Property.Color | undefined;
176
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
177
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
178
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
179
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
180
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
181
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
182
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
183
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
184
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
185
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
186
+ contain?: import("csstype").Property.Contain | undefined;
187
+ content?: import("csstype").Property.Content | undefined;
188
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
189
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
190
+ counterReset?: import("csstype").Property.CounterReset | undefined;
191
+ counterSet?: import("csstype").Property.CounterSet | undefined;
192
+ cursor?: import("csstype").Property.Cursor | undefined;
193
+ direction?: import("csstype").Property.Direction | undefined;
194
+ display?: import("csstype").Property.Display | undefined;
195
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
196
+ filter?: import("csstype").Property.Filter | undefined;
197
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
198
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
199
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
200
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
201
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
202
+ float?: import("csstype").Property.Float | undefined;
203
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
204
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
205
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
206
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
207
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
208
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
209
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
210
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
211
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
212
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
213
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
214
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
215
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
216
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
217
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
218
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
219
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
220
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
221
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
222
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
223
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
224
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
225
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
226
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
227
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
228
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
229
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
230
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
231
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
232
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
233
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
234
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
235
+ height: import("csstype").Property.Height<string | number>;
236
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
237
+ hyphens?: import("csstype").Property.Hyphens | undefined;
238
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
239
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
240
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
241
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
242
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
243
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
244
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
245
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
246
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
247
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
248
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
249
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
250
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
251
+ isolation?: import("csstype").Property.Isolation | undefined;
252
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
253
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
254
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
255
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
256
+ left?: import("csstype").Property.Left<string | number> | undefined;
257
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
258
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
259
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
260
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
261
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
262
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
263
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
264
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
265
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
266
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
267
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
268
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
269
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
270
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
271
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
272
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
273
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
274
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
275
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
276
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
277
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
278
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
279
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
280
+ maskClip?: import("csstype").Property.MaskClip | undefined;
281
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
282
+ maskImage?: import("csstype").Property.MaskImage | undefined;
283
+ maskMode?: import("csstype").Property.MaskMode | undefined;
284
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
285
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
286
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
287
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
288
+ maskType?: import("csstype").Property.MaskType | undefined;
289
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
290
+ mathShift?: import("csstype").Property.MathShift | undefined;
291
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
292
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
293
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
294
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
295
+ maxLines?: import("csstype").Property.MaxLines | undefined;
296
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
297
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
298
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
299
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
300
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
301
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
302
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
303
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
304
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
305
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
306
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
307
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
308
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
309
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
310
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
311
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
312
+ opacity?: import("csstype").Property.Opacity | undefined;
313
+ order?: import("csstype").Property.Order | undefined;
314
+ orphans?: import("csstype").Property.Orphans | undefined;
315
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
316
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
317
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
318
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
319
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
320
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
321
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
322
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
323
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
324
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
325
+ overflowX?: import("csstype").Property.OverflowX | undefined;
326
+ overflowY?: import("csstype").Property.OverflowY | undefined;
327
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
328
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
329
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
330
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
331
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
332
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
333
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
334
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
335
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
336
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
337
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
338
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
339
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
340
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
341
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
342
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
343
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
344
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
345
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
346
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
347
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
348
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
349
+ position?: import("csstype").Property.Position | undefined;
350
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
351
+ quotes?: import("csstype").Property.Quotes | undefined;
352
+ resize?: import("csstype").Property.Resize | undefined;
353
+ right?: import("csstype").Property.Right<string | number> | undefined;
354
+ rotate?: import("csstype").Property.Rotate | undefined;
355
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
356
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
357
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
358
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
359
+ scale?: import("csstype").Property.Scale | undefined;
360
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
361
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
362
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
363
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
364
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
365
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
366
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
367
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
368
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
369
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
370
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
371
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
372
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
373
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
374
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
375
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
376
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
377
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
378
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
379
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
380
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
381
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
382
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
383
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
384
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
385
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
386
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
387
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
388
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
389
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
390
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
391
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
392
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
393
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
394
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
395
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
396
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
397
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
398
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
399
+ textAlign?: import("csstype").Property.TextAlign | undefined;
400
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
401
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
402
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
403
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
404
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
405
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
406
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
407
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
408
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
409
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
410
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
411
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
412
+ textJustify?: import("csstype").Property.TextJustify | undefined;
413
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
414
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
415
+ textRendering?: import("csstype").Property.TextRendering | undefined;
416
+ textShadow?: import("csstype").Property.TextShadow | undefined;
417
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
418
+ textTransform?: import("csstype").Property.TextTransform | undefined;
419
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
420
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
421
+ top?: import("csstype").Property.Top<string | number> | undefined;
422
+ touchAction?: import("csstype").Property.TouchAction | undefined;
423
+ transform?: import("csstype").Property.Transform | undefined;
424
+ transformBox?: import("csstype").Property.TransformBox | undefined;
425
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
426
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
427
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
428
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
429
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
430
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
431
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
432
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
433
+ userSelect?: import("csstype").Property.UserSelect | undefined;
434
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
435
+ visibility?: import("csstype").Property.Visibility | undefined;
436
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
437
+ widows?: import("csstype").Property.Widows | undefined;
438
+ width?: import("csstype").Property.Width<string | number> | undefined;
439
+ willChange?: import("csstype").Property.WillChange | undefined;
440
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
441
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
442
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
443
+ writingMode?: import("csstype").Property.WritingMode | undefined;
444
+ zIndex?: import("csstype").Property.ZIndex | undefined;
445
+ zoom?: import("csstype").Property.Zoom | undefined;
446
+ all?: import("csstype").Globals | undefined;
447
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
448
+ background?: import("csstype").Property.Background<string | number> | undefined;
449
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
450
+ border?: import("csstype").Property.Border<string | number> | undefined;
451
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
452
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
453
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
454
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
455
+ borderColor?: import("csstype").Property.BorderColor | undefined;
456
+ borderImage?: import("csstype").Property.BorderImage | undefined;
457
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
458
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
459
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
460
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
461
+ borderRadius: import("csstype").Property.BorderRadius<string | number>;
462
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
463
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
464
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
465
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
466
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
467
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
468
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
469
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
470
+ font?: import("csstype").Property.Font | undefined;
471
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
472
+ grid?: import("csstype").Property.Grid | undefined;
473
+ gridArea?: import("csstype").Property.GridArea | undefined;
474
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
475
+ gridRow?: import("csstype").Property.GridRow | undefined;
476
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
477
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
478
+ listStyle?: import("csstype").Property.ListStyle | undefined;
479
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
480
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
481
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
482
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
483
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
484
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
485
+ overflow?: import("csstype").Property.Overflow | undefined;
486
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
487
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
488
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
489
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
490
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
491
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
492
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
493
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
494
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
495
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
496
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
497
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
498
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
499
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
500
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
501
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
502
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
503
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
504
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
505
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
506
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
507
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
508
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
509
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
510
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
511
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
512
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
513
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
514
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
515
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
516
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
517
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
518
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
519
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
520
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
521
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
522
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
523
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
524
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
525
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
526
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
527
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
528
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
529
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
530
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
531
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
532
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
533
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
534
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
535
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
536
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
537
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
538
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
539
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
540
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
541
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
542
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
543
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
544
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
545
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
546
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
547
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
548
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
549
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
550
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
551
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
552
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
553
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
554
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
555
+ msFilter?: import("csstype").Property.MsFilter | undefined;
556
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
557
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
558
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
559
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
560
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
561
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
562
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
563
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
564
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
565
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
566
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
567
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
568
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
569
+ msOrder?: import("csstype").Property.Order | undefined;
570
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
571
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
572
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
573
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
574
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
575
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
576
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
577
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
578
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
579
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
580
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
581
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
582
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
583
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
584
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
585
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
586
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
587
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
588
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
589
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
590
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
591
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
592
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
593
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
594
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
595
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
596
+ msTransform?: import("csstype").Property.Transform | undefined;
597
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
598
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
599
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
600
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
601
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
602
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
603
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
604
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
605
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
606
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
607
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
608
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
609
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
610
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
611
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
612
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
613
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
614
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
615
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
616
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
617
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
618
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
619
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
620
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
621
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
622
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
623
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
624
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
625
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
626
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
627
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
628
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
629
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
630
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
631
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
632
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
633
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
634
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
635
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
636
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
637
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
638
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
639
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
640
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
641
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
642
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
643
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
644
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
645
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
646
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
647
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
648
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
649
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
650
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
651
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
652
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
653
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
654
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
655
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
656
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
657
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
658
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
659
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
660
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
661
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
662
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
663
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
664
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
665
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
666
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
667
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
668
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
669
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
670
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
671
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
672
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
673
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
674
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
675
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
676
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
677
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
678
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
679
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
680
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
681
+ WebkitOrder?: import("csstype").Property.Order | undefined;
682
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
683
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
684
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
685
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
686
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
687
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
688
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
689
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
690
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
691
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
692
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
693
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
694
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
695
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
696
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
697
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
698
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
699
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
700
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
701
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
702
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
703
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
704
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
705
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
706
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
707
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
708
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
709
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
710
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
711
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
712
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
713
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
714
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
715
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
716
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
717
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
718
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
719
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
720
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
721
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
722
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
723
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
724
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
725
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
726
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
727
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
728
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
729
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
730
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
731
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
732
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
733
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
734
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
735
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
736
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
737
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
738
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
739
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
740
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
741
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
742
+ azimuth?: import("csstype").Property.Azimuth | undefined;
743
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
744
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
745
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
746
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
747
+ boxLines?: import("csstype").Property.BoxLines | undefined;
748
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
749
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
750
+ boxPack?: import("csstype").Property.BoxPack | undefined;
751
+ clip?: import("csstype").Property.Clip | undefined;
752
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
753
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
754
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
755
+ imeMode?: import("csstype").Property.ImeMode | undefined;
756
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
757
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
758
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
759
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
760
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
761
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
762
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
763
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
764
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
765
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
766
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
767
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
768
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
769
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
770
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
771
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
772
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
773
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
774
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
775
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
776
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
777
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
778
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
779
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
780
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
781
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
782
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
783
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
784
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
785
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
786
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
787
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
788
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
789
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
790
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
791
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
792
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
793
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
794
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
795
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
796
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
797
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
798
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
799
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
800
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
801
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
802
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
803
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
804
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
805
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
806
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
807
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
808
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
809
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
810
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
811
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
812
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
813
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
814
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
815
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
816
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
817
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
818
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
819
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
820
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
821
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
822
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
823
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
824
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
825
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
826
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
827
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
828
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
829
+ OTransform?: import("csstype").Property.Transform | undefined;
830
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
831
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
832
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
833
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
834
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
835
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
836
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
837
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
838
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
839
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
840
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
841
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
842
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
843
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
844
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
845
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
846
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
847
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
848
+ clipRule?: import("csstype").Property.ClipRule | undefined;
849
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
850
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
851
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
852
+ fill?: import("csstype").Property.Fill | undefined;
853
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
854
+ fillRule?: import("csstype").Property.FillRule | undefined;
855
+ floodColor?: import("csstype").Property.FloodColor | undefined;
856
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
857
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
858
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
859
+ marker?: import("csstype").Property.Marker | undefined;
860
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
861
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
862
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
863
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
864
+ stopColor?: import("csstype").Property.StopColor | undefined;
865
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
866
+ stroke?: import("csstype").Property.Stroke | undefined;
867
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
868
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
869
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
870
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
871
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
872
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
873
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
874
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
875
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
876
+ };
877
+ };
878
+ export type ChipProps = Pick<MuiChipProps, 'id' | 'label' | 'sx' | 'onClick' | 'onDelete' | 'onMouseEnter' | 'onMouseLeave'> & {
879
+ /**
880
+ * The icon to display
881
+ */
882
+ iconId?: IconId;
883
+ /**
884
+ * Property to show icon at the right of the text
885
+ * @default false
886
+ */
887
+ iconRight?: boolean;
888
+ /**
889
+ * The color of the icon
890
+ */
891
+ iconColor?: string;
892
+ /**
893
+ * The size of the icon
894
+ */
895
+ iconSize?: IconProps['size'];
896
+ /**
897
+ * Properties for avatar showed within the chip. Avatar will not be displayed if this prop is not defined.
898
+ */
899
+ avatarProps?: Omit<AvatarProps, 'size'>;
900
+ /**
901
+ * The HTML tag to use for the chip.
902
+ */
903
+ component?: 'span' | 'li' | typeof Link;
904
+ /**
905
+ * Property to disable chip
906
+ * @default false
907
+ */
908
+ disabled?: boolean;
909
+ /**
910
+ * Property to hide background color
911
+ * @default false
912
+ */
913
+ transparentBackgroundColor?: boolean;
914
+ /**
915
+ * The variant to use.
916
+ */
917
+ variant?: keyof typeof variantStyles;
918
+ /**
919
+ * The size of the chip.
920
+ */
921
+ size?: keyof typeof sizeStyles;
922
+ /**
923
+ * The variant of the typography.
924
+ */
925
+ typographyVariant?: keyof typeof variants;
926
+ /**
927
+ * Property to show delete icon
928
+ */
929
+ isDeleteable?: boolean;
930
+ /**
931
+ * Function called when mouse hovers on/off the chip.
932
+ */
933
+ onHover?: (isHovered: boolean) => void;
934
+ href?: string;
935
+ tooltip?: string;
936
+ onMouseDownDelete?: IconButtonProps['onMouseDown'];
937
+ };
938
+ /**
939
+ * A component that displays a chip containing simple text.
940
+ * If chips doesn't fit in the available space, they will be truncated with ellipsis.
941
+ */
942
+ declare const Chip: React.ForwardRefExoticComponent<Pick<MuiChipProps, "label" | "id" | "onClick" | "onMouseEnter" | "onMouseLeave" | "sx" | "onDelete"> & {
943
+ /**
944
+ * The icon to display
945
+ */
946
+ iconId?: "function" | "details" | "label" | "link" | "map" | "menu" | "script" | "select" | "table" | "video" | "svg" | "filter" | "image" | "marker" | "stop" | "switch" | "text" | "translate" | "security" | "opacity" | "scale" | "animation" | "grid" | "margin" | "edge" | "key" | "transparent" | "sort" | "at" | "repeat" | "anchor" | "medium" | "solid" | "wrap" | "alert" | "application" | "group" | "navigation" | "note" | "presentation" | "radio" | "tab" | "textbox" | "timer" | "tooltip" | "tree" | "email" | "numeric" | "decimal" | "target" | "restart" | "download" | "loop" | "help" | "zoom-in" | "zoom-out" | "alpha" | "weight" | "dot" | "triangle" | "select-all" | "drag" | "palette" | "abx-testing" | "abx-testing-add" | "access-point" | "access-point-network" | "account" | "account-alert" | "account-box" | "account-box-outline" | "account-card-details" | "account-check" | "account-circle" | "account-convert" | "account-dynamic-plus" | "account-edit" | "account-filter" | "account-key" | "account-location" | "account-minus" | "account-multiple" | "account-multiple-minus" | "account-multiple-outline" | "account-multiple-plus" | "account-network" | "account-off" | "account-outline" | "account-plus" | "account-remove" | "account-search" | "account-settings" | "account-settings-variant" | "account-star" | "account-star-variant" | "account-switch" | "add-note" | "adjust" | "air-conditioner" | "airballoon" | "airplane" | "airplane-landing" | "airplane-off" | "airplane-takeoff" | "airplay" | "alarm" | "alarm-check" | "alarm-multiple" | "alarm-off" | "alarm-plus" | "alarm-snooze" | "album" | "alert-box" | "alert-circle" | "alert-circle-outline" | "alert-octagon" | "alert-octagram" | "alert-outline" | "align-horizontal-center" | "align-horizontal-left" | "align-horizontal-right" | "all-inclusive" | "alphabetical" | "altimeter" | "amazon" | "amazon-clouddrive" | "ambulance" | "amplifier" | "android" | "android-debug-bridge" | "android-studio" | "angular" | "angularjs" | "apple" | "apple-finder" | "apple-ios" | "apple-keyboard-caps" | "apple-keyboard-command" | "apple-keyboard-control" | "apple-keyboard-option" | "apple-keyboard-shift" | "apple-mobileme" | "apple-safari" | "apps" | "archive" | "arrange-bring-forward" | "arrange-bring-to-front" | "arrange-send-backward" | "arrange-send-to-back" | "arrow-all" | "arrow-bottom-left" | "arrow-bottom-right" | "arrow-compress" | "arrow-compress-all" | "arrow-down" | "arrow-down-bold" | "arrow-down-bold-box" | "arrow-down-bold-box-outline" | "arrow-down-bold-circle" | "arrow-down-bold-circle-outline" | "arrow-down-bold-hexagon-outline" | "arrow-down-box" | "arrow-down-drop-circle" | "arrow-down-drop-circle-outline" | "arrow-down-thick" | "arrow-expand" | "arrow-expand-all" | "arrow-left" | "arrow-left-bold" | "arrow-left-bold-box" | "arrow-left-bold-box-outline" | "arrow-left-bold-circle" | "arrow-left-bold-circle-outline" | "arrow-left-bold-hexagon-outline" | "arrow-left-box" | "arrow-left-drop-circle" | "arrow-left-drop-circle-outline" | "arrow-left-thick" | "arrow-right" | "arrow-right-bold" | "arrow-right-bold-box" | "arrow-right-bold-box-outline" | "arrow-right-bold-circle" | "arrow-right-bold-circle-outline" | "arrow-right-bold-hexagon-outline" | "arrow-right-box" | "arrow-right-drop-circle" | "arrow-right-drop-circle-outline" | "arrow-right-thick" | "arrow-top-left" | "arrow-top-right" | "arrow-up" | "arrow-up-bold" | "arrow-up-bold-box" | "arrow-up-bold-box-outline" | "arrow-up-bold-circle" | "arrow-up-bold-circle-outline" | "arrow-up-bold-hexagon-outline" | "arrow-up-box" | "arrow-up-drop-circle" | "arrow-up-drop-circle-outline" | "arrow-up-thick" | "assistant" | "asterisk" | "attachment" | "audiobook" | "auto-awesome" | "auto-fix" | "auto-upload" | "autorenew" | "av-timer" | "baby" | "baby-buggy" | "backburger" | "backspace" | "backup-restore" | "bandcamp" | "bank" | "barcode" | "barcode-scan" | "barley" | "barrel" | "basecamp" | "basket" | "basket-fill" | "basket-unfill" | "battery" | "battery-10" | "battery-20" | "battery-30" | "battery-40" | "battery-50" | "battery-60" | "battery-70" | "battery-80" | "battery-90" | "battery-alert" | "battery-charging" | "battery-charging-100" | "battery-charging-20" | "battery-charging-30" | "battery-charging-40" | "battery-charging-60" | "battery-charging-80" | "battery-charging-90" | "battery-minus" | "battery-negative" | "battery-outline" | "battery-plus" | "battery-positive" | "battery-unknown" | "beach" | "beaker" | "beats" | "beer" | "behance" | "bell" | "bell-off" | "bell-outline" | "bell-plus" | "bell-ring" | "bell-ring-outline" | "bell-sleep" | "beta" | "bible" | "bigtop-updates" | "bigcommerce" | "bike" | "bing" | "binoculars" | "bio" | "biohazard" | "bitbucket" | "black-mesa" | "blackberry" | "blender" | "blinds" | "block-helper" | "blogger" | "bluetooth" | "bluetooth-audio" | "bluetooth-connect" | "bluetooth-off" | "bluetooth-settings" | "bluetooth-transfer" | "blur" | "blur-linear" | "blur-off" | "blur-radial" | "bomb" | "bomb-off" | "bone" | "book" | "book-minus" | "book-multiple" | "book-multiple-variant" | "book-open" | "book-open-page-variant" | "book-open-variant" | "book-plus" | "book-variant" | "bookmark" | "bookmark-check" | "bookmark-music" | "bookmark-outline" | "bookmark-plus" | "bookmark-plus-outline" | "bookmark-remove" | "boombox" | "bootstrap" | "border-all" | "border-bottom" | "border-color" | "border-horizontal" | "border-inside" | "border-left" | "border-none" | "border-outside" | "border-right" | "border-style" | "border-top" | "border-vertical" | "bow-tie" | "bowl" | "bowling" | "box" | "box-cutter" | "box-shadow" | "bridge" | "briefcase" | "briefcase-check" | "briefcase-download" | "briefcase-outline" | "briefcase-upload" | "brightness-1" | "brightness-2" | "brightness-3" | "brightness-4" | "brightness-5" | "brightness-6" | "brightness-7" | "brightness-auto" | "broom" | "brush" | "buffer" | "bug" | "bulletin-board" | "bullhorn" | "bullhorn-outline" | "bullseye" | "bullseye-arrow" | "burst-mode" | "bus" | "cached" | "cake" | "cake-layered" | "cake-variant" | "calculator" | "calendar" | "calendar-blank" | "calendar-check" | "calendar-clock" | "calendar-multiple" | "calendar-multiple-check" | "calendar-plus" | "calendar-question" | "calendar-range" | "calendar-remove" | "calendar-search-outline" | "calendar-text" | "calendar-today" | "call-made" | "call-merge" | "call-missed" | "call-received" | "call-split" | "call-split-rotate" | "call-to-action" | "camcorder" | "camcorder-box" | "camcorder-box-off" | "camcorder-off" | "camera" | "camera-burst" | "camera-enhance" | "camera-front" | "camera-front-variant" | "camera-iris" | "camera-off" | "camera-party-mode" | "camera-rear" | "camera-rear-variant" | "camera-switch" | "camera-timer" | "candle" | "candycane" | "car" | "car-battery" | "car-connected" | "car-wash" | "cards" | "cards-outline" | "cards-playing-outline" | "cards-variant" | "carrot" | "cart" | "cart-check" | "cart-off" | "cart-outline" | "cart-plus" | "case-sensitive-alt" | "cash" | "cash-100" | "cash-multiple" | "cash-usd" | "cast" | "cast-connected" | "castle" | "cat" | "cellphone" | "cellphone-android" | "cellphone-basic" | "cellphone-dock" | "cellphone-iphone" | "cellphone-link" | "cellphone-link-off" | "cellphone-message" | "cellphone-settings" | "certificate" | "chair-school" | "chart-arc" | "chart-areaspline" | "chart-bar" | "chart-bubble" | "chart-gantt" | "chart-histogram" | "chart-line" | "chart-line-variant" | "chart-pie" | "chart-scatterplot-hexbin" | "chart-timeline" | "check" | "check-all" | "check-circle" | "check-circle-outline" | "checkbox-blank" | "checkbox-blank-circle" | "checkbox-blank-circle-outline" | "checkbox-blank-outline" | "checkbox-marked" | "checkbox-marked-circle" | "checkbox-marked-circle-outline" | "checkbox-marked-outline" | "checkbox-indeterminate" | "checkbox-multiple-blank" | "checkbox-multiple-blank-circle" | "checkbox-multiple-blank-circle-outline" | "checkbox-multiple-blank-outline" | "checkbox-multiple-marked" | "checkbox-multiple-marked-circle" | "checkbox-multiple-marked-circle-outline" | "checkbox-multiple-marked-outline" | "checkerboard" | "chemical-weapon" | "chevron-double-down" | "chevron-double-left" | "chevron-double-right" | "chevron-double-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chip" | "church" | "circle-medium" | "cisco-webex" | "city" | "clipboard" | "clipboard-account" | "clipboard-account-outline" | "clipboard-alert" | "clipboard-arrow-down" | "clipboard-arrow-left" | "clipboard-check" | "clipboard-flow" | "clipboard-multiple" | "clipboard-outline" | "clipboard-text" | "clipboard-text-outline" | "clippy" | "clock" | "clock-alert" | "clock-end" | "clock-fast" | "clock-in" | "clock-out" | "clock-start" | "close" | "close-box" | "close-box-outline" | "close-circle" | "close-circle-outline" | "close-network" | "close-octagon" | "close-octagon-outline" | "close-outline" | "closed-caption" | "cloud" | "cloud-check" | "cloud-circle" | "cloud-download" | "cloud-outline" | "cloud-outline-off" | "cloud-print" | "cloud-print-outline" | "cloud-sync" | "cloud-upload" | "connect" | "code-array" | "code-braces" | "code-brackets" | "code-equal" | "code-greater-than" | "code-greater-than-or-equal" | "code-less-than" | "code-less-than-or-equal" | "code-not-equal" | "code-not-equal-variant" | "code-parentheses" | "code-string" | "code-tags" | "code-tags-check" | "codepen" | "coffee" | "coffee-outline" | "coffee-to-go" | "coin" | "coins" | "collage" | "color-helper" | "comment" | "color-square" | "comment-account" | "comment-account-outline" | "comment-alert" | "comment-alert-outline" | "comment-check" | "comment-check-outline" | "comment-multiple-outline" | "comment-outline" | "comment-plus-outline" | "comment-processing" | "comment-processing-outline" | "comment-question-outline" | "comment-remove-outline" | "comment-text" | "comment-text-outline" | "compare" | "compass" | "compass-outline" | "connectif-email-bounce" | "connectif-logo" | "console" | "contact-mail" | "contacts" | "content-copy" | "content-cut" | "content-duplicate" | "content-paste" | "content-save" | "content-save-all" | "content-save-settings" | "contrast" | "contrast-box" | "contrast-circle" | "cookie" | "copyright" | "counter" | "cow" | "creation" | "credit-card" | "credit-card-multiple" | "credit-card-off" | "credit-card-plus" | "credit-card-scan" | "crop" | "crop-free" | "crop-landscape" | "crop-portrait" | "crop-rotate" | "crop-square" | "crosshairs" | "crosshairs-gps" | "crown" | "cube" | "cube-outline" | "cube-send" | "cube-unfolded" | "cup" | "cup-off" | "cup-water" | "currency-btc" | "currency-eur" | "currency-gbp" | "currency-inr" | "currency-ngn" | "currency-rub" | "currency-try" | "currency-usd" | "currency-usd-off" | "cursor-default" | "cursor-default-click-outline" | "cursor-default-outline" | "cursor-move" | "cursor-pointer" | "cursor-text" | "database" | "database-minus" | "database-plus" | "debug-step-into" | "debug-step-out" | "debug-step-over" | "decimal-decrease" | "decimal-increase" | "delete" | "delete-circle" | "delete-empty" | "delete-forever" | "delete-outline" | "delete-sweep" | "delete-variant" | "delta" | "deskphone" | "desktop-mac" | "desktop-tower" | "developer-board" | "deviantart" | "dialpad" | "diamond" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dice-d20" | "dice-d4" | "dice-d6" | "dice-d8" | "dictionary" | "directions" | "directions-fork" | "discord" | "disk" | "disk-alert" | "disqus" | "disqus-outline" | "division" | "division-box" | "dna" | "dns" | "do-not-disturb" | "do-not-disturb-off" | "dolby" | "domain" | "dot-square" | "dots-horizontal" | "dots-vertical" | "douban" | "drag-horizontal" | "drag-vertical" | "drama-mask" | "drawing" | "drawing-box" | "dribbble" | "dribbble-box" | "drone" | "dropbox" | "drupal" | "duck" | "dumbbell" | "earth" | "earth-box" | "earth-box-off" | "earth-off" | "edit-note" | "eject" | "elevation-decline" | "elevation-rise" | "elevator" | "email-alert" | "email-fast-outline" | "email-multiple-outline" | "email-open" | "email-open-outline" | "email-outline" | "email-plus-outline" | "email-secure" | "email-variant" | "emby" | "emoticon" | "emoticon-cool" | "emoticon-dead" | "emoticon-devil" | "emoticon-excited" | "emoticon-happy" | "emoticon-neutral" | "emoticon-poop" | "emoticon-sad" | "emoticon-tongue" | "engine" | "engine-outline" | "equal" | "equal-box" | "eraser" | "eraser-variant" | "escalator" | "ethernet" | "ethernet-cable" | "ethernet-cable-off" | "etsy" | "ev-station" | "evernote" | "exclamation" | "exit-to-app" | "export" | "eye" | "eye-off" | "eye-outline" | "eye-outline-off" | "eyedropper" | "eyedropper-variant" | "face" | "face-profile" | "facebook" | "facebook-box" | "facebook-messenger" | "facebook-page-visit" | "factory" | "fan" | "fast-forward" | "fast-forward-outline" | "fax" | "feather" | "ferry" | "file" | "file-account" | "file-chart" | "file-check" | "file-cloud" | "file-delimited" | "file-document" | "file-document-box" | "file-excel" | "file-excel-box" | "file-export" | "file-eye-outline" | "file-find" | "file-hidden" | "file-image" | "file-import" | "file-lock" | "file-multiple" | "file-music" | "file-outline" | "file-pdf" | "file-pdf-box" | "file-powerpoint" | "file-powerpoint-box" | "file-presentation-box" | "file-restore" | "file-send" | "file-tree" | "file-video" | "file-word" | "file-word-box" | "file-xml" | "film" | "filmstrip" | "filmstrip-off" | "filter-outline" | "filter-remove" | "filter-remove-outline" | "filter-variant" | "find-replace" | "fingerprint" | "fire" | "firefox" | "fish" | "flag" | "flag-checkered" | "flag-outline" | "flag-outline-variant" | "flag-triangle" | "flag-variant" | "flash" | "flash-auto" | "flash-off" | "flash-outline" | "flash-red-eye" | "flashlight" | "flashlight-off" | "flask" | "flask-empty" | "flask-empty-outline" | "flask-outline" | "flattr" | "flip-to-back" | "flip-to-front" | "floppy" | "flower" | "folder" | "folder-account" | "folder-download" | "folder-google-drive" | "folder-image" | "folder-lock" | "folder-lock-open" | "folder-move" | "folder-multiple" | "folder-multiple-image" | "folder-multiple-outline" | "folder-outline" | "folder-plus" | "folder-remove" | "folder-star" | "folder-upload" | "font-awesome" | "food" | "food-apple" | "food-fork-drink" | "food-off" | "food-variant" | "football" | "football-australian" | "football-helmet" | "format-align-center" | "format-align-justify" | "format-align-left" | "format-align-right" | "format-annotation-plus" | "format-bold" | "format-clear" | "format-color-fill" | "format-color-text" | "format-float-center" | "format-float-left" | "format-float-none" | "format-float-right" | "format-font" | "format-header-1" | "format-header-2" | "format-header-3" | "format-header-4" | "format-header-5" | "format-header-6" | "format-header-decrease" | "format-header-equal" | "format-header-increase" | "format-header-pound" | "format-horizontal-align-center" | "format-horizontal-align-left" | "format-horizontal-align-right" | "format-indent-decrease" | "format-indent-increase" | "format-italic" | "format-line-spacing" | "format-line-style" | "format-line-weight" | "format-list-bulleted" | "format-list-bulleted-type" | "format-list-numbers" | "format-page-break" | "format-paint" | "format-paragraph" | "format-pilcrow" | "format-quote" | "format-rotate-90" | "format-section" | "format-size" | "format-strikethrough" | "format-strikethrough-variant" | "format-subscript" | "format-superscript" | "format-text" | "format-textdirection-l-to-r" | "format-textdirection-r-to-l" | "format-title" | "format-underline" | "format-vertical-align-bottom" | "format-vertical-align-center" | "format-vertical-align-top" | "format-wrap-inline" | "format-wrap-square" | "format-wrap-tight" | "format-wrap-top-bottom" | "forum" | "forum-outline" | "forward" | "foursquare" | "fridge" | "fridge-filled" | "fridge-filled-bottom" | "fridge-filled-top" | "fullscreen" | "fullscreen-exit" | "gamepad" | "gamepad-variant" | "garage" | "garage-open" | "gas-cylinder" | "gas-station" | "gate" | "gauge" | "gavel" | "gender-female" | "gender-male" | "gender-male-female" | "gender-transgender" | "gesture-double-tap" | "gesture-swipe-down" | "gesture-swipe-left" | "gesture-swipe-right" | "gesture-swipe-up" | "gesture-tap" | "gesture-two-double-tap" | "gesture-two-tap" | "ghost" | "gift" | "git" | "github-box" | "github-circle" | "github-face" | "glass-flute" | "glass-mug" | "glass-stange" | "glass-tulip" | "glassdoor" | "glasses" | "gmail" | "gnome" | "gondola" | "google" | "google-analytics" | "google-cardboard" | "google-chrome" | "google-circles" | "google-circles-communities" | "google-circles-extended" | "google-circles-group" | "google-controller" | "google-controller-off" | "google-drive" | "google-earth" | "google-glass" | "google-keep" | "google-maps" | "google-nearby" | "google-pages" | "google-photos" | "google-physical-web" | "google-play" | "google-plus" | "google-plus-box" | "google-translate" | "google-wallet" | "gradient" | "grease-pencil" | "grid-off" | "guitar-electric" | "guitar-pick" | "guitar-pick-outline" | "hackernews" | "hamburger" | "hand-pointing-right" | "hanger" | "hangouts" | "harddisk" | "headphones" | "headphones-box" | "headphones-settings" | "headset" | "headset-dock" | "headset-off" | "heart" | "heart-box" | "heart-box-outline" | "heart-broken" | "heart-half-outline" | "heart-half-part" | "heart-half-part-outline" | "heart-outline" | "heart-pulse" | "help-circle" | "help-circle-outline" | "hexagon" | "hexagon-multiple" | "hexagon-outline" | "highway" | "history" | "hololens" | "home" | "home-map-marker" | "home-modern" | "home-outline" | "home-variant" | "hook" | "hook-off" | "hops" | "hospital" | "hospital-building" | "hospital-marker" | "hotel" | "houzz" | "houzz-box" | "human" | "human-child" | "human-female" | "human-greeting" | "human-handsdown" | "human-handsup" | "human-male" | "human-male-female" | "human-pregnant" | "image-album" | "image-area" | "image-area-close" | "image-broken" | "image-broken-variant" | "image-filter" | "image-filter-black-white" | "image-filter-center-focus" | "image-filter-center-focus-weak" | "image-filter-drama" | "image-filter-frames" | "image-filter-hdr" | "image-filter-none" | "image-filter-tilt-shift" | "image-filter-vintage" | "image-edit" | "image-multiple" | "import" | "inbox" | "inbox-arrow-down" | "inbox-arrow-up" | "incognito" | "infinity" | "information" | "information-outline" | "information-variant" | "instagram" | "instagram-page-visit" | "instapaper" | "internet-explorer" | "invert-colors" | "itunes" | "jeepney" | "jira" | "jsfiddle" | "json" | "keg" | "kettle" | "key-change" | "key-minus" | "key-plus" | "key-remove" | "key-variant" | "keyboard" | "keyboard-backspace" | "keyboard-caps" | "keyboard-close" | "keyboard-off" | "keyboard-return" | "keyboard-tab" | "keyboard-variant" | "kickstarter" | "kodi" | "label-outline" | "lambda" | "lamp" | "lan" | "lan-connect" | "lan-disconnect" | "lan-pending" | "language-c" | "language-cpp" | "language-csharp" | "language-css3" | "language-html5" | "language-javascript" | "language-php" | "language-python" | "language-python-text" | "language-swift" | "language-typescript" | "laptop" | "laptop-chromebook" | "laptop-mac" | "laptop-off" | "laptop-windows" | "lastfm" | "launch" | "layers" | "layers-off" | "lead-pencil" | "leaf" | "led-off" | "led-on" | "led-outline" | "led-variant-off" | "led-variant-on" | "led-variant-outline" | "library" | "library-books" | "library-music" | "library-plus" | "lightbulb" | "lightbulb-on" | "lightbulb-on-outline" | "lightbulb-outline" | "lightning-bolt" | "link-off" | "link-variant" | "link-variant-off" | "linkedin" | "linkedin-box" | "linux" | "lock" | "lock-open" | "lock-open-outline" | "lock-outline" | "lock-pattern" | "lock-plus" | "login" | "login-variant" | "logout" | "logout-cn" | "logout-variant" | "looks" | "loupe" | "lumx" | "magento" | "magnet" | "magnet-on" | "magnify" | "magnify-minus" | "magnify-minus-outline" | "magnify-plus" | "magnify-plus-outline" | "mail-ru" | "mailbox" | "map-marker" | "map-marker-circle" | "map-marker-minus" | "map-marker-multiple" | "map-marker-off" | "map-marker-plus" | "map-marker-radius" | "markdown" | "marker-check" | "martini" | "material-ui" | "math-compass" | "matrix" | "maxcdn" | "medical-bag" | "memory" | "menu-down" | "menu-down-outline" | "menu-left" | "menu-right" | "menu-up" | "menu-up-outline" | "message" | "message-alert" | "message-bulleted" | "message-bulleted-off" | "message-draw" | "message-image" | "message-outline" | "message-plus" | "message-processing" | "message-reply" | "message-reply-text" | "message-settings" | "message-settings-variant" | "message-text" | "message-text-outline" | "message-video" | "meteor" | "microphone" | "microphone-off" | "microphone-outline" | "microphone-settings" | "microphone-variant" | "microphone-variant-off" | "microscope" | "microsoft" | "minecraft" | "minus" | "minus-box" | "minus-box-outline" | "minus-circle" | "minus-circle-outline" | "minus-network" | "mixcloud" | "monitor" | "monitor-multiple" | "mop" | "more" | "motorbike" | "mouse" | "mouse-off" | "mouse-variant" | "mouse-variant-off" | "move-resize" | "move-resize-variant" | "movie" | "multiplication" | "multiplication-box" | "music-box" | "music-box-outline" | "music-circle" | "music-note" | "music-note-bluetooth" | "music-note-bluetooth-off" | "music-note-eighth" | "music-note-half" | "music-note-off" | "music-note-quarter" | "music-note-sixteenth" | "music-note-whole" | "nature" | "nature-people" | "near-me" | "needle" | "nest-protect" | "nest-thermostat" | "netflix" | "network" | "network-download" | "network-question" | "network-upload" | "new-box" | "newspaper" | "nfc" | "nfc-tap" | "nfc-variant" | "nodejs" | "note-multiple" | "note-multiple-outline" | "note-outline" | "note-plus" | "note-plus-outline" | "note-text" | "notification-clear-all" | "npm" | "nuke" | "numeric-0-box" | "numeric-0-box-multiple-outline" | "numeric-0-box-outline" | "numeric-1-box" | "numeric-1-box-multiple-outline" | "numeric-1-box-outline" | "numeric-2-box" | "numeric-2-box-multiple-outline" | "numeric-2-box-outline" | "numeric-3-box" | "numeric-3-box-multiple-outline" | "numeric-3-box-outline" | "numeric-4-box" | "numeric-4-box-multiple-outline" | "numeric-4-box-outline" | "numeric-5-box" | "numeric-5-box-multiple-outline" | "numeric-5-box-outline" | "numeric-6-box" | "numeric-6-box-multiple-outline" | "numeric-6-box-outline" | "numeric-7-box" | "numeric-7-box-multiple-outline" | "numeric-7-box-outline" | "numeric-8-box" | "numeric-8-box-multiple-outline" | "numeric-8-box-outline" | "numeric-9-box" | "numeric-9-box-multiple-outline" | "numeric-9-box-outline" | "numeric-9-plus-box" | "numeric-9-plus-box-multiple-outline" | "numeric-9-plus-box-outline" | "nut" | "nutrition" | "oar" | "octagon" | "octagon-outline" | "octagram" | "odnoklassniki" | "office" | "oil" | "oil-temperature" | "omega" | "onedrive" | "onenote" | "open-in-app" | "open-in-new" | "openid" | "opera" | "ornament" | "ornament-variant" | "owl" | "package" | "package-down" | "package-up" | "package-variant" | "package-variant-closed" | "page-first" | "page-last" | "page-layout-body" | "page-layout-footer" | "page-layout-header" | "page-layout-sidebar-left" | "page-layout-sidebar-right" | "palette-advanced" | "palette-outline" | "panda" | "pandora" | "panorama" | "panorama-fisheye" | "panorama-horizontal" | "panorama-vertical" | "panorama-wide-angle" | "paper-cut-vertical" | "paperclip" | "parking" | "pause" | "pause-circle" | "pause-circle-outline" | "pause-octagon" | "pause-octagon-outline" | "paw" | "paw-off" | "pen" | "pencil" | "pencil-box" | "pencil-box-outline" | "pencil-circle" | "pencil-lock" | "pencil-off" | "pencil-outline" | "pending" | "pentagon" | "pentagon-outline" | "percent" | "periscope" | "pharmacy" | "phone" | "phone-bluetooth" | "phone-classic" | "phone-forward" | "phone-hangup" | "phone-in-talk" | "phone-incoming" | "phone-locked" | "phone-log" | "phone-minus" | "phone-missed" | "phone-outgoing" | "phone-paused" | "phone-plus" | "phone-settings" | "phone-voip" | "pi" | "pi-box" | "piano" | "pig" | "pill" | "pillar" | "pin" | "pin-off" | "pin-outline" | "pine-tree" | "pine-tree-box" | "pinterest" | "pinterest-box" | "pistol" | "pizza" | "plane-shield" | "play" | "play-box-outline" | "play-circle" | "play-circle-outline" | "play-pause" | "play-protected-content" | "playlist-check" | "playlist-edit" | "playlist-minus" | "playlist-play" | "playlist-plus" | "playlist-remove" | "playstation" | "plex" | "plus" | "plus-box" | "plus-box-outline" | "plus-circle" | "plus-circle-multiple-outline" | "plus-circle-outline" | "plus-network" | "plus-one" | "plus-outline" | "pocket" | "pokeball" | "polaroid" | "poll" | "poll-box" | "polymer" | "pool" | "popcorn" | "pot" | "pot-mix" | "pound" | "pound-box" | "power" | "power-plug" | "power-plug-off" | "power-settings" | "power-socket" | "prescription" | "presentation-play" | "prestashop" | "printer" | "printer-3d" | "printer-alert" | "printer-settings" | "priority-high" | "priority-low" | "professional-hexagon" | "progress-clock" | "progress-pencil" | "projector" | "projector-screen" | "publish" | "pulse" | "puzzle" | "qqchat" | "qrcode" | "qrcode-scan" | "quadcopter" | "quality-high" | "quicktime" | "radar" | "radiator" | "radio-handheld" | "radio-tower" | "radioactive" | "radiobox-blank" | "radiobox-marked" | "raspberrypi" | "ray-end" | "ray-end-arrow" | "ray-start" | "ray-start-arrow" | "ray-start-end" | "ray-vertex" | "rdio" | "react" | "read" | "readability" | "receipt" | "record" | "record-rec" | "recycle" | "reddit" | "redo" | "redo-variant" | "refresh" | "regex" | "relative-scale" | "reload" | "remote" | "rename-box" | "reorder-horizontal" | "reorder-vertical" | "repeat-off" | "repeat-once" | "replay" | "reply" | "reply-all" | "reproduction" | "resize-bottom-right" | "responsive" | "restore" | "rewind" | "rewind-outline" | "rhombus" | "rhombus-outline" | "ribbon" | "road" | "road-variant" | "robot" | "rocket" | "roomba" | "rotate-3d" | "rotate-left" | "rotate-left-variant" | "rotate-right" | "rotate-right-variant" | "rounded-corner" | "router-wireless" | "routes" | "rowing" | "rss" | "rss-box" | "ruler" | "run" | "run-fast" | "sale" | "satellite" | "satellite-variant" | "saxophone" | "scale-balance" | "scale-bathroom" | "scanner" | "school" | "screen-rotation" | "screen-rotation-lock" | "screwdriver" | "sd" | "seal" | "segment" | "connectif-segment" | "connectif-segment-add" | "connectif-segment-remove" | "search-web" | "seat-flat" | "seat-flat-angled" | "seat-individual-suite" | "seat-legroom-extra" | "seat-legroom-normal" | "seat-legroom-reduced" | "seat-recline-extra" | "seat-recline-normal" | "security-home" | "security-network" | "select-inverse" | "select-off" | "selection" | "send" | "serial-port" | "server" | "server-minus" | "server-network" | "server-network-off" | "server-off" | "server-plus" | "server-remove" | "server-security" | "settings" | "settings-box" | "shape-circle-plus" | "shape-plus" | "shape-polygon-plus" | "shape-rectangle-plus" | "shape-square-plus" | "share" | "share-variant" | "shield" | "shield-outline" | "shopify" | "shopping" | "shopping-music" | "shopping-outline" | "short-text" | "shovel" | "shovel-off" | "shredder" | "shuffle" | "shuffle-disabled" | "shuffle-variant" | "sigma" | "sigma-lower" | "sign-caution" | "signal" | "signal-2g" | "signal-3g" | "signal-4g" | "signal-hspa" | "signal-hspa-plus" | "signal-variant" | "silverware" | "silverware-fork" | "silverware-spoon" | "silverware-variant" | "sim" | "sim-alert" | "sim-off" | "sitemap" | "skip-backward" | "skip-forward" | "skip-next" | "skip-next-circle" | "skip-next-circle-outline" | "skip-previous" | "skip-previous-circle" | "skip-previous-circle-outline" | "skull" | "skype" | "skype-business" | "slack" | "sleep" | "sleep-off" | "smoking" | "smoking-off" | "sms" | "snapchat" | "snowflake" | "snowman" | "soccer" | "sofa" | "sort-alphabetical" | "sort-ascending" | "sort-descending" | "sort-numeric" | "sort-variant" | "soundcloud" | "source-branch" | "source-commit" | "source-commit-end" | "source-commit-end-local" | "source-commit-local" | "source-commit-next-local" | "source-commit-start" | "source-commit-start-next-local" | "source-fork" | "source-merge" | "source-pull" | "speaker" | "speaker-off" | "speaker-wireless" | "speedometer" | "spellcheck" | "spotify" | "spotlight" | "spotlight-beam" | "spray" | "square-inc" | "square-inc-cash" | "stackexchange" | "stackoverflow" | "stadium" | "stairs" | "star" | "star-circle" | "star-four-points" | "star-half" | "star-off" | "star-outline" | "steam" | "steering" | "step-backward" | "step-backward-2" | "step-forward" | "step-forward-2" | "stethoscope" | "sticker" | "stocking" | "stop-circle" | "stop-circle-outline" | "store" | "store-24-hour" | "store-outline" | "stove" | "subdirectory-arrow-left" | "subdirectory-arrow-right" | "subject" | "subway" | "subway-variant" | "sunglasses" | "surround-sound" | "swap-horizontal" | "swap-vertical" | "swim" | "sword" | "sync" | "sync-alert" | "sync-off" | "tab-unselected" | "table-column-plus-after" | "table-column-plus-before" | "table-column-remove" | "table-column-width" | "table-edit" | "table-large" | "table-row-height" | "table-row-plus-after" | "table-row-plus-before" | "table-row-remove" | "tablet" | "tablet-android" | "tablet-ipad" | "tag" | "tag-faces" | "tag-heart" | "tag-multiple" | "tag-outline" | "tag-plus" | "tag-remove" | "tag-text-outline" | "taxi" | "teamviewer" | "telegram" | "television" | "television-guide" | "temperature-celsius" | "temperature-fahrenheit" | "temperature-kelvin" | "tennis" | "tent" | "terrain" | "test-tube" | "text-shadow" | "text-to-speech" | "text-to-speech-off" | "texture" | "theater" | "theater-comedy" | "theme-light-dark" | "thermometer" | "thermometer-lines" | "thumb-down" | "thumb-down-outline" | "thumb-up" | "thumb-up-outline" | "thumbs-up-down" | "ticket" | "ticket-account" | "ticket-confirmation" | "ticket-percent" | "ticket-percent-outline" | "tie" | "tilde" | "timelapse" | "timer-10" | "timer-3" | "timer-cancel" | "timer-off" | "timer-outline" | "timer-sand" | "timer-sand-empty" | "timetable" | "toggle-switch" | "toggle-switch-off" | "tooltip-edit" | "tooltip-image" | "tooltip-outline" | "tooltip-outline-plus" | "tooltip-text" | "tooth" | "tor" | "tower-beach" | "tower-fire" | "traffic-light" | "train" | "tram" | "transcribe" | "transcribe-close" | "transfer" | "transit-transfer" | "trash-can-outline" | "treasure-chest" | "trello" | "trending-down" | "trending-neutral" | "trending-up" | "triangle-outline" | "trophy" | "trophy-award" | "trophy-outline" | "trophy-variant" | "trophy-variant-outline" | "truck" | "truck-delivery" | "truck-trailer" | "tshirt-crew" | "tshirt-v" | "tumblr" | "tumblr-reblog" | "tune" | "tune-vertical" | "twitch" | "twitter" | "twitter-box" | "twitter-circle" | "twitter-retweet" | "uber" | "ubuntu" | "umbraco" | "umbrella" | "umbrella-outline" | "undo" | "undo-variant" | "unfold-less" | "unfold-more" | "ungroup" | "unity" | "untappd" | "update" | "upload" | "usb" | "user-list" | "vector-arrange-above" | "vector-arrange-below" | "vector-circle" | "vector-circle-variant" | "vector-combine" | "vector-curve" | "vector-difference" | "vector-difference-ab" | "vector-difference-ba" | "vector-intersection" | "vector-line" | "vector-point" | "vector-polygon" | "vector-polyline" | "vector-rectangle" | "vector-selection" | "vector-square" | "vector-triangle" | "vector-union" | "verified" | "vibrate" | "video-off" | "video-switch" | "view-agenda" | "view-array" | "view-carousel" | "view-column" | "view-dashboard" | "view-day" | "view-grid" | "view-headline" | "view-list" | "view-module" | "view-parallel" | "view-quilt" | "view-sequential" | "view-stream" | "view-week" | "vimeo" | "vine" | "violin" | "visualstudio" | "vk" | "vk-box" | "vk-circle" | "vlc" | "voice" | "voicemail" | "volume-high" | "volume-low" | "volume-medium" | "volume-off" | "vpn" | "vtex" | "walk" | "wallet" | "wallet-giftcard" | "wallet-membership" | "wallet-travel" | "wan" | "washing-machine" | "watch" | "watch-export" | "watch-import" | "watch-vibrate" | "water" | "water-off" | "water-percent" | "water-pump" | "watermark" | "weather-cloudy" | "weather-fog" | "weather-hail" | "weather-lightning" | "weather-lightning-rainy" | "weather-night" | "weather-partlycloudy" | "weather-pouring" | "weather-rainy" | "weather-snowy" | "weather-snowy-rainy" | "weather-sunny" | "weather-sunset" | "weather-sunset-down" | "weather-sunset-up" | "weather-windy" | "weather-windy-variant" | "web" | "web-check" | "webcam" | "webhook" | "webpack" | "wechat" | "weight-kilogram" | "whatsapp" | "wheelchair-accessibility" | "white-balance-auto" | "white-balance-incandescent" | "white-balance-iridescent" | "white-balance-sunny" | "widgets" | "wifi" | "wifi-off" | "wii" | "wiiu" | "wikipedia" | "window-close" | "window-closed" | "window-maximize" | "window-minimize" | "window-open" | "window-restore" | "windows" | "woocommerce" | "wordpress" | "worker" | "wrench" | "wunderlist" | "workflow-icon" | "xaml" | "xbox" | "xbox-controller" | "xbox-controller-battery-alert" | "xbox-controller-battery-empty" | "xbox-controller-battery-full" | "xbox-controller-battery-low" | "xbox-controller-battery-medium" | "xbox-controller-battery-unknown" | "xbox-controller-off" | "xda" | "xing" | "xing-box" | "xing-circle" | "xml" | "yeast" | "yelp" | "yin-yang" | "youtube-play" | "zip-box" | "database-export" | undefined;
947
+ /**
948
+ * Property to show icon at the right of the text
949
+ * @default false
950
+ */
951
+ iconRight?: boolean | undefined;
952
+ /**
953
+ * The color of the icon
954
+ */
955
+ iconColor?: string | undefined;
956
+ /**
957
+ * The size of the icon
958
+ */
959
+ iconSize?: IconProps['size'];
960
+ /**
961
+ * Properties for avatar showed within the chip. Avatar will not be displayed if this prop is not defined.
962
+ */
963
+ avatarProps?: Omit<AvatarProps, "size"> | undefined;
964
+ /**
965
+ * The HTML tag to use for the chip.
966
+ */
967
+ component?: "li" | "span" | import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").LinkTypeMap<{}, "a">> | undefined;
968
+ /**
969
+ * Property to disable chip
970
+ * @default false
971
+ */
972
+ disabled?: boolean | undefined;
973
+ /**
974
+ * Property to hide background color
975
+ * @default false
976
+ */
977
+ transparentBackgroundColor?: boolean | undefined;
978
+ /**
979
+ * The variant to use.
980
+ */
981
+ variant?: "black" | "default" | "dark" | "error" | "primary" | "warning" | "success" | "darker" | undefined;
982
+ /**
983
+ * The size of the chip.
984
+ */
985
+ size?: "M" | "L" | "XS" | "S" | undefined;
986
+ /**
987
+ * The variant of the typography.
988
+ */
989
+ typographyVariant?: import("../../theme/Typography").TypographyVariant | undefined;
990
+ /**
991
+ * Property to show delete icon
992
+ */
993
+ isDeleteable?: boolean | undefined;
994
+ /**
995
+ * Function called when mouse hovers on/off the chip.
996
+ */
997
+ onHover?: ((isHovered: boolean) => void) | undefined;
998
+ href?: string | undefined;
999
+ tooltip?: string | undefined;
1000
+ onMouseDownDelete?: IconButtonProps['onMouseDown'];
1001
+ } & React.RefAttributes<HTMLSpanElement>>;
1002
+ export default Chip;