@progress/kendo-theme-material 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 +5 -2
- package/dist/all.scss +66 -2
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +6 -4
- package/scss/pdf-viewer/_index.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -22769,8 +22769,8 @@ kendo-label > .k-label {
|
|
|
22769
22769
|
.k-actionsheet-container {
|
|
22770
22770
|
width: 100%;
|
|
22771
22771
|
height: 100%;
|
|
22772
|
-
max-width:
|
|
22773
|
-
max-height:
|
|
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 {
|
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
|
}
|
|
@@ -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:
|
|
25175
|
-
max-height:
|
|
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;
|
|
@@ -44311,6 +44372,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
44311
44372
|
// #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
|
|
44312
44373
|
// File already imported_once. Skipping output.
|
|
44313
44374
|
// #endregion
|
|
44375
|
+
// #region @import "../utils/_index.scss"; -> packages/material/scss/utils/_index.scss
|
|
44376
|
+
// File already imported_once. Skipping output.
|
|
44377
|
+
// #endregion
|
|
44314
44378
|
// #region @import "../button/_variables.scss"; -> packages/material/scss/button/_variables.scss
|
|
44315
44379
|
// File already imported_once. Skipping output.
|
|
44316
44380
|
// #endregion
|
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.
|
|
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 material theme'"
|
|
45
47
|
},
|
|
46
48
|
"dependencies": {
|
|
47
|
-
"@progress/kendo-theme-core": "^5.9.
|
|
48
|
-
"@progress/kendo-theme-default": "^5.9.
|
|
49
|
+
"@progress/kendo-theme-core": "^5.9.1-dev.1",
|
|
50
|
+
"@progress/kendo-theme-default": "^5.9.1-dev.1"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"sass-build": "^1.0.0"
|
|
52
54
|
},
|
|
53
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "569d0ac17d7dc5b1327bb9ffdda3c96d1ad97b3d"
|
|
54
56
|
}
|