motion-start 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (233) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +39 -0
  3. package/package.json +64 -0
  4. package/src/animation/UseAnimatedState.svelte +86 -0
  5. package/src/animation/UseAnimation.svelte +61 -0
  6. package/src/animation/animate.ts +78 -0
  7. package/src/animation/animation-controls.ts +101 -0
  8. package/src/animation/types.ts +83 -0
  9. package/src/animation/use-animated-state.ts +1 -0
  10. package/src/animation/use-animation.ts +74 -0
  11. package/src/animation/utils/default-transitions.ts +70 -0
  12. package/src/animation/utils/easing.ts +55 -0
  13. package/src/animation/utils/is-animatable.ts +42 -0
  14. package/src/animation/utils/is-animation-controls.ts +17 -0
  15. package/src/animation/utils/is-keyframes-target.ts +17 -0
  16. package/src/animation/utils/transitions.ts +218 -0
  17. package/src/animation/utils/variant-resolvers.ts +15 -0
  18. package/src/components/AnimatePresence/AnimatePresence.svelte +180 -0
  19. package/src/components/AnimatePresence/PresenceChild/PresenceChild.svelte +78 -0
  20. package/src/components/AnimatePresence/PresenceChild/index.ts +7 -0
  21. package/src/components/AnimatePresence/PresenceChild/types.ts +10 -0
  22. package/src/components/AnimatePresence/index.ts +46 -0
  23. package/src/components/AnimatePresence/types.ts +79 -0
  24. package/src/components/AnimatePresence/use-presence.ts +90 -0
  25. package/src/components/AnimateSharedLayout/AnimateSharedLayout.svelte +239 -0
  26. package/src/components/AnimateSharedLayout/index.ts +11 -0
  27. package/src/components/AnimateSharedLayout/types.ts +111 -0
  28. package/src/components/AnimateSharedLayout/utils/batcher.ts +96 -0
  29. package/src/components/AnimateSharedLayout/utils/crossfader.ts +260 -0
  30. package/src/components/AnimateSharedLayout/utils/rotate.ts +48 -0
  31. package/src/components/AnimateSharedLayout/utils/stack.ts +160 -0
  32. package/src/components/LazyMotion/LazyMotion.svelte +82 -0
  33. package/src/components/LazyMotion/index.ts +42 -0
  34. package/src/components/LazyMotion/types.ts +58 -0
  35. package/src/components/MotionConfig/MotionConfig.svelte +56 -0
  36. package/src/components/MotionConfig/MotionConfigScaleCorrection.ts +47 -0
  37. package/src/components/MotionConfig/index.ts +20 -0
  38. package/src/components/MotionDiv.svelte +8 -0
  39. package/src/context/DOMcontext.ts +21 -0
  40. package/src/context/LayoutGroupContext.ts +13 -0
  41. package/src/context/LazyContext.ts +18 -0
  42. package/src/context/MotionConfigContext.ts +48 -0
  43. package/src/context/MotionContext/MotionContext.svelte +27 -0
  44. package/src/context/MotionContext/MotionContextProvider.svelte +22 -0
  45. package/src/context/MotionContext/UseCreateMotionContext.svelte +34 -0
  46. package/src/context/MotionContext/create.ts +1 -0
  47. package/src/context/MotionContext/index.ts +14 -0
  48. package/src/context/MotionContext/utils.ts +29 -0
  49. package/src/context/PresenceContext.ts +26 -0
  50. package/src/context/ScaleCorrectionProvider.svelte +27 -0
  51. package/src/context/SharedLayoutContext.ts +29 -0
  52. package/src/events/UseDomEvent.svelte +67 -0
  53. package/src/events/UsePointerEvent.svelte +76 -0
  54. package/src/events/event-info.ts +69 -0
  55. package/src/events/types.ts +15 -0
  56. package/src/events/use-dom-event.ts +48 -0
  57. package/src/events/use-pointer-event.ts +29 -0
  58. package/src/events/utils.ts +25 -0
  59. package/src/gestures/PanSession.ts +298 -0
  60. package/src/gestures/UseFocusGesture.svelte +31 -0
  61. package/src/gestures/UseGestures.svelte +17 -0
  62. package/src/gestures/UseHoverGesture.svelte +40 -0
  63. package/src/gestures/UsePanGesture.svelte +58 -0
  64. package/src/gestures/UseTapGesture.svelte +77 -0
  65. package/src/gestures/drag/UseDrag.svelte +55 -0
  66. package/src/gestures/drag/UseDragControls.svelte +145 -0
  67. package/src/gestures/drag/VisualElementDragControls.ts +632 -0
  68. package/src/gestures/drag/types.ts +307 -0
  69. package/src/gestures/drag/use-drag-controls.ts +148 -0
  70. package/src/gestures/drag/use-drag.ts +15 -0
  71. package/src/gestures/drag/utils/constraints.ts +157 -0
  72. package/src/gestures/drag/utils/lock.ts +69 -0
  73. package/src/gestures/types.ts +257 -0
  74. package/src/gestures/use-focus-gesture.ts +16 -0
  75. package/src/gestures/use-gestures.ts +2 -0
  76. package/src/gestures/use-hover-gesture.ts +10 -0
  77. package/src/gestures/use-pan-gesture.ts +22 -0
  78. package/src/gestures/use-tap-gesture.ts +14 -0
  79. package/src/gestures/utils/event-type.ts +24 -0
  80. package/src/gestures/utils/is-node-or-child.ts +31 -0
  81. package/src/index.ts +104 -0
  82. package/src/motion/Motion.svelte +246 -0
  83. package/src/motion/MotionSSR.svelte +244 -0
  84. package/src/motion/features/AnimationState.svelte +29 -0
  85. package/src/motion/features/Exit.svelte +32 -0
  86. package/src/motion/features/UseFeatures.svelte +39 -0
  87. package/src/motion/features/animations.ts +22 -0
  88. package/src/motion/features/definitions.ts +49 -0
  89. package/src/motion/features/drag.ts +24 -0
  90. package/src/motion/features/gestures.ts +24 -0
  91. package/src/motion/features/layout/Animate.svelte +314 -0
  92. package/src/motion/features/layout/Animate.ts +9 -0
  93. package/src/motion/features/layout/AnimateLayoutContextProvider.svelte +14 -0
  94. package/src/motion/features/layout/Measure.svelte +98 -0
  95. package/src/motion/features/layout/Measure.ts +9 -0
  96. package/src/motion/features/layout/MeasureContextProvider.svelte +32 -0
  97. package/src/motion/features/layout/index.ts +20 -0
  98. package/src/motion/features/layout/types.ts +71 -0
  99. package/src/motion/features/layout/utils.ts +40 -0
  100. package/src/motion/features/types.ts +53 -0
  101. package/src/motion/features/use-features.ts +16 -0
  102. package/src/motion/index.ts +64 -0
  103. package/src/motion/types.ts +278 -0
  104. package/src/motion/utils/UseLayoutId.svelte +18 -0
  105. package/src/motion/utils/UseVisualElement.svelte +104 -0
  106. package/src/motion/utils/UseVisualState.svelte +137 -0
  107. package/src/motion/utils/is-forced-motion-value.ts +23 -0
  108. package/src/motion/utils/make-renderless-component.ts +17 -0
  109. package/src/motion/utils/should-inhert-variant.ts +6 -0
  110. package/src/motion/utils/use-motion-ref.ts +41 -0
  111. package/src/motion/utils/use-visual-element.ts +13 -0
  112. package/src/motion/utils/use-visual-state.ts +24 -0
  113. package/src/motion/utils/valid-prop.ts +80 -0
  114. package/src/render/dom/M.svelte +16 -0
  115. package/src/render/dom/UseRender.svelte +37 -0
  116. package/src/render/dom/create-motion-class.ts +12 -0
  117. package/src/render/dom/create-visual-element.ts +22 -0
  118. package/src/render/dom/featureBundle.ts +22 -0
  119. package/src/render/dom/motion-minimal.ts +22 -0
  120. package/src/render/dom/motion-proxy.ts +107 -0
  121. package/src/render/dom/motion.ts +62 -0
  122. package/src/render/dom/projection/convert-to-relative.ts +40 -0
  123. package/src/render/dom/projection/default-scale-correctors.ts +138 -0
  124. package/src/render/dom/projection/measure.ts +28 -0
  125. package/src/render/dom/projection/relative-set.ts +27 -0
  126. package/src/render/dom/projection/scale-correction.ts +22 -0
  127. package/src/render/dom/projection/types.ts +13 -0
  128. package/src/render/dom/projection/utils.ts +69 -0
  129. package/src/render/dom/svg-visual-element.ts +114 -0
  130. package/src/render/dom/types.ts +32 -0
  131. package/src/render/dom/use-render.ts +11 -0
  132. package/src/render/dom/utils/UseInitialMotionProps.svelte +26 -0
  133. package/src/render/dom/utils/batch-layout.ts +77 -0
  134. package/src/render/dom/utils/camel-to-dash.ts +20 -0
  135. package/src/render/dom/utils/create-config.ts +33 -0
  136. package/src/render/dom/utils/css-variables-conversion.ts +121 -0
  137. package/src/render/dom/utils/filter-props.ts +55 -0
  138. package/src/render/dom/utils/is-css-variable.ts +18 -0
  139. package/src/render/dom/utils/is-svg-component.ts +41 -0
  140. package/src/render/dom/utils/parse-dom-variant.ts +26 -0
  141. package/src/render/dom/utils/unit-conversion.ts +258 -0
  142. package/src/render/dom/utils/use-html-props.ts +2 -0
  143. package/src/render/dom/utils/use-svg-props.ts +1 -0
  144. package/src/render/dom/value-types/animatable-none.ts +24 -0
  145. package/src/render/dom/value-types/defaults.ts +30 -0
  146. package/src/render/dom/value-types/dimensions.ts +27 -0
  147. package/src/render/dom/value-types/find.ts +31 -0
  148. package/src/render/dom/value-types/get-as-type.ts +21 -0
  149. package/src/render/dom/value-types/number.ts +83 -0
  150. package/src/render/dom/value-types/test.ts +17 -0
  151. package/src/render/dom/value-types/type-auto.ts +21 -0
  152. package/src/render/dom/value-types/type-int.ts +23 -0
  153. package/src/render/dom/value-types/types.ts +8 -0
  154. package/src/render/html/UseHTMLProps.svelte +33 -0
  155. package/src/render/html/UseInitialMotionValues.svelte +27 -0
  156. package/src/render/html/UseStyle.svelte +47 -0
  157. package/src/render/html/config-motion.ts +23 -0
  158. package/src/render/html/supported-elements.ts +10 -0
  159. package/src/render/html/types.ts +64 -0
  160. package/src/render/html/use-props.ts +14 -0
  161. package/src/render/html/utils/build-projection-transform.ts +53 -0
  162. package/src/render/html/utils/build-styles.ts +121 -0
  163. package/src/render/html/utils/build-transform.ts +79 -0
  164. package/src/render/html/utils/create-render-state.ts +18 -0
  165. package/src/render/html/utils/render.ts +22 -0
  166. package/src/render/html/utils/scrape-motion-values.ts +26 -0
  167. package/src/render/html/utils/transform.ts +51 -0
  168. package/src/render/html/visual-element.ts +129 -0
  169. package/src/render/index.ts +703 -0
  170. package/src/render/svg/UseSVGProps.svelte +34 -0
  171. package/src/render/svg/config-motion.ts +51 -0
  172. package/src/render/svg/lowercase-elements.ts +35 -0
  173. package/src/render/svg/supported-elements.ts +10 -0
  174. package/src/render/svg/types.ts +51 -0
  175. package/src/render/svg/use-props.ts +14 -0
  176. package/src/render/svg/utils/build-attrs.ts +58 -0
  177. package/src/render/svg/utils/camel-case-attrs.ts +27 -0
  178. package/src/render/svg/utils/create-render-state.ts +17 -0
  179. package/src/render/svg/utils/path.ts +49 -0
  180. package/src/render/svg/utils/render.ts +22 -0
  181. package/src/render/svg/utils/scrape-motion-values.ts +26 -0
  182. package/src/render/svg/utils/transform-origin.ts +30 -0
  183. package/src/render/svg/visual-element.ts +44 -0
  184. package/src/render/types.ts +148 -0
  185. package/src/render/utils/animation-state.ts +375 -0
  186. package/src/render/utils/animation.ts +167 -0
  187. package/src/render/utils/compare-by-depth.ts +18 -0
  188. package/src/render/utils/flat-tree.ts +35 -0
  189. package/src/render/utils/is-draggable.ts +17 -0
  190. package/src/render/utils/lifecycles.ts +172 -0
  191. package/src/render/utils/motion-values.ts +59 -0
  192. package/src/render/utils/projection.ts +38 -0
  193. package/src/render/utils/setters.ts +910 -0
  194. package/src/render/utils/state.ts +113 -0
  195. package/src/render/utils/types.ts +12 -0
  196. package/src/render/utils/variants.ts +76 -0
  197. package/src/types/geometry.ts +91 -0
  198. package/src/types.ts +1088 -0
  199. package/src/utils/UseUnmountEffect.svelte +11 -0
  200. package/src/utils/array.ts +18 -0
  201. package/src/utils/each-axis.ts +15 -0
  202. package/src/utils/errors.ts +22 -0
  203. package/src/utils/fix-process-env.ts +22 -0
  204. package/src/utils/geometry/delta-apply.ts +162 -0
  205. package/src/utils/geometry/delta-calc.ts +89 -0
  206. package/src/utils/geometry/index.ts +83 -0
  207. package/src/utils/is-browser.ts +12 -0
  208. package/src/utils/is-numerical-string.ts +15 -0
  209. package/src/utils/is-ref-object.ts +16 -0
  210. package/src/utils/noop.ts +15 -0
  211. package/src/utils/resolve-value.ts +23 -0
  212. package/src/utils/shallow-compare.ts +23 -0
  213. package/src/utils/subscription-manager.ts +49 -0
  214. package/src/utils/time-conversion.ts +18 -0
  215. package/src/utils/transform.ts +120 -0
  216. package/src/utils/use-constant.ts +23 -0
  217. package/src/utils/use-cycle.ts +78 -0
  218. package/src/utils/use-force-update.ts +7 -0
  219. package/src/utils/use-isomorphic-effect.ts +8 -0
  220. package/src/utils/use-reduced-motion.ts +70 -0
  221. package/src/utils/use-unmount-effect.ts +8 -0
  222. package/src/value/index.ts +409 -0
  223. package/src/value/scroll/use-element-scroll.ts +73 -0
  224. package/src/value/scroll/use-viewport-scroll.ts +81 -0
  225. package/src/value/scroll/utils.ts +76 -0
  226. package/src/value/use-combine-values.ts +53 -0
  227. package/src/value/use-motion-template.ts +57 -0
  228. package/src/value/use-motion-value.ts +27 -0
  229. package/src/value/use-spring.ts +84 -0
  230. package/src/value/use-transform.ts +216 -0
  231. package/src/value/use-velocity.ts +44 -0
  232. package/src/value/utils/is-motion-value.ts +15 -0
  233. package/src/value/utils/resolve-motion-value.ts +29 -0
