@m4l/styles 0.0.2 → 0.0.3
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.
- package/index.d.ts +0 -1
- package/index.js +389 -381
- package/package.json +1 -1
- package/theme/index.d.ts +3 -0
- package/theme/overrides/M4LExtendedComponents/M4LButton.d.ts +4 -1
- package/theme/overrides/M4LExtendedComponents/M4LIcon.d.ts +1 -2
- package/theme/overrides/M4LExtendedComponents/M4LIconButton.d.ts +3 -0
- package/theme/overrides/M4LRHFComponents/M4LRHFTextFieldPassword.d.ts +3 -0
- package/theme/overrides/MUIComponents/Accordion.d.ts +36 -16
- package/theme/overrides/MUIComponents/ControlLabel.d.ts +36 -16
- package/theme/overrides/MUIComponents/DataGrid.d.ts +72 -32
- package/theme/overrides/MUIComponents/Input.d.ts +72 -32
- package/theme/overrides/MUIComponents/LoadingButton.d.ts +36 -16
- package/theme/overrides/MUIComponents/Table.d.ts +144 -64
- package/theme/overrides/MUIComponents/Tabs.d.ts +36 -16
- package/theme/palette.d.ts +65 -0
- package/types/index.d.ts +1 -1
- package/types/types.d.ts +0 -87
|
@@ -107,6 +107,7 @@ export default function Input(theme: Theme): {
|
|
|
107
107
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
108
108
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
109
109
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
110
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
110
111
|
clear?: import("csstype").Property.Clear | undefined;
|
|
111
112
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
112
113
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -121,6 +122,12 @@ export default function Input(theme: Theme): {
|
|
|
121
122
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
122
123
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
123
124
|
contain?: import("csstype").Property.Contain | undefined;
|
|
125
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
126
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
127
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
128
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
129
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
130
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
124
131
|
content?: import("csstype").Property.Content | undefined;
|
|
125
132
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
126
133
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -142,6 +149,7 @@ export default function Input(theme: Theme): {
|
|
|
142
149
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
143
150
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
144
151
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
152
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
145
153
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
146
154
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
147
155
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -152,6 +160,7 @@ export default function Input(theme: Theme): {
|
|
|
152
160
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
153
161
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
154
162
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
163
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
155
164
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
156
165
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
157
166
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -171,6 +180,7 @@ export default function Input(theme: Theme): {
|
|
|
171
180
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
172
181
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
173
182
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
183
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
174
184
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
175
185
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
176
186
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -178,11 +188,8 @@ export default function Input(theme: Theme): {
|
|
|
178
188
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
179
189
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
180
190
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
181
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
182
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
183
191
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
184
192
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
185
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
186
193
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
187
194
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
188
195
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -198,16 +205,15 @@ export default function Input(theme: Theme): {
|
|
|
198
205
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
199
206
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
200
207
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
201
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
202
208
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
203
209
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
204
210
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
205
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
206
211
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
207
212
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
208
213
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
209
214
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
210
215
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
216
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
211
217
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
212
218
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
213
219
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -244,6 +250,7 @@ export default function Input(theme: Theme): {
|
|
|
244
250
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
245
251
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
246
252
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
253
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
247
254
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
248
255
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
249
256
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -265,23 +272,21 @@ export default function Input(theme: Theme): {
|
|
|
265
272
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
266
273
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
267
274
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
268
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
269
275
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
270
276
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
271
277
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
272
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
273
278
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
274
279
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
275
280
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
276
281
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
277
282
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
283
|
+
page?: import("csstype").Property.Page | undefined;
|
|
278
284
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
279
285
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
280
286
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
281
287
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
282
288
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
283
289
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
284
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
285
290
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
286
291
|
position?: import("csstype").Property.Position | undefined;
|
|
287
292
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -295,36 +300,31 @@ export default function Input(theme: Theme): {
|
|
|
295
300
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
296
301
|
scale?: import("csstype").Property.Scale | undefined;
|
|
297
302
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
298
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
299
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
300
303
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
301
304
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
302
305
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
303
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
304
306
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
305
307
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
306
308
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
307
309
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
308
310
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
309
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
310
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
311
311
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
312
312
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
313
313
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
314
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
315
314
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
316
315
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
317
316
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
318
317
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
319
318
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
320
319
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
321
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
322
320
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
323
321
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
324
322
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
325
323
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
326
324
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
327
325
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
326
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
327
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
328
328
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
329
329
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
330
330
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -369,6 +369,7 @@ export default function Input(theme: Theme): {
|
|
|
369
369
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
370
370
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
371
371
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
372
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
372
373
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
373
374
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
374
375
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -399,8 +400,11 @@ export default function Input(theme: Theme): {
|
|
|
399
400
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
400
401
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
401
402
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
403
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
402
404
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
403
405
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
406
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
407
|
+
container?: import("csstype").Property.Container | undefined;
|
|
404
408
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
405
409
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
406
410
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -410,9 +414,14 @@ export default function Input(theme: Theme): {
|
|
|
410
414
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
411
415
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
412
416
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
417
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
418
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
419
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
413
420
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
414
421
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
415
422
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
423
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
424
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
416
425
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
417
426
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
418
427
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -420,8 +429,19 @@ export default function Input(theme: Theme): {
|
|
|
420
429
|
outline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
421
430
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
422
431
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
432
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
433
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
434
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
423
435
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
424
436
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
437
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
438
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
439
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
440
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
441
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
442
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
443
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
444
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
425
445
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
426
446
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
427
447
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -435,6 +455,7 @@ export default function Input(theme: Theme): {
|
|
|
435
455
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
436
456
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
437
457
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
458
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
438
459
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
439
460
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
440
461
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -715,7 +736,6 @@ export default function Input(theme: Theme): {
|
|
|
715
736
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
716
737
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
717
738
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
718
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
719
739
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
720
740
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
721
741
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -953,6 +973,7 @@ export default function Input(theme: Theme): {
|
|
|
953
973
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
954
974
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
955
975
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
976
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
956
977
|
clear?: import("csstype").Property.Clear | undefined;
|
|
957
978
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
958
979
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -966,6 +987,12 @@ export default function Input(theme: Theme): {
|
|
|
966
987
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
967
988
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
968
989
|
contain?: import("csstype").Property.Contain | undefined;
|
|
990
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
991
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
992
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
993
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
994
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
995
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
969
996
|
content?: import("csstype").Property.Content | undefined;
|
|
970
997
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
971
998
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -987,6 +1014,7 @@ export default function Input(theme: Theme): {
|
|
|
987
1014
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
988
1015
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
989
1016
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
1017
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
990
1018
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
991
1019
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
992
1020
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -997,6 +1025,7 @@ export default function Input(theme: Theme): {
|
|
|
997
1025
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
998
1026
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
999
1027
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
1028
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
1000
1029
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
1001
1030
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
1002
1031
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -1016,6 +1045,7 @@ export default function Input(theme: Theme): {
|
|
|
1016
1045
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
1017
1046
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
1018
1047
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
1048
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
1019
1049
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1020
1050
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
1021
1051
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -1023,11 +1053,8 @@ export default function Input(theme: Theme): {
|
|
|
1023
1053
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1024
1054
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1025
1055
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
1026
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1027
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1028
1056
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1029
1057
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1030
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1031
1058
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1032
1059
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1033
1060
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -1043,16 +1070,15 @@ export default function Input(theme: Theme): {
|
|
|
1043
1070
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
1044
1071
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
1045
1072
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
1046
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1047
1073
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
1048
1074
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
1049
1075
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
1050
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1051
1076
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1052
1077
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1053
1078
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
1054
1079
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
1055
1080
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
1081
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
1056
1082
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
1057
1083
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1058
1084
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -1089,6 +1115,7 @@ export default function Input(theme: Theme): {
|
|
|
1089
1115
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
1090
1116
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1091
1117
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
1118
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
1092
1119
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
1093
1120
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1094
1121
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -1110,23 +1137,21 @@ export default function Input(theme: Theme): {
|
|
|
1110
1137
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
1111
1138
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
1112
1139
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
1113
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1114
1140
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
1115
1141
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
1116
1142
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
1117
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1118
1143
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1119
1144
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1120
1145
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
1121
1146
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
1122
1147
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
1148
|
+
page?: import("csstype").Property.Page | undefined;
|
|
1123
1149
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1124
1150
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1125
1151
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1126
1152
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
1127
1153
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1128
1154
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1129
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1130
1155
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
1131
1156
|
position?: import("csstype").Property.Position | undefined;
|
|
1132
1157
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -1140,36 +1165,31 @@ export default function Input(theme: Theme): {
|
|
|
1140
1165
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
1141
1166
|
scale?: import("csstype").Property.Scale | undefined;
|
|
1142
1167
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
1143
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1144
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1145
1168
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1146
1169
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1147
1170
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1148
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1149
1171
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
1150
1172
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
1151
1173
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1152
1174
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1153
1175
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1154
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1155
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1156
1176
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
1157
1177
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
1158
1178
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
1159
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1160
1179
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
1161
1180
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
1162
1181
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
1163
1182
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
1164
1183
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
1165
1184
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
1166
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1167
1185
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1168
1186
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1169
1187
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1170
1188
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1171
1189
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
1172
1190
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
1191
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
1192
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
1173
1193
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
1174
1194
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
1175
1195
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -1214,6 +1234,7 @@ export default function Input(theme: Theme): {
|
|
|
1214
1234
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1215
1235
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1216
1236
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1237
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1217
1238
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
1218
1239
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
1219
1240
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -1245,8 +1266,11 @@ export default function Input(theme: Theme): {
|
|
|
1245
1266
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
1246
1267
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
1247
1268
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
1269
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
1248
1270
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1249
1271
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1272
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
1273
|
+
container?: import("csstype").Property.Container | undefined;
|
|
1250
1274
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
1251
1275
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
1252
1276
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -1256,9 +1280,14 @@ export default function Input(theme: Theme): {
|
|
|
1256
1280
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
1257
1281
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
1258
1282
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
1283
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1284
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1285
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1259
1286
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
1260
1287
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
1261
1288
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
1289
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1290
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1262
1291
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
1263
1292
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
1264
1293
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -1267,8 +1296,19 @@ export default function Input(theme: Theme): {
|
|
|
1267
1296
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
1268
1297
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
1269
1298
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
1299
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1300
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1301
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1270
1302
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
1271
1303
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
1304
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1305
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1306
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1307
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1308
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1309
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1310
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1311
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1272
1312
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1273
1313
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1274
1314
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -1282,6 +1322,7 @@ export default function Input(theme: Theme): {
|
|
|
1282
1322
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1283
1323
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
1284
1324
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1325
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1285
1326
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1286
1327
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
1287
1328
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -1562,7 +1603,6 @@ export default function Input(theme: Theme): {
|
|
|
1562
1603
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1563
1604
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
1564
1605
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1565
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1566
1606
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
1567
1607
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1568
1608
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|