@progress/kendo-theme-default 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
@@ -6041,8 +6041,8 @@ $kendo-list-font-size-lg: $font-size-lg !default;
6041
6041
  /// Line height of the list component, if no size is set.
6042
6042
  /// @group list
6043
6043
  $kendo-list-line-height: null !default;
6044
- $kendo-list-line-height-sm: null !default;
6045
- $kendo-list-line-height-md: null !default;
6044
+ $kendo-list-line-height-sm: $line-height-md !default;
6045
+ $kendo-list-line-height-md: $line-height-md !default;
6046
6046
  $kendo-list-line-height-lg: $line-height-lg !default;
6047
6047
 
6048
6048
  /// Horizontal padding of list header, if no size is set.
@@ -14930,6 +14930,10 @@ $progressbar-indeterminate-gradient: null !default;
14930
14930
 
14931
14931
  $progressbar-chunk-border: $body-bg !default;
14932
14932
 
14933
+ // Circular Progressbar
14934
+ $kendo-circular-progressbar-arc-stroke: $primary !default;
14935
+ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
14936
+
14933
14937
  // #endregion
14934
14938
  // #region @import "_layout.scss"; -> packages/default/scss/progressbar/_layout.scss
14935
14939
  @include exports("progressbar/layout") {
@@ -15199,6 +15203,49 @@ $progressbar-chunk-border: $body-bg !default;
15199
15203
 
15200
15204
  }
15201
15205
 
15206
+ @include exports("circular-progressbar/layout") {
15207
+
15208
+ .k-circular-progressbar {
15209
+ display: inline-block;
15210
+ text-align: left;
15211
+ position: relative;
15212
+ }
15213
+
15214
+ .k-circular-progressbar-surface {
15215
+ height: 100%;
15216
+
15217
+ & > div {
15218
+ width: 100%;
15219
+ height: 100%;
15220
+ }
15221
+
15222
+ svg {
15223
+ width: 100%;
15224
+ height: 100%;
15225
+ }
15226
+ }
15227
+
15228
+ .k-circular-progressbar-scale {
15229
+ fill: none;
15230
+ }
15231
+
15232
+ .k-circular-progressbar-arc {
15233
+ transform-box: fill-box;
15234
+ transform-origin: center center;
15235
+ transform: rotate(-90deg);
15236
+ stroke-linecap: round;
15237
+ fill: none;
15238
+ }
15239
+
15240
+ .k-circular-progressbar-label {
15241
+ position: absolute;
15242
+ text-align: center;
15243
+ padding: 0;
15244
+ margin: 0;
15245
+ }
15246
+
15247
+ }
15248
+
15202
15249
  // #endregion
15203
15250
  // #region @import "_theme.scss"; -> packages/default/scss/progressbar/_theme.scss
15204
15251
  @include exports("progressbar/theme") {
@@ -15230,6 +15277,19 @@ $progressbar-chunk-border: $body-bg !default;
15230
15277
 
15231
15278
  }
15232
15279
 
15280
+ @include exports("circular-progressbar/theme") {
15281
+
15282
+ .k-circular-progressbar-scale {
15283
+ stroke: $kendo-circular-progressbar-scale-stroke;
15284
+ }
15285
+
15286
+ .k-circular-progressbar-arc {
15287
+ stroke: $kendo-circular-progressbar-arc-stroke;
15288
+ transition: stroke .5s ease;
15289
+ }
15290
+
15291
+ }
15292
+
15233
15293
  // #endregion
15234
15294
 
15235
15295
  // #endregion
@@ -16377,7 +16437,6 @@ $calendar-border: $component-border !default;
16377
16437
  $calendar-header-padding-x: map-get( $spacing, 1 ) !default;
16378
16438
  $calendar-header-padding-y: map-get( $spacing, 1 ) !default;
16379
16439
  $calendar-header-border-width: 1px !default;
16380
- $calendar-header-min-width: ($calendar-cell-size * 8) !default;
16381
16440
 
16382
16441
  $calendar-header-bg: $header-bg !default;
16383
16442
  $calendar-header-text: $header-text !default;
@@ -16475,12 +16534,58 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16475
16534
 
