@progress/kendo-theme-classic 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/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/package.json +6 -4
- package/scss/pdf-viewer/_index.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -21730,8 +21730,8 @@ kendo-label > .k-label {
|
|
|
21730
21730
|
.k-actionsheet-container {
|
|
21731
21731
|
width: 100%;
|
|
21732
21732
|
height: 100%;
|
|
21733
|
-
max-width:
|
|
21734
|
-
max-height:
|
|
21733
|
+
max-width: clamp(100vw, 100%, 100%);
|
|
21734
|
+
max-height: clamp(100vh, 100%, 100%);
|
|
21735
21735
|
position: fixed;
|
|
21736
21736
|
top: 0;
|
|
21737
21737
|
left: 0;
|
|
@@ -21844,6 +21844,9 @@ kendo-label > .k-label {
|
|
|
21844
21844
|
.k-actionsheet-item {
|
|
21845
21845
|
padding: 0;
|
|
21846
21846
|
box-sizing: border-box;
|
|
21847
|
+
display: flex;
|
|
21848
|
+
flex-flow: row nowrap;
|
|
21849
|
+
outline: none;
|
|
21847
21850
|
}
|
|
21848
21851
|
|
|
21849
21852
|
.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/classic/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/classic/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
|
}
|
|
@@ -23233,8 +23291,8 @@ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
|
23233
23291
|
.k-actionsheet-container {
|
|
23234
23292
|
width: 100%;
|
|
23235
23293
|
height: 100%;
|
|
23236
|
-
max-width:
|
|
23237
|
-
max-height:
|
|
23294
|
+
max-width: clamp(100vw, 100%, 100%);
|
|
23295
|
+
max-height: clamp(100vh, 100%, 100%);
|
|
23238
23296
|
position: fixed;
|
|
23239
23297
|
top: 0;
|
|
23240
23298
|
left: 0;
|
|
@@ -23370,6 +23428,9 @@ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
|
23370
23428
|
.k-actionsheet-item {
|
|
23371
23429
|
padding: 0;
|
|
23372
23430
|
box-sizing: border-box;
|
|
23431
|
+
display: flex;
|
|
23432
|
+
flex-flow: row nowrap;
|
|
23433
|
+
outline: none;
|
|
23373
23434
|
}
|
|
23374
23435
|
.k-actionsheet-action {
|
|
23375
23436
|
margin: 0;
|
|
@@ -41353,6 +41414,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
41353
41414
|
// #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
|
|
41354
41415
|
// File already imported_once. Skipping output.
|
|
41355
41416
|
// #endregion
|
|
41417
|
+
// #region @import "../utils/_index.scss"; -> packages/classic/scss/utils/_index.scss
|
|
41418
|
+
// File already imported_once. Skipping output.
|
|
41419
|
+
// #endregion
|
|
41356
41420
|
// #region @import "../button/_variables.scss"; -> packages/classic/scss/button/_variables.scss
|
|
41357
41421
|
// File already imported_once. Skipping output.
|
|
41358
41422
|
// #endregion
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
4
|
-
"version": "5.9.
|
|
4
|
+
"version": "5.9.1-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -39,15 +39,17 @@
|
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "sass-build",
|
|
41
41
|
"sass": "sass-build",
|
|
42
|
+
"nuget-pack": "jq '.version' package.json | xargs nuget pack package.nuspec -Version",
|
|
43
|
+
"nuget-push": "nuget push *.nupkg -ApiKey $NUGET_API_KEY -Source $NUGET_FEED -SkipDuplicate",
|
|
42
44
|
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
43
45
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
44
46
|
},
|
|
45
47
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-theme-core": "^5.9.
|
|
47
|
-
"@progress/kendo-theme-default": "^5.9.
|
|
48
|
+
"@progress/kendo-theme-core": "^5.9.1-dev.1",
|
|
49
|
+
"@progress/kendo-theme-default": "^5.9.1-dev.1"
|
|
48
50
|
},
|
|
49
51
|
"devDependencies": {
|
|
50
52
|
"sass-build": "^1.0.0"
|
|
51
53
|
},
|
|
52
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "569d0ac17d7dc5b1327bb9ffdda3c96d1ad97b3d"
|
|
53
55
|
}
|