@yoopta/ui 6.0.0-beta.7 → 6.0.0-beta.8

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