16476
16535
  // Multiview calendar
16477
16536
 
16537
+
16538
+ // Calendar sizes
16539
+ $kendo-calendar-sm-font-size: $font-size-md !default;
16540
+ $kendo-calendar-sm-line-height: $line-height-md !default;
16541
+ $kendo-calendar-sm-cell-size: 28px !default;
16542
+ $kendo-calendar-sm-cell-padding-x: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
16543
+ $kendo-calendar-sm-cell-padding-y: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
16544
+
16545
+ $kendo-calendar-md-font-size: $font-size-md !default;
16546
+ $kendo-calendar-md-line-height: $line-height-md !default;
16547
+ $kendo-calendar-md-cell-size: 32px !default;
16548
+ $kendo-calendar-md-cell-padding-x: map-get( $spacing, 1 ) !default;
16549
+ $kendo-calendar-md-cell-padding-y: map-get( $spacing, 1 ) !default;
16550
+
16551
+ $kendo-calendar-lg-font-size: $font-size-lg !default;
16552
+ $kendo-calendar-lg-line-height: $line-height-lg !default;
16553
+ $kendo-calendar-lg-cell-size: 40px !default;
16554
+ $kendo-calendar-lg-cell-padding-x: map-get( $spacing, 2 ) !default;
16555
+ $kendo-calendar-lg-cell-padding-y: map-get( $spacing, 2 ) !default;
16556
+
16557
+ $kendo-calendar-sizes: (
16558
+ sm: (
16559
+ font-size: $kendo-calendar-sm-font-size,
16560
+ line-height: $kendo-calendar-sm-line-height,
16561
+ cell-size: $kendo-calendar-sm-cell-size,
16562
+ cell-padding-x: $kendo-calendar-sm-cell-padding-y,
16563
+ cell-padding-y: $kendo-calendar-sm-cell-padding-x
16564
+ ),
16565
+ md: (
16566
+ font-size: $kendo-calendar-md-font-size,
16567
+ line-height: $kendo-calendar-md-line-height,
16568
+ cell-size: $kendo-calendar-md-cell-size,
16569
+ cell-padding-x: $kendo-calendar-md-cell-padding-y,
16570
+ cell-padding-y: $kendo-calendar-md-cell-padding-x
16571
+ ),
16572
+ lg: (
16573
+ font-size: $kendo-calendar-lg-font-size,
16574
+ line-height: $kendo-calendar-lg-line-height,
16575
+ cell-size: $kendo-calendar-lg-cell-size,
16576
+ cell-padding-x: $kendo-calendar-lg-cell-padding-y,
16577
+ cell-padding-y: $kendo-calendar-lg-cell-padding-x
16578
+ )
16579
+ ) !default;
16580
+
16478
16581
  // #endregion
16479
16582
  // #region @import "_layout.scss"; -> packages/default/scss/calendar/_layout.scss
16480
16583
  @include exports("calendar/layout") {
16481
16584
 
16482
16585
  // Base
16483
16586
  .k-calendar {
16587
+ inline-size: var( --INTERNAL--kendo-calendar-width, min-content );
16588
+ block-size: var( --INTERNAL--kendo-calendar-height, min-content );
16484
16589
  border-width: $calendar-border-width;
16485
16590
  border-style: solid;
16486
16591
  box-sizing: border-box;
@@ -16501,19 +16606,12 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16501
16606
  > .k-calendar {
16502
16607
  border: 0;
16503
16608
  }
16504
-
16505
- // Common
16506
- .k-link {
16507
- white-space: normal;
16508
- position: relative;
16509
- overflow: hidden;
16510
- }
16511
16609
  }
16512
16610
 
16513
16611
 
16514
16612
  // Calendar table
16515
16613
  .k-calendar-table {
16516
- margin: 0;
16614
+ margin: 0 auto;
16517
16615
  border-width: 0;
16518
16616
  border-color: inherit;
16519
16617
  border-spacing: 0;
@@ -16521,8 +16619,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16521
16619
  table-layout: fixed;
16522
16620
  text-align: center;
16523
16621
  outline: 0;
16524
- display: inline-table;
16525
- vertical-align: top;
16622
+ display: table;
16526
16623
  position: relative;
16527
16624
  z-index: 1;
16528
16625
  }
@@ -16540,6 +16637,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16540
16637
  font-weight: $calendar-caption-font-weight;
16541
16638
  cursor: default;
16542
16639
  }
