@progress/kendo-theme-material 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
@@ -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;
@@ -18606,7 +18740,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18606
18740
  font-weight: bold;
18607
18741
  }
18608
18742
  .k-today,
18609
- .k-nav-today {
18743
+ .k-nav-today,
18744
+ .k-calendar-nav-today {
18610
18745
  text-decoration: none;
18611
18746
  cursor: pointer;
18612
18747
  outline: none;
@@ -18636,22 +18771,13 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18636
18771
  padding: 0 $calendar-header-padding-x;
18637
18772
  // setting width / height prevents layout changes in meta views
18638
18773
  width: $calendar-view-width;
18774
+ inline-size: var( --INTERNAL--kendo-calendar-view-width, #{$calendar-view-width});
18639
18775
  min-height: $calendar-view-height;
18640
18776
  box-sizing: content-box;
18641
18777
  gap: $calendar-view-gap;
18642
18778
  position: relative;
18643
18779
  z-index: 1;
18644
18780
  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
18781
  }
18656
18782
  .k-week-number .k-calendar-view {
18657
18783
  width: (8 * $calendar-cell-size);
@@ -18659,61 +18785,59 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18659
18785
 
18660
18786
 
18661
18787
  // Month view
18788
+ .k-month-calendar,
18662
18789
  .k-calendar-monthview {
18663
18790
  $_month-cell-size: $calendar-cell-size;
18664
18791
 
18665
18792
  .k-calendar-td {
18666
18793
  width: $_month-cell-size;
18667
18794
  height: $_month-cell-size;
18668
- }
18669
- .k-link {
18670
- width: $_month-cell-size;
18671
- height: $_month-cell-size;
18795
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
18796
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
18672
18797
  }
18673
18798
  }
18674
18799
 
18675
18800
 
18676
18801
  // Year view
18802
+ .k-year-calendar,
18677
18803
  .k-calendar-yearview {
18678
- $_year-cell-size: ( (7 / 4) * $calendar-cell-size);
18804
+ $_year-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
18679
18805
 
18680
18806
  .k-calendar-td {
18681
- width: auto;
18682
- height: auto;
18683
- }
18684
- .k-link {
18685
18807
  width: $_year-cell-size;
18686
18808
  height: $_year-cell-size;
18809
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
18810
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
18687
18811
  }
18688
18812
  }
18689
18813
 
18690
18814
 
18691
18815
  // Decade view
18816
+ .k-decade-calendar,
18692
18817
  .k-calendar-decadeview {
18693
- $_decade-cell-size: ( (7 / 4) * $calendar-cell-size);
18818
+ $_decade-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
18694
18819
 
18695
18820
  .k-calendar-td {
18696
- width: auto;
18697
- height: auto;
18698
- }
18699
- .k-link {
18700
18821
  width: $_decade-cell-size;
18701
18822
  height: $_decade-cell-size;
18823
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
18824
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
18702
18825
  }
18703
18826
  }
18704
18827
 
18705
18828
 
18706
18829
  // Century view
18830
+ .k-century-calendar,
18707
18831
  .k-calendar-centuryview {
18708
- $_century-cell-size: ( (7 / 4) * $calendar-cell-size);
18832
+ $_century-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
18709
18833
 
18710
18834
  .k-calendar-td {
18711
- width: auto;
18712
- height: auto;
18713
- }
18714
- .k-link {
18715
18835
  width: $_century-cell-size;
18716
18836
  height: $_century-cell-size;
18837
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
18838
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
18839
+ }
18840
+ .k-calendar-cell-inner {
18717
18841
  text-align: left;
18718
18842
  }
18719
18843
  }
@@ -18753,6 +18877,56 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18753
18877
  top: 0;
18754
18878
  right: 0;
18755
18879
  }
18880
+
18881
+
18882
+
18883
+
18884
+ // Calendar sizes
18885
+ @each $size, $size-props in $kendo-calendar-sizes {
18886
+ $_font-size: map-get( $size-props, font-size );
18887
+ $_line-height: map-get( $size-props, line-height );
18888
+ $_cell-size: map-get( $size-props, cell-size );
18889
+ $_cell-padding-x: map-get( $size-props, cell-padding-x );
18890
+ $_cell-padding-y: map-get( $size-props, cell-padding-y );
18891
+
18892
+ $_month-cell-size: $_cell-size;
18893
+ $_year-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
18894
+ $_decade-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
18895
+ $_century-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
18896
+
18897
+ .k-calendar-#{$size} {
18898
+ --INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
18899
+ --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-#{$size}-cell-padding-x, #{$_cell-padding-x} );
18900
+ --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-#{$size}-cell-padding-y, #{$_cell-padding-y} );
18901
+ font-size: $_font-size;
18902
+ line-height: $_line-height;
18903
+
18904
+ &.k-month-calendar,
18905
+ .k-calendar-monthview {
18906
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-month-cell-size, #{$_month-cell-size} );
18907
+ }
18908
+ &.k-year-calendar,
18909
+ .k-calendar-yearview {
18910
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-year-cell-size, #{$_year-cell-size} );
18911
+ }
18912
+ &.k-decade-calendar,
18913
+ .k-calendar-decadeview {
18914
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-decade-cell-size, #{$_decade-cell-size} );
18915
+ }
18916
+ &.k-century-calendar,
18917
+ .k-calendar-centuryview {
18918
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-century-cell-size, #{$_century-cell-size} );
18919
+ }
18920
+ }
18921
+ }
18922
+
18923
+
18924
+
18925
+
18926
+ // Alias
18927
+ .k-link {
18928
+ @extend .k-calendar-cell-inner;
18929
+ }
18756
18930
  }
