@progress/kendo-theme-bootstrap 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/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/pdf-viewer/_index.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -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 {
|
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
|
}
|
|
@@ -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;
|
|
@@ -43732,6 +43793,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43732
43793
|
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
43733
43794
|
// File already imported_once. Skipping output.
|
|
43734
43795
|
// #endregion
|
|
43796
|
+
// #region @import "../utils/_index.scss"; -> packages/bootstrap/scss/utils/_index.scss
|
|
43797
|
+
// File already imported_once. Skipping output.
|
|
43798
|
+
// #endregion
|
|
43735
43799
|
// #region @import "../button/_variables.scss"; -> packages/bootstrap/scss/button/_variables.scss
|
|
43736
43800
|
// File already imported_once. Skipping output.
|
|
43737
43801
|
// #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.
|
|
4
|
+
"version": "5.9.1-dev.1",
|
|
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.
|
|
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
|
"bootstrap": "^5.2.1"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"sass-build": "^1.0.0"
|
|
52
54
|
},
|
|
53
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "569d0ac17d7dc5b1327bb9ffdda3c96d1ad97b3d"
|
|
54
56
|
}
|