@progress/kendo-theme-classic 5.5.1-dev.1 → 5.6.1-dev.0

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;
@@ -16869,7 +16991,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16869
16991
  font-weight: bold;
16870
16992
  }
16871
16993
  .k-today,
16872
- .k-nav-today {
16994
+ .k-nav-today,
16995
+ .k-calendar-nav-today {
16873
16996
  text-decoration: none;
16874
16997
  cursor: pointer;
16875
16998
  outline: none;
@@ -16899,22 +17022,13 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16899
17022
  padding: 0 $calendar-header-padding-x;
16900
17023
  // setting width / height prevents layout changes in meta views
16901
17024
  width: $calendar-view-width;
17025
+ inline-size: var( --INTERNAL--kendo-calendar-view-width, #{$calendar-view-width});
16902
17026
  min-height: $calendar-view-height;
16903
17027
  box-sizing: content-box;
16904
17028
  gap: $calendar-view-gap;
16905
17029
  position: relative;
16906
17030
  z-index: 1;
16907
17031
  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
17032
  }
16919
17033
  .k-week-number .k-calendar-view {
16920
17034
  width: (8 * $calendar-cell-size);
@@ -16922,61 +17036,59 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16922
17036
 
16923
17037
 
16924
17038
  // Month view
17039
+ .k-month-calendar,
16925
17040
  .k-calendar-monthview {
16926
17041
  $_month-cell-size: $calendar-cell-size;
16927
17042
 
16928
17043
  .k-calendar-td {
16929
17044
  width: $_month-cell-size;
16930
17045
  height: $_month-cell-size;
16931
- }
16932
- .k-link {
16933
- width: $_month-cell-size;
16934
- height: $_month-cell-size;
17046
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
17047
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
16935
17048
  }
16936
17049
  }
16937
17050
 
16938
17051
 
16939
17052
  // Year view
17053
+ .k-year-calendar,
16940
17054
  .k-calendar-yearview {
16941
- $_year-cell-size: ( (7 / 4) * $calendar-cell-size);
17055
+ $_year-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16942
17056
 
16943
17057
  .k-calendar-td {
16944
- width: auto;
16945
- height: auto;
16946
- }
16947
- .k-link {
16948
17058
  width: $_year-cell-size;
16949
17059
  height: $_year-cell-size;
17060
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
17061
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
16950
17062
  }
16951
17063
  }
16952
17064
 
16953
17065
 
16954
17066
  // Decade view
17067
+ .k-decade-calendar,
16955
17068
  .k-calendar-decadeview {
16956
- $_decade-cell-size: ( (7 / 4) * $calendar-cell-size);
17069
+ $_decade-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16957
17070
 
16958
17071
  .k-calendar-td {
16959
- width: auto;
16960
- height: auto;
16961
- }
16962
- .k-link {
16963
17072
  width: $_decade-cell-size;
16964
17073
  height: $_decade-cell-size;
17074
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
17075
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
16965
17076
  }
16966
17077
  }
16967
17078
 
16968
17079
 
16969
17080
  // Century view
17081
+ .k-century-calendar,
16970
17082
  .k-calendar-centuryview {
16971
- $_century-cell-size: ( (7 / 4) * $calendar-cell-size);
17083
+ $_century-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16972
17084
 
16973
17085
  .k-calendar-td {
16974
- width: auto;
16975
- height: auto;
16976
- }
16977
- .k-link {
16978
17086
  width: $_century-cell-size;
16979
17087
  height: $_century-cell-size;
17088
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
17089
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
17090
+ }
17091
+ .k-calendar-cell-inner {
16980
17092
  text-align: left;
16981
17093
  }
16982
17094
  }
@@ -17016,6 +17128,56 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17016
17128
  top: 0;
17017
17129
  right: 0;
17018
17130
  }
17131
+
17132
+
17133
+
17134
+
17135
+ // Calendar sizes
17136
+ @each $size, $size-props in $kendo-calendar-sizes {
17137
+ $_font-size: map-get( $size-props, font-size );
17138
+ $_line-height: map-get( $size-props, line-height );
17139
+ $_cell-size: map-get( $size-props, cell-size );
17140
+ $_cell-padding-x: map-get( $size-props, cell-padding-x );
17141
+ $_cell-padding-y: map-get( $size-props, cell-padding-y );
17142
+
17143
+ $_month-cell-size: $_cell-size;
17144
+ $_year-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
17145
+ $_decade-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
17146
+ $_century-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
17147
+
17148
+ .k-calendar-#{$size} {
17149
+ --INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
17150
+ --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-#{$size}-cell-padding-x, #{$_cell-padding-x} );
17151
+ --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-#{$size}-cell-padding-y, #{$_cell-padding-y} );
17152
+ font-size: $_font-size;
17153
+ line-height: $_line-height;
17154
+
17155
+ &.k-month-calendar,
17156
+ .k-calendar-monthview {
17157
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-month-cell-size, #{$_month-cell-size} );
17158
+ }
17159
+ &.k-year-calendar,
17160
+ .k-calendar-yearview {
17161
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-year-cell-size, #{$_year-cell-size} );
17162
+ }
17163
+ &.k-decade-calendar,
17164
+ .k-calendar-decadeview {
17165
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-decade-cell-size, #{$_decade-cell-size} );
17166
+ }
17167
+ &.k-century-calendar,
17168
+ .k-calendar-centuryview {
17169
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-century-cell-size, #{$_century-cell-size} );
17170
+ }
17171
+ }
17172
+ }
17173
+
17174
+
17175
+
17176
+
17177
+ // Alias
17178
+ .k-link {
17179
+ @extend .k-calendar-cell-inner;
17180
+ }
17019
17181
  }
