@onewelcome/react-lib-components 0.0.0-experimental-8e3a0fd

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 (556) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +94 -0
  3. package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +9 -0
  4. package/dist/components/Breadcrumbs/Breadcrumbs.test.d.ts +1 -0
  5. package/dist/components/Button/BaseButton.d.ts +8 -0
  6. package/dist/components/Button/BaseButton.test.d.ts +1 -0
  7. package/dist/components/Button/Button.d.ts +8 -0
  8. package/dist/components/Button/Button.test.d.ts +1 -0
  9. package/dist/components/Button/IconButton.d.ts +11 -0
  10. package/dist/components/Button/IconButton.test.d.ts +1 -0
  11. package/dist/components/Button/Spinner.d.ts +2 -0
  12. package/dist/components/ContextMenu/ContextMenu.d.ts +24 -0
  13. package/dist/components/ContextMenu/ContextMenu.test.d.ts +1 -0
  14. package/dist/components/ContextMenu/ContextMenuItem.d.ts +15 -0
  15. package/dist/components/ContextMenu/ContextMenuService.d.ts +21 -0
  16. package/dist/components/DataGrid/DataGrid.d.ts +46 -0
  17. package/dist/components/DataGrid/DataGrid.test.d.ts +1 -0
  18. package/dist/components/DataGrid/DataGridActions/DataGridActions.d.ts +15 -0
  19. package/dist/components/DataGrid/DataGridActions/DataGridActions.test.d.ts +1 -0
  20. package/dist/components/DataGrid/DataGridActions/DataGridColumnsToggle.d.ts +13 -0
  21. package/dist/components/DataGrid/DataGridActions/DataGridColumnsToggle.test.d.ts +1 -0
  22. package/dist/components/DataGrid/DataGridBody/DataGridBody.d.ts +21 -0
  23. package/dist/components/DataGrid/DataGridBody/DataGridBody.test.d.ts +1 -0
  24. package/dist/components/DataGrid/DataGridBody/DataGridCell/DataGridCell.d.ts +12 -0
  25. package/dist/components/DataGrid/DataGridBody/DataGridCell/DataGridCell.test.d.ts +1 -0
  26. package/dist/components/DataGrid/DataGridBody/DataGridDrawer/DataGridDrawer.d.ts +5 -0
  27. package/dist/components/DataGrid/DataGridBody/DataGridDrawer/DataGridDrawerItem.d.ts +6 -0
  28. package/dist/components/DataGrid/DataGridBody/DataGridDrawer/DataGridDrawerItem.test.d.ts +1 -0
  29. package/dist/components/DataGrid/DataGridBody/DataGridRow/DataGridRow.d.ts +33 -0
  30. package/dist/components/DataGrid/DataGridBody/DataGridRow/DataGridRow.test.d.ts +1 -0
  31. package/dist/components/DataGrid/DataGridBody/DataGridRow/DataGridWithNestedRows.test.d.ts +1 -0
  32. package/dist/components/DataGrid/DataGridBody/DataGridRow/useNestedRow.d.ts +855 -0
  33. package/dist/components/DataGrid/DataGridFilters/DataGridDateFilter.d.ts +9 -0
  34. package/dist/components/DataGrid/DataGridFilters/DataGridFilter.d.ts +16 -0
  35. package/dist/components/DataGrid/DataGridFilters/DataGridFilterPopover.d.ts +23 -0
  36. package/dist/components/DataGrid/DataGridFilters/DataGridFilterService.d.ts +16 -0
  37. package/dist/components/DataGrid/DataGridFilters/DataGridFilterTag.d.ts +15 -0
  38. package/dist/components/DataGrid/DataGridFilters/DataGridFilterTag.test.d.ts +1 -0
  39. package/dist/components/DataGrid/DataGridFilters/DataGridFilterValueSelect.d.ts +15 -0
  40. package/dist/components/DataGrid/DataGridFilters/DataGridFilterValueSelect.test.d.ts +1 -0
  41. package/dist/components/DataGrid/DataGridFilters/DataGridFilters.interfaces.d.ts +78 -0
  42. package/dist/components/DataGrid/DataGridFilters/DataGridSearchbar.d.ts +10 -0
  43. package/dist/components/DataGrid/DataGridFilters/DataGridToolbar.d.ts +15 -0
  44. package/dist/components/DataGrid/DataGridFilters/DataGridToolbar.test.d.ts +1 -0
  45. package/dist/components/DataGrid/DataGridFilters/DataGridToolbarWrapper.d.ts +10 -0
  46. package/dist/components/DataGrid/DataGridFilters/DateTimePicker/DateTimePicker.d.ts +31 -0
  47. package/dist/components/DataGrid/DataGridFilters/DateTimePicker/DateTimePickerCalendarSection.d.ts +15 -0
  48. package/dist/components/DataGrid/DataGridFilters/DateTimePicker/DateTimePickerInputSection.d.ts +18 -0
  49. package/dist/components/DataGrid/DataGridFilters/DateTimePicker/DateTimeService.d.ts +10 -0
  50. package/dist/components/DataGrid/DataGridFilters/DateTimePicker/SideMenu.d.ts +10 -0
  51. package/dist/components/DataGrid/DataGridFilters/FilterKeyMapper.d.ts +14 -0
  52. package/dist/components/DataGrid/DataGridFilters/FilterKeyMapper.test.d.ts +1 -0
  53. package/dist/components/DataGrid/DataGridFilters/useFiltersReducer.d.ts +9 -0
  54. package/dist/components/DataGrid/DataGridFilters/useFiltersReducer.test.d.ts +1 -0
  55. package/dist/components/DataGrid/DataGridHeader/DataGridHeader.d.ts +13 -0
  56. package/dist/components/DataGrid/DataGridHeader/DataGridHeader.test.d.ts +1 -0
  57. package/dist/components/DataGrid/DataGridHeader/DataGridHeaderCell.d.ts +10 -0
  58. package/dist/components/DataGrid/DataGridHeader/DataGridHeaderCell.test.d.ts +1 -0
  59. package/dist/components/DataGrid/datagrid.interfaces.d.ts +13 -0
  60. package/dist/components/DataGrid/testUtils.d.ts +22 -0
  61. package/dist/components/DatePicker/DatePicker.d.ts +14 -0
  62. package/dist/components/DatePicker/DatePicker.test.d.ts +1 -0
  63. package/dist/components/Form/Checkbox/Checkbox.d.ts +14 -0
  64. package/dist/components/Form/Checkbox/Checkbox.test.d.ts +1 -0
  65. package/dist/components/Form/Fieldset/Fieldset.d.ts +14 -0
  66. package/dist/components/Form/Fieldset/Fieldset.test.d.ts +1 -0
  67. package/dist/components/Form/FileUpload/FileItem/FileItem.d.ts +28 -0
  68. package/dist/components/Form/FileUpload/FileItem/FileItem.test.d.ts +1 -0
  69. package/dist/components/Form/FileUpload/FileUpload.d.ts +32 -0
  70. package/dist/components/Form/FileUpload/FileUpload.test.d.ts +1 -0
  71. package/dist/components/Form/Form.d.ts +5 -0
  72. package/dist/components/Form/Form.test.d.ts +1 -0
  73. package/dist/components/Form/FormControl/FormControl.d.ts +8 -0
  74. package/dist/components/Form/FormControl/FormControl.test.d.ts +1 -0
  75. package/dist/components/Form/FormErrorText/FormErrorText.d.ts +12 -0
  76. package/dist/components/Form/FormErrorText/FormErrorText.test.d.ts +1 -0
  77. package/dist/components/Form/FormGroup/FormGroup.d.ts +17 -0
  78. package/dist/components/Form/FormGroup/FormGroup.test.d.ts +1 -0
  79. package/dist/components/Form/FormHelperText/FormHelperText.d.ts +7 -0
  80. package/dist/components/Form/FormHelperText/FormHelperText.test.d.ts +1 -0
  81. package/dist/components/Form/FormSelectorWrapper/FormSelectorWrapper.d.ts +15 -0
  82. package/dist/components/Form/FormSelectorWrapper/FormSelectorWrapper.test.d.ts +1 -0
  83. package/dist/components/Form/FormStatusIndicator/FormStatusIndicator.d.ts +8 -0
  84. package/dist/components/Form/Input/Input.d.ts +14 -0
  85. package/dist/components/Form/Input/Input.test.d.ts +1 -0
  86. package/dist/components/Form/Label/Label.d.ts +5 -0
  87. package/dist/components/Form/Label/Label.test.d.ts +1 -0
  88. package/dist/components/Form/Radio/Radio.d.ts +11 -0
  89. package/dist/components/Form/Radio/Radio.test.d.ts +1 -0
  90. package/dist/components/Form/Select/MultiSelect/MultiOption.d.ts +6 -0
  91. package/dist/components/Form/Select/MultiSelect/MultiSelect.d.ts +3 -0
  92. package/dist/components/Form/Select/MultiSelect/MultiSelect.test.d.ts +63 -0
  93. package/dist/components/Form/Select/MultiSelect/MultiSelectKeyboardNavigation.test.d.ts +1 -0
  94. package/dist/components/Form/Select/MultiSelect/SelectButton.d.ts +4 -0
  95. package/dist/components/Form/Select/MultiSelect/SelectedOptions.d.ts +12 -0
  96. package/dist/components/Form/Select/MultiSelect/useArrowNavigation.d.ts +17 -0
  97. package/dist/components/Form/Select/MultiSelect/useMultiSelect.d.ts +16 -0
  98. package/dist/components/Form/Select/MultiSelect/useMultiSelect.test.d.ts +1 -0
  99. package/dist/components/Form/Select/MultiSelect/useSearch.d.ts +24 -0
  100. package/dist/components/Form/Select/Select.interfaces.d.ts +60 -0
  101. package/dist/components/Form/Select/SingleSelect/Option.d.ts +18 -0
  102. package/dist/components/Form/Select/SingleSelect/Option.test.d.ts +1 -0
  103. package/dist/components/Form/Select/SingleSelect/Select.d.ts +3 -0
  104. package/dist/components/Form/Select/SingleSelect/Select.test.d.ts +124 -0
  105. package/dist/components/Form/Select/SingleSelect/SelectKeyboardNavigation.test.d.ts +1 -0
  106. package/dist/components/Form/Select/SingleSelect/useArrowNavigation.d.ts +5 -0
  107. package/dist/components/Form/Select/SingleSelect/useSearch.d.ts +20 -0
  108. package/dist/components/Form/Select/useAddNewBtn.d.ts +19 -0
  109. package/dist/components/Form/Select/useSelectPositionList.d.ts +12 -0
  110. package/dist/components/Form/Textarea/Textarea.d.ts +7 -0
  111. package/dist/components/Form/Textarea/Textarea.test.d.ts +1 -0
  112. package/dist/components/Form/Toggle/Toggle.d.ts +11 -0
  113. package/dist/components/Form/Toggle/Toggle.test.d.ts +1 -0
  114. package/dist/components/Form/Wrapper/CheckboxWrapper/CheckboxWrapper.d.ts +12 -0
  115. package/dist/components/Form/Wrapper/CheckboxWrapper/CheckboxWrapper.test.d.ts +1 -0
  116. package/dist/components/Form/Wrapper/InputWrapper/InputWrapper.d.ts +18 -0
  117. package/dist/components/Form/Wrapper/InputWrapper/InputWrapper.test.d.ts +1 -0
  118. package/dist/components/Form/Wrapper/MultiSelectWrapper/MultiSelectWrapper.d.ts +16 -0
  119. package/dist/components/Form/Wrapper/MultiSelectWrapper/MultiSelectWrapper.test.d.ts +1 -0
  120. package/dist/components/Form/Wrapper/RadioWrapper/RadioWrapper.d.ts +10 -0
  121. package/dist/components/Form/Wrapper/RadioWrapper/RadioWrapper.test.d.ts +1 -0
  122. package/dist/components/Form/Wrapper/SelectWrapper/SelectWrapper.d.ts +16 -0
  123. package/dist/components/Form/Wrapper/SelectWrapper/SelectWrapper.test.d.ts +1 -0
  124. package/dist/components/Form/Wrapper/TextareaWrapper/TextareaWrapper.d.ts +16 -0
  125. package/dist/components/Form/Wrapper/TextareaWrapper/TextareaWrapper.test.d.ts +1 -0
  126. package/dist/components/Form/Wrapper/Wrapper/Wrapper.d.ts +27 -0
  127. package/dist/components/Form/Wrapper/Wrapper/Wrapper.test.d.ts +1 -0
  128. package/dist/components/Form/form.interfaces.d.ts +16 -0
  129. package/dist/components/Icon/Icon.d.ts +114 -0
  130. package/dist/components/Icon/Icon.test.d.ts +1 -0
  131. package/dist/components/InlineEditing/InlineCheckbox/InlineCheckbox.d.ts +6 -0
  132. package/dist/components/InlineEditing/InlineEditingContext.d.ts +10 -0
  133. package/dist/components/InlineEditing/InlineEditingSelect/InlineSelect.d.ts +6 -0
  134. package/dist/components/Layout/Card/Card.d.ts +16 -0
  135. package/dist/components/Layout/Card/Card.test.d.ts +0 -0
  136. package/dist/components/Layout/ContentHeader/ContentHeader.d.ts +24 -0
  137. package/dist/components/Layout/ContentHeader/ContentHeader.test.d.ts +1 -0
  138. package/dist/components/Layout/FormPage/FormWithStepper/FormSection/FormSection.d.ts +7 -0
  139. package/dist/components/Layout/FormPage/FormWithStepper/FormSection/FormSection.test.d.ts +1 -0
  140. package/dist/components/Layout/FormPage/FormWithStepper/FormStepper/FormStepper.d.ts +10 -0
  141. package/dist/components/Layout/FormPage/FormWithStepper/FormStepper/FormStepper.test.d.ts +1 -0
  142. package/dist/components/Layout/FormPage/FormWithStepper/FormWithStepper.d.ts +6 -0
  143. package/dist/components/Layout/FormPage/FormWithStepper/FormWithStepper.test.d.ts +1 -0
  144. package/dist/components/Link/Link.d.ts +14 -0
  145. package/dist/components/Link/Link.test.d.ts +1 -0
  146. package/dist/components/Notifications/Alert/AlertContainer/AlertContainer.d.ts +12 -0
  147. package/dist/components/Notifications/Alert/AlertContainer/AlertContainer.test.d.ts +1 -0
  148. package/dist/components/Notifications/Alert/AlertContainer/useAlertContainerHeightAnimation.d.ts +4 -0
  149. package/dist/components/Notifications/Alert/AlertItem/AlertItem.d.ts +22 -0
  150. package/dist/components/Notifications/Alert/AlertItem/AlertItem.test.d.ts +1 -0
  151. package/dist/components/Notifications/Alert/AlertProvider/AlertContext.d.ts +13 -0
  152. package/dist/components/Notifications/Alert/AlertProvider/AlertProvider.d.ts +22 -0
  153. package/dist/components/Notifications/Alert/AlertProvider/AlertProvider.test.d.ts +1 -0
  154. package/dist/components/Notifications/Alert/useAlert.d.ts +7 -0
  155. package/dist/components/Notifications/Alert/useAlert.test.d.ts +1 -0
  156. package/dist/components/Notifications/Banner/Banner.d.ts +11 -0
  157. package/dist/components/Notifications/Banner/Banner.test.d.ts +1 -0
  158. package/dist/components/Notifications/BaseModal/BaseModal.d.ts +21 -0
  159. package/dist/components/Notifications/BaseModal/BaseModal.test.d.ts +1 -0
  160. package/dist/components/Notifications/BaseModal/BaseModalActions/BaseModalActions.d.ts +13 -0
  161. package/dist/components/Notifications/BaseModal/BaseModalActions/BaseModalActions.test.d.ts +1 -0
  162. package/dist/components/Notifications/BaseModal/BaseModalContent/BaseModalContent.d.ts +8 -0
  163. package/dist/components/Notifications/BaseModal/BaseModalContent/BaseModalContent.test.d.ts +1 -0
  164. package/dist/components/Notifications/BaseModal/BaseModalContext.d.ts +2 -0
  165. package/dist/components/Notifications/BaseModal/BaseModalHeader/BaseModalHeader.d.ts +9 -0
  166. package/dist/components/Notifications/BaseModal/BaseModalHeader/BaseModalHeader.test.d.ts +1 -0
  167. package/dist/components/Notifications/Dialog/Dialog.d.ts +22 -0
  168. package/dist/components/Notifications/Dialog/Dialog.test.d.ts +1 -0
  169. package/dist/components/Notifications/Dialog/DialogActions/DialogActions.d.ts +6 -0
  170. package/dist/components/Notifications/Dialog/DialogActions/DialogActions.test.d.ts +1 -0
  171. package/dist/components/Notifications/Dialog/DialogTitle/DialogTitle.d.ts +9 -0
  172. package/dist/components/Notifications/Dialog/DialogTitle/DialogTitle.test.d.ts +1 -0
  173. package/dist/components/Notifications/DiscardChangesModal/DiscardChangesDialog/DiscardChangesDialog.d.ts +15 -0
  174. package/dist/components/Notifications/DiscardChangesModal/DiscardChangesDialog/DiscardChangesDialog.test.d.ts +1 -0
  175. package/dist/components/Notifications/DiscardChangesModal/DiscardChangesModal.d.ts +13 -0
  176. package/dist/components/Notifications/DiscardChangesModal/DiscardChangesModal.test.d.ts +1 -0
  177. package/dist/components/Notifications/Modal/Modal.d.ts +2 -0
  178. package/dist/components/Notifications/Modal/Modal.test.d.ts +1 -0
  179. package/dist/components/Notifications/Modal/ModalActions/ModalActions.d.ts +2 -0
  180. package/dist/components/Notifications/Modal/ModalContent/ModalContent.d.ts +2 -0
  181. package/dist/components/Notifications/Modal/ModalHeader/ModalHeader.d.ts +2 -0
  182. package/dist/components/Notifications/NotificationProvider/NotificationContext.d.ts +35 -0
  183. package/dist/components/Notifications/NotificationProvider/NotificationContext.test.d.ts +1 -0
  184. package/dist/components/Notifications/NotificationProvider/NotificationService.d.ts +2 -0
  185. package/dist/components/Notifications/NotificationProvider/notification.interfaces.d.ts +46 -0
  186. package/dist/components/Notifications/SideSheet/SideSheet.d.ts +10 -0
  187. package/dist/components/Notifications/SideSheet/SideSheet.test.d.ts +1 -0
  188. package/dist/components/Notifications/SideSheet/SideSheetActions/SideSheetActions.d.ts +2 -0
  189. package/dist/components/Notifications/SideSheet/SideSheetContent/SideSheetContent.d.ts +4 -0
  190. package/dist/components/Notifications/SideSheet/SideSheetHeader/SideSheetHeader.d.ts +4 -0
  191. package/dist/components/Notifications/SlideInModal/SlideInModal.d.ts +4 -0
  192. package/dist/components/Notifications/SlideInModal/SlideInModal.test.d.ts +1 -0
  193. package/dist/components/Pagination/Pagination.d.ts +19 -0
  194. package/dist/components/Pagination/Pagination.test.d.ts +1 -0
  195. package/dist/components/Popover/Popover.d.ts +13 -0
  196. package/dist/components/Popover/Popover.test.d.ts +1 -0
  197. package/dist/components/ProgressBar/ProgressBar.d.ts +9 -0
  198. package/dist/components/ProgressBar/ProgressBar.test.d.ts +1 -0
  199. package/dist/components/RequiredSign/RequiredSign.d.ts +5 -0
  200. package/dist/components/Skeleton/Skeleton.d.ts +7 -0
  201. package/dist/components/Skeleton/Skeleton.test.d.ts +1 -0
  202. package/dist/components/Spinner/Spinner.d.ts +6 -0
  203. package/dist/components/Spinner/Spinner.test.d.ts +1 -0
  204. package/dist/components/Stepper/Step.d.ts +15 -0
  205. package/dist/components/Stepper/Stepper.d.ts +8 -0
  206. package/dist/components/Stepper/Stepper.test.d.ts +1 -0
  207. package/dist/components/Tabs/Tab.d.ts +8 -0
  208. package/dist/components/Tabs/Tab.test.d.ts +1 -0
  209. package/dist/components/Tabs/TabButton.d.ts +9 -0
  210. package/dist/components/Tabs/TabButton.test.d.ts +1 -0
  211. package/dist/components/Tabs/Tabs.d.ts +13 -0
  212. package/dist/components/Tabs/Tabs.test.d.ts +1 -0
  213. package/dist/components/Tag/RemoveButton.d.ts +7 -0
  214. package/dist/components/Tag/Tag.d.ts +13 -0
  215. package/dist/components/Tag/Tag.test.d.ts +1 -0
  216. package/dist/components/TextEllipsis/TextEllipsis.d.ts +6 -0
  217. package/dist/components/TextEllipsis/TextEllipsis.test.d.ts +1 -0
  218. package/dist/components/Tiles/Tile.d.ts +15 -0
  219. package/dist/components/Tiles/Tile.test.d.ts +1 -0
  220. package/dist/components/Tiles/Tiles.d.ts +6 -0
  221. package/dist/components/Tiles/Tiles.test.d.ts +1 -0
  222. package/dist/components/Tooltip/Tooltip.d.ts +13 -0
  223. package/dist/components/Tooltip/Tooltip.test.d.ts +1 -0
  224. package/dist/components/Typography/Typography.d.ts +14 -0
  225. package/dist/components/Typography/Typography.test.d.ts +1 -0
  226. package/dist/components/_BaseStyling_/BaseStyling.d.ts +208 -0
  227. package/dist/components/_BaseStyling_/BaseStyling.test.d.ts +1 -0
  228. package/dist/components/_BaseStyling_/buttonBaseStyling.d.ts +14 -0
  229. package/dist/components/admin/layout/LeftNav/LeftNav.d.ts +13 -0
  230. package/dist/components/admin/layout/LeftNav/LeftNav.interfaces.d.ts +13 -0
  231. package/dist/components/admin/layout/LeftNav/LeftNav.test.d.ts +0 -0
  232. package/dist/components/admin/layout/LeftNav/LeftNavItem/ButtonLeftNavItem.d.ts +14 -0
  233. package/dist/components/admin/layout/LeftNav/LeftNavItem/LeftNavItem.d.ts +3 -0
  234. package/dist/components/admin/layout/LeftNav/LeftNavItem/LeftNavItem.interface.d.ts +11 -0
  235. package/dist/components/admin/layout/LeftNav/LeftNavItem/LeftNavItem.test.d.ts +0 -0
  236. package/dist/components/admin/layout/LeftNav/LeftNavItem/LinkLeftNavItem.d.ts +12 -0
  237. package/dist/components/admin/layout/LeftNav/LeftNavItem/useKeyboardNavigation.d.ts +13 -0
  238. package/dist/components/admin/layout/LeftNav/useRefItems.d.ts +22 -0
  239. package/dist/components/admin/layout/LeftNav/useRefItems.test.d.ts +1 -0
  240. package/dist/components/admin/layout/MicrofrontendContainer/MicrofrontendContainer.d.ts +8 -0
  241. package/dist/components/miscellaneous/IdentityProviderButton.d.ts +18 -0
  242. package/dist/components/miscellaneous/IdentityProviderButton.test.d.ts +1 -0
  243. package/dist/components/withReadOnly.d.ts +12 -0
  244. package/dist/components/withReadOnly.test.d.ts +1 -0
  245. package/dist/hooks/useAnimation.d.ts +5 -0
  246. package/dist/hooks/useAnimation.test.d.ts +1 -0
  247. package/dist/hooks/useClickOutside.d.ts +2 -0
  248. package/dist/hooks/useClickOutside.test.d.ts +1 -0
  249. package/dist/hooks/useDebouncedCallback.d.ts +1 -0
  250. package/dist/hooks/useDebouncedCallback.test.d.ts +1 -0
  251. package/dist/hooks/useDetermineStatusIcon.d.ts +3 -0
  252. package/dist/hooks/useDetermineStatusIcon.test.d.ts +1 -0
  253. package/dist/hooks/useFormSelector.d.ts +13 -0
  254. package/dist/hooks/useFormSelector.test.d.ts +1 -0
  255. package/dist/hooks/useFullHeightCollapse.d.ts +4 -0
  256. package/dist/hooks/useFullHeightCollapse.test.d.ts +1 -0
  257. package/dist/hooks/useGetDomRoot.d.ts +3 -0
  258. package/dist/hooks/usePosition.d.ts +50 -0
  259. package/dist/hooks/usePosition.test.d.ts +1 -0
  260. package/dist/hooks/useRepeatFocus.d.ts +7 -0
  261. package/dist/hooks/useRepeater.d.ts +10 -0
  262. package/dist/hooks/useRepeater.test.d.ts +6 -0
  263. package/dist/hooks/useScreenSize.d.ts +9 -0
  264. package/dist/hooks/useScreenSize.test.d.ts +1 -0
  265. package/dist/hooks/useScroll.d.ts +2 -0
  266. package/dist/hooks/useScroll.test.d.ts +1 -0
  267. package/dist/hooks/useSpacing.d.ts +18 -0
  268. package/dist/hooks/useSpacing.test.d.ts +1 -0
  269. package/dist/hooks/useUploadFile.d.ts +27 -0
  270. package/dist/hooks/useUploadFile.test.d.ts +1 -0
  271. package/dist/hooks/useWrapper.d.ts +7 -0
  272. package/dist/hooks/useWrapper.test.d.ts +1 -0
  273. package/dist/index.cjs.js +205 -0
  274. package/dist/index.cjs.js.map +1 -0
  275. package/dist/index.d.ts +175 -0
  276. package/dist/index.es.js +65380 -0
  277. package/dist/index.es.js.map +1 -0
  278. package/dist/interfaces.d.ts +9 -0
  279. package/dist/util/helper.d.ts +14 -0
  280. package/dist/util/helper.test.d.ts +1 -0
  281. package/dist/util/unitTestUtils.d.ts +12 -0
  282. package/dist/utils/statusUtils.d.ts +10 -0
  283. package/dist/variables.d.ts +8 -0
  284. package/package.json +144 -0
  285. package/src/_functions.scss +19 -0
  286. package/src/components/Breadcrumbs/Breadcrumbs.module.scss +54 -0
  287. package/src/components/Breadcrumbs/Breadcrumbs.tsx +84 -0
  288. package/src/components/Button/BaseButton.module.scss +48 -0
  289. package/src/components/Button/BaseButton.tsx +65 -0
  290. package/src/components/Button/Button.module.scss +58 -0
  291. package/src/components/Button/Button.tsx +70 -0
  292. package/src/components/Button/IconButton.module.scss +73 -0
  293. package/src/components/Button/IconButton.tsx +63 -0
  294. package/src/components/Button/Spinner.tsx +33 -0
  295. package/src/components/ContextMenu/ContextMenu.module.scss +41 -0
  296. package/src/components/ContextMenu/ContextMenu.tsx +206 -0
  297. package/src/components/ContextMenu/ContextMenuItem.module.scss +73 -0
  298. package/src/components/ContextMenu/ContextMenuItem.tsx +100 -0
  299. package/src/components/ContextMenu/ContextMenuService.ts +171 -0
  300. package/src/components/DataGrid/DataGrid.module.scss +51 -0
  301. package/src/components/DataGrid/DataGrid.tsx +225 -0
  302. package/src/components/DataGrid/DataGridActions/DataGridActions.module.scss +51 -0
  303. package/src/components/DataGrid/DataGridActions/DataGridActions.tsx +140 -0
  304. package/src/components/DataGrid/DataGridActions/DataGridColumnsToggle.module.scss +58 -0
  305. package/src/components/DataGrid/DataGridActions/DataGridColumnsToggle.tsx +107 -0
  306. package/src/components/DataGrid/DataGridBody/DataGridBody.module.scss +26 -0
  307. package/src/components/DataGrid/DataGridBody/DataGridBody.tsx +110 -0
  308. package/src/components/DataGrid/DataGridBody/DataGridCell/DataGridCell.module.scss +61 -0
  309. package/src/components/DataGrid/DataGridBody/DataGridCell/DataGridCell.tsx +131 -0
  310. package/src/components/DataGrid/DataGridBody/DataGridDrawer/DataGridDrawer.module.scss +60 -0
  311. package/src/components/DataGrid/DataGridBody/DataGridDrawer/DataGridDrawer.tsx +39 -0
  312. package/src/components/DataGrid/DataGridBody/DataGridDrawer/DataGridDrawerItem.module.scss +21 -0
  313. package/src/components/DataGrid/DataGridBody/DataGridDrawer/DataGridDrawerItem.tsx +47 -0
  314. package/src/components/DataGrid/DataGridBody/DataGridRow/DataGridRow.module.scss +127 -0
  315. package/src/components/DataGrid/DataGridBody/DataGridRow/DataGridRow.tsx +192 -0
  316. package/src/components/DataGrid/DataGridBody/DataGridRow/useNestedRow.tsx +143 -0
  317. package/src/components/DataGrid/DataGridBody/__snapshots__/DataGridBody.test.tsx.snap +262 -0
  318. package/src/components/DataGrid/DataGridFilters/DataGridDateFilter.tsx +65 -0
  319. package/src/components/DataGrid/DataGridFilters/DataGridFilter.module.scss +116 -0
  320. package/src/components/DataGrid/DataGridFilters/DataGridFilter.tsx +161 -0
  321. package/src/components/DataGrid/DataGridFilters/DataGridFilterPopover.tsx +172 -0
  322. package/src/components/DataGrid/DataGridFilters/DataGridFilterService.ts +124 -0
  323. package/src/components/DataGrid/DataGridFilters/DataGridFilterTag.tsx +146 -0
  324. package/src/components/DataGrid/DataGridFilters/DataGridFilterValueSelect.tsx +136 -0
  325. package/src/components/DataGrid/DataGridFilters/DataGridFilters.interfaces.ts +123 -0
  326. package/src/components/DataGrid/DataGridFilters/DataGridSearchbar.tsx +71 -0
  327. package/src/components/DataGrid/DataGridFilters/DataGridToolbar.module.scss +73 -0
  328. package/src/components/DataGrid/DataGridFilters/DataGridToolbar.tsx +132 -0
  329. package/src/components/DataGrid/DataGridFilters/DataGridToolbarWrapper.tsx +38 -0
  330. package/src/components/DataGrid/DataGridFilters/DateTimePicker/DateTimePicker.module.scss +136 -0
  331. package/src/components/DataGrid/DataGridFilters/DateTimePicker/DateTimePicker.tsx +267 -0
  332. package/src/components/DataGrid/DataGridFilters/DateTimePicker/DateTimePickerCalendarSection.tsx +103 -0
  333. package/src/components/DataGrid/DataGridFilters/DateTimePicker/DateTimePickerInputSection.tsx +121 -0
  334. package/src/components/DataGrid/DataGridFilters/DateTimePicker/DateTimeService.ts +30 -0
  335. package/src/components/DataGrid/DataGridFilters/DateTimePicker/SideMenu.tsx +50 -0
  336. package/src/components/DataGrid/DataGridFilters/FilterKeyMapper.ts +48 -0
  337. package/src/components/DataGrid/DataGridFilters/useFiltersReducer.tsx +73 -0
  338. package/src/components/DataGrid/DataGridHeader/DataGridHeader.module.scss +32 -0
  339. package/src/components/DataGrid/DataGridHeader/DataGridHeader.tsx +128 -0
  340. package/src/components/DataGrid/DataGridHeader/DataGridHeaderCell.module.scss +93 -0
  341. package/src/components/DataGrid/DataGridHeader/DataGridHeaderCell.tsx +83 -0
  342. package/src/components/DataGrid/dataGridMixins.module.scss +33 -0
  343. package/src/components/DataGrid/datagrid.interfaces.ts +30 -0
  344. package/src/components/DataGrid/testUtils.ts +117 -0
  345. package/src/components/DatePicker/DatePicker.module.scss +360 -0
  346. package/src/components/DatePicker/DatePicker.tsx +98 -0
  347. package/src/components/Form/Checkbox/Checkbox.module.scss +221 -0
  348. package/src/components/Form/Checkbox/Checkbox.tsx +205 -0
  349. package/src/components/Form/Fieldset/Fieldset.module.scss +49 -0
  350. package/src/components/Form/Fieldset/Fieldset.tsx +128 -0
  351. package/src/components/Form/FileUpload/FileItem/FileItem.module.scss +204 -0
  352. package/src/components/Form/FileUpload/FileItem/FileItem.tsx +271 -0
  353. package/src/components/Form/FileUpload/FileUpload.module.scss +241 -0
  354. package/src/components/Form/FileUpload/FileUpload.tsx +317 -0
  355. package/src/components/Form/Form.module.scss +19 -0
  356. package/src/components/Form/Form.tsx +35 -0
  357. package/src/components/Form/FormControl/FormControl.module.scss +65 -0
  358. package/src/components/Form/FormControl/FormControl.tsx +62 -0
  359. package/src/components/Form/FormErrorText/FormErrorText.module.scss +35 -0
  360. package/src/components/Form/FormErrorText/FormErrorText.tsx +65 -0
  361. package/src/components/Form/FormGroup/FormGroup.module.scss +24 -0
  362. package/src/components/Form/FormGroup/FormGroup.tsx +96 -0
  363. package/src/components/Form/FormHelperText/FormHelperText.module.scss +32 -0
  364. package/src/components/Form/FormHelperText/FormHelperText.tsx +43 -0
  365. package/src/components/Form/FormSection/FormSection.module.scss +12 -0
  366. package/src/components/Form/FormSelectorWrapper/FormSelectorWrapper.module.scss +68 -0
  367. package/src/components/Form/FormSelectorWrapper/FormSelectorWrapper.tsx +117 -0
  368. package/src/components/Form/FormStatusIndicator/FormStatusIndicator.tsx +75 -0
  369. package/src/components/Form/Input/Input.module.scss +186 -0
  370. package/src/components/Form/Input/Input.tsx +161 -0
  371. package/src/components/Form/Label/Label.module.scss +21 -0
  372. package/src/components/Form/Label/Label.tsx +40 -0
  373. package/src/components/Form/Radio/Radio.module.scss +196 -0
  374. package/src/components/Form/Radio/Radio.tsx +142 -0
  375. package/src/components/Form/Select/MultiSelect/MultiOption.tsx +66 -0
  376. package/src/components/Form/Select/MultiSelect/MultiSelect.module.scss +318 -0
  377. package/src/components/Form/Select/MultiSelect/MultiSelect.tsx +406 -0
  378. package/src/components/Form/Select/MultiSelect/SelectButton.module.scss +28 -0
  379. package/src/components/Form/Select/MultiSelect/SelectButton.tsx +37 -0
  380. package/src/components/Form/Select/MultiSelect/SelectedOptions.module.scss +39 -0
  381. package/src/components/Form/Select/MultiSelect/SelectedOptions.tsx +68 -0
  382. package/src/components/Form/Select/MultiSelect/useArrowNavigation.ts +133 -0
  383. package/src/components/Form/Select/MultiSelect/useMultiSelect.tsx +98 -0
  384. package/src/components/Form/Select/MultiSelect/useSearch.tsx +117 -0
  385. package/src/components/Form/Select/Select.interfaces.ts +84 -0
  386. package/src/components/Form/Select/SingleSelect/Option.tsx +116 -0
  387. package/src/components/Form/Select/SingleSelect/Select.module.scss +409 -0
  388. package/src/components/Form/Select/SingleSelect/Select.tsx +312 -0
  389. package/src/components/Form/Select/SingleSelect/useArrowNavigation.ts +177 -0
  390. package/src/components/Form/Select/SingleSelect/useSearch.tsx +113 -0
  391. package/src/components/Form/Select/useAddNewBtn.module.scss +66 -0
  392. package/src/components/Form/Select/useAddNewBtn.tsx +89 -0
  393. package/src/components/Form/Select/useSelectPositionList.ts +109 -0
  394. package/src/components/Form/Textarea/Textarea.module.scss +142 -0
  395. package/src/components/Form/Textarea/Textarea.tsx +97 -0
  396. package/src/components/Form/Toggle/Toggle.module.scss +214 -0
  397. package/src/components/Form/Toggle/Toggle.tsx +80 -0
  398. package/src/components/Form/Wrapper/CheckboxWrapper/CheckboxWrapper.module.scss +32 -0
  399. package/src/components/Form/Wrapper/CheckboxWrapper/CheckboxWrapper.tsx +99 -0
  400. package/src/components/Form/Wrapper/InputWrapper/InputWrapper.module.scss +79 -0
  401. package/src/components/Form/Wrapper/InputWrapper/InputWrapper.tsx +125 -0
  402. package/src/components/Form/Wrapper/MultiSelectWrapper/MultiSelectWrapper.module.scss +27 -0
  403. package/src/components/Form/Wrapper/MultiSelectWrapper/MultiSelectWrapper.tsx +88 -0
  404. package/src/components/Form/Wrapper/RadioWrapper/RadioWrapper.module.scss +30 -0
  405. package/src/components/Form/Wrapper/RadioWrapper/RadioWrapper.tsx +109 -0
  406. package/src/components/Form/Wrapper/SelectWrapper/SelectWrapper.module.scss +27 -0
  407. package/src/components/Form/Wrapper/SelectWrapper/SelectWrapper.tsx +89 -0
  408. package/src/components/Form/Wrapper/TextareaWrapper/TextareaWrapper.module.scss +100 -0
  409. package/src/components/Form/Wrapper/TextareaWrapper/TextareaWrapper.tsx +154 -0
  410. package/src/components/Form/Wrapper/Wrapper/Wrapper.module.scss +87 -0
  411. package/src/components/Form/Wrapper/Wrapper/Wrapper.tsx +116 -0
  412. package/src/components/Form/form.interfaces.ts +34 -0
  413. package/src/components/Icon/Icon.module.scss +455 -0
  414. package/src/components/Icon/Icon.tsx +152 -0
  415. package/src/components/InlineEditing/InlineCheckbox/InlineCheckbox.tsx +40 -0
  416. package/src/components/InlineEditing/InlineEditingContext.tsx +32 -0
  417. package/src/components/InlineEditing/InlineEditingSelect/InlineSelect.tsx +44 -0
  418. package/src/components/Layout/Card/Card.module.scss +68 -0
  419. package/src/components/Layout/Card/Card.tsx +108 -0
  420. package/src/components/Layout/ContentHeader/ContentHeader.module.scss +95 -0
  421. package/src/components/Layout/ContentHeader/ContentHeader.tsx +146 -0
  422. package/src/components/Layout/FormPage/FormWithStepper/FormSection/FormSection.module.scss +12 -0
  423. package/src/components/Layout/FormPage/FormWithStepper/FormSection/FormSection.tsx +53 -0
  424. package/src/components/Layout/FormPage/FormWithStepper/FormStepper/FormStepper.module.scss +25 -0
  425. package/src/components/Layout/FormPage/FormWithStepper/FormStepper/FormStepper.tsx +54 -0
  426. package/src/components/Layout/FormPage/FormWithStepper/FormWithStepper.module.scss +36 -0
  427. package/src/components/Layout/FormPage/FormWithStepper/FormWithStepper.tsx +32 -0
  428. package/src/components/Link/Link.module.scss +106 -0
  429. package/src/components/Link/Link.tsx +111 -0
  430. package/src/components/Notifications/Alert/AlertContainer/AlertContainer.module.scss +57 -0
  431. package/src/components/Notifications/Alert/AlertContainer/AlertContainer.tsx +52 -0
  432. package/src/components/Notifications/Alert/AlertContainer/useAlertContainerHeightAnimation.ts +47 -0
  433. package/src/components/Notifications/Alert/AlertItem/AlertItem.module.scss +279 -0
  434. package/src/components/Notifications/Alert/AlertItem/AlertItem.tsx +214 -0
  435. package/src/components/Notifications/Alert/AlertProvider/AlertContext.ts +42 -0
  436. package/src/components/Notifications/Alert/AlertProvider/AlertProvider.tsx +173 -0
  437. package/src/components/Notifications/Alert/alertVariables.scss +17 -0
  438. package/src/components/Notifications/Alert/useAlert.ts +30 -0
  439. package/src/components/Notifications/Banner/Banner.module.scss +76 -0
  440. package/src/components/Notifications/Banner/Banner.tsx +78 -0
  441. package/src/components/Notifications/BaseModal/BaseModal.module.scss +76 -0
  442. package/src/components/Notifications/BaseModal/BaseModal.tsx +186 -0
  443. package/src/components/Notifications/BaseModal/BaseModalActions/BaseModalActions.module.scss +65 -0
  444. package/src/components/Notifications/BaseModal/BaseModalActions/BaseModalActions.tsx +66 -0
  445. package/src/components/Notifications/BaseModal/BaseModalContent/BaseModalContent.module.scss +25 -0
  446. package/src/components/Notifications/BaseModal/BaseModalContent/BaseModalContent.tsx +60 -0
  447. package/src/components/Notifications/BaseModal/BaseModalContext.ts +18 -0
  448. package/src/components/Notifications/BaseModal/BaseModalHeader/BaseModalHeader.module.scss +43 -0
  449. package/src/components/Notifications/BaseModal/BaseModalHeader/BaseModalHeader.tsx +69 -0
  450. package/src/components/Notifications/Dialog/Dialog.module.scss +31 -0
  451. package/src/components/Notifications/Dialog/Dialog.tsx +143 -0
  452. package/src/components/Notifications/Dialog/DialogActions/DialogActions.module.scss +35 -0
  453. package/src/components/Notifications/Dialog/DialogActions/DialogActions.tsx +48 -0
  454. package/src/components/Notifications/Dialog/DialogTitle/DialogTitle.module.scss +58 -0
  455. package/src/components/Notifications/Dialog/DialogTitle/DialogTitle.tsx +75 -0
  456. package/src/components/Notifications/DiscardChangesModal/DiscardChangesDialog/DiscardChangesDialog.tsx +77 -0
  457. package/src/components/Notifications/DiscardChangesModal/DiscardChangesModal.tsx +77 -0
  458. package/src/components/Notifications/Modal/Modal.tsx +18 -0
  459. package/src/components/Notifications/Modal/ModalActions/ModalActions.tsx +18 -0
  460. package/src/components/Notifications/Modal/ModalContent/ModalContent.tsx +18 -0
  461. package/src/components/Notifications/Modal/ModalHeader/ModalHeader.tsx +18 -0
  462. package/src/components/Notifications/NotificationProvider/NotificationContext.tsx +217 -0
  463. package/src/components/Notifications/NotificationProvider/NotificationService.ts +33 -0
  464. package/src/components/Notifications/NotificationProvider/notification.interfaces.ts +68 -0
  465. package/src/components/Notifications/SideSheet/SideSheet.module.scss +97 -0
  466. package/src/components/Notifications/SideSheet/SideSheet.tsx +114 -0
  467. package/src/components/Notifications/SideSheet/SideSheetActions/SideSheetActions.tsx +18 -0
  468. package/src/components/Notifications/SideSheet/SideSheetContent/SideSheetContent.module.scss +19 -0
  469. package/src/components/Notifications/SideSheet/SideSheetContent/SideSheetContent.tsx +25 -0
  470. package/src/components/Notifications/SideSheet/SideSheetHeader/SideSheetHeader.module.scss +19 -0
  471. package/src/components/Notifications/SideSheet/SideSheetHeader/SideSheetHeader.tsx +25 -0
  472. package/src/components/Notifications/SlideInModal/SlideInModal.module.scss +54 -0
  473. package/src/components/Notifications/SlideInModal/SlideInModal.tsx +75 -0
  474. package/src/components/Pagination/Pagination.module.scss +162 -0
  475. package/src/components/Pagination/Pagination.tsx +235 -0
  476. package/src/components/Popover/Popover.module.scss +42 -0
  477. package/src/components/Popover/Popover.tsx +142 -0
  478. package/src/components/ProgressBar/ProgressBar.module.scss +95 -0
  479. package/src/components/ProgressBar/ProgressBar.tsx +75 -0
  480. package/src/components/RequiredSign/RequiredSign.tsx +28 -0
  481. package/src/components/Skeleton/Skeleton.module.scss +36 -0
  482. package/src/components/Skeleton/Skeleton.tsx +48 -0
  483. package/src/components/Spinner/Spinner.module.scss +33 -0
  484. package/src/components/Spinner/Spinner.tsx +61 -0
  485. package/src/components/Stepper/Step.module.scss +301 -0
  486. package/src/components/Stepper/Step.tsx +116 -0
  487. package/src/components/Stepper/Stepper.module.scss +17 -0
  488. package/src/components/Stepper/Stepper.tsx +53 -0
  489. package/src/components/Tabs/Tab.module.scss +27 -0
  490. package/src/components/Tabs/Tab.tsx +41 -0
  491. package/src/components/Tabs/TabButton.module.scss +87 -0
  492. package/src/components/Tabs/TabButton.tsx +66 -0
  493. package/src/components/Tabs/Tabs.module.scss +58 -0
  494. package/src/components/Tabs/Tabs.tsx +217 -0
  495. package/src/components/Tag/RemoveButton.module.scss +42 -0
  496. package/src/components/Tag/RemoveButton.tsx +53 -0
  497. package/src/components/Tag/Tag.module.scss +43 -0
  498. package/src/components/Tag/Tag.tsx +79 -0
  499. package/src/components/TextEllipsis/TextEllipsis.module.scss +35 -0
  500. package/src/components/TextEllipsis/TextEllipsis.tsx +80 -0
  501. package/src/components/Tiles/Tile.module.scss +91 -0
  502. package/src/components/Tiles/Tile.tsx +105 -0
  503. package/src/components/Tiles/Tiles.module.scss +27 -0
  504. package/src/components/Tiles/Tiles.tsx +70 -0
  505. package/src/components/Tooltip/Tooltip.module.scss +221 -0
  506. package/src/components/Tooltip/Tooltip.tsx +251 -0
  507. package/src/components/Typography/Typography.module.scss +80 -0
  508. package/src/components/Typography/Typography.tsx +111 -0
  509. package/src/components/_BaseStyling_/BaseStyling.tsx +481 -0
  510. package/src/components/_BaseStyling_/buttonBaseStyling.ts +123 -0
  511. package/src/components/admin/layout/LeftNav/LeftNav.interfaces.ts +30 -0
  512. package/src/components/admin/layout/LeftNav/LeftNav.module.scss +66 -0
  513. package/src/components/admin/layout/LeftNav/LeftNav.tsx +96 -0
  514. package/src/components/admin/layout/LeftNav/LeftNavItem/ButtonLeftNavItem.tsx +173 -0
  515. package/src/components/admin/layout/LeftNav/LeftNavItem/LeftNavItem.interface.ts +28 -0
  516. package/src/components/admin/layout/LeftNav/LeftNavItem/LeftNavItem.module.scss +222 -0
  517. package/src/components/admin/layout/LeftNav/LeftNavItem/LeftNavItem.tsx +34 -0
  518. package/src/components/admin/layout/LeftNav/LeftNavItem/LinkLeftNavItem.tsx +106 -0
  519. package/src/components/admin/layout/LeftNav/LeftNavItem/useKeyboardNavigation.ts +75 -0
  520. package/src/components/admin/layout/LeftNav/useRefItems.ts +280 -0
  521. package/src/components/admin/layout/MicrofrontendContainer/MicrofrontendContainer.module.scss +25 -0
  522. package/src/components/admin/layout/MicrofrontendContainer/MicrofrontendContainer.tsx +47 -0
  523. package/src/components/miscellaneous/IdentityProviderButton.module.scss +31 -0
  524. package/src/components/miscellaneous/IdentityProviderButton.tsx +92 -0
  525. package/src/components/withReadOnly.tsx +121 -0
  526. package/src/font/README.md +47 -0
  527. package/src/font/icomoon.eot +0 -0
  528. package/src/font/icomoon.svg +111 -0
  529. package/src/font/icomoon.ttf +0 -0
  530. package/src/font/icomoon.woff +0 -0
  531. package/src/font/selection.json +1 -0
  532. package/src/hooks/useAnimation.ts +36 -0
  533. package/src/hooks/useClickOutside.ts +42 -0
  534. package/src/hooks/useDebouncedCallback.tsx +34 -0
  535. package/src/hooks/useDetermineStatusIcon.tsx +33 -0
  536. package/src/hooks/useFormSelector.ts +63 -0
  537. package/src/hooks/useFullHeightCollapse.ts +33 -0
  538. package/src/hooks/useGetDomRoot.ts +40 -0
  539. package/src/hooks/usePosition.ts +387 -0
  540. package/src/hooks/useRepeatFocus.tsx +89 -0
  541. package/src/hooks/useRepeater.ts +50 -0
  542. package/src/hooks/useScreenSize.ts +60 -0
  543. package/src/hooks/useScroll.ts +32 -0
  544. package/src/hooks/useSpacing.ts +58 -0
  545. package/src/hooks/useUploadFile.tsx +141 -0
  546. package/src/hooks/useWrapper.ts +33 -0
  547. package/src/index.ts +237 -0
  548. package/src/interfaces.ts +37 -0
  549. package/src/mixins.module.scss +371 -0
  550. package/src/readyclasses.module.scss +64 -0
  551. package/src/types.d.ts +20 -0
  552. package/src/util/helper.tsx +219 -0
  553. package/src/util/unitTestUtils.ts +32 -0
  554. package/src/utils/statusUtils.ts +51 -0
  555. package/src/variables.scss +38 -0
  556. package/src/variables.ts +32 -0
