@progress/kendo-theme-bootstrap 5.5.1-dev.1 → 5.5.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.scss CHANGED
@@ -8156,8 +8156,8 @@ $kendo-list-font-size-lg: $font-size-md !default;
8156
8156
  /// @group list
8157
8157
  $kendo-list-line-height: null !default;
8158
8158
  $kendo-list-line-height-sm: (20 / 14) !default;
8159
- $kendo-list-line-height-md: null !default;
8160
- $kendo-list-line-height-lg: null !default;
8159
+ $kendo-list-line-height-md: $line-height-md !default;
8160
+ $kendo-list-line-height-lg: $line-height-md !default;
8161
8161
 
8162
8162
  /// Horizontal padding of list header, if no size is set.
8163
8163
  /// @group list
@@ -17320,6 +17320,10 @@ $progressbar-indeterminate-gradient: null !default;
17320
17320
 
17321
17321
  $progressbar-chunk-border: $body-bg !default;
17322
17322
 
17323
+ // Circular Progressbar
17324
+ $kendo-circular-progressbar-arc-stroke: $primary !default;
17325
+ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
17326
+
17323
17327
  // #endregion
17324
17328
  // #region @import "_layout.scss"; -> packages/bootstrap/scss/progressbar/_layout.scss
17325
17329
  // #region @import "~@progress/kendo-theme-default/scss/progressbar/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/progressbar/_layout.scss
@@ -17590,6 +17594,49 @@ $progressbar-chunk-border: $body-bg !default;
17590
17594
 
17591
17595
  }
17592
17596
 
17597
+ @include exports("circular-progressbar/layout") {
17598
+
17599
+ .k-circular-progressbar {
17600
+ display: inline-block;
17601
+ text-align: left;
17602
+ position: relative;
17603
+ }
17604
+
17605
+ .k-circular-progressbar-surface {
17606
+ height: 100%;
17607
+
17608
+ & > div {
17609
+ width: 100%;
17610
+ height: 100%;
17611
+ }
17612
+
17613
+ svg {
17614
+ width: 100%;
17615
+ height: 100%;
17616
+ }
17617
+ }
17618
+
17619
+ .k-circular-progressbar-scale {
17620
+ fill: none;
17621
+ }
17622
+
17623
+ .k-circular-progressbar-arc {
17624
+ transform-box: fill-box;
17625
+ transform-origin: center center;
17626
+ transform: rotate(-90deg);
17627
+ stroke-linecap: round;
17628
+ fill: none;
17629
+ }
17630
+
17631
+ .k-circular-progressbar-label {
17632
+ position: absolute;
17633
+ text-align: center;
17634
+ padding: 0;
17635
+ margin: 0;
17636
+ }
17637
+
17638
+ }
17639
+
17593
17640
  // #endregion
17594
17641
 
17595
17642
  // #endregion
@@ -17624,6 +17671,19 @@ $progressbar-chunk-border: $body-bg !default;
17624
17671
 
17625
17672
  }
17626
17673
 
17674
+ @include exports("circular-progressbar/theme") {
17675
+
17676
+ .k-circular-progressbar-scale {
17677
+ stroke: $kendo-circular-progressbar-scale-stroke;
17678
+ }
17679
+
17680
+ .k-circular-progressbar-arc {
17681
+ stroke: $kendo-circular-progressbar-arc-stroke;
17682
+ transition: stroke .5s ease;
17683
+ }
17684
+
17685
+ }
17686
+
17627
17687
  // #endregion
17628
17688
 
17629
17689
  // #endregion
@@ -18791,7 +18851,6 @@ $calendar-border: $component-border !default;
18791
18851
  $calendar-header-padding-x: map-get( $spacing, 1 ) !default;
18792
18852
  $calendar-header-padding-y: map-get( $spacing, 1 ) !default;
18793
18853
  $calendar-header-border-width: 1px !default;
18794
- $calendar-header-min-width: ( $calendar-cell-size * 8 ) !default;
18795
18854
 
18796
18855
  $calendar-header-bg: $header-bg !default;
18797
18856
  $calendar-header-text: $header-text !default;
@@ -18889,6 +18948,50 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18889
18948
 
18890
18949
  // Multiview calendar
18891
18950
 
