@progress/kendo-theme-fluent 5.9.0 → 5.9.1-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 CHANGED
@@ -30144,8 +30144,8 @@ kendo-toolbar-renderer {
30144
30144
  .k-actionsheet-container {
30145
30145
  width: 100%;
30146
30146
  height: 100%;
30147
- max-width: max(100%, 100vw);
30148
- max-height: max(100%, 100vh);
30147
+ max-width: clamp(100vw, 100%, 100%);
30148
+ max-height: clamp(100vh, 100%, 100%);
30149
30149
  position: fixed;
30150
30150
  top: 0;
30151
30151
  left: 0;
@@ -30271,6 +30271,8 @@ kendo-toolbar-renderer {
30271
30271
  .k-actionsheet-item {
30272
30272
  padding: 0;
30273
30273
  box-sizing: border-box;
30274
+ display: flex;
30275
+ flex-flow: row nowrap;
30274
30276
  }
30275
30277
  .k-actionsheet-item:focus, .k-actionsheet-item.k-focus {
30276
30278
  outline-width: var(--kendo-actionsheet-item-focus-outline-width, 1px);
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": "5.9.0",
4
+ "version": "5.9.1-dev.1",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -40,15 +40,17 @@
40
40
  "scripts": {
41
41
  "build": "sass-build",
42
42
  "sass": "sass-build",
43
+ "nuget-pack": "jq '.version' package.json | xargs nuget pack package.nuspec -Version",
44
+ "nuget-push": "nuget push *.nupkg -ApiKey $NUGET_API_KEY -Source $NUGET_FEED -SkipDuplicate",
43
45
  "prepublishOnly": "node ../../scripts/themes-prepublish.js",
44
46
  "postpublish": "echo 'no postpublish for the Fluent theme'"
45
47
  },
46
48
  "dependencies": {
47
49
  "@progress/kendo-font-icons": "^0.6.0",
48
- "@progress/kendo-theme-utils": "^5.9.0"
50
+ "@progress/kendo-theme-utils": "^5.9.1-dev.1"
49
51
  },
50
52
  "devDependencies": {
51
53
  "sass-build": "^1.0.0"
52
54
  },
53
- "gitHead": "ac592f3dc96e799eb8a5da3513542a68a7984458"
55
+ "gitHead": "569d0ac17d7dc5b1327bb9ffdda3c96d1ad97b3d"
54
56
  }
@@ -5,8 +5,9 @@
5
5
  .k-actionsheet-container {
6
6
  width: 100%;
7
7
  height: 100%;
8
- max-width: unquote("max(100%, 100vw)");
9
- max-height: unquote("max(100%, 100vh)");
8
+ // TODO: use max when we drop less themes
9
+ max-width: clamp(100vw, 100%, 100%);
10
+ max-height: clamp(100vh, 100%, 100%);
10
11
  position: fixed;
11
12
  top: 0;
12
13
  left: 0;
@@ -159,6 +160,8 @@
159
160
  .k-actionsheet-item {
160
161
  padding: 0;
161
162
  box-sizing: border-box;
163
+ display: flex;
164
+ flex-flow: row nowrap;
162
165
 
163
166
  &:focus,
164
167
  &.k-focus {