@yr3/ui 1.0.0

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 (71) hide show
  1. package/LICENSE +9 -0
  2. package/README.md +55 -0
  3. package/dist/components/Avatar/avatar.css +133 -0
  4. package/dist/components/Avatar/avatar.css.map +1 -0
  5. package/dist/components/Backdrop/backdrop.css +27 -0
  6. package/dist/components/Backdrop/backdrop.css.map +1 -0
  7. package/dist/components/Box/box.css +46 -0
  8. package/dist/components/Box/box.css.map +1 -0
  9. package/dist/components/Button/buttons.css +114 -0
  10. package/dist/components/Button/buttons.css.map +1 -0
  11. package/dist/components/Calendar/calendar.css +3 -0
  12. package/dist/components/Calendar/calendar.css.map +1 -0
  13. package/dist/components/Checkbox/checkbox.css +122 -0
  14. package/dist/components/Checkbox/checkbox.css.map +1 -0
  15. package/dist/components/Chip/chip.css +136 -0
  16. package/dist/components/Chip/chip.css.map +1 -0
  17. package/dist/components/Collapse/collapse.css +14 -0
  18. package/dist/components/Collapse/collapse.css.map +1 -0
  19. package/dist/components/Container/container.css +39 -0
  20. package/dist/components/Container/container.css.map +1 -0
  21. package/dist/components/Control/control.css +92 -0
  22. package/dist/components/Control/control.css.map +1 -0
  23. package/dist/components/Divider/divider.css +83 -0
  24. package/dist/components/Divider/divider.css.map +1 -0
  25. package/dist/components/Drawer/drawer.css +70 -0
  26. package/dist/components/Drawer/drawer.css.map +1 -0
  27. package/dist/components/Fade/fade.css +10 -0
  28. package/dist/components/Fade/fade.css.map +1 -0
  29. package/dist/components/Flex/flex.css +51 -0
  30. package/dist/components/Flex/flex.css.map +1 -0
  31. package/dist/components/Grid/Grid.css +67 -0
  32. package/dist/components/Grid/Grid.css.map +1 -0
  33. package/dist/components/Group/group.css +132 -0
  34. package/dist/components/Group/group.css.map +1 -0
  35. package/dist/components/Image/image.css +8 -0
  36. package/dist/components/Image/image.css.map +1 -0
  37. package/dist/components/ImageDropzone/image-dropzone.css +55 -0
  38. package/dist/components/ImageDropzone/image-dropzone.css.map +1 -0
  39. package/dist/components/Input/input.css +128 -0
  40. package/dist/components/Input/input.css.map +1 -0
  41. package/dist/components/InputArea/inputArea.css +88 -0
  42. package/dist/components/InputArea/inputArea.css.map +1 -0
  43. package/dist/components/Label/label.css +61 -0
  44. package/dist/components/Label/label.css.map +1 -0
  45. package/dist/components/Modal/modal.css +42 -0
  46. package/dist/components/Modal/modal.css.map +1 -0
  47. package/dist/components/Notistack/notistack.css +225 -0
  48. package/dist/components/Notistack/notistack.css.map +1 -0
  49. package/dist/components/Pending/pending.css +79 -0
  50. package/dist/components/Pending/pending.css.map +1 -0
  51. package/dist/components/Radio/radio.css +96 -0
  52. package/dist/components/Radio/radio.css.map +1 -0
  53. package/dist/components/Select/select.css +80 -0
  54. package/dist/components/Select/select.css.map +1 -0
  55. package/dist/components/Slide/slide.css +46 -0
  56. package/dist/components/Slide/slide.css.map +1 -0
  57. package/dist/components/Switch/switch.css +130 -0
  58. package/dist/components/Switch/switch.css.map +1 -0
  59. package/dist/components/Text/text.css +145 -0
  60. package/dist/components/Text/text.css.map +1 -0
  61. package/dist/index.d.mts +1592 -0
  62. package/dist/index.d.ts +1592 -0
  63. package/dist/index.js +2248 -0
  64. package/dist/index.mjs +2148 -0
  65. package/dist/styles/aminations.css +80 -0
  66. package/dist/styles/aminations.css.map +1 -0
  67. package/dist/styles/global.css +132 -0
  68. package/dist/styles/global.css.map +1 -0
  69. package/dist/styles/index.css +2332 -0
  70. package/dist/styles/index.css.map +1 -0
  71. package/package.json +62 -0
