@progress/kendo-theme-classic 8.0.0-dev.2 → 8.0.0-dev.4

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
@@ -10900,9 +10900,9 @@ $kendo-utils: (
10900
10900
 
10901
10901
  // Gap utility classes
10902
10902
  $kendo-utils-gap: k-map-get( $kendo-utils, "gap" ) !default;
10903
- @include generate-utils( gap, gap, $kendo-utils-gap );
10904
- @include generate-utils( gap-x, column-gap, $kendo-utils-gap );
10905
- @include generate-utils( gap-y, row-gap, $kendo-utils-gap );
10903
+ @include generate-utils( gap, gap, $kendo-utils-gap, $css-var: "spacing" );
10904
+ @include generate-utils( gap-x, column-gap, $kendo-utils-gap, $css-var: "spacing" );
10905
+ @include generate-utils( gap-y, row-gap, $kendo-utils-gap, $css-var: "spacing" );
10906
10906
 
10907
10907
  }
10908
10908
 
@@ -12220,7 +12220,7 @@ $kendo-utils: (
12220
12220
  @mixin kendo-utils--typography--font-weight() {
12221
12221
 
12222
12222
  // Font weight utility classes
12223
- @include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font" );
12223
+ @include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font-weight" );
12224
12224
 
12225
12225
 
12226
12226
  // Legacy aliases
@@ -29408,12 +29408,21 @@ $kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default
29408
29408
 
29409
29409
  // Multiview calendar
29410
29410
 
29411
+ /// The border radius of the range cells in the Multiview Calendar.
29412
+ /// @group calendar
29413
+ $kendo-calendar-range-cell-border-radius: k-border-radius(lg) !default;
29411
29414
 
29412
29415
  // Calendar sizes
29416
+
29417
+ /// The font size of the small Calendar.
29418
+ /// @group calendar
29413
29419
  $kendo-calendar-sm-font-size: var( --kendo-font-size, inherit ) !default;
29420
+ /// The line height of the small Calendar.
29421
+ /// @group calendar
29414
29422
  $kendo-calendar-sm-line-height: var( --kendo-line-height, normal ) !default;
29423
+ /// The size of the cells in the small Calendar.
29424
+ /// @group calendar
29415
29425
  $kendo-calendar-sm-cell-size: 28px !default;
29416
-
29417
29426
  /// The horizontal padding of the cells in the small Calendar.
29418
29427
  /// @group calendar
29419
29428
  $kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
@@ -29421,10 +29430,15 @@ $kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
29421
29430
  /// @group calendar
29422
29431
  $kendo-calendar-sm-cell-padding-y: k-spacing(0.5) !default;
29423
29432
 
29433
+ /// The font size of the medium Calendar.
29434
+ /// @group calendar
29424
29435
  $kendo-calendar-md-font-size: var( --kendo-font-size, inherit ) !default;
29436
+ /// The line height of the medium Calendar.
29437
+ /// @group calendar
29425
29438
  $kendo-calendar-md-line-height: var( --kendo-line-height, normal ) !default;
29439
+ /// The size of the cells in the medium Calendar.
29440
+ /// @group calendar
29426
29441
  $kendo-calendar-md-cell-size: 32px !default;
29427
-
29428
29442
  /// The horizontal padding of the cells in the medium Calendar.
29429
29443
  /// @group calendar
29430
29444
  $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
@@ -29432,10 +29446,15 @@ $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
29432
29446
  /// @group calendar
29433
29447
  $kendo-calendar-md-cell-padding-y: k-spacing(1) !default;
29434
29448
 
29449
+ /// The font size of the large Calendar.
29450
+ /// @group calendar
29435
29451
  $kendo-calendar-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
29452
+ /// The line height of the large Calendar.
29453
+ /// @group calendar
29436
29454
  $kendo-calendar-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
29455
+ /// The size of the cells in the large Calendar.
29456
+ /// @group calendar
29437
29457
  $kendo-calendar-lg-cell-size: 40px !default;
29438
-
29439
29458
  /// The horizontal padding of the cells in the large Calendar.
29440
29459
  /// @group calendar
29441
29460
  $kendo-calendar-lg-cell-padding-x: k-spacing(2) !default;
@@ -29943,15 +29962,15 @@ $kendo-calendar-sizes: (
29943
29962
  }
29944
29963
  }
29945
29964
 
29946
- .k-range-start {
29965
+ .k-range-start .k-calendar-cell-inner,
29966
+ .k-range-start .k-link {
29947
29967
  border-color: inherit;
29948
- border-top-right-radius: 0;
29949
- border-bottom-right-radius: 0;
29968
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
29950
29969
  }
29951
- .k-range-end {
29970
+ .k-range-end .k-calendar-cell-inner,
29971
+ .k-range-end .k-link {
29952
29972
  border-color: inherit;
29953
- border-top-left-radius: 0;
29954
- border-bottom-left-radius: 0;
29973
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
29955
29974
  }
29956
29975
  .k-range-mid {
29957
29976
  border-color: inherit;
@@ -29975,6 +29994,21 @@ $kendo-calendar-sizes: (
29975
29994
 
29976
29995
  }
29977
29996
 
29997
+ .k-rtl .k-calendar-range,
29998
+ [dir="rtl"] .k-calendar-range,
29999
+ .k-calendar-range.k-rtl,
30000
+ .k-calendar-range[dir="rtl"] {
30001
+
30002
+ .k-range-start .k-calendar-cell-inner,
30003
+ .k-range-start .k-link {
30004
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
30005
+ }
30006
+ .k-range-end .k-calendar-cell-inner,
30007
+ .k-range-end .k-link {
30008
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
30009
+ }
30010
+ }
30011
+
29978
30012
  }
29979
30013
 
29980
30014
 
@@ -48824,7 +48858,7 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(4) !default;
48824
48858
 
48825
48859
  // Spreadsheet
48826
48860
  .k-spreadsheet {
48827
- width: 800px;
48861
+ width: 100%;
48828
48862
  height: 600px;
48829
48863
  border-width: $kendo-spreadsheet-border-width;
48830
48864
  border-style: solid;