@mdtl/uikit 0.0.12 → 0.0.13
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/dist/index.d.ts +1 -2
- package/dist/themes/aps/index.d.ts +150 -0
- package/dist/uikit.js +8 -9
- package/package.json +1 -1
- /package/dist/{theme → themes/aps}/augmentation.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/common/CheckboxCheckedIcon.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/common/CheckboxDeterminateIcon.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/common/CheckboxIcon.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/common/RadioButtonCheckedIcon.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/common/RadioButtonIcon.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/alert.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/autocomplete.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/badge.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/buttons.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/checkbox.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/fab.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/formControlLabel.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/iconButton.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/inputAdornment.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/inputLabel.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/menu.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/menuItem.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/pickersTextField.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/radio.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/stepIcon.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/stepLabel.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/svgIcon.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/tab.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/table.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/tableCell.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/tableRow.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/tabs.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/textfield.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/toggleButton.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/toggleButtonGroup.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/tooltip.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/configs/typography.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/shared/buttonColors.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/shared/createCheckConfig.d.ts +0 -0
- /package/dist/{theme → themes/aps}/controls/shared/defaultColors.d.ts +0 -0
- /package/dist/{theme → themes/aps}/themeOptions.d.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
export { Title } from './components/Title/Title';
|
|
2
2
|
export { CollapsibleSection } from './components/CollapsibleSection/CollapsibleSection';
|
|
3
|
-
export {
|
|
4
|
-
export { defaultColors } from './theme/controls/shared/defaultColors';
|
|
3
|
+
export { apsTheme } from './themes/aps';
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
export declare const apsTheme: {
|
|
2
|
+
themeOptions: import('@mui/material').ThemeOptions;
|
|
3
|
+
defaultColors: {
|
|
4
|
+
red: {
|
|
5
|
+
'0': string;
|
|
6
|
+
'5': string;
|
|
7
|
+
'10': string;
|
|
8
|
+
'25': string;
|
|
9
|
+
'40': string;
|
|
10
|
+
'55': string;
|
|
11
|
+
'65': string;
|
|
12
|
+
'70': string;
|
|
13
|
+
'85': string;
|
|
14
|
+
'90': string;
|
|
15
|
+
'95': string;
|
|
16
|
+
'100': string;
|
|
17
|
+
};
|
|
18
|
+
black: {
|
|
19
|
+
'0': string;
|
|
20
|
+
'5': string;
|
|
21
|
+
'10': string;
|
|
22
|
+
'15': string;
|
|
23
|
+
'25': string;
|
|
24
|
+
'35': string;
|
|
25
|
+
'40': string;
|
|
26
|
+
'55': string;
|
|
27
|
+
'65': string;
|
|
28
|
+
'70': string;
|
|
29
|
+
'85': string;
|
|
30
|
+
'90': string;
|
|
31
|
+
'95': string;
|
|
32
|
+
'100': string;
|
|
33
|
+
};
|
|
34
|
+
blackBlue: {
|
|
35
|
+
'0': string;
|
|
36
|
+
'5': string;
|
|
37
|
+
'10': string;
|
|
38
|
+
'25': string;
|
|
39
|
+
'40': string;
|
|
40
|
+
'45': string;
|
|
41
|
+
'55': string;
|
|
42
|
+
'65': string;
|
|
43
|
+
'70': string;
|
|
44
|
+
'80': string;
|
|
45
|
+
'85': string;
|
|
46
|
+
'90': string;
|
|
47
|
+
'95': string;
|
|
48
|
+
'98': string;
|
|
49
|
+
'100': string;
|
|
50
|
+
};
|
|
51
|
+
blue: {
|
|
52
|
+
'0': string;
|
|
53
|
+
'5': string;
|
|
54
|
+
'10': string;
|
|
55
|
+
'25': string;
|
|
56
|
+
'40': string;
|
|
57
|
+
'55': string;
|
|
58
|
+
'65': string;
|
|
59
|
+
'70': string;
|
|
60
|
+
'85': string;
|
|
61
|
+
'90': string;
|
|
62
|
+
'95': string;
|
|
63
|
+
'100': string;
|
|
64
|
+
};
|
|
65
|
+
yellow: {
|
|
66
|
+
'0': string;
|
|
67
|
+
'5': string;
|
|
68
|
+
'10': string;
|
|
69
|
+
'25': string;
|
|
70
|
+
'40': string;
|
|
71
|
+
'55': string;
|
|
72
|
+
'65': string;
|
|
73
|
+
'70': string;
|
|
74
|
+
'85': string;
|
|
75
|
+
'90': string;
|
|
76
|
+
'95': string;
|
|
77
|
+
'100': string;
|
|
78
|
+
};
|
|
79
|
+
green: {
|
|
80
|
+
'0': string;
|
|
81
|
+
'5': string;
|
|
82
|
+
'10': string;
|
|
83
|
+
'25': string;
|
|
84
|
+
'40': string;
|
|
85
|
+
'55': string;
|
|
86
|
+
'65': string;
|
|
87
|
+
'70': string;
|
|
88
|
+
'85': string;
|
|
89
|
+
'90': string;
|
|
90
|
+
'95': string;
|
|
91
|
+
'100': string;
|
|
92
|
+
};
|
|
93
|
+
green2: {
|
|
94
|
+
'0': string;
|
|
95
|
+
'5': string;
|
|
96
|
+
'10': string;
|
|
97
|
+
'25': string;
|
|
98
|
+
'40': string;
|
|
99
|
+
'55': string;
|
|
100
|
+
'65': string;
|
|
101
|
+
'70': string;
|
|
102
|
+
'85': string;
|
|
103
|
+
'90': string;
|
|
104
|
+
'95': string;
|
|
105
|
+
'100': string;
|
|
106
|
+
};
|
|
107
|
+
purple: {
|
|
108
|
+
'0': string;
|
|
109
|
+
'5': string;
|
|
110
|
+
'10': string;
|
|
111
|
+
'25': string;
|
|
112
|
+
'40': string;
|
|
113
|
+
'55': string;
|
|
114
|
+
'65': string;
|
|
115
|
+
'70': string;
|
|
116
|
+
'85': string;
|
|
117
|
+
'90': string;
|
|
118
|
+
'95': string;
|
|
119
|
+
'100': string;
|
|
120
|
+
};
|
|
121
|
+
niagara: {
|
|
122
|
+
'0': string;
|
|
123
|
+
'5': string;
|
|
124
|
+
'10': string;
|
|
125
|
+
'25': string;
|
|
126
|
+
'40': string;
|
|
127
|
+
'55': string;
|
|
128
|
+
'65': string;
|
|
129
|
+
'70': string;
|
|
130
|
+
'85': string;
|
|
131
|
+
'90': string;
|
|
132
|
+
'95': string;
|
|
133
|
+
'100': string;
|
|
134
|
+
};
|
|
135
|
+
greyPlatinum: {
|
|
136
|
+
'0': string;
|
|
137
|
+
'5': string;
|
|
138
|
+
'10': string;
|
|
139
|
+
'25': string;
|
|
140
|
+
'40': string;
|
|
141
|
+
'55': string;
|
|
142
|
+
'65': string;
|
|
143
|
+
'70': string;
|
|
144
|
+
'85': string;
|
|
145
|
+
'90': string;
|
|
146
|
+
'95': string;
|
|
147
|
+
'100': string;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
};
|
package/dist/uikit.js
CHANGED
|
@@ -15852,7 +15852,7 @@ Check the render method of \`` + e + "`." : "";
|
|
|
15852
15852
|
};
|
|
15853
15853
|
}
|
|
15854
15854
|
}
|
|
15855
|
-
function
|
|
15855
|
+
function jN(e) {
|
|
15856
15856
|
return e;
|
|
15857
15857
|
}
|
|
15858
15858
|
function IR(e) {
|
|
@@ -18334,10 +18334,10 @@ Incoming: %s`, te, "[" + t.join(", ") + "]", "[" + e.join(", ") + "]");
|
|
|
18334
18334
|
}
|
|
18335
18335
|
return [y, c];
|
|
18336
18336
|
}
|
|
18337
|
-
function jN(e, t, a) {
|
|
18338
|
-
}
|
|
18339
18337
|
function IN(e, t, a) {
|
|
18340
18338
|
}
|
|
18339
|
+
function VN(e, t, a) {
|
|
18340
|
+
}
|
|
18341
18341
|
function US(e, t, a) {
|
|
18342
18342
|
var i = _t, l = So(), c, h = sr();
|
|
18343
18343
|
if (h) {
|
|
@@ -24891,7 +24891,7 @@ const JA = YA(/* @__PURE__ */ at("path", {
|
|
|
24891
24891
|
s: 1,
|
|
24892
24892
|
m: 1.5,
|
|
24893
24893
|
l: 1.75
|
|
24894
|
-
},
|
|
24894
|
+
}, GN = ({
|
|
24895
24895
|
title: u,
|
|
24896
24896
|
children: f,
|
|
24897
24897
|
size: p = "m",
|
|
@@ -26671,7 +26671,7 @@ const JA = YA(/* @__PURE__ */ at("path", {
|
|
|
26671
26671
|
}
|
|
26672
26672
|
}
|
|
26673
26673
|
}
|
|
26674
|
-
},
|
|
26674
|
+
}, $N = {
|
|
26675
26675
|
palette: {
|
|
26676
26676
|
text: {
|
|
26677
26677
|
primary: ee.blackBlue[100],
|
|
@@ -26960,10 +26960,9 @@ const JA = YA(/* @__PURE__ */ at("path", {
|
|
|
26960
26960
|
"",
|
|
26961
26961
|
"0px 40px 64px 0px #C0CAD7"
|
|
26962
26962
|
]
|
|
26963
|
-
};
|
|
26963
|
+
}, QN = { themeOptions: $N, defaultColors: ee };
|
|
26964
26964
|
export {
|
|
26965
|
-
|
|
26965
|
+
GN as CollapsibleSection,
|
|
26966
26966
|
TA as Title,
|
|
26967
|
-
|
|
26968
|
-
GN as themeOptions
|
|
26967
|
+
QN as apsTheme
|
|
26969
26968
|
};
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|