16640
+
16641
+
16642
+ // Calendar cell
16543
16643
  .k-calendar-th,
16544
16644
  .k-calendar-td {
16545
16645
  border-width: 0;
@@ -16561,10 +16661,32 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16561
16661
  }
16562
16662
  .k-calendar-td {
16563
16663
  @include border-radius( $calendar-cell-border-radius );
16664
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
16665
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
16564
16666
  border-color: transparent;
16565
16667
  }
16566
16668
 
16567
16669
 
16670
+ // Calendar cell inner
16671
+ // Remove .k-calendar once we remove k-link
16672
+ .k-calendar .k-calendar-cell-inner {
16673
+ @include border-radius( $calendar-cell-border-radius );
16674
+ padding: $calendar-cell-padding-y $calendar-cell-padding-x;
16675
+ padding-inline: var( --INTERNAL--kendo-calendar-cell-padding-x, #{$calendar-cell-padding-x} );
16676
+ padding-block: var( --INTERNAL--kendo-calendar-cell-padding-y, #{$calendar-cell-padding-y} );
16677
+ width: 100%;
16678
+ height: 100%;
16679
+ box-sizing: border-box;
16680
+ display: flex;
16681
+ flex-direction: row;
16682
+ align-items: center;
16683
+ justify-content: center;
16684
+ white-space: normal;
16685
+ position: relative;
16686
+ overflow: hidden;
16687
+ }
16688
+
16689
+
16568
16690
  // Calendar header
16569
16691
  .k-calendar .k-header {
16570
16692
  padding: $calendar-header-padding-y $calendar-header-padding-x;
@@ -16582,7 +16704,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16582
16704
  // Calendar header
16583
16705
  .k-calendar-header {
16584
16706
  padding: $calendar-header-padding-y $calendar-header-padding-x;
16585
- min-width: $calendar-header-min-width;
16707
+ min-width: ($calendar-cell-size * 8);
16586
16708
  box-sizing: border-box;
16587
16709
  display: flex;
16588
16710
  align-items: center;
@@ -16594,7 +16716,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16594
16716
  font-weight: bold;
16595
16717
  }
16596
16718
  .k-today,
16597
- .k-nav-today {
16719
+ .k-nav-today,
16720
+ .k-calendar-nav-today {
16598
16721
  text-decoration: none;
16599
16722
  cursor: pointer;
16600
16723
  outline: none;
@@ -16624,22 +16747,13 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16624
16747
  padding: 0 $calendar-header-padding-x;
16625
16748
  // setting width / height prevents layout changes in meta views
16626
16749
  width: $calendar-view-width;
16750
+ inline-size: var( --INTERNAL--kendo-calendar-view-width, #{$calendar-view-width});
16627
16751
  min-height: $calendar-view-height;
16628
16752
  box-sizing: content-box;
16629
16753
  gap: $calendar-view-gap;
16630
16754
  position: relative;
16631
16755
  z-index: 1;
16632
16756
  overflow: hidden;
16633
-
16634
- .k-link {
16635
- @include border-radius( $calendar-cell-border-radius );
16636
- padding: $calendar-cell-padding-y $calendar-cell-padding-x;
16637
- box-sizing: border-box;
16638
- display: flex;
16639
- flex-direction: row;
16640
- align-items: center;
16641
- justify-content: center;
16642
- }
16643
16757
  }
16644
16758
  .k-week-number .k-calendar-view {
16645
16759
  width: (8 * $calendar-cell-size);
@@ -16647,61 +16761,59 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16647
16761
 
16648
16762
 
16649
16763
  // Month view
16764
+ .k-month-calendar,
16650
16765
  .k-calendar-monthview {
16651
16766
  $_month-cell-size: $calendar-cell-size;
16652
16767
 
16653
16768
  .k-calendar-td {
16654
16769
  width: $_month-cell-size;
16655
16770
  height: $_month-cell-size;
16656
- }
16657
- .k-link {
16658
- width: $_month-cell-size;
16659
- height: $_month-cell-size;
16771
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
16772
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
16660
16773
  }
16661
16774
  }
16662
16775
 
16663
16776
 
16664
16777
  // Year view
16778
+ .k-year-calendar,
16665
16779
  .k-calendar-yearview {
16666
- $_year-cell-size: ( (7 / 4) * $calendar-cell-size);
16780
+ $_year-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16667
16781
 
16668
16782
  .k-calendar-td {
16669
- width: auto;
16670
- height: auto;
16671
- }
16672
- .k-link {
16673
16783
  width: $_year-cell-size;
16674
16784
  height: $_year-cell-size;
16785
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
16786
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
16675
16787
  }
16676
16788
  }
16677
16789
 
16678
16790
 
16679
16791
  // Decade view
16792
+ .k-decade-calendar,
16680
16793
  .k-calendar-decadeview {
16681
- $_decade-cell-size: ( (7 / 4) * $calendar-cell-size);
16794
+ $_decade-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16682
16795
 
16683
16796
  .k-calendar-td {
16684
- width: auto;
16685
- height: auto;
16686
- }
16687
- .k-link {
16688
16797
  width: $_decade-cell-size;
16689
16798
  height: $_decade-cell-size;
16799
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
16800
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
16690
16801
  }
16691
16802
  }
16692
16803
 
16693
16804
 
16694
16805
  // Century view
16806
+ .k-century-calendar,
16695
16807
  .k-calendar-centuryview {
16696
- $_century-cell-size: ( (7 / 4) * $calendar-cell-size);
16808
+ $_century-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
16697
16809
 
16698
16810
  .k-calendar-td {
16699
- width: auto;
16700
- height: auto;
16701
- }
16702
- .k-link {
16703
16811
  width: $_century-cell-size;
16704
16812
  height: $_century-cell-size;
16813
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
16814
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
16815
+ }
16816
+ .k-calendar-cell-inner {
16705
16817
  text-align: left;
16706
16818
  }
16707
16819
  }
@@ -16741,6 +16853,56 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16741
16853
  top: 0;
16742
16854
  right: 0;
16743
16855
  }
16856
+
16857
+
16858
+
16859
+
16860
+ // Calendar sizes
16861
+ @each $size, $size-props in $kendo-calendar-sizes {
16862
+ $_font-size: map-get( $size-props, font-size );
16863
+ $_line-height: map-get( $size-props, line-height );
16864
+ $_cell-size: map-get( $size-props, cell-size );
16865
+ $_cell-padding-x: map-get( $size-props, cell-padding-x );
16866
+ $_cell-padding-y: map-get( $size-props, cell-padding-y );
16867
+
16868
+ $_month-cell-size: $_cell-size;
16869
+ $_year-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
16870
+ $_decade-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
16871
+ $_century-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
16872
+
16873
+ .k-calendar-#{$size} {
16874
+ --INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
16875
+ --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-#{$size}-cell-padding-x, #{$_cell-padding-x} );
16876
+ --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-#{$size}-cell-padding-y, #{$_cell-padding-y} );
16877
+ font-size: $_font-size;
16878
+ line-height: $_line-height;
16879
+
16880
+ &.k-month-calendar,
16881
+ .k-calendar-monthview {
16882
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-month-cell-size, #{$_month-cell-size} );
16883
+ }
16884
+ &.k-year-calendar,
16885
+ .k-calendar-yearview {
16886
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-year-cell-size, #{$_year-cell-size} );
16887
+ }
16888
+ &.k-decade-calendar,
16889
+ .k-calendar-decadeview {
16890
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-decade-cell-size, #{$_decade-cell-size} );
16891
+ }
16892
+ &.k-century-calendar,
16893
+ .k-calendar-centuryview {
16894
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-century-cell-size, #{$_century-cell-size} );
16895
+ }
16896
+ }
16897
+ }
16898
+
16899
+
16900
+
16901
+
16902
+ // Alias
16903
+ .k-link {
16904
+ @extend .k-calendar-cell-inner;
16905
+ }
16744
16906
  }
16745
16907
 
16746
16908
 
@@ -16925,7 +17087,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16925
17087
  .k-nav-prev,
16926
17088
  .k-nav-next,
16927
17089
  .k-prev-view,
16928
- .k-next-view {
17090
+ .k-next-view,
17091
+ .k-calendar-nav-prev,
17092
+ .k-calendar-nav-next {
16929
17093
  transform: scaleX(-1);
16930
17094
  }
16931
17095
 
@@ -16982,15 +17146,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16982
17146
 
16983
17147
 
16984
17148
  // Today navigation
16985
- .k-nav-today {
17149
+ .k-nav-today,
17150
+ .k-calendar-nav-today {
16986
17151
  color: $calendar-today-nav-text;
16987
17152
 
16988
17153
  &:hover,
16989
17154
  &.k-hover,
16990
17155
  &.k-state-hover,
16991
17156
  &:focus,
16992
- &.k-state-focus,
16993
- &.k-focus {
17157
+ &.k-focus,
17158
+ &.k-state-focus {
16994
17159
  color: $calendar-today-nav-hover-text;
16995
17160
  }
16996
17161
  }
@@ -17008,11 +17173,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17008
17173
  // Special days
17009
17174
  .k-calendar-view .k-today {
17010
17175
  @if $calendar-today-style == box {
17011
- .k-link {
17176
+ .k-calendar-cell-inner {
17012
17177
  box-shadow: inset 0 0 0 1px $calendar-today-color;
17013
17178
  }
17014
- &.k-state-focused .k-link,
17015
- &.k-focus .k-link {
17179
+ &.k-focus .k-calendar-cell-inner,
17180
+ &.k-state-focused .k-calendar-cell-inner {
17016
17181
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
17017
17182
  }
17018
17183
  } @else if $calendar-today-style == color {
@@ -17046,9 +17211,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17046
17211
 
17047
17212
 
17048
17213
  // Interactive states
17049
- .k-calendar-td:hover .k-link,
17050
- .k-calendar-td.k-state-hover .k-link,
17051
- .k-calendar-td.k-hover .k-link {
17214
+ .k-calendar-td:hover .k-calendar-cell-inner,
17215
+ .k-calendar-td.k-hover .k-calendar-cell-inner,
17216
+ .k-calendar-td.k-state-hover .k-calendar-cell-inner {
17052
17217
  @include fill(
17053
17218
  $calendar-cell-hover-text,
17054
17219
  $calendar-cell-hover-bg,
@@ -17056,8 +17221,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17056
17221
  $calendar-cell-hover-gradient
17057
17222
  );
17058
17223
  }
17059
- .k-calendar-td.k-state-selected .k-link,
17060
- .k-calendar-td.k-selected .k-link {
17224
+ .k-calendar-td.k-selected .k-calendar-cell-inner,
17225
+ .k-calendar-td.k-state-selected .k-calendar-cell-inner {
17061
17226
  @include fill(
17062
17227
  $calendar-cell-selected-text,
17063
17228
  $calendar-cell-selected-bg,
@@ -17065,12 +17230,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17065
17230
  $calendar-cell-selected-gradient
17066
17231
  );
17067
17232
  }
17068
- .k-calendar-td.k-state-selected:hover .k-link,
17069
- .k-calendar-td.k-selected:hover .k-link,
17070
- .k-calendar-td.k-state-selected.k-state-hover .k-link,
17071
- .k-calendar-td.k-selected.k-hover .k-link,
17072
- .k-calendar-td.k-selected:hover .k-link,
17073
- .k-calendar-td.k-selected.k-hover .k-link {
17233
+ .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
17234
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
17235
+ .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
17074
17236
  @include fill(
17075
17237
  $calendar-cell-selected-hover-text,
17076
17238
  $calendar-cell-selected-hover-bg,
@@ -17078,18 +17240,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17078
17240
  $calendar-cell-selected-hover-gradient
17079
17241
  );
17080
17242
  }
17081
- .k-calendar-td.k-state-focused .k-link,
17082
- .k-calendar-td.k-focus .k-link,
17083
- .k-calendar-td.k-state-focus .k-link,
17084
- .k-calendar-td.k-focus .k-link {
17243
+ .k-calendar-td:focus .k-calendar-cell-inner,
17244
+ .k-calendar-td.k-focus .k-calendar-cell-inner,
17245
+ .k-calendar-td.k-state-focus .k-calendar-cell-inner,
17246
+ .k-calendar-td.k-state-focused .k-calendar-cell-inner {
17085
17247
  box-shadow: $calendar-cell-focused-shadow;
17086
17248
  }
17087
- .k-calendar-td.k-state-selected.k-state-focused .k-link,
17088
- .k-calendar-td.k-selected.k-focused .k-link,
17089
- .k-calendar-td.k-state-selected.k-state-focus .k-link,
17090
- .k-calendar-td.k-selected.k-focus .k-link,
17091
- .k-calendar-td.k-selected:focus .k-link,
17092
- .k-calendar-td.k-selected.k-focus .k-link {
17249
+ .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
17250
+ .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
17251
+ .k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
17093
17252
  box-shadow: $calendar-cell-selected-focus-shadow;
17094
17253
  }
17095
17254
 
@@ -17103,8 +17262,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17103
17262
  box-shadow: inset -1px 0 $calendar-navigation-border;
17104
17263
 
17105
17264
  li:hover,
17106
- li.k-state-hover,
17107
- li.k-hover {
17265
+ li.k-hover,
17266
+ li.k-state-hover {
17108
17267
  color: $calendar-today-nav-hover-text;
17109
17268
  }
17110
17269
  }
@@ -17159,19 +17318,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17159
17318
  .k-range-start,
17160
17319
  .k-range-end,
17161
17320
  .k-range-mid {
17162
- // sass-lint:disable-block indentation
17163
- background-image:
17164
- linear-gradient(
17165
- transparent $calendar-range-gap,
17166
- $calendar-range-bg $calendar-range-gap,
17167
- $calendar-range-bg calc(100% - #{$calendar-range-gap}),
17168
- transparent calc(100% - #{$calendar-range-gap})
17169
- );
17170
-
17171
- .k-ie & {
17172
- background-image: none;
17173
- background-color: $calendar-range-bg;
17174
- }
17321
+ background-color: $calendar-range-bg;
17175
17322
  }
17176
17323
 
17177
17324
  .k-range-start.k-range-end {
@@ -17181,16 +17328,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17181
17328
 
17182
17329
  .k-range-start,
17183
17330
  .k-range-end {
17184
- .k-link {
17331
+ .k-calendar-cell-inner {
17185
17332
  background-color: $calendar-cell-selected-bg;
17186
17333
  }
17187
17334
  }
17188
17335
 
17189
- .k-range-start.k-state-active,
17190
17336
  .k-range-start.k-active,
17191
- .k-range-end.k-state-active,
17192
- .k-range-end.k-active {
17193
- .k-link {
17337
+ .k-range-start.k-state-active,
17338
+ .k-range-end.k-active,
17339
+ .k-range-end.k-state-active {
17340
+ .k-calendar-cell-inner {
17194
17341
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
17195
17342
  }
17196
17343
  }
@@ -17203,8 +17350,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17203
17350
  content: "";
17204
17351
  display: block;
17205
17352
  position: absolute;
17206
- top: $calendar-range-gap;
17207
- bottom: $calendar-range-gap;
17353
+ top: 0;
17354
+ bottom: 0;
17208
17355
  width: $calendar-range-split-size;
17209
17356
  }
17210
17357
  }
@@ -17280,6 +17427,44 @@ $time-list-highlight-border: $component-border !default;
17280
17427
 
17281
17428
  $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
17282
17429
 
17430
+
17431
+ // Time selector sizes
17432
+ $kendo-time-selector-sm-font-size: $kendo-list-font-size-sm !default;
17433
+ $kendo-time-selector-sm-line-height: $kendo-list-line-height-sm !default;
17434
+ $kendo-time-selector-sm-list-item-padding-x: $kendo-list-item-padding-x-sm !default;
17435
+ $kendo-time-selector-sm-list-item-padding-y: $kendo-list-item-padding-y-sm !default;
17436
+
17437
+ $kendo-time-selector-md-font-size: $kendo-list-font-size-md !default;
17438
+ $kendo-time-selector-md-line-height: $kendo-list-line-height-md !default;
17439
+ $kendo-time-selector-md-list-item-padding-x: $kendo-list-item-padding-x-md !default;
17440
+ $kendo-time-selector-md-list-item-padding-y: $kendo-list-item-padding-y-md !default;
17441
+
17442
+ $kendo-time-selector-lg-font-size: $kendo-list-font-size-lg !default;
17443
+ $kendo-time-selector-lg-line-height: $kendo-list-line-height-lg !default;
17444
+ $kendo-time-selector-lg-list-item-padding-x: $kendo-list-item-padding-x-lg !default;
17445
+ $kendo-time-selector-lg-list-item-padding-y: $kendo-list-item-padding-y-lg !default;
17446
+
17447
+ $kendo-time-selector-sizes: (
17448
+ sm: (
17449
+ font-size: $kendo-time-selector-sm-font-size,
17450
+ line-height: $kendo-time-selector-sm-line-height,
17451
+ list-item-padding-x: $kendo-time-selector-sm-list-item-padding-x,
17452
+ list-item-padding-y: $kendo-time-selector-sm-list-item-padding-y
17453
+ ),
17454
+ md: (
17455
+ font-size: $kendo-time-selector-md-font-size,
17456
+ line-height: $kendo-time-selector-md-line-height,
17457
+ list-item-padding-x: $kendo-time-selector-md-list-item-padding-x,
17458
+ list-item-padding-y: $kendo-time-selector-md-list-item-padding-y
17459
+ ),
17460
+ lg: (
17461
+ font-size: $kendo-time-selector-lg-font-size,
17462
+ line-height: $kendo-time-selector-lg-line-height,
17463
+ list-item-padding-x: $kendo-time-selector-lg-list-item-padding-x,
17464
+ list-item-padding-y: $kendo-time-selector-lg-list-item-padding-y
17465
+ )
17466
+ ) !default;
17467
+
17283
17468
  // #endregion
17284
17469
  // #region @import "_layout.scss"; -> packages/default/scss/timeselector/_layout.scss
17285
17470
  @include exports( "timeselector/layout" ) {
@@ -17490,6 +17675,36 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
17490
17675
  top: calc( #{$time-list-title-height / 2} );
17491
17676
  }
17492
17677
 
17678
+
17679
+ // Time selector sizes
17680
+ @each $size, $size-props in $kendo-time-selector-sizes {
17681
+ $_font-size: map-get( $size-props, font-size );
17682
+ $_line-height: map-get( $size-props, line-height );
17683
+ $_list-item-padding-x: map-get( $size-props, list-item-padding-x );
17684
+ $_list-item-padding-y: map-get( $size-props, list-item-padding-y );
17685
+ $_highlight-height: calc( #{$_font-size * $_line-height} + #{ $_list-item-padding-y * 2} );
17686
+
17687
+
17688
+ .k-timeselector-#{$size} {
17689
+ font-size: $_font-size;
17690
+ line-height: $_line-height;
17691
+
17692
+ .k-time-highlight,
17693
+ .k-time-list-highlight {
17694
+ height: $_highlight-height;
17695
+ }
17696
+
17697
+ .k-time-separator {
17698
+ height: $_highlight-height;
17699
+ }
17700
+
17701
+ .k-time-list-item,
17702
+ .k-time-list .k-item {
17703
+ padding: $_list-item-padding-y $_list-item-padding-x;
17704
+ }
17705
+ }
17706
+ }
17707
+
17493
17708
  }
17494
17709
 
17495
17710
  // #endregion
@@ -18480,10 +18695,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
18480
18695
  // #region @import "../button/_index.scss"; -> packages/default/scss/button/_index.scss
18481
18696
  // File already imported_once. Skipping output.
18482
18697
  // #endregion
18483
- // #region @import "../colorpalette/_index.scss"; -> packages/default/scss/colorpalette/_index.scss
18484
- // File already imported_once. Skipping output.
18485
- // #endregion
18486
- // #region @import "../colorgradient/_index.scss"; -> packages/default/scss/colorgradient/_index.scss
18698
+ // #region @import "../coloreditor/_index.scss"; -> packages/default/scss/coloreditor/_index.scss
18487
18699
  // File already imported_once. Skipping output.
18488
18700
  // #endregion
18489
18701
  // #region @import "../popup/_index.scss"; -> packages/default/scss/popup/_index.scss
@@ -18858,6 +19070,9 @@ $kendo-daterange-picker-input-width: 10em;
18858
19070
  // #region @import "../common/_index.scss"; -> packages/default/scss/common/_index.scss
18859
19071
  // File already imported_once. Skipping output.
18860
19072
  // #endregion
19073
+ // #region @import "../table/_index.scss"; -> packages/default/scss/table/_index.scss
19074
+ // File already imported_once. Skipping output.
19075
+ // #endregion
18861
19076
  // #region @import "../input/_index.scss"; -> packages/default/scss/input/_index.scss
18862
19077
  // File already imported_once. Skipping output.
18863
19078
  // #endregion
@@ -21932,6 +22147,10 @@ $actionsheet-item-disabled-shadow: null !default;
21932
22147
  box-sizing: border-box;
21933
22148
  }
21934
22149
  }
22150
+ .k-actionsheet-fullscreen {
22151
+ max-height: 100%;
22152
+ height: 100%;
22153
+ }
21935
22154
 
21936
22155
 
21937
22156
  // Actionsheet header
@@ -21945,6 +22164,35 @@ $actionsheet-item-disabled-shadow: null !default;
21945
22164
  font-size: $actionsheet-header-font-size;
21946
22165
  font-family: $actionsheet-header-font-family;
21947
22166
  line-height: $actionsheet-header-line-height;
22167
+ flex: none;
22168
+ }
22169
+
22170
+
22171
+ // Actionsheet titlebar
22172
+ .k-actionsheet-titlebar {
22173
+ @extend .k-actionsheet-header !optional;
22174
+ display: flex;
22175
+ flex-flow: row nowrap;
22176
+ align-items: center;
22177
+ }
22178
+ .k-actionsheet-title {
22179
+ flex: 1;
22180
+ }
22181
+ .k-actionsheet-actions {
22182
+ flex: none;
22183
+ }
22184
+
22185
+
22186
+ // Actionsheet content
22187
+ .k-actionsheet-content {
22188
+ flex: 1;
22189
+ overflow: auto;
22190
+ }
22191
+
22192
+
22193
+ // Actionsheet footer
22194
+ .k-actionsheet-footer {
22195
+ flex: none;
21948
22196
  }
21949
22197
 
21950
22198
 
@@ -22041,6 +22289,37 @@ $actionsheet-item-disabled-shadow: null !default;
22041
22289
  transform: none;
22042
22290
  }
22043
22291
 
22292
+
22293
+ // Adaptive action sheet
22294
+ .k-adaptive-actionsheet {
22295
+ max-width: 100%;
22296
+ width: 100%;
22297
+
22298
+ // TMP: this should be moved to action sheet
22299
+ display: flex;
22300
+ flex-flow: column nowrap;
22301
+
22302
+ .k-calendar {
22303
+ margin-inline: auto;
22304
+ border-width: 0;
22305
+ display: flex;
22306
+ }
22307
+
22308
+ .k-timeselector {
22309
+ height: 100%;
22310
+ border-width: 0;
22311
+ overflow: hidden;
22312
+
22313
+ .k-time-part {
22314
+ display: contents;
22315
+ }
22316
+
22317
+ .k-time-list-wrapper {
22318
+ height: 100%;
22319
+ }
22320
+ }
22321
+ }
22322
+
22044
22323
  }
22045
22324
 
22046
22325
  // #endregion
@@ -41286,8 +41565,6 @@ $treemap-line-height: $line-height !default;
41286
41565
  }
41287
41566
 
41288
41567
 
41289
-
41290
-
41291
41568
  @include exports("dataviz/treemap/theme") {
41292
41569
 
41293
41570
  // Treemap