@@ -0,0 +1,910 @@
1
+ /// <reference types="react" />
2
+ /**
3
+ based on framer-motion@4.1.17,
4
+ Copyright (c) 2018 Framer B.V.
5
+ */
6
+ import type { Target, TargetAndTransition, TargetResolver, TargetWithKeyframes, Transition } from "../../types";
7
+ import type { ResolvedValues, VisualElement } from "../types";
8
+ import type { AnimationDefinition } from "./animation";
9
+
10
+
11
+ /**
12
+ based on framer-motion@4.0.3,
13
+ Copyright (c) 2018 Framer B.V.
14
+ */
15
+ import { complex } from 'style-value-types';
16
+ import { __assign, __read, __rest, __spreadArray } from 'tslib';
17
+ import type { VariantLabels } from "../../motion/types";
18
+ import { isNumericalString } from '../../utils/is-numerical-string.js';
19
+ import { resolveFinalValueInKeyframes } from '../../utils/resolve-value.js';
20
+ import { motionValue } from '../../value/index.js';
21
+ import { getAnimatableNone } from '../dom/value-types/animatable-none.js';
22
+ import { findValueType } from '../dom/value-types/find.js';
23
+ import { resolveVariant } from './variants.js';
24
+
25
+ export { checkTargetForNewValues, getOrigin, getOriginFromTransition, setTarget, setValues };
26
+
27
+ /**
28
+ * Set VisualElement's MotionValue, creating a new MotionValue for it if
29
+ * it doesn't exist.
30
+ */
31
+ function setMotionValue(visualElement: VisualElement, key: string, value: any) {
32
+ if (visualElement.hasValue(key)) {
33
+ visualElement.getValue(key)?.set(value);
34
+ }
35
+ else {
36
+ visualElement.addValue(key, motionValue(value));
37
+ }
38
+ }
39
+ function setTarget(visualElement: VisualElement, definition: string | TargetAndTransition | TargetResolver) {
40
+ var resolved = resolveVariant(visualElement, definition);
41
+ var _a = resolved
42
+ ? visualElement.makeTargetAnimatable(resolved, false)
43
+ : {}, _b = _a.transitionEnd, transitionEnd = _b === void 0 ? {} : _b; _a.transition; var target = __rest(_a, ["transitionEnd", "transition"]);
44
+ target = __assign(__assign({}, target), transitionEnd);
45
+ for (var key in target) {
46
+ var value = resolveFinalValueInKeyframes(target[key]);
47
+ setMotionValue(visualElement, key, value);
48
+ }
49
+ }
50
+ function setVariants(visualElement: VisualElement, variantLabels: VariantLabels) {
51
+ var reversedLabels = __spreadArray([], __read(variantLabels)).reverse();
52
+ reversedLabels.forEach(function (key) {
53
+ var _a;
54
+ var variant = visualElement.getVariant(key);
55
+ variant && setTarget(visualElement, variant);
56
+ (_a = visualElement.variantChildren) === null || _a === void 0 ? void 0 : _a.forEach(function (child) {
57
+ setVariants(child, variantLabels);
58
+ });
59
+ });
60
+ }
61
+ function setValues(visualElement: VisualElement, definition: AnimationDefinition) {
62
+ if (Array.isArray(definition)) {
63
+ return setVariants(visualElement, definition);
64
+ }
65
+ else if (typeof definition === "string") {
66
+ return setVariants(visualElement, [definition]);
67
+ }
68
+ else {
69
+ setTarget(visualElement, definition);
70
+ }
71
+ }
72
+ function checkTargetForNewValues(visualElement: VisualElement, target: TargetWithKeyframes, origin: ResolvedValues) {
73
+ var _a, _b, _c;
74
+ var _d;
75
+ var newValueKeys = Object.keys(target).filter(function (key) { return !visualElement.hasValue(key); });
76
+ var numNewValues = newValueKeys.length;
77
+ if (!numNewValues)
78
+ return;
79
+ for (var i = 0; i < numNewValues; i++) {
80
+ var key = newValueKeys[i];
81
+ var targetValue = target[key];
82
+ var value = null;
83
+ /**
84
+ * If the target is a series of keyframes, we can use the first value
85
+ * in the array. If this first value is null, we'll still need to read from the DOM.
86
+ */
87
+ if (Array.isArray(targetValue)) {
88
+ value = targetValue[0];
89
+ }
90
+ /**
91
+ * If the target isn't keyframes, or the first keyframe was null, we need to
92
+ * first check if an origin value was explicitly defined in the transition as "from",
93
+ * if not read the value from the DOM. As an absolute fallback, take the defined target value.
94
+ */
95
+ if (value === null) {
96
+ value = (_b = (_a = origin[key]) !== null && _a !== void 0 ? _a : visualElement.readValue(key)) !== null && _b !== void 0 ? _b : target[key];
97
+ }
98
+ /**
99
+ * If value is still undefined or null, ignore it. Preferably this would throw,
100
+ * but this was causing issues in Framer.
101
+ */
102
+ if (value === undefined || value === null)
103
+ continue;
104
+ if (typeof value === "string" && isNumericalString(value)) {
105
+ // If this is a number read as a string, ie "0" or "200", convert it to a number
106
+ value = parseFloat(value);
107
+ }
108
+ else if (!findValueType(value) && complex.test(targetValue)) {
109
+ value = getAnimatableNone(key, targetValue);
110
+ }
111
+ visualElement.addValue(key, motionValue(value));
112
+ (_c = (_d = origin)[key]) !== null && _c !== void 0 ? _c : (_d[key] = value);
113
+ visualElement.setBaseTarget(key, value);
114
+ }
115
+ }
116
+ function getOriginFromTransition(key: string, transition: Transition) {
117
+ if (!transition)
118
+ return;
119
+ var valueTransition = transition[key] || transition["default"] || transition;
120
+ return valueTransition.from;
121
+ }
122
+ function getOrigin(target: Target, transition: Transition, visualElement: VisualElement) {
123
+ var _a, _b;
124
+ var origin = {};
125
+ for (var key in target) {
126
+ origin[key] =
127
+ (_a = getOriginFromTransition(key, transition)) !== null && _a !== void 0 ? _a : (_b = visualElement.getValue(key)) === null || _b === void 0 ? void 0 : _b.get();
128
+ }
129
+ return origin as import("../../types").MakeCustomValueType<{
130
+ alignContent?: import("csstype").Property.AlignContent | undefined;
131
+ alignItems?: import("csstype").Property.AlignItems | undefined;
132
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
133
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
134
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
135
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
136
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
137
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
138
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
139
+ animationName?: import("csstype").Property.AnimationName | undefined;
140
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
141
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
142
+ appearance?: import("csstype").Property.Appearance | undefined;
143
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
144
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
145
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
146
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
147
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
148
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
149
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
150
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
151
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
152
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
153
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
154
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
155
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
156
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
157
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
158
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
159
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
160
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
161
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
162
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
163
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
164
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
165
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
166
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
167
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
168
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
169
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
170
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
171
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
172
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
173
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
174
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
175
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
176
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
177
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
178
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
179
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
180
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
181
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
182
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
183
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
184
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
185
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
186
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
187
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
188
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
189
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
190
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
191
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
192
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
193
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
194
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
195
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
196
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
197
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
198
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
199
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
200
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
201
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
202
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
203
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
204
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
205
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
206
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
207
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
208
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
209
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
210
+ breakInside?: import("csstype").Property.BreakInside | undefined;
211
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
212
+ caretColor?: import("csstype").Property.CaretColor | undefined;
213
+ clear?: import("csstype").Property.Clear | undefined;
214
+ clipPath?: import("csstype").Property.ClipPath | undefined;
215
+ color?: import("csstype").Property.Color | undefined;
216
+ colorAdjust?: import("csstype").Property.ColorAdjust | undefined;
217
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
218
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
219
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
220
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
221
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
222
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
223
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
224
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
225
+ contain?: import("csstype").Property.Contain | undefined;
226
+ content?: import("csstype").Property.Content | undefined;
227
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
228
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
229
+ counterReset?: import("csstype").Property.CounterReset | undefined;
230
+ counterSet?: import("csstype").Property.CounterSet | undefined;
231
+ cursor?: import("csstype").Property.Cursor | undefined;
232
+ direction?: import("csstype").Property.Direction | undefined;
233
+ display?: import("csstype").Property.Display | undefined;
234
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
235
+ filter?: import("csstype").Property.Filter | undefined;
236
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
237
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
238
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
239
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
240
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
241
+ float?: import("csstype").Property.Float | undefined;
242
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
243
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
244
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
245
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
246
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
247
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
248
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
249
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
250
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
251
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
252
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
253
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
254
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
255
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
256
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
257
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
258
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
259
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
260
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
261
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
262
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
263
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
264
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
265
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
266
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
267
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
268
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
269
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
270
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
271
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
272
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
273
+ height?: import("csstype").Property.Height<string | number> | undefined;
274
+ hyphens?: import("csstype").Property.Hyphens | undefined;
275
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
276
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
277
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
278
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
279
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
280
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
281
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
282
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
283
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
284
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
285
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
286
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
287
+ isolation?: import("csstype").Property.Isolation | undefined;
288
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
289
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
290
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
291
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
292
+ left?: import("csstype").Property.Left<string | number> | undefined;
293
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
294
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
295
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
296
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
297
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
298
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
299
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
300
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
301
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
302
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
303
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
304
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
305
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
306
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
307
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
308
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
309
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
310
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
311
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
312
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
313
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
314
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
315
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
316
+ maskClip?: import("csstype").Property.MaskClip | undefined;
317
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
318
+ maskImage?: import("csstype").Property.MaskImage | undefined;
319
+ maskMode?: import("csstype").Property.MaskMode | undefined;
320
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
321
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
322
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
323
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
324
+ maskType?: import("csstype").Property.MaskType | undefined;
325
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
326
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
327
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
328
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
329
+ maxLines?: import("csstype").Property.MaxLines | undefined;
330
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
331
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
332
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
333
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
334
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
335
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
336
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
337
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
338
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
339
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
340
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
341
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
342
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
343
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
344
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
345
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
346
+ opacity?: import("csstype").Property.Opacity | undefined;
347
+ order?: import("csstype").Property.Order | undefined;
348
+ orphans?: import("csstype").Property.Orphans | undefined;
349
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
350
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
351
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
352
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
353
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
354
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
355
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
356
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
357
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
358
+ overflowX?: import("csstype").Property.OverflowX | undefined;
359
+ overflowY?: import("csstype").Property.OverflowY | undefined;
360
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
361
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
362
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
363
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
364
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
365
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
366
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
367
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
368
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
369
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
370
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
371
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
372
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
373
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
374
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
375
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
376
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
377
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
378
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
379
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
380
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
381
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
382
+ position?: import("csstype").Property.Position | undefined;
383
+ quotes?: import("csstype").Property.Quotes | undefined;
384
+ resize?: import("csstype").Property.Resize | undefined;
385
+ right?: import("csstype").Property.Right<string | number> | undefined;
386
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
387
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
388
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
389
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
390
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
391
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
392
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
393
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
394
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
395
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
396
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
397
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
398
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
399
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
400
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
401
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
402
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
403
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
404
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
405
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
406
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
407
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
408
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
409
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
410
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
411
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
412
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
413
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
414
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
415
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
416
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
417
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
418
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
419
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
420
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
421
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
422
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
423
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
424
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
425
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
426
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
427
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
428
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
429
+ textAlign?: import("csstype").Property.TextAlign | undefined;
430
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
431
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
432
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
433
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
434
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
435
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
436
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
437
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
438
+ textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
439
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
440
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
441
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
442
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
443
+ textJustify?: import("csstype").Property.TextJustify | undefined;
444
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
445
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
446
+ textRendering?: import("csstype").Property.TextRendering | undefined;
447
+ textShadow?: import("csstype").Property.TextShadow | undefined;
448
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
449
+ textTransform?: import("csstype").Property.TextTransform | undefined;
450
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
451
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
452
+ top?: import("csstype").Property.Top<string | number> | undefined;
453
+ touchAction?: import("csstype").Property.TouchAction | undefined;
454
+ transform?: import("csstype").Property.Transform | undefined;
455
+ transformBox?: import("csstype").Property.TransformBox | undefined;
456
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
457
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
458
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
459
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
460
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
461
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
462
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
463
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
464
+ userSelect?: import("csstype").Property.UserSelect | undefined;
465
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
466
+ visibility?: import("csstype").Property.Visibility | undefined;
467
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
468
+ widows?: import("csstype").Property.Widows | undefined;
469
+ width?: import("csstype").Property.Width<string | number> | undefined;
470
+ willChange?: import("csstype").Property.WillChange | undefined;
471
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
472
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
473
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
474
+ writingMode?: import("csstype").Property.WritingMode | undefined;
475
+ zIndex?: import("csstype").Property.ZIndex | undefined;
476
+ zoom?: import("csstype").Property.Zoom | undefined;
477
+ all?: import("csstype").Globals | undefined;
478
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
479
+ background?: import("csstype").Property.Background<string | number> | undefined;
480
+ border?: import("csstype").Property.Border<string | number> | undefined;
481
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
482
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
483
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
484
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
485
+ borderColor?: import("csstype").Property.BorderColor | undefined;
486
+ borderImage?: import("csstype").Property.BorderImage | undefined;
487
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
488
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
489
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
490
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
491
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
492
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
493
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
494
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
495
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
496
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
497
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
498
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
499
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
500
+ font?: import("csstype").Property.Font | undefined;
501
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
502
+ grid?: import("csstype").Property.Grid | undefined;
503
+ gridArea?: import("csstype").Property.GridArea | undefined;
504
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
505
+ gridRow?: import("csstype").Property.GridRow | undefined;
506
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
507
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
508
+ listStyle?: import("csstype").Property.ListStyle | undefined;
509
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
510
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
511
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
512
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
513
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
514
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
515
+ overflow?: import("csstype").Property.Overflow | undefined;
516
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
517
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
518
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
519
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
520
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
521
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
522
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
523
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
524
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
525
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
526
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
527
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
528
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
529
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
530
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
531
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
532
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
533
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
534
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
535
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
536
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
537
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
538
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
539
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
540
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
541
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
542
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
543
+ MozColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
544
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
545
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
546
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
547
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
548
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
549
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
550
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
551
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
552
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
553
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
554
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
555
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
556
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
557
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
558
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
559
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
560
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
561
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
562
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
563
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
564
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
565
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
566
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
567
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
568
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
569
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
570
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
571
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
572
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
573
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
574
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
575
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
576
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
577
+ msAlignSelf?: import("csstype").Property.AlignSelf | undefined;
578
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
579
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
580
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
581
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
582
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
583
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
584
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
585
+ msFilter?: import("csstype").Property.MsFilter | undefined;
586
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
587
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
588
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
589
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
590
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
591
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
592
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
593
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
594
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
595
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
596
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
597
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
598
+ msJustifySelf?: import("csstype").Property.JustifySelf | undefined;
599
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
600
+ msOrder?: import("csstype").Property.Order | undefined;
601
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
602
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
603
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
604
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
605
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
606
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
607
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
608
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
609
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
610
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
611
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
612
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
613
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
614
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
615
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
616
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
617
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
618
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
619
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
620
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
621
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
622
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
623
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
624
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
625
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
626
+ msTransform?: import("csstype").Property.Transform | undefined;
627
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
628
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
629
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
630
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
631
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
632
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
633
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
634
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
635
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
636
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
637
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
638
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
639
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
640
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
641
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
642
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
643
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
644
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
645
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
646
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
647
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
648
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
649
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
650
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
651
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
652
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
653
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
654
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
655
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
656
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
657
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
658
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
659
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
660
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
661
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
662
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
663
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
664
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
665
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
666
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
667
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
668
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
669
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
670
+ WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
671
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
672
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
673
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
674
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
675
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
676
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
677
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
678
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
679
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
680
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
681
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
682
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
683
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
684
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
685
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
686
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
687
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
688
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
689
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
690
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
691
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
692
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
693
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
694
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
695
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
696
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
697
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
698
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
699
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
700
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
701
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
702
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
703
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
704
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
705
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
706
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
707
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
708
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
709
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
710
+ WebkitOrder?: import("csstype").Property.Order | undefined;
711
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
712
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
713
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
714
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
715
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
716
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
717
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
718
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
719
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
720
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
721
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
722
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
723
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
724
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
725
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
726
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
727
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
728
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
729
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
730
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
731
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
732
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
733
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
734
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
735
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
736
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
737
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
738
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
739
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
740
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
741
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
742
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
743
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
744
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
745
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
746
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
747
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
748
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
749
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
750
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
751
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
752
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
753
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
754
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
755
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
756
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
757
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
758
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
759
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
760
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
761
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
762
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
763
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
764
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
765
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
766
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
767
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
768
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
769
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
770
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
771
+ azimuth?: import("csstype").Property.Azimuth | undefined;
772
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
773
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
774
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
775
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
776
+ boxLines?: import("csstype").Property.BoxLines | undefined;
777
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
778
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
779
+ boxPack?: import("csstype").Property.BoxPack | undefined;
780
+ clip?: import("csstype").Property.Clip | undefined;
781
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
782
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
783
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
784
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
785
+ imeMode?: import("csstype").Property.ImeMode | undefined;
786
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
787
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
788
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
789
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
790
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
791
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
792
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
793
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
794
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
795
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
796
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
797
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
798
+ scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
799
+ textCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
800
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
801
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
802
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
803
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
804
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
805
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
806
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
807
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
808
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
809
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
810
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
811
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
812
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
813
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
814
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
815
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
816
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
817
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
818
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
819
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
820
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
821
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
822
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
823
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
824
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
825
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
826
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
827
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
828
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
829
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
830
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
831
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
832
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
833
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
834
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
835
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
836
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
837
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
838
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
839
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
840
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
841
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
842
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
843
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
844
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
845
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
846
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
847
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
848
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
849
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
850
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
851
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
852
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
853
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
854
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
855
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
856
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
857
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
858
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
859
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
860
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
861
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
862
+ OTransform?: import("csstype").Property.Transform | undefined;
863
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
864
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
865
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
866
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
867
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
868
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
869
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
870
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
871
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
872
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
873
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
874
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
875
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
876
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
877
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
878
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
879
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
880
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
881
+ clipRule?: import("csstype").Property.ClipRule | undefined;
882
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
883
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
884
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
885
+ fill?: import("csstype").Property.Fill | undefined;
886
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
887
+ fillRule?: import("csstype").Property.FillRule | undefined;
888
+ floodColor?: import("csstype").Property.FloodColor | undefined;
889
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
890
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
891
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
892
+ marker?: import("csstype").Property.Marker | undefined;
893
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
894
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
895
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
896
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
897
+ stopColor?: import("csstype").Property.StopColor | undefined;
898
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
899
+ stroke?: import("csstype").Property.Stroke | undefined;
900
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
901
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
902
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
903
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
904
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
905
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
906
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
907
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
908
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
909
+ } & import("react").SVGAttributes<SVGElement> & import("../../motion/types").TransformProperties & import("../../motion/types").CustomStyles & import("../../motion/types").SVGPathProperties>;
910
+ }