@@ -0,0 +1,1592 @@
1
+ import * as React$1 from 'react';
2
+ import { SVGProps, CSSProperties } from 'react';
3
+ import * as csstype from 'csstype';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
5
+ import { Dayjs } from 'dayjs';
6
+
7
+ type IconProps = SVGProps<SVGSVGElement>;
8
+ type PaletteColor = {
9
+ main: string;
10
+ light: string;
11
+ dark: string;
12
+ contrastText: string;
13
+ };
14
+
15
+ declare const breakpoints: {
16
+ xs: number;
17
+ sm: number;
18
+ md: number;
19
+ lg: number;
20
+ xl: number;
21
+ };
22
+
23
+ declare const text: {
24
+ h1: {
25
+ fontSize: string;
26
+ fontWeight: number;
27
+ lineHeight: number;
28
+ };
29
+ h2: {
30
+ fontSize: string;
31
+ fontWeight: number;
32
+ };
33
+ h3: {
34
+ fontSize: string;
35
+ fontWeight: number;
36
+ };
37
+ h4: {
38
+ fontSize: string;
39
+ fontWeight: number;
40
+ };
41
+ h5: {
42
+ fontSize: string;
43
+ fontWeight: number;
44
+ };
45
+ h6: {
46
+ fontSize: string;
47
+ fontWeight: number;
48
+ };
49
+ title: {
50
+ fontSize: string;
51
+ fontWeight: number;
52
+ };
53
+ subtitle: {
54
+ fontSize: string;
55
+ fontWeight: number;
56
+ };
57
+ body1: {
58
+ fontSize: string;
59
+ fontWeight: number;
60
+ };
61
+ body2: {
62
+ fontSize: string;
63
+ fontWeight: number;
64
+ };
65
+ caption: {
66
+ fontSize: string;
67
+ fontWeight: number;
68
+ };
69
+ button: {
70
+ fontSize: string;
71
+ fontWeight: number;
72
+ };
73
+ helper: {
74
+ fontSize: string;
75
+ fontWeight: number;
76
+ };
77
+ };
78
+
79
+ type Theme = {
80
+ colors: {
81
+ primary?: PaletteColor;
82
+ secondary?: PaletteColor;
83
+ success?: PaletteColor;
84
+ error?: PaletteColor;
85
+ warning?: PaletteColor;
86
+ info?: PaletteColor;
87
+ disabled?: string;
88
+ background?: {
89
+ default: string;
90
+ surface: string;
91
+ };
92
+ text?: {
93
+ primary: string;
94
+ secondary: string;
95
+ };
96
+ };
97
+ breakpoints: typeof breakpoints;
98
+ text: typeof text;
99
+ fontFamily?: string;
100
+ };
101
+ declare const createTheme: (props?: Partial<Theme>) => Theme;
102
+ declare const applyTheme: (theme: Theme, target?: HTMLElement) => void;
103
+
104
+ type UIProps = {
105
+ mt?: number;
106
+ mb?: number;
107
+ mx?: number;
108
+ my?: number;
109
+ p?: number;
110
+ px?: number;
111
+ py?: number;
112
+ bg?: keyof Theme['colors'];
113
+ color?: keyof Theme['colors'];
114
+ flex?: boolean;
115
+ center?: boolean;
116
+ radius?: number;
117
+ [key: string]: any;
118
+ } & Omit<CSSProperties, 'color' | 'accent_color' | 'backgroundColor'>;
119
+ declare const uiStyle: (styles?: UIProps) => Record<string, any>;
120
+ declare const composeStyles: (ui?: UIProps, style?: React.CSSProperties) => {
121
+ accentColor?: csstype.Property.AccentColor | undefined;
122
+ alignContent?: csstype.Property.AlignContent | undefined;
123
+ alignItems?: csstype.Property.AlignItems | undefined;
124
+ alignSelf?: csstype.Property.AlignSelf | undefined;
125
+ alignTracks?: csstype.Property.AlignTracks | undefined;
126
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
127
+ anchorName?: csstype.Property.AnchorName | undefined;
128
+ anchorScope?: csstype.Property.AnchorScope | undefined;
129
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
130
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
131
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
132
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
133
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
134
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
135
+ animationName?: csstype.Property.AnimationName | undefined;
136
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
137
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
138
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
139
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
140
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
141
+ appearance?: csstype.Property.Appearance | undefined;
142
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
143
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
144
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
145
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
146
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
147
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
148
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
149
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
150
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
151
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
152
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
153
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
154
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
155
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
156
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
157
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
158
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
159
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
160
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
161
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
162
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
163
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
164
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
165
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
166
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
167
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
168
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
169
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
170
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
171
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
172
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
173
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
174
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
175
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
176
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
177
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
178
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
179
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
180
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
181
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
182
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
183
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
184
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
185
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
186
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
187
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
188
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
189
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
190
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
191
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
192
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
193
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
194
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
195
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
196
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
197
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
198
+ boxShadow?: csstype.Property.BoxShadow | undefined;
199
+ boxSizing?: csstype.Property.BoxSizing | undefined;
200
+ breakAfter?: csstype.Property.BreakAfter | undefined;
201
+ breakBefore?: csstype.Property.BreakBefore | undefined;
202
+ breakInside?: csstype.Property.BreakInside | undefined;
203
+ captionSide?: csstype.Property.CaptionSide | undefined;
204
+ caretColor?: csstype.Property.CaretColor | undefined;
205
+ caretShape?: csstype.Property.CaretShape | undefined;
206
+ clear?: csstype.Property.Clear | undefined;
207
+ clipPath?: csstype.Property.ClipPath | undefined;
208
+ clipRule?: csstype.Property.ClipRule | undefined;
209
+ color?: csstype.Property.Color | undefined;
210
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
211
+ colorInterpolationFilters?: csstype.Property.ColorInterpolationFilters | undefined;
212
+ colorScheme?: csstype.Property.ColorScheme | undefined;
213
+ columnCount?: csstype.Property.ColumnCount | undefined;
214
+ columnFill?: csstype.Property.ColumnFill | undefined;
215
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
216
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
217
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
218
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
219
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
220
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
221
+ contain?: csstype.Property.Contain | undefined;
222
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
223
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
224
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
225
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
226
+ containerName?: csstype.Property.ContainerName | undefined;
227
+ containerType?: csstype.Property.ContainerType | undefined;
228
+ content?: csstype.Property.Content | undefined;
229
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
230
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
231
+ counterReset?: csstype.Property.CounterReset | undefined;
232
+ counterSet?: csstype.Property.CounterSet | undefined;
233
+ cursor?: csstype.Property.Cursor | undefined;
234
+ cx?: csstype.Property.Cx<string | number> | undefined;
235
+ cy?: csstype.Property.Cy<string | number> | undefined;
236
+ d?: csstype.Property.D | undefined;
237
+ direction?: csstype.Property.Direction | undefined;
238
+ display?: csstype.Property.Display | undefined;
239
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
240
+ emptyCells?: csstype.Property.EmptyCells | undefined;
241
+ fieldSizing?: csstype.Property.FieldSizing | undefined;
242
+ fill?: csstype.Property.Fill | undefined;
243
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
244
+ fillRule?: csstype.Property.FillRule | undefined;
245
+ filter?: csstype.Property.Filter | undefined;
246
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
247
+ flexDirection?: csstype.Property.FlexDirection | undefined;
248
+ flexGrow?: csstype.Property.FlexGrow | undefined;
249
+ flexShrink?: csstype.Property.FlexShrink | undefined;
250
+ flexWrap?: csstype.Property.FlexWrap | undefined;
251
+ float?: csstype.Property.Float | undefined;
252
+ floodColor?: csstype.Property.FloodColor | undefined;
253
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
254
+ fontFamily?: csstype.Property.FontFamily | undefined;
255
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
256
+ fontKerning?: csstype.Property.FontKerning | undefined;
257
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
258
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
259
+ fontPalette?: csstype.Property.FontPalette | undefined;
260
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
261
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
262
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
263
+ fontStyle?: csstype.Property.FontStyle | undefined;
264
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
265
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
266
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
267
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
268
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
269
+ fontVariant?: csstype.Property.FontVariant | undefined;
270
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
271
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
272
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
273
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
274
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
275
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
276
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
277
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
278
+ fontWeight?: csstype.Property.FontWeight | undefined;
279
+ fontWidth?: csstype.Property.FontWidth | undefined;
280
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
281
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
282
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
283
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
284
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
285
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
286
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
287
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
288
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
289
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
290
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
291
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
292
+ height?: csstype.Property.Height<string | number> | undefined;
293
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
294
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
295
+ hyphens?: csstype.Property.Hyphens | undefined;
296
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
297
+ imageRendering?: csstype.Property.ImageRendering | undefined;
298
+ imageResolution?: csstype.Property.ImageResolution | undefined;
299
+ initialLetter?: csstype.Property.InitialLetter | undefined;
300
+ initialLetterAlign?: csstype.Property.InitialLetterAlign | undefined;
301
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
302
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
303
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
304
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
305
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
306
+ interpolateSize?: csstype.Property.InterpolateSize | undefined;
307
+ isolation?: csstype.Property.Isolation | undefined;
308
+ justifyContent?: csstype.Property.JustifyContent | undefined;
309
+ justifyItems?: csstype.Property.JustifyItems | undefined;
310
+ justifySelf?: csstype.Property.JustifySelf | undefined;
311
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
312
+ left?: csstype.Property.Left<string | number> | undefined;
313
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
314
+ lightingColor?: csstype.Property.LightingColor | undefined;
315
+ lineBreak?: csstype.Property.LineBreak | undefined;
316
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
317
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
318
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
319
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
320
+ listStyleType?: csstype.Property.ListStyleType | undefined;
321
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
322
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
323
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
324
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
325
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
326
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
327
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
328
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
329
+ marginTrim?: csstype.Property.MarginTrim | undefined;
330
+ marker?: csstype.Property.Marker | undefined;
331
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
332
+ markerMid?: csstype.Property.MarkerMid | undefined;
333
+ markerStart?: csstype.Property.MarkerStart | undefined;
334
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
335
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
336
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
337
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
338
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
339
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
340
+ maskClip?: csstype.Property.MaskClip | undefined;
341
+ maskComposite?: csstype.Property.MaskComposite | undefined;
342
+ maskImage?: csstype.Property.MaskImage | undefined;
343
+ maskMode?: csstype.Property.MaskMode | undefined;
344
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
345
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
346
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
347
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
348
+ maskType?: csstype.Property.MaskType | undefined;
349
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
350
+ mathDepth?: csstype.Property.MathDepth | undefined;
351
+ mathShift?: csstype.Property.MathShift | undefined;
352
+ mathStyle?: csstype.Property.MathStyle | undefined;
353
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
354
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
355
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
356
+ maxLines?: csstype.Property.MaxLines | undefined;
357
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
358
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
359
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
360
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
361
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
362
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
363
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
364
+ motionPath?: csstype.Property.OffsetPath | undefined;
365
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
366
+ objectFit?: csstype.Property.ObjectFit | undefined;
367
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
368
+ objectViewBox?: csstype.Property.ObjectViewBox | undefined;
369
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
370
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
371
+ offsetPath?: csstype.Property.OffsetPath | undefined;
372
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
373
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
374
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
375
+ opacity?: csstype.Property.Opacity | undefined;
376
+ order?: csstype.Property.Order | undefined;
377
+ orphans?: csstype.Property.Orphans | undefined;
378
+ outlineColor?: csstype.Property.OutlineColor | undefined;
379
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
380
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
381
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
382
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
383
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
384
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
385
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
386
+ overflowInline?: csstype.Property.OverflowInline | undefined;
387
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
388
+ overflowX?: csstype.Property.OverflowX | undefined;
389
+ overflowY?: csstype.Property.OverflowY | undefined;
390
+ overlay?: csstype.Property.Overlay | undefined;
391
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
392
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
393
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
394
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
395
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
396
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
397
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
398
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
399
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
400
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
401
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
402
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
403
+ page?: csstype.Property.Page | undefined;
404
+ paintOrder?: csstype.Property.PaintOrder | undefined;
405
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
406
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
407
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
408
+ position?: csstype.Property.Position | undefined;
409
+ positionAnchor?: csstype.Property.PositionAnchor | undefined;
410
+ positionArea?: csstype.Property.PositionArea | undefined;
411
+ positionTryFallbacks?: csstype.Property.PositionTryFallbacks | undefined;
412
+ positionTryOrder?: csstype.Property.PositionTryOrder | undefined;
413
+ positionVisibility?: csstype.Property.PositionVisibility | undefined;
414
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
415
+ quotes?: csstype.Property.Quotes | undefined;
416
+ r?: csstype.Property.R<string | number> | undefined;
417
+ resize?: csstype.Property.Resize | undefined;
418
+ right?: csstype.Property.Right<string | number> | undefined;
419
+ rotate?: csstype.Property.Rotate | undefined;
420
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
421
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
422
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
423
+ rubyOverhang?: csstype.Property.RubyOverhang | undefined;
424
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
425
+ rx?: csstype.Property.Rx<string | number> | undefined;
426
+ ry?: csstype.Property.Ry<string | number> | undefined;
427
+ scale?: csstype.Property.Scale | undefined;
428
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
429
+ scrollInitialTarget?: csstype.Property.ScrollInitialTarget | undefined;
430
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
431
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
432
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
433
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
434
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
435
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
436
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
437
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
438
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
439
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
440
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
441
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
442
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
443
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
444
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
445
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
446
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
447
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
448
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
449
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
450
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
451
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
452
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
453
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
454
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
455
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
456
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
457
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
458
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
459
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
460
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
461
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
462
+ speakAs?: csstype.Property.SpeakAs | undefined;
463
+ stopColor?: csstype.Property.StopColor | undefined;
464
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
465
+ stroke?: csstype.Property.Stroke | undefined;
466
+ strokeColor?: csstype.Property.StrokeColor | undefined;
467
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
468
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
469
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
470
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
471
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
472
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
473
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
474
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
475
+ tableLayout?: csstype.Property.TableLayout | undefined;
476
+ textAlign?: csstype.Property.TextAlign | undefined;
477
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
478
+ textAnchor?: csstype.Property.TextAnchor | undefined;
479
+ textAutospace?: csstype.Property.TextAutospace | undefined;
480
+ textBox?: csstype.Property.TextBox | undefined;
481
+ textBoxEdge?: csstype.Property.TextBoxEdge | undefined;
482
+ textBoxTrim?: csstype.Property.TextBoxTrim | undefined;
483
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
484
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
485
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
486
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
487
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
488
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
489
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
490
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
491
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
492
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
493
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
494
+ textJustify?: csstype.Property.TextJustify | undefined;
495
+ textOrientation?: csstype.Property.TextOrientation | undefined;
496
+ textOverflow?: csstype.Property.TextOverflow | undefined;
497
+ textRendering?: csstype.Property.TextRendering | undefined;
498
+ textShadow?: csstype.Property.TextShadow | undefined;
499
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
500
+ textSpacingTrim?: csstype.Property.TextSpacingTrim | undefined;
501
+ textTransform?: csstype.Property.TextTransform | undefined;
502
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
503
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
504
+ textWrapMode?: csstype.Property.TextWrapMode | undefined;
505
+ textWrapStyle?: csstype.Property.TextWrapStyle | undefined;
506
+ timelineScope?: csstype.Property.TimelineScope | undefined;
507
+ top?: csstype.Property.Top<string | number> | undefined;
508
+ touchAction?: csstype.Property.TouchAction | undefined;
509
+ transform?: csstype.Property.Transform | undefined;
510
+ transformBox?: csstype.Property.TransformBox | undefined;
511
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
512
+ transformStyle?: csstype.Property.TransformStyle | undefined;
513
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
514
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
515
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
516
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
517
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
518
+ translate?: csstype.Property.Translate<string | number> | undefined;
519
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
520
+ userSelect?: csstype.Property.UserSelect | undefined;
521
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
522
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
523
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
524
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
525
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
526
+ viewTransitionClass?: csstype.Property.ViewTransitionClass | undefined;
527
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
528
+ visibility?: csstype.Property.Visibility | undefined;
529
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
530
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
531
+ widows?: csstype.Property.Widows | undefined;
532
+ width?: csstype.Property.Width<string | number> | undefined;
533
+ willChange?: csstype.Property.WillChange | undefined;
534
+ wordBreak?: csstype.Property.WordBreak | undefined;
535
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
536
+ wordWrap?: csstype.Property.WordWrap | undefined;
537
+ writingMode?: csstype.Property.WritingMode | undefined;
538
+ x?: csstype.Property.X<string | number> | undefined;
539
+ y?: csstype.Property.Y<string | number> | undefined;
540
+ zIndex?: csstype.Property.ZIndex | undefined;
541
+ zoom?: csstype.Property.Zoom | undefined;
542
+ all?: csstype.Property.All | undefined;
543
+ animation?: csstype.Property.Animation<string & {}> | undefined;
544
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
545
+ background?: csstype.Property.Background<string | number> | undefined;
546
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
547
+ border?: csstype.Property.Border<string | number> | undefined;
548
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
549
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
550
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
551
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
552
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
553
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
554
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
555
+ borderColor?: csstype.Property.BorderColor | undefined;
556
+ borderImage?: csstype.Property.BorderImage | undefined;
557
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
558
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
559
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
560
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
561
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
562
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
563
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
564
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
565
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
566
+ borderStyle?: csstype.Property.BorderStyle | undefined;
567
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
568
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
569
+ caret?: csstype.Property.Caret | undefined;
570
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
571
+ columns?: csstype.Property.Columns<string | number> | undefined;
572
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
573
+ container?: csstype.Property.Container | undefined;
574
+ flex?: csstype.Property.Flex<string | number> | undefined;
575
+ flexFlow?: csstype.Property.FlexFlow | undefined;
576
+ font?: csstype.Property.Font | undefined;
577
+ gap?: csstype.Property.Gap<string | number> | undefined;
578
+ grid?: csstype.Property.Grid | undefined;
579
+ gridArea?: csstype.Property.GridArea | undefined;
580
+ gridColumn?: csstype.Property.GridColumn | undefined;
581
+ gridRow?: csstype.Property.GridRow | undefined;
582
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
583
+ inset?: csstype.Property.Inset<string | number> | undefined;
584
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
585
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
586
+ lineClamp?: csstype.Property.LineClamp | undefined;
587
+ listStyle?: csstype.Property.ListStyle | undefined;
588
+ margin?: csstype.Property.Margin<string | number> | undefined;
589
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
590
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
591
+ mask?: csstype.Property.Mask<string | number> | undefined;
592
+ maskBorder?: csstype.Property.MaskBorder | undefined;
593
+ motion?: csstype.Property.Offset<string | number> | undefined;
594
+ offset?: csstype.Property.Offset<string | number> | undefined;
595
+ outline?: csstype.Property.Outline<string | number> | undefined;
596
+ overflow?: csstype.Property.Overflow | undefined;
597
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
598
+ padding?: csstype.Property.Padding<string | number> | undefined;
599
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
600
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
601
+ placeContent?: csstype.Property.PlaceContent | undefined;
602
+ placeItems?: csstype.Property.PlaceItems | undefined;
603
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
604
+ positionTry?: csstype.Property.PositionTry | undefined;
605
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
606
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
607
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
608
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
609
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
610
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
611
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
612
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
613
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
614
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
615
+ textWrap?: csstype.Property.TextWrap | undefined;
616
+ transition?: csstype.Property.Transition<string & {}> | undefined;
617
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
618
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
619
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
620
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
621
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
622
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
623
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
624
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
625
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
626
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
627
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
628
+ MozBinding?: csstype.Property.MozBinding | undefined;
629
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
630
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
631
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
632
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
633
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
634
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
635
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
636
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
637
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
638
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
639
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
640
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
641
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
642
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
643
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
644
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
645
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
646
+ MozHyphens?: csstype.Property.Hyphens | undefined;
647
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
648
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
649
+ MozOrient?: csstype.Property.MozOrient | undefined;
650
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
651
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
652
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
653
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
654
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
655
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
656
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
657
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
658
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
659
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
660
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
661
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
662
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
663
+ MozTransform?: csstype.Property.Transform | undefined;
664
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
665
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
666
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
667
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
668
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
669
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
670
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
671
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
672
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
673
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
674
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
675
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
676
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
677
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
678
+ msFilter?: csstype.Property.MsFilter | undefined;
679
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
680
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
681
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
682
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
683
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
684
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
685
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
686
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
687
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
688
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
689
+ msHyphens?: csstype.Property.Hyphens | undefined;
690
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
691
+ msLineBreak?: csstype.Property.LineBreak | undefined;
692
+ msOrder?: csstype.Property.Order | undefined;
693
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
694
+ msOverflowX?: csstype.Property.OverflowX | undefined;
695
+ msOverflowY?: csstype.Property.OverflowY | undefined;
696
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
697
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
698
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
699
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
700
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
701
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
702
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
703
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
704
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
705
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
706
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
707
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
708
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
709
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
710
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
711
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
712
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
713
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
714
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
715
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
716
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
717
+ msTouchAction?: csstype.Property.TouchAction | undefined;
718
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
719
+ msTransform?: csstype.Property.Transform | undefined;
720
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
721
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
722
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
723
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
724
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
725
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
726
+ msWordBreak?: csstype.Property.WordBreak | undefined;
727
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
728
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
729
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
730
+ msWritingMode?: csstype.Property.WritingMode | undefined;
731
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
732
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
733
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
734
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
735
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
736
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
737
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
738
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
739
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
740
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
741
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
742
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
743
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
744
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
745
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
746
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
747
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
748
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
749
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
750
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
751
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
752
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
753
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
754
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
755
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
756
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
757
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
758
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
759
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
760
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
761
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
762
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
763
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
764
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
765
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
766
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
767
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
768
+ WebkitFilter?: csstype.Property.Filter | undefined;
769
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
770
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
771
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
772
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
773
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
774
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
775
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
776
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
777
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
778
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
779
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
780
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
781
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
782
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
783
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
784
+ WebkitLogicalHeight?: csstype.Property.BlockSize<string | number> | undefined;
785
+ WebkitLogicalWidth?: csstype.Property.InlineSize<string | number> | undefined;
786
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
787
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
788
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
789
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
790
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
791
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
792
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
793
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
794
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
795
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
796
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
797
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
798
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
799
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
800
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
801
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
802
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
803
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
804
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
805
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
806
+ WebkitOrder?: csstype.Property.Order | undefined;
807
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
808
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
809
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
810
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
811
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
812
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
813
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
814
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
815
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
816
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
817
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
818
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
819
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
820
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
821
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
822
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
823
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
824
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
825
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
826
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
827
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
828
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
829
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
830
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
831
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
832
+ WebkitTransform?: csstype.Property.Transform | undefined;
833
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
834
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
835
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
836
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
837
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
838
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
839
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
840
+ WebkitUserSelect?: csstype.Property.WebkitUserSelect | undefined;
841
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
842
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
843
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
844
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
845
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
846
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
847
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
848
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
849
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
850
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
851
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
852
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
853
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
854
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
855
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
856
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
857
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
858
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
859
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
860
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
861
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
862
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
863
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
864
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
865
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
866
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
867
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
868
+ boxAlign?: csstype.Property.BoxAlign | undefined;
869
+ boxDirection?: csstype.Property.BoxDirection | undefined;
870
+ boxFlex?: csstype.Property.BoxFlex | undefined;
871
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
872
+ boxLines?: csstype.Property.BoxLines | undefined;
873
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
874
+ boxOrient?: csstype.Property.BoxOrient | undefined;
875
+ boxPack?: csstype.Property.BoxPack | undefined;
876
+ clip?: csstype.Property.Clip | undefined;
877
+ fontStretch?: csstype.Property.FontStretch | undefined;
878
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
879
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
880
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
881
+ imeMode?: csstype.Property.ImeMode | undefined;
882
+ insetArea?: csstype.Property.PositionArea | undefined;
883
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
884
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
885
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
886
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
887
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
888
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
889
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
890
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
891
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
892
+ positionTryOptions?: csstype.Property.PositionTryFallbacks | undefined;
893
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
894
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
895
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
896
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
897
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
898
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
899
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
900
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
901
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
902
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
903
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
904
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
905
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
906
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
907
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
908
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
909
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
910
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
911
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
912
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
913
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
914
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
915
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
916
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
917
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
918
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
919
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
920
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
921
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
922
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
923
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
924
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
925
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
926
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
927
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
928
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
929
+ MozOpacity?: csstype.Property.Opacity | undefined;
930
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
931
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
932
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
933
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
934
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
935
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
936
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
937
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
938
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
939
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
940
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
941
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
942
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
943
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
944
+ msImeMode?: csstype.Property.ImeMode | undefined;
945
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
946
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
947
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
948
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
949
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
950
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
951
+ OAnimationName?: csstype.Property.AnimationName | undefined;
952
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
953
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
954
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
955
+ OBorderImage?: csstype.Property.BorderImage | undefined;
956
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
957
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
958
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
959
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
960
+ OTransform?: csstype.Property.Transform | undefined;
961
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
962
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
963
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
964
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
965
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
966
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
967
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
968
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
969
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
970
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
971
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
972
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
973
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
974
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
975
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
976
+ colorRendering?: csstype.Property.ColorRendering | undefined;
977
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
978
+ };
979
+
980
+ type AvatarProps = {
981
+ label?: string;
982
+ variant?: 'circle' | 'square' | 'rounded';
983
+ src?: string;
984
+ alt?: string;
985
+ children?: React$1.ReactNode;
986
+ size?: 'sm' | 'md' | 'lg';
987
+ color?: keyof Theme['colors'];
988
+ bordered?: boolean;
989
+ shadow?: 1 | 2 | 3;
990
+ ui?: UIProps;
991
+ role?: string;
992
+ onClick?: (e?: any) => void;
993
+ floating?: boolean;
994
+ };
995
+ declare const Avatar: React$1.FC<AvatarProps>;
996
+
997
+ declare const Backdrop: React$1.FC;
998
+
999
+ type BoxProps = {
1000
+ children?: React$1.ReactNode;
1001
+ content?: 'start' | 'center' | 'end';
1002
+ position?: 'relative' | 'absolute' | 'fixed' | 'sticky';
1003
+ drawer?: boolean;
1004
+ as?: keyof React$1.JSX.IntrinsicElements;
1005
+ ui?: UIProps;
1006
+ style?: React$1.CSSProperties;
1007
+ onClick?: () => void;
1008
+ [key: string]: any;
1009
+ };
1010
+ declare const Box: React$1.FC<BoxProps>;
1011
+
1012
+ type TextVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'title' | 'subtitle' | 'body1' | 'body2' | 'caption' | 'button' | 'helper' | 'inherit' | 'code';
1013
+ type TextProps = {
1014
+ children?: React$1.ReactNode;
1015
+ variant?: TextVariant;
1016
+ color?: keyof Theme['colors'];
1017
+ weight?: 'light' | 'regular' | 'medium' | 'semibold' | 'bold' | 'black' | 'thin';
1018
+ as?: keyof React$1.JSX.IntrinsicElements;
1019
+ gutters?: number[];
1020
+ ui?: UIProps;
1021
+ style?: React$1.CSSProperties;
1022
+ onClick?: () => void;
1023
+ };
1024
+ declare const Text: React$1.FC<TextProps>;
1025
+
1026
+ type ButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement> & {
1027
+ variant?: 'outlined' | 'filled' | 'text';
1028
+ color?: keyof Theme['colors'];
1029
+ animated?: boolean;
1030
+ gradientBorder?: boolean;
1031
+ ui?: UIProps;
1032
+ size?: 'auto' | 'full';
1033
+ propsComponent?: {
1034
+ text?: {
1035
+ variant: keyof TextProps['variant'];
1036
+ };
1037
+ };
1038
+ };
1039
+ declare const Button: React.FC<ButtonProps>;
1040
+
1041
+ type CalendarProps = {
1042
+ onSelect?: (day: any) => void;
1043
+ propsComponent?: {
1044
+ action?: {
1045
+ displayButtons?: boolean;
1046
+ displayCalendar?: boolean;
1047
+ day: {
1048
+ background?: string;
1049
+ borderColor?: string;
1050
+ ui?: UIProps;
1051
+ };
1052
+ buttonNext?: {
1053
+ disabled?: boolean;
1054
+ onClick?: () => void;
1055
+ label?: React$1.ReactNode;
1056
+ };
1057
+ buttonBack?: {
1058
+ disabled?: boolean;
1059
+ onClick?: () => void;
1060
+ label?: React$1.ReactNode;
1061
+ };
1062
+ };
1063
+ };
1064
+ mapCalendar?: any;
1065
+ onMonthChange?: (month: number) => void;
1066
+ };
1067
+ declare const Calendar: React$1.FC<CalendarProps>;
1068
+
1069
+ type CheckboxProps = {
1070
+ checked?: boolean;
1071
+ defaultChecked?: boolean;
1072
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>, checked: boolean) => void;
1073
+ label?: string;
1074
+ variant?: 'filled' | 'outlined' | 'text';
1075
+ color?: keyof Theme['colors'];
1076
+ disabled?: boolean;
1077
+ propsComponent?: {
1078
+ checkbox?: {
1079
+ ui?: UIProps;
1080
+ iconChecked?: React$1.ReactNode;
1081
+ iconUnchecked?: React$1.ReactNode;
1082
+ };
1083
+ content?: TextProps;
1084
+ };
1085
+ };
1086
+ declare const Checkbox: React$1.FC<CheckboxProps>;
1087
+
1088
+ type ChipProps = {
1089
+ children?: React$1.ReactNode;
1090
+ variant?: 'outlined' | 'filled';
1091
+ color?: keyof Theme['colors'];
1092
+ rounded?: boolean;
1093
+ label: string;
1094
+ size?: 'small' | 'medium' | 'large';
1095
+ onClick?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>) => void;
1096
+ icon?: React$1.ReactNode;
1097
+ onDelete?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>) => void;
1098
+ ui?: UIProps;
1099
+ style?: React$1.CSSProperties;
1100
+ };
1101
+ declare const Chip: React$1.FC<ChipProps>;
1102
+
1103
+ type CollapseProps = {
1104
+ children?: React$1.ReactNode;
1105
+ open?: boolean;
1106
+ anchor?: 'top' | 'center' | 'bottom' | 'left' | 'right';
1107
+ };
1108
+ declare const Collapse: React$1.FC<CollapseProps>;
1109
+
1110
+ type ContainerProps = {
1111
+ children?: React$1.ReactNode;
1112
+ maxWidth?: 'sm' | 'md' | 'lg' | 'xl';
1113
+ style?: React$1.CSSProperties;
1114
+ ui?: UIProps;
1115
+ fixed?: boolean;
1116
+ };
1117
+ declare const Container: React$1.FC<ContainerProps>;
1118
+
1119
+ type BackdropContextType = {
1120
+ open: boolean;
1121
+ show: () => void;
1122
+ hide: () => void;
1123
+ };
1124
+ declare const BackdropContext: React$1.Context<BackdropContextType | null>;
1125
+ declare const BackdropProvider: ({ children }: any) => react_jsx_runtime.JSX.Element;
1126
+ declare const useBackdrop: () => BackdropContextType;
1127
+
1128
+ declare const ControlContext: React$1.Context<null>;
1129
+ declare const useControl: () => null;
1130
+
1131
+ declare function initTheme(): void;
1132
+
1133
+ declare const ThemeContext: React$1.Context<null>;
1134
+ type ThemeProviderProps = {
1135
+ theme: any;
1136
+ children: React$1.ReactNode;
1137
+ };
1138
+ declare const ThemeProvider: React$1.FC<ThemeProviderProps>;
1139
+ declare const useTheme: () => null;
1140
+
1141
+ declare const baseTokens: {
1142
+ colors: {
1143
+ primary: string;
1144
+ secondary: string;
1145
+ background: string;
1146
+ surface: string;
1147
+ textPrimary: string;
1148
+ textSecondary: string;
1149
+ };
1150
+ spacing: (factor: number) => string;
1151
+ radius: {
1152
+ sm: string;
1153
+ md: string;
1154
+ lg: string;
1155
+ };
1156
+ };
1157
+
1158
+ declare const NotistackProvider: ({ children }: any) => react_jsx_runtime.JSX.Element;
1159
+ declare const useNotistack: () => any;
1160
+
1161
+ declare function useMediaQuery(query: string | ((theme: any) => string)): boolean;
1162
+ type Breakpoint = keyof typeof breakpoints;
1163
+ declare function useBreakpointValue<T>(values: Partial<Record<Breakpoint, T>>): T | undefined;
1164
+
1165
+ type ControlVariants = 'base' | 'outlined' | 'filled' | 'lined';
1166
+ type ControlProps = {
1167
+ children?: React$1.ReactNode;
1168
+ error?: boolean;
1169
+ disabled?: boolean;
1170
+ style?: React$1.CSSProperties;
1171
+ variant?: ControlVariants;
1172
+ label?: boolean;
1173
+ ui?: UIProps;
1174
+ color?: keyof Theme['colors'];
1175
+ };
1176
+ declare const Control: React$1.FC<ControlProps>;
1177
+
1178
+ type DividerProps = {
1179
+ orientation?: 'horizontal' | 'vertical';
1180
+ text?: string;
1181
+ color?: keyof Theme['colors'];
1182
+ align?: 'left' | 'center' | 'right';
1183
+ ui?: UIProps;
1184
+ style?: React.CSSProperties;
1185
+ };
1186
+ declare const Divider: React.FC<DividerProps>;
1187
+
1188
+ type DrawerContainerProps = {
1189
+ children?: React$1.ReactNode;
1190
+ ui?: UIProps;
1191
+ style?: React$1.CSSProperties;
1192
+ props: any;
1193
+ onClose?: () => void;
1194
+ };
1195
+
1196
+ type DrawerProps = {
1197
+ open: boolean;
1198
+ onClose: () => void;
1199
+ children?: React$1.ReactNode;
1200
+ anchor?: 'left' | 'right' | 'top' | 'bottom' | null;
1201
+ propsComponent?: {
1202
+ drawer?: React$1.CSSProperties;
1203
+ closing?: "drawer" | "container" | null;
1204
+ container?: Omit<DrawerContainerProps, 'children' | 'props'>;
1205
+ onClose?: boolean;
1206
+ };
1207
+ };
1208
+ declare const Drawer: React$1.FC<DrawerProps>;
1209
+
1210
+ type FadeProps = {
1211
+ in: boolean;
1212
+ children?: React$1.ReactNode;
1213
+ duration?: number;
1214
+ onTransitionEnd?: () => void;
1215
+ style?: React$1.CSSProperties;
1216
+ };
1217
+ declare const Fade: React$1.FC<FadeProps>;
1218
+
1219
+ type FlexProps = {
1220
+ container?: boolean;
1221
+ spacing?: number;
1222
+ children?: React.ReactNode;
1223
+ ui?: UIProps;
1224
+ center?: boolean;
1225
+ between?: boolean;
1226
+ variant?: 'row' | 'column' | 'wrap';
1227
+ gap?: number;
1228
+ style?: React.CSSProperties;
1229
+ onClick?: () => void;
1230
+ bordered?: boolean;
1231
+ };
1232
+ declare const Flex: React.FC<FlexProps>;
1233
+
1234
+ type GridProps = {
1235
+ container?: boolean;
1236
+ spacing?: number;
1237
+ children?: React.ReactNode;
1238
+ style?: React.CSSProperties;
1239
+ ui?: UIProps;
1240
+ item?: boolean;
1241
+ columns?: number;
1242
+ center?: boolean;
1243
+ size?: number;
1244
+ [key: string]: any;
1245
+ };
1246
+ declare const Grid: React.FC<GridProps>;
1247
+
1248
+ type Option = {
1249
+ label: string;
1250
+ value: string;
1251
+ };
1252
+ type GroupsVariant = 'filled' | 'outlined' | 'text';
1253
+ type GroupProps = {
1254
+ options: Option[];
1255
+ value?: string | string[];
1256
+ onChange?: (value: any) => void;
1257
+ variant?: GroupsVariant;
1258
+ color?: keyof Theme['colors'];
1259
+ propsComponent?: {
1260
+ group?: {
1261
+ ui?: UIProps;
1262
+ style?: React$1.CSSProperties;
1263
+ };
1264
+ item?: {
1265
+ variant?: GroupsVariant;
1266
+ ui?: UIProps;
1267
+ style?: React$1.CSSProperties;
1268
+ };
1269
+ };
1270
+ };
1271
+ declare const Group: React$1.FC<GroupProps>;
1272
+
1273
+ type ImageProps = {
1274
+ src: string;
1275
+ alt?: string;
1276
+ style?: React$1.CSSProperties;
1277
+ ui?: UIProps;
1278
+ };
1279
+ declare const Image: React$1.FC<ImageProps>;
1280
+
1281
+ type LabelProps = {
1282
+ display?: boolean;
1283
+ text?: string;
1284
+ children?: React$1.ReactNode;
1285
+ className?: string;
1286
+ color?: keyof Theme['colors'];
1287
+ ui?: Omit<UIProps, 'color'>;
1288
+ style?: React$1.CSSProperties;
1289
+ };
1290
+ declare const Label: React$1.FC<LabelProps>;
1291
+
1292
+ type InputProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'onChange'> & {
1293
+ label?: string;
1294
+ value?: string;
1295
+ type?: 'text' | 'email' | 'phone' | 'number' | 'password' | 'search';
1296
+ variant?: ControlVariants;
1297
+ color?: keyof Theme['colors'];
1298
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>, value: string) => void;
1299
+ error?: string | null;
1300
+ ui?: UIProps;
1301
+ style?: React$1.CSSProperties;
1302
+ propsComponent?: {
1303
+ label?: LabelProps & {
1304
+ display?: boolean;
1305
+ };
1306
+ };
1307
+ };
1308
+ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange"> & {
1309
+ label?: string;
1310
+ value?: string;
1311
+ type?: "text" | "email" | "phone" | "number" | "password" | "search";
1312
+ variant?: ControlVariants;
1313
+ color?: keyof Theme["colors"];
1314
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>, value: string) => void;
1315
+ error?: string | null;
1316
+ ui?: UIProps;
1317
+ style?: React$1.CSSProperties;
1318
+ propsComponent?: {
1319
+ label?: LabelProps & {
1320
+ display?: boolean;
1321
+ };
1322
+ };
1323
+ } & React$1.RefAttributes<HTMLInputElement>>;
1324
+
1325
+ type SelectorChangeEvent = {
1326
+ event: React$1.MouseEvent<HTMLDivElement, MouseEvent>;
1327
+ target: {
1328
+ name?: string;
1329
+ value: string;
1330
+ };
1331
+ currentTarget: {
1332
+ name?: string;
1333
+ value: string;
1334
+ };
1335
+ };
1336
+ type SelectorProps = {
1337
+ children?: React$1.ReactNode;
1338
+ error?: boolean;
1339
+ name?: string;
1340
+ disabled?: boolean;
1341
+ ui?: UIProps;
1342
+ style?: React$1.CSSProperties;
1343
+ options: {
1344
+ value: string;
1345
+ label: string;
1346
+ }[];
1347
+ value?: string;
1348
+ defaultValue?: string;
1349
+ iconColor?: keyof Theme['colors'];
1350
+ icon?: React$1.ReactNode;
1351
+ onChange?: (e: SelectorChangeEvent, value: string) => void;
1352
+ };
1353
+
1354
+ type PhoneInputProps = {
1355
+ name?: string;
1356
+ value?: number;
1357
+ label?: string;
1358
+ prefix?: string;
1359
+ onChange?: (e: any, value: string) => void;
1360
+ countries?: {
1361
+ code: string;
1362
+ dial: string;
1363
+ label: string;
1364
+ }[];
1365
+ propsComponent?: {
1366
+ divider?: DividerProps;
1367
+ input?: InputProps;
1368
+ selector?: Omit<SelectorProps, 'options'>;
1369
+ };
1370
+ };
1371
+ declare const Phone: React$1.FC<PhoneInputProps>;
1372
+
1373
+ type PlaceData = {
1374
+ name: string;
1375
+ address: string;
1376
+ city: string;
1377
+ country: string;
1378
+ zip: string;
1379
+ lat: number;
1380
+ lng: number;
1381
+ placeId?: string;
1382
+ };
1383
+
1384
+ type ModalContainerProps = {
1385
+ children?: React$1.ReactNode;
1386
+ size?: 'sm' | 'md' | 'lg';
1387
+ ui?: UIProps;
1388
+ style?: React$1.CSSProperties;
1389
+ };
1390
+ declare const ModalContainer: React$1.FC<ModalContainerProps>;
1391
+
1392
+ type ModalProps = {
1393
+ open?: boolean;
1394
+ onClose?: () => void;
1395
+ children?: React$1.ReactNode;
1396
+ propsComponent?: {
1397
+ container?: Omit<ModalContainerProps, 'children'>;
1398
+ close?: React$1.ReactNode;
1399
+ };
1400
+ };
1401
+ declare const Modal: React$1.FC<ModalProps>;
1402
+
1403
+ declare const bem: (block: string) => (element?: string, modifiers?: Record<string, any>) => string;
1404
+ declare const bemMerge: (...args: any[]) => string;
1405
+
1406
+ type CalendarDayProps = {
1407
+ day: number;
1408
+ date: Dayjs;
1409
+ isToday: boolean;
1410
+ isPast: boolean;
1411
+ isFuture: boolean;
1412
+ isCurrentMonth: boolean;
1413
+ selected: any;
1414
+ data?: any;
1415
+ };
1416
+ type CalendarComponentProps = {
1417
+ calendar: (CalendarDayProps | null)[][];
1418
+ month: number;
1419
+ monthLabel: string;
1420
+ yearLabel: string;
1421
+ daysContainer: number[];
1422
+ days: number;
1423
+ weeks: number;
1424
+ isWeekend: boolean;
1425
+ date: Dayjs;
1426
+ selected: CalendarDayProps | null;
1427
+ currentDay: CalendarDayProps;
1428
+ props?: any;
1429
+ };
1430
+ declare function getMonthCalendar(year: number, month: number, startIndex: number, selected: CalendarDayProps, props?: any): CalendarComponentProps;
1431
+
1432
+ declare const adjustColor: (hex: string, amount: number) => string;
1433
+ declare const getContrast: (hex: string) => "#000000" | "#ffffff";
1434
+ declare const createPaletteColor: (main: string) => PaletteColor;
1435
+
1436
+ declare function isEmpty(value: unknown): boolean;
1437
+ declare function times<T>(n: number, iteratee: (index: number) => T): T[];
1438
+
1439
+ declare const cx: (...args: any[]) => string;
1440
+
1441
+ type VariantConfig = {
1442
+ base: string;
1443
+ variants?: Record<string, Record<string, string>>;
1444
+ };
1445
+ declare const createVariants: (config: VariantConfig) => (props?: Record<string, any>) => string;
1446
+
1447
+ type NotistackAnchorProps = {
1448
+ vertical: 'top' | 'bottom';
1449
+ horizontal: 'left' | 'center' | 'right';
1450
+ };
1451
+ type NotistackProps = {
1452
+ message: string;
1453
+ duration?: number;
1454
+ variant?: 'info' | 'success' | 'warning' | 'error';
1455
+ color?: keyof Theme['colors'];
1456
+ anchor?: NotistackAnchorProps;
1457
+ exiting?: boolean;
1458
+ propsComponent?: {
1459
+ notistack?: {
1460
+ ui?: UIProps;
1461
+ style?: React.CSSProperties;
1462
+ };
1463
+ container?: {
1464
+ ui?: UIProps;
1465
+ style?: React.CSSProperties;
1466
+ };
1467
+ progress?: {
1468
+ ui?: UIProps;
1469
+ style?: React.CSSProperties;
1470
+ };
1471
+ };
1472
+ };
1473
+ declare const Notistack: React.FC<NotistackProps>;
1474
+
1475
+ type PendingProps = {
1476
+ variant?: 'rect' | 'circle' | 'text';
1477
+ width?: number | string;
1478
+ height?: number | string;
1479
+ size?: number;
1480
+ color?: keyof Theme['colors'];
1481
+ ui?: UIProps;
1482
+ style?: React.CSSProperties;
1483
+ };
1484
+ declare const Pending: React.FC<PendingProps>;
1485
+
1486
+ type RadioVariant = 'circle' | 'square';
1487
+ type RadioProps = {
1488
+ checked?: boolean;
1489
+ value: string;
1490
+ name?: string;
1491
+ variant?: RadioVariant;
1492
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>, value: string) => void;
1493
+ label?: string | React$1.ReactNode;
1494
+ color?: keyof Theme['colors'];
1495
+ style?: React$1.CSSProperties;
1496
+ iconChecked?: React$1.ReactNode;
1497
+ iconUnchecked?: React$1.ReactNode;
1498
+ propsComponent?: {
1499
+ radio?: {
1500
+ ui?: UIProps;
1501
+ style?: React$1.CSSProperties;
1502
+ };
1503
+ label?: {
1504
+ ui?: UIProps;
1505
+ style?: React$1.CSSProperties;
1506
+ };
1507
+ };
1508
+ };
1509
+ declare const Radio: React$1.FC<RadioProps>;
1510
+
1511
+ type SelectChangeEvent = {
1512
+ event: React$1.MouseEvent<HTMLDivElement, MouseEvent>;
1513
+ target: {
1514
+ name?: string;
1515
+ value: string;
1516
+ };
1517
+ currentTarget: {
1518
+ name?: string;
1519
+ value: string;
1520
+ };
1521
+ };
1522
+ type SelectProps = {
1523
+ children?: React$1.ReactNode;
1524
+ error?: boolean;
1525
+ label?: string;
1526
+ name?: string;
1527
+ disabled?: boolean;
1528
+ options: {
1529
+ value: string;
1530
+ label: string;
1531
+ }[];
1532
+ propsComponent?: {
1533
+ control?: Omit<ControlProps, 'children'>;
1534
+ wrapper?: {
1535
+ ui?: UIProps;
1536
+ style?: React$1.CSSProperties;
1537
+ };
1538
+ icon?: {
1539
+ style?: React$1.CSSProperties;
1540
+ component?: React$1.ReactNode;
1541
+ };
1542
+ label?: Omit<LabelProps, 'text'>;
1543
+ menu?: {
1544
+ ui?: UIProps;
1545
+ style?: React$1.CSSProperties;
1546
+ };
1547
+ };
1548
+ value?: string;
1549
+ defaultValue?: string;
1550
+ onChange?: (e: SelectChangeEvent, value: string) => void;
1551
+ };
1552
+ declare const Select: React$1.FC<SelectProps>;
1553
+
1554
+ type SlideProps = {
1555
+ in: boolean;
1556
+ children?: React$1.ReactNode;
1557
+ direction?: 'left' | 'right' | 'top' | 'bottom';
1558
+ duration?: number;
1559
+ onTransitionEnd?: () => void;
1560
+ propsComponent?: {
1561
+ slide?: {
1562
+ ui?: UIProps;
1563
+ style?: React$1.CSSProperties;
1564
+ };
1565
+ box?: Omit<BoxProps, 'children'>;
1566
+ };
1567
+ };
1568
+ type SlideContentProps = {
1569
+ ui?: UIProps;
1570
+ };
1571
+ declare const Slide: React$1.FC<SlideProps>;
1572
+
1573
+ type SwitchProps = {
1574
+ checked?: boolean;
1575
+ defaultChecked?: boolean;
1576
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>, checked: boolean) => void;
1577
+ disabled?: boolean;
1578
+ label?: string;
1579
+ color?: keyof Theme['colors'];
1580
+ size?: 'sm' | 'md' | 'lg';
1581
+ };
1582
+ declare const Switch: React$1.FC<SwitchProps>;
1583
+
1584
+ declare const IconClose: React.FC<IconProps>;
1585
+
1586
+ declare const IconSearch: React.FC<IconProps>;
1587
+
1588
+ declare const IconDown: React.FC<IconProps>;
1589
+
1590
+ declare const useClickAway: (ref: any, callback: any) => void;
1591
+
1592
+ export { Avatar, type AvatarProps, Backdrop, BackdropContext, type BackdropContextType, BackdropProvider, Box, type BoxProps, Button, type ButtonProps, Calendar, type CalendarComponentProps, type CalendarDayProps, type CalendarProps, Checkbox, type CheckboxProps, Chip, type ChipProps, Collapse, type CollapseProps, Container, type ContainerProps, Control, ControlContext, type ControlProps, type ControlVariants, Divider, type DividerProps, Drawer, type DrawerProps, Fade, type FadeProps, Flex, type FlexProps, Grid, type GridProps, Group, type GroupProps, type GroupsVariant, IconClose, IconDown, IconSearch, Image, type ImageProps, Input, type InputProps, Label, type LabelProps, Modal, ModalContainer, type ModalContainerProps, type ModalProps, Notistack, type NotistackAnchorProps, type NotistackProps, NotistackProvider, type Option, Pending, type PendingProps, Phone, type PhoneInputProps, type PlaceData, Radio, type RadioVariant, Select, type SelectChangeEvent, type SelectProps, type SelectorChangeEvent, type SelectorProps, Slide, type SlideContentProps, type SlideProps, Switch, Text, type TextProps, type TextVariant, type Theme, ThemeContext, ThemeProvider, type UIProps, adjustColor, applyTheme, baseTokens, bem, bemMerge, breakpoints, composeStyles, createPaletteColor, createTheme, createVariants, cx, getContrast, getMonthCalendar, initTheme, isEmpty, text, times, uiStyle, useBackdrop, useBreakpointValue, useClickAway, useControl, useMediaQuery, useNotistack, useTheme };