@progress/kendo-theme-default 5.9.1-dev.0 → 5.9.1-dev.2

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
@@ -18424,8 +18424,8 @@ kendo-label > .k-label {
18424
18424
  .k-calendar-view {
18425
18425
  margin: auto;
18426
18426
  padding: 0 4px;
18427
- width: 224px;
18428
- inline-size: var(--INTERNAL--kendo-calendar-view-width, 224px);
18427
+ width: 256px;
18428
+ inline-size: var(--INTERNAL--kendo-calendar-view-width, 256px);
18429
18429
  min-height: 224px;
18430
18430
  box-sizing: content-box;
18431
18431
  gap: 16px;
@@ -21718,8 +21718,8 @@ kendo-label > .k-label {
21718
21718
  .k-actionsheet-container {
21719
21719
  width: 100%;
21720
21720
  height: 100%;
21721
- max-width: max(100%, 100vw);
21722
- max-height: max(100%, 100vh);
21721
+ max-width: clamp(100vw, 100%, 100%);
21722
+ max-height: clamp(100vh, 100%, 100%);
21723
21723
  position: fixed;
21724
21724
  top: 0;
21725
21725
  left: 0;
@@ -21832,6 +21832,9 @@ kendo-label > .k-label {
21832
21832
  .k-actionsheet-item {
21833
21833
  padding: 0;
21834
21834
  box-sizing: border-box;
21835
+ display: flex;
21836
+ flex-flow: row nowrap;
21837
+ outline: none;
21835
21838
  }
21836
21839
 
21837
21840
  .k-actionsheet-action {
@@ -28380,6 +28383,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
28380
28383
  user-select: none;
28381
28384
  position: absolute;
28382
28385
  z-index: 2;
28386
+ overflow: hidden;
28383
28387
  }
28384
28388
 
28385
28389
  .k-spreadsheet-overflow {
@@ -28550,6 +28554,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
28550
28554
  position: relative;
28551
28555
  }
28552
28556
 
28557
+ .k-spreadsheet-disabled-mask {
28558
+ position: absolute;
28559
+ }
28560
+
28553
28561
  .k-spreadsheet .k-selection-wrapper {
28554
28562
  position: relative;
28555
28563
  cursor: cell;
@@ -29066,6 +29074,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
29066
29074
  background-color: #ffffff;
29067
29075
  }
29068
29076
 
29077
+ .k-spreadsheet-disabled-mask {
29078
+ background-color: #ffffff;
29079
+ }
29080
+
29069
29081
  .k-spreadsheet .k-selection-full,
29070
29082
  .k-spreadsheet .k-selection-partial {
29071
29083
  background-color: rgba(255, 99, 88, 0.25);
package/dist/all.scss CHANGED
@@ -16436,7 +16436,7 @@ $calendar-caption-font-size: null !default;
16436
16436
  $calendar-caption-line-height: null !default;
16437
16437
  $calendar-caption-font-weight: bold !default;
16438
16438
 
16439
- $calendar-view-width: ($calendar-cell-size * 7) !default;
16439
+ $calendar-view-width: ($calendar-cell-size * 8) !default;
16440
16440
  $calendar-view-height: ($calendar-cell-size * 7) !default;
16441
16441
  $calendar-view-gap: map-get( $spacing, 4 ) !default;
16442
16442
 
@@ -22123,8 +22123,8 @@ $adaptive-actionsheet-footer-padding-x: map-get( $spacing, 4 ) !default;
22123
22123
  .k-actionsheet-container {
22124
22124
  width: 100%;
22125
22125
  height: 100%;
22126
- max-width: unquote("max(100%, 100vw)");
22127
- max-height: unquote("max(100%, 100vh)");
22126
+ max-width: clamp(100vw, 100%, 100%);
22127
+ max-height: clamp(100vh, 100%, 100%);
22128
22128
  position: fixed;
22129
22129
  top: 0;
22130
22130
  left: 0;
@@ -22260,6 +22260,9 @@ $adaptive-actionsheet-footer-padding-x: map-get( $spacing, 4 ) !default;
22260
22260
  .k-actionsheet-item {
22261
22261
  padding: 0;
22262
22262
  box-sizing: border-box;
22263
+ display: flex;
22264
+ flex-flow: row nowrap;
22265
+ outline: none;
22263
22266
  }
22264
22267
  .k-actionsheet-action {
22265
22268
  margin: 0;
@@ -31171,6 +31174,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31171
31174
  user-select: none;
31172
31175
  position: absolute;
31173
31176
  z-index: 2;
31177
+ overflow: hidden;
31174
31178
  }
31175
31179
  .k-spreadsheet-overflow {
31176
31180
  position: absolute;
@@ -31330,6 +31334,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31330
31334
  position: relative;
31331
31335
  }
31332
31336
 
31337
+ .k-spreadsheet-disabled-mask {
31338
+ position: absolute;
31339
+ }
31333
31340
 
31334
31341
  // Selection
31335
31342
  .k-spreadsheet .k-selection-wrapper {
@@ -31867,7 +31874,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31867
31874
  .k-spreadsheet-merged-cell {
31868
31875
  background-color: $spreadsheet-bg;
31869
31876
  }
31870
-
31877
+ .k-spreadsheet-disabled-mask {
31878
+ background-color: $spreadsheet-bg;
31879
+ }
31871
31880
 
31872
31881
  // Selection
31873
31882
  .k-spreadsheet .k-selection-full,
@@ -40041,6 +40050,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
40041
40050
  // #region @import "../common/_index.scss"; -> packages/default/scss/common/_index.scss
40042
40051
  // File already imported_once. Skipping output.
40043
40052
  // #endregion
40053
+ // #region @import "../utils/_index.scss"; -> packages/default/scss/utils/_index.scss
40054
+ // File already imported_once. Skipping output.
40055
+ // #endregion
40044
40056
  // #region @import "../button/_variables.scss"; -> packages/default/scss/button/_variables.scss
40045
40057
  // File already imported_once. Skipping output.
40046
40058
  // #endregion
@@ -3,7 +3,7 @@
3
3
  "name": "Default Blue",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f5f5f5",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Dataviz v4",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ff6358",
9
9
  "#ffd246",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Green",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f5f5f5",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Main Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#151515",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f5f5f5",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Nordic",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#50686e",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Ocean Blue",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f5f5f5",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Orange",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f5f5f5",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Purple",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f5f5f5",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Turquoise",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f5f5f5",
@@ -3,7 +3,7 @@
3
3
  "name": "Default Urban",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-default",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e3eef4",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-default",
3
3
  "description": "SASS resources for the default Kendo UI theme",
4
- "version": "5.9.1-dev.0",
4
+ "version": "5.9.1-dev.2",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -38,11 +38,13 @@
38
38
  "scripts": {
39
39
  "build": "sass-build",
40
40
  "sass": "sass-build",
41
+ "nuget-pack": "jq '.version' package.json | xargs nuget pack package.nuspec -Version",
42
+ "nuget-push": "nuget push *.nupkg -ApiKey $NUGET_API_KEY -Source $NUGET_FEED -SkipDuplicate",
41
43
  "prepublishOnly": "node ../../scripts/themes-prepublish.js",
42
44
  "postpublish": "echo 'no postpublish for default theme'"
43
45
  },
44
46
  "devDependencies": {
45
47
  "sass-build": "^1.0.0"
46
48
  },
47
- "gitHead": "5142573d2cab52d118015f12686449f974b66732"
49
+ "gitHead": "b6b186f9fb09b89d7b2468e2786165e1c5c62ec2"
48
50
  }
@@ -4,8 +4,8 @@
4
4
  .k-actionsheet-container {
5
5
  width: 100%;
6
6
  height: 100%;
7
- max-width: unquote("max(100%, 100vw)");
8
- max-height: unquote("max(100%, 100vh)");
7
+ max-width: clamp(100vw, 100%, 100%);
8
+ max-height: clamp(100vh, 100%, 100%);
9
9
  position: fixed;
10
10
  top: 0;
11
11
  left: 0;
@@ -141,6 +141,9 @@
141
141
  .k-actionsheet-item {
142
142
  padding: 0;
143
143
  box-sizing: border-box;
144
+ display: flex;
145
+ flex-flow: row nowrap;
146
+ outline: none;
144
147
  }
145
148
  .k-actionsheet-action {
146
149
  margin: 0;
@@ -50,7 +50,7 @@ $calendar-caption-font-size: null !default;
50
50
  $calendar-caption-line-height: null !default;
51
51
  $calendar-caption-font-weight: bold !default;
52
52
 
53
- $calendar-view-width: ($calendar-cell-size * 7) !default;
53
+ $calendar-view-width: ($calendar-cell-size * 8) !default;
54
54
  $calendar-view-height: ($calendar-cell-size * 7) !default;
55
55
  $calendar-view-gap: map-get( $spacing, 4 ) !default;
56
56
 
@@ -3,6 +3,7 @@
3
3
 
4
4
  // Dependencies
5
5
  @import "../common/_index.scss";
6
+ @import "../utils/_index.scss";
6
7
  @import "../button/_variables.scss";
7
8
  @import "../combobox/_index.scss";
8
9
  @import "../toolbar/_index.scss";
@@ -273,6 +273,7 @@
273
273
  user-select: none;
274
274
  position: absolute;
275
275
  z-index: 2;
276
+ overflow: hidden;
276
277
  }
277
278
  .k-spreadsheet-overflow {
278
279
  position: absolute;
@@ -432,6 +433,9 @@
432
433
  position: relative;
433
434
  }
434
435
 
436
+ .k-spreadsheet-disabled-mask {
437
+ position: absolute;
438
+ }
435
439
 
436
440
  // Selection
437
441
  .k-spreadsheet .k-selection-wrapper {
@@ -52,7 +52,9 @@
52
52
  .k-spreadsheet-merged-cell {
53
53
  background-color: $spreadsheet-bg;
54
54
  }
55
-
55
+ .k-spreadsheet-disabled-mask {
56
+ background-color: $spreadsheet-bg;
57
+ }
56
58
 
57
59
  // Selection
58
60
  .k-spreadsheet .k-selection-full,