@progress/kendo-theme-default 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.css +331 -303
- package/dist/all.scss +48 -14
- package/dist/meta/sassdoc-data.json +594 -54
- package/dist/meta/sassdoc-raw-data.json +276 -26
- package/dist/meta/variables.json +4 -0
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +5 -5
- package/scss/calendar/_layout.scss +21 -6
- package/scss/calendar/_variables.scss +22 -3
- package/scss/spreadsheet/_layout.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -10898,9 +10898,9 @@ $kendo-utils: (
|
|
|
10898
10898
|
|
|
10899
10899
|
// Gap utility classes
|
|
10900
10900
|
$kendo-utils-gap: k-map-get( $kendo-utils, "gap" ) !default;
|
|
10901
|
-
@include generate-utils( gap, gap, $kendo-utils-gap );
|
|
10902
|
-
@include generate-utils( gap-x, column-gap, $kendo-utils-gap );
|
|
10903
|
-
@include generate-utils( gap-y, row-gap, $kendo-utils-gap );
|
|
10901
|
+
@include generate-utils( gap, gap, $kendo-utils-gap, $css-var: "spacing" );
|
|
10902
|
+
@include generate-utils( gap-x, column-gap, $kendo-utils-gap, $css-var: "spacing" );
|
|
10903
|
+
@include generate-utils( gap-y, row-gap, $kendo-utils-gap, $css-var: "spacing" );
|
|
10904
10904
|
|
|
10905
10905
|
}
|
|
10906
10906
|
|
|
@@ -12218,7 +12218,7 @@ $kendo-utils: (
|
|
|
12218
12218
|
@mixin kendo-utils--typography--font-weight() {
|
|
12219
12219
|
|
|
12220
12220
|
// Font weight utility classes
|
|
12221
|
-
@include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font" );
|
|
12221
|
+
@include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font-weight" );
|
|
12222
12222
|
|
|
12223
12223
|
|
|
12224
12224
|
// Legacy aliases
|
|
@@ -28841,12 +28841,21 @@ $kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default
|
|
|
28841
28841
|
|
|
28842
28842
|
// Multiview calendar
|
|
28843
28843
|
|
|
28844
|
+
/// The border radius of the range cells in the Multiview Calendar.
|
|
28845
|
+
/// @group calendar
|
|
28846
|
+
$kendo-calendar-range-cell-border-radius: k-border-radius(lg) !default;
|
|
28844
28847
|
|
|
28845
28848
|
// Calendar sizes
|
|
28849
|
+
|
|
28850
|
+
/// The font size of the small Calendar.
|
|
28851
|
+
/// @group calendar
|
|
28846
28852
|
$kendo-calendar-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
28853
|
+
/// The line height of the small Calendar.
|
|
28854
|
+
/// @group calendar
|
|
28847
28855
|
$kendo-calendar-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
28856
|
+
/// The size of the cells in the small Calendar.
|
|
28857
|
+
/// @group calendar
|
|
28848
28858
|
$kendo-calendar-sm-cell-size: 28px !default;
|
|
28849
|
-
|
|
28850
28859
|
/// The horizontal padding of the cells in the small Calendar.
|
|
28851
28860
|
/// @group calendar
|
|
28852
28861
|
$kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
|
|
@@ -28854,10 +28863,15 @@ $kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
|
|
|
28854
28863
|
/// @group calendar
|
|
28855
28864
|
$kendo-calendar-sm-cell-padding-y: k-spacing(0.5) !default;
|
|
28856
28865
|
|
|
28866
|
+
/// The font size of the medium Calendar.
|
|
28867
|
+
/// @group calendar
|
|
28857
28868
|
$kendo-calendar-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
28869
|
+
/// The line height of the medium Calendar.
|
|
28870
|
+
/// @group calendar
|
|
28858
28871
|
$kendo-calendar-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
28872
|
+
/// The size of the cells in the medium Calendar.
|
|
28873
|
+
/// @group calendar
|
|
28859
28874
|
$kendo-calendar-md-cell-size: 32px !default;
|
|
28860
|
-
|
|
28861
28875
|
/// The horizontal padding of the cells in the medium Calendar.
|
|
28862
28876
|
/// @group calendar
|
|
28863
28877
|
$kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
|
|
@@ -28865,10 +28879,15 @@ $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
|
|
|
28865
28879
|
/// @group calendar
|
|
28866
28880
|
$kendo-calendar-md-cell-padding-y: k-spacing(1) !default;
|
|
28867
28881
|
|
|
28882
|
+
/// The font size of the large Calendar.
|
|
28883
|
+
/// @group calendar
|
|
28868
28884
|
$kendo-calendar-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
28885
|
+
/// The line height of the large Calendar.
|
|
28886
|
+
/// @group calendar
|
|
28869
28887
|
$kendo-calendar-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
28888
|
+
/// The size of the cells in the large Calendar.
|
|
28889
|
+
/// @group calendar
|
|
28870
28890
|
$kendo-calendar-lg-cell-size: 40px !default;
|
|
28871
|
-
|
|
28872
28891
|
/// The horizontal padding of the cells in the large Calendar.
|
|
28873
28892
|
/// @group calendar
|
|
28874
28893
|
$kendo-calendar-lg-cell-padding-x: k-spacing(2) !default;
|
|
@@ -29375,15 +29394,15 @@ $kendo-calendar-sizes: (
|
|
|
29375
29394
|
}
|
|
29376
29395
|
}
|
|
29377
29396
|
|
|
29378
|
-
.k-range-start
|
|
29397
|
+
.k-range-start .k-calendar-cell-inner,
|
|
29398
|
+
.k-range-start .k-link {
|
|
29379
29399
|
border-color: inherit;
|
|
29380
|
-
border-
|
|
29381
|
-
border-bottom-right-radius: 0;
|
|
29400
|
+
border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
|
|
29382
29401
|
}
|
|
29383
|
-
.k-range-end
|
|
29402
|
+
.k-range-end .k-calendar-cell-inner,
|
|
29403
|
+
.k-range-end .k-link {
|
|
29384
29404
|
border-color: inherit;
|
|
29385
|
-
border-
|
|
29386
|
-
border-bottom-left-radius: 0;
|
|
29405
|
+
border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
|
|
29387
29406
|
}
|
|
29388
29407
|
.k-range-mid {
|
|
29389
29408
|
border-color: inherit;
|
|
@@ -29407,6 +29426,21 @@ $kendo-calendar-sizes: (
|
|
|
29407
29426
|
|
|
29408
29427
|
}
|
|
29409
29428
|
|
|
29429
|
+
.k-rtl .k-calendar-range,
|
|
29430
|
+
[dir="rtl"] .k-calendar-range,
|
|
29431
|
+
.k-calendar-range.k-rtl,
|
|
29432
|
+
.k-calendar-range[dir="rtl"] {
|
|
29433
|
+
|
|
29434
|
+
.k-range-start .k-calendar-cell-inner,
|
|
29435
|
+
.k-range-start .k-link {
|
|
29436
|
+
border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
|
|
29437
|
+
}
|
|
29438
|
+
.k-range-end .k-calendar-cell-inner,
|
|
29439
|
+
.k-range-end .k-link {
|
|
29440
|
+
border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
|
|
29441
|
+
}
|
|
29442
|
+
}
|
|
29443
|
+
|
|
29410
29444
|
}
|
|
29411
29445
|
|
|
29412
29446
|
|
|
@@ -47432,7 +47466,7 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(4) !default;
|
|
|
47432
47466
|
|
|
47433
47467
|
// Spreadsheet
|
|
47434
47468
|
.k-spreadsheet {
|
|
47435
|
-
width:
|
|
47469
|
+
width: 100%;
|
|
47436
47470
|
height: 600px;
|
|
47437
47471
|
border-width: $kendo-spreadsheet-border-width;
|
|
47438
47472
|
border-style: solid;
|