@progress/kendo-theme-material 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
@@ -16706,6 +16706,10 @@ $progressbar-indeterminate-gradient: null !default;
16706
16706
 
16707
16707
  $progressbar-chunk-border: $component-bg !default;
16708
16708
 
16709
+ // Circular Progressbar
16710
+ $kendo-circular-progressbar-arc-stroke: $primary !default;
16711
+ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16712
+
16709
16713
  // #endregion
16710
16714
  // #region @import "_layout.scss"; -> packages/material/scss/progressbar/_layout.scss
16711
16715
  // #region @import "~@progress/kendo-theme-default/scss/progressbar/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/progressbar/_layout.scss
@@ -16976,6 +16980,49 @@ $progressbar-chunk-border: $component-bg !default;
16976
16980
 
16977
16981
  }
16978
16982
 
16983
+ @include exports("circular-progressbar/layout") {
16984
+
16985
+ .k-circular-progressbar {
16986
+ display: inline-block;
16987
+ text-align: left;
16988
+ position: relative;
16989
+ }
16990
+
16991
+ .k-circular-progressbar-surface {
16992
+ height: 100%;
16993
+
16994
+ & > div {
16995
+ width: 100%;
16996
+ height: 100%;
16997
+ }
16998
+
16999
+ svg {
17000
+ width: 100%;
17001
+ height: 100%;
17002
+ }
17003
+ }
17004
+
17005
+ .k-circular-progressbar-scale {
17006
+ fill: none;
17007
+ }
17008
+
17009
+ .k-circular-progressbar-arc {
17010
+ transform-box: fill-box;
17011
+ transform-origin: center center;
17012
+ transform: rotate(-90deg);
17013
+ stroke-linecap: round;
17014
+ fill: none;
17015
+ }
17016
+
17017
+ .k-circular-progressbar-label {
17018
+ position: absolute;
17019
+ text-align: center;
17020
+ padding: 0;
17021
+ margin: 0;
17022
+ }
17023
+
17024
+ }
17025
+
16979
17026
  // #endregion
16980
17027
 
16981
17028
  @include exports("progressbar/layout/material") {
@@ -17053,6 +17100,51 @@ $progressbar-chunk-border: $component-bg !default;
17053
17100
 
17054
17101
  // #endregion
17055
17102
  // #region @import "_theme.scss"; -> packages/material/scss/progressbar/_theme.scss
17103
+ // #region @import "~@progress/kendo-theme-default/scss/progressbar/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/progressbar/_theme.scss
17104
+ @include exports("progressbar/theme") {
17105
+
17106
+ @keyframes progressbar-indeterminate-animation {
17107
+ from { background-position: 0 0; }
17108
+ to { background-position: $progressbar-height 0; }
17109
+ }
17110
+
17111
+ .k-progressbar {
17112
+ @include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
17113
+
17114
+ .k-state-selected,
17115
+ .k-selected {
17116
+ @include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
17117
+ }
17118
+
17119
+ .k-item {
17120
+ border-color: $progressbar-chunk-border;
17121
+ }
17122
+ }
17123
+
17124
+ .k-progressbar-indeterminate {
17125
+ @include fill( $progressbar-indeterminate-text, $progressbar-indeterminate-bg, $progressbar-indeterminate-border );
17126
+ @include striped-gradient( shade($progressbar-indeterminate-bg) );
17127
+ background-size: $progressbar-height $progressbar-height;
17128
+ animation: progressbar-indeterminate-animation $progressbar-animation-timing;
17129
+ }
17130
+
17131
+ }
17132
+
17133
+ @include exports("circular-progressbar/theme") {
17134
+
17135
+ .k-circular-progressbar-scale {
17136
+ stroke: $kendo-circular-progressbar-scale-stroke;
17137
+ }
17138
+
17139
+ .k-circular-progressbar-arc {
17140
+ stroke: $kendo-circular-progressbar-arc-stroke;
17141
+ transition: stroke .5s ease;
17142
+ }
17143
+
17144
+ }
17145
+
17146
+ // #endregion
17147
+
17056
17148
  @function _translate($direction, $value) {
17057
17149
  @return if($direction == horizontal, translateX($value), translateY($value));
17058
17150
  }
@@ -17100,32 +17192,12 @@ $progressbar-chunk-border: $component-bg !default;
17100
17192
  }
