@progress/kendo-theme-classic 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
@@ -6123,8 +6123,8 @@ $kendo-list-font-size-lg: $font-size-lg !default;
6123
6123
  /// Line height of the list component, if no size is set.
6124
6124
  /// @group list
6125
6125
  $kendo-list-line-height: null !default;
6126
- $kendo-list-line-height-sm: null !default;
6127
- $kendo-list-line-height-md: null !default;
6126
+ $kendo-list-line-height-sm: $line-height-md !default;
6127
+ $kendo-list-line-height-md: $line-height-md !default;
6128
6128
  $kendo-list-line-height-lg: $line-height-lg !default;
6129
6129
 
6130
6130
  /// Horizontal padding of list header, if no size is set.
@@ -15186,6 +15186,10 @@ $progressbar-indeterminate-gradient: null !default;
15186
15186
 
15187
15187
  $progressbar-chunk-border: $body-bg !default;
15188
15188
 
15189
+ // Circular Progressbar
15190
+ $kendo-circular-progressbar-arc-stroke: $primary !default;
15191
+ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
15192
+
15189
15193
  // #endregion
15190
15194
  // #region @import "_layout.scss"; -> packages/classic/scss/progressbar/_layout.scss
15191
15195
  // #region @import "~@progress/kendo-theme-default/scss/progressbar/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/progressbar/_layout.scss
@@ -15456,6 +15460,49 @@ $progressbar-chunk-border: $body-bg !default;
15456
15460
 
15457
15461
  }
15458
15462
 
15463
+ @include exports("circular-progressbar/layout") {
15464
+
15465
+ .k-circular-progressbar {
15466
+ display: inline-block;
15467
+ text-align: left;
15468
+ position: relative;
15469
+ }
15470
+
15471
+ .k-circular-progressbar-surface {
15472
+ height: 100%;
15473
+
15474
+ & > div {
15475
+ width: 100%;
15476
+ height: 100%;
15477
+ }
15478
+
15479
+ svg {
15480
+ width: 100%;
15481
+ height: 100%;
15482
+ }
15483
+ }
15484
+
15485
+ .k-circular-progressbar-scale {
15486
+ fill: none;
15487
+ }
15488
+
15489
+ .k-circular-progressbar-arc {
15490
+ transform-box: fill-box;
15491
+ transform-origin: center center;
15492
+ transform: rotate(-90deg);
15493
+ stroke-linecap: round;
15494
+ fill: none;
15495
+ }
15496
+
15497
+ .k-circular-progressbar-label {
15498
+ position: absolute;
15499
+ text-align: center;
15500
+ padding: 0;
15501
+ margin: 0;
15502
+ }
15503
+
15504
+ }
15505
+
15459
15506
  // #endregion
15460
15507
 
15461
15508
  // #endregion
@@ -15490,6 +15537,19 @@ $progressbar-chunk-border: $body-bg !default;
15490
15537
 
15491
15538
  }
15492
15539
 
15540
+ @include exports("circular-progressbar/theme") {
15541
+
15542
+ .k-circular-progressbar-scale {
15543
+ stroke: $kendo-circular-progressbar-scale-stroke;
15544
+ }
15545
+
15546
+ .k-circular-progressbar-arc {
15547
+ stroke: $kendo-circular-progressbar-arc-stroke;
15548
+ transition: stroke .5s ease;
15549
+ }
15550
+
15551
+ }
15552
+
15493
15553
  // #endregion
15494
15554
 
15495
15555
  // #endregion
@@ -16651,7 +16711,6 @@ $calendar-border: $component-border !default;
16651
16711
  $calendar-header-padding-x: map-get( $spacing, 1 ) !default;
16652
16712
  $calendar-header-padding-y: map-get( $spacing, 1 ) !default;
16653
16713
  $calendar-header-border-width: 1px !default;
16654
- $calendar-header-min-width: ($calendar-cell-size * 8) !default;
16655
16714
 
16656
16715
  $calendar-header-bg: $header-bg !default;
16657
16716
  $calendar-header-text: $header-text !default;
@@ -16749,6 +16808,50 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16749
16808
 
16750
16809
  // Multiview calendar
16751
16810
 
