@progress/kendo-theme-material 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
@@ -19438,8 +19438,8 @@ kendo-label > .k-label {
19438
19438
  .k-calendar-view {
19439
19439
  margin: auto;
19440
19440
  padding: 0 4px;
19441
- width: 252px;
19442
- inline-size: var(--INTERNAL--kendo-calendar-view-width, 252px);
19441
+ width: 288px;
19442
+ inline-size: var(--INTERNAL--kendo-calendar-view-width, 288px);
19443
19443
  min-height: 252px;
19444
19444
  box-sizing: content-box;
19445
19445
  gap: 16px;
@@ -22769,8 +22769,8 @@ kendo-label > .k-label {
22769
22769
  .k-actionsheet-container {
22770
22770
  width: 100%;
22771
22771
  height: 100%;
22772
- max-width: max(100%, 100vw);
22773
- max-height: max(100%, 100vh);
22772
+ max-width: clamp(100vw, 100%, 100%);
22773
+ max-height: clamp(100vh, 100%, 100%);
22774
22774
  position: fixed;
22775
22775
  top: 0;
22776
22776
  left: 0;
@@ -22883,6 +22883,9 @@ kendo-label > .k-label {
22883
22883
  .k-actionsheet-item {
22884
22884
  padding: 0;
22885
22885
  box-sizing: border-box;
22886
+ display: flex;
22887
+ flex-flow: row nowrap;
22888
+ outline: none;
22886
22889
  }
22887
22890
 
22888
22891
  .k-actionsheet-action {
@@ -29927,6 +29930,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
29927
29930
  user-select: none;
29928
29931
  position: absolute;
29929
29932
  z-index: 2;
29933
+ overflow: hidden;
29930
29934
  }
29931
29935
 
29932
29936
  .k-spreadsheet-overflow {
@@ -30097,6 +30101,10 @@ thead.k-grid-header > tr:not(:only-child) > th {
30097
30101
  position: relative;
30098
30102
  }
30099
30103
 
30104
+ .k-spreadsheet-disabled-mask {
30105
+ position: absolute;
30106
+ }
30107
+
30100
30108
  .k-spreadsheet .k-selection-wrapper {
30101
30109
  position: relative;
30102
30110
  cursor: cell;
package/dist/all.scss CHANGED
@@ -442,6 +442,46 @@ $kendo-color-level-step: 8% !default;
442
442
  @return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
443
443
  }
444
444
 
445
+ // #endregion
446
+ // #region @import "_custom-properties.import.scss"; -> packages/material/node_modules/@progress/kendo-theme-core/scss/functions/_custom-properties.import.scss
447
+ @function k-var( $prefix: kendo-, $var: null, $fallback: null ) {
448
+ $_prefix: $prefix;
449
+ $_var: $var;
450
+ $_fallback: $fallback;
451
+
452
+ @if ( k-string-index( $prefix, "--" ) == 1 ) {
453
+ $_prefix: "";
454
+ $_var: k-string-slice( $prefix, 3 );
455
+ $_fallback: $var;
456
+ }
457
+
458
+ @if not $_var {
459
+ @return null;
460
+ }
461
+
462
+ @if $_prefix == null {
463
+ $_prefix: "";
464
+ }
465
+
466
+ @if ($_fallback != null and $_fallback != "") {
467
+ @return var( --#{$_prefix}#{$_var}, #{$_fallback} );
468
+ }
469
+
470
+ @return var( --#{$_prefix}#{$_var} );
471
+ }
472
+
473
+ @function k-vars( $prefix: kendo-, $vars... ) {
474
+ $vars: k-list-reverse( $vars );
475
+ $result: null;
476
+
477
+ // @debug $prefix;
478
+ @each $var in $vars {
479
+ $result: k-var( $prefix, $var, $result );
480
+ }
481
+
482
+ @return $result;
483
+ }
484
+
445
485
  // #endregion
446
486
  // #region @import "_list.import.scss"; -> packages/material/node_modules/@progress/kendo-theme-core/scss/functions/_list.import.scss
447
487
  @function k-list-append( $list, $val, $separator: auto ) {
@@ -468,6 +508,24 @@ $kendo-color-level-step: 8% !default;
468
508
  @return nth( $list, $n );
469
509
  }
470
510
 
511
+ @function k-list-reverse( $list: null ) {
512
+ $result: ();
513
+
514
+ @if ($list) {
515
+ $len: k-list-length( $list );
516
+
517
+ @for $i from $len through 1 {
518
+ $result: k-list-append( $result, k-list-nth( $list, $i ) );
519
+ }
520
+
521
+ @return $result;
522
+ }
523
+
524
+ // sass-lint:disable-block no-warn
525
+ @warn "No list passed.";
526
+ @return $result;
527
+ }
528
+
471
529
  @function k-list-separator( $list ) {
472
530
  @return list-separator( $list );
473
531
  }
@@ -19169,7 +19227,7 @@ $calendar-caption-font-size: null !default;
19169
19227
  $calendar-caption-line-height: null !default;
19170
19228
  $calendar-caption-font-weight: bold !default;
19171
19229
 
19172
- $calendar-view-width: ($calendar-cell-size * 7) !default;
19230
+ $calendar-view-width: ($calendar-cell-size * 8) !default;
19173
19231
  $calendar-view-height: ($calendar-cell-size * 7) !default;
19174
19232
  $calendar-view-gap: k-map-get( $spacing, 4 ) !default;
19175
19233
 
@@ -25171,8 +25229,8 @@ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
25171
25229
  .k-actionsheet-container {
25172
25230
  width: 100%;
25173
25231
  height: 100%;
25174
- max-width: unquote("max(100%, 100vw)");
25175
- max-height: unquote("max(100%, 100vh)");
25232
+ max-width: clamp(100vw, 100%, 100%);
25233
+ max-height: clamp(100vh, 100%, 100%);
25176
25234
  position: fixed;
25177
25235
  top: 0;
25178
25236
  left: 0;
@@ -25308,6 +25366,9 @@ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
25308
25366
  .k-actionsheet-item {
25309
25367
  padding: 0;
25310
25368
  box-sizing: border-box;
25369
+ display: flex;
25370
+ flex-flow: row nowrap;
25371
+ outline: none;
25311
25372
  }
25312
25373
  .k-actionsheet-action {
25313
25374
  margin: 0;
@@ -34908,6 +34969,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34908
34969
  user-select: none;
34909
34970
  position: absolute;
34910
34971
  z-index: 2;
34972
+ overflow: hidden;
34911
34973
  }
34912
34974
  .k-spreadsheet-overflow {
34913
34975
  position: absolute;
@@ -35067,6 +35129,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35067
35129
  position: relative;
35068
35130
  }
35069
35131
 
35132
+ .k-spreadsheet-disabled-mask {
35133
+ position: absolute;
35134
+ }
35070
35135
 
35071
35136
  // Selection
35072
35137
  .k-spreadsheet .k-selection-wrapper {
@@ -44311,6 +44376,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
44311
44376
  // #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
44312
44377
  // File already imported_once. Skipping output.
44313
44378
  // #endregion
44379
+ // #region @import "../utils/_index.scss"; -> packages/material/scss/utils/_index.scss
44380
+ // File already imported_once. Skipping output.
44381
+ // #endregion
44314
44382
  // #region @import "../button/_variables.scss"; -> packages/material/scss/button/_variables.scss
44315
44383
  // File already imported_once. Skipping output.
44316
44384
  // #endregion
@@ -3,7 +3,7 @@
3
3
  "name": "Material Aqua Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#121212",
9
9
  "#212121",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Arctic",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Burnt Teal",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Dataviz v4",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#3f51b5",
9
9
  "#2196f3",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Eggplant",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Lime Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#121212",
9
9
  "#212121",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Lime",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Main Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#121212",
9
9
  "#212121",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Nova",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Pacific Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#121212",
9
9
  "#212121",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Pacific Light",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Sky Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#121212",
9
9
  "#212121",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Sky",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
@@ -3,7 +3,7 @@
3
3
  "name": "Material Smoke",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-material",
6
- "version": "5.9.1-dev.0",
6
+ "version": "5.9.1-dev.2",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e0e0e0",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-material",
3
3
  "description": "Material theme for Kendo UI",
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": [
@@ -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 material theme'"
45
47
  },
46
48
  "dependencies": {
47
- "@progress/kendo-theme-core": "^5.9.1-dev.0",
48
- "@progress/kendo-theme-default": "^5.9.1-dev.0"
49
+ "@progress/kendo-theme-core": "^5.9.1-dev.2",
50
+ "@progress/kendo-theme-default": "^5.9.1-dev.2"
49
51
  },
50
52
  "devDependencies": {
51
53
  "sass-build": "^1.0.0"
52
54
  },
53
- "gitHead": "5142573d2cab52d118015f12686449f974b66732"
55
+ "gitHead": "b6b186f9fb09b89d7b2468e2786165e1c5c62ec2"
54
56
  }
@@ -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: k-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";