igniteui-theming 2.0.1 → 2.1.0-beta.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "2.0.1",
|
|
3
|
+
"version": "2.1.0-beta.1",
|
|
4
4
|
"description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
@use './highlight' as *;
|
|
32
32
|
@use './icon' as *;
|
|
33
33
|
@use './input-group' as *;
|
|
34
|
+
@use './label' as *;
|
|
34
35
|
@use './list' as *;
|
|
35
36
|
@use './navbar' as *;
|
|
36
37
|
@use './navdrawer' as *;
|
|
@@ -87,6 +88,7 @@ $dark-material-schema: (
|
|
|
87
88
|
highlight: $dark-highlight,
|
|
88
89
|
icon: $dark-icon,
|
|
89
90
|
input-group: $dark-input-group,
|
|
91
|
+
label: $dark-material-label,
|
|
90
92
|
list: $dark-list,
|
|
91
93
|
navbar: $dark-navbar,
|
|
92
94
|
nav-drawer: $dark-navdrawer,
|
|
@@ -149,6 +151,7 @@ $dark-fluent-schema: (
|
|
|
149
151
|
highlight: $dark-fluent-highlight,
|
|
150
152
|
icon: $dark-fluent-icon,
|
|
151
153
|
input-group: $dark-fluent-input-group,
|
|
154
|
+
label: $dark-fluent-label,
|
|
152
155
|
list: $dark-fluent-list,
|
|
153
156
|
navbar: $dark-fluent-navbar,
|
|
154
157
|
nav-drawer: $dark-fluent-navdrawer,
|
|
@@ -211,6 +214,7 @@ $dark-bootstrap-schema: (
|
|
|
211
214
|
highlight: $dark-bootstrap-highlight,
|
|
212
215
|
icon: $dark-bootstrap-icon,
|
|
213
216
|
input-group: $dark-bootstrap-input-group,
|
|
217
|
+
label: $dark-bootstrap-label,
|
|
214
218
|
list: $dark-bootstrap-list,
|
|
215
219
|
navbar: $dark-bootstrap-navbar,
|
|
216
220
|
nav-drawer: $dark-bootstrap-navdrawer,
|
|
@@ -273,6 +277,7 @@ $dark-indigo-schema: (
|
|
|
273
277
|
highlight: $dark-indigo-highlight,
|
|
274
278
|
icon: $dark-indigo-icon,
|
|
275
279
|
input-group: $dark-indigo-input-group,
|
|
280
|
+
label: $dark-indigo-label,
|
|
276
281
|
list: $dark-indigo-list,
|
|
277
282
|
navbar: $dark-indigo-navbar,
|
|
278
283
|
nav-drawer: $dark-indigo-navdrawer,
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
@use '../light/label' as *;
|
|
2
|
+
|
|
3
|
+
////
|
|
4
|
+
/// @package theming
|
|
5
|
+
/// @group schemas
|
|
6
|
+
/// @access public
|
|
7
|
+
////
|
|
8
|
+
|
|
9
|
+
/// Generates a dark material label schema.
|
|
10
|
+
/// @type {Map}
|
|
11
|
+
/// @prop {Color} color [color: ('gray', 700)] - The label color.
|
|
12
|
+
$dark-material-label: $material-label;
|
|
13
|
+
|
|
14
|
+
/// Generates a dark fluent label schema.
|
|
15
|
+
/// @type {Map}
|
|
16
|
+
/// @prop {Color} color [color: ('gray', 900)] - The label color.
|
|
17
|
+
$dark-fluent-label: $fluent-label;
|
|
18
|
+
|
|
19
|
+
/// Generates a dark bootstrap label schema.
|
|
20
|
+
/// @type {Map}
|
|
21
|
+
/// @prop {Color} color [color: ('gray', 700)] - The label color.
|
|
22
|
+
$dark-bootstrap-label: $bootstrap-label;
|
|
23
|
+
|
|
24
|
+
/// Generates an dark indigo label schema.
|
|
25
|
+
/// @type {Map}
|
|
26
|
+
/// @prop {Color} color [color: ('surface')] - The label color.
|
|
27
|
+
$dark-indigo-label: (
|
|
28
|
+
color: (
|
|
29
|
+
color: (
|
|
30
|
+
'surface',
|
|
31
|
+
),
|
|
32
|
+
),
|
|
33
|
+
);
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
@use './icon' as *;
|
|
33
33
|
@use './input-group' as *;
|
|
34
34
|
@use './list' as *;
|
|
35
|
+
@use './label' as *;
|
|
35
36
|
@use './navbar' as *;
|
|
36
37
|
@use './navdrawer' as *;
|
|
37
38
|
@use './overlay' as *;
|
|
@@ -87,6 +88,7 @@ $light-material-schema: (
|
|
|
87
88
|
highlight: $light-highlight,
|
|
88
89
|
icon: $light-icon,
|
|
89
90
|
input-group: $light-input-group,
|
|
91
|
+
label: $material-label,
|
|
90
92
|
list: $light-list,
|
|
91
93
|
navbar: $light-navbar,
|
|
92
94
|
nav-drawer: $light-navdrawer,
|
|
@@ -149,6 +151,7 @@ $light-fluent-schema: (
|
|
|
149
151
|
highlight: $fluent-highlight,
|
|
150
152
|
icon: $fluent-icon,
|
|
151
153
|
input-group: $fluent-input-group,
|
|
154
|
+
label: $fluent-label,
|
|
152
155
|
list: $fluent-list,
|
|
153
156
|
navbar: $fluent-navbar,
|
|
154
157
|
nav-drawer: $fluent-navdrawer,
|
|
@@ -211,6 +214,7 @@ $light-bootstrap-schema: (
|
|
|
211
214
|
highlight: $bootstrap-highlight,
|
|
212
215
|
icon: $bootstrap-icon,
|
|
213
216
|
input-group: $bootstrap-input-group,
|
|
217
|
+
label: $bootstrap-label,
|
|
214
218
|
list: $bootstrap-list,
|
|
215
219
|
navbar: $bootstrap-navbar,
|
|
216
220
|
nav-drawer: $bootstrap-navdrawer,
|
|
@@ -273,6 +277,7 @@ $light-indigo-schema: (
|
|
|
273
277
|
highlight: $indigo-highlight,
|
|
274
278
|
icon: $indigo-icon,
|
|
275
279
|
input-group: $indigo-input-group,
|
|
280
|
+
label: $indigo-label,
|
|
276
281
|
list: $indigo-list,
|
|
277
282
|
navbar: $indigo-navbar,
|
|
278
283
|
nav-drawer: $indigo-navdrawer,
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
////
|
|
2
|
+
/// @package theming
|
|
3
|
+
/// @group schemas
|
|
4
|
+
/// @access public
|
|
5
|
+
////
|
|
6
|
+
|
|
7
|
+
/// Generates a light material label schema.
|
|
8
|
+
/// @type {Map}
|
|
9
|
+
/// @prop {Color} color [color: ('gray', 700)] - The label color.
|
|
10
|
+
$material-label: (
|
|
11
|
+
color: (
|
|
12
|
+
color: (
|
|
13
|
+
'gray',
|
|
14
|
+
700,
|
|
15
|
+
),
|
|
16
|
+
),
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
/// Generates a light fluent label schema.
|
|
20
|
+
/// @type {Map}
|
|
21
|
+
/// @prop {Color} color [color: ('gray', 900)] - The label color.
|
|
22
|
+
$fluent-label: (
|
|
23
|
+
color: (
|
|
24
|
+
color: (
|
|
25
|
+
'gray',
|
|
26
|
+
900,
|
|
27
|
+
),
|
|
28
|
+
),
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
/// Generates a light bootstrap label schema.
|
|
32
|
+
/// @type {Map}
|
|
33
|
+
/// @prop {Color} color [color: ('gray', 700)] - The label color.
|
|
34
|
+
$bootstrap-label: (
|
|
35
|
+
color: (
|
|
36
|
+
color: (
|
|
37
|
+
'gray',
|
|
38
|
+
700,
|
|
39
|
+
),
|
|
40
|
+
),
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
/// Generates an light indigo label schema.
|
|
44
|
+
/// @type {Map}
|
|
45
|
+
/// @prop {Color} color [color: ('gray', 900)] - The label color.
|
|
46
|
+
$indigo-label: (
|
|
47
|
+
color: (
|
|
48
|
+
color: (
|
|
49
|
+
'gray',
|
|
50
|
+
900,
|
|
51
|
+
),
|
|
52
|
+
),
|
|
53
|
+
);
|