16811
+
16812
+ // Calendar sizes
16813
+ $kendo-calendar-sm-font-size: $font-size-md !default;
16814
+ $kendo-calendar-sm-line-height: $line-height-md !default;
16815
+ $kendo-calendar-sm-cell-size: 28px !default;
16816
+ $kendo-calendar-sm-cell-padding-x: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
16817
+ $kendo-calendar-sm-cell-padding-y: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
16818
+
16819
+ $kendo-calendar-md-font-size: $font-size-md !default;
16820
+ $kendo-calendar-md-line-height: $line-height-md !default;
16821
+ $kendo-calendar-md-cell-size: 32px !default;
16822
+ $kendo-calendar-md-cell-padding-x: map-get( $spacing, 1 ) !default;
16823
+ $kendo-calendar-md-cell-padding-y: map-get( $spacing, 1 ) !default;
16824
+
16825
+ $kendo-calendar-lg-font-size: $font-size-lg !default;
16826
+ $kendo-calendar-lg-line-height: $line-height-lg !default;
16827
+ $kendo-calendar-lg-cell-size: 40px !default;
16828
+ $kendo-calendar-lg-cell-padding-x: map-get( $spacing, 2 ) !default;
16829
+ $kendo-calendar-lg-cell-padding-y: map-get( $spacing, 2 ) !default;
16830
+
16831
+ $kendo-calendar-sizes: (
16832
+ sm: (
16833
+ font-size: $kendo-calendar-sm-font-size,
16834
+ line-height: $kendo-calendar-sm-line-height,
16835
+ cell-size: $kendo-calendar-sm-cell-size,
16836
+ cell-padding-x: $kendo-calendar-sm-cell-padding-y,
16837
+ cell-padding-y: $kendo-calendar-sm-cell-padding-x
16838
+ ),
16839
+ md: (
16840
+ font-size: $kendo-calendar-md-font-size,
16841
+ line-height: $kendo-calendar-md-line-height,
16842
+ cell-size: $kendo-calendar-md-cell-size,
16843
+ cell-padding-x: $kendo-calendar-md-cell-padding-y,
16844
+ cell-padding-y: $kendo-calendar-md-cell-padding-x
16845
+ ),
16846
+ lg: (
16847
+ font-size: $kendo-calendar-lg-font-size,
16848
+ line-height: $kendo-calendar-lg-line-height,
16849
+ cell-size: $kendo-calendar-lg-cell-size,
16850
+ cell-padding-x: $kendo-calendar-lg-cell-padding-y,
16851
+ cell-padding-y: $kendo-calendar-lg-cell-padding-x
16852
+ )
16853
+ ) !default;
16854
+
16752
16855
  // #endregion
16753
16856
  // #region @import "_layout.scss"; -> packages/classic/scss/calendar/_layout.scss
16754
16857
  // #region @import "~@progress/kendo-theme-default/scss/calendar/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/calendar/_layout.scss
@@ -16756,6 +16859,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16756
16859
 
16757
16860
  // Base
16758
16861
  .k-calendar {
16862
+ inline-size: var( --INTERNAL--kendo-calendar-width, min-content );
16863
+ block-size: var( --INTERNAL--kendo-calendar-height, min-content );
16759
16864
  border-width: $calendar-border-width;
16760
16865
  border-style: solid;
16761
16866
  box-sizing: border-box;
@@ -16776,19 +16881,12 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16776
16881
  > .k-calendar {
16777
16882
  border: 0;
16778
16883
  }
16779
-
16780
- // Common
16781
- .k-link {
16782
- white-space: normal;
16783
- position: relative;
16784
- overflow: hidden;
16785
- }
16786
16884
  }
16787
16885
 
16788
16886
 
16789
16887
  // Calendar table
16790
16888
  .k-calendar-table {
16791
- margin: 0;
16889
+ margin: 0 auto;
16792
16890
  border-width: 0;
16793
16891
  border-color: inherit;
16794
16892
  border-spacing: 0;
@@ -16796,8 +16894,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16796
16894
  table-layout: fixed;
16797
16895
  text-align: center;
16798
16896
  outline: 0;
16799
- display: inline-table;
16800
- vertical-align: top;
16897
+ display: table;
16801
16898
  position: relative;
16802
16899
  z-index: 1;
16803
16900
  }
@@ -16815,6 +16912,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16815
16912
  font-weight: $calendar-caption-font-weight;
16816
16913
  cursor: default;
16817
16914
  }
16915
+
16916
+
16917
+ // Calendar cell
16818
16918
  .k-calendar-th,