17101
17193
  }
17102
17194
 
17103
- @include exports("progressbar/theme") {
17195
+ @include exports("progressbar/theme/material") {
17104
17196
  @include progressbar-indeterminate-animation(horizontal);
17105
17197
  @include progressbar-indeterminate-animation(vertical);
17106
17198
 
17107
- // Theme
17108
- .k-progressbar {
17109
- @include fill(
17110
- $progressbar-text,
17111
- $progressbar-bg,
17112
- $progressbar-border,
17113
- $progressbar-gradient
17114
- );
17115
-
17116
- .k-state-selected,
17117
- .k-selected {
17118
- @include fill(
17119
- $progressbar-fill-text,
17120
- $progressbar-fill-bg,
17121
- $progressbar-fill-border,
17122
- $progressbar-fill-gradient
17123
- );
17124
- }
17125
-
17126
- .k-item {
17127
- border-color: $progressbar-chunk-border;
17128
- }
17199
+ .k-progressbar-indeterminate {
17200
+ background-image: none;
17129
17201
  }
17130
17202
  }
17131
17203
 
@@ -18388,7 +18460,6 @@ $calendar-border: $component-border !default;
18388
18460
  $calendar-header-padding-x: map-get( $spacing, 1 ) !default;
18389
18461
  $calendar-header-padding-y: map-get( $spacing, 1 ) !default;
18390
18462
  $calendar-header-border-width: 0px !default;
18391
- $calendar-header-min-width: ($calendar-cell-size * 8) !default;
18392
18463
 
18393
18464
  $calendar-header-bg: null !default;
18394
18465
  $calendar-header-text: $header-text !default;
@@ -18486,6 +18557,50 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18486
18557
 
18487
18558
  // Multiview calendar
18488
18559
 
18560
+
18561
+ // Calendar sizes
18562
+ $kendo-calendar-sm-font-size: $font-size-md !default;
18563
+ $kendo-calendar-sm-line-height: $line-height-md !default;
18564
+ $kendo-calendar-sm-cell-size: 32px !default;
18565
+ $kendo-calendar-sm-cell-padding-x: .125rem !default;
18566
+ $kendo-calendar-sm-cell-padding-y: .125rem !default;
18567
+
18568
+ $kendo-calendar-md-font-size: $font-size-md !default;
18569
+ $kendo-calendar-md-line-height: $line-height-md !default;
18570
+ $kendo-calendar-md-cell-size: 36px !default;
18571
+ $kendo-calendar-md-cell-padding-x: map-get( $spacing, 1 ) !default;
18572
+ $kendo-calendar-md-cell-padding-y: map-get( $spacing, 1 ) !default;
18573
+
18574
+ $kendo-calendar-lg-font-size: $font-size-lg !default;
18575
+ $kendo-calendar-lg-line-height: $line-height-lg !default;
18576
+ $kendo-calendar-lg-cell-size: 40px !default;
18577
+ $kendo-calendar-lg-cell-padding-x: map-get( $spacing, 1 ) !default;
18578
+ $kendo-calendar-lg-cell-padding-y: map-get( $spacing, 1 ) !default;
18579
+
18580
+ $kendo-calendar-sizes: (
18581
+ sm: (
18582
+ font-size: $kendo-calendar-sm-font-size,
18583
+ line-height: $kendo-calendar-sm-line-height,
18584
+ cell-size: $kendo-calendar-sm-cell-size,
18585
+ cell-padding-x: $kendo-calendar-sm-cell-padding-y,
18586
+ cell-padding-y: $kendo-calendar-sm-cell-padding-x
18587
+ ),
18588
+ md: (
18589
+ font-size: $kendo-calendar-md-font-size,
18590
+ line-height: $kendo-calendar-md-line-height,
18591
+ cell-size: $kendo-calendar-md-cell-size,
18592
+ cell-padding-x: $kendo-calendar-md-cell-padding-y,
18593
+ cell-padding-y: $kendo-calendar-md-cell-padding-x
18594
+ ),
18595
+ lg: (
18596
+ font-size: $kendo-calendar-lg-font-size,
18597
+ line-height: $kendo-calendar-lg-line-height,
18598
+ cell-size: $kendo-calendar-lg-cell-size,
18599
+ cell-padding-x: $kendo-calendar-lg-cell-padding-y,
18600
+ cell-padding-y: $kendo-calendar-lg-cell-padding-x
18601
+ )
18602
+ ) !default;
18603
+
18489
18604
  // #endregion
18490
18605
  // #region @import "_layout.scss"; -> packages/material/scss/calendar/_layout.scss
18491
18606
  // #region @import "~@progress/kendo-theme-default/scss/calendar/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/calendar/_layout.scss
@@ -18493,6 +18608,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18493
18608
 
18494
18609
  // Base
18495
18610
  .k-calendar {
18611
+ inline-size: var( --INTERNAL--kendo-calendar-width, min-content );
18612
+ block-size: var( --INTERNAL--kendo-calendar-height, min-content );
18496
18613
  border-width: $calendar-border-width;
18497
18614
  border-style: solid;
18498
18615
  box-sizing: border-box;
@@ -18513,19 +18630,12 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18513
18630
  > .k-calendar {
18514
18631
  border: 0;
18515
18632
  }
18516
-
18517
- // Common
18518
- .k-link {
18519
- white-space: normal;
18520
- position: relative;
18521
- overflow: hidden;
18522
- }
18523
18633
  }
18524
18634
 
18525
18635
 
18526
18636
  // Calendar table
18527
18637
  .k-calendar-table {
18528
- margin: 0;
18638
+ margin: 0 auto;
18529
18639
  border-width: 0;
18530
18640
  border-color: inherit;
18531
18641
  border-spacing: 0;
@@ -18533,8 +18643,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18533
18643
  table-layout: fixed;
18534
18644
  text-align: center;
18535
18645
  outline: 0;
18536
- display: inline-table;
18537
- vertical-align: top;
18646
+ display: table;
18538
18647
  position: relative;
18539
18648
  z-index: 1;
18540
18649
  }
@@ -18552,6 +18661,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18552
18661
  font-weight: $calendar-caption-font-weight;
18553
18662
  cursor: default;
18554
18663
  }
18664
+
18665
+
18666
+ // Calendar cell
18555
18667
  .k-calendar-th,
18556
18668
  .k-calendar-td {
18557
18669
  border-width: 0;
@@ -18573,10 +18685,32 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18573
18685
  }
18574
18686
  .k-calendar-td {
18575
18687
  @include border-radius( $calendar-cell-border-radius );
18688
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
18689
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
18576
18690
  border-color: transparent;
18577
18691
  }
18578
18692
 
18579
18693
 
18694
+ // Calendar cell inner
18695
+ // Remove .k-calendar once we remove k-link
18696
+ .k-calendar .k-calendar-cell-inner {
18697
+ @include border-radius( $calendar-cell-border-radius );
18698
+ padding: $calendar-cell-padding-y $calendar-cell-padding-x;
18699
+ padding-inline: var( --INTERNAL--kendo-calendar-cell-padding-x, #{$calendar-cell-padding-x} );
18700
+ padding-block: var( --INTERNAL--kendo-calendar-cell-padding-y, #{$calendar-cell-padding-y} );
18701
+ width: 100%;
18702
+ height: 100%;
18703
+ box-sizing: border-box;
18704
+ display: flex;
18705
+ flex-direction: row;
18706
+ align-items: center;
18707
+ justify-content: center;
18708
+ white-space: normal;
18709
+ position: relative;
18710
+ overflow: hidden;
18711
+ }
18712
+
18713
+
18580
18714
  // Calendar header
18581
18715
  .k-calendar .k-header {
18582
18716
  padding: $calendar-header-padding-y $calendar-header-padding-x;
@@ -18594,7 +18728,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18594
18728
  // Calendar header
18595
18729
  .k-calendar-header {
18596
18730
  padding: $calendar-header-padding-y $calendar-header-padding-x;
18597
- min-width: $calendar-header-min-width;
18731
+ min-width: ($calendar-cell-size * 8);
18598
18732
  box-sizing: border-box;
18599
18733
  display: flex;
18600
18734
  align-items: center;
@@ -18636,22 +18770,13 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18636
18770
  padding: 0 $calendar-header-padding-x;
18637
18771
  // setting width / height prevents layout changes in meta views
18638
18772
  width: $calendar-view-width;
18773
+ inline-size: var( --INTERNAL--kendo-calendar-view-width, #{$calendar-view-width});
18639
18774
  min-height: $calendar-view-height;
18640
18775
  box-sizing: content-box;
18641
18776
  gap: $calendar-view-gap;
18642
18777
  position: relative;
18643
18778
  z-index: 1;
18644
18779
  overflow: hidden;
18645
-
18646
- .k-link {
18647
- @include border-radius( $calendar-cell-border-radius );
18648
- padding: $calendar-cell-padding-y $calendar-cell-padding-x;
18649
- box-sizing: border-box;
18650
- display: flex;
18651
- flex-direction: row;
18652
- align-items: center;
18653
- justify-content: center;
18654
- }
18655
18780
  }
18656
18781
  .k-week-number .k-calendar-view {
18657
18782
  width: (8 * $calendar-cell-size);
@@ -18659,61 +18784,59 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18659
18784
 
18660
18785
 
18661
18786
  // Month view
18787
+ .k-month-calendar,
18662
18788
  .k-calendar-monthview {
18663
18789
  $_month-cell-size: $calendar-cell-size;
18664
18790
 
18665
18791
  .k-calendar-td {
18666
18792
  width: $_month-cell-size;
18667
18793
  height: $_month-cell-size;
18668
- }
18669
- .k-link {
18670
- width: $_month-cell-size;
18671
- height: $_month-cell-size;
18794
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
18795
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
18672
18796
  }
18673
18797
  }
18674
18798
 
18675
18799
 
18676
18800
  // Year view
18801
+ .k-year-calendar,
18677
18802
  .k-calendar-yearview {
18678
- $_year-cell-size: ( (7 / 4) * $calendar-cell-size);
18803
+ $_year-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
18679
18804
 
18680
18805
  .k-calendar-td {
18681
- width: auto;
18682
- height: auto;
18683
- }
18684
- .k-link {
18685
18806
  width: $_year-cell-size;
18686
18807
  height: $_year-cell-size;
18808
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
18809
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
18687
18810
  }
18688
18811
  }
18689
18812
 
18690
18813
 
18691
18814
  // Decade view
18815
+ .k-decade-calendar,
18692
18816
  .k-calendar-decadeview {
18693
- $_decade-cell-size: ( (7 / 4) * $calendar-cell-size);
18817
+ $_decade-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
18694
18818
 
18695
18819
  .k-calendar-td {
18696
- width: auto;
18697
- height: auto;
18698
- }
18699
- .k-link {
18700
18820
  width: $_decade-cell-size;
18701
18821
  height: $_decade-cell-size;
18822
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
18823
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
18702
18824
  }
18703
18825
  }
18704
18826
 
18705
18827
 
18706
18828
  // Century view
18829
+ .k-century-calendar,
18707
18830
  .k-calendar-centuryview {
18708
- $_century-cell-size: ( (7 / 4) * $calendar-cell-size);
18831
+ $_century-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
18709
18832
 
18710
18833
  .k-calendar-td {
18711
- width: auto;
18712
- height: auto;
18713
- }
18714
- .k-link {
18715
18834
  width: $_century-cell-size;
18716
18835
  height: $_century-cell-size;
18836
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
18837
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
18838
+ }
18839
+ .k-calendar-cell-inner {
18717
18840
  text-align: left;
18718
18841
  }
18719
18842
  }
@@ -18753,6 +18876,56 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18753
18876
  top: 0;
18754
18877
  right: 0;
18755
18878
  }
18879
+
18880
+
18881
+
18882
+
18883
+ // Calendar sizes
18884
+ @each $size, $size-props in $kendo-calendar-sizes {
18885
+ $_font-size: map-get( $size-props, font-size );
18886
+ $_line-height: map-get( $size-props, line-height );
18887
+ $_cell-size: map-get( $size-props, cell-size );
18888
+ $_cell-padding-x: map-get( $size-props, cell-padding-x );
18889
+ $_cell-padding-y: map-get( $size-props, cell-padding-y );
18890
+
18891
+ $_month-cell-size: $_cell-size;
18892
+ $_year-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
18893
+ $_decade-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
18894
+ $_century-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
18895
+
18896
+ .k-calendar-#{$size} {
18897
+ --INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
18898
+ --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-#{$size}-cell-padding-x, #{$_cell-padding-x} );
18899
+ --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-#{$size}-cell-padding-y, #{$_cell-padding-y} );
18900
+ font-size: $_font-size;
18901
+ line-height: $_line-height;
18902
+
18903
+ &.k-month-calendar,
18904
+ .k-calendar-monthview {
18905
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-month-cell-size, #{$_month-cell-size} );
18906
+ }
18907
+ &.k-year-calendar,
18908
+ .k-calendar-yearview {
18909
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-year-cell-size, #{$_year-cell-size} );
18910
+ }
18911
+ &.k-decade-calendar,
18912
+ .k-calendar-decadeview {
18913
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-decade-cell-size, #{$_decade-cell-size} );
18914
+ }
18915
+ &.k-century-calendar,
18916
+ .k-calendar-centuryview {
18917
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-century-cell-size, #{$_century-cell-size} );
18918
+ }
18919
+ }
18920
+ }
18921
+
18922
+
18923
+
18924
+
18925
+ // Alias
18926
+ .k-link {
18927
+ @extend .k-calendar-cell-inner;
18928
+ }
18756
18929
  }
18757
18930
 
18758
18931
 
@@ -19030,8 +19203,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19030
19203
  &.k-hover,
19031
19204
  &.k-state-hover,
19032
19205
  &:focus,
19033
- &.k-state-focus,
19034
- &.k-focus {
19206
+ &.k-focus,
19207
+ &.k-state-focus {
19035
19208
  color: $calendar-today-nav-hover-text;
19036
19209
  }
19037
19210
  }
@@ -19049,11 +19222,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19049
19222
  // Special days
19050
19223
  .k-calendar-view .k-today {
19051
19224
  @if $calendar-today-style == box {
19052
- .k-link {
19225
+ .k-calendar-cell-inner {
19053
19226
  box-shadow: inset 0 0 0 1px $calendar-today-color;
19054
19227
  }
19055
- &.k-state-focused .k-link,
19056
- &.k-focus .k-link {
19228
+ &.k-focus .k-calendar-cell-inner,
19229
+ &.k-state-focused .k-calendar-cell-inner {
19057
19230
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
19058
19231
  }
19059
19232
  } @else if $calendar-today-style == color {
@@ -19087,9 +19260,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19087
19260
 
19088
19261
 
19089
19262
  // Interactive states
19090
- .k-calendar-td:hover .k-link,
19091
- .k-calendar-td.k-state-hover .k-link,
19092
- .k-calendar-td.k-hover .k-link {
19263
+ .k-calendar-td:hover .k-calendar-cell-inner,
19264
+ .k-calendar-td.k-hover .k-calendar-cell-inner,
19265
+ .k-calendar-td.k-state-hover .k-calendar-cell-inner {
19093
19266
  @include fill(
19094
19267
  $calendar-cell-hover-text,
19095
19268
  $calendar-cell-hover-bg,
@@ -19097,8 +19270,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19097
19270
  $calendar-cell-hover-gradient
19098
19271
  );
19099
19272
  }
19100
- .k-calendar-td.k-state-selected .k-link,
19101
- .k-calendar-td.k-selected .k-link {
19273
+ .k-calendar-td.k-selected .k-calendar-cell-inner,
19274
+ .k-calendar-td.k-state-selected .k-calendar-cell-inner {
19102
19275
  @include fill(
19103
19276
  $calendar-cell-selected-text,
19104
19277
  $calendar-cell-selected-bg,
@@ -19106,12 +19279,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19106
19279
  $calendar-cell-selected-gradient
19107
19280
  );
19108
19281
  }
19109
- .k-calendar-td.k-state-selected:hover .k-link,
19110
- .k-calendar-td.k-selected:hover .k-link,
19111
- .k-calendar-td.k-state-selected.k-state-hover .k-link,
19112
- .k-calendar-td.k-selected.k-hover .k-link,
19113
- .k-calendar-td.k-selected:hover .k-link,
19114
- .k-calendar-td.k-selected.k-hover .k-link {
19282
+ .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
19283
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
19284
+ .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
19115
19285
  @include fill(
19116
19286
  $calendar-cell-selected-hover-text,
19117
19287
  $calendar-cell-selected-hover-bg,
@@ -19119,18 +19289,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19119
19289
  $calendar-cell-selected-hover-gradient
19120
19290
  );
19121
19291
  }
19122
- .k-calendar-td.k-state-focused .k-link,
19123
- .k-calendar-td.k-focus .k-link,
19124
- .k-calendar-td.k-state-focus .k-link,
19125
- .k-calendar-td.k-focus .k-link {
19292
+ .k-calendar-td:focus .k-calendar-cell-inner,
19293
+ .k-calendar-td.k-focus .k-calendar-cell-inner,
19294
+ .k-calendar-td.k-state-focus .k-calendar-cell-inner,
19295
+ .k-calendar-td.k-state-focused .k-calendar-cell-inner {
19126
19296
  box-shadow: $calendar-cell-focused-shadow;
19127
19297
  }
19128
- .k-calendar-td.k-state-selected.k-state-focused .k-link,
19129
- .k-calendar-td.k-selected.k-focused .k-link,
19130
- .k-calendar-td.k-state-selected.k-state-focus .k-link,
19131
- .k-calendar-td.k-selected.k-focus .k-link,
19132
- .k-calendar-td.k-selected:focus .k-link,
19133
- .k-calendar-td.k-selected.k-focus .k-link {
19298
+ .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
19299
+ .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
19300
+ .k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
19134
19301
  box-shadow: $calendar-cell-selected-focus-shadow;
19135
19302
  }
19136
19303
 
@@ -19144,8 +19311,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19144
19311
  box-shadow: inset -1px 0 $calendar-navigation-border;
19145
19312
 
19146
19313
  li:hover,
19147
- li.k-state-hover,
19148
- li.k-hover {
19314
+ li.k-hover,
19315
+ li.k-state-hover {
19149
19316
  color: $calendar-today-nav-hover-text;
19150
19317
  }
19151
19318
  }
@@ -19200,19 +19367,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19200
19367
  .k-range-start,
19201
19368
  .k-range-end,
19202
19369
  .k-range-mid {
19203
- // sass-lint:disable-block indentation
19204
- background-image:
19205
- linear-gradient(
19206
- transparent $calendar-range-gap,
19207
- $calendar-range-bg $calendar-range-gap,
19208
- $calendar-range-bg calc(100% - #{$calendar-range-gap}),
19209
- transparent calc(100% - #{$calendar-range-gap})
19210
- );
19211
-
19212
- .k-ie & {
19213
- background-image: none;
19214
- background-color: $calendar-range-bg;
19215
- }
19370
+ background-color: $calendar-range-bg;
19216
19371
  }
19217
19372
 
19218
19373
  .k-range-start.k-range-end {
@@ -19222,16 +19377,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19222
19377
 
19223
19378
  .k-range-start,
19224
19379
  .k-range-end {
19225
- .k-link {
19380
+ .k-calendar-cell-inner {
19226
19381
  background-color: $calendar-cell-selected-bg;
19227
19382
  }
19228
19383
  }
19229
19384
 
19230
- .k-range-start.k-state-active,
19231
19385
  .k-range-start.k-active,
19232
- .k-range-end.k-state-active,
19233
- .k-range-end.k-active {
19234
- .k-link {
19386
+ .k-range-start.k-state-active,
19387
+ .k-range-end.k-active,
19388
+ .k-range-end.k-state-active {
19389
+ .k-calendar-cell-inner {
19235
19390
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
19236
19391
  }
19237
19392
  }
@@ -19244,8 +19399,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19244
19399
  content: "";
19245
19400
  display: block;
19246
19401
  position: absolute;
19247
- top: $calendar-range-gap;
19248
- bottom: $calendar-range-gap;
19402
+ top: 0;
19403
+ bottom: 0;
19249
19404
  width: $calendar-range-split-size;
19250
19405
  }
19251
19406
  }
@@ -19347,6 +19502,44 @@ $time-list-highlight-border: $component-border !default;
19347
19502
 
19348
19503
  $time-list-focused-bg: null !default;
19349
19504
 
19505
+
19506
+ // Time selector sizes
19507
+ $kendo-time-selector-sm-font-size: $kendo-list-font-size-sm !default;
19508
+ $kendo-time-selector-sm-line-height: $kendo-list-line-height-sm !default;
19509
+ $kendo-time-selector-sm-list-item-padding-x: $kendo-list-item-padding-x-sm !default;
19510
+ $kendo-time-selector-sm-list-item-padding-y: $kendo-list-item-padding-y-sm !default;
19511
+
19512
+ $kendo-time-selector-md-font-size: $kendo-list-font-size-md !default;
19513
+ $kendo-time-selector-md-line-height: $kendo-list-line-height-md !default;
19514
+ $kendo-time-selector-md-list-item-padding-x: $kendo-list-item-padding-x-md !default;
19515
+ $kendo-time-selector-md-list-item-padding-y: $kendo-list-item-padding-y-md !default;
19516
+
19517
+ $kendo-time-selector-lg-font-size: $kendo-list-font-size-lg !default;
19518
+ $kendo-time-selector-lg-line-height: $kendo-list-line-height-lg !default;
19519
+ $kendo-time-selector-lg-list-item-padding-x: $kendo-list-item-padding-x-lg !default;
19520
+ $kendo-time-selector-lg-list-item-padding-y: $kendo-list-item-padding-y-lg !default;
19521
+
19522
+ $kendo-time-selector-sizes: (
19523
+ sm: (
19524
+ font-size: $kendo-time-selector-sm-font-size,
19525
+ line-height: $kendo-time-selector-sm-line-height,
19526
+ list-item-padding-x: $kendo-time-selector-sm-list-item-padding-x,
19527
+ list-item-padding-y: $kendo-time-selector-sm-list-item-padding-y
19528
+ ),
19529
+ md: (
19530
+ font-size: $kendo-time-selector-md-font-size,
19531
+ line-height: $kendo-time-selector-md-line-height,
19532
+ list-item-padding-x: $kendo-time-selector-md-list-item-padding-x,
19533
+ list-item-padding-y: $kendo-time-selector-md-list-item-padding-y
19534
+ ),
19535
+ lg: (
19536
+ font-size: $kendo-time-selector-lg-font-size,
19537
+ line-height: $kendo-time-selector-lg-line-height,
19538
+ list-item-padding-x: $kendo-time-selector-lg-list-item-padding-x,
19539
+ list-item-padding-y: $kendo-time-selector-lg-list-item-padding-y
19540
+ )
19541
+ ) !default;
19542
+
19350
19543
  // #endregion
19351
19544
  // #region @import "_layout.scss"; -> packages/material/scss/timeselector/_layout.scss
19352
19545
  // #region @import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/timeselector/_layout.scss
@@ -19558,6 +19751,36 @@ $time-list-focused-bg: null !default;
19558
19751
  top: calc( #{$time-list-title-height / 2} );
19559
19752
  }
19560
19753
 
19754
+
19755
+ // Time selector sizes
19756
+ @each $size, $size-props in $kendo-time-selector-sizes {
19757
+ $_font-size: map-get( $size-props, font-size );
19758
+ $_line-height: map-get( $size-props, line-height );
19759
+ $_list-item-padding-x: map-get( $size-props, list-item-padding-x );
19760
+ $_list-item-padding-y: map-get( $size-props, list-item-padding-y );
19761
+ $_highlight-height: calc( #{$_font-size * $_line-height} + #{ $_list-item-padding-y * 2} );
19762
+
19763
+
19764
+ .k-timeselector-#{$size} {
19765
+ font-size: $_font-size;
19766
+ line-height: $_line-height;
19767
+
19768
+ .k-time-highlight,
19769
+ .k-time-list-highlight {
19770
+ height: $_highlight-height;
19771
+ }
19772
+
19773
+ .k-time-separator {
19774
+ height: $_highlight-height;
19775
+ }
19776
+
19777
+ .k-time-list-item,
19778
+ .k-time-list .k-item {
19779
+ padding: $_list-item-padding-y $_list-item-padding-x;
19780
+ }
19781
+ }
19782
+ }
19783
+
19561
19784
  }
19562
19785
 
19563
19786
  // #endregion
@@ -24303,6 +24526,10 @@ $actionsheet-item-disabled-opacity: .42 !default;
24303
24526
  box-sizing: border-box;
24304
24527
  }
24305
24528
  }
24529
+ .k-actionsheet-fullscreen {
24530
+ max-height: 100%;
24531
+ height: 100%;
24532
+ }
24306
24533
 
24307
24534
 
24308
24535
  // Actionsheet header
@@ -24316,6 +24543,35 @@ $actionsheet-item-disabled-opacity: .42 !default;
24316
24543
  font-size: $actionsheet-header-font-size;
24317
24544
  font-family: $actionsheet-header-font-family;
24318
24545
  line-height: $actionsheet-header-line-height;
24546
+ flex: none;
24547
+ }
24548
+
24549
+
24550
+ // Actionsheet titlebar
24551
+ .k-actionsheet-titlebar {
24552
+ @extend .k-actionsheet-header !optional;
24553
+ display: flex;
24554
+ flex-flow: row nowrap;
24555
+ align-items: center;
24556
+ }
24557
+ .k-actionsheet-title {
24558
+ flex: 1;
24559
+ }
24560
+ .k-actionsheet-actions {
24561
+ flex: none;
24562
+ }
24563
+
24564
+
24565
+ // Actionsheet content
24566
+ .k-actionsheet-content {
24567
+ flex: 1;
24568
+ overflow: auto;
24569
+ }
24570
+
24571
+
24572
+ // Actionsheet footer
24573
+ .k-actionsheet-footer {
24574
+ flex: none;
24319
24575
  }
24320
24576
 
24321
24577
 
@@ -24412,6 +24668,37 @@ $actionsheet-item-disabled-opacity: .42 !default;
24412
24668
  transform: none;
24413
24669
  }
24414
24670
 
24671
+
24672
+ // Adaptive action sheet
24673
+ .k-adaptive-actionsheet {
24674
+ max-width: 100%;
24675
+ width: 100%;
24676
+
24677
+ // TMP: this should be moved to action sheet
24678
+ display: flex;
24679
+ flex-flow: column nowrap;
24680
+
24681
+ .k-calendar {
24682
+ margin-inline: auto;
24683
+ border-width: 0;
24684
+ display: flex;
24685
+ }
24686
+
24687
+ .k-timeselector {
24688
+ height: 100%;
24689
+ border-width: 0;
24690
+ overflow: hidden;
24691
+
24692
+ .k-time-part {
24693
+ display: contents;
24694
+ }
24695
+
24696
+ .k-time-list-wrapper {
24697
+ height: 100%;
24698
+ }
24699
+ }
24700
+ }
24701
+
24415
24702
  }
24416
24703
 
24417
24704
  // #endregion
@@ -44920,8 +45207,6 @@ $treemap-line-height: $line-height !default;
44920
45207
  }
44921
45208
 
44922
45209
 
44923
-
44924
-
44925
45210
  @include exports("dataviz/treemap/theme") {
44926
45211
 
44927
45212
  // Treemap