@douyinfe/semi-ui 2.25.0-beta.0 → 2.25.1

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