@progress/kendo-theme-fluent 10.4.1-dev.0 → 10.5.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.
@@ -3,7 +3,7 @@
3
3
  "name": "All",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "10.4.1-dev.0",
6
+ "version": "10.5.0",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Fluent Main Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "10.4.1-dev.0",
6
+ "version": "10.5.0",
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": "10.4.1-dev.0",
6
+ "version": "10.5.0",
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": "10.4.1-dev.0",
4
+ "version": "10.5.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -54,12 +54,12 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@progress/kendo-svg-icons": "^4.0.0",
57
- "@progress/kendo-theme-core": "10.4.1-dev.0",
58
- "@progress/kendo-theme-utils": "10.4.1-dev.0"
57
+ "@progress/kendo-theme-core": "10.5.0",
58
+ "@progress/kendo-theme-utils": "10.5.0"
59
59
  },
60
60
  "directories": {
61
61
  "doc": "docs",
62
62
  "lib": "lib"
63
63
  },
64
- "gitHead": "b65e64ad8c42ccf617f349737ce6bc85f812c7c7"
64
+ "gitHead": "58d0b8915db866838c442ac17fd2071424fe221b"
65
65
  }
@@ -71,9 +71,16 @@
71
71
  line-height: var( --kendo-actionsheet-line-height, #{$kendo-actionsheet-line-height} );
72
72
  overflow: hidden;
73
73
  position: relative;
74
+ // TODO: Remove once k-actionsheet-view is adopted in all suites.
74
75
  display: flex;
75
76
  flex-flow: column nowrap;
76
77
 
78
+ .k-actionsheet-view {
79
+ display: flex;
80
+ flex-flow: column nowrap;
81
+ height: 100%;
82
+ }
83
+
77
84
  *,
78
85
  *::before,
79
86
  *::after {
@@ -1,4 +1,5 @@
1
1
  @use "sass:map";
2
+ @use "../core/_index.scss" as *;
2
3
  @use "_variables.scss" as *;
3
4
 
4
5
  @mixin kendo-column-menu--layout-base() {
@@ -24,6 +25,28 @@
24
25
  }
25
26
  }
26
27
  }
28
+
29
+ .k-columnmenu-item-actions {
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: center;
33
+ gap: k-spacing(2);
34
+ margin-block: calc( k-spacing(1) * -1);
35
+ pointer-events: none;
36
+ }
37
+
38
+ .k-columnmenu-item-action {
39
+ display: flex;
40
+ align-items: center;
41
+ justify-content: center;
42
+ pointer-events: none;
43
+ padding: k-spacing(1);
44
+ }
45
+
46
+ .k-columnmenu-item-drag-action {
47
+ pointer-events: auto;
48
+ cursor: move;
49
+ }
27
50
  }
28
51
 
29
52
  @mixin kendo-column-menu--layout() {
@@ -1254,14 +1254,6 @@
1254
1254
  display: flex;
1255
1255
  align-items: center;
1256
1256
  }
1257
-
1258
- .k-columnmenu-drag-handle {
1259
- margin-inline-end: k-spacing(1.5);
1260
- display: inline-flex;
1261
- align-items: center;
1262
- justify-content: center;
1263
- cursor: move;
1264
- }
1265
1257
  }
1266
1258
  .k-column-menu-tabbed {
1267
1259
  border-radius: var( --kendo-tabstrip-item-border-radius, #{$kendo-tabstrip-item-border-radius} ) var( --kendo-tabstrip-item-border-radius, #{$kendo-tabstrip-item-border-radius} ) 0 0;
@@ -130,6 +130,11 @@
130
130
  column-gap: 0;
131
131
  }
132
132
 
133
+ .k-list-custom-value {
134
+ @extend .k-list-item !optional;
135
+ font-style: italic;
136
+ position: sticky;
137
+ }
133
138
 
134
139
  // List group item
135
140
  .k-list-group-item {
@@ -8,6 +8,7 @@
8
8
  position: absolute;
9
9
  overflow: hidden;
10
10
  z-index: 100;
11
+ outline: none;
11
12
 
12
13
  &-fixed {
13
14
  position: fixed;