18951
+
18952
+ // Calendar sizes
18953
+ $kendo-calendar-sm-font-size: $font-size-md !default;
18954
+ $kendo-calendar-sm-line-height: $line-height-md !default;
18955
+ $kendo-calendar-sm-cell-size: 32px !default;
18956
+ $kendo-calendar-sm-cell-padding-x: .125rem !default;
18957
+ $kendo-calendar-sm-cell-padding-y: .125rem !default;
18958
+
18959
+ $kendo-calendar-md-font-size: $font-size-md !default;
18960
+ $kendo-calendar-md-line-height: $line-height-md !default;
18961
+ $kendo-calendar-md-cell-size: 36px !default;
18962
+ $kendo-calendar-md-cell-padding-x: map-get( $spacing, 1 ) !default;
18963
+ $kendo-calendar-md-cell-padding-y: map-get( $spacing, 1 ) !default;
18964
+
18965
+ $kendo-calendar-lg-font-size: $font-size-lg !default;
18966
+ $kendo-calendar-lg-line-height: $line-height-lg !default;
18967
+ $kendo-calendar-lg-cell-size: 40px !default;
18968
+ $kendo-calendar-lg-cell-padding-x: map-get( $spacing, 1 ) !default;
18969
+ $kendo-calendar-lg-cell-padding-y: map-get( $spacing, 1 ) !default;
18970
+
18971
+ $kendo-calendar-sizes: (
18972
+ sm: (
18973
+ font-size: $kendo-calendar-sm-font-size,
18974
+ line-height: $kendo-calendar-sm-line-height,
18975
+ cell-size: $kendo-calendar-sm-cell-size,
18976
+ cell-padding-x: $kendo-calendar-sm-cell-padding-y,
18977
+ cell-padding-y: $kendo-calendar-sm-cell-padding-x
18978
+ ),
18979
+ md: (
18980
+ font-size: $kendo-calendar-md-font-size,
18981
+ line-height: $kendo-calendar-md-line-height,
18982
+ cell-size: $kendo-calendar-md-cell-size,
18983
+ cell-padding-x: $kendo-calendar-md-cell-padding-y,
18984
+ cell-padding-y: $kendo-calendar-md-cell-padding-x
18985
+ ),
18986
+ lg: (
18987
+ font-size: $kendo-calendar-lg-font-size,
18988
+ line-height: $kendo-calendar-lg-line-height,
18989
+ cell-size: $kendo-calendar-lg-cell-size,
18990
+ cell-padding-x: $kendo-calendar-lg-cell-padding-y,
18991
+ cell-padding-y: $kendo-calendar-lg-cell-padding-x
18992
+ )
18993
+ ) !default;
18994
+
18892
18995
  // #endregion
18893
18996
  // #region @import "_layout.scss"; -> packages/bootstrap/scss/calendar/_layout.scss
18894
18997
  // #region @import "~@progress/kendo-theme-default/scss/calendar/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/calendar/_layout.scss
@@ -18896,6 +18999,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18896
18999
 
18897
19000
  // Base
18898
19001
  .k-calendar {
19002
+ inline-size: var( --INTERNAL--kendo-calendar-width, min-content );
19003
+ block-size: var( --INTERNAL--kendo-calendar-height, min-content );
18899
19004
  border-width: $calendar-border-width;
18900
19005
  border-style: solid;
18901
19006
  box-sizing: border-box;
@@ -18916,19 +19021,12 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18916
19021
  > .k-calendar {
18917
19022
  border: 0;
18918
19023
  }
18919
-
18920
- // Common
18921
- .k-link {
18922
- white-space: normal;
18923
- position: relative;
18924
- overflow: hidden;
18925
- }
18926
19024
  }
18927
19025
 
18928
19026
 
18929
19027
  // Calendar table
18930
19028
  .k-calendar-table {
18931
- margin: 0;
19029
+ margin: 0 auto;
18932
19030
  border-width: 0;
18933
19031
  border-color: inherit;
18934
19032
  border-spacing: 0;
@@ -18936,8 +19034,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18936
19034
  table-layout: fixed;
18937
19035
  text-align: center;
18938
19036
  outline: 0;
18939
- display: inline-table;
18940
- vertical-align: top;
19037
+ display: table;
18941
19038
  position: relative;
18942
19039
  z-index: 1;
18943
19040
  }
@@ -18955,6 +19052,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18955
19052
  font-weight: $calendar-caption-font-weight;
18956
19053
  cursor: default;
18957
19054
  }
19055
+
19056
+
19057
+ // Calendar cell
18958
19058
  .k-calendar-th,
