@progress/kendo-theme-fluent 10.5.0 → 10.6.0-dev.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/dist/all.css +1 -1
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main.css +1 -1
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main-dark.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_layout.scss +9 -3
package/lib/swatches/all.json
CHANGED
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
|
+
"version": "10.6.0-dev.1",
|
|
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.
|
|
58
|
-
"@progress/kendo-theme-utils": "10.
|
|
57
|
+
"@progress/kendo-theme-core": "10.6.0-dev.1",
|
|
58
|
+
"@progress/kendo-theme-utils": "10.6.0-dev.1"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "ad221dc64d09d67b542d5aec44da07a8604904a3"
|
|
65
65
|
}
|
|
@@ -71,14 +71,17 @@
|
|
|
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.
|
|
75
74
|
display: flex;
|
|
76
|
-
flex-flow:
|
|
75
|
+
flex-flow: row nowrap;
|
|
77
76
|
|
|
78
77
|
.k-actionsheet-view {
|
|
79
78
|
display: flex;
|
|
80
79
|
flex-flow: column nowrap;
|
|
81
|
-
|
|
80
|
+
flex: 0 0 100%;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.k-actionsheet-view.k-actionsheet-view-animated {
|
|
84
|
+
transform: translateX(calc(-100% * (var(--kendo-actionsheet-view-current, 1) - 1)));
|
|
82
85
|
}
|
|
83
86
|
|
|
84
87
|
*,
|
|
@@ -407,6 +410,9 @@
|
|
|
407
410
|
transform: translateX( 50% );
|
|
408
411
|
}
|
|
409
412
|
}
|
|
413
|
+
:is([dir="rtl"], .k-rtl) .k-actionsheet-view.k-actionsheet-view-animated {
|
|
414
|
+
transform: translateX(calc(100% * (var(--kendo-actionsheet-view-current, 1) - 1)))
|
|
415
|
+
}
|
|
410
416
|
}
|
|
411
417
|
|
|
412
418
|
@mixin kendo-action-sheet--layout-jq() {
|