@progress/kendo-theme-fluent 6.0.2-dev.0 → 6.0.3

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.
@@ -3,7 +3,7 @@
3
3
  "name": "All",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "6.0.2-dev.0",
6
+ "version": "6.0.3",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Fluent Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "6.0.2-dev.0",
6
+ "version": "6.0.3",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
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": "6.0.2-dev.0",
4
+ "version": "6.0.3",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -49,9 +49,9 @@
49
49
  "postpublish": "echo 'no postpublish for the Fluent theme'"
50
50
  },
51
51
  "dependencies": {
52
- "@progress/kendo-font-icons": "^1.0.0",
53
- "@progress/kendo-theme-core": "^6.0.2-dev.0",
54
- "@progress/kendo-theme-utils": "^6.0.2-dev.0"
52
+ "@progress/kendo-font-icons": "1.2.0",
53
+ "@progress/kendo-theme-core": "^6.0.3",
54
+ "@progress/kendo-theme-utils": "^6.0.3"
55
55
  },
56
- "gitHead": "91f15518ccbc2f5757e4cbc179917c994b7afbe6"
56
+ "gitHead": "3957a3b72c082bc29d023ed9c3cb9c7a5b5c5e59"
57
57
  }
@@ -91,7 +91,7 @@
91
91
  --INTERNAL--kendo-button-padding-x: var( --kendo-icon-button-#{$size}-padding-y, #{$_padding-y} );
92
92
  --INTERNAL--kendo-button-padding-y: var( --kendo-icon-button-#{$size}-padding-y, #{$_padding-y} );
93
93
 
94
- > .k-button-icon {
94
+ .k-button-icon {
95
95
  min-width: calc( #{$_font-size} * #{$_line-height} );
96
96
  min-height: calc( #{$_font-size} * #{$_line-height} );
97
97
  display: inline-flex;
@@ -59,6 +59,14 @@ $kendo-font-size-md: $kendo-font-size !default;
59
59
  $kendo-font-size-lg: 16px !default;
60
60
  $kendo-font-size-xl: 20px !default;
61
61
 
62
+ $kendo-font-sizes: (
63
+ xs: $kendo-font-size-xs,
64
+ sm: $kendo-font-size-sm,
65
+ md: $kendo-font-size-md,
66
+ lg: $kendo-font-size-lg,
67
+ xl: $kendo-font-size-xl
68
+ ) !default;
69
+
62
70
 
63
71
  /// Font family across all components.
64
72
  $kendo-font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif !default;
@@ -88,6 +96,17 @@ $kendo-border-radius-sm: math.div( $kendo-border-radius, 2 ) !default;
88
96
  $kendo-border-radius-md: $kendo-border-radius !default;
89
97
  $kendo-border-radius-lg: ( $kendo-border-radius * 2 ) !default;
90
98
 
99
+ $kendo-border-radii: (
100
+ DEFAULT: var( --kendo-border-radius-md, $kendo-border-radius-md ),
101
+ 0: 0,
102
+ sm: var( --kendo-border-radius-sm, $kendo-border-radius-sm ),
103
+ md: var( --kendo-border-radius-md, $kendo-border-radius-md ),
104
+ lg: var( --kendo-border-radius-lg, $kendo-border-radius-lg ),
105
+ none: 0,
106
+ full: 9999px
107
+ ) !default;
108
+
109
+
91
110
  // Metrics
92
111
  $kendo-padding-x: map.get( $kendo-spacing, 2 ) !default;
93
112
  $kendo-padding-y: map.get( $kendo-spacing, 1 ) !default;
@@ -7,6 +7,8 @@
7
7
 
8
8
  @mixin kendo-icon--layout() {
9
9
 
10
+ @include index.kendo-icon-styles();
11
+
10
12
  // kendo-icon-wrapper component
11
13
  .k-icon-wrapper-host {
12
14
  display: contents;
@@ -1,7 +1,9 @@
1
- @use "./_variables.scss" as *;
1
+ @use "../core/_variables.scss" as *;
2
2
 
3
3
  @use "@progress/kendo-theme-utils/scss/all.scss" with (
4
- $kendo-utils-border-radius: $kendo-utils-border-radius
4
+ $kendo-spacing: $kendo-spacing,
5
+ $kendo-border-radii: $kendo-border-radii,
6
+ $kendo-font-sizes: $kendo-font-sizes
5
7
  );
6
8
 
7
9
  @mixin kendo-utils--layout() {}
@@ -1,13 +0,0 @@
1
- @use "../core/" as *;
2
-
3
- /// Border radius configuration of the theme utils.
4
- /// @group utils
5
- $kendo-utils-border-radius: (
6
- DEFAULT: var( --kendo-border-radius-md, $kendo-border-radius-md ),
7
- 0: 0,
8
- sm: var( --kendo-border-radius-sm, $kendo-border-radius-sm ),
9
- md: var( --kendo-border-radius-md, $kendo-border-radius-md ),
10
- lg: var( --kendo-border-radius-lg, $kendo-border-radius-lg ),
11
- none: 0,
12
- full: 9999px
13
- ) !default;