18959
19059
  .k-calendar-td {
18960
19060
  border-width: 0;
@@ -18976,10 +19076,32 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18976
19076
  }
18977
19077
  .k-calendar-td {
18978
19078
  @include border-radius( $calendar-cell-border-radius );
19079
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
19080
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
18979
19081
  border-color: transparent;
18980
19082
  }
18981
19083
 
18982
19084
 
19085
+ // Calendar cell inner
19086
+ // Remove .k-calendar once we remove k-link
19087
+ .k-calendar .k-calendar-cell-inner {
19088
+ @include border-radius( $calendar-cell-border-radius );
19089
+ padding: $calendar-cell-padding-y $calendar-cell-padding-x;
19090
+ padding-inline: var( --INTERNAL--kendo-calendar-cell-padding-x, #{$calendar-cell-padding-x} );
19091
+ padding-block: var( --INTERNAL--kendo-calendar-cell-padding-y, #{$calendar-cell-padding-y} );
19092
+ width: 100%;
19093
+ height: 100%;
19094
+ box-sizing: border-box;
19095
+ display: flex;
19096
+ flex-direction: row;
19097
+ align-items: center;
19098
+ justify-content: center;
19099
+ white-space: normal;
19100
+ position: relative;
19101
+ overflow: hidden;
19102
+ }
19103
+
19104
+
18983
19105
  // Calendar header
18984
19106
  .k-calendar .k-header {
18985
19107
  padding: $calendar-header-padding-y $calendar-header-padding-x;
@@ -18997,7 +19119,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18997
19119
  // Calendar header
18998
19120
  .k-calendar-header {
18999
19121
  padding: $calendar-header-padding-y $calendar-header-padding-x;
19000
- min-width: $calendar-header-min-width;
19122
+ min-width: ($calendar-cell-size * 8);
19001
19123
  box-sizing: border-box;
19002
19124
  display: flex;
19003
19125
  align-items: center;
@@ -19039,22 +19161,13 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19039
19161
  padding: 0 $calendar-header-padding-x;
19040
19162
  // setting width / height prevents layout changes in meta views
19041
19163
  width: $calendar-view-width;
19164
+ inline-size: var( --INTERNAL--kendo-calendar-view-width, #{$calendar-view-width});
19042
19165
  min-height: $calendar-view-height;
19043
19166
  box-sizing: content-box;
19044
19167
  gap: $calendar-view-gap;
19045
19168
  position: relative;
19046
19169
  z-index: 1;
19047
19170
  overflow: hidden;
19048
-
19049
- .k-link {
19050
- @include border-radius( $calendar-cell-border-radius );
19051
- padding: $calendar-cell-padding-y $calendar-cell-padding-x;
19052
- box-sizing: border-box;
19053
- display: flex;
19054
- flex-direction: row;
19055
- align-items: center;
19056
- justify-content: center;
19057
- }
19058
19171
  }
19059
19172
  .k-week-number .k-calendar-view {
19060
19173
  width: (8 * $calendar-cell-size);
@@ -19062,61 +19175,59 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19062
19175
 
19063
19176
 
19064
19177
  // Month view
19178
+ .k-month-calendar,
19065
19179
  .k-calendar-monthview {
19066
19180
  $_month-cell-size: $calendar-cell-size;
19067
19181
 
19068
19182
  .k-calendar-td {
19069
19183
  width: $_month-cell-size;
19070
19184
  height: $_month-cell-size;
19071
- }
19072
- .k-link {
19073
- width: $_month-cell-size;
19074
- height: $_month-cell-size;
19185
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
19186
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
19075
19187
  }
19076
19188
  }
19077
19189
 
19078
19190
 
19079
19191
  // Year view
19192
+ .k-year-calendar,
19080
19193
  .k-calendar-yearview {
19081
- $_year-cell-size: ( (7 / 4) * $calendar-cell-size);
19194
+ $_year-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
19082
19195
 
19083
19196
  .k-calendar-td {
19084
- width: auto;
19085
- height: auto;
19086
- }
19087
- .k-link {
19088
19197
  width: $_year-cell-size;
19089
19198
  height: $_year-cell-size;
19199
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
19200
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
19090
19201
  }
19091
19202
  }
19092
19203
 
19093
19204
 
19094
19205
  // Decade view
19206
+ .k-decade-calendar,
19095
19207
  .k-calendar-decadeview {
19096
- $_decade-cell-size: ( (7 / 4) * $calendar-cell-size);
19208
+ $_decade-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
19097
19209
 
19098
19210
  .k-calendar-td {
19099
- width: auto;
19100
- height: auto;
19101
- }
19102
- .k-link {
19103
19211
  width: $_decade-cell-size;
19104
19212
  height: $_decade-cell-size;
19213
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
19214
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
19105
19215
  }
19106
19216
  }
19107
19217
 
19108
19218
 
19109
19219
  // Century view
19220
+ .k-century-calendar,
19110
19221
  .k-calendar-centuryview {
19111
- $_century-cell-size: ( (7 / 4) * $calendar-cell-size);
19222
+ $_century-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
19112
19223
 
19113
19224
  .k-calendar-td {
19114
- width: auto;
19115
- height: auto;
19116
- }
19117
- .k-link {
19118
19225
  width: $_century-cell-size;
19119
19226
  height: $_century-cell-size;
19227
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
19228
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
19229
+ }
19230
+ .k-calendar-cell-inner {
19120
19231
  text-align: left;
19121
19232
  }
19122
19233
  }
@@ -19156,6 +19267,56 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19156
19267
  top: 0;
19157
19268
  right: 0;
19158
19269
  }
19270
+
19271
+
19272
+
19273
+
19274
+ // Calendar sizes
19275
+ @each $size, $size-props in $kendo-calendar-sizes {
19276
+ $_font-size: map-get( $size-props, font-size );
19277
+ $_line-height: map-get( $size-props, line-height );
19278
+ $_cell-size: map-get( $size-props, cell-size );
19279
+ $_cell-padding-x: map-get( $size-props, cell-padding-x );
19280
+ $_cell-padding-y: map-get( $size-props, cell-padding-y );
19281
+
19282
+ $_month-cell-size: $_cell-size;
19283
+ $_year-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
19284
+ $_decade-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
19285
+ $_century-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
19286
+
19287
+ .k-calendar-#{$size} {
19288
+ --INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
19289
+ --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-#{$size}-cell-padding-x, #{$_cell-padding-x} );
19290
+ --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-#{$size}-cell-padding-y, #{$_cell-padding-y} );
19291
+ font-size: $_font-size;
19292
+ line-height: $_line-height;
19293
+
19294
+ &.k-month-calendar,
19295
+ .k-calendar-monthview {
19296
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-month-cell-size, #{$_month-cell-size} );
19297
+ }
19298
+ &.k-year-calendar,
19299
+ .k-calendar-yearview {
19300
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-year-cell-size, #{$_year-cell-size} );
19301
+ }
19302
+ &.k-decade-calendar,
19303
+ .k-calendar-decadeview {
19304
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-decade-cell-size, #{$_decade-cell-size} );
19305
+ }
19306
+ &.k-century-calendar,
19307
+ .k-calendar-centuryview {
19308
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-century-cell-size, #{$_century-cell-size} );
19309
+ }
19310
+ }
19311
+ }
19312
+
19313
+
19314
+
19315
+
19316
+ // Alias
19317
+ .k-link {
19318
+ @extend .k-calendar-cell-inner;
19319
+ }
19159
19320
  }
19160
19321
 
19161
19322
 
@@ -19407,8 +19568,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19407
19568
  &.k-hover,
19408
19569
  &.k-state-hover,
19409
19570
  &:focus,
19410
- &.k-state-focus,
19411
- &.k-focus {
19571
+ &.k-focus,
19572
+ &.k-state-focus {
19412
19573
  color: $calendar-today-nav-hover-text;
19413
19574
  }
19414
19575
  }
@@ -19426,11 +19587,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19426
19587
  // Special days
19427
19588
  .k-calendar-view .k-today {
19428
19589
  @if $calendar-today-style == box {
19429
- .k-link {
19590
+ .k-calendar-cell-inner {
19430
19591
  box-shadow: inset 0 0 0 1px $calendar-today-color;
19431
19592
  }
19432
- &.k-state-focused .k-link,
19433
- &.k-focus .k-link {
19593
+ &.k-focus .k-calendar-cell-inner,
19594
+ &.k-state-focused .k-calendar-cell-inner {
19434
19595
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
19435
19596
  }
19436
19597
  } @else if $calendar-today-style == color {
@@ -19464,9 +19625,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19464
19625
 
19465
19626
 
19466
19627
  // Interactive states
19467
- .k-calendar-td:hover .k-link,
19468
- .k-calendar-td.k-state-hover .k-link,
19469
- .k-calendar-td.k-hover .k-link {
19628
+ .k-calendar-td:hover .k-calendar-cell-inner,
19629
+ .k-calendar-td.k-hover .k-calendar-cell-inner,
19630
+ .k-calendar-td.k-state-hover .k-calendar-cell-inner {
19470
19631
  @include fill(
19471
19632
  $calendar-cell-hover-text,
19472
19633
  $calendar-cell-hover-bg,
@@ -19474,8 +19635,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19474
19635
  $calendar-cell-hover-gradient
19475
19636
  );
19476
19637
  }
19477
- .k-calendar-td.k-state-selected .k-link,
19478
- .k-calendar-td.k-selected .k-link {
19638
+ .k-calendar-td.k-selected .k-calendar-cell-inner,
19639
+ .k-calendar-td.k-state-selected .k-calendar-cell-inner {
19479
19640
  @include fill(
19480
19641
  $calendar-cell-selected-text,
19481
19642
  $calendar-cell-selected-bg,
@@ -19483,12 +19644,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19483
19644
  $calendar-cell-selected-gradient
19484
19645
  );
19485
19646
  }
19486
- .k-calendar-td.k-state-selected:hover .k-link,
19487
- .k-calendar-td.k-selected:hover .k-link,
19488
- .k-calendar-td.k-state-selected.k-state-hover .k-link,
19489
- .k-calendar-td.k-selected.k-hover .k-link,
19490
- .k-calendar-td.k-selected:hover .k-link,
19491
- .k-calendar-td.k-selected.k-hover .k-link {
19647
+ .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
19648
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
19649
+ .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
19492
19650
  @include fill(
19493
19651
  $calendar-cell-selected-hover-text,
19494
19652
  $calendar-cell-selected-hover-bg,
@@ -19496,18 +19654,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19496
19654
  $calendar-cell-selected-hover-gradient
19497
19655
  );
19498
19656
  }
19499
- .k-calendar-td.k-state-focused .k-link,
19500
- .k-calendar-td.k-focus .k-link,
19501
- .k-calendar-td.k-state-focus .k-link,
19502
- .k-calendar-td.k-focus .k-link {
19657
+ .k-calendar-td:focus .k-calendar-cell-inner,
19658
+ .k-calendar-td.k-focus .k-calendar-cell-inner,
19659
+ .k-calendar-td.k-state-focus .k-calendar-cell-inner,
19660
+ .k-calendar-td.k-state-focused .k-calendar-cell-inner {
19503
19661
  box-shadow: $calendar-cell-focused-shadow;
19504
19662
  }
19505
- .k-calendar-td.k-state-selected.k-state-focused .k-link,
19506
- .k-calendar-td.k-selected.k-focused .k-link,
19507
- .k-calendar-td.k-state-selected.k-state-focus .k-link,
19508
- .k-calendar-td.k-selected.k-focus .k-link,
19509
- .k-calendar-td.k-selected:focus .k-link,
19510
- .k-calendar-td.k-selected.k-focus .k-link {
19663
+ .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
19664
+ .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
19665
+ .k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
19511
19666
  box-shadow: $calendar-cell-selected-focus-shadow;
19512
19667
  }
19513
19668
 
@@ -19521,8 +19676,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19521
19676
  box-shadow: inset -1px 0 $calendar-navigation-border;
19522
19677
 
19523
19678
  li:hover,
19524
- li.k-state-hover,
19525
- li.k-hover {
19679
+ li.k-hover,
19680
+ li.k-state-hover {
19526
19681
  color: $calendar-today-nav-hover-text;
19527
19682
  }
19528
19683
  }
@@ -19577,19 +19732,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19577
19732
  .k-range-start,
19578
19733
  .k-range-end,
19579
19734
  .k-range-mid {
19580
- // sass-lint:disable-block indentation
19581
- background-image:
19582
- linear-gradient(
19583
- transparent $calendar-range-gap,
19584
- $calendar-range-bg $calendar-range-gap,
19585
- $calendar-range-bg calc(100% - #{$calendar-range-gap}),
19586
- transparent calc(100% - #{$calendar-range-gap})
19587
- );
19588
-
19589
- .k-ie & {
19590
- background-image: none;
19591
- background-color: $calendar-range-bg;
19592
- }
19735
+ background-color: $calendar-range-bg;
19593
19736
  }
19594
19737
 
19595
19738
  .k-range-start.k-range-end {
@@ -19599,16 +19742,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19599
19742
 
19600
19743
  .k-range-start,
19601
19744
  .k-range-end {
19602
- .k-link {
19745
+ .k-calendar-cell-inner {
19603
19746
  background-color: $calendar-cell-selected-bg;
19604
19747
  }
19605
19748
  }
19606
19749
 
19607
- .k-range-start.k-state-active,
19608
19750
  .k-range-start.k-active,
19609
- .k-range-end.k-state-active,
19610
- .k-range-end.k-active {
19611
- .k-link {
19751
+ .k-range-start.k-state-active,
19752
+ .k-range-end.k-active,
19753
+ .k-range-end.k-state-active {
19754
+ .k-calendar-cell-inner {
19612
19755
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
19613
19756
  }
19614
19757
  }
@@ -19621,8 +19764,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19621
19764
  content: "";
19622
19765
  display: block;
19623
19766
  position: absolute;
19624
- top: $calendar-range-gap;
19625
- bottom: $calendar-range-gap;
19767
+ top: 0;
19768
+ bottom: 0;
19626
19769
  width: $calendar-range-split-size;
19627
19770
  }
19628
19771
  }
@@ -19700,6 +19843,44 @@ $time-list-highlight-border: $component-border !default;
19700
19843
 
19701
19844
  $time-list-focused-bg: rgba(0, 0, 0, .02) !default;
19702
19845
 
19846
+
19847
+ // Time selector sizes
19848
+ $kendo-time-selector-sm-font-size: $kendo-list-font-size-sm !default;
19849
+ $kendo-time-selector-sm-line-height: $kendo-list-line-height-sm !default;
19850
+ $kendo-time-selector-sm-list-item-padding-x: $kendo-list-item-padding-x-sm !default;
19851
+ $kendo-time-selector-sm-list-item-padding-y: $kendo-list-item-padding-y-sm !default;
19852
+
19853
+ $kendo-time-selector-md-font-size: $kendo-list-font-size-md !default;
19854
+ $kendo-time-selector-md-line-height: $kendo-list-line-height-md !default;
19855
+ $kendo-time-selector-md-list-item-padding-x: $kendo-list-item-padding-x-md !default;
19856
+ $kendo-time-selector-md-list-item-padding-y: $kendo-list-item-padding-y-md !default;
19857
+
19858
+ $kendo-time-selector-lg-font-size: $kendo-list-font-size-lg !default;
19859
+ $kendo-time-selector-lg-line-height: $kendo-list-line-height-lg !default;
19860
+ $kendo-time-selector-lg-list-item-padding-x: $kendo-list-item-padding-x-lg !default;
19861
+ $kendo-time-selector-lg-list-item-padding-y: $kendo-list-item-padding-y-lg !default;
19862
+
19863
+ $kendo-time-selector-sizes: (
19864
+ sm: (
19865
+ font-size: $kendo-time-selector-sm-font-size,
19866
+ line-height: $kendo-time-selector-sm-line-height,
19867
+ list-item-padding-x: $kendo-time-selector-sm-list-item-padding-x,
19868
+ list-item-padding-y: $kendo-time-selector-sm-list-item-padding-y
19869
+ ),
19870
+ md: (
19871
+ font-size: $kendo-time-selector-md-font-size,
19872
+ line-height: $kendo-time-selector-md-line-height,
19873
+ list-item-padding-x: $kendo-time-selector-md-list-item-padding-x,
19874
+ list-item-padding-y: $kendo-time-selector-md-list-item-padding-y
19875
+ ),
19876
+ lg: (
19877
+ font-size: $kendo-time-selector-lg-font-size,
19878
+ line-height: $kendo-time-selector-lg-line-height,
19879
+ list-item-padding-x: $kendo-time-selector-lg-list-item-padding-x,
19880
+ list-item-padding-y: $kendo-time-selector-lg-list-item-padding-y
19881
+ )
19882
+ ) !default;
19883
+
19703
19884
  // #endregion
19704
19885
  // #region @import "_layout.scss"; -> packages/bootstrap/scss/timeselector/_layout.scss
19705
19886
  // #region @import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/timeselector/_layout.scss
@@ -19911,6 +20092,36 @@ $time-list-focused-bg: rgba(0, 0, 0, .02) !default;
19911
20092
  top: calc( #{$time-list-title-height / 2} );
19912
20093
  }
19913
20094
 
20095
+
20096
+ // Time selector sizes
20097
+ @each $size, $size-props in $kendo-time-selector-sizes {
20098
+ $_font-size: map-get( $size-props, font-size );
20099
+ $_line-height: map-get( $size-props, line-height );
20100
+ $_list-item-padding-x: map-get( $size-props, list-item-padding-x );
20101
+ $_list-item-padding-y: map-get( $size-props, list-item-padding-y );
20102
+ $_highlight-height: calc( #{$_font-size * $_line-height} + #{ $_list-item-padding-y * 2} );
20103
+
20104
+
20105
+ .k-timeselector-#{$size} {
20106
+ font-size: $_font-size;
20107
+ line-height: $_line-height;
20108
+
20109
+ .k-time-highlight,
20110
+ .k-time-list-highlight {
20111
+ height: $_highlight-height;
20112
+ }
20113
+
20114
+ .k-time-separator {
20115
+ height: $_highlight-height;
20116
+ }
20117
+
20118
+ .k-time-list-item,
20119
+ .k-time-list .k-item {
20120
+ padding: $_list-item-padding-y $_list-item-padding-x;
20121
+ }
20122
+ }
20123
+ }
20124
+
19914
20125
  }
19915
20126
 
19916
20127
  // #endregion
@@ -24534,6 +24745,10 @@ $actionsheet-item-disabled-shadow: null !default;
24534
24745
  box-sizing: border-box;
24535
24746
  }
24536
24747
  }
24748
+ .k-actionsheet-fullscreen {
24749
+ max-height: 100%;
24750
+ height: 100%;
24751
+ }
24537
24752
 
24538
24753
 
24539
24754
  // Actionsheet header
@@ -24547,6 +24762,35 @@ $actionsheet-item-disabled-shadow: null !default;
24547
24762
  font-size: $actionsheet-header-font-size;
24548
24763
  font-family: $actionsheet-header-font-family;
24549
24764
  line-height: $actionsheet-header-line-height;
24765
+ flex: none;
24766
+ }
24767
+
24768
+
24769
+ // Actionsheet titlebar
24770
+ .k-actionsheet-titlebar {
24771
+ @extend .k-actionsheet-header !optional;
24772
+ display: flex;
24773
+ flex-flow: row nowrap;
24774
+ align-items: center;
24775
+ }
24776
+ .k-actionsheet-title {
24777
+ flex: 1;
24778
+ }
24779
+ .k-actionsheet-actions {
24780
+ flex: none;
24781
+ }
24782
+
24783
+
24784
+ // Actionsheet content
24785
+ .k-actionsheet-content {
24786
+ flex: 1;
24787
+ overflow: auto;
24788
+ }
24789
+
24790
+
24791
+ // Actionsheet footer
24792
+ .k-actionsheet-footer {
24793
+ flex: none;
24550
24794
  }
24551
24795
 
24552
24796
 
@@ -24643,6 +24887,37 @@ $actionsheet-item-disabled-shadow: null !default;
24643
24887
  transform: none;
24644
24888
  }
24645
24889
 
24890
+
24891
+ // Adaptive action sheet
24892
+ .k-adaptive-actionsheet {
24893
+ max-width: 100%;
24894
+ width: 100%;
24895
+
24896
+ // TMP: this should be moved to action sheet
24897
+ display: flex;
24898
+ flex-flow: column nowrap;
24899
+
24900
+ .k-calendar {
24901
+ margin-inline: auto;
24902
+ border-width: 0;
24903
+ display: flex;
24904
+ }
24905
+
24906
+ .k-timeselector {
24907
+ height: 100%;
24908
+ border-width: 0;
24909
+ overflow: hidden;
24910
+
24911
+ .k-time-part {
24912
+ display: contents;
24913
+ }
24914
+
24915
+ .k-time-list-wrapper {
24916
+ height: 100%;
24917
+ }
24918
+ }
24919
+ }
24920
+
24646
24921
  }
24647
24922
 
24648
24923
  // #endregion
@@ -44350,8 +44625,6 @@ $treemap-line-height: $line-height !default;
44350
44625
  }
44351
44626
 
44352
44627
 
44353
-
44354
-
44355
44628
  @include exports("dataviz/treemap/theme") {
44356
44629
 
44357
44630
  // Treemap