@opengovsg/oui 0.0.0-snapshot-20250311073924

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