igniteui-theming 18.0.0 → 18.0.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": "18.0.0",
3
+ "version": "18.0.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": {
@@ -142,6 +142,7 @@ $dark-bootstrap-tabs: extend(
142
142
  /// @prop {Map} item-active-icon-color [contrast-color: ('gray', 50, .8)] - The color used for the active tab icon.
143
143
  /// @prop {Map} item-disabled-icon-color [contrast-color: ('gray', 50, .2)] - The color used for the disabled tab icon.
144
144
  /// @prop {Map} border-color [contrast-color: ('gray', 50, .15)] - The color used for the tab items bottom border.
145
+ /// @prop {Map} border-color--hover [contrast-color: ('gray', 50, .15)] - The color used for the tab items bottom border on hover/focus.
145
146
  /// @prop {Map} button-color [contrast-color: ('gray', 50, .8)] - The color used for the button icon/text color.
146
147
  /// @prop {Map} button-hover-color [contrast-color: ('gray', 50)] - The color used for the button icon/text color on hover.
147
148
  /// @prop {Map} button-disabled-color [contrast-color: ('gray', 50, .2)] - The color used for the disabled button icon/text.
@@ -218,6 +219,13 @@ $dark-indigo-tabs: extend(
218
219
  0.15,
219
220
  ),
220
221
  ),
222
+ border-color--hover: (
223
+ contrast-color: (
224
+ 'gray',
225
+ 50,
226
+ 0.15,
227
+ ),
228
+ ),
221
229
  button-color: (
222
230
  contrast-color: (
223
231
  'gray',
@@ -29,7 +29,7 @@
29
29
  /// @prop {Map} button-background [color: ('surface')] - The color used for the button background.
30
30
  /// @prop {Map} button-hover-background [color: ('gray', 100)] - The color used for the button background on hover.
31
31
  /// @prop {Color} border-color [transparent] - The color used for the tab items bottom border.
32
- /// @prop {Color} border-color--hover [transparent] - The color used for the tab items bottom border on hover.
32
+ /// @prop {Color} border-color--hover [transparent] - The color used for the tab items bottom border on hover/focus.
33
33
  /// @prop {Map} tab-ripple-color [color: ('gray', 100)] - The color used for the button background.
34
34
  /// @prop {Map} button-ripple-color [color: ('gray', 100)] - The color used for the button background on hover.
35
35
  /// @prop {List} border-radius [(rem(0), rem(0), rem(6px))] - The border radius used for tabs.
@@ -274,7 +274,7 @@ $fluent-tabs: extend(
274
274
  /// @prop {map} item-hover-background [color: ('surface')] - The background used for the tabs on hover.
275
275
  /// @prop {map} item-active-background [color: ('surface')] - The color used for the active/focused tab background.
276
276
  /// @prop {map} border-color [color: ('gray', 300)] - The color used for the tab items border.
277
- /// @prop {map} border-color--hover [color: ('gray', 200)] - The color used for the tab items border on hover.
277
+ /// @prop {map} border-color--hover [color: ('gray', 200)] - The color used for the tab items border on hover/focus.
278
278
  /// @prop {List} border-radius [(rem(4px), rem(0), rem(6px))] - The border radius used for tabs.
279
279
  /// @requires {Map} $light-tabs
280
280
  $bootstrap-tabs: extend(
@@ -398,6 +398,7 @@ $bootstrap-tabs: extend(
398
398
  /// @prop {Map} item-disabled-icon-color [color: ('gray', 900, .2)] - The color used for the disabled tab icon.
399
399
  /// @prop {Map} indicator-color [color: ('primary', 400)] - The color used for the tabs borders.
400
400
  /// @prop {Map} border-color [color: ('gray', 900, .15)] - The color used for the tab items bottom border.
401
+ /// @prop {Map} border-color--hover [color: ('gray', 900, .15)] - The color used for the tab items bottom border on hover/focus.
401
402
  /// @prop {Color} button-background [transparent] - The color used for the button background.
402
403
  /// @prop {Map} button-hover-background [color: ('gray', 900, .05)] - The color used for the button background on hover.
403
404
  /// @prop {Map} button-color [color: ('gray', 600)] - The color used for the button icon/text color.
@@ -468,6 +469,13 @@ $indigo-tabs: extend(
468
469
  0.15,
469
470
  ),
470
471
  ),
472
+ border-color--hover: (
473
+ color: (
474
+ 'gray',
475
+ 900,
476
+ 0.15,
477
+ ),
478
+ ),
471
479
  button-background: transparent,
472
480
  button-hover-background: (
473
481
  color: (