@progress/kendo-theme-classic 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 +16 -4
- package/dist/all.scss +74 -4
- 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/calendar/_variables.scss +1 -1
- package/scss/pdf-viewer/_index.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -18426,8 +18426,8 @@ kendo-label > .k-label {
|
|
|
18426
18426
|
.k-calendar-view {
|
|
18427
18427
|
margin: auto;
|
|
18428
18428
|
padding: 0 4px;
|
|
18429
|
-
width:
|
|
18430
|
-
inline-size: var(--INTERNAL--kendo-calendar-view-width,
|
|
18429
|
+
width: 256px;
|
|
18430
|
+
inline-size: var(--INTERNAL--kendo-calendar-view-width, 256px);
|
|
18431
18431
|
min-height: 224px;
|
|
18432
18432
|
box-sizing: content-box;
|
|
18433
18433
|
gap: 16px;
|
|
@@ -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 {
|
|
@@ -28393,6 +28396,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28393
28396
|
user-select: none;
|
|
28394
28397
|
position: absolute;
|
|
28395
28398
|
z-index: 2;
|
|
28399
|
+
overflow: hidden;
|
|
28396
28400
|
}
|
|
28397
28401
|
|
|
28398
28402
|
.k-spreadsheet-overflow {
|
|
@@ -28563,6 +28567,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28563
28567
|
position: relative;
|
|
28564
28568
|
}
|
|
28565
28569
|
|
|
28570
|
+
.k-spreadsheet-disabled-mask {
|
|
28571
|
+
position: absolute;
|
|
28572
|
+
}
|
|
28573
|
+
|
|
28566
28574
|
.k-spreadsheet .k-selection-wrapper {
|
|
28567
28575
|
position: relative;
|
|
28568
28576
|
cursor: cell;
|
|
@@ -29080,6 +29088,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29080
29088
|
background-color: #ffffff;
|
|
29081
29089
|
}
|
|
29082
29090
|
|
|
29091
|
+
.k-spreadsheet-disabled-mask {
|
|
29092
|
+
background-color: #ffffff;
|
|
29093
|
+
}
|
|
29094
|
+
|
|
29083
29095
|
.k-spreadsheet .k-selection-full,
|
|
29084
29096
|
.k-spreadsheet .k-selection-partial {
|
|
29085
29097
|
background-color: rgba(243, 88, 0, 0.25);
|
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
|
}
|
|
@@ -17427,7 +17485,7 @@ $calendar-caption-font-size: null !default;
|
|
|
17427
17485
|
$calendar-caption-line-height: null !default;
|
|
17428
17486
|
$calendar-caption-font-weight: bold !default;
|
|
17429
17487
|
|
|
17430
|
-
$calendar-view-width: ($calendar-cell-size *
|
|
17488
|
+
$calendar-view-width: ($calendar-cell-size * 8) !default;
|
|
17431
17489
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
17432
17490
|
$calendar-view-gap: k-map-get( $spacing, 4 ) !default;
|
|
17433
17491
|
|
|
@@ -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;
|
|
@@ -32406,6 +32467,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32406
32467
|
user-select: none;
|
|
32407
32468
|
position: absolute;
|
|
32408
32469
|
z-index: 2;
|
|
32470
|
+
overflow: hidden;
|
|
32409
32471
|
}
|
|
32410
32472
|
.k-spreadsheet-overflow {
|
|
32411
32473
|
position: absolute;
|
|
@@ -32565,6 +32627,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32565
32627
|
position: relative;
|
|
32566
32628
|
}
|
|
32567
32629
|
|
|
32630
|
+
.k-spreadsheet-disabled-mask {
|
|
32631
|
+
position: absolute;
|
|
32632
|
+
}
|
|
32568
32633
|
|
|
32569
32634
|
// Selection
|
|
32570
32635
|
.k-spreadsheet .k-selection-wrapper {
|
|
@@ -33105,7 +33170,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33105
33170
|
.k-spreadsheet-merged-cell {
|
|
33106
33171
|
background-color: $spreadsheet-bg;
|
|
33107
33172
|
}
|
|
33108
|
-
|
|
33173
|
+
.k-spreadsheet-disabled-mask {
|
|
33174
|
+
background-color: $spreadsheet-bg;
|
|
33175
|
+
}
|
|
33109
33176
|
|
|
33110
33177
|
// Selection
|
|
33111
33178
|
.k-spreadsheet .k-selection-full,
|
|
@@ -41353,6 +41420,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
41353
41420
|
// #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
|
|
41354
41421
|
// File already imported_once. Skipping output.
|
|
41355
41422
|
// #endregion
|
|
41423
|
+
// #region @import "../utils/_index.scss"; -> packages/classic/scss/utils/_index.scss
|
|
41424
|
+
// File already imported_once. Skipping output.
|
|
41425
|
+
// #endregion
|
|
41356
41426
|
// #region @import "../button/_variables.scss"; -> packages/classic/scss/button/_variables.scss
|
|
41357
41427
|
// File already imported_once. Skipping output.
|
|
41358
41428
|
// #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.1-dev.
|
|
4
|
+
"version": "5.9.1-dev.2",
|
|
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.1-dev.
|
|
47
|
-
"@progress/kendo-theme-default": "^5.9.1-dev.
|
|
48
|
+
"@progress/kendo-theme-core": "^5.9.1-dev.2",
|
|
49
|
+
"@progress/kendo-theme-default": "^5.9.1-dev.2"
|
|
48
50
|
},
|
|
49
51
|
"devDependencies": {
|
|
50
52
|
"sass-build": "^1.0.0"
|
|
51
53
|
},
|
|
52
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "b6b186f9fb09b89d7b2468e2786165e1c5c62ec2"
|
|
53
55
|
}
|
|
@@ -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 *
|
|
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
|
|