@softheon/armature 17.29.0 → 17.31.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.
- package/assets/styles/_typography.scss +4 -1
- package/assets/styles/material-override/_button.scss +25 -7
- package/assets/styles/material-override/_expansion-panel.scss +143 -0
- package/assets/styles/material-override/_radio-button.scss +106 -73
- package/assets/styles/sof-styles.scss +1 -0
- package/esm2022/lib/base-components/sof-utility-button/sof-utility-button.component.mjs +2 -2
- package/esm2022/lib/core/client-generated/model/themePaletteColorsModel.mjs +1 -1
- package/esm2022/lib/theming/services/theme.service.mjs +11 -1
- package/fesm2022/softheon-armature.mjs +12 -2
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/core/client-generated/model/themePaletteColorsModel.d.ts +35 -15
- package/package.json +1 -1
|
@@ -16,61 +16,81 @@ export interface ThemePaletteColorsModel {
|
|
|
16
16
|
/**
|
|
17
17
|
* The 50 palette color
|
|
18
18
|
*/
|
|
19
|
-
fifty
|
|
19
|
+
fifty?: string;
|
|
20
20
|
/**
|
|
21
21
|
* The 100 palette color
|
|
22
22
|
*/
|
|
23
|
-
oneHundred
|
|
23
|
+
oneHundred?: string;
|
|
24
24
|
/**
|
|
25
25
|
* The 200 palette color
|
|
26
26
|
*/
|
|
27
|
-
twoHundred
|
|
27
|
+
twoHundred?: string;
|
|
28
28
|
/**
|
|
29
29
|
* The 300 palette color
|
|
30
30
|
*/
|
|
31
|
-
threeHundred
|
|
31
|
+
threeHundred?: string;
|
|
32
32
|
/**
|
|
33
33
|
* The 400 palette color
|
|
34
34
|
*/
|
|
35
|
-
fourHundred
|
|
35
|
+
fourHundred?: string;
|
|
36
36
|
/**
|
|
37
37
|
* The 500 palette color
|
|
38
38
|
*/
|
|
39
|
-
fiveHundred
|
|
39
|
+
fiveHundred?: string;
|
|
40
40
|
/**
|
|
41
41
|
* The 600 palette color
|
|
42
42
|
*/
|
|
43
|
-
sixHundred
|
|
43
|
+
sixHundred?: string;
|
|
44
44
|
/**
|
|
45
45
|
* The 700 palette color
|
|
46
46
|
*/
|
|
47
|
-
sevenHundred
|
|
47
|
+
sevenHundred?: string;
|
|
48
48
|
/**
|
|
49
49
|
* The 800 palette color
|
|
50
50
|
*/
|
|
51
|
-
eightHundred
|
|
51
|
+
eightHundred?: string;
|
|
52
52
|
/**
|
|
53
53
|
* The 900 palette color
|
|
54
54
|
*/
|
|
55
|
-
nineHundred
|
|
55
|
+
nineHundred?: string;
|
|
56
|
+
/**
|
|
57
|
+
* The A50 palette color
|
|
58
|
+
*/
|
|
59
|
+
a50?: string;
|
|
56
60
|
/**
|
|
57
61
|
* The A100 palette color
|
|
58
62
|
*/
|
|
59
|
-
a100
|
|
63
|
+
a100?: string;
|
|
60
64
|
/**
|
|
61
65
|
* The A200 palette color
|
|
62
66
|
*/
|
|
63
|
-
a200
|
|
67
|
+
a200?: string;
|
|
64
68
|
/**
|
|
65
69
|
* The A300 palette color
|
|
66
70
|
*/
|
|
67
|
-
a300
|
|
71
|
+
a300?: string;
|
|
68
72
|
/**
|
|
69
73
|
* The A400 palette color
|
|
70
74
|
*/
|
|
71
|
-
a400
|
|
75
|
+
a400?: string;
|
|
72
76
|
/**
|
|
73
77
|
* The A500 palette color
|
|
74
78
|
*/
|
|
75
|
-
a500
|
|
79
|
+
a500?: string;
|
|
80
|
+
/**
|
|
81
|
+
* The A600 palette color
|
|
82
|
+
*/
|
|
83
|
+
a600?: string;
|
|
84
|
+
/**
|
|
85
|
+
* The A700 palette color
|
|
86
|
+
*/
|
|
87
|
+
a700?: string;
|
|
88
|
+
/**
|
|
89
|
+
* The A800 palette color
|
|
90
|
+
*/
|
|
91
|
+
a800?: string;
|
|
92
|
+
/**
|
|
93
|
+
* The A900 palette color
|
|
94
|
+
*/
|
|
95
|
+
a900?: string;
|
|
76
96
|
}
|