@progress/kendo-theme-classic 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
@@ -5553,6 +5553,27 @@ $utils-border-radius: (
5553
5553
  }
5554
5554
  }
5555
5555
 
5556
+ // Icon wrap
5557
+ .k-icon-wrap {
5558
+ flex: none;
5559
+ display: inline-flex;
5560
+ flex-flow: row nowrap;
5561
+ gap: 0;
5562
+ align-items: center;
5563
+ align-self: flex-start;
5564
+ vertical-align: middle;
5565
+ position: relative;
5566
+
5567
+ &::before {
5568
+ content: "\200b";
5569
+ width: 0;
5570
+ overflow: hidden;
5571
+ flex: none;
5572
+ display: inline-block;
5573
+ vertical-align: top;
5574
+ }
5575
+ }
5576
+
5556
5577
  .k-icon {
5557
5578
  width: 1em;
5558
5579
  height: 1em;
@@ -7551,6 +7572,17 @@ $kendo-checkbox-ripple-opacity: .25 !default;
7551
7572
  // #region @import "~@progress/kendo-theme-default/scss/list/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/list/_layout.scss
7552
7573
  @include exports( "list/layout" ) {
7553
7574
 
7575
+ // List container
7576
+ .k-list-container {
7577
+ display: flex;
7578
+ flex-flow: column nowrap;
7579
+
7580
+ > .k-list {
7581
+ flex: 1;
7582
+ height: 100%;
7583
+ }
7584
+ }
7585
+
7554
7586
  // List
7555
7587
  .k-list {
7556
7588
  margin: 0;
@@ -7731,7 +7763,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
7731
7763
  position: relative;
7732
7764
  padding: $padding-x;
7733
7765
  box-sizing: border-box;
7734
- flex: 0 0 auto;
7766
+ flex: none;
7735
7767
  }
7736
7768
 
7737
7769
 
@@ -18439,6 +18471,7 @@ $kendo-time-selector-sizes: (
18439
18471
  display: flex;
18440
18472
  position: relative;
18441
18473
  flex: 1 1 auto;
18474
+ overflow: hidden;
18442
18475
  }
18443
18476
 
18444
18477
 
@@ -23091,7 +23124,8 @@ $actionsheet-padding-x: null !default;
23091
23124
  $actionsheet-padding-y: null !default;
23092
23125
  $actionsheet-width: 360px !default;
23093
23126
  $actionsheet-max-width: 100% !default;
23094
- $actionsheet-max-height: 50vh !default;
23127
+ $actionsheet-height: 60vh !default;
23128
+ $actionsheet-max-height: 60vh !default;
23095
23129
 
23096
23130
  $actionsheet-border-width: 0px !default;
23097
23131
  $actionsheet-border-radius: 0px !default;
@@ -23107,18 +23141,23 @@ $actionsheet-shadow: 0 8px 10px -5px rgba( black, .2 ), 0 16px 24px 2px rgba( bl
23107
23141
 
23108
23142
 
23109
23143
  // Actionsheet header
23110
- $actionsheet-header-padding-x: k-map-get( $spacing, 4 ) !default;
23111
- $actionsheet-header-padding-y: k-map-get( $spacing, 2 ) !default;
23112
- $actionsheet-header-border-width: null !default;
23113
- $actionsheet-header-font-size: null !default;
23114
- $actionsheet-header-font-family: null !default;
23115
- $actionsheet-header-line-height: null !default;
23144
+ $actionsheet-titlebar-padding-x: k-map-get( $spacing, 4 ) !default;
23145
+ $actionsheet-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
23146
+ $actionsheet-titlebar-border-width: null !default;
23147
+ $actionsheet-titlebar-font-size: null !default;
23148
+ $actionsheet-titlebar-font-family: null !default;
23149
+ $actionsheet-titlebar-line-height: null !default;
23150
+ $actionsheet-titlebar-gap: k-map-get( $spacing, 4 ) !default;
23151
+
23152
+ $actionsheet-titlebar-bg: null !default;
23153
+ $actionsheet-titlebar-text: null !default;
23154
+ $actionsheet-titlebar-border: null !default;
23155
+ $actionsheet-titlebar-gradient: null !default;
23156
+ $actionsheet-titlebar-shadow: null !default;
23116
23157
 
23117
- $actionsheet-header-bg: null !default;
23118
- $actionsheet-header-text: null !default;
23119
- $actionsheet-header-border: null !default;
23120
- $actionsheet-header-gradient: null !default;
23121
- $actionsheet-header-shadow: null !default;
23158
+ $actionsheet-subtitle-font-size: $font-size-sm !default;
23159
+ $actionsheet-subtitle-line-height: $line-height-sm !default;
23160
+ $actionsheet-subtitle-text: $subtle-text !default;
23122
23161
 
23123
23162
 
23124
23163
  // Actionsheet item
@@ -23154,27 +23193,86 @@ $actionsheet-item-disabled-border: null !default;
23154
23193
  $actionsheet-item-disabled-gradient: null !default;
23155
23194
  $actionsheet-item-disabled-shadow: null !default;
23156
23195
 
23196
+
23197
+ // Adaptive Actionsheet
23198
+ $adaptive-actionsheet-titlebar-border-width: 1px !default;
23199
+ $adaptive-actionsheet-titlebar-padding-y: k-map-get( $spacing, 4 ) !default;
23200
+ $adaptive-actionsheet-titlebar-padding-x: $adaptive-actionsheet-titlebar-padding-y !default;
23201
+ $adaptive-actionsheet-titlebar-border: $component-border !default;
23202
+
23203
+ $adaptive-actionsheet-content-padding-y: k-map-get( $spacing, 2 ) !default;
23204
+ $adaptive-actionsheet-content-padding-x: k-map-get( $spacing, 4 ) !default;
23205
+
23206
+ $adaptive-actionsheet-footer-padding-y: k-map-get( $spacing, 2 ) !default;
23207
+ $adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
23208
+
23157
23209
  // #endregion
23158
23210
  // #region @import "_layout.scss"; -> packages/classic/scss/action-sheet/_layout.scss
23159
23211
  // #region @import "~@progress/kendo-theme-default/scss/action-sheet/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/action-sheet/_layout.scss
23160
23212
  @include exports("action-sheet/layout") {
23161
23213
 
23214
+ // Action sheet container
23162
23215
  .k-actionsheet-container {
23163
- width: 100vw;
23164
- height: 100vh;
23216
+ width: 100%;
23217
+ height: 100%;
23218
+ max-width: unquote("max(100%, 100vw)");
23219
+ max-height: unquote("max(100%, 100vh)");
23165
23220
  position: fixed;
23166
23221
  top: 0;
23167
23222
  left: 0;
23168
23223
  z-index: 9999;
23169
23224
  overflow: hidden;
23225
+ transform: translateZ(0);
23170
23226
  }
23171
23227
 
23228
+
23229
+ // Animation container
23230
+ .k-actionsheet-container {
23231
+
23232
+ // Overlay
23233
+ > .k-overlay {
23234
+ position: absolute;
23235
+ z-index: 1;
23236
+ }
23237
+
23238
+ // Nested animation container
23239
+ > .k-animation-container {
23240
+ width: 100%;
23241
+ height: 100%;
23242
+ border-radius: 0;
23243
+ overflow: hidden;
23244
+ position: absolute;
23245
+ z-index: 2;
23246
+ top: 0;
23247
+ left: 0;
23248
+ pointer-events: none;
23249
+
23250
+ > .k-child-animation-container {
23251
+ position: absolute;
23252
+ }
23253
+ }
23254
+
23255
+ // No animation container
23256
+ > .k-actionsheet {
23257
+ position: absolute;
23258
+ z-index: 2;
23259
+ }
23260
+
23261
+ // Enable mouse events for action sheet
23262
+ .k-actionsheet {
23263
+ pointer-events: all;
23264
+ }
23265
+ }
23266
+
23267
+
23172
23268
  // Actionsheet
23173
23269
  .k-actionsheet {
23174
- padding: $actionsheet-padding-y $actionsheet-padding-y;
23175
- width: $actionsheet-width;
23176
- max-width: $actionsheet-max-width;
23177
- max-height: $actionsheet-max-height;
23270
+ padding-block: $actionsheet-padding-y;
23271
+ padding-inline: $actionsheet-padding-y;
23272
+ width: var( --kendo-actionsheet-width, #{$actionsheet-width} );
23273
+ height: var( --kendo-actionsheet-height, #{$actionsheet-height} );
23274
+ max-width: var( --kendo-actionsheet-max-width, #{$actionsheet-max-width} );
23275
+ max-height: var( --kendo-actionsheet-max-height, #{$actionsheet-max-height} );
23178
23276
  border-width: 0;
23179
23277
  border-style: solid;
23180
23278
  border-color: transparent;
@@ -23182,10 +23280,8 @@ $actionsheet-item-disabled-shadow: null !default;
23182
23280
  font-size: $actionsheet-font-size;
23183
23281
  font-family: $actionsheet-font-family;
23184
23282
  line-height: $actionsheet-line-height;
23185
- overflow-x: hidden;
23186
- overflow-y: auto;
23187
- position: fixed;
23188
- z-index: 10002;
23283
+ overflow: hidden;
23284
+ position: relative;
23189
23285
 
23190
23286
  *,
23191
23287
  *::before,
@@ -23193,37 +23289,37 @@ $actionsheet-item-disabled-shadow: null !default;
23193
23289
  box-sizing: border-box;
23194
23290
  }
23195
23291
  }
23196
- .k-actionsheet-fullscreen {
23197
- max-height: 100%;
23198
- height: 100%;
23199
- }
23200
23292
 
23201
23293
 
23202
- // Actionsheet header
23203
- .k-actionsheet-header {
23204
- padding: $actionsheet-header-padding-y $actionsheet-header-padding-x;
23294
+ // Actionsheet titlebar
23295
+ .k-actionsheet-titlebar {
23296
+ padding: $actionsheet-titlebar-padding-y $actionsheet-titlebar-padding-x;
23205
23297
  border-width: 0;
23206
- border-bottom-width: if( $actionsheet-header-border-width, $actionsheet-header-border-width, null );
23298
+ border-bottom-width: if( $actionsheet-titlebar-border-width, $actionsheet-titlebar-border-width, null );
23207
23299
  border-style: solid;
23208
23300
  border-color: transparent;
23209
- box-sizing: border-box;
23210
- font-size: $actionsheet-header-font-size;
23211
- font-family: $actionsheet-header-font-family;
23212
- line-height: $actionsheet-header-line-height;
23301
+ font-size: $actionsheet-titlebar-font-size;
23302
+ font-family: $actionsheet-titlebar-font-family;
23303
+ line-height: $actionsheet-titlebar-line-height;
23213
23304
  flex: none;
23305
+ display: flex;
23306
+ flex-flow: column nowrap;
23307
+ align-items: center;
23308
+ gap: $actionsheet-titlebar-gap;
23214
23309
  }
23215
-
23216
-
23217
- // Actionsheet titlebar
23218
- .k-actionsheet-titlebar {
23219
- @extend .k-actionsheet-header !optional;
23310
+ .k-actionsheet-titlebar-group {
23220
23311
  display: flex;
23221
23312
  flex-flow: row nowrap;
23222
23313
  align-items: center;
23314
+ width: 100%;
23223
23315
  }
23224
23316
  .k-actionsheet-title {
23225
23317
  flex: 1;
23226
23318
  }
23319
+ .k-actionsheet-subtitle {
23320
+ font-size: $actionsheet-subtitle-font-size;
23321
+ line-height: $actionsheet-subtitle-line-height;
23322
+ }
23227
23323
  .k-actionsheet-actions {
23228
23324
  flex: none;
23229
23325
  }
@@ -23233,6 +23329,7 @@ $actionsheet-item-disabled-shadow: null !default;
23233
23329
  .k-actionsheet-content {
23234
23330
  flex: 1;
23235
23331
  overflow: auto;
23332
+ position: relative;
23236
23333
  }
23237
23334
 
23238
23335
 
@@ -23247,6 +23344,7 @@ $actionsheet-item-disabled-shadow: null !default;
23247
23344
  margin: 0;
23248
23345
  padding: 0;
23249
23346
  list-style: none;
23347
+ flex: none;
23250
23348
  }
23251
23349
 
23252
23350
 
@@ -23265,7 +23363,7 @@ $actionsheet-item-disabled-shadow: null !default;
23265
23363
  outline: 0;
23266
23364
  display: flex;
23267
23365
  flex-flow: row nowrap;
23268
- align-items: center;
23366
+ align-items: flex-start;
23269
23367
  gap: $actionsheet-item-spacing;
23270
23368
  }
23271
23369
  .k-actionsheet-item-icon {
@@ -23288,6 +23386,7 @@ $actionsheet-item-disabled-shadow: null !default;
23288
23386
  .k-actionsheet > .k-hr {
23289
23387
  margin: 0;
23290
23388
  border-color: inherit;
23389
+ flex: none;
23291
23390
  }
23292
23391
 
23293
23392
 
@@ -23324,6 +23423,12 @@ $actionsheet-item-disabled-shadow: null !default;
23324
23423
  top: 50%;
23325
23424
  transform: translateY( -50% );
23326
23425
  }
23426
+ .k-actionsheet-fullscreen {
23427
+ width: 100%;
23428
+ max-width: 100%;
23429
+ max-height: 100%;
23430
+ height: 100%;
23431
+ }
23327
23432
 
23328
23433
 
23329
23434
  // Action sheet in popup
@@ -23345,6 +23450,28 @@ $actionsheet-item-disabled-shadow: null !default;
23345
23450
  display: flex;
23346
23451
  flex-flow: column nowrap;
23347
23452
 
23453
+ .k-actionsheet-titlebar {
23454
+ padding: $adaptive-actionsheet-titlebar-padding-y $adaptive-actionsheet-titlebar-padding-x;
23455
+ border-bottom-width: $adaptive-actionsheet-titlebar-border-width;
23456
+ }
23457
+
23458
+ .k-actionsheet-content {
23459
+ padding: $adaptive-actionsheet-content-padding-y $adaptive-actionsheet-content-padding-x;
23460
+ }
23461
+
23462
+ .k-actionsheet-footer {
23463
+ padding: $adaptive-actionsheet-footer-padding-y $adaptive-actionsheet-footer-padding-x;
23464
+ }
23465
+
23466
+ .k-list-container,
23467
+ .k-treeview {
23468
+ height: 100%;
23469
+ }
23470
+ .k-list-filter {
23471
+ width: 100%;
23472
+ padding-inline: 0;
23473
+ }
23474
+
23348
23475
  .k-calendar {
23349
23476
  margin-inline: auto;
23350
23477
  border-width: 0;
@@ -23364,6 +23491,58 @@ $actionsheet-item-disabled-shadow: null !default;
23364
23491
  height: 100%;
23365
23492
  }
23366
23493
  }
23494
+
23495
+ .k-datetime-wrap {
23496
+ width: 100%;
23497
+ height: 100%;
23498
+ display: flex;
23499
+ flex-flow: column nowrap;
23500
+ }
23501
+ .k-datetime-selector {
23502
+ flex: 1 1 auto;
23503
+ }
23504
+
23505
+ .k-datetime-calendar-wrap {
23506
+ width: 100%;
23507
+ position: absolute;
23508
+ top: 0;
23509
+ left: 0;
23510
+ bottom: 0;
23511
+ flex: 0 0 100%;
23512
+ }
23513
+
23514
+ .k-datetime-time-wrap {
23515
+ width: 100%;
23516
+ position: absolute;
23517
+ top: 0;
23518
+ left: 100%;
23519
+ bottom: 0;
23520
+ flex: 0 0 100%;
23521
+ }
23522
+
23523
+ .k-scrollable-wrap {
23524
+ height: 100%;
23525
+ overflow-y: auto;
23526
+ }
23527
+ }
23528
+
23529
+ }
23530
+
23531
+ @include exports("action-sheet/layout/legacy") {
23532
+
23533
+ .k-actionsheet-jq {
23534
+ &.k-actionsheet {
23535
+ height: auto;
23536
+ }
23537
+
23538
+ .k-actionsheet-header {
23539
+ @extend .k-actionsheet-titlebar !optional;
23540
+ align-items: flex-start;
23541
+ }
23542
+
23543
+ .k-actionsheet-action {
23544
+ align-items: center;
23545
+ }
23367
23546
  }
23368
23547
 
23369
23548
  }
@@ -23387,14 +23566,17 @@ $actionsheet-item-disabled-shadow: null !default;
23387
23566
 
23388
23567
 
23389
23568
  // Actionsheet header
23390
- .k-actionsheet-header {
23569
+ .k-actionsheet-titlebar {
23391
23570
  @include fill(
23392
- $actionsheet-header-text,
23393
- $actionsheet-header-bg,
23394
- $actionsheet-header-border,
23395
- $actionsheet-header-gradient
23571
+ $actionsheet-titlebar-text,
23572
+ $actionsheet-titlebar-bg,
23573
+ $actionsheet-titlebar-border,
23574
+ $actionsheet-titlebar-gradient
23396
23575
  );
23397
- @include box-shadow( $actionsheet-header-shadow );
23576
+ @include box-shadow( $actionsheet-titlebar-shadow );
23577
+ }
23578
+ .k-actionsheet-subtitle {
23579
+ @include fill( $color: $actionsheet-subtitle-text );
23398
23580
  }
23399
23581
 
23400
23582
 
@@ -23403,17 +23585,7 @@ $actionsheet-item-disabled-shadow: null !default;
23403
23585
 
23404
23586
 
23405
23587
  // Actionsheet item
23406
- .k-actionsheet-item {}
23407
-
23408
-
23409
- // Actionsheet item description
23410
- .k-actionsheet-item-description {
23411
- @include fill( $color: $actionsheet-item-description-text );
23412
- }
23413
-
23414
-
23415
- // Actionsheet action
23416
- .k-actionsheet-action {
23588
+ .k-actionsheet-item {
23417
23589
 
23418
23590
 
23419
23591
  // Hover state
@@ -23442,7 +23614,7 @@ $actionsheet-item-disabled-shadow: null !default;
23442
23614
  }
23443
23615
 
23444
23616
 
23445
- // Disabed state
23617
+ // Disabled state
23446
23618
  &:disabled,
23447
23619
  &.k-disabled {
23448
23620
  @include fill(
@@ -23455,6 +23627,22 @@ $actionsheet-item-disabled-shadow: null !default;
23455
23627
  }
23456
23628
  }
23457
23629
 
23630
+
23631
+ // Actionsheet item description
23632
+ .k-actionsheet-item-description {
23633
+ @include fill( $color: $actionsheet-item-description-text );
23634
+ }
23635
+
23636
+
23637
+ // Actionsheet action
23638
+ .k-actionsheet-action {}
23639
+
23640
+
23641
+ // Adaptive Actionsheet
23642
+ .k-adaptive-actionsheet .k-actionsheet-titlebar {
23643
+ @include fill( $border: $adaptive-actionsheet-titlebar-border );
23644
+ }
23645
+
23458
23646
  }
23459
23647
 
23460
23648
  // #endregion
@@ -43377,6 +43565,7 @@ $kendo-signature-maximized-line-width: k-map-get( $spacing, 1 ) - k-map-get( $sp
43377
43565
  height: 100%;
43378
43566
  display: block;
43379
43567
  z-index: 1;
43568
+ outline: none;
43380
43569
  }
43381
43570
 
43382
43571
  .k-signature-line {
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Green Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#131413",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Green",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f3f4f3",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Main Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#101010",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f0f0f0",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Opal Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#1e242d",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Opal",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#def4fd",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Silver Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#000000",
9
9
  "#131314",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Silver",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "5.8.2-dev.5",
6
+ "version": "5.8.2-dev.6",
7
7
  "previewColors": [
8
8
  "#ffffff",
9
9
  "#f3f3f4",
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.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,11 +43,11 @@
43
43
  "postpublish": "echo 'no postpublish for classic 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
  },
49
49
  "devDependencies": {
50
50
  "sass-build": "^1.0.0"
51
51
  },
52
- "gitHead": "071af936605691a801eaa4de3b8714e6223670f4"
52
+ "gitHead": "b1b2e33a3ce1b92bcefae87e8c46cbd797d814d1"
53
53
  }
@@ -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;