@progress/kendo-theme-fluent 7.3.0-dev.1 → 8.0.0-dev.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.
@@ -1,4 +1,7 @@
1
- @use "../scss/index.scss" as kendo-theme;
1
+ @use "../scss/index.scss" as kendo-theme with (
2
+ $kendo-enable-color-system: true,
3
+
4
+ );
2
5
 
3
6
  @include kendo-theme.config();
4
7
  @include kendo-theme.styles();
@@ -3,7 +3,7 @@
3
3
  "name": "All",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "7.3.0-dev.1",
6
+ "version": "8.0.0-dev.0",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -13,5 +13,16 @@
13
13
  "#424242"
14
14
  ],
15
15
  "components": [],
16
- "groups": []
16
+ "groups": [
17
+ {
18
+ "name": "New color system",
19
+ "colorSystem": {
20
+ "kendo-enable-color-system": {
21
+ "name": "New color system",
22
+ "type": "boolean",
23
+ "value": true
24
+ }
25
+ }
26
+ }
27
+ ]
17
28
  }
@@ -3,7 +3,7 @@
3
3
  "name": "Fluent Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "7.3.0-dev.1",
6
+ "version": "8.0.0-dev.0",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -13,5 +13,16 @@
13
13
  "#424242"
14
14
  ],
15
15
  "components": [],
16
- "groups": []
16
+ "groups": [
17
+ {
18
+ "name": "New color system",
19
+ "colorSystem": {
20
+ "kendo-enable-color-system": {
21
+ "name": "New color system",
22
+ "type": "boolean",
23
+ "value": true
24
+ }
25
+ }
26
+ }
27
+ ]
17
28
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-fluent",
3
3
  "description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
4
- "version": "7.3.0-dev.1",
4
+ "version": "8.0.0-dev.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -53,12 +53,12 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@progress/kendo-svg-icons": "2.1.0",
56
- "@progress/kendo-theme-core": "7.3.0-dev.1",
57
- "@progress/kendo-theme-utils": "7.3.0-dev.1"
56
+ "@progress/kendo-theme-core": "8.0.0-dev.0",
57
+ "@progress/kendo-theme-utils": "8.0.0-dev.0"
58
58
  },
59
59
  "directories": {
60
60
  "doc": "docs",
61
61
  "lib": "lib"
62
62
  },
63
- "gitHead": "dd6bd98014ab25b166cbb4b2f715a81805644168"
63
+ "gitHead": "82fa9745206aad68ed9f5a6d8c11d84dbb70c20c"
64
64
  }
@@ -3,7 +3,7 @@
3
3
  @if(core.$kendo-enable-color-system) {
4
4
  core.$kendo-body-bg: core.k-color( app-surface );
5
5
  core.$kendo-body-text: core.k-color( on-app-surface );
6
- core.$kendo-component-bg: core.$kendo-body-bg;
6
+ core.$kendo-component-bg: core.k-color( surface-alt );
7
7
  core.$kendo-component-text: core.$kendo-body-text;
8
8
  core.$kendo-component-border: color-mix(in srgb, core.k-color( border ) 16%, transparent);
9
9
  core.$kendo-hover-bg: core.k-color( base-hover );
@@ -5,7 +5,7 @@
5
5
  @forward "./palettes";
6
6
 
7
7
  // Config
8
- $kendo-enable-color-system: false !default;
8
+ $kendo-enable-color-system: true !default;
9
9
 
10
10
  // Colors
11
11
  $_default-colors: (
@@ -60,7 +60,6 @@
60
60
  .k-input-button {
61
61
  color: inherit;
62
62
  background: none;
63
- border-color: transparent;
64
63
  }
65
64
  }
66
65
  }