@@ -0,0 +1,855 @@
1
+ import { default as React, ReactElement } from 'react';
2
+ import { HeaderCell } from '../../datagrid.interfaces';
3
+ export interface UseNestedRowProps<T> {
4
+ indentationLevels?: {
5
+ level: number;
6
+ isLastChild: boolean;
7
+ }[];
8
+ item?: T;
9
+ nestedItemsKey?: keyof T;
10
+ rowTemplate?: ({ item, index }: {
11
+ item: T;
12
+ index: number;
13
+ }) => ReactElement;
14
+ isRowExpanded?: boolean;
15
+ indentationLevel: number;
16
+ enableNestedRow?: boolean;
17
+ rowProps: {
18
+ searchValue?: string;
19
+ headers?: HeaderCell[];
20
+ spacing?: React.CSSProperties;
21
+ disableContextMenuColumn?: boolean;
22
+ };
23
+ }
24
+ export declare const useNestedRow: <T>({ indentationLevels, item, nestedItemsKey, rowTemplate, isRowExpanded, indentationLevel, enableNestedRow, rowProps: { searchValue, headers, spacing, disableContextMenuColumn } }: UseNestedRowProps<T>) => {
25
+ renderNestedRow: () => React.ReactElement<any, string | React.JSXElementConstructor<any>>[] | undefined;
26
+ renderNestedRowConnectors: () => (React.JSX.Element | null)[] | null;
27
+ getNestedChildSpacing: (spacing: React.CSSProperties | undefined, index: number) => {
28
+ paddingLeft: string | number | undefined;
29
+ accentColor?: import("csstype").Property.AccentColor | undefined;
30
+ alignContent?: import("csstype").Property.AlignContent | undefined;
31
+ alignItems?: import("csstype").Property.AlignItems | undefined;
32
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
33
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
34
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
35
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
36
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
37
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
38
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
39
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
40
+ animationName?: import("csstype").Property.AnimationName | undefined;
41
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
42
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
43
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
44
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
45
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
46
+ appearance?: import("csstype").Property.Appearance | undefined;
47
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
48
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
49
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
50
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
51
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
52
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
53
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
54
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
55
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
56
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
57
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
58
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
59
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
60
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
61
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
62
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
63
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
64
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
65
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
66
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
67
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
68
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
69
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
70
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
71
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
72
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
73
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
74
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
75
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
76
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
77
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
78
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
79
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
80
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
81
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
82
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
83
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
84
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
85
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
86
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
87
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
88
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
89
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
90
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
91
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
92
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
93
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
94
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
95
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
96
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
97
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
98
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
99
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
100
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
101
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
102
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
103
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
104
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
105
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
106
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
107
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
108
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
109
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
110
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
111
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
112
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
113
+ breakInside?: import("csstype").Property.BreakInside | undefined;
114
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
115
+ caretColor?: import("csstype").Property.CaretColor | undefined;
116
+ caretShape?: import("csstype").Property.CaretShape | undefined;
117
+ clear?: import("csstype").Property.Clear | undefined;
118
+ clipPath?: import("csstype").Property.ClipPath | undefined;
119
+ color?: import("csstype").Property.Color | undefined;
120
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
121
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
122
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
123
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
124
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
125
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
126
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
127
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
128
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
129
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
130
+ contain?: import("csstype").Property.Contain | undefined;
131
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
132
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
133
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
134
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
135
+ containerName?: import("csstype").Property.ContainerName | undefined;
136
+ containerType?: import("csstype").Property.ContainerType | undefined;
137
+ content?: import("csstype").Property.Content | undefined;
138
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
139
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
140
+ counterReset?: import("csstype").Property.CounterReset | undefined;
141
+ counterSet?: import("csstype").Property.CounterSet | undefined;
142
+ cursor?: import("csstype").Property.Cursor | undefined;
143
+ direction?: import("csstype").Property.Direction | undefined;
144
+ display?: import("csstype").Property.Display | undefined;
145
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
146
+ filter?: import("csstype").Property.Filter | undefined;
147
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
148
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
149
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
150
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
151
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
152
+ float?: import("csstype").Property.Float | undefined;
153
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
154
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
155
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
156
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
157
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
158
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
159
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
160
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
161
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
162
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
163
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
164
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
165
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
166
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
167
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
168
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
169
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
170
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
171
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
172
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
173
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
174
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
175
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
176
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
177
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
178
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
179
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
180
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
181
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
182
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
183
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
184
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
185
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
186
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
187
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
188
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
189
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
190
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
191
+ height?: import("csstype").Property.Height<string | number> | undefined;
192
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
193
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
194
+ hyphens?: import("csstype").Property.Hyphens | undefined;
195
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
196
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
197
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
198
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
199
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
200
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
201
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
202
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
203
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
204
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
205
+ isolation?: import("csstype").Property.Isolation | undefined;
206
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
207
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
208
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
209
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
210
+ left?: import("csstype").Property.Left<string | number> | undefined;
211
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
212
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
213
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
214
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
215
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
216
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
217
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
218
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
219
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
220
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
221
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
222
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
223
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
224
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
225
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
226
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
227
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
228
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
229
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
230
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
231
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
232
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
233
+ maskClip?: import("csstype").Property.MaskClip | undefined;
234
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
235
+ maskImage?: import("csstype").Property.MaskImage | undefined;
236
+ maskMode?: import("csstype").Property.MaskMode | undefined;
237
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
238
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
239
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
240
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
241
+ maskType?: import("csstype").Property.MaskType | undefined;
242
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
243
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
244
+ mathShift?: import("csstype").Property.MathShift | undefined;
245
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
246
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
247
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
248
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
249
+ maxLines?: import("csstype").Property.MaxLines | undefined;
250
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
251
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
252
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
253
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
254
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
255
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
256
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
257
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
258
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
259
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
260
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
261
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
262
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
263
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
264
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
265
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
266
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
267
+ opacity?: import("csstype").Property.Opacity | undefined;
268
+ order?: import("csstype").Property.Order | undefined;
269
+ orphans?: import("csstype").Property.Orphans | undefined;
270
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
271
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
272
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
273
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
274
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
275
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
276
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
277
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
278
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
279
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
280
+ overflowX?: import("csstype").Property.OverflowX | undefined;
281
+ overflowY?: import("csstype").Property.OverflowY | undefined;
282
+ overlay?: import("csstype").Property.Overlay | undefined;
283
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
284
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
285
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
286
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
287
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
288
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
289
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
290
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
291
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
292
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
293
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
294
+ page?: import("csstype").Property.Page | undefined;
295
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
296
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
297
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
298
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
299
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
300
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
301
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
302
+ position?: import("csstype").Property.Position | undefined;
303
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
304
+ quotes?: import("csstype").Property.Quotes | undefined;
305
+ resize?: import("csstype").Property.Resize | undefined;
306
+ right?: import("csstype").Property.Right<string | number> | undefined;
307
+ rotate?: import("csstype").Property.Rotate | undefined;
308
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
309
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
310
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
311
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
312
+ scale?: import("csstype").Property.Scale | undefined;
313
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
314
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
315
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
316
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
317
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
318
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
319
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
320
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
321
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
322
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
323
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
324
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
325
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
326
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
327
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
328
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
329
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
330
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
331
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
332
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
333
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
334
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
335
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
336
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
337
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
338
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
339
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
340
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
341
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
342
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
343
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
344
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
345
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
346
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
347
+ textAlign?: import("csstype").Property.TextAlign | undefined;
348
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
349
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
350
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
351
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
352
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
353
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
354
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
355
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
356
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
357
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
358
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
359
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
360
+ textJustify?: import("csstype").Property.TextJustify | undefined;
361
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
362
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
363
+ textRendering?: import("csstype").Property.TextRendering | undefined;
364
+ textShadow?: import("csstype").Property.TextShadow | undefined;
365
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
366
+ textTransform?: import("csstype").Property.TextTransform | undefined;
367
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
368
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
369
+ textWrap?: import("csstype").Property.TextWrap | undefined;
370
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
371
+ top?: import("csstype").Property.Top<string | number> | undefined;
372
+ touchAction?: import("csstype").Property.TouchAction | undefined;
373
+ transform?: import("csstype").Property.Transform | undefined;
374
+ transformBox?: import("csstype").Property.TransformBox | undefined;
375
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
376
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
377
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
378
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
379
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
380
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
381
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
382
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
383
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
384
+ userSelect?: import("csstype").Property.UserSelect | undefined;
385
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
386
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
387
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
388
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
389
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
390
+ visibility?: import("csstype").Property.Visibility | undefined;
391
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
392
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
393
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
394
+ widows?: import("csstype").Property.Widows | undefined;
395
+ width?: import("csstype").Property.Width<string | number> | undefined;
396
+ willChange?: import("csstype").Property.WillChange | undefined;
397
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
398
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
399
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
400
+ writingMode?: import("csstype").Property.WritingMode | undefined;
401
+ zIndex?: import("csstype").Property.ZIndex | undefined;
402
+ zoom?: import("csstype").Property.Zoom | undefined;
403
+ all?: import("csstype").Property.All | undefined;
404
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
405
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
406
+ background?: import("csstype").Property.Background<string | number> | undefined;
407
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
408
+ border?: import("csstype").Property.Border<string | number> | undefined;
409
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
410
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
411
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
412
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
413
+ borderColor?: import("csstype").Property.BorderColor | undefined;
414
+ borderImage?: import("csstype").Property.BorderImage | undefined;
415
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
416
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
417
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
418
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
419
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
420
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
421
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
422
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
423
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
424
+ caret?: import("csstype").Property.Caret | undefined;
425
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
426
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
427
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
428
+ container?: import("csstype").Property.Container | undefined;
429
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
430
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
431
+ font?: import("csstype").Property.Font | undefined;
432
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
433
+ grid?: import("csstype").Property.Grid | undefined;
434
+ gridArea?: import("csstype").Property.GridArea | undefined;
435
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
436
+ gridRow?: import("csstype").Property.GridRow | undefined;
437
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
438
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
439
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
440
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
441
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
442
+ listStyle?: import("csstype").Property.ListStyle | undefined;
443
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
444
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
445
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
446
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
447
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
448
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
449
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
450
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
451
+ overflow?: import("csstype").Property.Overflow | undefined;
452
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
453
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
454
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
455
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
456
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
457
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
458
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
459
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
460
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
461
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
462
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
463
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
464
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
465
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
466
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
467
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
468
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
469
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
470
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
471
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
472
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
473
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
474
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
475
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
476
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
477
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
478
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
479
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
480
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
481
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
482
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
483
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
484
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
485
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
486
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
487
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
488
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
489
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
490
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
491
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
492
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
493
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
494
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
495
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
496
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
497
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
498
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
499
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
500
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
501
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
502
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
503
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
504
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
505
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
506
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
507
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
508
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
509
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
510
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
511
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
512
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
513
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
514
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
515
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
516
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
517
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
518
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
519
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
520
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
521
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
522
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
523
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
524
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
525
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
526
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
527
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
528
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
529
+ msFilter?: import("csstype").Property.MsFilter | undefined;
530
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
531
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
532
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
533
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
534
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
535
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
536
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
537
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
538
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
539
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
540
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
541
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
542
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
543
+ msOrder?: import("csstype").Property.Order | undefined;
544
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
545
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
546
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
547
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
548
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
549
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
550
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
551
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
552
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
553
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
554
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
555
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
556
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
557
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
558
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
559
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
560
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
561
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
562
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
563
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
564
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
565
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
566
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
567
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
568
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
569
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
570
+ msTransform?: import("csstype").Property.Transform | undefined;
571
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
572
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
573
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
574
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
575
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
576
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
577
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
578
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
579
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
580
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
581
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
582
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
583
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
584
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
585
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
586
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
587
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
588
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
589
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
590
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
591
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
592
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
593
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
594
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
595
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
596
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
597
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
598
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
599
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
600
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
601
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
602
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
603
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
604
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
605
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
606
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
607
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
608
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
609
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
610
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
611
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
612
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
613
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
614
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
615
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
616
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
617
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
618
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
619
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
620
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
621
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
622
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
623
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
624
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
625
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
626
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
627
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
628
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
629
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
630
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
631
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
632
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
633
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
634
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
635
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
636
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
637
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
638
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
639
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
640
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
641
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
642
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
643
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
644
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
645
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
646
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
647
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
648
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
649
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
650
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
651
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
652
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
653
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
654
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
655
+ WebkitOrder?: import("csstype").Property.Order | undefined;
656
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
657
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
658
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
659
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
660
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
661
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
662
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
663
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
664
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
665
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
666
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
667
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
668
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
669
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
670
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
671
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
672
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
673
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
674
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
675
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
676
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
677
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
678
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
679
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
680
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
681
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
682
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
683
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
684
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
685
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
686
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
687
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
688
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
689
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
690
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
691
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
692
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
693
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
694
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
695
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
696
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
697
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
698
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
699
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
700
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
701
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
702
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
703
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
704
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
705
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
706
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
707
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
708
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
709
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
710
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
711
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
712
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
713
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
714
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
715
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
716
+ azimuth?: import("csstype").Property.Azimuth | undefined;
717
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
718
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
719
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
720
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
721
+ boxLines?: import("csstype").Property.BoxLines | undefined;
722
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
723
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
724
+ boxPack?: import("csstype").Property.BoxPack | undefined;
725
+ clip?: import("csstype").Property.Clip | undefined;
726
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
727
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
728
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
729
+ imeMode?: import("csstype").Property.ImeMode | undefined;
730
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
731
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
732
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
733
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
734
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
735
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
736
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
737
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
738
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
739
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
740
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
741
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
742
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
743
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
744
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
745
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
746
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
747
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
748
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
749
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
750
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
751
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
752
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
753
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
754
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
755
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
756
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
757
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
758
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
759
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
760
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
761
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
762
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
763
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
764
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
765
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
766
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
767
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
768
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
769
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
770
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
771
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
772
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
773
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
774
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
775
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
776
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
777
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
778
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
779
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
780
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
781
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
782
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
783
+ MozTransform?: import("csstype").Property.Transform | undefined;
784
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
785
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
786
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
787
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
788
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
789
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
790
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
791
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
792
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
793
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
794
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
795
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
796
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
797
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
798
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
799
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
800
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
801
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
802
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
803
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
804
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
805
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
806
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
807
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
808
+ OTransform?: import("csstype").Property.Transform | undefined;
809
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
810
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
811
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
812
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
813
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
814
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
815
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
816
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
817
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
818
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
819
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
820
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
821
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
822
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
823
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
824
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
825
+ clipRule?: import("csstype").Property.ClipRule | undefined;
826
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
827
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
828
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
829
+ fill?: import("csstype").Property.Fill | undefined;
830
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
831
+ fillRule?: import("csstype").Property.FillRule | undefined;
832
+ floodColor?: import("csstype").Property.FloodColor | undefined;
833
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
834
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
835
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
836
+ marker?: import("csstype").Property.Marker | undefined;
837
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
838
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
839
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
840
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
841
+ stopColor?: import("csstype").Property.StopColor | undefined;
842
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
843
+ stroke?: import("csstype").Property.Stroke | undefined;
844
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
845
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
846
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
847
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
848
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
849
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
850
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
851
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
852
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
853
+ };
854
+ hasNestedChildren: NonNullable<T>[keyof T] | undefined;
855
+ };