17020
17182
 
17021
17183
 
@@ -17200,7 +17362,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17200
17362
  .k-nav-prev,
17201
17363
  .k-nav-next,
17202
17364
  .k-prev-view,
17203
- .k-next-view {
17365
+ .k-next-view,
17366
+ .k-calendar-nav-prev,
17367
+ .k-calendar-nav-next {
17204
17368
  transform: scaleX(-1);
17205
17369
  }
17206
17370
 
@@ -17260,15 +17424,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17260
17424
 
17261
17425
 
17262
17426
  // Today navigation
17263
- .k-nav-today {
17427
+ .k-nav-today,
17428
+ .k-calendar-nav-today {
17264
17429
  color: $calendar-today-nav-text;
17265
17430
 
17266
17431
  &:hover,
17267
17432
  &.k-hover,
17268
17433
  &.k-state-hover,
17269
17434
  &:focus,
17270
- &.k-state-focus,
17271
- &.k-focus {
17435
+ &.k-focus,
17436
+ &.k-state-focus {
17272
17437
  color: $calendar-today-nav-hover-text;
17273
17438
  }
17274
17439
  }
@@ -17286,11 +17451,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17286
17451
  // Special days
17287
17452
  .k-calendar-view .k-today {
17288
17453
  @if $calendar-today-style == box {
17289
- .k-link {
17454
+ .k-calendar-cell-inner {
17290
17455
  box-shadow: inset 0 0 0 1px $calendar-today-color;
17291
17456
  }
17292
- &.k-state-focused .k-link,
17293
- &.k-focus .k-link {
17457
+ &.k-focus .k-calendar-cell-inner,
17458
+ &.k-state-focused .k-calendar-cell-inner {
17294
17459
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
17295
17460
  }
17296
17461
  } @else if $calendar-today-style == color {
@@ -17324,9 +17489,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17324
17489
 
17325
17490
 
17326
17491
  // 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 {
17492
+ .k-calendar-td:hover .k-calendar-cell-inner,
17493
+ .k-calendar-td.k-hover .k-calendar-cell-inner,
17494
+ .k-calendar-td.k-state-hover .k-calendar-cell-inner {
17330
17495
  @include fill(
17331
17496
  $calendar-cell-hover-text,
17332
17497
  $calendar-cell-hover-bg,
@@ -17334,8 +17499,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17334
17499
  $calendar-cell-hover-gradient
17335
17500
  );
17336
17501
  }
17337
- .k-calendar-td.k-state-selected .k-link,
17338
- .k-calendar-td.k-selected .k-link {
17502
+ .k-calendar-td.k-selected .k-calendar-cell-inner,
17503
+ .k-calendar-td.k-state-selected .k-calendar-cell-inner {
17339
17504
  @include fill(
17340
17505
  $calendar-cell-selected-text,
17341
17506
  $calendar-cell-selected-bg,
@@ -17343,12 +17508,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17343
17508
  $calendar-cell-selected-gradient
17344
17509
  );
17345
17510
  }
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 {
17511
+ .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
17512
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
17513
+ .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
17352
17514
  @include fill(
17353
17515
  $calendar-cell-selected-hover-text,
17354
17516
  $calendar-cell-selected-hover-bg,
@@ -17356,18 +17518,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17356
17518
  $calendar-cell-selected-hover-gradient
17357
17519
  );
17358
17520
  }
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 {
17521
+ .k-calendar-td:focus .k-calendar-cell-inner,
17522
+ .k-calendar-td.k-focus .k-calendar-cell-inner,
17523
+ .k-calendar-td.k-state-focus .k-calendar-cell-inner,
17524
+ .k-calendar-td.k-state-focused .k-calendar-cell-inner {
17363
17525
  box-shadow: $calendar-cell-focused-shadow;
17364
17526
  }
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 {
17527
+ .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
17528
+ .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
17529
+ .k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
17371
17530
  box-shadow: $calendar-cell-selected-focus-shadow;
17372
17531
  }
17373
17532
 
@@ -17381,8 +17540,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17381
17540
  box-shadow: inset -1px 0 $calendar-navigation-border;
17382
17541
 
17383
17542
  li:hover,
17384
- li.k-state-hover,
17385
- li.k-hover {
17543
+ li.k-hover,
17544
+ li.k-state-hover {
17386
17545
  color: $calendar-today-nav-hover-text;
17387
17546
  }
17388
17547
  }
@@ -17437,19 +17596,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17437
17596
  .k-range-start,
17438
17597
  .k-range-end,
17439
17598
  .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
- }
17599
+ background-color: $calendar-range-bg;
17453
17600
  }
17454
17601
 
17455
17602
  .k-range-start.k-range-end {
@@ -17459,16 +17606,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17459
17606
 
17460
17607
  .k-range-start,
17461
17608
  .k-range-end {
17462
- .k-link {
17609
+ .k-calendar-cell-inner {
17463
17610
  background-color: $calendar-cell-selected-bg;
17464
17611
  }
17465
17612
  }
17466
17613
 
17467
- .k-range-start.k-state-active,
17468
17614
  .k-range-start.k-active,
17469
- .k-range-end.k-state-active,
17470
- .k-range-end.k-active {
17471
- .k-link {
17615
+ .k-range-start.k-state-active,
17616
+ .k-range-end.k-active,
17617
+ .k-range-end.k-state-active {
17618
+ .k-calendar-cell-inner {
17472
17619
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
17473
17620
  }
17474
17621
  }
@@ -17481,8 +17628,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17481
17628
  content: "";
17482
17629
  display: block;
17483
17630
  position: absolute;
17484
- top: $calendar-range-gap;
17485
- bottom: $calendar-range-gap;
17631
+ top: 0;
17632
+ bottom: 0;
17486
17633
  width: $calendar-range-split-size;
17487
17634
  }
17488
17635
  }
@@ -17560,6 +17707,44 @@ $time-list-highlight-border: $component-border !default;
17560
17707
 
17561
17708
  $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
17562
17709
 
17710
+
17711
+ // Time selector sizes
17712
+ $kendo-time-selector-sm-font-size: $kendo-list-font-size-sm !default;
17713
+ $kendo-time-selector-sm-line-height: $kendo-list-line-height-sm !default;
17714
+ $kendo-time-selector-sm-list-item-padding-x: $kendo-list-item-padding-x-sm !default;
17715
+ $kendo-time-selector-sm-list-item-padding-y: $kendo-list-item-padding-y-sm !default;
17716
+
17717
+ $kendo-time-selector-md-font-size: $kendo-list-font-size-md !default;
17718
+ $kendo-time-selector-md-line-height: $kendo-list-line-height-md !default;
17719
+ $kendo-time-selector-md-list-item-padding-x: $kendo-list-item-padding-x-md !default;
17720
+ $kendo-time-selector-md-list-item-padding-y: $kendo-list-item-padding-y-md !default;
17721
+
17722
+ $kendo-time-selector-lg-font-size: $kendo-list-font-size-lg !default;
17723
+ $kendo-time-selector-lg-line-height: $kendo-list-line-height-lg !default;
17724
+ $kendo-time-selector-lg-list-item-padding-x: $kendo-list-item-padding-x-lg !default;
17725
+ $kendo-time-selector-lg-list-item-padding-y: $kendo-list-item-padding-y-lg !default;
17726
+
17727
+ $kendo-time-selector-sizes: (
17728
+ sm: (
17729
+ font-size: $kendo-time-selector-sm-font-size,
17730
+ line-height: $kendo-time-selector-sm-line-height,
17731
+ list-item-padding-x: $kendo-time-selector-sm-list-item-padding-x,
17732
+ list-item-padding-y: $kendo-time-selector-sm-list-item-padding-y
17733
+ ),
17734
+ md: (
17735
+ font-size: $kendo-time-selector-md-font-size,
17736
+ line-height: $kendo-time-selector-md-line-height,
17737
+ list-item-padding-x: $kendo-time-selector-md-list-item-padding-x,
17738
+ list-item-padding-y: $kendo-time-selector-md-list-item-padding-y
17739
+ ),
17740
+ lg: (
17741
+ font-size: $kendo-time-selector-lg-font-size,
17742
+ line-height: $kendo-time-selector-lg-line-height,
17743
+ list-item-padding-x: $kendo-time-selector-lg-list-item-padding-x,
17744
+ list-item-padding-y: $kendo-time-selector-lg-list-item-padding-y
17745
+ )
17746
+ ) !default;
17747
+
17563
17748
  // #endregion
17564
17749
  // #region @import "_layout.scss"; -> packages/classic/scss/timeselector/_layout.scss
17565
17750
  // #region @import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/timeselector/_layout.scss
@@ -17771,6 +17956,36 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
17771
17956
  top: calc( #{$time-list-title-height / 2} );
17772
17957
  }
17773
17958
 
17959
+
17960
+ // Time selector sizes
17961
+ @each $size, $size-props in $kendo-time-selector-sizes {
17962
+ $_font-size: map-get( $size-props, font-size );
17963
+ $_line-height: map-get( $size-props, line-height );
17964
+ $_list-item-padding-x: map-get( $size-props, list-item-padding-x );
17965
+ $_list-item-padding-y: map-get( $size-props, list-item-padding-y );
17966
+ $_highlight-height: calc( #{$_font-size * $_line-height} + #{ $_list-item-padding-y * 2} );
17967
+
17968
+
17969
+ .k-timeselector-#{$size} {
17970
+ font-size: $_font-size;
17971
+ line-height: $_line-height;
17972
+
17973
+ .k-time-highlight,
17974
+ .k-time-list-highlight {
17975
+ height: $_highlight-height;
17976
+ }
17977
+
17978
+ .k-time-separator {
17979
+ height: $_highlight-height;
17980
+ }
17981
+
17982
+ .k-time-list-item,
17983
+ .k-time-list .k-item {
17984
+ padding: $_list-item-padding-y $_list-item-padding-x;
17985
+ }
17986
+ }
17987
+ }
17988
+
17774
17989
  }
17775
17990
 
17776
17991
  // #endregion
@@ -18804,10 +19019,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
18804
19019
  // #region @import "../button/_index.scss"; -> packages/classic/scss/button/_index.scss
18805
19020
  // File already imported_once. Skipping output.
18806
19021
  // #endregion
18807
- // #region @import "../colorpalette/_index.scss"; -> packages/classic/scss/colorpalette/_index.scss
18808
- // File already imported_once. Skipping output.
18809
- // #endregion
18810
- // #region @import "../colorgradient/_index.scss"; -> packages/classic/scss/colorgradient/_index.scss
19022
+ // #region @import "../coloreditor/_index.scss"; -> packages/classic/scss/coloreditor/_index.scss
18811
19023
  // File already imported_once. Skipping output.
18812
19024
  // #endregion
18813
19025
  // #region @import "../popup/_index.scss"; -> packages/classic/scss/popup/_index.scss
@@ -19218,6 +19430,9 @@ $kendo-daterange-picker-input-width: 10em;
19218
19430
  // #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
19219
19431
  // File already imported_once. Skipping output.
19220
19432
  // #endregion
19433
+ // #region @import "../table/_index.scss"; -> packages/classic/scss/table/_index.scss
19434
+ // File already imported_once. Skipping output.
19435
+ // #endregion
19221
19436
  // #region @import "../input/_index.scss"; -> packages/classic/scss/input/_index.scss
19222
19437
  // File already imported_once. Skipping output.
19223
19438
  // #endregion
@@ -22371,6 +22586,10 @@ $actionsheet-item-disabled-shadow: null !default;
22371
22586
  box-sizing: border-box;
22372
22587
  }
22373
22588
  }
22589
+ .k-actionsheet-fullscreen {
22590
+ max-height: 100%;
22591
+ height: 100%;
22592
+ }
22374
22593
 
22375
22594
 
22376
22595
  // Actionsheet header
@@ -22384,6 +22603,35 @@ $actionsheet-item-disabled-shadow: null !default;
22384
22603
  font-size: $actionsheet-header-font-size;
22385
22604
  font-family: $actionsheet-header-font-family;
22386
22605
  line-height: $actionsheet-header-line-height;
22606
+ flex: none;
22607
+ }
22608
+
22609
+
22610
+ // Actionsheet titlebar
22611
+ .k-actionsheet-titlebar {
22612
+ @extend .k-actionsheet-header !optional;
22613
+ display: flex;
22614
+ flex-flow: row nowrap;
22615
+ align-items: center;
22616
+ }
22617
+ .k-actionsheet-title {
22618
+ flex: 1;
22619
+ }
22620
+ .k-actionsheet-actions {
22621
+ flex: none;
22622
+ }
22623
+
22624
+
22625
+ // Actionsheet content
22626
+ .k-actionsheet-content {
22627
+ flex: 1;
22628
+ overflow: auto;
22629
+ }
22630
+
22631
+
22632
+ // Actionsheet footer
22633
+ .k-actionsheet-footer {
22634
+ flex: none;
22387
22635
  }
22388
22636
 
22389
22637
 
@@ -22480,6 +22728,37 @@ $actionsheet-item-disabled-shadow: null !default;
22480
22728
  transform: none;
22481
22729
  }
22482
22730
 
22731
+
22732
+ // Adaptive action sheet
22733
+ .k-adaptive-actionsheet {
22734
+ max-width: 100%;
22735
+ width: 100%;
22736
+
22737
+ // TMP: this should be moved to action sheet
22738
+ display: flex;
22739
+ flex-flow: column nowrap;
22740
+
22741
+ .k-calendar {
22742
+ margin-inline: auto;
22743
+ border-width: 0;
22744
+ display: flex;
22745
+ }
22746
+
22747
+ .k-timeselector {
22748
+ height: 100%;
22749
+ border-width: 0;
22750
+ overflow: hidden;
22751
+
22752
+ .k-time-part {
22753
+ display: contents;
22754
+ }
22755
+
22756
+ .k-time-list-wrapper {
22757
+ height: 100%;
22758
+ }
22759
+ }
22760
+ }
22761
+
22483
22762
  }
22484
22763
 
22485
22764
  // #endregion
@@ -41949,8 +42228,6 @@ $treemap-line-height: $line-height !default;
41949
42228
  }
41950
42229
 
41951
42230
 
41952
-
41953
-
41954
42231
  @include exports("dataviz/treemap/theme") {
41955
42232
 
41956
42233
  // Treemap