igniteui-theming 14.0.0 → 14.2.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": "14.0.0",
3
+ "version": "14.2.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": {
@@ -7,27 +7,41 @@
7
7
  /// @access public
8
8
  ////
9
9
 
10
+ /// Generates a base dark query builder schema.
11
+ /// @type {Map}
12
+ /// @prop {Color} tree-background [contrast-color: ('gray', 900)] - The background color of the query block.
13
+ $dark-query-builder: (
14
+ tree-background: (
15
+ contrast-color: (
16
+ 'gray',
17
+ 900,
18
+ ),
19
+ ),
20
+ );
21
+
10
22
  /// Generates a dark material query builder schema.
11
23
  /// @type {Map}
12
24
  /// @see $material-query-builder
13
25
  /// @requires $material-query-builder
14
- $dark-material-query-builder: $material-query-builder;
26
+ $dark-material-query-builder: extend($material-query-builder, $dark-query-builder);
15
27
 
16
28
  /// Generates a dark fluent query builder schema.
17
29
  /// @see $fluent-query-builder
18
30
  /// @requires $fluent-query-builder
19
- $dark-fluent-query-builder: $fluent-query-builder;
31
+ $dark-fluent-query-builder: extend($fluent-query-builder, $dark-query-builder);
20
32
 
21
33
  /// Generates a dark bootstrap query builder schema.
22
- $dark-bootstrap-query-builder: $bootstrap-query-builder;
34
+ $dark-bootstrap-query-builder: extend($bootstrap-query-builder, $dark-query-builder);
23
35
 
24
36
  /// Generates a dark indigo query builder schema.
25
37
  /// @type {Map}
26
38
  /// @prop {Map} background [color: ('gray', 50)] - The background color of the filtering row.
27
39
  /// @prop {Map} header-border [color: ('gray', 100)] - The border color of the query builder header.
40
+ /// @prop {Map} tree-border-color [contrast-color: ('gray', 900)] - The border color of the query block.
28
41
  /// @requires $indigo-query-builder
29
42
  $dark-indigo-query-builder: extend(
30
43
  $indigo-query-builder,
44
+ $dark-query-builder,
31
45
  (
32
46
  background: (
33
47
  color: (
@@ -42,5 +56,12 @@ $dark-indigo-query-builder: extend(
42
56
  100,
43
57
  ),
44
58
  ),
59
+
60
+ tree-border-color: (
61
+ contrast-color: (
62
+ 'gray',
63
+ 900,
64
+ ),
65
+ ),
45
66
  )
46
67
  );
@@ -18,6 +18,11 @@
18
18
  /// @prop {Map} background-and--focus [color: ('primary', 700)] - The background color on focus/selected of advanced filtering "AND" condition.
19
19
  /// @prop {Map} background-or [color: ('secondary', 300)] - The background color of advanced filtering "OR" condition.
20
20
  /// @prop {Map} background-or--focus [color: ('secondary', 700)] - The background color on focus/selected of advanced filtering "OR" condition.
21
+ /// @prop {Map} border-color [color: ('gray', 300)] - The border color of the query builder.
22
+ /// @prop {Number} border-radius [rem(4px)] - The border radius of the query builder.
23
+ /// @prop {Map} tree-background [color: ('surface')] - The background color of the query block.
24
+ /// @prop {Map} tree-border-color [color: ('gray', 300)] - The border color of the query block.
25
+ /// @prop {Number} tree-border-radius [rem(8px)] - The border radius of the query block.
21
26
  $light-query-builder: (
22
27
  background: (
23
28
  color: (
@@ -69,6 +74,27 @@ $light-query-builder: (
69
74
  700,
70
75
  ),
71
76
  ),
77
+
78
+ border-color: (
79
+ color: (
80
+ 'gray',
81
+ 300,
82
+ ),
83
+ ),
84
+
85
+ border-radius: rem(4px),
86
+ tree-background: (
87
+ color: 'surface',
88
+ ),
89
+
90
+ tree-border-color: (
91
+ color: (
92
+ 'gray',
93
+ 300,
94
+ ),
95
+ ),
96
+
97
+ tree-border-radius: rem(8px),
72
98
  );
73
99
 
74
100
  /// Generates a material query builder schema.
@@ -80,6 +106,7 @@ $material-query-builder: $light-query-builder;
80
106
  /// @type {Map}
81
107
  /// @prop {Map} background-or [color: ('error', 500, .5)] - The background color of advanced filtering "OR" condition.
82
108
  /// @prop {Map} background-or--focus [color: ('error')] - The background color on focus/selected of advanced filtering "OR" condition.
109
+ /// @prop {Number} border-radius [rem(2px)] - The border radius of the query builder.
83
110
  /// @requires {Map} $light-query-builder
84
111
  $fluent-query-builder: extend(
85
112
  $light-query-builder,
@@ -97,12 +124,17 @@ $fluent-query-builder: extend(
97
124
  'error',
98
125
  ),
99
126
  ),
127
+
128
+ border-radius: rem(2px),
100
129
  )
101
130
  );
102
131
 
103
132
  /// Generates a bootstrap query builder schema.
104
133
  /// @type {Map}
105
134
  /// @prop {Map} header-background [color: ('gray', 100, .5)] - The background color of the query builder header.
135
+ /// @prop {Map} tree-background [contrast-color: ('gray', 900)] - The background color of the query block.
136
+ /// @prop {Map} border-color [color: ('gray', 100)] - The border color of the query builder.
137
+ /// @prop {Map} tree-border-color [color: ('gray', 100)] - The border color of the query block.
106
138
  /// @requires {Map} $light-query-builder
107
139
  $bootstrap-query-builder: extend(
108
140
  $light-query-builder,
@@ -114,6 +146,27 @@ $bootstrap-query-builder: extend(
114
146
  0.5,
115
147
  ),
116
148
  ),
149
+
150
+ tree-background: (
151
+ contrast-color: (
152
+ 'gray',
153
+ 900,
154
+ ),
155
+ ),
156
+
157
+ border-color: (
158
+ color: (
159
+ 'gray',
160
+ 100,
161
+ ),
162
+ ),
163
+
164
+ tree-border-color: (
165
+ color: (
166
+ 'gray',
167
+ 100,
168
+ ),
169
+ ),
117
170
  )
118
171
  );
119
172
 
@@ -126,6 +179,7 @@ $bootstrap-query-builder: extend(
126
179
  /// @prop {Map} background-or [color: ('success', 500)] - The background color of advanced filtering "OR" condition.
127
180
  /// @prop {Map} background-and--focus [color: ('primary', 300)] - The background color on focus/selected of advanced filtering "AND" condition.
128
181
  /// @prop {Map} background-or--focus [color: ('secondary', 400)] - The background color on focus/selected of advanced filtering "OR" condition.
182
+ /// @prop {Number} border-radius [rem(10px)] - The border radius of the query builder.
129
183
  /// @requires {Map} $light-query-builder
130
184
  $indigo-query-builder: extend(
131
185
  $light-query-builder,
@@ -170,5 +224,7 @@ $indigo-query-builder: extend(
170
224
  400,
171
225
  ),
172
226
  ),
227
+
228
+ border-radius: rem(10px),
173
229
  )
174
230
  );