igniteui-theming 18.2.0 → 19.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "18.2.0",
3
+ "version": "19.0.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": {
@@ -81,7 +81,6 @@ $dark-bootstrap-grid-summary: extend(
81
81
  /// Generates a dark indigo grid-summary schema.
82
82
  /// @type {Map}
83
83
  /// @prop {Map} background-color [color: ('surface')] - The summaries background color.
84
- /// @prop {Map} focus-background-color [color: ('gray', 100)] - The background color when a summary item is on focus.
85
84
  /// @prop {Map} label-color [color: ('primary', 200)] - The summaries label color.
86
85
  /// @prop {Map} label-hover-color [color: ('primary', 200)] - The summaries hover label color.
87
86
  /// @prop {Map} result-color [contrast-color: 'surface'] - The summaries value/result color.
@@ -97,13 +96,6 @@ $dark-indigo-grid-summary: extend(
97
96
  ),
98
97
  ),
99
98
 
100
- focus-background-color: (
101
- color: (
102
- 'gray',
103
- 100,
104
- ),
105
- ),
106
-
107
99
  label-color: (
108
100
  color: (
109
101
  'primary',
@@ -10,7 +10,6 @@
10
10
  /// Generates a light grid-summary schema.
11
11
  /// @type {Map}
12
12
  /// @prop {Map} background-color [color: ('gray', 300)] - The summaries background color.
13
- /// @prop {Map} focus-background-color [color: ('gray', 100)] - The background color when a summary item is on focus.
14
13
  /// @prop {Map} label-color [color: ('primary', 500)] - The summaries label color.
15
14
  /// @prop {Map} label-hover-color [color: ('primary', 700)] - The summaries hover label color.
16
15
  /// @prop {Map} result-color [contrast-color: ('gray', 300)] - The summaries value/result color.
@@ -26,13 +25,6 @@ $light-grid-summary: (
26
25
  ),
27
26
  ),
28
27
 
29
- focus-background-color: (
30
- color: (
31
- 'gray',
32
- 100,
33
- ),
34
- ),
35
-
36
28
  label-color: (
37
29
  color: (
38
30
  'primary',
@@ -28,7 +28,6 @@
28
28
  /// @prop {Map} idle-bottom-line-color [color: ('gray', 500)] - The bottom line and border colors in the idle state.
29
29
  /// @prop {Map} hover-bottom-line-color [color: ('gray', 900)] - The bottom line and border colors in the hover state.
30
30
  /// @prop {Map} focused-bottom-line-color [color: ('primary', 500)] - The bottom line and border colors in the focused state.
31
- /// @prop {Map} interim-bottom-line-color [color: ('primary', 500, .12)] - The bottom line and border colors during the to-focused transition.
32
31
  /// @prop {Map} disabled-bottom-line-color [color: ('gray', 500)] - The bottom line and border colors in the disabled state.
33
32
  /// @prop {Map} border-color [color: ('gray', 400)] - The border color for input groups of type border and fluent.
34
33
  /// @prop {Map} hover-border-color [color: ('gray', 900)] - The hover input border for input groups of type border and fluent.
@@ -186,13 +185,6 @@ $light-input-group: (
186
185
  500,
187
186
  ),
188
187
  ),
189
- interim-bottom-line-color: (
190
- color: (
191
- 'primary',
192
- 500,
193
- 0.12,
194
- ),
195
- ),
196
188
  disabled-bottom-line-color: (
197
189
  color: (
198
190
  'gray',
@@ -564,7 +556,6 @@ $fluent-input-group: extend(
564
556
  /// @prop {Map} border-disabled-background [color: ('gray', 100)] - The background color of an input group of type border in the disabled state.
565
557
  /// @prop {Map} focused-secondary-color [color: ('primary', 500, .38)] - The label color in the focused state.
566
558
  /// @prop {Map} disabled-text-color [color: ('gray', 400)] - The input text color in the disabled state.
567
- /// @prop {Map} interim-bottom-line-color [color: ('primary', 500)] - The bottom line and border colors during the to-focused transition.
568
559
  /// @prop {Map} disabled-placeholder-color [color: ('gray', 400)] - The disabled placeholder color of an input group.
569
560
  /// @prop {Map} input-prefix-color [color: ('gray', 800)] - The input prefix color in the idle state.
570
561
  /// @prop {Map} input-prefix-color--filled [color: ('gray', 800)] - The input prefix color in the filled state.
@@ -589,12 +580,6 @@ $bootstrap-input-group: extend(
589
580
  $light-input-group,
590
581
  $bootstrap-elevation-input-group,
591
582
  (
592
- interim-bottom-line-color: (
593
- color: (
594
- 'primary',
595
- 500,
596
- ),
597
- ),
598
583
  border-disabled-background: (
599
584
  color: (
600
585
  'gray',