igniteui-theming 19.1.0 → 19.1.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": "19.1.0",
3
+ "version": "19.1.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": {
@@ -70,6 +70,7 @@
70
70
  "sass": "./sass/_functions.scss"
71
71
  },
72
72
  "./sass/**/*.*": "./sass/**/*.*",
73
+ "./tailwind/*": "./tailwind/*",
73
74
  "./json/colors/meta/multipliers.json": "./json/colors/meta/multipliers.json",
74
75
  "./json/colors/meta/palette.json": "./json/colors/meta/palette.json",
75
76
  "./json/colors/presets/palettes.json": "./json/colors/presets/palettes.json",
@@ -61,6 +61,7 @@
61
61
  @use './tree' as *;
62
62
  @use './validator' as *;
63
63
  @use './watermark' as *;
64
+ @use './file-input' as *;
64
65
 
65
66
  /// Used to create material component themes.
66
67
  /// Use in combination with dark palettes.
@@ -124,6 +125,7 @@ $dark-material-schema: (
124
125
  tree: $dark-material-tree,
125
126
  validator: $dark-material-validator,
126
127
  watermark: $dark-material-watermark,
128
+ file-input: $dark-material-file-input,
127
129
  _meta: (
128
130
  theme: 'material',
129
131
  variant: 'dark',
@@ -192,6 +194,7 @@ $dark-fluent-schema: (
192
194
  tree: $dark-fluent-tree,
193
195
  validator: $dark-fluent-validator,
194
196
  watermark: $dark-fluent-watermark,
197
+ file-input: $dark-fluent-file-input,
195
198
  _meta: (
196
199
  theme: 'fluent',
197
200
  variant: 'dark',
@@ -260,6 +263,7 @@ $dark-bootstrap-schema: (
260
263
  tree: $dark-bootstrap-tree,
261
264
  validator: $dark-bootstrap-validator,
262
265
  watermark: $dark-bootstrap-watermark,
266
+ file-input: $dark-bootstrap-file-input,
263
267
  _meta: (
264
268
  theme: 'bootstrap',
265
269
  variant: 'dark',
@@ -328,6 +332,7 @@ $dark-indigo-schema: (
328
332
  tree: $dark-indigo-tree,
329
333
  validator: $dark-indigo-validator,
330
334
  watermark: $dark-indigo-watermark,
335
+ file-input: $dark-indigo-file-input,
331
336
  _meta: (
332
337
  theme: 'indigo',
333
338
  variant: 'dark',
@@ -61,6 +61,7 @@
61
61
  @use './tree' as *;
62
62
  @use './validator' as *;
63
63
  @use './watermark' as *;
64
+ @use './file-input' as *;
64
65
 
65
66
  /// Used to create material component themes.
66
67
  /// Use in combination with light palettes.
@@ -124,6 +125,7 @@ $light-material-schema: (
124
125
  tree: $material-tree,
125
126
  validator: $material-validator,
126
127
  watermark: $material-watermark,
128
+ file-input: $material-file-input,
127
129
  _meta: (
128
130
  theme: 'material',
129
131
  variant: 'light',
@@ -192,6 +194,7 @@ $light-fluent-schema: (
192
194
  tree: $fluent-tree,
193
195
  validator: $fluent-validator,
194
196
  watermark: $fluent-watermark,
197
+ file-input: $fluent-file-input,
195
198
  _meta: (
196
199
  theme: 'fluent',
197
200
  variant: 'light',
@@ -260,6 +263,7 @@ $light-bootstrap-schema: (
260
263
  tree: $bootstrap-tree,
261
264
  validator: $bootstrap-validator,
262
265
  watermark: $bootstrap-watermark,
266
+ file-input: $bootstrap-file-input,
263
267
  _meta: (
264
268
  theme: 'bootstrap',
265
269
  variant: 'light',
@@ -328,6 +332,7 @@ $light-indigo-schema: (
328
332
  tree: $indigo-tree,
329
333
  validator: $indigo-validator,
330
334
  watermark: $indigo-watermark,
335
+ file-input: $indigo-file-input,
331
336
  _meta: (
332
337
  theme: 'indigo',
333
338
  variant: 'light',