16819
16919
  .k-calendar-td {
16820
16920
  border-width: 0;
@@ -16836,10 +16936,32 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16836
16936
  }
16837
16937
  .k-calendar-td {
16838
16938
  @include border-radius( $calendar-cell-border-radius );
16939
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
16940
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
16839
16941
  border-color: transparent;
16840
16942
  }
16841
16943
 
16842
16944
 
16945
+ // Calendar cell inner
16946
+ // Remove .k-calendar once we remove k-link
16947
+ .k-calendar .k-calendar-cell-inner {
16948
+ @include border-radius( $calendar-cell-border-radius );
16949
+ padding: $calendar-cell-padding-y $calendar-cell-padding-x;
16950
+ padding-inline: var( --INTERNAL--kendo-calendar-cell-padding-x, #{$calendar-cell-padding-x} );
16951
+ padding-block: var( --INTERNAL--kendo-calendar-cell-padding-y, #{$calendar-cell-padding-y} );
16952
+ width: 100%;
16953
+ height: 100%;
16954
+ box-sizing: border-box;
16955
+ display: flex;
16956
+ flex-direction: row;
16957
+ align-items: center;
16958
+ justify-content: center;
16959
+ white-space: normal;
16960
+ position: relative;
16961
+ overflow: hidden;
16962
+ }
16963
+
16964
+
16843
16965
  // Calendar header
16844
16966
  .k-calendar .k-header {
16845
16967
  padding: $calendar-header-padding-y $calendar-header-padding-x;
@@ -16857,7 +16979,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16857
16979
  // Calendar header
16858
16980
  .k-calendar-header {
16859
16981
  padding: $calendar-header-padding-y $calendar-header-padding-x;
16860
- min-width: $calendar-header-min-width;
16982
+ min-width: ($calendar-cell-size * 8);
16861
16983
  box-sizing: border-box;
16862
16984
  display: flex;
16863
16985
  align-items: center;
@@ -16899,22 +17021,13 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16899
17021
  padding: 0 $calendar-header-padding-x;
16900
17022
  // setting width / height prevents layout changes in meta views
16901
17023
  width: $calendar-view-width;
17024
+ inline-size: var( --INTERNAL--kendo-calendar-view-width, #{$calendar-view-width});
16902
17025
  min-height: $calendar-view-height;
16903
17026
  box-sizing: content-box;
16904
17027
  gap: $calendar-view-gap;
16905
17028
  position: relative;
16906
17029
  z-index: 1;
16907
17030
  overflow: hidden;
16908
-
16909
- .k-link {
16910
- @include border-radius( $calendar-cell-border-radius );
16911
- padding: $calendar-cell-padding-y $calendar-cell-padding-x;
16912
- box-sizing: border-box;
16913
- display: flex;
16914
- flex-direction: row;
16915
- align-items: center;
16916
- justify-content: center;
16917
- }
16918
17031
  }
16919
17032
  .k-week-number .k-calendar-view {
16920
17033
  width: (8 * $calendar-cell-size);
@@ -16922,61 +17035,59 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16922
17035
 
16923
17036
 
16924
17037
  // Month view
17038
+ .k-month-calendar,
16925
17039
  .k-calendar-monthview {
16926
17040
  $_month-cell-size: $calendar-cell-size;
16927
17041
 
16928
17042
  .k-calendar-td {
16929
17043
  width: $_month-cell-size;
16930
17044
  height: $_month-cell-size;
16931
- }
16932
- .k-link {
16933
- width: $_month-cell-size;
16934
- height: $_month-cell-size;
17045
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
17046
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
16935
17047
  }
16936
17048
  }
16937
17049
 
16938
17050
 
16939
17051
  // Year view
17052
+ .k-year-calendar,
16940
17053
  .k-calendar-yearview {
16941
- $_year-cell-size: ( (7 / 4) * $calendar-cell-size);
17054
+ $_year-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16942
17055
 
16943
17056
  .k-calendar-td {
16944
- width: auto;
16945
- height: auto;
16946
- }
16947
- .k-link {
16948
17057
  width: $_year-cell-size;
16949
17058
  height: $_year-cell-size;
17059
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
17060
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
16950
17061
  }
16951
17062
  }
16952
17063
 
16953
17064
 
16954
17065
  // Decade view
17066
+ .k-decade-calendar,
16955
17067
  .k-calendar-decadeview {
16956
- $_decade-cell-size: ( (7 / 4) * $calendar-cell-size);
17068
+ $_decade-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16957
17069
 
16958
17070
  .k-calendar-td {
16959
- width: auto;
16960
- height: auto;
16961
- }
16962
- .k-link {
16963
17071
  width: $_decade-cell-size;
16964
17072
  height: $_decade-cell-size;
17073
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
17074
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
16965
17075
  }
16966
17076
  }
16967
17077
 
16968
17078
 
16969
17079
  // Century view
17080
+ .k-century-calendar,
16970
17081
  .k-calendar-centuryview {
16971
- $_century-cell-size: ( (7 / 4) * $calendar-cell-size);
17082
+ $_century-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16972
17083
 
16973
17084
  .k-calendar-td {
16974
- width: auto;
16975
- height: auto;
16976
- }
16977
- .k-link {
16978
17085
  width: $_century-cell-size;
16979
17086
  height: $_century-cell-size;
17087
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
17088
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
17089
+ }
17090
+ .k-calendar-cell-inner {
16980
17091
  text-align: left;
16981
17092
  }
16982
17093
  }
@@ -17016,6 +17127,56 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17016
17127
  top: 0;
17017
17128
  right: 0;
17018
17129
  }
17130
+
17131
+
17132
+
17133
+
17134
+ // Calendar sizes
17135
+ @each $size, $size-props in $kendo-calendar-sizes {
17136
+ $_font-size: map-get( $size-props, font-size );
17137
+ $_line-height: map-get( $size-props, line-height );
17138
+ $_cell-size: map-get( $size-props, cell-size );
17139
+ $_cell-padding-x: map-get( $size-props, cell-padding-x );
17140
+ $_cell-padding-y: map-get( $size-props, cell-padding-y );
17141
+
17142
+ $_month-cell-size: $_cell-size;
17143
+ $_year-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
17144
+ $_decade-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
17145
+ $_century-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
17146
+
17147
+ .k-calendar-#{$size} {
17148
+ --INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
17149
+ --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-#{$size}-cell-padding-x, #{$_cell-padding-x} );
17150
+ --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-#{$size}-cell-padding-y, #{$_cell-padding-y} );
17151
+ font-size: $_font-size;
17152
+ line-height: $_line-height;
17153
+
17154
+ &.k-month-calendar,
17155
+ .k-calendar-monthview {
17156
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-month-cell-size, #{$_month-cell-size} );
17157
+ }
17158
+ &.k-year-calendar,
17159
+ .k-calendar-yearview {
17160
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-year-cell-size, #{$_year-cell-size} );
17161
+ }
17162
+ &.k-decade-calendar,
17163
+ .k-calendar-decadeview {
17164
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-decade-cell-size, #{$_decade-cell-size} );
17165
+ }
17166
+ &.k-century-calendar,
17167
+ .k-calendar-centuryview {
17168
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-century-cell-size, #{$_century-cell-size} );
17169
+ }
17170
+ }
17171
+ }
17172
+
17173
+
17174
+
17175
+
17176
+ // Alias
17177
+ .k-link {
17178
+ @extend .k-calendar-cell-inner;
17179
+ }
17019
17180
  }
17020
17181
 
17021
17182
 
@@ -17267,8 +17428,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17267
17428
  &.k-hover,
17268
17429
  &.k-state-hover,
17269
17430
  &:focus,
17270
- &.k-state-focus,
17271
- &.k-focus {
17431
+ &.k-focus,
17432
+ &.k-state-focus {
17272
17433
  color: $calendar-today-nav-hover-text;
17273
17434
  }
17274
17435
  }
@@ -17286,11 +17447,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17286
17447
  // Special days
17287
17448
  .k-calendar-view .k-today {
17288
17449
  @if $calendar-today-style == box {
17289
- .k-link {
17450
+ .k-calendar-cell-inner {
17290
17451
  box-shadow: inset 0 0 0 1px $calendar-today-color;
17291
17452
  }
17292
- &.k-state-focused .k-link,
17293
- &.k-focus .k-link {
17453
+ &.k-focus .k-calendar-cell-inner,
17454
+ &.k-state-focused .k-calendar-cell-inner {
17294
17455
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
17295
17456
  }
17296
17457
  } @else if $calendar-today-style == color {
@@ -17324,9 +17485,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17324
17485
 
17325
17486
 
17326
17487
  // Interactive states
17327
- .k-calendar-td:hover .k-link,
17328
- .k-calendar-td.k-state-hover .k-link,
17329
- .k-calendar-td.k-hover .k-link {
17488
+ .k-calendar-td:hover .k-calendar-cell-inner,
17489
+ .k-calendar-td.k-hover .k-calendar-cell-inner,
17490
+ .k-calendar-td.k-state-hover .k-calendar-cell-inner {
17330
17491
  @include fill(
17331
17492
  $calendar-cell-hover-text,
17332
17493
  $calendar-cell-hover-bg,
@@ -17334,8 +17495,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17334
17495
  $calendar-cell-hover-gradient
17335
17496
  );
17336
17497
  }
17337
- .k-calendar-td.k-state-selected .k-link,
17338
- .k-calendar-td.k-selected .k-link {
17498
+ .k-calendar-td.k-selected .k-calendar-cell-inner,
17499
+ .k-calendar-td.k-state-selected .k-calendar-cell-inner {
17339
17500
  @include fill(
17340
17501
  $calendar-cell-selected-text,
17341
17502
  $calendar-cell-selected-bg,
@@ -17343,12 +17504,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17343
17504
  $calendar-cell-selected-gradient
17344
17505
  );
17345
17506
  }
17346
- .k-calendar-td.k-state-selected:hover .k-link,
17347
- .k-calendar-td.k-selected:hover .k-link,
17348
- .k-calendar-td.k-state-selected.k-state-hover .k-link,
17349
- .k-calendar-td.k-selected.k-hover .k-link,
17350
- .k-calendar-td.k-selected:hover .k-link,
17351
- .k-calendar-td.k-selected.k-hover .k-link {
17507
+ .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
17508
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
17509
+ .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
17352
17510
  @include fill(
17353
17511
  $calendar-cell-selected-hover-text,
17354
17512
  $calendar-cell-selected-hover-bg,
@@ -17356,18 +17514,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17356
17514
  $calendar-cell-selected-hover-gradient
17357
17515
  );
17358
17516
  }
17359
- .k-calendar-td.k-state-focused .k-link,
17360
- .k-calendar-td.k-focus .k-link,
17361
- .k-calendar-td.k-state-focus .k-link,
17362
- .k-calendar-td.k-focus .k-link {
17517
+ .k-calendar-td:focus .k-calendar-cell-inner,
17518
+ .k-calendar-td.k-focus .k-calendar-cell-inner,
17519
+ .k-calendar-td.k-state-focus .k-calendar-cell-inner,
17520
+ .k-calendar-td.k-state-focused .k-calendar-cell-inner {
17363
17521
  box-shadow: $calendar-cell-focused-shadow;
17364
17522
  }
17365
- .k-calendar-td.k-state-selected.k-state-focused .k-link,
17366
- .k-calendar-td.k-selected.k-focused .k-link,
17367
- .k-calendar-td.k-state-selected.k-state-focus .k-link,
17368
- .k-calendar-td.k-selected.k-focus .k-link,
17369
- .k-calendar-td.k-selected:focus .k-link,
17370
- .k-calendar-td.k-selected.k-focus .k-link {
17523
+ .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
17524
+ .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
17525
+ .k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
17371
17526
  box-shadow: $calendar-cell-selected-focus-shadow;
17372
17527
  }
17373
17528
 
@@ -17381,8 +17536,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17381
17536
  box-shadow: inset -1px 0 $calendar-navigation-border;
17382
17537
 
17383
17538
  li:hover,
17384
- li.k-state-hover,
17385
- li.k-hover {
17539
+ li.k-hover,
17540
+ li.k-state-hover {
17386
17541
  color: $calendar-today-nav-hover-text;
17387
17542
  }
17388
17543
  }
@@ -17437,19 +17592,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17437
17592
  .k-range-start,
17438
17593
  .k-range-end,
17439
17594
  .k-range-mid {
17440
- // sass-lint:disable-block indentation
17441
- background-image:
17442
- linear-gradient(
17443
- transparent $calendar-range-gap,
17444
- $calendar-range-bg $calendar-range-gap,
17445
- $calendar-range-bg calc(100% - #{$calendar-range-gap}),
17446
- transparent calc(100% - #{$calendar-range-gap})
17447
- );
17448
-
17449
- .k-ie & {
17450
- background-image: none;
17451
- background-color: $calendar-range-bg;
17452
- }
17595
+ background-color: $calendar-range-bg;
17453
17596
  }
17454
17597
 
17455
17598
  .k-range-start.k-range-end {
@@ -17459,16 +17602,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17459
17602
 
17460
17603
  .k-range-start,
17461
17604
  .k-range-end {
17462
- .k-link {
17605
+ .k-calendar-cell-inner {
17463
17606
  background-color: $calendar-cell-selected-bg;
17464
17607
  }
17465
17608
  }
17466
17609
 
17467
- .k-range-start.k-state-active,
17468
17610
  .k-range-start.k-active,
17469
- .k-range-end.k-state-active,
17470
- .k-range-end.k-active {
17471
- .k-link {
17611
+ .k-range-start.k-state-active,
17612
+ .k-range-end.k-active,
17613
+ .k-range-end.k-state-active {
17614
+ .k-calendar-cell-inner {
17472
17615
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
17473
17616
  }
17474
17617
  }
@@ -17481,8 +17624,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17481
17624
  content: "";
17482
17625
  display: block;
17483
17626
  position: absolute;
17484
- top: $calendar-range-gap;
17485
- bottom: $calendar-range-gap;
17627
+ top: 0;
17628
+ bottom: 0;
17486
17629
  width: $calendar-range-split-size;
17487
17630
  }
17488
17631
  }
@@ -17560,6 +17703,44 @@ $time-list-highlight-border: $component-border !default;
17560
17703
 
17561
17704
  $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
17562
17705
 
17706
+
17707
+ // Time selector sizes
17708
+ $kendo-time-selector-sm-font-size: $kendo-list-font-size-sm !default;
17709
+ $kendo-time-selector-sm-line-height: $kendo-list-line-height-sm !default;
17710
+ $kendo-time-selector-sm-list-item-padding-x: $kendo-list-item-padding-x-sm !default;
17711
+ $kendo-time-selector-sm-list-item-padding-y: $kendo-list-item-padding-y-sm !default;
17712
+
17713
+ $kendo-time-selector-md-font-size: $kendo-list-font-size-md !default;
17714
+ $kendo-time-selector-md-line-height: $kendo-list-line-height-md !default;
17715
+ $kendo-time-selector-md-list-item-padding-x: $kendo-list-item-padding-x-md !default;
17716
+ $kendo-time-selector-md-list-item-padding-y: $kendo-list-item-padding-y-md !default;
17717
+
17718
+ $kendo-time-selector-lg-font-size: $kendo-list-font-size-lg !default;
17719
+ $kendo-time-selector-lg-line-height: $kendo-list-line-height-lg !default;
17720
+ $kendo-time-selector-lg-list-item-padding-x: $kendo-list-item-padding-x-lg !default;
17721
+ $kendo-time-selector-lg-list-item-padding-y: $kendo-list-item-padding-y-lg !default;
17722
+
17723
+ $kendo-time-selector-sizes: (
17724
+ sm: (
17725
+ font-size: $kendo-time-selector-sm-font-size,
17726
+ line-height: $kendo-time-selector-sm-line-height,
17727
+ list-item-padding-x: $kendo-time-selector-sm-list-item-padding-x,
17728
+ list-item-padding-y: $kendo-time-selector-sm-list-item-padding-y
17729
+ ),
17730
+ md: (
17731
+ font-size: $kendo-time-selector-md-font-size,
17732
+ line-height: $kendo-time-selector-md-line-height,
17733
+ list-item-padding-x: $kendo-time-selector-md-list-item-padding-x,
17734
+ list-item-padding-y: $kendo-time-selector-md-list-item-padding-y
17735
+ ),
17736
+ lg: (
17737
+ font-size: $kendo-time-selector-lg-font-size,
17738
+ line-height: $kendo-time-selector-lg-line-height,
17739
+ list-item-padding-x: $kendo-time-selector-lg-list-item-padding-x,
17740
+ list-item-padding-y: $kendo-time-selector-lg-list-item-padding-y
17741
+ )
17742
+ ) !default;
17743
+
17563
17744
  // #endregion
17564
17745
  // #region @import "_layout.scss"; -> packages/classic/scss/timeselector/_layout.scss
17565
17746
  // #region @import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/timeselector/_layout.scss
@@ -17771,6 +17952,36 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
17771
17952
  top: calc( #{$time-list-title-height / 2} );
17772
17953
  }
17773
17954
 
17955
+
17956
+ // Time selector sizes
17957
+ @each $size, $size-props in $kendo-time-selector-sizes {
17958
+ $_font-size: map-get( $size-props, font-size );
17959
+ $_line-height: map-get( $size-props, line-height );
17960
+ $_list-item-padding-x: map-get( $size-props, list-item-padding-x );
17961
+ $_list-item-padding-y: map-get( $size-props, list-item-padding-y );
17962
+ $_highlight-height: calc( #{$_font-size * $_line-height} + #{ $_list-item-padding-y * 2} );
17963
+
17964
+
17965
+ .k-timeselector-#{$size} {
17966
+ font-size: $_font-size;
17967
+ line-height: $_line-height;
17968
+
17969
+ .k-time-highlight,
17970
+ .k-time-list-highlight {
17971
+ height: $_highlight-height;
17972
+ }
17973
+
17974
+ .k-time-separator {
17975
+ height: $_highlight-height;
17976
+ }
17977
+
17978
+ .k-time-list-item,
17979
+ .k-time-list .k-item {
17980
+ padding: $_list-item-padding-y $_list-item-padding-x;
17981
+ }
17982
+ }
17983
+ }
17984
+
17774
17985
  }
17775
17986
 
17776
17987
  // #endregion
@@ -22371,6 +22582,10 @@ $actionsheet-item-disabled-shadow: null !default;
22371
22582
  box-sizing: border-box;
22372
22583
  }
22373
22584
  }
22585
+ .k-actionsheet-fullscreen {
22586
+ max-height: 100%;
22587
+ height: 100%;
22588
+ }
22374
22589
 
22375
22590
 
22376
22591
  // Actionsheet header
@@ -22384,6 +22599,35 @@ $actionsheet-item-disabled-shadow: null !default;
22384
22599
  font-size: $actionsheet-header-font-size;
22385
22600
  font-family: $actionsheet-header-font-family;
22386
22601
  line-height: $actionsheet-header-line-height;
22602
+ flex: none;
22603
+ }
22604
+
22605
+
22606
+ // Actionsheet titlebar
22607
+ .k-actionsheet-titlebar {
22608
+ @extend .k-actionsheet-header !optional;
22609
+ display: flex;
22610
+ flex-flow: row nowrap;
22611
+ align-items: center;
22612
+ }
22613
+ .k-actionsheet-title {
22614
+ flex: 1;
22615
+ }
22616
+ .k-actionsheet-actions {
22617
+ flex: none;
22618
+ }
22619
+
22620
+
22621
+ // Actionsheet content
22622
+ .k-actionsheet-content {
22623
+ flex: 1;
22624
+ overflow: auto;
22625
+ }
22626
+
22627
+
22628
+ // Actionsheet footer
22629
+ .k-actionsheet-footer {
22630
+ flex: none;
22387
22631
  }
22388
22632
 
22389
22633
 
@@ -22480,6 +22724,37 @@ $actionsheet-item-disabled-shadow: null !default;
22480
22724
  transform: none;
22481
22725
  }
22482
22726
 
22727
+
22728
+ // Adaptive action sheet
22729
+ .k-adaptive-actionsheet {
22730
+ max-width: 100%;
22731
+ width: 100%;
22732
+
22733
+ // TMP: this should be moved to action sheet
22734
+ display: flex;
22735
+ flex-flow: column nowrap;
22736
+
22737
+ .k-calendar {
22738
+ margin-inline: auto;
22739
+ border-width: 0;
22740
+ display: flex;
22741
+ }
22742
+
22743
+ .k-timeselector {
22744
+ height: 100%;
22745
+ border-width: 0;
22746
+ overflow: hidden;
22747
+
22748
+ .k-time-part {
22749
+ display: contents;
22750
+ }
22751
+
22752
+ .k-time-list-wrapper {
22753
+ height: 100%;
22754
+ }
22755
+ }
22756
+ }
22757
+
22483
22758
  }
22484
22759
 
22485
22760
  // #endregion
@@ -41949,8 +42224,6 @@ $treemap-line-height: $line-height !default;
41949
42224
  }
41950
42225
 
41951
42226
 
41952
-
41953
-
41954
42227
  @include exports("dataviz/treemap/theme") {
41955
42228
 
41956
42229
  // Treemap