igniteui-theming 23.2.0 → 23.2.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": "23.2.0",
3
+ "version": "23.2.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": {
@@ -107,7 +107,6 @@ $material-grid-toolbar: extend(
107
107
  /// Generates a fluent grid-toolbar schema.
108
108
  /// @type {Map}
109
109
  /// @prop {Map} background-color [color: 'surface'] - The toolbar background color.
110
- /// @prop {Map} title-text-color [color: ('gray', 700)] - The toolbar title text color.
111
110
  /// @requires {Map} $light-grid-toolbar
112
111
  $fluent-grid-toolbar: extend(
113
112
  $light-grid-toolbar,
@@ -116,13 +115,6 @@ $fluent-grid-toolbar: extend(
116
115
  color: 'surface',
117
116
  ),
118
117
 
119
- title-text-color: (
120
- color: (
121
- 'gray',
122
- 700,
123
- ),
124
- ),
125
-
126
118
  _meta: (
127
119
  theme: 'fluent',
128
120
  variant: 'light',
@@ -132,18 +124,11 @@ $fluent-grid-toolbar: extend(
132
124
 
133
125
  /// Generates a bootstrap grid-toolbar schema.
134
126
  /// @type {Map}
135
- /// @prop {Map} title-text-color [color: ('gray', 600)] - The toolbar title text color.
136
127
  /// @prop {Map} border-color [color: ('gray', 100)] - The toolbar border-bottom color.
137
128
  /// @requires {Map} $light-grid-toolbar
138
129
  $bootstrap-grid-toolbar: extend(
139
130
  $light-grid-toolbar,
140
131
  (
141
- title-text-color: (
142
- color: (
143
- 'gray',
144
- 600,
145
- ),
146
- ),
147
132
  border-color: (
148
133
  color: (
149
134
  'gray',