@progress/kendo-theme-bootstrap 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 +12 -4
- package/dist/all.scss +71 -3
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.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
|
@@ -18539,8 +18539,8 @@ kendo-label > .k-label {
|
|
|
18539
18539
|
.k-calendar-view {
|
|
18540
18540
|
margin: auto;
|
|
18541
18541
|
padding: 0 0.25rem;
|
|
18542
|
-
width:
|
|
18543
|
-
inline-size: var(--INTERNAL--kendo-calendar-view-width,
|
|
18542
|
+
width: 304px;
|
|
18543
|
+
inline-size: var(--INTERNAL--kendo-calendar-view-width, 304px);
|
|
18544
18544
|
min-height: 266px;
|
|
18545
18545
|
box-sizing: content-box;
|
|
18546
18546
|
gap: 1rem;
|
|
@@ -21839,8 +21839,8 @@ kendo-label > .k-label {
|
|
|
21839
21839
|
.k-actionsheet-container {
|
|
21840
21840
|
width: 100%;
|
|
21841
21841
|
height: 100%;
|
|
21842
|
-
max-width:
|
|
21843
|
-
max-height:
|
|
21842
|
+
max-width: clamp(100vw, 100%, 100%);
|
|
21843
|
+
max-height: clamp(100vh, 100%, 100%);
|
|
21844
21844
|
position: fixed;
|
|
21845
21845
|
top: 0;
|
|
21846
21846
|
left: 0;
|
|
@@ -21953,6 +21953,9 @@ kendo-label > .k-label {
|
|
|
21953
21953
|
.k-actionsheet-item {
|
|
21954
21954
|
padding: 0;
|
|
21955
21955
|
box-sizing: border-box;
|
|
21956
|
+
display: flex;
|
|
21957
|
+
flex-flow: row nowrap;
|
|
21958
|
+
outline: none;
|
|
21956
21959
|
}
|
|
21957
21960
|
|
|
21958
21961
|
.k-actionsheet-action {
|
|
@@ -28628,6 +28631,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28628
28631
|
user-select: none;
|
|
28629
28632
|
position: absolute;
|
|
28630
28633
|
z-index: 2;
|
|
28634
|
+
overflow: hidden;
|
|
28631
28635
|
}
|
|
28632
28636
|
|
|
28633
28637
|
.k-spreadsheet-overflow {
|
|
@@ -28798,6 +28802,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28798
28802
|
position: relative;
|
|
28799
28803
|
}
|
|
28800
28804
|
|
|
28805
|
+
.k-spreadsheet-disabled-mask {
|
|
28806
|
+
position: absolute;
|
|
28807
|
+
}
|
|
28808
|
+
|
|
28801
28809
|
.k-spreadsheet .k-selection-wrapper {
|
|
28802
28810
|
position: relative;
|
|
28803
28811
|
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/bootstrap/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/bootstrap/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
|
}
|
|
@@ -19556,7 +19614,7 @@ $calendar-caption-font-size: null !default;
|
|
|
19556
19614
|
$calendar-caption-line-height: null !default;
|
|
19557
19615
|
$calendar-caption-font-weight: bold !default;
|
|
19558
19616
|
|
|
19559
|
-
$calendar-view-width: ($calendar-cell-size *
|
|
19617
|
+
$calendar-view-width: ($calendar-cell-size * 8) !default;
|
|
19560
19618
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
19561
19619
|
$calendar-view-gap: k-map-get( $spacing, 4 ) !default;
|
|
19562
19620
|
|
|
@@ -25386,8 +25444,8 @@ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
|
25386
25444
|
.k-actionsheet-container {
|
|
25387
25445
|
width: 100%;
|
|
25388
25446
|
height: 100%;
|
|
25389
|
-
max-width:
|
|
25390
|
-
max-height:
|
|
25447
|
+
max-width: clamp(100vw, 100%, 100%);
|
|
25448
|
+
max-height: clamp(100vh, 100%, 100%);
|
|
25391
25449
|
position: fixed;
|
|
25392
25450
|
top: 0;
|
|
25393
25451
|
left: 0;
|
|
@@ -25523,6 +25581,9 @@ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
|
25523
25581
|
.k-actionsheet-item {
|
|
25524
25582
|
padding: 0;
|
|
25525
25583
|
box-sizing: border-box;
|
|
25584
|
+
display: flex;
|
|
25585
|
+
flex-flow: row nowrap;
|
|
25586
|
+
outline: none;
|
|
25526
25587
|
}
|
|
25527
25588
|
.k-actionsheet-action {
|
|
25528
25589
|
margin: 0;
|
|
@@ -34708,6 +34769,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34708
34769
|
user-select: none;
|
|
34709
34770
|
position: absolute;
|
|
34710
34771
|
z-index: 2;
|
|
34772
|
+
overflow: hidden;
|
|
34711
34773
|
}
|
|
34712
34774
|
.k-spreadsheet-overflow {
|
|
34713
34775
|
position: absolute;
|
|
@@ -34867,6 +34929,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34867
34929
|
position: relative;
|
|
34868
34930
|
}
|
|
34869
34931
|
|
|
34932
|
+
.k-spreadsheet-disabled-mask {
|
|
34933
|
+
position: absolute;
|
|
34934
|
+
}
|
|
34870
34935
|
|
|
34871
34936
|
// Selection
|
|
34872
34937
|
.k-spreadsheet .k-selection-wrapper {
|
|
@@ -43732,6 +43797,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43732
43797
|
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
43733
43798
|
// File already imported_once. Skipping output.
|
|
43734
43799
|
// #endregion
|
|
43800
|
+
// #region @import "../utils/_index.scss"; -> packages/bootstrap/scss/utils/_index.scss
|
|
43801
|
+
// File already imported_once. Skipping output.
|
|
43802
|
+
// #endregion
|
|
43735
43803
|
// #region @import "../button/_variables.scss"; -> packages/bootstrap/scss/button/_variables.scss
|
|
43736
43804
|
// File already imported_once. Skipping output.
|
|
43737
43805
|
// #endregion
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
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,16 +39,18 @@
|
|
|
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 bootstrap 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
|
"bootstrap": "^5.2.1"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"sass-build": "^1.0.0"
|
|
52
54
|
},
|
|
53
|
-
"gitHead": "
|
|
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 *
|
|
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
|
|