@talxis/base-controls 1.2509.6 → 1.2512.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (502) hide show
  1. package/dist/components/DatasetControl/DatasetControl.d.ts +2 -2
  2. package/dist/components/DatasetControl/DatasetControl.js +78 -57
  3. package/dist/components/DatasetControl/DatasetControl.js.map +1 -1
  4. package/dist/components/DatasetControl/DatasetControlModel.d.ts +16 -0
  5. package/dist/components/DatasetControl/DatasetControlModel.js +32 -0
  6. package/dist/components/DatasetControl/DatasetControlModel.js.map +1 -0
  7. package/dist/components/DatasetControl/Filtering/DatasetColumnFiltering.d.ts +3 -0
  8. package/dist/components/DatasetControl/Filtering/DatasetColumnFiltering.js +166 -0
  9. package/dist/components/DatasetControl/Filtering/DatasetColumnFiltering.js.map +1 -0
  10. package/dist/components/DatasetControl/Filtering/DatasetColumnFilteringModel.d.ts +15 -0
  11. package/dist/components/DatasetControl/Filtering/DatasetColumnFilteringModel.js +59 -0
  12. package/dist/components/DatasetControl/Filtering/DatasetColumnFilteringModel.js.map +1 -0
  13. package/dist/components/DatasetControl/Filtering/interfaces.d.ts +31 -0
  14. package/dist/components/DatasetControl/Filtering/styles.d.ts +16 -0
  15. package/dist/components/DatasetControl/Filtering/styles.js +23 -0
  16. package/dist/components/DatasetControl/Filtering/styles.js.map +1 -0
  17. package/dist/components/DatasetControl/Filtering/translations.d.ts +154 -0
  18. package/dist/components/DatasetControl/Filtering/translations.js +43 -0
  19. package/dist/components/DatasetControl/Filtering/translations.js.map +1 -0
  20. package/dist/components/DatasetControl/Header/Header.d.ts +5 -0
  21. package/dist/components/DatasetControl/Header/Header.js +79 -0
  22. package/dist/components/DatasetControl/Header/Header.js.map +1 -0
  23. package/dist/components/DatasetControl/Header/styles.d.ts +19 -0
  24. package/dist/components/DatasetControl/Header/styles.js +26 -0
  25. package/dist/components/DatasetControl/Header/styles.js.map +1 -0
  26. package/dist/components/DatasetControl/Pagination/Pagination.d.ts +5 -0
  27. package/dist/components/DatasetControl/Pagination/Pagination.js +93 -0
  28. package/dist/components/DatasetControl/Pagination/Pagination.js.map +1 -0
  29. package/dist/components/DatasetControl/Pagination/PaginationModel.d.ts +10 -0
  30. package/dist/components/DatasetControl/Pagination/PaginationModel.js +45 -0
  31. package/dist/components/DatasetControl/Pagination/PaginationModel.js.map +1 -0
  32. package/dist/components/DatasetControl/Pagination/styles.d.ts +23 -0
  33. package/dist/components/DatasetControl/Pagination/styles.js +29 -0
  34. package/dist/components/DatasetControl/Pagination/styles.js.map +1 -0
  35. package/dist/components/DatasetControl/QuickFind/QuickFind.d.ts +4 -12
  36. package/dist/components/DatasetControl/QuickFind/QuickFind.js +37 -32
  37. package/dist/components/DatasetControl/QuickFind/QuickFind.js.map +1 -1
  38. package/dist/components/DatasetControl/QuickFind/styles.d.ts +1 -1
  39. package/dist/components/DatasetControl/QuickFind/styles.js +2 -2
  40. package/dist/components/DatasetControl/QuickFind/styles.js.map +1 -1
  41. package/dist/components/DatasetControl/index.d.ts +0 -1
  42. package/dist/components/DatasetControl/index.js +0 -2
  43. package/dist/components/DatasetControl/index.js.map +1 -1
  44. package/dist/components/DatasetControl/interfaces.d.ts +68 -23
  45. package/dist/components/DatasetControl/styles.d.ts +4 -11
  46. package/dist/components/DatasetControl/styles.js +5 -11
  47. package/dist/components/DatasetControl/styles.js.map +1 -1
  48. package/dist/components/DatasetControl/translations.d.ts +44 -0
  49. package/dist/components/DatasetControl/translations.js +15 -1
  50. package/dist/components/DatasetControl/translations.js.map +1 -1
  51. package/dist/components/DatasetControl/useModel.d.ts +4 -0
  52. package/dist/components/DatasetControl/useModel.js +9 -0
  53. package/dist/components/DatasetControl/useModel.js.map +1 -0
  54. package/dist/components/Grid/{core/components/Cell → cells/cell}/Cell.d.ts +3 -3
  55. package/dist/components/Grid/cells/cell/Cell.js +231 -0
  56. package/dist/components/Grid/cells/cell/Cell.js.map +1 -0
  57. package/dist/components/Grid/cells/cell/content/CellContent.d.ts +3 -0
  58. package/dist/components/Grid/{core/components/Cell/CellContent → cells/cell/content}/CellContent.js +44 -35
  59. package/dist/components/Grid/cells/cell/content/CellContent.js.map +1 -0
  60. package/dist/components/Grid/{core/components/Cell/CellContent → cells/cell/content}/styles.d.ts +4 -1
  61. package/dist/components/Grid/{core/components/Cell/CellContent → cells/cell/content}/styles.js +8 -3
  62. package/dist/components/Grid/cells/cell/content/styles.js.map +1 -0
  63. package/dist/components/Grid/{core/components/Cell/Notifications → cells/cell/notifications}/Notifications.d.ts +1 -1
  64. package/dist/components/Grid/{core/components/Cell/Notifications → cells/cell/notifications}/Notifications.js +5 -5
  65. package/dist/components/Grid/cells/cell/notifications/Notifications.js.map +1 -0
  66. package/dist/components/Grid/{core/components/Cell/Notifications → cells/cell/notifications}/styles.js +1 -1
  67. package/dist/components/Grid/cells/cell/notifications/styles.js.map +1 -0
  68. package/dist/components/Grid/{core/components/Cell → cells/cell}/styles.d.ts +12 -6
  69. package/dist/components/Grid/{core/components/Cell → cells/cell}/styles.js +14 -20
  70. package/dist/components/Grid/cells/cell/styles.js.map +1 -0
  71. package/dist/components/Grid/cells/selection-cell/SelectionCell.d.ts +8 -0
  72. package/dist/components/Grid/cells/selection-cell/SelectionCell.js +78 -0
  73. package/dist/components/Grid/cells/selection-cell/SelectionCell.js.map +1 -0
  74. package/dist/components/Grid/cells/selection-cell/SelectionCellModel.d.ts +7 -0
  75. package/dist/components/Grid/cells/selection-cell/record-save-error-callout/RecordSaveErrorCallout.d.ts +11 -0
  76. package/dist/components/Grid/cells/selection-cell/record-save-error-callout/RecordSaveErrorCallout.js +19 -0
  77. package/dist/components/Grid/cells/selection-cell/record-save-error-callout/RecordSaveErrorCallout.js.map +1 -0
  78. package/dist/components/Grid/cells/selection-cell/record-save-error-callout/styles.d.ts +17 -0
  79. package/dist/components/Grid/cells/selection-cell/record-save-error-callout/styles.js +24 -0
  80. package/dist/components/Grid/cells/selection-cell/record-save-error-callout/styles.js.map +1 -0
  81. package/dist/components/Grid/cells/selection-cell/styles.d.ts +27 -0
  82. package/dist/components/Grid/cells/selection-cell/styles.js +33 -0
  83. package/dist/components/Grid/cells/selection-cell/styles.js.map +1 -0
  84. package/dist/components/Grid/{core/components/ColumnHeader → column-headers/column-header}/ColumnHeader.d.ts +1 -1
  85. package/dist/components/Grid/column-headers/column-header/ColumnHeader.js +88 -0
  86. package/dist/components/Grid/column-headers/column-header/ColumnHeader.js.map +1 -0
  87. package/dist/components/Grid/{sorting/components/SortingContextualMenu/SortingContextualMenu.d.ts → column-headers/column-header/ColumnHeaderContextualMenu.d.ts} +3 -3
  88. package/dist/components/Grid/column-headers/column-header/ColumnHeaderContextualMenu.js +115 -0
  89. package/dist/components/Grid/column-headers/column-header/ColumnHeaderContextualMenu.js.map +1 -0
  90. package/dist/components/Grid/{filtering/components/FilterCallout → column-headers/column-header}/FilterCallout.d.ts +1 -1
  91. package/dist/components/Grid/column-headers/column-header/FilterCallout.js +107 -0
  92. package/dist/components/Grid/column-headers/column-header/FilterCallout.js.map +1 -0
  93. package/dist/components/Grid/column-headers/column-header/styles.d.ts +84 -0
  94. package/dist/components/Grid/{filtering/components/FilterCallout → column-headers/column-header}/styles.js +20 -11
  95. package/dist/components/Grid/column-headers/column-header/styles.js.map +1 -0
  96. package/dist/components/Grid/column-headers/record-selection-checkbox/RecordSelectionCheckbox.d.ts +2 -0
  97. package/dist/components/Grid/column-headers/record-selection-checkbox/RecordSelectionCheckbox.js +45 -0
  98. package/dist/components/Grid/column-headers/record-selection-checkbox/RecordSelectionCheckbox.js.map +1 -0
  99. package/dist/components/Grid/{core/components/ColumnHeader/components/GlobalCheckbox → column-headers/record-selection-checkbox}/styles.d.ts +1 -3
  100. package/dist/components/Grid/{core/components/ColumnHeader/components/GlobalCheckbox → column-headers/record-selection-checkbox}/styles.js +1 -2
  101. package/dist/components/Grid/column-headers/record-selection-checkbox/styles.js.map +1 -0
  102. package/dist/components/Grid/errors/FullWidthCellRendererError/FullWidthCellRendererError.d.ts +6 -0
  103. package/dist/components/Grid/errors/FullWidthCellRendererError/FullWidthCellRendererError.js +15 -0
  104. package/dist/components/Grid/errors/FullWidthCellRendererError/FullWidthCellRendererError.js.map +1 -0
  105. package/dist/components/Grid/errors/FullWidthCellRendererError/styles.d.ts +6 -0
  106. package/dist/components/Grid/errors/FullWidthCellRendererError/styles.js +13 -0
  107. package/dist/components/Grid/errors/FullWidthCellRendererError/styles.js.map +1 -0
  108. package/dist/components/Grid/{core/components/AgGrid/AgGrid.d.ts → grid/Grid.d.ts} +2 -2
  109. package/dist/components/Grid/grid/Grid.js +64 -0
  110. package/dist/components/Grid/grid/Grid.js.map +1 -0
  111. package/dist/components/Grid/grid/GridContext.d.ts +3 -0
  112. package/dist/components/Grid/grid/GridContext.js.map +1 -0
  113. package/dist/components/Grid/grid/GridModel.d.ts +110 -0
  114. package/dist/components/Grid/grid/GridModel.js +767 -0
  115. package/dist/components/Grid/grid/GridModel.js.map +1 -0
  116. package/dist/components/Grid/{core/components/AgGrid/model/Comparator.d.ts → grid/ValueComparator.d.ts} +1 -1
  117. package/dist/components/Grid/{core/components/AgGrid/model/Comparator.js → grid/ValueComparator.js} +7 -1
  118. package/dist/components/Grid/grid/ValueComparator.js.map +1 -0
  119. package/dist/components/Grid/{core/components/AgGrid/context.d.ts → grid/ag-grid/AgGridContext.d.ts} +2 -2
  120. package/dist/components/Grid/{core/components/AgGrid/context.js → grid/ag-grid/AgGridContext.js} +1 -1
  121. package/dist/components/Grid/grid/ag-grid/AgGridContext.js.map +1 -0
  122. package/dist/components/Grid/grid/ag-grid/AgGridModel.d.ts +90 -0
  123. package/dist/components/Grid/grid/ag-grid/AgGridModel.js +657 -0
  124. package/dist/components/Grid/grid/ag-grid/AgGridModel.js.map +1 -0
  125. package/dist/components/Grid/grid/ag-grid/ServerSideDatasource.d.ts +7 -0
  126. package/dist/components/Grid/grid/ag-grid/ServerSideDatasource.js +38 -0
  127. package/dist/components/Grid/grid/ag-grid/ServerSideDatasource.js.map +1 -0
  128. package/dist/components/Grid/grid/ag-grid/useAgGridInstance.d.ts +2 -0
  129. package/dist/components/Grid/grid/ag-grid/useAgGridInstance.js +9 -0
  130. package/dist/components/Grid/grid/ag-grid/useAgGridInstance.js.map +1 -0
  131. package/dist/components/Grid/{core/components/AgGrid → grid}/styles.d.ts +24 -4
  132. package/dist/components/Grid/{core/components/AgGrid → grid}/styles.js +37 -6
  133. package/dist/components/Grid/grid/styles.js.map +1 -0
  134. package/dist/components/Grid/grid/useGridInstance.d.ts +2 -0
  135. package/dist/components/Grid/{core/hooks → grid}/useGridInstance.js +2 -2
  136. package/dist/components/Grid/grid/useGridInstance.js.map +1 -0
  137. package/dist/components/Grid/index.d.ts +1 -1
  138. package/dist/components/Grid/index.js +1 -1
  139. package/dist/components/Grid/interfaces.d.ts +10 -1
  140. package/dist/components/Grid/loading/full-row/FullRowLoading.d.ts +3 -0
  141. package/dist/components/Grid/loading/full-row/FullRowLoading.js +33 -0
  142. package/dist/components/Grid/loading/full-row/FullRowLoading.js.map +1 -0
  143. package/dist/components/Grid/loading/full-row/styles.d.ts +9 -0
  144. package/dist/components/Grid/loading/full-row/styles.js +16 -0
  145. package/dist/components/Grid/loading/full-row/styles.js.map +1 -0
  146. package/dist/components/Grid/overlays/empty-records/EmptyRecordsOverlay.js +13 -0
  147. package/dist/components/Grid/overlays/empty-records/EmptyRecordsOverlay.js.map +1 -0
  148. package/dist/components/Grid/{core/components/AgGrid/components/EmptyRecordsOverlay → overlays/empty-records}/styles.d.ts +1 -1
  149. package/dist/components/Grid/{core/components/AgGrid/components/EmptyRecordsOverlay → overlays/empty-records}/styles.js +1 -1
  150. package/dist/components/Grid/overlays/empty-records/styles.js.map +1 -0
  151. package/dist/components/Grid/overlays/loading/LoadingOverlay.js.map +1 -0
  152. package/dist/components/Grid/translations.d.ts +21 -177
  153. package/dist/components/Grid/translations.js +6 -48
  154. package/dist/components/Grid/translations.js.map +1 -1
  155. package/dist/components/GridCellRenderer/GridCellRenderer.js +99 -282
  156. package/dist/components/GridCellRenderer/GridCellRenderer.js.map +1 -1
  157. package/dist/components/GridCellRenderer/GridCellRendererModel.d.ts +51 -0
  158. package/dist/components/GridCellRenderer/GridCellRendererModel.js +211 -0
  159. package/dist/components/GridCellRenderer/GridCellRendererModel.js.map +1 -0
  160. package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/ColorfulOptionSetValueRenderer.d.ts +9 -0
  161. package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/ColorfulOptionSetValueRenderer.js +53 -0
  162. package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/ColorfulOptionSetValueRenderer.js.map +1 -0
  163. package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/styles.d.ts +20 -0
  164. package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/styles.js +29 -0
  165. package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/styles.js.map +1 -0
  166. package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/FileRenderer.d.ts +7 -0
  167. package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/FileRenderer.js +76 -0
  168. package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/FileRenderer.js.map +1 -0
  169. package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/styles.d.ts +18 -0
  170. package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/styles.js +25 -0
  171. package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/styles.js.map +1 -0
  172. package/dist/components/GridCellRenderer/ValueRenderer/ValueRenderer.d.ts +3 -0
  173. package/dist/components/GridCellRenderer/ValueRenderer/ValueRenderer.js +52 -0
  174. package/dist/components/GridCellRenderer/ValueRenderer/ValueRenderer.js.map +1 -0
  175. package/dist/components/GridCellRenderer/ValueRenderer/styles.d.ts +1666 -0
  176. package/dist/components/GridCellRenderer/ValueRenderer/styles.js +31 -0
  177. package/dist/components/GridCellRenderer/ValueRenderer/styles.js.map +1 -0
  178. package/dist/components/GridCellRenderer/interfaces.d.ts +53 -42
  179. package/dist/components/GridCellRenderer/properties/Email.d.ts +5 -0
  180. package/dist/components/GridCellRenderer/properties/Email.js +15 -0
  181. package/dist/components/GridCellRenderer/properties/Email.js.map +1 -0
  182. package/dist/components/GridCellRenderer/properties/File.d.ts +19 -0
  183. package/dist/components/GridCellRenderer/properties/File.js +99 -0
  184. package/dist/components/GridCellRenderer/properties/File.js.map +1 -0
  185. package/dist/components/GridCellRenderer/properties/Image.d.ts +4 -0
  186. package/dist/components/GridCellRenderer/properties/Image.js +15 -0
  187. package/dist/components/GridCellRenderer/properties/Image.js.map +1 -0
  188. package/dist/components/GridCellRenderer/properties/Lookup.d.ts +5 -0
  189. package/dist/components/GridCellRenderer/properties/Lookup.js +16 -0
  190. package/dist/components/GridCellRenderer/properties/Lookup.js.map +1 -0
  191. package/dist/components/GridCellRenderer/properties/MultiSelectOptionSet.d.ts +5 -0
  192. package/dist/components/GridCellRenderer/properties/MultiSelectOptionSet.js +11 -0
  193. package/dist/components/GridCellRenderer/properties/MultiSelectOptionSet.js.map +1 -0
  194. package/dist/components/GridCellRenderer/properties/MultilineText.d.ts +4 -0
  195. package/dist/components/GridCellRenderer/properties/MultilineText.js +10 -0
  196. package/dist/components/GridCellRenderer/properties/MultilineText.js.map +1 -0
  197. package/dist/components/GridCellRenderer/properties/OptionSet.d.ts +5 -0
  198. package/dist/components/GridCellRenderer/properties/OptionSet.js +11 -0
  199. package/dist/components/GridCellRenderer/properties/OptionSet.js.map +1 -0
  200. package/dist/components/GridCellRenderer/properties/OptionSetBase.d.ts +7 -0
  201. package/dist/components/GridCellRenderer/properties/OptionSetBase.js +19 -0
  202. package/dist/components/GridCellRenderer/properties/OptionSetBase.js.map +1 -0
  203. package/dist/components/GridCellRenderer/properties/Phone.d.ts +9 -0
  204. package/dist/components/GridCellRenderer/properties/Phone.js +15 -0
  205. package/dist/components/GridCellRenderer/properties/Phone.js.map +1 -0
  206. package/dist/components/GridCellRenderer/properties/Property.d.ts +19 -0
  207. package/dist/components/GridCellRenderer/properties/Property.js +59 -0
  208. package/dist/components/GridCellRenderer/properties/Property.js.map +1 -0
  209. package/dist/components/GridCellRenderer/properties/TwoOptions.d.ts +5 -0
  210. package/dist/components/GridCellRenderer/properties/TwoOptions.js +11 -0
  211. package/dist/components/GridCellRenderer/properties/TwoOptions.js.map +1 -0
  212. package/dist/components/GridCellRenderer/properties/Url.d.ts +5 -0
  213. package/dist/components/GridCellRenderer/properties/Url.js +15 -0
  214. package/dist/components/GridCellRenderer/properties/Url.js.map +1 -0
  215. package/dist/components/GridCellRenderer/styles.d.ts +34 -60
  216. package/dist/components/GridCellRenderer/styles.js +69 -77
  217. package/dist/components/GridCellRenderer/styles.js.map +1 -1
  218. package/dist/components/GridCellRenderer/translations.d.ts +1 -1
  219. package/dist/components/GridCellRenderer/translations.js +30 -32
  220. package/dist/components/GridCellRenderer/translations.js.map +1 -1
  221. package/dist/components/GridCellRenderer/useModel.d.ts +4 -0
  222. package/dist/components/GridCellRenderer/useModel.js +9 -0
  223. package/dist/components/GridCellRenderer/useModel.js.map +1 -0
  224. package/dist/components/GridColumnHeader/GridColumnHeader.d.ts +3 -0
  225. package/dist/components/GridColumnHeader/GridColumnHeader.js +134 -0
  226. package/dist/components/GridColumnHeader/GridColumnHeader.js.map +1 -0
  227. package/dist/components/GridColumnHeader/GridColumnHeaderModel.d.ts +26 -0
  228. package/dist/components/GridColumnHeader/GridColumnHeaderModel.js +85 -0
  229. package/dist/components/GridColumnHeader/GridColumnHeaderModel.js.map +1 -0
  230. package/dist/components/GridColumnHeader/interfaces.d.ts +48 -0
  231. package/dist/components/GridColumnHeader/styles.d.ts +37 -0
  232. package/dist/components/GridColumnHeader/styles.js +55 -0
  233. package/dist/components/GridColumnHeader/styles.js.map +1 -0
  234. package/dist/components/GridColumnHeader/translations.d.ts +26 -0
  235. package/dist/components/GridColumnHeader/translations.js +29 -0
  236. package/dist/components/GridColumnHeader/translations.js.map +1 -0
  237. package/dist/components/GridInlineRibbon/GridInlineRibbon.d.ts +3 -0
  238. package/dist/components/GridInlineRibbon/GridInlineRibbon.js +113 -0
  239. package/dist/components/GridInlineRibbon/GridInlineRibbon.js.map +1 -0
  240. package/dist/components/GridInlineRibbon/GridInlineRibbonModel.d.ts +25 -0
  241. package/dist/components/GridInlineRibbon/GridInlineRibbonModel.js +49 -0
  242. package/dist/components/GridInlineRibbon/GridInlineRibbonModel.js.map +1 -0
  243. package/dist/components/GridInlineRibbon/index.d.ts +2 -0
  244. package/dist/components/GridInlineRibbon/index.js +2 -0
  245. package/dist/components/GridInlineRibbon/interfaces.d.ts +28 -0
  246. package/dist/components/GridInlineRibbon/styles.d.ts +22 -0
  247. package/dist/components/GridInlineRibbon/styles.js +29 -0
  248. package/dist/components/GridInlineRibbon/styles.js.map +1 -0
  249. package/dist/components/MultiSelectOptionSet/MultiSelectOptionSet.js +2 -2
  250. package/dist/components/MultiSelectOptionSet/MultiSelectOptionSet.js.map +1 -1
  251. package/dist/components/NestedControlRenderer/NestedControl.d.ts +2 -0
  252. package/dist/components/NestedControlRenderer/NestedControl.js +5 -2
  253. package/dist/components/NestedControlRenderer/NestedControl.js.map +1 -1
  254. package/dist/components/NestedControlRenderer/NestedControlRenderer.js +19 -6
  255. package/dist/components/NestedControlRenderer/NestedControlRenderer.js.map +1 -1
  256. package/dist/components/NestedControlRenderer/index.d.ts +1 -0
  257. package/dist/components/NestedControlRenderer/interfaces.d.ts +4 -0
  258. package/dist/components/NestedControlRenderer/properties/FileProperty.js +1 -1
  259. package/dist/components/NestedControlRenderer/properties/FileProperty.js.map +1 -1
  260. package/dist/components/OptionSet/OptionSet.js +5 -4
  261. package/dist/components/OptionSet/OptionSet.js.map +1 -1
  262. package/dist/components/Ribbon/Ribbon.d.ts +3 -0
  263. package/dist/components/Ribbon/Ribbon.js +118 -0
  264. package/dist/components/Ribbon/Ribbon.js.map +1 -0
  265. package/dist/components/Ribbon/RibbonModel.d.ts +17 -0
  266. package/dist/components/Ribbon/RibbonModel.js +74 -0
  267. package/dist/components/Ribbon/RibbonModel.js.map +1 -0
  268. package/dist/components/Ribbon/interfaces.d.ts +24 -0
  269. package/dist/components/Ribbon/styles.d.ts +16 -0
  270. package/dist/components/Ribbon/styles.js +23 -0
  271. package/dist/components/Ribbon/styles.js.map +1 -0
  272. package/dist/components/TextField/TextField.js.map +1 -1
  273. package/dist/components/index.d.ts +1 -0
  274. package/dist/components/index.js +2 -3
  275. package/dist/components/index.js.map +1 -1
  276. package/dist/hooks/index.d.ts +1 -0
  277. package/dist/hooks/index.js +1 -0
  278. package/dist/hooks/index.js.map +1 -1
  279. package/dist/hooks/useControl.d.ts +1 -0
  280. package/dist/hooks/useControl.js +1 -0
  281. package/dist/hooks/useControl.js.map +1 -1
  282. package/dist/hooks/useEventEmitter.d.ts +2 -0
  283. package/dist/hooks/useEventEmitter.js +23 -0
  284. package/dist/hooks/useEventEmitter.js.map +1 -0
  285. package/dist/hooks/useInputBasedControl.js +2 -1
  286. package/dist/hooks/useInputBasedControl.js.map +1 -1
  287. package/dist/index.d.ts +508 -522
  288. package/dist/index.js +3 -3
  289. package/dist/interfaces/property.d.ts +1 -1
  290. package/dist/utils/BaseControls.d.ts +4 -1
  291. package/dist/utils/BaseControls.js +13 -1
  292. package/dist/utils/BaseControls.js.map +1 -1
  293. package/dist/utils/dataset/adapters/DatasetAdapter.d.ts +51 -40
  294. package/dist/utils/dataset/adapters/DatasetAdapter.js +221 -160
  295. package/dist/utils/dataset/adapters/DatasetAdapter.js.map +1 -1
  296. package/dist/utils/dataset/adapters/VirtualDatasetAdapter.d.ts +60 -28
  297. package/dist/utils/dataset/adapters/VirtualDatasetAdapter.js +183 -119
  298. package/dist/utils/dataset/adapters/VirtualDatasetAdapter.js.map +1 -1
  299. package/dist/utils/dataset-control/DatasetControl.d.ts +69 -0
  300. package/dist/utils/dataset-control/DatasetControl.js +171 -0
  301. package/dist/utils/dataset-control/DatasetControl.js.map +1 -0
  302. package/dist/utils/dataset-control/index.d.ts +1 -0
  303. package/dist/utils/dataset-control/index.js +2 -0
  304. package/dist/utils/theme/components/ThemeWrapper.d.ts +1 -1
  305. package/dist/utils/theme/components/ThemeWrapper.js.map +1 -1
  306. package/dist/utils/theme/hooks/useControlTheme.js +2 -1
  307. package/dist/utils/theme/hooks/useControlTheme.js.map +1 -1
  308. package/package.json +9 -5
  309. package/dist/components/DatasetControl/Paging/DatasetPaging.d.ts +0 -3
  310. package/dist/components/DatasetControl/Paging/DatasetPaging.js +0 -69
  311. package/dist/components/DatasetControl/Paging/DatasetPaging.js.map +0 -1
  312. package/dist/components/DatasetControl/Paging/Paging.d.ts +0 -26
  313. package/dist/components/DatasetControl/Paging/Paging.js +0 -80
  314. package/dist/components/DatasetControl/Paging/Paging.js.map +0 -1
  315. package/dist/components/DatasetControl/Paging/index.d.ts +0 -3
  316. package/dist/components/DatasetControl/Paging/index.js +0 -3
  317. package/dist/components/DatasetControl/Paging/index.js.map +0 -1
  318. package/dist/components/DatasetControl/Paging/interfaces.d.ts +0 -16
  319. package/dist/components/DatasetControl/Paging/styles.d.ts +0 -35
  320. package/dist/components/DatasetControl/Paging/styles.js +0 -41
  321. package/dist/components/DatasetControl/Paging/styles.js.map +0 -1
  322. package/dist/components/DatasetControl/Paging/translations.d.ts +0 -38
  323. package/dist/components/DatasetControl/Paging/translations.js +0 -14
  324. package/dist/components/DatasetControl/Paging/translations.js.map +0 -1
  325. package/dist/components/Grid/Grid.d.ts +0 -3
  326. package/dist/components/Grid/Grid.js +0 -37
  327. package/dist/components/Grid/Grid.js.map +0 -1
  328. package/dist/components/Grid/GridContext.d.ts +0 -3
  329. package/dist/components/Grid/GridContext.js.map +0 -1
  330. package/dist/components/Grid/aggregation/Aggregation.d.ts +0 -18
  331. package/dist/components/Grid/aggregation/Aggregation.js +0 -129
  332. package/dist/components/Grid/aggregation/Aggregation.js.map +0 -1
  333. package/dist/components/Grid/core/components/AgGrid/AgGrid.js +0 -203
  334. package/dist/components/Grid/core/components/AgGrid/AgGrid.js.map +0 -1
  335. package/dist/components/Grid/core/components/AgGrid/components/EmptyRecordsOverlay/EmptyRecords.js +0 -12
  336. package/dist/components/Grid/core/components/AgGrid/components/EmptyRecordsOverlay/EmptyRecords.js.map +0 -1
  337. package/dist/components/Grid/core/components/AgGrid/components/EmptyRecordsOverlay/styles.js.map +0 -1
  338. package/dist/components/Grid/core/components/AgGrid/components/LoadingOverlay/LoadingOverlay.js.map +0 -1
  339. package/dist/components/Grid/core/components/AgGrid/context.js.map +0 -1
  340. package/dist/components/Grid/core/components/AgGrid/model/AgGrid.d.ts +0 -52
  341. package/dist/components/Grid/core/components/AgGrid/model/AgGrid.js +0 -343
  342. package/dist/components/Grid/core/components/AgGrid/model/AgGrid.js.map +0 -1
  343. package/dist/components/Grid/core/components/AgGrid/model/Comparator.js.map +0 -1
  344. package/dist/components/Grid/core/components/AgGrid/styles.js.map +0 -1
  345. package/dist/components/Grid/core/components/Cell/Cell.js +0 -158
  346. package/dist/components/Grid/core/components/Cell/Cell.js.map +0 -1
  347. package/dist/components/Grid/core/components/Cell/CellContent/CellContent.d.ts +0 -8
  348. package/dist/components/Grid/core/components/Cell/CellContent/CellContent.js.map +0 -1
  349. package/dist/components/Grid/core/components/Cell/CellContent/styles.js.map +0 -1
  350. package/dist/components/Grid/core/components/Cell/Notifications/Notifications.js.map +0 -1
  351. package/dist/components/Grid/core/components/Cell/Notifications/styles.js.map +0 -1
  352. package/dist/components/Grid/core/components/Cell/styles.js.map +0 -1
  353. package/dist/components/Grid/core/components/ColumnHeader/ColumnHeader.js +0 -61
  354. package/dist/components/Grid/core/components/ColumnHeader/ColumnHeader.js.map +0 -1
  355. package/dist/components/Grid/core/components/ColumnHeader/components/GlobalCheckbox/GlobalCheckbox.d.ts +0 -2
  356. package/dist/components/Grid/core/components/ColumnHeader/components/GlobalCheckbox/GlobalCheckbox.js +0 -50
  357. package/dist/components/Grid/core/components/ColumnHeader/components/GlobalCheckbox/GlobalCheckbox.js.map +0 -1
  358. package/dist/components/Grid/core/components/ColumnHeader/components/GlobalCheckbox/styles.js.map +0 -1
  359. package/dist/components/Grid/core/components/ColumnHeader/styles.d.ts +0 -42
  360. package/dist/components/Grid/core/components/ColumnHeader/styles.js +0 -48
  361. package/dist/components/Grid/core/components/ColumnHeader/styles.js.map +0 -1
  362. package/dist/components/Grid/core/components/Dialog/Constants.d.ts +0 -2
  363. package/dist/components/Grid/core/components/Dialog/Constants.js +0 -9
  364. package/dist/components/Grid/core/components/Dialog/Constants.js.map +0 -1
  365. package/dist/components/Grid/core/components/Dialog/Styles.d.ts +0 -2
  366. package/dist/components/Grid/core/components/Dialog/Styles.js +0 -61
  367. package/dist/components/Grid/core/components/Dialog/Styles.js.map +0 -1
  368. package/dist/components/Grid/core/components/Dialog/index.d.ts +0 -4
  369. package/dist/components/Grid/core/components/Dialog/index.js +0 -16
  370. package/dist/components/Grid/core/components/Dialog/index.js.map +0 -1
  371. package/dist/components/Grid/core/components/Dialog/interfaces/index.d.ts +0 -6
  372. package/dist/components/Grid/core/components/Dialog/interfaces/index.js +0 -2
  373. package/dist/components/Grid/core/components/Save/Save.d.ts +0 -2
  374. package/dist/components/Grid/core/components/Save/Save.js +0 -59
  375. package/dist/components/Grid/core/components/Save/Save.js.map +0 -1
  376. package/dist/components/Grid/core/components/Save/components/ChangeEditor/ChangeEditor.d.ts +0 -7
  377. package/dist/components/Grid/core/components/Save/components/ChangeEditor/ChangeEditor.js +0 -73
  378. package/dist/components/Grid/core/components/Save/components/ChangeEditor/ChangeEditor.js.map +0 -1
  379. package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/ChangeGrid.d.ts +0 -11
  380. package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/ChangeGrid.js +0 -231
  381. package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/ChangeGrid.js.map +0 -1
  382. package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/styles.d.ts +0 -39
  383. package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/styles.js +0 -45
  384. package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/styles.js.map +0 -1
  385. package/dist/components/Grid/core/components/Save/components/ChangeEditor/styles.d.ts +0 -31
  386. package/dist/components/Grid/core/components/Save/components/ChangeEditor/styles.js +0 -37
  387. package/dist/components/Grid/core/components/Save/components/ChangeEditor/styles.js.map +0 -1
  388. package/dist/components/Grid/core/components/Save/styles.d.ts +0 -35
  389. package/dist/components/Grid/core/components/Save/styles.js +0 -42
  390. package/dist/components/Grid/core/components/Save/styles.js.map +0 -1
  391. package/dist/components/Grid/core/controllers/useGridController.d.ts +0 -7
  392. package/dist/components/Grid/core/controllers/useGridController.js +0 -29
  393. package/dist/components/Grid/core/controllers/useGridController.js.map +0 -1
  394. package/dist/components/Grid/core/enums/ConditionOperator.d.ts +0 -48
  395. package/dist/components/Grid/core/enums/ConditionOperator.js +0 -52
  396. package/dist/components/Grid/core/enums/ConditionOperator.js.map +0 -1
  397. package/dist/components/Grid/core/enums/DataType.d.ts +0 -25
  398. package/dist/components/Grid/core/enums/DataType.js +0 -30
  399. package/dist/components/Grid/core/enums/DataType.js.map +0 -1
  400. package/dist/components/Grid/core/hooks/useGridInstance.d.ts +0 -2
  401. package/dist/components/Grid/core/hooks/useGridInstance.js.map +0 -1
  402. package/dist/components/Grid/core/hooks/useRefreshCallback.d.ts +0 -2
  403. package/dist/components/Grid/core/hooks/useRefreshCallback.js +0 -20
  404. package/dist/components/Grid/core/hooks/useRefreshCallback.js.map +0 -1
  405. package/dist/components/Grid/core/interfaces/IGridColumn.d.ts +0 -13
  406. package/dist/components/Grid/core/interfaces/IGridContext.d.ts +0 -4
  407. package/dist/components/Grid/core/model/Grid.d.ts +0 -83
  408. package/dist/components/Grid/core/model/Grid.js +0 -528
  409. package/dist/components/Grid/core/model/Grid.js.map +0 -1
  410. package/dist/components/Grid/core/model/GridDependency.d.ts +0 -13
  411. package/dist/components/Grid/core/model/GridDependency.js +0 -28
  412. package/dist/components/Grid/core/model/GridDependency.js.map +0 -1
  413. package/dist/components/Grid/core/services/KeyListener.d.ts +0 -12
  414. package/dist/components/Grid/core/services/KeyListener.js +0 -31
  415. package/dist/components/Grid/core/services/KeyListener.js.map +0 -1
  416. package/dist/components/Grid/filtering/components/FilterCallout/FilterCallout.js +0 -59
  417. package/dist/components/Grid/filtering/components/FilterCallout/FilterCallout.js.map +0 -1
  418. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionOperator/ConditionOperator.d.ts +0 -7
  419. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionOperator/ConditionOperator.js +0 -56
  420. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionOperator/ConditionOperator.js.map +0 -1
  421. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValue.d.ts +0 -7
  422. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValue.js +0 -73
  423. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValue.js.map +0 -1
  424. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValueBetween.d.ts +0 -7
  425. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValueBetween.js +0 -90
  426. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValueBetween.js.map +0 -1
  427. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/model/ConditionComponentValue.d.ts +0 -48
  428. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/model/ConditionComponentValue.js +0 -146
  429. package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/model/ConditionComponentValue.js.map +0 -1
  430. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/Component.d.ts +0 -11
  431. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/Component.js +0 -53
  432. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/Component.js.map +0 -1
  433. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/controller/useComponentController.d.ts +0 -9
  434. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/controller/useComponentController.js +0 -31
  435. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/controller/useComponentController.js.map +0 -1
  436. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/model/Component.d.ts +0 -10
  437. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/model/Component.js +0 -294
  438. package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/model/Component.js.map +0 -1
  439. package/dist/components/Grid/filtering/components/FilterCallout/styles.d.ts +0 -35
  440. package/dist/components/Grid/filtering/components/FilterCallout/styles.js.map +0 -1
  441. package/dist/components/Grid/filtering/constants.d.ts +0 -5
  442. package/dist/components/Grid/filtering/constants.js +0 -53
  443. package/dist/components/Grid/filtering/constants.js.map +0 -1
  444. package/dist/components/Grid/filtering/controller/useColumnFilterConditionController.d.ts +0 -21
  445. package/dist/components/Grid/filtering/controller/useColumnFilterConditionController.js +0 -44
  446. package/dist/components/Grid/filtering/controller/useColumnFilterConditionController.js.map +0 -1
  447. package/dist/components/Grid/filtering/model/Condition.d.ts +0 -49
  448. package/dist/components/Grid/filtering/model/Condition.js +0 -347
  449. package/dist/components/Grid/filtering/model/Condition.js.map +0 -1
  450. package/dist/components/Grid/filtering/model/Filtering.d.ts +0 -11
  451. package/dist/components/Grid/filtering/model/Filtering.js +0 -78
  452. package/dist/components/Grid/filtering/model/Filtering.js.map +0 -1
  453. package/dist/components/Grid/filtering/utils/FilteringUtilts.d.ts +0 -34
  454. package/dist/components/Grid/filtering/utils/FilteringUtilts.js +0 -195
  455. package/dist/components/Grid/filtering/utils/FilteringUtilts.js.map +0 -1
  456. package/dist/components/Grid/selection/model/Selection.d.ts +0 -12
  457. package/dist/components/Grid/selection/model/Selection.js +0 -55
  458. package/dist/components/Grid/selection/model/Selection.js.map +0 -1
  459. package/dist/components/Grid/sorting/Sorting.d.ts +0 -10
  460. package/dist/components/Grid/sorting/Sorting.js +0 -31
  461. package/dist/components/Grid/sorting/Sorting.js.map +0 -1
  462. package/dist/components/Grid/sorting/components/SortingContextualMenu/SortingContextualMenu.js +0 -157
  463. package/dist/components/Grid/sorting/components/SortingContextualMenu/SortingContextualMenu.js.map +0 -1
  464. package/dist/components/Grid/sorting/components/SortingContextualMenu/styles.d.ts +0 -9
  465. package/dist/components/Grid/sorting/components/SortingContextualMenu/styles.js +0 -15
  466. package/dist/components/Grid/sorting/components/SortingContextualMenu/styles.js.map +0 -1
  467. package/dist/components/Grid/sorting/controllers/useColumnSortingController.d.ts +0 -9
  468. package/dist/components/Grid/sorting/controllers/useColumnSortingController.js +0 -22
  469. package/dist/components/Grid/sorting/controllers/useColumnSortingController.js.map +0 -1
  470. package/dist/components/GridCellRenderer/DefaultContentRenderer/DefaultContentRenderer.d.ts +0 -2
  471. package/dist/components/GridCellRenderer/DefaultContentRenderer/DefaultContentRenderer.js +0 -11
  472. package/dist/components/GridCellRenderer/DefaultContentRenderer/DefaultContentRenderer.js.map +0 -1
  473. package/dist/components/GridCellRenderer/DefaultContentRenderer/index.d.ts +0 -1
  474. package/dist/components/GridCellRenderer/DefaultContentRenderer/index.js +0 -2
  475. package/dist/components/GridCellRenderer/OptionSet/OptionSet.d.ts +0 -5
  476. package/dist/components/GridCellRenderer/OptionSet/OptionSet.js +0 -75
  477. package/dist/components/GridCellRenderer/OptionSet/OptionSet.js.map +0 -1
  478. package/dist/components/GridCellRenderer/OptionSet/index.d.ts +0 -1
  479. package/dist/components/GridCellRenderer/OptionSet/index.js +0 -2
  480. package/dist/components/GridCellRenderer/OptionSet/index.js.map +0 -1
  481. package/dist/components/GridCellRenderer/OptionSet/styles.d.ts +0 -20
  482. package/dist/components/GridCellRenderer/OptionSet/styles.js +0 -29
  483. package/dist/components/GridCellRenderer/OptionSet/styles.js.map +0 -1
  484. package/dist/components/GridCellRenderer/RecordCommands/Icon.d.ts +0 -7
  485. package/dist/components/GridCellRenderer/RecordCommands/Icon.js +0 -32
  486. package/dist/components/GridCellRenderer/RecordCommands/Icon.js.map +0 -1
  487. package/dist/components/GridCellRenderer/RecordCommands/RecordCommands.d.ts +0 -13
  488. package/dist/components/GridCellRenderer/RecordCommands/RecordCommands.js +0 -103
  489. package/dist/components/GridCellRenderer/RecordCommands/RecordCommands.js.map +0 -1
  490. package/dist/components/GridCellRenderer/RecordCommands/styles.d.ts +0 -13
  491. package/dist/components/GridCellRenderer/RecordCommands/styles.js +0 -32
  492. package/dist/components/GridCellRenderer/RecordCommands/styles.js.map +0 -1
  493. package/dist/components/GridCellRenderer/useComponentProps.d.ts +0 -6
  494. package/dist/components/GridCellRenderer/useComponentProps.js +0 -10
  495. package/dist/components/GridCellRenderer/useComponentProps.js.map +0 -1
  496. /package/dist/components/Grid/{core/components/Cell/Notifications → cells/cell/notifications}/styles.d.ts +0 -0
  497. /package/dist/components/Grid/{GridContext.js → grid/GridContext.js} +0 -0
  498. /package/dist/components/Grid/{core/components/AgGrid/components/EmptyRecordsOverlay/EmptyRecords.d.ts → overlays/empty-records/EmptyRecordsOverlay.d.ts} +0 -0
  499. /package/dist/components/Grid/{core/components/AgGrid/components/LoadingOverlay → overlays/loading}/LoadingOverlay.d.ts +0 -0
  500. /package/dist/components/Grid/{core/components/AgGrid/components/LoadingOverlay → overlays/loading}/LoadingOverlay.js +0 -0
  501. /package/dist/components/{Grid/core/components/Dialog/interfaces → GridInlineRibbon}/index.js.map +0 -0
  502. /package/dist/{components/GridCellRenderer/DefaultContentRenderer → utils/dataset-control}/index.js.map +0 -0
