igniteui-theming 25.1.0 → 25.2.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/dist/index.d.ts +75 -0
- package/dist/index.js +12 -0
- package/dist/json/components/bootstrap.json +1 -0
- package/dist/json/components/fluent.json +1 -0
- package/dist/json/components/indigo.json +1 -0
- package/dist/json/components/material.json +1 -0
- package/{json → dist/json}/components/themes.json +31 -1
- package/dist/mcp/generators/css.d.ts +7 -4
- package/dist/mcp/generators/css.js +129 -104
- package/dist/mcp/generators/sass.js +227 -254
- package/dist/mcp/index.js +259 -323
- package/dist/mcp/knowledge/color-usage.js +524 -502
- package/dist/mcp/knowledge/colors.js +61 -50
- package/dist/mcp/knowledge/component-metadata.js +697 -598
- package/dist/mcp/knowledge/component-themes.js +70 -57
- package/dist/mcp/knowledge/custom-palettes.js +4 -9
- package/dist/mcp/knowledge/docs/colors/guidance.js +4 -0
- package/dist/mcp/knowledge/docs/colors/usage.js +4 -0
- package/dist/mcp/knowledge/docs/layout/functions/border-radius.js +4 -0
- package/dist/mcp/knowledge/docs/layout/functions/pad.js +4 -0
- package/dist/mcp/knowledge/docs/layout/functions/sizable.js +4 -0
- package/dist/mcp/knowledge/docs/layout/mixins/sizable.js +4 -0
- package/dist/mcp/knowledge/docs/layout/mixins/sizing.js +4 -0
- package/dist/mcp/knowledge/docs/layout/mixins/spacing.js +4 -0
- package/dist/mcp/knowledge/docs/layout/overview.js +4 -0
- package/dist/mcp/knowledge/docs/setup/platform.js +4 -0
- package/dist/mcp/knowledge/elevations.d.ts +1 -1
- package/dist/mcp/knowledge/elevations.js +26 -12
- package/dist/mcp/knowledge/index.js +23 -87
- package/dist/mcp/knowledge/layout-docs.d.ts +1 -1
- package/dist/mcp/knowledge/multipliers.js +5 -0
- package/dist/mcp/knowledge/palettes.js +29 -17
- package/dist/mcp/knowledge/platforms/angular.js +98 -120
- package/dist/mcp/knowledge/platforms/blazor.js +39 -34
- package/dist/mcp/knowledge/platforms/common.js +83 -68
- package/dist/mcp/knowledge/platforms/index.js +265 -242
- package/dist/mcp/knowledge/platforms/react.js +43 -35
- package/dist/mcp/knowledge/platforms/webcomponents.js +266 -292
- package/dist/mcp/knowledge/sass-api.js +1 -0
- package/dist/mcp/knowledge/typography.js +13 -5
- package/dist/mcp/resources/index.js +1 -0
- package/dist/mcp/resources/presets.js +409 -508
- package/dist/mcp/theming/dist/json/colors/meta/multipliers.js +50 -0
- package/dist/mcp/theming/dist/json/colors/presets/palettes.js +85 -0
- package/dist/mcp/theming/dist/json/components/themes.js +5792 -0
- package/dist/mcp/theming/dist/json/elevations/indigo.js +29 -0
- package/dist/mcp/theming/dist/json/elevations/material.js +3 -0
- package/dist/mcp/theming/dist/json/typography/presets/typescales.js +621 -0
- package/dist/mcp/tools/descriptions.js +98 -154
- package/dist/mcp/tools/handlers/color.js +58 -56
- package/dist/mcp/tools/handlers/component-theme.js +163 -225
- package/dist/mcp/tools/handlers/component-tokens.js +159 -219
- package/dist/mcp/tools/handlers/custom-palette.js +138 -179
- package/dist/mcp/tools/handlers/elevations.js +27 -28
- package/dist/mcp/tools/handlers/index.js +11 -0
- package/dist/mcp/tools/handlers/layout.js +125 -176
- package/dist/mcp/tools/handlers/palette.js +105 -120
- package/dist/mcp/tools/handlers/platform.js +289 -311
- package/dist/mcp/tools/handlers/resource.js +22 -31
- package/dist/mcp/tools/handlers/theme.js +86 -103
- package/dist/mcp/tools/handlers/typography.js +29 -30
- package/dist/mcp/tools/index.js +13 -0
- package/dist/mcp/tools/schemas.js +239 -218
- package/dist/mcp/utils/color.js +277 -239
- package/dist/mcp/utils/preprocessing.js +57 -30
- package/dist/mcp/utils/result.js +43 -45
- package/dist/mcp/utils/sass.js +271 -191
- package/dist/mcp/utils/theming-resolve.d.ts +19 -0
- package/dist/mcp/utils/theming-resolve.js +57 -0
- package/dist/mcp/utils/types.js +96 -53
- package/dist/mcp/validators/custom-palette.js +218 -243
- package/dist/mcp/validators/index.js +3 -0
- package/dist/mcp/validators/palette.js +231 -229
- package/dist/tailwind/utilities/bootstrap.css +1 -0
- package/dist/tailwind/utilities/fluent.css +1 -0
- package/dist/tailwind/utilities/indigo.css +1 -0
- package/dist/tailwind/utilities/material.css +1 -0
- package/package.json +45 -64
- package/sass/json/README.md +12 -7
- package/sass/themes/_mixins.scss +1 -0
- package/sass/themes/components/button-group/_button-group-theme.scss +42 -0
- package/sass/themes/components/grid/_grid-theme.scss +1 -1
- package/sass/themes/schemas/components/dark/_button-group.scss +173 -50
- package/sass/themes/schemas/components/dark/_grid.scss +0 -16
- package/sass/themes/schemas/components/light/_button-group.scss +221 -99
- package/sass/themes/schemas/components/light/_grid.scss +14 -20
- package/LICENSE +0 -21
- package/README.md +0 -391
- package/dist/mcp/json/colors/presets/palettes.json.js +0 -13
- package/dist/mcp/json/components/themes.json.js +0 -143
- package/dist/mcp/json/elevations/indigo.json.js +0 -8
- package/dist/mcp/json/elevations/material.json.js +0 -8
- package/dist/mcp/json/typography/presets/typescales.json.js +0 -17
- package/dist/mcp/knowledge/docs/colors/guidance.md.js +0 -4
- package/dist/mcp/knowledge/docs/colors/usage.md.js +0 -4
- package/dist/mcp/knowledge/docs/layout/functions/border-radius.md.js +0 -4
- package/dist/mcp/knowledge/docs/layout/functions/pad.md.js +0 -4
- package/dist/mcp/knowledge/docs/layout/functions/sizable.md.js +0 -4
- package/dist/mcp/knowledge/docs/layout/mixins/sizable.md.js +0 -4
- package/dist/mcp/knowledge/docs/layout/mixins/sizing.md.js +0 -4
- package/dist/mcp/knowledge/docs/layout/mixins/spacing.md.js +0 -4
- package/dist/mcp/knowledge/docs/layout/overview.md.js +0 -4
- package/dist/mcp/knowledge/docs/setup/platform.md.js +0 -4
- package/dist/mcp/vite-env.d.ts +0 -18
- package/index.js +0 -5
- package/json/components/bootstrap.json +0 -1
- package/json/components/fluent.json +0 -1
- package/json/components/indigo.json +0 -1
- package/json/components/material.json +0 -1
- package/tailwind/utilities/bootstrap.css +0 -1
- package/tailwind/utilities/fluent.css +0 -1
- package/tailwind/utilities/indigo.css +0 -1
- package/tailwind/utilities/material.css +0 -1
- /package/{json → dist/json}/colors/meta/multipliers.json +0 -0
- /package/{json → dist/json}/colors/meta/palette.json +0 -0
- /package/{json → dist/json}/colors/presets/palettes.json +0 -0
- /package/{json → dist/json}/elevations/indigo.json +0 -0
- /package/{json → dist/json}/elevations/material.json +0 -0
- /package/{json → dist/json}/typography/presets/typescales.json +0 -0
- /package/{tailwind → dist/tailwind}/themes/base.css +0 -0
- /package/{tailwind → dist/tailwind}/themes/dark/bootstrap.css +0 -0
- /package/{tailwind → dist/tailwind}/themes/dark/fluent.css +0 -0
- /package/{tailwind → dist/tailwind}/themes/dark/indigo.css +0 -0
- /package/{tailwind → dist/tailwind}/themes/dark/material.css +0 -0
- /package/{tailwind → dist/tailwind}/themes/light/bootstrap.css +0 -0
- /package/{tailwind → dist/tailwind}/themes/light/fluent.css +0 -0
- /package/{tailwind → dist/tailwind}/themes/light/indigo.css +0 -0
- /package/{tailwind → dist/tailwind}/themes/light/material.css +0 -0
|
@@ -10,14 +10,16 @@
|
|
|
10
10
|
/// Generates the base dark button-group schema.
|
|
11
11
|
/// @type Map
|
|
12
12
|
/// @prop {Map} item-border-color [color: ('gray', 100)] - The border color between button group items.
|
|
13
|
-
/// @prop {Map} item-hover-border-color [color: ('gray',
|
|
14
|
-
/// @prop {Map} item-focused-border-color [color: ('gray',
|
|
15
|
-
/// @prop {Map} item-hover-
|
|
16
|
-
/// @prop {Map} item-
|
|
17
|
-
/// @prop {Map} item-selected-background [color: ('gray',
|
|
13
|
+
/// @prop {Map} item-hover-border-color [color: ('gray', 200)] - The hover border color between button group items.
|
|
14
|
+
/// @prop {Map} item-focused-border-color [color: ('gray', 200)] - The focused border color for an item from the button group.
|
|
15
|
+
/// @prop {Map} item-focused-hover-border-color [color: ('gray', 300)] - The focused & hover border color for an item from the button group.
|
|
16
|
+
/// @prop {Map} item-selected-background [color: ('gray', 100)] - The background color for a selected item in the button group.
|
|
17
|
+
/// @prop {Map} item-selected-focus-background [color: ('gray', 100)] - The background color for a selected item in focus state in the button group.
|
|
18
18
|
/// @prop {Map} item-selected-hover-background [color: ('gray', 300, .8)] - The hover background color for a selected item in hover or focus state in the button group.
|
|
19
|
+
/// @prop {Map} item-selected-focus-hover-background [color: ('gray', 200)] - The background color for a selected item in focused & hover state in the button group.
|
|
19
20
|
/// @prop {Map} item-selected-border-color [color: ('gray', 300)] - The border color for button group selected items.
|
|
20
|
-
/// @prop {Map} item-selected-hover-border-color [color: ('gray',
|
|
21
|
+
/// @prop {Map} item-selected-hover-border-color [color: ('gray', 500)] - The hover border color for button group selected items.
|
|
22
|
+
/// @prop {Map} item-active-border-color [color: ('gray', 100)] - The active border color for button group items.
|
|
21
23
|
/// @prop {Map} item-disabled-border [color: ('gray', 100)] - The border color for a disabled item in the button group.
|
|
22
24
|
/// @prop {Map} disabled-selected-border-color [color: ('gray', 100)] - The disabled border color for a selected item from the button group.
|
|
23
25
|
$base-dark-button-group: (
|
|
@@ -31,37 +33,35 @@ $base-dark-button-group: (
|
|
|
31
33
|
item-hover-border-color: (
|
|
32
34
|
color: (
|
|
33
35
|
'gray',
|
|
34
|
-
|
|
36
|
+
200,
|
|
35
37
|
),
|
|
36
38
|
),
|
|
37
39
|
|
|
38
40
|
item-focused-border-color: (
|
|
39
41
|
color: (
|
|
40
42
|
'gray',
|
|
41
|
-
|
|
43
|
+
200,
|
|
42
44
|
),
|
|
43
45
|
),
|
|
44
46
|
|
|
45
|
-
item-hover-
|
|
47
|
+
item-focused-hover-border-color: (
|
|
46
48
|
color: (
|
|
47
49
|
'gray',
|
|
48
|
-
|
|
49
|
-
0.8,
|
|
50
|
+
300,
|
|
50
51
|
),
|
|
51
52
|
),
|
|
52
53
|
|
|
53
|
-
item-
|
|
54
|
+
item-selected-background: (
|
|
54
55
|
color: (
|
|
55
56
|
'gray',
|
|
56
|
-
|
|
57
|
-
0.3,
|
|
57
|
+
100,
|
|
58
58
|
),
|
|
59
59
|
),
|
|
60
60
|
|
|
61
|
-
item-selected-background: (
|
|
61
|
+
item-selected-focus-background: (
|
|
62
62
|
color: (
|
|
63
63
|
'gray',
|
|
64
|
-
|
|
64
|
+
100,
|
|
65
65
|
),
|
|
66
66
|
),
|
|
67
67
|
|
|
@@ -73,6 +73,13 @@ $base-dark-button-group: (
|
|
|
73
73
|
),
|
|
74
74
|
),
|
|
75
75
|
|
|
76
|
+
item-selected-focus-hover-background: (
|
|
77
|
+
color: (
|
|
78
|
+
'gray',
|
|
79
|
+
200,
|
|
80
|
+
),
|
|
81
|
+
),
|
|
82
|
+
|
|
76
83
|
item-selected-border-color: (
|
|
77
84
|
color: (
|
|
78
85
|
'gray',
|
|
@@ -83,7 +90,14 @@ $base-dark-button-group: (
|
|
|
83
90
|
item-selected-hover-border-color: (
|
|
84
91
|
color: (
|
|
85
92
|
'gray',
|
|
86
|
-
|
|
93
|
+
500,
|
|
94
|
+
),
|
|
95
|
+
),
|
|
96
|
+
|
|
97
|
+
item-active-border-color: (
|
|
98
|
+
color: (
|
|
99
|
+
'gray',
|
|
100
|
+
100,
|
|
87
101
|
),
|
|
88
102
|
),
|
|
89
103
|
|
|
@@ -109,18 +123,30 @@ $base-dark-button-group: (
|
|
|
109
123
|
|
|
110
124
|
/// Generates a dark material button-group schema based on a mix of $light-button-group and $base-dark-button-group
|
|
111
125
|
/// @type Map
|
|
112
|
-
/// @prop {Map} item-
|
|
113
|
-
/// @prop {Map} item-focused-
|
|
114
|
-
/// @prop {Map} item-
|
|
115
|
-
/// @prop {Map} item-selected-
|
|
116
|
-
/// @prop {Map} item-
|
|
126
|
+
/// @prop {Map} item-hover-background [color: ('gray', 100)] - The background color for button group items on hover.
|
|
127
|
+
/// @prop {Map} item-focused-background [color: ('gray', 100)] - The focused background color for button group items.
|
|
128
|
+
/// @prop {Map} item-focused-hover-background [color: ('gray', 100)] - The focused & hover background color for button group items.
|
|
129
|
+
/// @prop {Map} item-selected-hover-background [color: ('gray', 100)] - The background color for a selected item in hover state in the button group.
|
|
130
|
+
/// @prop {Map} item-active-background [color: ('gray', 200)] - The active background color for button group items.
|
|
131
|
+
/// @prop {Map} item-selected-active-background [color: ('gray', 200)] - The active background color for a selected item in the button group.
|
|
132
|
+
/// @prop {Map} item-selected-active-border-color [color: ('gray', 500)] - The active border color for a selected item in the button group.
|
|
133
|
+
/// @prop {Map} disabled-selected-background [color: ('gray', 50)] - The disabled background color for a selected item in the button group.
|
|
134
|
+
/// @prop {Map} disabled-selected-text-color [color: ('gray', 200)] - The disabled text color for a selected item in the button group.
|
|
135
|
+
/// @prop {Map} disabled-selected-icon-color [color: ('gray', 200)] - The disabled icon color for a selected item in the button group.
|
|
117
136
|
/// @requires $material-button-group
|
|
118
137
|
/// @requires $base-dark-button-group
|
|
119
138
|
$dark-material-button-group: extend(
|
|
120
139
|
$material-button-group,
|
|
121
140
|
$base-dark-button-group,
|
|
122
141
|
(
|
|
123
|
-
item-
|
|
142
|
+
item-hover-background: (
|
|
143
|
+
color: (
|
|
144
|
+
'gray',
|
|
145
|
+
100,
|
|
146
|
+
),
|
|
147
|
+
),
|
|
148
|
+
|
|
149
|
+
item-focused-background: (
|
|
124
150
|
color: (
|
|
125
151
|
'gray',
|
|
126
152
|
100,
|
|
@@ -130,32 +156,56 @@ $dark-material-button-group: extend(
|
|
|
130
156
|
item-focused-hover-background: (
|
|
131
157
|
color: (
|
|
132
158
|
'gray',
|
|
133
|
-
|
|
134
|
-
0.5,
|
|
159
|
+
100,
|
|
135
160
|
),
|
|
136
161
|
),
|
|
137
162
|
|
|
138
163
|
item-selected-hover-background: (
|
|
139
164
|
color: (
|
|
140
165
|
'gray',
|
|
141
|
-
|
|
142
|
-
0.4,
|
|
166
|
+
100,
|
|
143
167
|
),
|
|
144
168
|
),
|
|
145
169
|
|
|
146
|
-
item-
|
|
170
|
+
item-active-background: (
|
|
147
171
|
color: (
|
|
148
172
|
'gray',
|
|
149
|
-
|
|
150
|
-
0.28,
|
|
173
|
+
200,
|
|
151
174
|
),
|
|
152
175
|
),
|
|
153
176
|
|
|
154
|
-
item-selected-
|
|
177
|
+
item-selected-active-background: (
|
|
155
178
|
color: (
|
|
156
179
|
'gray',
|
|
157
|
-
|
|
158
|
-
|
|
180
|
+
200,
|
|
181
|
+
),
|
|
182
|
+
),
|
|
183
|
+
|
|
184
|
+
item-selected-active-border-color: (
|
|
185
|
+
color: (
|
|
186
|
+
'gray',
|
|
187
|
+
500,
|
|
188
|
+
),
|
|
189
|
+
),
|
|
190
|
+
|
|
191
|
+
disabled-selected-background: (
|
|
192
|
+
color: (
|
|
193
|
+
'gray',
|
|
194
|
+
50,
|
|
195
|
+
),
|
|
196
|
+
),
|
|
197
|
+
|
|
198
|
+
disabled-selected-text-color: (
|
|
199
|
+
color: (
|
|
200
|
+
'gray',
|
|
201
|
+
200,
|
|
202
|
+
),
|
|
203
|
+
),
|
|
204
|
+
|
|
205
|
+
disabled-selected-icon-color: (
|
|
206
|
+
color: (
|
|
207
|
+
'gray',
|
|
208
|
+
200,
|
|
159
209
|
),
|
|
160
210
|
),
|
|
161
211
|
)
|
|
@@ -166,15 +216,19 @@ $dark-material-button-group: extend(
|
|
|
166
216
|
/// @prop {Map} item-border-color [color: ('gray', 400)] - The border color for button group items.
|
|
167
217
|
/// @prop {Map} item-hover-border-color [color: ('gray', 400)] - The hover border color between button group items.
|
|
168
218
|
/// @prop {Map} item-focused-border-color [color: ('gray', 400)] - The focused border color for button group items.
|
|
219
|
+
/// @prop {Map} item-focused-hover-border-color [color: ('gray', 400)] - The focused & hover border color for button group items.
|
|
169
220
|
/// @prop {Map} item-hover-background [color: ('gray', 50)] - The background color for button group items on hover.
|
|
170
|
-
/// @prop {Map} item-focused-background [color: ('gray',
|
|
171
|
-
/// @prop {Map} item-selected-
|
|
172
|
-
/// @prop {Map} item-selected-
|
|
173
|
-
/// @prop {Map} item-selected-
|
|
174
|
-
/// @prop {Map} item-
|
|
175
|
-
/// @prop {Map} item-
|
|
221
|
+
/// @prop {Map} item-focused-hover-background [color: ('gray', 50)] - The focused & hover background color for button group items.
|
|
222
|
+
/// @prop {Map} item-selected-border-color [color: ('gray', 600)] - The border color for button group selected items.
|
|
223
|
+
/// @prop {Map} item-selected-hover-background [color: ('gray', 100)] - The background color for a selected item in hover or focus state in the button group.
|
|
224
|
+
/// @prop {Map} item-selected-hover-border-color [color: ('gray', 600)] - The border color for a selected item in hover state in the button group.
|
|
225
|
+
/// @prop {Map} item-active-background [color: ('gray', 100)] - The active background color for button group items.
|
|
226
|
+
/// @prop {Map} item-active-border-color [color: ('gray', 400)] - The active border color for button group items.
|
|
227
|
+
/// @prop {Map} item-selected-active-background [color: ('gray', 300)] - The active background color for a selected item in the button group.
|
|
228
|
+
/// @prop {Map} item-selected-active-border-color [color: ('gray', 600)] - The active border color for a selected item in the button group.
|
|
176
229
|
/// @prop {Map} item-disabled-border [color: ('gray', 400)] - The border color for button group disabled items.
|
|
177
230
|
/// @prop {Map} disabled-text-color [color: ('gray', 300)]- The text/icon color for a disabled item in the button group.
|
|
231
|
+
/// @prop {Map} disabled-selected-background [color: ('gray', 100)] - The disabled background color for a selected item in the button group.
|
|
178
232
|
/// @prop {Map} disabled-selected-text-color [color: ('gray', 300)] - The disabled text color for a selected item in the button group.
|
|
179
233
|
/// @prop {Map} disabled-selected-icon-color [color: ('gray', 300)] - The disabled icon color for a selected item in the button group.
|
|
180
234
|
/// @prop {Map} disabled-selected-border-color [color: ('gray', 400)] - The disabled border color for a selected item from the button group.
|
|
@@ -205,6 +259,13 @@ $dark-fluent-button-group: extend(
|
|
|
205
259
|
),
|
|
206
260
|
),
|
|
207
261
|
|
|
262
|
+
item-focused-hover-border-color: (
|
|
263
|
+
color: (
|
|
264
|
+
'gray',
|
|
265
|
+
400,
|
|
266
|
+
),
|
|
267
|
+
),
|
|
268
|
+
|
|
208
269
|
item-hover-background: (
|
|
209
270
|
color: (
|
|
210
271
|
'gray',
|
|
@@ -212,46 +273,59 @@ $dark-fluent-button-group: extend(
|
|
|
212
273
|
),
|
|
213
274
|
),
|
|
214
275
|
|
|
215
|
-
item-focused-background: (
|
|
276
|
+
item-focused-hover-background: (
|
|
216
277
|
color: (
|
|
217
278
|
'gray',
|
|
218
|
-
|
|
279
|
+
50,
|
|
219
280
|
),
|
|
220
281
|
),
|
|
221
282
|
|
|
222
|
-
item-selected-
|
|
283
|
+
item-selected-border-color: (
|
|
284
|
+
color: (
|
|
285
|
+
'gray',
|
|
286
|
+
600,
|
|
287
|
+
),
|
|
288
|
+
),
|
|
289
|
+
|
|
290
|
+
item-selected-hover-background: (
|
|
223
291
|
color: (
|
|
224
292
|
'gray',
|
|
225
293
|
200,
|
|
226
294
|
),
|
|
227
295
|
),
|
|
228
296
|
|
|
229
|
-
item-selected-border-color: (
|
|
297
|
+
item-selected-hover-border-color: (
|
|
230
298
|
color: (
|
|
231
299
|
'gray',
|
|
232
|
-
|
|
300
|
+
600,
|
|
233
301
|
),
|
|
234
302
|
),
|
|
235
303
|
|
|
236
|
-
item-
|
|
304
|
+
item-active-background: (
|
|
237
305
|
color: (
|
|
238
306
|
'gray',
|
|
239
|
-
|
|
307
|
+
100,
|
|
240
308
|
),
|
|
241
309
|
),
|
|
242
310
|
|
|
243
|
-
item-
|
|
311
|
+
item-active-border-color: (
|
|
244
312
|
color: (
|
|
245
313
|
'gray',
|
|
246
314
|
400,
|
|
247
|
-
0.3,
|
|
248
315
|
),
|
|
249
316
|
),
|
|
250
317
|
|
|
251
|
-
item-selected-
|
|
318
|
+
item-selected-active-background: (
|
|
252
319
|
color: (
|
|
253
320
|
'gray',
|
|
254
|
-
|
|
321
|
+
300,
|
|
322
|
+
),
|
|
323
|
+
),
|
|
324
|
+
|
|
325
|
+
item-selected-active-border-color: (
|
|
326
|
+
color: (
|
|
327
|
+
'gray',
|
|
328
|
+
600,
|
|
255
329
|
),
|
|
256
330
|
),
|
|
257
331
|
|
|
@@ -269,6 +343,13 @@ $dark-fluent-button-group: extend(
|
|
|
269
343
|
),
|
|
270
344
|
),
|
|
271
345
|
|
|
346
|
+
disabled-selected-background: (
|
|
347
|
+
color: (
|
|
348
|
+
'gray',
|
|
349
|
+
100,
|
|
350
|
+
),
|
|
351
|
+
),
|
|
352
|
+
|
|
272
353
|
disabled-selected-text-color: (
|
|
273
354
|
color: (
|
|
274
355
|
'gray',
|
|
@@ -318,6 +399,11 @@ $dark-bootstrap-button-group: extend(
|
|
|
318
399
|
/// @prop {Map} item-focused-border-color [color: ('gray', 100)] - The focused border color for an item from the button group.
|
|
319
400
|
/// @prop {Map} item-focused-text-color [contrast-color: ('gray', 50, .8)] - The focused text color for button group items.
|
|
320
401
|
/// @prop {Map} item-focused-background [contrast-color: ('gray', 50, .05)] - The focused background color for button group items.
|
|
402
|
+
/// @prop {Map} item-focused-hover-background [contrast-color: ('gray', 50, .1)] - The focused & hover background color for button group items.
|
|
403
|
+
/// @prop {Map} item-focused-hover-border-color [color: ('gray', 200)] - The focused & hover border color for an item from the button group.
|
|
404
|
+
/// @prop {Map} item-focused-hover-text-color [contrast-color: ('gray', 50)] - The focused & hover text color for button group items.
|
|
405
|
+
/// @prop {Map} item-active-background [contrast-color: ('gray', 50, .1)] - The active background color for button group items.
|
|
406
|
+
/// @prop {Map} item-active-border-color [color: ('gray', 200)] - The active border color for button group items.
|
|
321
407
|
/// @prop {Color} disabled-background-color [transparent] - The background color for a disabled item in the button group.
|
|
322
408
|
/// @prop {Map} disabled-text-color [contrast-color: ('gray', 50, .2)] - The text/icon color for a disabled item in the button group.
|
|
323
409
|
/// @prop {Map} item-disabled-border [color: ('gray', 50)] - The border color for a disabled item in the button group.
|
|
@@ -418,6 +504,43 @@ $dark-indigo-button-group: extend(
|
|
|
418
504
|
),
|
|
419
505
|
),
|
|
420
506
|
|
|
507
|
+
item-focused-hover-background: (
|
|
508
|
+
contrast-color: (
|
|
509
|
+
'gray',
|
|
510
|
+
50,
|
|
511
|
+
0.1,
|
|
512
|
+
),
|
|
513
|
+
),
|
|
514
|
+
|
|
515
|
+
item-focused-hover-border-color: (
|
|
516
|
+
color: (
|
|
517
|
+
'gray',
|
|
518
|
+
200,
|
|
519
|
+
),
|
|
520
|
+
),
|
|
521
|
+
|
|
522
|
+
item-focused-hover-text-color: (
|
|
523
|
+
contrast-color: (
|
|
524
|
+
'gray',
|
|
525
|
+
50,
|
|
526
|
+
),
|
|
527
|
+
),
|
|
528
|
+
|
|
529
|
+
item-active-background: (
|
|
530
|
+
contrast-color: (
|
|
531
|
+
'gray',
|
|
532
|
+
50,
|
|
533
|
+
0.1,
|
|
534
|
+
),
|
|
535
|
+
),
|
|
536
|
+
|
|
537
|
+
item-active-border-color: (
|
|
538
|
+
color: (
|
|
539
|
+
'gray',
|
|
540
|
+
200,
|
|
541
|
+
),
|
|
542
|
+
),
|
|
543
|
+
|
|
421
544
|
disabled-background-color: transparent,
|
|
422
545
|
|
|
423
546
|
disabled-text-color: (
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
/// @prop {Map} row-selected-text-color [contrast-color: ('secondary', 'A700')] - The selected row text color.
|
|
27
27
|
/// @prop {Map} row-selected-hover-text-color [contrast-color: ('secondary', 'A400')] - The selected row hover text color.
|
|
28
28
|
/// @prop {Map} row-highlight [color: ('secondary', 500)] - The highlight color of a row.
|
|
29
|
-
/// @prop {Map} row-ghost-background [color: ('primary', 900)] - The dragged row background color.
|
|
30
29
|
/// @prop {Map} cell-selected-background [color: ('gray', 100)] - The selected cell background color.
|
|
31
30
|
/// @prop {Map} cell-selected-text-color [contrast-color: ('gray', 100)] - The selected cell text color.
|
|
32
31
|
/// @prop {Map} cell-selected-within-background [color: ('secondary', 'A400')] - The background of the selected cell inside a selected row/column.
|
|
@@ -155,13 +154,6 @@ $base-dark-grid: (
|
|
|
155
154
|
),
|
|
156
155
|
),
|
|
157
156
|
|
|
158
|
-
row-ghost-background: (
|
|
159
|
-
color: (
|
|
160
|
-
'primary',
|
|
161
|
-
900,
|
|
162
|
-
),
|
|
163
|
-
),
|
|
164
|
-
|
|
165
157
|
cell-selected-within-background: (
|
|
166
158
|
color: (
|
|
167
159
|
'secondary',
|
|
@@ -507,7 +499,6 @@ $dark-bootstrap-grid: extend(
|
|
|
507
499
|
/// @prop {Map} excel-filtering-actions-hover-background [contrast-color: ('gray', 50, .1)] - The background color of the excel style filtering options in hover/focus state.
|
|
508
500
|
/// @prop {Map} excel-filtering-actions-disabled-foreground [contrast-color: ('gray', 50, .2)] - The text color of the excel style filtering options in disabled state.
|
|
509
501
|
/// @prop {Map} excel-filtering-border-color [color: ('gray', 100)] - The border color used in the excel style filter.
|
|
510
|
-
/// @prop {Map} row-ghost-background [color: ('gray', 100)] - The background color of the dragged row.
|
|
511
502
|
/// @prop {Map} filtering-dialog-background [color: ('gray', 50)] - The background color of the advanced filtering dialog.
|
|
512
503
|
/// @prop {Map} body-column-selected-border-color [color: ('primary', 900)] - The border color used for the body column when in group-row state.
|
|
513
504
|
/// @prop {Map} body-column-hover-selected-border-color [color: ('primary', 700)] - The border color used for the body column when in group-row + hover state.
|
|
@@ -850,13 +841,6 @@ $dark-indigo-grid: extend(
|
|
|
850
841
|
),
|
|
851
842
|
),
|
|
852
843
|
|
|
853
|
-
row-ghost-background: (
|
|
854
|
-
color: (
|
|
855
|
-
'gray',
|
|
856
|
-
100,
|
|
857
|
-
),
|
|
858
|
-
),
|
|
859
|
-
|
|
860
844
|
filtering-dialog-background: (
|
|
861
845
|
color: (
|
|
862
846
|
'gray',
|