@progress/kendo-theme-material 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
@@ -11969,9 +11969,9 @@ $kendo-utils: (
11969
11969
 
11970
11970
  // Gap utility classes
11971
11971
  $kendo-utils-gap: k-map-get( $kendo-utils, "gap" ) !default;
11972
- @include generate-utils( gap, gap, $kendo-utils-gap );
11973
- @include generate-utils( gap-x, column-gap, $kendo-utils-gap );
11974
- @include generate-utils( gap-y, row-gap, $kendo-utils-gap );
11972
+ @include generate-utils( gap, gap, $kendo-utils-gap, $css-var: "spacing" );
11973
+ @include generate-utils( gap-x, column-gap, $kendo-utils-gap, $css-var: "spacing" );
11974
+ @include generate-utils( gap-y, row-gap, $kendo-utils-gap, $css-var: "spacing" );
11975
11975
 
11976
11976
  }
11977
11977
 
@@ -13289,7 +13289,7 @@ $kendo-utils: (
13289
13289
  @mixin kendo-utils--typography--font-weight() {
13290
13290
 
13291
13291
  // Font weight utility classes
13292
- @include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font" );
13292
+ @include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font-weight" );
13293
13293
 
13294
13294
 
13295
13295
  // Legacy aliases
@@ -31241,7 +31241,7 @@ $kendo-calendar-cell-line-height: $kendo-calendar-line-height !default;
31241
31241
  $kendo-calendar-cell-border-radius: 100px !default;
31242
31242
 
31243
31243
  /// The horizontal padding of the header cells in the Calendar.
31244
- /// @group calenda
31244
+ /// @group calendar
31245
31245
  $kendo-calendar-header-cell-padding-x: null !default;
31246
31246
  /// The vertical padding of the header cells in the Calendar.
31247
31247
  /// @group calendar
@@ -31430,10 +31430,20 @@ $kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default
31430
31430
 
31431
31431
  // Multiview calendar
31432
31432
 
31433
+ /// The border radius of the range cells in the Multiview Calendar.
31434
+ /// @group calendar
31435
+ $kendo-calendar-range-cell-border-radius: k-border-radius(full) !default;
31433
31436
 
31434
31437
  // Calendar sizes
31438
+
31439
+ /// The font size of the small Calendar.
31440
+ /// @group calendar
31435
31441
  $kendo-calendar-sm-font-size: var( --kendo-font-size, inherit ) !default;
31442
+ /// The line height of the small Calendar.
31443
+ /// @group calendar
31436
31444
  $kendo-calendar-sm-line-height: var( --kendo-line-height, normal ) !default;
31445
+ /// The size of the cells in the small Calendar.
31446
+ /// @group calendar
31437
31447
  $kendo-calendar-sm-cell-size: 32px !default;
31438
31448
  /// The horizontal padding of the cells in the small Calendar.
31439
31449
  /// @group calendar
@@ -31442,10 +31452,15 @@ $kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
31442
31452
  /// @group calendar
31443
31453
  $kendo-calendar-sm-cell-padding-y: k-spacing(0.5) !default;
31444
31454
 
31455
+ /// The font size of the medium Calendar.
31456
+ /// @group calendar
31445
31457
  $kendo-calendar-md-font-size: var( --kendo-font-size, inherit ) !default;
31458
+ /// The line height of the medium Calendar.
31459
+ /// @group calendar
31446
31460
  $kendo-calendar-md-line-height: var( --kendo-line-height, normal ) !default;
31461
+ /// The size of the cells in the medium Calendar.
31462
+ /// @group calendar
31447
31463
  $kendo-calendar-md-cell-size: 36px !default;
31448
-
31449
31464
  /// The horizontal padding of the cells in the medium Calendar.
31450
31465
  /// @group calendar
31451
31466
  $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
@@ -31453,10 +31468,15 @@ $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
31453
31468
  /// @group calendar
31454
31469
  $kendo-calendar-md-cell-padding-y: k-spacing(1) !default;
31455
31470
 
31471
+ /// The font size of the large Calendar.
31472
+ /// @group calendar
31456
31473
  $kendo-calendar-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
31474
+ /// The line height of the large Calendar.
31475
+ /// @group calendar
31457
31476
  $kendo-calendar-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
31477
+ /// The size of the cells in the large Calendar.
31478
+ /// @group calendar
31458
31479
  $kendo-calendar-lg-cell-size: 40px !default;
31459
-
31460
31480
  /// The horizontal padding of the cells in the large Calendar.
31461
31481
  /// @group calendar
31462
31482
  $kendo-calendar-lg-cell-padding-x: k-spacing(1) !default;
@@ -31964,15 +31984,15 @@ $kendo-calendar-sizes: (
31964
31984
  }
31965
31985
  }
31966
31986
 
31967
- .k-range-start {
31987
+ .k-range-start .k-calendar-cell-inner,
31988
+ .k-range-start .k-link {
31968
31989
  border-color: inherit;
31969
- border-top-right-radius: 0;
31970
- border-bottom-right-radius: 0;
31990
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
31971
31991
  }
31972
- .k-range-end {
31992
+ .k-range-end .k-calendar-cell-inner,
31993
+ .k-range-end .k-link {
31973
31994
  border-color: inherit;
31974
- border-top-left-radius: 0;
31975
- border-bottom-left-radius: 0;
31995
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
31976
31996
  }
31977
31997
  .k-range-mid {
31978
31998
  border-color: inherit;
@@ -31996,6 +32016,21 @@ $kendo-calendar-sizes: (
31996
32016
 
31997
32017
  }
31998
32018
 
32019
+ .k-rtl .k-calendar-range,
32020
+ [dir="rtl"] .k-calendar-range,
32021
+ .k-calendar-range.k-rtl,
32022
+ .k-calendar-range[dir="rtl"] {
32023
+
32024
+ .k-range-start .k-calendar-cell-inner,
32025
+ .k-range-start .k-link {
32026
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
32027
+ }
32028
+ .k-range-end .k-calendar-cell-inner,
32029
+ .k-range-end .k-link {
32030
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
32031
+ }
32032
+ }
32033
+
31999
32034
  }
32000
32035
 
32001
32036
 
@@ -51583,7 +51618,7 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(2) !default;
51583
51618
 
51584
51619
  // Spreadsheet
51585
51620
  .k-spreadsheet {
51586
- width: 800px;
51621
+ width: 100%;
51587
51622
  height: 600px;
51588
51623
  border-width: $kendo-spreadsheet-border-width;
51589
51624
  border-style: solid;