@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.
@@ -16,61 +16,81 @@ export interface ThemePaletteColorsModel {
16
16
  /**
17
17
  * The 50 palette color
18
18
  */
19
- fifty: string;
19
+ fifty?: string;
20
20
  /**
21
21
  * The 100 palette color
22
22
  */
23
- oneHundred: string;
23
+ oneHundred?: string;
24
24
  /**
25
25
  * The 200 palette color
26
26
  */
27
- twoHundred: string;
27
+ twoHundred?: string;
28
28
  /**
29
29
  * The 300 palette color
30
30
  */
31
- threeHundred: string;
31
+ threeHundred?: string;
32
32
  /**
33
33
  * The 400 palette color
34
34
  */
35
- fourHundred: string;
35
+ fourHundred?: string;
36
36
  /**
37
37
  * The 500 palette color
38
38
  */
39
- fiveHundred: string;
39
+ fiveHundred?: string;
40
40
  /**
41
41
  * The 600 palette color
42
42
  */
43
- sixHundred: string;
43
+ sixHundred?: string;
44
44
  /**
45
45
  * The 700 palette color
46
46
  */
47
- sevenHundred: string;
47
+ sevenHundred?: string;
48
48
  /**
49
49
  * The 800 palette color
50
50
  */
51
- eightHundred: string;
51
+ eightHundred?: string;
52
52
  /**
53
53
  * The 900 palette color
54
54
  */
55
- nineHundred: string;
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: string;
63
+ a100?: string;
60
64
  /**
61
65
  * The A200 palette color
62
66
  */
63
- a200: string;
67
+ a200?: string;
64
68
  /**
65
69
  * The A300 palette color
66
70
  */
67
- a300: string;
71
+ a300?: string;
68
72
  /**
69
73
  * The A400 palette color
70
74
  */
71
- a400: string;
75
+ a400?: string;
72
76
  /**
73
77
  * The A500 palette color
74
78
  */
75
- a500: string;
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "17.29.0",
3
+ "version": "17.31.0",
4
4
  "dependencies": {
5
5
  "tslib": "^2.5.0"
6
6
  },