igniteui-theming 6.1.0-beta.1 → 6.1.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.
@@ -1 +1 @@
1
- {"light-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#949ea9","surface":"#f8f9fa","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"dark-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#b6bdc4","surface":"#212529","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"light-material-palette":{"primary":"#0099ff","secondary":"#df1b74","gray":"#9e9e9e","surface":"white","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"dark-material-palette":{"primary":"#0099ff","secondary":"#df1b74","gray":"#bdbdbd","surface":"#222222","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"light-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","gray":"#9e9e9e","surface":"white","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","gray":"#bdbdbd","surface":"#222222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-indigo-palette":{"primary":"#4051b5","secondary":"#4051b5","gray":"#9a9da2","surface":"#f8f8fa","info":"#9b27b0","success":"#689f38","warn":"#f66d1e","error":"#d11a2c"},"dark-indigo-palette":{"primary":"#4051b5","secondary":"#4051b5","gray":"#c3c3c6","surface":"#1e1f24","info":"#9b27b0","success":"#689f38","warn":"#f66d1e","error":"#d11a2c"}}
1
+ {"light-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#949ea9","surface":"#f8f9fa","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"dark-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#b6bdc4","surface":"#212529","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"light-material-palette":{"primary":"#0099ff","secondary":"#df1b74","gray":"#9e9e9e","surface":"white","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"dark-material-palette":{"primary":"#0099ff","secondary":"#df1b74","gray":"#bdbdbd","surface":"#222222","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"light-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","gray":"#9e9e9e","surface":"white","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","gray":"#bdbdbd","surface":"#1b1b1b","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-indigo-palette":{"primary":"#4051b5","secondary":"#4051b5","gray":"#9a9da2","surface":"#f8f8fa","info":"#9b27b0","success":"#689f38","warn":"#f66d1e","error":"#d11a2c"},"dark-indigo-palette":{"primary":"#4051b5","secondary":"#4051b5","gray":"#c3c3c6","surface":"#1e1f24","info":"#9b27b0","success":"#689f38","warn":"#f66d1e","error":"#d11a2c"}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "6.1.0-beta.1",
3
+ "version": "6.1.0",
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": {
@@ -12,7 +12,7 @@
12
12
  /// @prop {Color} primary [#0078d4] - The primary color
13
13
  /// @prop {Color} secondary [#2b88d8] - The secondary color
14
14
  /// @prop {Color} gray [#fff] - The gray color
15
- /// @prop {Color} surface [#222] - The surface color
15
+ /// @prop {Color} surface [#1b1b1b] - The surface color
16
16
  /// @prop {Color} info [#1377d5] - The info color
17
17
  /// @prop {Color} success [#107c10] - The success color
18
18
  /// @prop {Color} warn [#797673] - The warn color
@@ -20,7 +20,7 @@
20
20
  $palette: palette(
21
21
  $primary: #0078d4,
22
22
  $secondary: #2b88d8,
23
- $surface: #222,
23
+ $surface: #1b1b1b,
24
24
  $info: #1377d5,
25
25
  $success: #107c10,
26
26
  $warn: #797673,
@@ -34,7 +34,7 @@ $palette: palette(
34
34
  /// @prop {Color} primary [#2b579a] - The primary color
35
35
  /// @prop {Color} secondary [#2b579a] - The secondary color
36
36
  /// @prop {Color} gray [#fff] - The gray color
37
- /// @prop {Color} surface [#222] - The surface color
37
+ /// @prop {Color} surface [#1b1b1b] - The surface color
38
38
  /// @prop {Color} info [#1377d5] - The info color
39
39
  /// @prop {Color} success [#107c10] - The success color
40
40
  /// @prop {Color} warn [#797673] - The warn color
@@ -42,7 +42,7 @@ $palette: palette(
42
42
  $word-palette: palette(
43
43
  $primary: #2b579a,
44
44
  $secondary: #2b579a,
45
- $surface: #222,
45
+ $surface: #1b1b1b,
46
46
  $info: #1377d5,
47
47
  $success: #107c10,
48
48
  $warn: #797673,
@@ -56,7 +56,7 @@ $word-palette: palette(
56
56
  /// @prop {Color} primary [#217346] - The primary color
57
57
  /// @prop {Color} secondary [#217346] - The secondary color
58
58
  /// @prop {Color} gray [#fff] - The gray color
59
- /// @prop {Color} surface [#222] - The surface color
59
+ /// @prop {Color} surface [#1b1b1b] - The surface color
60
60
  /// @prop {Color} info [#1377d5] - The info color
61
61
  /// @prop {Color} success [#107c10] - The success color
62
62
  /// @prop {Color} warn [#797673] - The warn color
@@ -64,7 +64,7 @@ $word-palette: palette(
64
64
  $excel-palette: palette(
65
65
  $primary: #217346,
66
66
  $secondary: #217346,
67
- $surface: #222,
67
+ $surface: #1b1b1b,
68
68
  $info: #1377d5,
69
69
  $success: #107c10,
70
70
  $warn: #797673,
@@ -22,7 +22,7 @@ $dark-material-slider: $material-slider;
22
22
  /// @prop {Map} track-color [color: ('gray', 600)] - The color of the track.
23
23
  /// @prop {Map} track-hover-color [color: ('primary', 300)] - The color of the track on hover.
24
24
  /// @prop {Map} thumb-border-color [color: ('gray', 400)] - The thumb border color.
25
- /// @prop {Map} thumb-border-hover-color [color: ('gray', 400)] - The thumb border color.
25
+ /// @prop {Map} thumb-border-hover-color [color: ('gray', 400)] - The thumb border color on hover.
26
26
  /// @prop {Map} thumb-focus-color [color: ('primary', 100)] - The focus outline color of the thumb.
27
27
  /// @prop {Map} thumb-disabled-border-color [color: ('gray', 200)] - The thumb border color when it's disabled.
28
28
  /// @prop {Map} disabled-base-track-color [color: ('gray', 100)] - The base background color of the track when is disabled.
@@ -129,7 +129,11 @@ $dark-bootstrap-slider: extend(
129
129
  /// @prop {Map} thumb-color [color: 'surface'] - The color of the thumb.
130
130
  /// @prop {Map} thumb-border-color [color: ('primary', 400)] - The thumb border color.
131
131
  /// @prop {Map} thumb-border-hover-color [color: ('primary', 300)] - The thumb border color when hovered.
132
- /// @prop {Map} disabled-thumb-color [color: 'surface'] - The thumb color when its disabled.
132
+ /// @prop {Map} tick-color [contrast-color: ('gray', 50, 0.2)] - The background-color of the tick.
133
+ /// @prop {Map} tick-label-color [contrast-color: ('gray', 50, 0.6)] - The color of the tick label.
134
+ /// @prop {Map} label-background-color [color: ('gray', 300)] - The background color of the bubble label.
135
+ /// @prop {Map} label-text-color [contrast-color: ('gray', 50)] - The text color of the bubble label.
136
+ /// @prop {Map} disabled-thumb-color [color: 'surface'] - The thumb color when it's disabled.
133
137
  /// @prop {Map} thumb-disabled-border-color [color: ('primary', 800)] - The thumb border color when it's disabled.
134
138
  /// @prop {Map} disabled-base-track-color [contrast-color: ('gray', 50, 0.15)] - The base background color of the track when is disabled.
135
139
  /// @prop {Map} disabled-fill-track-color [color: ('primary', 800)] - The background color of the fill track when is disabled.
@@ -185,6 +189,32 @@ $dark-indigo-slider: extend(
185
189
  300,
186
190
  ),
187
191
  ),
192
+ tick-color: (
193
+ contrast-color: (
194
+ 'gray',
195
+ 50,
196
+ 0.2,
197
+ ),
198
+ ),
199
+ tick-label-color: (
200
+ contrast-color: (
201
+ 'gray',
202
+ 50,
203
+ 0.6,
204
+ ),
205
+ ),
206
+ label-background-color: (
207
+ color: (
208
+ 'gray',
209
+ 300,
210
+ ),
211
+ ),
212
+ label-text-color: (
213
+ contrast-color: (
214
+ 'gray',
215
+ 50,
216
+ ),
217
+ ),
188
218
  disabled-thumb-color: (
189
219
  color: 'surface',
190
220
  ),
@@ -54,7 +54,7 @@ $dark-bootstrap-splitter: $bootstrap-splitter;
54
54
  /// @prop {Map} bar-color [color: ('gray', 200)] - The background color of the bar.
55
55
  /// @prop {Map} focus-color [color: ('gray', 300)] - The color used for focused splitter bar.
56
56
  /// @prop {Map} handle-color [color: ('gray', 600)] - The color for the bar drag handle.
57
- /// @prop {Map} expander-color [color: ('gray', 600)] - The color for the bar drag handle.
57
+ /// @prop {Map} expander-color [color: ('gray', 600)] - The color for the arrow expander.
58
58
  /// @requires $indigo-splitter
59
59
  $dark-indigo-splitter: extend(
60
60
  $indigo-splitter,
@@ -47,17 +47,27 @@ $dark-bootstrap-time-picker: $bootstrap-time-picker;
47
47
 
48
48
  /// Generates a dark indigo time-picker schema.
49
49
  /// @type {Map}
50
+ /// @prop {Map} text-color [color: ('gray', 900)] - The text color of an open time picker.
50
51
  /// @prop {Map} background-color [color: ('gray', 50)] - The time-picker panel background color.
51
52
  /// @prop {Map} header-background [color: ('gray', 50)] - The header background color of a time picker.
52
53
  /// @prop {Map} selected-text-color [color: ('primary', 200)] - The text color of a selected item in time picker.
53
54
  /// @prop {Map} hover-text-color [color: ('primary', 200)] - The hover text color of an open time picker.
54
55
  /// @prop {Color} border-color [color: ('gray', 100)] - The border-color of the time picker.
55
56
  /// @prop {Color} divider-color [color: ('gray', 100)] - The divider color of the time picker.
57
+ /// @prop {Map} header-hour-text-color [contrast-color: ('gray', 50)] - The header hour text color of a time picker.
58
+ /// @prop {Map} header-time-period-color [contrast-color: ('gray', 50)] - The header AM/PM text color of a time picker.
56
59
  /// @requires $indigo-time-picker
57
60
  $dark-indigo-time-picker: extend(
58
61
  $indigo-time-picker,
59
62
  $dark-indigo-elevation-time-picker,
60
63
  (
64
+ text-color: (
65
+ color: (
66
+ 'gray',
67
+ 900,
68
+ ),
69
+ ),
70
+
61
71
  background-color: (
62
72
  color: (
63
73
  'gray',
@@ -79,6 +89,20 @@ $dark-indigo-time-picker: extend(
79
89
  ),
80
90
  ),
81
91
 
92
+ header-hour-text-color: (
93
+ contrast-color: (
94
+ 'gray',
95
+ 50,
96
+ ),
97
+ ),
98
+
99
+ header-time-period-color: (
100
+ contrast-color: (
101
+ 'gray',
102
+ 50,
103
+ ),
104
+ ),
105
+
82
106
  selected-text-color: (
83
107
  color: (
84
108
  'primary',
@@ -334,7 +334,7 @@ $bootstrap-slider: extend(
334
334
  /// @prop {Map} tick-label-color [color: ('gray', 600)] - The color of the tick label.
335
335
  /// @prop {Map} label-background-color [color: ('gray', 600)] - The background color of the bubble label.
336
336
  /// @prop {Map} label-text-color [contrast-color: ('gray', 600)] - The text color of the bubble label.
337
- /// @prop {Map} disabled-thumb-color [color: ('gray', 50)] - The thumb color when its disabled.
337
+ /// @prop {Map} disabled-thumb-color [color: ('gray', 50)] - The thumb color when it's disabled.
338
338
  /// @prop {Map} thumb-disabled-border-color [color: ('primary', 50)] - The thumb border color when it's disabled.
339
339
  /// @prop {Map} disabled-base-track-color [color: ('gray', 900, 0.15)] - The base background color of the track when is disabled.
340
340
  /// @prop {Map} disabled-fill-track-color [color: ('primary', 50)] - The background color of the fill track when is disabled.
@@ -75,7 +75,7 @@ $bootstrap-splitter: $light-splitter;
75
75
  /// @prop {Map} bar-color [color: ('gray', 400)] - The background color of the bar.
76
76
  /// @prop {Map} focus-color [color: ('gray', 500)] - The color used for focused splitter bar.
77
77
  /// @prop {Map} handle-color [color: ('gray', 700)] - The color for the bar drag handle.
78
- /// @prop {Map} expander-color [color: ('gray', 700)] - The color for the bar drag handle.
78
+ /// @prop {Map} expander-color [color: ('gray', 700)] - The color for the arrow expander.
79
79
  /// @requires {Map} $light-splitter
80
80
  $indigo-splitter: extend(
81
81
  $light-splitter,