@@ -0,0 +1,1666 @@
1
+ import { ITheme } from "@fluentui/react";
2
+ interface IDeps {
3
+ theme: ITheme;
4
+ isMultiline: boolean;
5
+ makeBold: boolean;
6
+ }
7
+ export declare const getValueRendererStyles: (deps: IDeps) => import("@fluentui/react").IProcessedStyleSet<{
8
+ text: {
9
+ accentColor?: import("csstype").Property.AccentColor | undefined;
10
+ alignContent?: import("csstype").Property.AlignContent | undefined;
11
+ alignItems?: import("csstype").Property.AlignItems | undefined;
12
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
13
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
14
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
15
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
16
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
17
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
18
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
19
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
20
+ animationName?: import("csstype").Property.AnimationName | undefined;
21
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
22
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
23
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
24
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
25
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
26
+ appearance?: import("csstype").Property.Appearance | undefined;
27
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
28
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
29
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
30
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
31
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
32
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
33
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
34
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
35
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
36
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
37
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
38
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
39
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
40
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
41
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
42
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
43
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
44
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
45
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
46
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
47
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
48
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
49
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
50
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
51
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
52
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
53
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
54
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
55
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
56
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
57
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
58
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
59
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
60
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
61
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
62
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
63
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
64
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
65
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
66
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
67
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
68
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
69
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
70
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
71
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
72
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
73
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
74
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
75
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
76
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
77
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
78
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
79
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
80
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
81
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
82
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
83
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
84
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
85
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
86
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
87
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
88
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
89
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
90
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
91
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
92
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
93
+ breakInside?: import("csstype").Property.BreakInside | undefined;
94
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
95
+ caretColor?: import("csstype").Property.CaretColor | undefined;
96
+ caretShape?: import("csstype").Property.CaretShape | undefined;
97
+ clear?: import("csstype").Property.Clear | undefined;
98
+ clipPath?: import("csstype").Property.ClipPath | undefined;
99
+ color?: import("csstype").Property.Color | undefined;
100
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
101
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
102
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
103
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
104
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
105
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
106
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
107
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
108
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
109
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
110
+ contain?: import("csstype").Property.Contain | undefined;
111
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
112
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
113
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
114
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
115
+ containerName?: import("csstype").Property.ContainerName | undefined;
116
+ containerType?: import("csstype").Property.ContainerType | undefined;
117
+ content?: import("csstype").Property.Content | undefined;
118
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
119
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
120
+ counterReset?: import("csstype").Property.CounterReset | undefined;
121
+ counterSet?: import("csstype").Property.CounterSet | undefined;
122
+ cursor?: import("csstype").Property.Cursor | undefined;
123
+ direction?: import("csstype").Property.Direction | undefined;
124
+ display?: import("csstype").Property.Display | undefined;
125
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
126
+ filter?: import("csstype").Property.Filter | undefined;
127
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
128
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
129
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
130
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
131
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
132
+ float?: import("csstype").Property.Float | undefined;
133
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
134
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
135
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
136
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
137
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
138
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
139
+ fontSize: import("csstype").Property.FontSize<string | number>;
140
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
141
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
142
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
143
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
144
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
145
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
146
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
147
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
148
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
149
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
150
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
151
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
152
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
153
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
154
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
155
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
156
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
157
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
158
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
159
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
160
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
161
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
162
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
163
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
164
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
165
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
166
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
167
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
168
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
169
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
170
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
171
+ height?: import("csstype").Property.Height<string | number> | undefined;
172
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
173
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
174
+ hyphens?: import("csstype").Property.Hyphens | undefined;
175
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
176
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
177
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
178
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
179
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
180
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
181
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
182
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
183
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
184
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
185
+ isolation?: import("csstype").Property.Isolation | undefined;
186
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
187
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
188
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
189
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
190
+ left?: import("csstype").Property.Left<string | number> | undefined;
191
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
192
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
193
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
194
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
195
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
196
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
197
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
198
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
199
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
200
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
201
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
202
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
203
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
204
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
205
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
206
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
207
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
208
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
209
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
210
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
211
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
212
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
213
+ maskClip?: import("csstype").Property.MaskClip | undefined;
214
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
215
+ maskImage?: import("csstype").Property.MaskImage | undefined;
216
+ maskMode?: import("csstype").Property.MaskMode | undefined;
217
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
218
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
219
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
220
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
221
+ maskType?: import("csstype").Property.MaskType | undefined;
222
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
223
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
224
+ mathShift?: import("csstype").Property.MathShift | undefined;
225
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
226
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
227
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
228
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
229
+ maxLines?: import("csstype").Property.MaxLines | undefined;
230
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
231
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
232
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
233
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
234
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
235
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
236
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
237
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
238
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
239
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
240
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
241
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
242
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
243
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
244
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
245
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
246
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
247
+ opacity?: import("csstype").Property.Opacity | undefined;
248
+ order?: import("csstype").Property.Order | undefined;
249
+ orphans?: import("csstype").Property.Orphans | undefined;
250
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
251
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
252
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
253
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
254
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
255
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
256
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
257
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
258
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
259
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
260
+ overflowX?: import("csstype").Property.OverflowX | undefined;
261
+ overflowY?: import("csstype").Property.OverflowY | undefined;
262
+ overlay?: import("csstype").Property.Overlay | undefined;
263
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
264
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
265
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
266
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
267
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
268
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
269
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
270
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
271
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
272
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
273
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
274
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
275
+ page?: import("csstype").Property.Page | undefined;
276
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
277
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
278
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
279
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
280
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
281
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
282
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
283
+ position?: import("csstype").Property.Position | undefined;
284
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
285
+ quotes?: import("csstype").Property.Quotes | undefined;
286
+ resize?: import("csstype").Property.Resize | undefined;
287
+ right?: import("csstype").Property.Right<string | number> | undefined;
288
+ rotate?: import("csstype").Property.Rotate | undefined;
289
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
290
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
291
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
292
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
293
+ scale?: import("csstype").Property.Scale | undefined;
294
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
295
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
296
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
297
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
298
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
299
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
300
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
301
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
302
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
303
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
304
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
305
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
306
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
307
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
308
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
309
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
310
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
311
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
312
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
313
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
314
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
315
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
316
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
317
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
318
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
319
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
320
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
321
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
322
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
323
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
324
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
325
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
326
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
327
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
328
+ textAlign?: import("csstype").Property.TextAlign | undefined;
329
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
330
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
331
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
332
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
333
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
334
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
335
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
336
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
337
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
338
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
339
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
340
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
341
+ textJustify?: import("csstype").Property.TextJustify | undefined;
342
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
343
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
344
+ textRendering?: import("csstype").Property.TextRendering | undefined;
345
+ textShadow?: import("csstype").Property.TextShadow | undefined;
346
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
347
+ textTransform?: import("csstype").Property.TextTransform | undefined;
348
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
349
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
350
+ textWrap?: import("csstype").Property.TextWrap | undefined;
351
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
352
+ top?: import("csstype").Property.Top<string | number> | undefined;
353
+ touchAction?: import("csstype").Property.TouchAction | undefined;
354
+ transform?: import("csstype").Property.Transform | undefined;
355
+ transformBox?: import("csstype").Property.TransformBox | undefined;
356
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
357
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
358
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
359
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
360
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
361
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
362
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
363
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
364
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
365
+ userSelect?: import("csstype").Property.UserSelect | undefined;
366
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
367
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
368
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
369
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
370
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
371
+ visibility?: import("csstype").Property.Visibility | undefined;
372
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
373
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
374
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
375
+ widows?: import("csstype").Property.Widows | undefined;
376
+ width?: import("csstype").Property.Width<string | number> | undefined;
377
+ willChange?: import("csstype").Property.WillChange | undefined;
378
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
379
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
380
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
381
+ writingMode?: import("csstype").Property.WritingMode | undefined;
382
+ zIndex?: import("csstype").Property.ZIndex | undefined;
383
+ zoom?: import("csstype").Property.Zoom | undefined;
384
+ all?: import("csstype").Globals | undefined;
385
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
386
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
387
+ background?: import("csstype").Property.Background<string | number> | undefined;
388
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
389
+ border?: import("csstype").Property.Border<string | number> | undefined;
390
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
391
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
392
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
393
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
394
+ borderColor?: import("csstype").Property.BorderColor | undefined;
395
+ borderImage?: import("csstype").Property.BorderImage | undefined;
396
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
397
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
398
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
399
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
400
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
401
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
402
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
403
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
404
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
405
+ caret?: import("csstype").Property.Caret | undefined;
406
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
407
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
408
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
409
+ container?: import("csstype").Property.Container | undefined;
410
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
411
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
412
+ font?: import("csstype").Property.Font | undefined;
413
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
414
+ grid?: import("csstype").Property.Grid | undefined;
415
+ gridArea?: import("csstype").Property.GridArea | undefined;
416
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
417
+ gridRow?: import("csstype").Property.GridRow | undefined;
418
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
419
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
420
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
421
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
422
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
423
+ listStyle?: import("csstype").Property.ListStyle | undefined;
424
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
425
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
426
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
427
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
428
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
429
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
430
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
431
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
432
+ overflow?: import("csstype").Property.Overflow | undefined;
433
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
434
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
435
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
436
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
437
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
438
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
439
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
440
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
441
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
442
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
443
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
444
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
445
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
446
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
447
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
448
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
449
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
450
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
451
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
452
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
453
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
454
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
455
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
456
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
457
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
458
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
459
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
460
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
461
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
462
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
463
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
464
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
465
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
466
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
467
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
468
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
469
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
470
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
471
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
472
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
473
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
474
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
475
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
476
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
477
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
478
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
479
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
480
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
481
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
482
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
483
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
484
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
485
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
486
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
487
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
488
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
489
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
490
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
491
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
492
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
493
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
494
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
495
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
496
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
497
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
498
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
499
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
500
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
501
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
502
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
503
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
504
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
505
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
506
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
507
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
508
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
509
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
510
+ msFilter?: import("csstype").Property.MsFilter | undefined;
511
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
512
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
513
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
514
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
515
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
516
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
517
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
518
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
519
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
520
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
521
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
522
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
523
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
524
+ msOrder?: import("csstype").Property.Order | undefined;
525
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
526
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
527
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
528
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
529
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
530
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
531
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
532
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
533
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
534
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
535
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
536
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
537
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
538
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
539
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
540
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
541
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
542
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
543
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
544
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
545
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
546
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
547
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
548
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
549
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
550
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
551
+ msTransform?: import("csstype").Property.Transform | undefined;
552
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
553
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
554
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
555
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
556
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
557
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
558
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
559
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
560
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
561
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
562
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
563
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
564
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
565
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
566
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
567
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
568
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
569
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
570
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
571
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
572
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
573
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
574
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
575
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
576
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
577
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
578
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
579
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
580
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
581
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
582
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
583
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
584
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
585
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
586
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
587
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
588
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
589
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
590
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
591
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
592
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
593
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
594
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
595
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
596
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
597
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
598
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
599
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
600
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
601
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
602
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
603
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
604
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
605
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
606
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
607
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
608
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
609
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
610
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
611
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
612
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
613
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
614
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
615
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
616
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
617
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
618
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
619
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
620
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
621
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
622
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
623
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
624
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
625
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
626
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
627
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
628
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
629
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
630
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
631
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
632
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
633
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
634
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
635
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
636
+ WebkitOrder?: import("csstype").Property.Order | undefined;
637
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
638
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
639
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
640
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
641
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
642
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
643
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
644
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
645
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
646
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
647
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
648
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
649
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
650
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
651
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
652
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
653
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
654
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
655
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
656
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
657
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
658
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
659
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
660
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
661
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
662
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
663
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
664
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
665
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
666
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
667
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
668
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
669
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
670
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
671
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
672
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
673
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
674
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
675
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
676
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
677
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
678
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
679
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
680
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
681
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
682
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
683
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
684
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
685
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
686
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
687
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
688
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
689
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
690
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
691
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
692
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
693
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
694
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
695
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
696
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
697
+ azimuth?: import("csstype").Property.Azimuth | undefined;
698
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
699
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
700
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
701
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
702
+ boxLines?: import("csstype").Property.BoxLines | undefined;
703
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
704
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
705
+ boxPack?: import("csstype").Property.BoxPack | undefined;
706
+ clip?: import("csstype").Property.Clip | undefined;
707
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
708
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
709
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
710
+ imeMode?: import("csstype").Property.ImeMode | undefined;
711
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
712
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
713
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
714
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
715
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
716
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
717
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
718
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
719
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
720
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
721
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
722
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
723
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
724
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
725
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
726
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
727
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
728
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
729
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
730
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
731
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
732
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
733
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
734
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
735
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
736
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
737
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
738
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
739
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
740
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
741
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
742
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
743
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
744
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
745
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
746
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
747
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
748
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
749
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
750
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
751
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
752
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
753
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
754
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
755
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
756
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
757
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
758
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
759
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
760
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
761
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
762
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
763
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
764
+ MozTransform?: import("csstype").Property.Transform | undefined;
765
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
766
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
767
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
768
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
769
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
770
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
771
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
772
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
773
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
774
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
775
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
776
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
777
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
778
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
779
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
780
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
781
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
782
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
783
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
784
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
785
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
786
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
787
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
788
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
789
+ OTransform?: import("csstype").Property.Transform | undefined;
790
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
791
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
792
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
793
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
794
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
795
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
796
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
797
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
798
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
799
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
800
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
801
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
802
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
803
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
804
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
805
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
806
+ clipRule?: import("csstype").Property.ClipRule | undefined;
807
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
808
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
809
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
810
+ fill?: import("csstype").Property.Fill | undefined;
811
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
812
+ fillRule?: import("csstype").Property.FillRule | undefined;
813
+ floodColor?: import("csstype").Property.FloodColor | undefined;
814
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
815
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
816
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
817
+ marker?: import("csstype").Property.Marker | undefined;
818
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
819
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
820
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
821
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
822
+ stopColor?: import("csstype").Property.StopColor | undefined;
823
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
824
+ stroke?: import("csstype").Property.Stroke | undefined;
825
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
826
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
827
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
828
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
829
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
830
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
831
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
832
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
833
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
834
+ };
835
+ link: {
836
+ accentColor?: import("csstype").Property.AccentColor | undefined;
837
+ alignContent?: import("csstype").Property.AlignContent | undefined;
838
+ alignItems?: import("csstype").Property.AlignItems | undefined;
839
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
840
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
841
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
842
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
843
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
844
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
845
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
846
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
847
+ animationName?: import("csstype").Property.AnimationName | undefined;
848
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
849
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
850
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
851
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
852
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
853
+ appearance?: import("csstype").Property.Appearance | undefined;
854
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
855
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
856
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
857
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
858
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
859
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
860
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
861
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
862
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
863
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
864
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
865
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
866
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
867
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
868
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
869
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
870
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
871
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
872
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
873
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
874
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
875
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
876
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
877
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
878
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
879
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
880
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
881
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
882
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
883
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
884
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
885
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
886
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
887
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
888
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
889
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
890
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
891
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
892
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
893
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
894
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
895
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
896
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
897
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
898
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
899
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
900
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
901
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
902
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
903
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
904
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
905
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
906
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
907
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
908
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
909
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
910
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
911
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
912
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
913
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
914
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
915
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
916
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
917
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
918
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
919
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
920
+ breakInside?: import("csstype").Property.BreakInside | undefined;
921
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
922
+ caretColor?: import("csstype").Property.CaretColor | undefined;
923
+ caretShape?: import("csstype").Property.CaretShape | undefined;
924
+ clear?: import("csstype").Property.Clear | undefined;
925
+ clipPath?: import("csstype").Property.ClipPath | undefined;
926
+ color?: import("csstype").Property.Color | undefined;
927
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
928
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
929
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
930
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
931
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
932
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
933
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
934
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
935
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
936
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
937
+ contain?: import("csstype").Property.Contain | undefined;
938
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
939
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
940
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
941
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
942
+ containerName?: import("csstype").Property.ContainerName | undefined;
943
+ containerType?: import("csstype").Property.ContainerType | undefined;
944
+ content?: import("csstype").Property.Content | undefined;
945
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
946
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
947
+ counterReset?: import("csstype").Property.CounterReset | undefined;
948
+ counterSet?: import("csstype").Property.CounterSet | undefined;
949
+ cursor?: import("csstype").Property.Cursor | undefined;
950
+ direction?: import("csstype").Property.Direction | undefined;
951
+ display?: import("csstype").Property.Display | undefined;
952
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
953
+ filter?: import("csstype").Property.Filter | undefined;
954
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
955
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
956
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
957
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
958
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
959
+ float?: import("csstype").Property.Float | undefined;
960
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
961
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
962
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
963
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
964
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
965
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
966
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
967
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
968
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
969
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
970
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
971
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
972
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
973
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
974
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
975
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
976
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
977
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
978
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
979
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
980
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
981
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
982
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
983
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
984
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
985
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
986
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
987
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
988
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
989
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
990
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
991
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
992
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
993
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
994
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
995
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
996
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
997
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
998
+ height?: import("csstype").Property.Height<string | number> | undefined;
999
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1000
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1001
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1002
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1003
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1004
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1005
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1006
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1007
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1008
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1009
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1010
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1011
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1012
+ isolation?: import("csstype").Property.Isolation | undefined;
1013
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1014
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1015
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1016
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1017
+ left?: import("csstype").Property.Left<string | number> | undefined;
1018
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1019
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1020
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1021
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1022
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1023
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1024
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1025
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1026
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1027
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1028
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1029
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1030
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1031
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1032
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1033
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1034
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1035
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1036
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1037
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1038
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1039
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1040
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1041
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1042
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1043
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1044
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1045
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1046
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1047
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1048
+ maskType?: import("csstype").Property.MaskType | undefined;
1049
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1050
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1051
+ mathShift?: import("csstype").Property.MathShift | undefined;
1052
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1053
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1054
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1055
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1056
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1057
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1058
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1059
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1060
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1061
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1062
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1063
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1064
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1065
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1066
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1067
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1068
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1069
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1070
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1071
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1072
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1073
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1074
+ opacity?: import("csstype").Property.Opacity | undefined;
1075
+ order?: import("csstype").Property.Order | undefined;
1076
+ orphans?: import("csstype").Property.Orphans | undefined;
1077
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1078
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1079
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1080
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1081
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1082
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1083
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1084
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1085
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1086
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1087
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1088
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1089
+ overlay?: import("csstype").Property.Overlay | undefined;
1090
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1091
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1092
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1093
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1094
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1095
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1096
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1097
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1098
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1099
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1100
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1101
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1102
+ page?: import("csstype").Property.Page | undefined;
1103
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1104
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1105
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1106
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1107
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1108
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1109
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1110
+ position?: import("csstype").Property.Position | undefined;
1111
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1112
+ quotes?: import("csstype").Property.Quotes | undefined;
1113
+ resize?: import("csstype").Property.Resize | undefined;
1114
+ right?: import("csstype").Property.Right<string | number> | undefined;
1115
+ rotate?: import("csstype").Property.Rotate | undefined;
1116
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1117
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1118
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1119
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1120
+ scale?: import("csstype").Property.Scale | undefined;
1121
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1122
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1123
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1124
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1125
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1126
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1127
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1128
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1129
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1130
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1131
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1132
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1133
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1134
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1135
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1136
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1137
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1138
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1139
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1140
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1141
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1142
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1143
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1144
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1145
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1146
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1147
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1148
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1149
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1150
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1151
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1152
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1153
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1154
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1155
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1156
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1157
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1158
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1159
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1160
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1161
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1162
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1163
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1164
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1165
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1166
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1167
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1168
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1169
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1170
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1171
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1172
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1173
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1174
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1175
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1176
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1177
+ textWrap?: import("csstype").Property.TextWrap | undefined;
1178
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
1179
+ top?: import("csstype").Property.Top<string | number> | undefined;
1180
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1181
+ transform?: import("csstype").Property.Transform | undefined;
1182
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1183
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1184
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1185
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
1186
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1187
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1188
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1189
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1190
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
1191
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1192
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1193
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1194
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
1195
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
1196
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
1197
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1198
+ visibility?: import("csstype").Property.Visibility | undefined;
1199
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1200
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1201
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
1202
+ widows?: import("csstype").Property.Widows | undefined;
1203
+ width?: import("csstype").Property.Width<string | number> | undefined;
1204
+ willChange?: import("csstype").Property.WillChange | undefined;
1205
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1206
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1207
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1208
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1209
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1210
+ zoom?: import("csstype").Property.Zoom | undefined;
1211
+ all?: import("csstype").Globals | undefined;
1212
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
1213
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
1214
+ background?: import("csstype").Property.Background<string | number> | undefined;
1215
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1216
+ border?: import("csstype").Property.Border<string | number> | undefined;
1217
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
1218
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1219
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1220
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
1221
+ borderColor?: import("csstype").Property.BorderColor | undefined;
1222
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1223
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
1224
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1225
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1226
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
1227
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1228
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
1229
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1230
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
1231
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
1232
+ caret?: import("csstype").Property.Caret | undefined;
1233
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1234
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
1235
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1236
+ container?: import("csstype").Property.Container | undefined;
1237
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
1238
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1239
+ font?: import("csstype").Property.Font | undefined;
1240
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
1241
+ grid?: import("csstype").Property.Grid | undefined;
1242
+ gridArea?: import("csstype").Property.GridArea | undefined;
1243
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1244
+ gridRow?: import("csstype").Property.GridRow | undefined;
1245
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1246
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
1247
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1248
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1249
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1250
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1251
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
1252
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1253
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1254
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
1255
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1256
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
1257
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
1258
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
1259
+ overflow?: import("csstype").Property.Overflow | undefined;
1260
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1261
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
1262
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1263
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1264
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1265
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1266
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1267
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1268
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1269
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1270
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1271
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1272
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1273
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1274
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1275
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
1276
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1277
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
1278
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
1279
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1280
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1281
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1282
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1283
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1284
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1285
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1286
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1287
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1288
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1289
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1290
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1291
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1292
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1293
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1294
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1295
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1296
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1297
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1298
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1299
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1300
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1301
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1302
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1303
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1304
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1305
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1306
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1307
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1308
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1309
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1310
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1311
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1312
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1313
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1314
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1315
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1316
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1317
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1318
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1319
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1320
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1321
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1322
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1323
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1324
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1325
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1326
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1327
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1328
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1329
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1330
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1331
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1332
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1333
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1334
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1335
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1336
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1337
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1338
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1339
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1340
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1341
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1342
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1343
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
1344
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1345
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1346
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1347
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1348
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1349
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1350
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1351
+ msOrder?: import("csstype").Property.Order | undefined;
1352
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1353
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1354
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1355
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1356
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1357
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1358
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1359
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1360
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1361
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1362
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1363
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1364
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1365
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1366
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1367
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1368
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1369
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1370
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1371
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1372
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1373
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1374
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1375
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1376
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1377
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1378
+ msTransform?: import("csstype").Property.Transform | undefined;
1379
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1380
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1381
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1382
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1383
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1384
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1385
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1386
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1387
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1388
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1389
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1390
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1391
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1392
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1393
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1394
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1395
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1396
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1397
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1398
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1399
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1400
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1401
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1402
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1403
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1404
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1405
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1406
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1407
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1408
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1409
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1410
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1411
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1412
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1413
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1414
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1415
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1416
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1417
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1418
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1419
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1420
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1421
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1422
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1423
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1424
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1425
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1426
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1427
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1428
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1429
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1430
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1431
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1432
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1433
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1434
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1435
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1436
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1437
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1438
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1439
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1440
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1441
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1442
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1443
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1444
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1445
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1446
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1447
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1448
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1449
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1450
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1451
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1452
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1453
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1454
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1455
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1456
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1457
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1458
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1459
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1460
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1461
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1462
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1463
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1464
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1465
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1466
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1467
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1468
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1469
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1470
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1471
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1472
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1473
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1474
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1475
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1476
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1477
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1478
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1479
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1480
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1481
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1482
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1483
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1484
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1485
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1486
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1487
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1488
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1489
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1490
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1491
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1492
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1493
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1494
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1495
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1496
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1497
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1498
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1499
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1500
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1501
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1502
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1503
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1504
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1505
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1506
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1507
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1508
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1509
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1510
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1511
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1512
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1513
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1514
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1515
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1516
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1517
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1518
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1519
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1520
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1521
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1522
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1523
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1524
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1525
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1526
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1527
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1528
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1529
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1530
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1531
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1532
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1533
+ clip?: import("csstype").Property.Clip | undefined;
1534
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1535
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1536
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1537
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1538
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1539
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1540
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1541
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1542
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1543
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1544
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1545
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1546
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1547
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1548
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1549
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1550
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1551
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1552
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1553
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1554
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1555
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1556
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1557
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1558
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1559
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1560
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1561
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1562
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1563
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1564
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1565
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1566
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1567
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1568
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1569
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1570
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1571
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1572
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1573
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1574
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1575
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1576
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1577
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1578
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1579
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1580
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1581
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1582
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1583
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1584
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1585
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1586
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1587
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1588
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1589
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1590
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1591
+ MozTransform?: import("csstype").Property.Transform | undefined;
1592
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1593
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1594
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1595
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1596
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1597
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1598
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1599
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1600
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1601
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1602
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1603
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1604
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1605
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1606
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1607
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1608
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1609
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1610
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1611
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1612
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1613
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1614
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1615
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1616
+ OTransform?: import("csstype").Property.Transform | undefined;
1617
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1618
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1619
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1620
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1621
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1622
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1623
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1624
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1625
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1626
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1627
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1628
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1629
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1630
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1631
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1632
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1633
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1634
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1635
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1636
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1637
+ fill?: import("csstype").Property.Fill | undefined;
1638
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1639
+ fillRule?: import("csstype").Property.FillRule | undefined;
1640
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1641
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1642
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1643
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1644
+ marker?: import("csstype").Property.Marker | undefined;
1645
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1646
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1647
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1648
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1649
+ stopColor?: import("csstype").Property.StopColor | undefined;
1650
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1651
+ stroke?: import("csstype").Property.Stroke | undefined;
1652
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1653
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1654
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1655
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1656
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1657
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1658
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1659
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1660
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1661
+ };
1662
+ placeholder: {
1663
+ color: string;
1664
+ };
1665
+ }>;
1666
+ export {};