18757
18931
 
18758
18932
 
@@ -18937,7 +19111,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18937
19111
  .k-nav-prev,
18938
19112
  .k-nav-next,
18939
19113
  .k-prev-view,
18940
- .k-next-view {
19114
+ .k-next-view,
19115
+ .k-calendar-nav-prev,
19116
+ .k-calendar-nav-next {
18941
19117
  transform: scaleX(-1);
18942
19118
  }
18943
19119
 
@@ -18974,7 +19150,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18974
19150
  .k-title,
18975
19151
  .k-calendar-title,
18976
19152
  .k-nav-fast,
18977
- .k-nav-today {
19153
+ .k-nav-today,
19154
+ .k-calendar-nav-today {
18978
19155
  font-weight: 500;
18979
19156
  text-transform: none;
18980
19157
  }
@@ -19023,15 +19200,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19023
19200
 
19024
19201
 
19025
19202
  // Today navigation
19026
- .k-nav-today {
19203
+ .k-nav-today,
19204
+ .k-calendar-nav-today {
19027
19205
  color: $calendar-today-nav-text;
19028
19206
 
19029
19207
  &:hover,
19030
19208
  &.k-hover,
19031
19209
  &.k-state-hover,
19032
19210
  &:focus,
19033
- &.k-state-focus,
19034
- &.k-focus {
19211
+ &.k-focus,
19212
+ &.k-state-focus {
19035
19213
  color: $calendar-today-nav-hover-text;
19036
19214
  }
19037
19215
  }
@@ -19049,11 +19227,11 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19049
19227
  // Special days
19050
19228
  .k-calendar-view .k-today {
19051
19229
  @if $calendar-today-style == box {
19052
- .k-link {
19230
+ .k-calendar-cell-inner {
19053
19231
  box-shadow: inset 0 0 0 1px $calendar-today-color;
19054
19232
  }
19055
- &.k-state-focused .k-link,
19056
- &.k-focus .k-link {
19233
+ &.k-focus .k-calendar-cell-inner,
19234
+ &.k-state-focused .k-calendar-cell-inner {
19057
19235
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
19058
19236
  }
19059
19237
  } @else if $calendar-today-style == color {
@@ -19087,9 +19265,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19087
19265
 
19088
19266
 
19089
19267
  // 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 {
19268
+ .k-calendar-td:hover .k-calendar-cell-inner,
19269
+ .k-calendar-td.k-hover .k-calendar-cell-inner,
19270
+ .k-calendar-td.k-state-hover .k-calendar-cell-inner {
19093
19271
  @include fill(
19094
19272
  $calendar-cell-hover-text,
19095
19273
  $calendar-cell-hover-bg,
@@ -19097,8 +19275,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19097
19275
  $calendar-cell-hover-gradient
19098
19276
  );
19099
19277
  }
19100
- .k-calendar-td.k-state-selected .k-link,
19101
- .k-calendar-td.k-selected .k-link {
19278
+ .k-calendar-td.k-selected .k-calendar-cell-inner,
19279
+ .k-calendar-td.k-state-selected .k-calendar-cell-inner {
19102
19280
  @include fill(
19103
19281
  $calendar-cell-selected-text,
19104
19282
  $calendar-cell-selected-bg,
@@ -19106,12 +19284,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19106
19284
  $calendar-cell-selected-gradient
19107
19285
  );
19108
19286
  }
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 {
19287
+ .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
19288
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
19289
+ .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
19115
19290
  @include fill(
19116
19291
  $calendar-cell-selected-hover-text,
19117
19292
  $calendar-cell-selected-hover-bg,
@@ -19119,18 +19294,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19119
19294
  $calendar-cell-selected-hover-gradient
19120
19295
  );
19121
19296
  }
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 {
19297
+ .k-calendar-td:focus .k-calendar-cell-inner,
19298
+ .k-calendar-td.k-focus .k-calendar-cell-inner,
19299
+ .k-calendar-td.k-state-focus .k-calendar-cell-inner,
19300
+ .k-calendar-td.k-state-focused .k-calendar-cell-inner {
19126
19301
  box-shadow: $calendar-cell-focused-shadow;
19127
19302
  }
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 {
19303
+ .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
19304
+ .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
19305
+ .k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
19134
19306
  box-shadow: $calendar-cell-selected-focus-shadow;
19135
19307
  }
19136
19308
 
@@ -19144,8 +19316,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19144
19316
  box-shadow: inset -1px 0 $calendar-navigation-border;
19145
19317
 
19146
19318
  li:hover,
19147
- li.k-state-hover,
19148
- li.k-hover {
19319
+ li.k-hover,
19320
+ li.k-state-hover {
19149
19321
  color: $calendar-today-nav-hover-text;
19150
19322
  }
19151
19323
  }
@@ -19200,19 +19372,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19200
19372
  .k-range-start,
19201
19373
  .k-range-end,
19202
19374
  .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
- }
19375
+ background-color: $calendar-range-bg;
19216
19376
  }
19217
19377
 
19218
19378
  .k-range-start.k-range-end {
@@ -19222,16 +19382,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19222
19382
 
19223
19383
  .k-range-start,
19224
19384
  .k-range-end {
19225
- .k-link {
19385
+ .k-calendar-cell-inner {
19226
19386
  background-color: $calendar-cell-selected-bg;
19227
19387
  }
19228
19388
  }
19229
19389
 
19230
- .k-range-start.k-state-active,
19231
19390
  .k-range-start.k-active,
19232
- .k-range-end.k-state-active,
19233
- .k-range-end.k-active {
19234
- .k-link {
19391
+ .k-range-start.k-state-active,
19392
+ .k-range-end.k-active,
19393
+ .k-range-end.k-state-active {
19394
+ .k-calendar-cell-inner {
19235
19395
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
19236
19396
  }
19237
19397
  }
@@ -19244,8 +19404,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
19244
19404
  content: "";
19245
19405
  display: block;
19246
19406
  position: absolute;
19247
- top: $calendar-range-gap;
19248
- bottom: $calendar-range-gap;
19407
+ top: 0;
19408
+ bottom: 0;
19249
19409
  width: $calendar-range-split-size;
19250
19410
  }
19251
19411
  }
@@ -19347,6 +19507,44 @@ $time-list-highlight-border: $component-border !default;
19347
19507
 
19348
19508
  $time-list-focused-bg: null !default;
19349
19509
 
19510
+
19511
+ // Time selector sizes
19512
+ $kendo-time-selector-sm-font-size: $kendo-list-font-size-sm !default;
19513
+ $kendo-time-selector-sm-line-height: $kendo-list-line-height-sm !default;
19514
+ $kendo-time-selector-sm-list-item-padding-x: $kendo-list-item-padding-x-sm !default;
19515
+ $kendo-time-selector-sm-list-item-padding-y: $kendo-list-item-padding-y-sm !default;
19516
+
19517
+ $kendo-time-selector-md-font-size: $kendo-list-font-size-md !default;
19518
+ $kendo-time-selector-md-line-height: $kendo-list-line-height-md !default;
19519
+ $kendo-time-selector-md-list-item-padding-x: $kendo-list-item-padding-x-md !default;
19520
+ $kendo-time-selector-md-list-item-padding-y: $kendo-list-item-padding-y-md !default;
19521
+
19522
+ $kendo-time-selector-lg-font-size: $kendo-list-font-size-lg !default;
19523
+ $kendo-time-selector-lg-line-height: $kendo-list-line-height-lg !default;
19524
+ $kendo-time-selector-lg-list-item-padding-x: $kendo-list-item-padding-x-lg !default;
19525
+ $kendo-time-selector-lg-list-item-padding-y: $kendo-list-item-padding-y-lg !default;
19526
+
19527
+ $kendo-time-selector-sizes: (
19528
+ sm: (
19529
+ font-size: $kendo-time-selector-sm-font-size,
19530
+ line-height: $kendo-time-selector-sm-line-height,
19531
+ list-item-padding-x: $kendo-time-selector-sm-list-item-padding-x,
19532
+ list-item-padding-y: $kendo-time-selector-sm-list-item-padding-y
19533
+ ),
19534
+ md: (
19535
+ font-size: $kendo-time-selector-md-font-size,
19536
+ line-height: $kendo-time-selector-md-line-height,
19537
+ list-item-padding-x: $kendo-time-selector-md-list-item-padding-x,
19538
+ list-item-padding-y: $kendo-time-selector-md-list-item-padding-y
19539
+ ),
19540
+ lg: (
19541
+ font-size: $kendo-time-selector-lg-font-size,
19542
+ line-height: $kendo-time-selector-lg-line-height,
19543
+ list-item-padding-x: $kendo-time-selector-lg-list-item-padding-x,
19544
+ list-item-padding-y: $kendo-time-selector-lg-list-item-padding-y
19545
+ )
19546
+ ) !default;
19547
+
19350
19548
  // #endregion
19351
19549
  // #region @import "_layout.scss"; -> packages/material/scss/timeselector/_layout.scss
19352
19550
  // #region @import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/timeselector/_layout.scss
@@ -19558,6 +19756,36 @@ $time-list-focused-bg: null !default;
19558
19756
  top: calc( #{$time-list-title-height / 2} );
19559
19757
  }
19560
19758
 
19759
+
19760
+ // Time selector sizes
19761
+ @each $size, $size-props in $kendo-time-selector-sizes {
19762
+ $_font-size: map-get( $size-props, font-size );
19763
+ $_line-height: map-get( $size-props, line-height );
19764
+ $_list-item-padding-x: map-get( $size-props, list-item-padding-x );
19765
+ $_list-item-padding-y: map-get( $size-props, list-item-padding-y );
19766
+ $_highlight-height: calc( #{$_font-size * $_line-height} + #{ $_list-item-padding-y * 2} );
19767
+
19768
+
19769
+ .k-timeselector-#{$size} {
19770
+ font-size: $_font-size;
19771
+ line-height: $_line-height;
19772
+
19773
+ .k-time-highlight,
19774
+ .k-time-list-highlight {
19775
+ height: $_highlight-height;
19776
+ }
19777
+
19778
+ .k-time-separator {
19779
+ height: $_highlight-height;
19780
+ }
19781
+
19782
+ .k-time-list-item,
19783
+ .k-time-list .k-item {
19784
+ padding: $_list-item-padding-y $_list-item-padding-x;
19785
+ }
19786
+ }
19787
+ }
19788
+
19561
19789
  }
19562
19790
 
19563
19791
  // #endregion
@@ -20607,10 +20835,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
20607
20835
  // #region @import "../button/_index.scss"; -> packages/material/scss/button/_index.scss
20608
20836
  // File already imported_once. Skipping output.
20609
20837
  // #endregion
20610
- // #region @import "../colorpalette/_index.scss"; -> packages/material/scss/colorpalette/_index.scss
20611
- // File already imported_once. Skipping output.
20612
- // #endregion
20613
- // #region @import "../colorgradient/_index.scss"; -> packages/material/scss/colorgradient/_index.scss
20838
+ // #region @import "../coloreditor/_index.scss"; -> packages/material/scss/coloreditor/_index.scss
20614
20839
  // File already imported_once. Skipping output.
20615
20840
  // #endregion
20616
20841
  // #region @import "../popup/_index.scss"; -> packages/material/scss/popup/_index.scss
@@ -21021,6 +21246,9 @@ $kendo-daterange-picker-input-width: 10em;
21021
21246
  // #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
21022
21247
  // File already imported_once. Skipping output.
21023
21248
  // #endregion
21249
+ // #region @import "../table/_index.scss"; -> packages/material/scss/table/_index.scss
21250
+ // File already imported_once. Skipping output.
21251
+ // #endregion
21024
21252
  // #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
21025
21253
  // File already imported_once. Skipping output.
21026
21254
  // #endregion
@@ -24303,6 +24531,10 @@ $actionsheet-item-disabled-opacity: .42 !default;
24303
24531
  box-sizing: border-box;
24304
24532
  }
24305
24533
  }
24534
+ .k-actionsheet-fullscreen {
24535
+ max-height: 100%;
24536
+ height: 100%;
24537
+ }
24306
24538
 
24307
24539
 
24308
24540
  // Actionsheet header
@@ -24316,6 +24548,35 @@ $actionsheet-item-disabled-opacity: .42 !default;
24316
24548
  font-size: $actionsheet-header-font-size;
24317
24549
  font-family: $actionsheet-header-font-family;
24318
24550
  line-height: $actionsheet-header-line-height;
24551
+ flex: none;
24552
+ }
24553
+
24554
+
24555
+ // Actionsheet titlebar
24556
+ .k-actionsheet-titlebar {
24557
+ @extend .k-actionsheet-header !optional;
24558
+ display: flex;
24559
+ flex-flow: row nowrap;
24560
+ align-items: center;
24561
+ }
24562
+ .k-actionsheet-title {
24563
+ flex: 1;
24564
+ }
24565
+ .k-actionsheet-actions {
24566
+ flex: none;
24567
+ }
24568
+
24569
+
24570
+ // Actionsheet content
24571
+ .k-actionsheet-content {
24572
+ flex: 1;
24573
+ overflow: auto;
24574
+ }
24575
+
24576
+
24577
+ // Actionsheet footer
24578
+ .k-actionsheet-footer {
24579
+ flex: none;
24319
24580
  }
24320
24581
 
24321
24582
 
@@ -24412,6 +24673,37 @@ $actionsheet-item-disabled-opacity: .42 !default;
24412
24673
  transform: none;
24413
24674
  }
24414
24675
 
24676
+
24677
+ // Adaptive action sheet
24678
+ .k-adaptive-actionsheet {
24679
+ max-width: 100%;
24680
+ width: 100%;
24681
+
24682
+ // TMP: this should be moved to action sheet
24683
+ display: flex;
24684
+ flex-flow: column nowrap;
24685
+
24686
+ .k-calendar {
24687
+ margin-inline: auto;
24688
+ border-width: 0;
24689
+ display: flex;
24690
+ }
24691
+
24692
+ .k-timeselector {
24693
+ height: 100%;
24694
+ border-width: 0;
24695
+ overflow: hidden;
24696
+
24697
+ .k-time-part {
24698
+ display: contents;
24699
+ }
24700
+
24701
+ .k-time-list-wrapper {
24702
+ height: 100%;
24703
+ }
24704
+ }
24705
+ }
24706
+
24415
24707
  }
24416
24708
 
24417
24709
  // #endregion
@@ -44920,8 +45212,6 @@ $treemap-line-height: $line-height !default;
44920
45212
  }
44921
45213
 
44922
45214
 
44923
-
44924
-
44925
45215
  @include exports("dataviz/treemap/theme") {
44926
45216
 
44927
45217
  // Treemap