@yoopta/ui 6.0.0-beta.4 → 6.0.0-beta.6

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