@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
|
@@ -104,6 +104,7 @@ export default function Tabs(theme: Theme): {
|
|
|
104
104
|
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
105
105
|
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
106
106
|
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
107
|
+
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
107
108
|
clear?: import("csstype").Property.Clear | undefined;
|
|
108
109
|
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
109
110
|
color?: import("csstype").Property.Color | undefined;
|
|
@@ -118,6 +119,12 @@ export default function Tabs(theme: Theme): {
|
|
|
118
119
|
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
119
120
|
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
120
121
|
contain?: import("csstype").Property.Contain | undefined;
|
|
122
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
123
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
124
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
125
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
126
|
+
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
127
|
+
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
121
128
|
content?: import("csstype").Property.Content | undefined;
|
|
122
129
|
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
123
130
|
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
@@ -139,6 +146,7 @@ export default function Tabs(theme: Theme): {
|
|
|
139
146
|
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
140
147
|
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
141
148
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
149
|
+
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
142
150
|
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
143
151
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
144
152
|
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
@@ -149,6 +157,7 @@ export default function Tabs(theme: Theme): {
|
|
|
149
157
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
150
158
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
151
159
|
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
160
|
+
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
152
161
|
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
153
162
|
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
154
163
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
@@ -168,6 +177,7 @@ export default function Tabs(theme: Theme): {
|
|
|
168
177
|
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
169
178
|
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
170
179
|
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
180
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
171
181
|
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
172
182
|
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
173
183
|
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
@@ -175,11 +185,8 @@ export default function Tabs(theme: Theme): {
|
|
|
175
185
|
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
176
186
|
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
177
187
|
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
178
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
179
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
180
188
|
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
181
189
|
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
182
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
183
190
|
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
184
191
|
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
185
192
|
isolation?: import("csstype").Property.Isolation | undefined;
|
|
@@ -195,16 +202,15 @@ export default function Tabs(theme: Theme): {
|
|
|
195
202
|
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
196
203
|
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
197
204
|
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
198
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
199
205
|
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
200
206
|
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
201
207
|
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
202
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
203
208
|
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
204
209
|
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
205
210
|
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
206
211
|
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
207
212
|
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
213
|
+
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
208
214
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
209
215
|
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
210
216
|
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
@@ -241,6 +247,7 @@ export default function Tabs(theme: Theme): {
|
|
|
241
247
|
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
242
248
|
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
243
249
|
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
250
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
244
251
|
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
245
252
|
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
246
253
|
opacity?: import("csstype").Property.Opacity | undefined;
|
|
@@ -262,23 +269,21 @@ export default function Tabs(theme: Theme): {
|
|
|
262
269
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
263
270
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
264
271
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
265
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
266
272
|
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
267
273
|
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
268
274
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
269
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
270
275
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
271
276
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
272
277
|
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
273
278
|
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
274
279
|
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
280
|
+
page?: import("csstype").Property.Page | undefined;
|
|
275
281
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
276
282
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
277
283
|
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
278
284
|
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
279
285
|
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
280
286
|
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
281
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
282
287
|
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
283
288
|
position?: import("csstype").Property.Position | undefined;
|
|
284
289
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
@@ -292,36 +297,31 @@ export default function Tabs(theme: Theme): {
|
|
|
292
297
|
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
293
298
|
scale?: import("csstype").Property.Scale | undefined;
|
|
294
299
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
295
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
296
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
297
300
|
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
298
301
|
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
299
302
|
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
300
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
301
303
|
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
302
304
|
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
303
305
|
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
304
306
|
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
305
307
|
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
306
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
307
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
308
308
|
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
309
309
|
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
310
310
|
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
311
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
312
311
|
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
313
312
|
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
314
313
|
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
315
314
|
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
316
315
|
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
317
316
|
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
318
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
319
317
|
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
320
318
|
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
321
319
|
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
322
320
|
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
323
321
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
324
322
|
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
323
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
324
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
325
325
|
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
326
326
|
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
327
327
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
@@ -366,6 +366,7 @@ export default function Tabs(theme: Theme): {
|
|
|
366
366
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
367
367
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
368
368
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
369
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
369
370
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
370
371
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
371
372
|
widows?: import("csstype").Property.Widows | undefined;
|
|
@@ -397,8 +398,11 @@ export default function Tabs(theme: Theme): {
|
|
|
397
398
|
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
398
399
|
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
399
400
|
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
401
|
+
caret?: import("csstype").Property.Caret | undefined;
|
|
400
402
|
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
401
403
|
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
404
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
405
|
+
container?: import("csstype").Property.Container | undefined;
|
|
402
406
|
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
403
407
|
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
404
408
|
font?: import("csstype").Property.Font | undefined;
|
|
@@ -408,9 +412,14 @@ export default function Tabs(theme: Theme): {
|
|
|
408
412
|
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
409
413
|
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
410
414
|
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
415
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
416
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
417
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
411
418
|
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
412
419
|
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
413
420
|
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
421
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
422
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
414
423
|
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
415
424
|
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
416
425
|
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
@@ -419,8 +428,19 @@ export default function Tabs(theme: Theme): {
|
|
|
419
428
|
overflow?: import("csstype").Property.Overflow | undefined;
|
|
420
429
|
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
421
430
|
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
431
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
432
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
433
|
+
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
422
434
|
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
423
435
|
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
436
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
437
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
438
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
439
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
440
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
441
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
442
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
443
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
424
444
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
425
445
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
426
446
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
@@ -434,6 +454,7 @@ export default function Tabs(theme: Theme): {
|
|
|
434
454
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
435
455
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
436
456
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
457
|
+
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
437
458
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
438
459
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
439
460
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
@@ -714,7 +735,6 @@ export default function Tabs(theme: Theme): {
|
|
|
714
735
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
715
736
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
716
737
|
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
717
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
718
738
|
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
719
739
|
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
720
740
|
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
package/theme/palette.d.ts
CHANGED
|
@@ -1,4 +1,69 @@
|
|
|
1
1
|
export declare type ColorSchema = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'error';
|
|
2
|
+
export interface GradientsPaletteOptions {
|
|
3
|
+
primary: string;
|
|
4
|
+
info: string;
|
|
5
|
+
success: string;
|
|
6
|
+
warning: string;
|
|
7
|
+
error: string;
|
|
8
|
+
}
|
|
9
|
+
export interface ChartPaletteOptions {
|
|
10
|
+
violet: string[];
|
|
11
|
+
blue: string[];
|
|
12
|
+
green: string[];
|
|
13
|
+
yellow: string[];
|
|
14
|
+
red: string[];
|
|
15
|
+
}
|
|
16
|
+
export interface GridPaletteOptions {
|
|
17
|
+
sectionHeader: string;
|
|
18
|
+
rowHover: string;
|
|
19
|
+
divider: string;
|
|
20
|
+
}
|
|
21
|
+
declare module '@mui/material/styles/createPalette' {
|
|
22
|
+
interface TypeBackground {
|
|
23
|
+
neutral: string;
|
|
24
|
+
autofill: string;
|
|
25
|
+
header: string;
|
|
26
|
+
}
|
|
27
|
+
interface SimplePaletteColorOptions {
|
|
28
|
+
lighter?: string;
|
|
29
|
+
darker?: string;
|
|
30
|
+
LightSelected?: string;
|
|
31
|
+
LightSelectedHover?: string;
|
|
32
|
+
DarkSelected?: string;
|
|
33
|
+
DarkSelectedHover?: string;
|
|
34
|
+
}
|
|
35
|
+
interface PaletteColor {
|
|
36
|
+
lighter?: string;
|
|
37
|
+
darker?: string;
|
|
38
|
+
LightSelected?: string;
|
|
39
|
+
LightSelectedHover?: string;
|
|
40
|
+
DarkSelected?: string;
|
|
41
|
+
DarkSelectedHover?: string;
|
|
42
|
+
}
|
|
43
|
+
interface Palette {
|
|
44
|
+
gradients?: GradientsPaletteOptions;
|
|
45
|
+
chart: ChartPaletteOptions;
|
|
46
|
+
grid?: GridPaletteOptions;
|
|
47
|
+
}
|
|
48
|
+
interface PaletteOptions {
|
|
49
|
+
gradients?: GradientsPaletteOptions;
|
|
50
|
+
chart?: ChartPaletteOptions;
|
|
51
|
+
grid?: GridPaletteOptions;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
declare module '@mui/material' {
|
|
55
|
+
interface Color {
|
|
56
|
+
0: string;
|
|
57
|
+
500_8: string;
|
|
58
|
+
500_12: string;
|
|
59
|
+
500_16: string;
|
|
60
|
+
500_24: string;
|
|
61
|
+
500_32: string;
|
|
62
|
+
500_48: string;
|
|
63
|
+
500_56: string;
|
|
64
|
+
500_80: string;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
2
67
|
export declare const GREY: {
|
|
3
68
|
0: string;
|
|
4
69
|
100: string;
|
package/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export declare type ThemeColorPresets = 'default' | 'purple' | 'cyan' | 'blue' | 'orange' | 'red';
|
package/types/types.d.ts
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import {CustomShadowOptions } from '../theme'
|
|
2
|
-
|
|
3
|
-
export {};
|
|
4
|
-
|
|
5
|
-
export declare type ThemeColorPresets = 'default' | 'purple' | 'cyan' | 'blue' | 'orange' | 'red';
|
|
6
|
-
|
|
7
|
-
declare module '@mui/material/styles' {
|
|
8
|
-
interface Theme {
|
|
9
|
-
stretch?: boolean;
|
|
10
|
-
customShadows: CustomShadowOptions;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
interface ThemeOptions {
|
|
14
|
-
stretch?: boolean;
|
|
15
|
-
customShadows?: CustomShadowOptions;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export interface GridPaletteOptions {
|
|
20
|
-
sectionHeader: string;
|
|
21
|
-
rowHover: string;
|
|
22
|
-
divider: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export interface ChartPaletteOptions {
|
|
26
|
-
violet: string[];
|
|
27
|
-
blue: string[];
|
|
28
|
-
green: string[];
|
|
29
|
-
yellow: string[];
|
|
30
|
-
red: string[];
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export interface GradientsPaletteOptions {
|
|
34
|
-
primary: string;
|
|
35
|
-
info: string;
|
|
36
|
-
success: string;
|
|
37
|
-
warning: string;
|
|
38
|
-
error: string;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
declare module '@mui/material/styles/createPalette' {
|
|
42
|
-
interface TypeBackground {
|
|
43
|
-
neutral: string;
|
|
44
|
-
autofill: string;
|
|
45
|
-
header: string;
|
|
46
|
-
}
|
|
47
|
-
interface SimplePaletteColorOptions {
|
|
48
|
-
lighter?: string;
|
|
49
|
-
darker?: string;
|
|
50
|
-
LightSelected?: string;
|
|
51
|
-
LightSelectedHover?: string;
|
|
52
|
-
DarkSelected?: string;
|
|
53
|
-
DarkSelectedHover?: string;
|
|
54
|
-
}
|
|
55
|
-
interface PaletteColor {
|
|
56
|
-
lighter?: string;
|
|
57
|
-
darker?: string;
|
|
58
|
-
LightSelected?: string;
|
|
59
|
-
LightSelectedHover?: string;
|
|
60
|
-
DarkSelected?: string;
|
|
61
|
-
DarkSelectedHover?: string;
|
|
62
|
-
}
|
|
63
|
-
interface Palette {
|
|
64
|
-
gradients?: GradientsPaletteOptions;
|
|
65
|
-
chart: ChartPaletteOptions;
|
|
66
|
-
grid?: GridPaletteOptions;
|
|
67
|
-
}
|
|
68
|
-
interface PaletteOptions {
|
|
69
|
-
gradients?: GradientsPaletteOptions;
|
|
70
|
-
chart?: ChartPaletteOptions;
|
|
71
|
-
grid?: GridPaletteOptions;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
declare module '@mui/material' {
|
|
76
|
-
interface Color {
|
|
77
|
-
0: string;
|
|
78
|
-
500_8: string;
|
|
79
|
-
500_12: string;
|
|
80
|
-
500_16: string;
|
|
81
|
-
500_24: string;
|
|
82
|
-
500_32: string;
|
|
83
|
-
500_48: string;
|
|
84
|
-
500_56: string;
|
|
85
|
-
500_80: string;
|
|
86
|
-
}
|
|
87
|
-
}
|