@progress/kendo-theme-bootstrap 5.8.2-dev.5 → 5.8.2-dev.6

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.scss CHANGED
@@ -7578,6 +7578,27 @@ $utils-border-radius: (
7578
7578
  }
7579
7579
  }
7580
7580
 
7581
+ // Icon wrap
7582
+ .k-icon-wrap {
7583
+ flex: none;
7584
+ display: inline-flex;
7585
+ flex-flow: row nowrap;
7586
+ gap: 0;
7587
+ align-items: center;
7588
+ align-self: flex-start;
7589
+ vertical-align: middle;
7590
+ position: relative;
7591
+
7592
+ &::before {
7593
+ content: "\200b";
7594
+ width: 0;
7595
+ overflow: hidden;
7596
+ flex: none;
7597
+ display: inline-block;
7598
+ vertical-align: top;
7599
+ }
7600
+ }
7601
+
7581
7602
  .k-icon {
7582
7603
  width: 1em;
7583
7604
  height: 1em;
@@ -9576,6 +9597,17 @@ $kendo-checkbox-ripple-opacity: .25 !default;
9576
9597
  // #region @import "~@progress/kendo-theme-default/scss/list/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/list/_layout.scss
9577
9598
  @include exports( "list/layout" ) {
9578
9599
 
9600
+ // List container
9601
+ .k-list-container {
9602
+ display: flex;
9603
+ flex-flow: column nowrap;
9604
+
9605
+ > .k-list {
9606
+ flex: 1;
9607
+ height: 100%;
9608
+ }
9609
+ }
9610
+
9579
9611
  // List
9580
9612
  .k-list {
9581
9613
  margin: 0;
@@ -9756,7 +9788,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
9756
9788
  position: relative;
9757
9789
  padding: $padding-x;
9758
9790
  box-sizing: border-box;
9759
- flex: 0 0 auto;
9791
+ flex: none;
9760
9792
  }
9761
9793
 
9762
9794
 
@@ -20568,6 +20600,7 @@ $kendo-time-selector-sizes: (
20568
20600
  display: flex;
20569
20601
  position: relative;
20570
20602
  flex: 1 1 auto;
20603
+ overflow: hidden;
20571
20604
  }
20572
20605
 
20573
20606
 
@@ -25241,7 +25274,8 @@ $actionsheet-padding-x: null !default;
25241
25274
  $actionsheet-padding-y: null !default;
25242
25275
  $actionsheet-width: 360px !default;
25243
25276
  $actionsheet-max-width: 100% !default;
25244
- $actionsheet-max-height: 50vh !default;
25277
+ $actionsheet-height: 60vh !default;
25278
+ $actionsheet-max-height: 60vh !default;
25245
25279
 
25246
25280
  $actionsheet-border-width: 0px !default;
25247
25281
  $actionsheet-border-radius: 0px !default;
@@ -25257,18 +25291,23 @@ $actionsheet-shadow: 0 8px 10px -5px rgba( black, .2 ), 0 16px 24px 2px rgba( bl
25257
25291
 
25258
25292
 
25259
25293
  // Actionsheet header
25260
- $actionsheet-header-padding-x: k-map-get( $spacing, 4 ) !default;
25261
- $actionsheet-header-padding-y: k-map-get( $spacing, 2 ) !default;
25262
- $actionsheet-header-border-width: null !default;
25263
- $actionsheet-header-font-size: null !default;
25264
- $actionsheet-header-font-family: null !default;
25265
- $actionsheet-header-line-height: null !default;
25294
+ $actionsheet-titlebar-padding-x: k-map-get( $spacing, 4 ) !default;
25295
+ $actionsheet-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
25296
+ $actionsheet-titlebar-border-width: null !default;
25297
+ $actionsheet-titlebar-font-size: null !default;
25298
+ $actionsheet-titlebar-font-family: null !default;
25299
+ $actionsheet-titlebar-line-height: null !default;
25300
+ $actionsheet-titlebar-gap: k-map-get( $spacing, 4 ) !default;
25301
+
25302
+ $actionsheet-titlebar-bg: null !default;
25303
+ $actionsheet-titlebar-text: null !default;
25304
+ $actionsheet-titlebar-border: null !default;
25305
+ $actionsheet-titlebar-gradient: null !default;
25306
+ $actionsheet-titlebar-shadow: null !default;
25266
25307
 
25267
- $actionsheet-header-bg: null !default;
25268
- $actionsheet-header-text: null !default;
25269
- $actionsheet-header-border: null !default;
25270
- $actionsheet-header-gradient: null !default;
25271
- $actionsheet-header-shadow: null !default;
25308
+ $actionsheet-subtitle-font-size: $font-size-sm !default;
25309
+ $actionsheet-subtitle-line-height: $line-height-sm !default;
25310
+ $actionsheet-subtitle-text: $subtle-text !default;
25272
25311
 
25273
25312
 
25274
25313
  // Actionsheet item
@@ -25304,27 +25343,86 @@ $actionsheet-item-disabled-border: null !default;
25304
25343
  $actionsheet-item-disabled-gradient: null !default;
25305
25344
  $actionsheet-item-disabled-shadow: null !default;
25306
25345
 
25346
+
25347
+ // Adaptive Actionsheet
25348
+ $adaptive-actionsheet-titlebar-border-width: 1px !default;
25349
+ $adaptive-actionsheet-titlebar-padding-y: k-map-get( $spacing, 4 ) !default;
25350
+ $adaptive-actionsheet-titlebar-padding-x: $adaptive-actionsheet-titlebar-padding-y !default;
25351
+ $adaptive-actionsheet-titlebar-border: $component-border !default;
25352
+
25353
+ $adaptive-actionsheet-content-padding-y: k-map-get( $spacing, 2 ) !default;
25354
+ $adaptive-actionsheet-content-padding-x: k-map-get( $spacing, 4 ) !default;
25355
+
25356
+ $adaptive-actionsheet-footer-padding-y: k-map-get( $spacing, 2 ) !default;
25357
+ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
25358
+
25307
25359
  // #endregion
25308
25360
  // #region @import "_layout.scss"; -> packages/bootstrap/scss/action-sheet/_layout.scss
25309
25361
  // #region @import "~@progress/kendo-theme-default/scss/action-sheet/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/action-sheet/_layout.scss
25310
25362
  @include exports("action-sheet/layout") {
25311
25363
 
25364
+ // Action sheet container
25312
25365
  .k-actionsheet-container {
25313
- width: 100vw;
25314
- height: 100vh;
25366
+ width: 100%;
25367
+ height: 100%;
25368
+ max-width: unquote("max(100%, 100vw)");
25369
+ max-height: unquote("max(100%, 100vh)");
25315
25370
  position: fixed;
25316
25371
  top: 0;
25317
25372
  left: 0;
25318
25373
  z-index: 9999;
25319
25374
  overflow: hidden;
25375
+ transform: translateZ(0);
25320
25376
  }
25321
25377
 
25378
+
25379
+ // Animation container
25380
+ .k-actionsheet-container {
25381
+
25382
+ // Overlay
25383
+ > .k-overlay {
25384
+ position: absolute;
25385
+ z-index: 1;
25386
+ }
25387
+
25388
+ // Nested animation container
25389
+ > .k-animation-container {
25390
+ width: 100%;
25391
+ height: 100%;
25392
+ border-radius: 0;
25393
+ overflow: hidden;
25394
+ position: absolute;
25395
+ z-index: 2;
25396
+ top: 0;
25397
+ left: 0;
25398
+ pointer-events: none;
25399
+
25400
+ > .k-child-animation-container {
25401
+ position: absolute;
25402
+ }
25403
+ }
25404
+
25405
+ // No animation container
25406
+ > .k-actionsheet {
25407
+ position: absolute;
25408
+ z-index: 2;
25409
+ }
25410
+
25411
+ // Enable mouse events for action sheet
25412
+ .k-actionsheet {
25413
+ pointer-events: all;
25414
+ }
25415
+ }
25416
+
25417
+
25322
25418
  // Actionsheet
25323
25419
  .k-actionsheet {
25324
- padding: $actionsheet-padding-y $actionsheet-padding-y;
25325
- width: $actionsheet-width;
25326
- max-width: $actionsheet-max-width;
25327
- max-height: $actionsheet-max-height;
25420
+ padding-block: $actionsheet-padding-y;
25421
+ padding-inline: $actionsheet-padding-y;
25422
+ width: var( --kendo-actionsheet-width, #{$actionsheet-width} );
25423
+ height: var( --kendo-actionsheet-height, #{$actionsheet-height} );
25424
+ max-width: var( --kendo-actionsheet-max-width, #{$actionsheet-max-width} );
25425
+ max-height: var( --kendo-actionsheet-max-height, #{$actionsheet-max-height} );
25328
25426
  border-width: 0;
25329
25427
  border-style: solid;
25330
25428
  border-color: transparent;
@@ -25332,10 +25430,8 @@ $actionsheet-item-disabled-shadow: null !default;
25332
25430
  font-size: $actionsheet-font-size;
25333
25431
  font-family: $actionsheet-font-family;
25334
25432
  line-height: $actionsheet-line-height;
25335
- overflow-x: hidden;
25336
- overflow-y: auto;
25337
- position: fixed;
25338
- z-index: 10002;
25433
+ overflow: hidden;
25434
+ position: relative;
25339
25435
 
25340
25436
  *,
25341
25437
  *::before,
@@ -25343,37 +25439,37 @@ $actionsheet-item-disabled-shadow: null !default;
25343
25439
  box-sizing: border-box;
25344
25440
  }
25345
25441
  }
25346
- .k-actionsheet-fullscreen {
25347
- max-height: 100%;
25348
- height: 100%;
25349
- }
25350
25442
 
25351
25443
 
25352
- // Actionsheet header
25353
- .k-actionsheet-header {
25354
- padding: $actionsheet-header-padding-y $actionsheet-header-padding-x;
25444
+ // Actionsheet titlebar
25445
+ .k-actionsheet-titlebar {
25446
+ padding: $actionsheet-titlebar-padding-y $actionsheet-titlebar-padding-x;
25355
25447
  border-width: 0;
25356
- border-bottom-width: if( $actionsheet-header-border-width, $actionsheet-header-border-width, null );
25448
+ border-bottom-width: if( $actionsheet-titlebar-border-width, $actionsheet-titlebar-border-width, null );
25357
25449
  border-style: solid;
25358
25450
  border-color: transparent;
25359
- box-sizing: border-box;
25360
- font-size: $actionsheet-header-font-size;
25361
- font-family: $actionsheet-header-font-family;
25362
- line-height: $actionsheet-header-line-height;
25451
+ font-size: $actionsheet-titlebar-font-size;
25452
+ font-family: $actionsheet-titlebar-font-family;
25453
+ line-height: $actionsheet-titlebar-line-height;
25363
25454
  flex: none;
25455
+ display: flex;
25456
+ flex-flow: column nowrap;
25457
+ align-items: center;
25458
+ gap: $actionsheet-titlebar-gap;
25364
25459
  }
25365
-
25366
-
25367
- // Actionsheet titlebar
25368
- .k-actionsheet-titlebar {
25369
- @extend .k-actionsheet-header !optional;
25460
+ .k-actionsheet-titlebar-group {
25370
25461
  display: flex;
25371
25462
  flex-flow: row nowrap;
25372
25463
  align-items: center;
25464
+ width: 100%;
25373
25465
  }
25374
25466
  .k-actionsheet-title {
25375
25467
  flex: 1;
25376
25468
  }
25469
+ .k-actionsheet-subtitle {
25470
+ font-size: $actionsheet-subtitle-font-size;
25471
+ line-height: $actionsheet-subtitle-line-height;
25472
+ }
25377
25473
  .k-actionsheet-actions {
25378
25474
  flex: none;
25379
25475
  }
@@ -25383,6 +25479,7 @@ $actionsheet-item-disabled-shadow: null !default;
25383
25479
  .k-actionsheet-content {
25384
25480
  flex: 1;
25385
25481
  overflow: auto;
25482
+ position: relative;
25386
25483
  }
25387
25484
 
25388
25485
 
@@ -25397,6 +25494,7 @@ $actionsheet-item-disabled-shadow: null !default;
25397
25494
  margin: 0;
25398
25495
  padding: 0;
25399
25496
  list-style: none;
25497
+ flex: none;
25400
25498
  }
25401
25499
 
25402
25500
 
@@ -25415,7 +25513,7 @@ $actionsheet-item-disabled-shadow: null !default;
25415
25513
  outline: 0;
25416
25514
  display: flex;
25417
25515
  flex-flow: row nowrap;
25418
- align-items: center;
25516
+ align-items: flex-start;
25419
25517
  gap: $actionsheet-item-spacing;
25420
25518
  }
25421
25519
  .k-actionsheet-item-icon {
@@ -25438,6 +25536,7 @@ $actionsheet-item-disabled-shadow: null !default;
25438
25536
  .k-actionsheet > .k-hr {
25439
25537
  margin: 0;
25440
25538
  border-color: inherit;
25539
+ flex: none;
25441
25540
  }
25442
25541
 
25443
25542
 
@@ -25474,6 +25573,12 @@ $actionsheet-item-disabled-shadow: null !default;
25474
25573
  top: 50%;
25475
25574
  transform: translateY( -50% );
25476
25575
  }
25576
+ .k-actionsheet-fullscreen {
25577
+ width: 100%;
25578
+ max-width: 100%;
25579
+ max-height: 100%;
25580
+ height: 100%;
25581
+ }
25477
25582
 
25478
25583
 
25479
25584
  // Action sheet in popup
@@ -25495,6 +25600,28 @@ $actionsheet-item-disabled-shadow: null !default;
25495
25600
  display: flex;
25496
25601
  flex-flow: column nowrap;
25497
25602
 
25603
+ .k-actionsheet-titlebar {
25604
+ padding: $adaptive-actionsheet-titlebar-padding-y $adaptive-actionsheet-titlebar-padding-x;
25605
+ border-bottom-width: $adaptive-actionsheet-titlebar-border-width;
25606
+ }
25607
+
25608
+ .k-actionsheet-content {
25609
+ padding: $adaptive-actionsheet-content-padding-y $adaptive-actionsheet-content-padding-x;
25610
+ }
25611
+
25612
+ .k-actionsheet-footer {
25613
+ padding: $adaptive-actionsheet-footer-padding-y $adaptive-actionsheet-footer-padding-x;
25614
+ }
25615
+
25616
+ .k-list-container,
25617
+ .k-treeview {
25618
+ height: 100%;
25619
+ }
25620
+ .k-list-filter {
25621
+ width: 100%;
25622
+ padding-inline: 0;
25623
+ }
25624
+
25498
25625
  .k-calendar {
25499
25626
  margin-inline: auto;
25500
25627
  border-width: 0;
@@ -25514,6 +25641,58 @@ $actionsheet-item-disabled-shadow: null !default;
25514
25641
  height: 100%;
25515
25642
  }
25516
25643
  }
25644
+
25645
+ .k-datetime-wrap {
25646
+ width: 100%;
25647
+ height: 100%;
25648
+ display: flex;
25649
+ flex-flow: column nowrap;
25650
+ }
25651
+ .k-datetime-selector {
25652
+ flex: 1 1 auto;
25653
+ }
25654
+
25655
+ .k-datetime-calendar-wrap {
25656
+ width: 100%;
25657
+ position: absolute;
25658
+ top: 0;
25659
+ left: 0;
25660
+ bottom: 0;
25661
+ flex: 0 0 100%;
25662
+ }
25663
+
25664
+ .k-datetime-time-wrap {
25665
+ width: 100%;
25666
+ position: absolute;
25667
+ top: 0;
25668
+ left: 100%;
25669
+ bottom: 0;
25670
+ flex: 0 0 100%;
25671
+ }
25672
+
25673
+ .k-scrollable-wrap {
25674
+ height: 100%;
25675
+ overflow-y: auto;
25676
+ }
25677
+ }
25678
+
25679
+ }
25680
+
25681
+ @include exports("action-sheet/layout/legacy") {
25682
+
25683
+ .k-actionsheet-jq {
25684
+ &.k-actionsheet {
25685
+ height: auto;
25686
+ }
25687
+
25688
+ .k-actionsheet-header {
25689
+ @extend .k-actionsheet-titlebar !optional;
25690
+ align-items: flex-start;
25691
+ }
25692
+
25693
+ .k-actionsheet-action {
25694
+ align-items: center;
25695
+ }
25517
25696
  }
25518
25697
 
25519
25698
  }
@@ -25537,14 +25716,17 @@ $actionsheet-item-disabled-shadow: null !default;
25537
25716
 
25538
25717
 
25539
25718
  // Actionsheet header
25540
- .k-actionsheet-header {
25719
+ .k-actionsheet-titlebar {
25541
25720
  @include fill(
25542
- $actionsheet-header-text,
25543
- $actionsheet-header-bg,
25544
- $actionsheet-header-border,
25545
- $actionsheet-header-gradient
25721
+ $actionsheet-titlebar-text,
25722
+ $actionsheet-titlebar-bg,
25723
+ $actionsheet-titlebar-border,
25724
+ $actionsheet-titlebar-gradient
25546
25725
  );
25547
- @include box-shadow( $actionsheet-header-shadow );
25726
+ @include box-shadow( $actionsheet-titlebar-shadow );
25727
+ }
25728
+ .k-actionsheet-subtitle {
25729
+ @include fill( $color: $actionsheet-subtitle-text );
25548
25730
  }
25549
25731
 
25550
25732
 
@@ -25553,17 +25735,7 @@ $actionsheet-item-disabled-shadow: null !default;
25553
25735
 
25554
25736
 
25555
25737
  // Actionsheet item
25556
- .k-actionsheet-item {}
25557
-
25558
-
25559
- // Actionsheet item description
25560
- .k-actionsheet-item-description {
25561
- @include fill( $color: $actionsheet-item-description-text );
25562
- }
25563
-
25564
-
25565
- // Actionsheet action
25566
- .k-actionsheet-action {
25738
+ .k-actionsheet-item {
25567
25739
 
25568
25740
 
25569
25741
  // Hover state
@@ -25592,7 +25764,7 @@ $actionsheet-item-disabled-shadow: null !default;
25592
25764
  }
25593
25765
 
25594
25766
 
25595
- // Disabed state
25767
+ // Disabled state
25596
25768
  &:disabled,
25597
25769
  &.k-disabled {
25598
25770
  @include fill(
@@ -25605,6 +25777,22 @@ $actionsheet-item-disabled-shadow: null !default;
25605
25777
  }
25606
25778
  }
25607
25779
 
25780
+
25781
+ // Actionsheet item description
25782
+ .k-actionsheet-item-description {
25783
+ @include fill( $color: $actionsheet-item-description-text );
25784
+ }
25785
+
25786
+
25787
+ // Actionsheet action
25788
+ .k-actionsheet-action {}
25789
+
25790
+
25791
+ // Adaptive Actionsheet
25792
+ .k-adaptive-actionsheet .k-actionsheet-titlebar {
25793
+ @include fill( $border: $adaptive-actionsheet-titlebar-border );
25794
+ }
25795
+
25608
25796
  }
25609
25797
 
25610
25798
  // #endregion
@@ -45751,6 +45939,7 @@ $kendo-signature-maximized-line-width: k-map-get( $spacing, 1 ) - k-map-get( $sp
45751
45939
  height: 100%;
45752
45940
  display: block;
45753
45941
  z-index: 1;
45942
+ outline: none;
45754
45943
  }
45755
45944
 
45756
45945
  .k-signature-line {
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap 3 Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#222222",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap 3",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f5f5f5",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap 4 Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#212529",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap 4",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f8f9fa",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap Dataviz v4",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#0275d8",
9
9
  "#5bc0de",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap Main Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#212529",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f8f9fa",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap Nordic",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f8f9fa",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap Turquoise Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#292b2c",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap Turquoise",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f2f2f2",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap Urban",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#e3eef4",
@@ -3,7 +3,7 @@
3
3
  "name": "Bootstrap Vintage",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-bootstrap",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f2efe8",
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.8.2-dev.5",
4
+ "version": "5.8.2-dev.6",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -43,12 +43,12 @@
43
43
  "postpublish": "echo 'no postpublish for bootstrap theme'"
44
44
  },
45
45
  "dependencies": {
46
- "@progress/kendo-theme-core": "^5.8.2-dev.5",
47
- "@progress/kendo-theme-default": "^5.8.2-dev.5",
46
+ "@progress/kendo-theme-core": "^5.8.2-dev.6",
47
+ "@progress/kendo-theme-default": "^5.8.2-dev.6",
48
48
  "bootstrap": "^5.2.1"
49
49
  },
50
50
  "devDependencies": {
51
51
  "sass-build": "^1.0.0"
52
52
  },
53
- "gitHead": "071af936605691a801eaa4de3b8714e6223670f4"
53
+ "gitHead": "b1b2e33a3ce1b92bcefae87e8c46cbd797d814d1"
54
54
  }
@@ -3,7 +3,8 @@ $actionsheet-padding-x: null !default;
3
3
  $actionsheet-padding-y: null !default;
4
4
  $actionsheet-width: 360px !default;
5
5
  $actionsheet-max-width: 100% !default;
6
- $actionsheet-max-height: 50vh !default;
6
+ $actionsheet-height: 60vh !default;
7
+ $actionsheet-max-height: 60vh !default;
7
8
 
8
9
  $actionsheet-border-width: 0px !default;
9
10
  $actionsheet-border-radius: 0px !default;
@@ -19,18 +20,23 @@ $actionsheet-shadow: 0 8px 10px -5px rgba( black, .2 ), 0 16px 24px 2px rgba( bl
19
20
 
20
21
 
21
22
  // Actionsheet header
22
- $actionsheet-header-padding-x: k-map-get( $spacing, 4 ) !default;
23
- $actionsheet-header-padding-y: k-map-get( $spacing, 2 ) !default;
24
- $actionsheet-header-border-width: null !default;
25
- $actionsheet-header-font-size: null !default;
26
- $actionsheet-header-font-family: null !default;
27
- $actionsheet-header-line-height: null !default;
23
+ $actionsheet-titlebar-padding-x: k-map-get( $spacing, 4 ) !default;
24
+ $actionsheet-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
25
+ $actionsheet-titlebar-border-width: null !default;
26
+ $actionsheet-titlebar-font-size: null !default;
27
+ $actionsheet-titlebar-font-family: null !default;
28
+ $actionsheet-titlebar-line-height: null !default;
29
+ $actionsheet-titlebar-gap: k-map-get( $spacing, 4 ) !default;
28
30
 
29
- $actionsheet-header-bg: null !default;
30
- $actionsheet-header-text: null !default;
31
- $actionsheet-header-border: null !default;
32
- $actionsheet-header-gradient: null !default;
33
- $actionsheet-header-shadow: null !default;
31
+ $actionsheet-titlebar-bg: null !default;
32
+ $actionsheet-titlebar-text: null !default;
33
+ $actionsheet-titlebar-border: null !default;
34
+ $actionsheet-titlebar-gradient: null !default;
35
+ $actionsheet-titlebar-shadow: null !default;
36
+
37
+ $actionsheet-subtitle-font-size: $font-size-sm !default;
38
+ $actionsheet-subtitle-line-height: $line-height-sm !default;
39
+ $actionsheet-subtitle-text: $subtle-text !default;
34
40
 
35
41
 
36
42
  // Actionsheet item
@@ -65,3 +71,16 @@ $actionsheet-item-disabled-text: null !default;
65
71
  $actionsheet-item-disabled-border: null !default;
66
72
  $actionsheet-item-disabled-gradient: null !default;
67
73
  $actionsheet-item-disabled-shadow: null !default;
74
+
75
+
76
+ // Adaptive Actionsheet
77
+ $adaptive-actionsheet-titlebar-border-width: 1px !default;
78
+ $adaptive-actionsheet-titlebar-padding-y: k-map-get( $spacing, 4 ) !default;
79
+ $adaptive-actionsheet-titlebar-padding-x: $adaptive-actionsheet-titlebar-padding-y !default;
80
+ $adaptive-actionsheet-titlebar-border: $component-border !default;
81
+
82
+ $adaptive-actionsheet-content-padding-y: k-map-get( $spacing, 2 ) !default;
83
+ $adaptive-actionsheet-content-padding-x: k-map-get( $spacing, 4 ) !default;
84
+
85
+ $adaptive-actionsheet-footer-padding-y: k-map-get( $spacing, 2 ) !default;
86
+ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;