igniteui-theming 6.0.0-beta.9 → 6.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 +1 -1
- package/sass/color/presets/dark/_material.scss +1 -1
- package/sass/color/presets/light/_material.scss +1 -1
- package/sass/themes/schemas/components/dark/_calendar.scss +364 -170
- package/sass/themes/schemas/components/light/_button.scss +10 -10
- package/sass/themes/schemas/components/light/_calendar.scss +495 -367
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.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": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
/// @type Map
|
|
11
11
|
/// @name dark-material-palette
|
|
12
12
|
/// @prop {Color} primary [#09f] - The primary color
|
|
13
|
-
/// @prop {Color} secondary [#
|
|
13
|
+
/// @prop {Color} secondary [#df1b74] - The secondary color
|
|
14
14
|
/// @prop {Color} gray [#fff] - The gray color
|
|
15
15
|
/// @prop {Color} surface [#222] - The surface color
|
|
16
16
|
/// @prop {Color} info [#1377d5] - The info color
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
/// @type Map
|
|
11
11
|
/// @name light-material-palette
|
|
12
12
|
/// @prop {Color} primary [#09f] - The primary color
|
|
13
|
-
/// @prop {Color} secondary [#
|
|
13
|
+
/// @prop {Color} secondary [#df1b74] - The secondary color
|
|
14
14
|
/// @prop {Color} gray [#000] - The gray color
|
|
15
15
|
/// @prop {Color} surface [#fff] - The surface color
|
|
16
16
|
/// @prop {Color} info [#1377d5] - The info color
|