@progress/kendo-theme-default 8.0.0-dev.1 → 8.0.0-dev.10

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.
Files changed (38) hide show
  1. package/dist/all.css +3776 -366
  2. package/dist/all.scss +546 -196
  3. package/dist/meta/sassdoc-data.json +47375 -33689
  4. package/dist/meta/sassdoc-raw-data.json +13233 -6461
  5. package/dist/meta/variables.json +31 -27
  6. package/lib/swatches/default-blue.json +1 -1
  7. package/lib/swatches/default-dataviz-v4.json +1 -1
  8. package/lib/swatches/default-green.json +1 -1
  9. package/lib/swatches/default-main-dark.json +1 -1
  10. package/lib/swatches/default-main.json +1 -1
  11. package/lib/swatches/default-nordic.json +1 -1
  12. package/lib/swatches/default-ocean-blue-a11y.json +1 -1
  13. package/lib/swatches/default-ocean-blue.json +1 -1
  14. package/lib/swatches/default-orange.json +1 -1
  15. package/lib/swatches/default-purple.json +1 -1
  16. package/lib/swatches/default-turquoise.json +1 -1
  17. package/lib/swatches/default-urban.json +1 -1
  18. package/package.json +5 -5
  19. package/scss/badge/_theme.scss +1 -1
  20. package/scss/button/_theme.scss +15 -11
  21. package/scss/calendar/_layout.scss +30 -16
  22. package/scss/calendar/_theme.scss +0 -5
  23. package/scss/calendar/_variables.scss +35 -3
  24. package/scss/chip/_theme.scss +4 -4
  25. package/scss/chip/_variables.scss +1 -1
  26. package/scss/dataviz/_layout.scss +4 -1
  27. package/scss/dataviz/_variables.scss +1 -1
  28. package/scss/drawer/_layout.scss +2 -0
  29. package/scss/drawer/_variables.scss +13 -2
  30. package/scss/listview/_layout.scss +1 -0
  31. package/scss/loader/_layout.scss +1 -1
  32. package/scss/scheduler/_variables.scss +144 -1
  33. package/scss/scrollview/_layout.scss +2 -2
  34. package/scss/slider/_variables.scss +1 -1
  35. package/scss/spreadsheet/_layout.scss +1 -1
  36. package/scss/tabstrip/_variables.scss +69 -28
  37. package/scss/tooltip/_variables.scss +1 -1
  38. package/scss/typography/_variables.scss +166 -10
package/dist/all.scss CHANGED
@@ -2676,6 +2676,7 @@ $kendo-line-height: k-math-div( 20, 14 ) !default;
2676
2676
  /// @group typography
2677
2677
  $kendo-line-height-xs: 1 !default;
2678
2678
  /// The small line height across all components.
2679
+ /// @group typography
2679
2680
  $kendo-line-height-sm: 1.25 !default;
2680
2681
  /// The medium line height across all components.
2681
2682
  /// @group typography
@@ -5962,14 +5963,32 @@ $kendo-elevation: k-map-merge($_default-elevation, $kendo-elevation);
5962
5963
  // File already imported_once. Skipping output.
5963
5964
  // #endregion
5964
5965
  // #region @import "./border-radii/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/border-radii/index.import.scss
5966
+ /// The none border radius used across the Components.
5967
+ /// @group radii
5965
5968
  $kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
5969
+ /// The extra small border radius used across the Components.
5970
+ /// @group radii
5966
5971
  $kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
5972
+ /// The small border radius used across the Components.
5973
+ /// @group radii
5967
5974
  $kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
5975
+ /// The medium border radius used across the Components.
5976
+ /// @group radii
5968
5977
  $kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
5978
+ /// The large border radius used across the Components.
5979
+ /// @group radii
5969
5980
  $kendo-border-radius-lg: k-map-get($kendo-spacing, 1.5) !default;
5981
+ /// The extra large border radius used across the Components.
5982
+ /// @group radii
5970
5983
  $kendo-border-radius-xl: k-map-get($kendo-spacing, 2) !default;
5984
+ /// The third largest border radius used across the Components.
5985
+ /// @group radii
5971
5986
  $kendo-border-radius-xxl: k-map-get($kendo-spacing, 3) !default;
5987
+ /// The second largest border radius used across the Components.
5988
+ /// @group radii
5972
5989
  $kendo-border-radius-xxxl: k-map-get($kendo-spacing, 4) !default;
5990
+ /// The largest border radius used across the Components.
5991
+ /// @group radii
5973
5992
  $kendo-border-radius-full: 9999px !default;
5974
5993
 
5975
5994
 
@@ -5988,6 +6007,8 @@ $_default-border-radii: (
5988
6007
 
5989
6008
  $kendo-border-radii: $_default-border-radii !default;
5990
6009
 
6010
+ /// The global radii Map.
6011
+ /// @group radii
5991
6012
  $kendo-border-radii: k-map-merge($_default-border-radii, $kendo-border-radii);
5992
6013
 
5993
6014
 
@@ -7819,13 +7840,14 @@ $_kendo-module-meta: (
7819
7840
  @mixin kendo-utils--spacing--margin() {
7820
7841
 
7821
7842
  // Margin utility classes
7822
- @include generate-utils( m, margin, $kendo-spacing, $css-var: "spacing" );
7823
- @include generate-utils( mt, margin-top, $kendo-spacing, $css-var: "spacing" );
7824
- @include generate-utils( mr, margin-right, $kendo-spacing, $css-var: "spacing" );
7825
- @include generate-utils( mb, margin-bottom, $kendo-spacing, $css-var: "spacing" );
7826
- @include generate-utils( ml, margin-left, $kendo-spacing, $css-var: "spacing" );
7827
- @include generate-utils( mx, margin-inline, $kendo-spacing, $css-var: "spacing" );
7828
- @include generate-utils( my, margin-block, $kendo-spacing, $css-var: "spacing" );
7843
+ $kendo-utils-margin: k-map-get( $kendo-utils, "margin" ) !default;
7844
+ @include generate-utils( m, margin, $kendo-utils-margin, $css-var: "spacing" );
7845
+ @include generate-utils( mt, margin-top, $kendo-utils-margin, $css-var: "spacing" );
7846
+ @include generate-utils( mr, margin-right, $kendo-utils-margin, $css-var: "spacing" );
7847
+ @include generate-utils( mb, margin-bottom, $kendo-utils-margin, $css-var: "spacing" );
7848
+ @include generate-utils( ml, margin-left, $kendo-utils-margin, $css-var: "spacing" );
7849
+ @include generate-utils( mx, margin-inline, $kendo-utils-margin, $css-var: "spacing" );
7850
+ @include generate-utils( my, margin-block, $kendo-utils-margin, $css-var: "spacing" );
7829
7851
 
7830
7852
  }
7831
7853
 
@@ -7849,18 +7871,6 @@ $_kendo-module-meta: (
7849
7871
  /// @group padding
7850
7872
  /// @contextType css
7851
7873
 
7852
- /// This is equivalent to `padding: -1px;`.
7853
- /// @example padding: -1px;
7854
- /// @name .k-p--1px
7855
- /// @group padding
7856
- /// @contextType css
7857
-
7858
- /// This is equivalent to `padding: -0.25rem;`.
7859
- /// @example padding: -0.25rem;
7860
- /// @name .k-p--1
7861
- /// @group padding
7862
- /// @contextType css
7863
-
7864
7874
  /// This is equivalent to `padding: 0.25rem;`.
7865
7875
  /// @example padding: 0.25rem;
7866
7876
  /// @name .k-p-xs
@@ -7927,18 +7937,6 @@ $_kendo-module-meta: (
7927
7937
  /// @group padding
7928
7938
  /// @contextType css
7929
7939
 
7930
- /// This is equivalent to `padding-top: -1px;`.
7931
- /// @example padding-top: -1px;
7932
- /// @name .k-pt--1px
7933
- /// @group padding
7934
- /// @contextType css
7935
-
7936
- /// This is equivalent to `padding-top: -0.25rem;`.
7937
- /// @example padding-top: -0.25rem;
7938
- /// @name .k-pt--1
7939
- /// @group padding
7940
- /// @contextType css
7941
-
7942
7940
  /// This is equivalent to `padding-top: 0.25rem;`.
7943
7941
  /// @example padding-top: 0.25rem;
7944
7942
  /// @name .k-pt-xs
@@ -8005,18 +8003,6 @@ $_kendo-module-meta: (
8005
8003
  /// @group padding
8006
8004
  /// @contextType css
8007
8005
 
8008
- /// This is equivalent to `padding-right: -1px;`.
8009
- /// @example padding-right: -1px;
8010
- /// @name .k-pr--1px
8011
- /// @group padding
8012
- /// @contextType css
8013
-
8014
- /// This is equivalent to `padding-right: -0.25rem;`.
8015
- /// @example padding-right: -0.25rem;
8016
- /// @name .k-pr--1
8017
- /// @group padding
8018
- /// @contextType css
8019
-
8020
8006
  /// This is equivalent to `padding-right: 0.25rem;`.
8021
8007
  /// @example padding-right: 0.25rem;
8022
8008
  /// @name .k-pr-xs
@@ -8083,18 +8069,6 @@ $_kendo-module-meta: (
8083
8069
  /// @group padding
8084
8070
  /// @contextType css
8085
8071
 
8086
- /// This is equivalent to `padding-bottom: -1px;`.
8087
- /// @example padding-bottom: -1px;
8088
- /// @name .k-pb--1px
8089
- /// @group padding
8090
- /// @contextType css
8091
-
8092
- /// This is equivalent to `padding-bottom: -0.25rem;`.
8093
- /// @example padding-bottom: -0.25rem;
8094
- /// @name .k-pb--1
8095
- /// @group padding
8096
- /// @contextType css
8097
-
8098
8072
  /// This is equivalent to `padding-bottom: 0.25rem;`.
8099
8073
  /// @example padding-bottom: 0.25rem;
8100
8074
  /// @name .k-pb-xs
@@ -8161,18 +8135,6 @@ $_kendo-module-meta: (
8161
8135
  /// @group padding
8162
8136
  /// @contextType css
8163
8137
 
8164
- /// This is equivalent to `padding-left: -1px;`.
8165
- /// @example padding-left: -1px;
8166
- /// @name .k-pl--1px
8167
- /// @group padding
8168
- /// @contextType css
8169
-
8170
- /// This is equivalent to `padding-left: -0.25rem;`.
8171
- /// @example padding-left: -0.25rem;
8172
- /// @name .k-pl--1
8173
- /// @group padding
8174
- /// @contextType css
8175
-
8176
8138
  /// This is equivalent to `padding-left: 0.25rem;`.
8177
8139
  /// @example padding-left: 0.25rem;
8178
8140
  /// @name .k-pl-xs
@@ -8239,18 +8201,6 @@ $_kendo-module-meta: (
8239
8201
  /// @group padding
8240
8202
  /// @contextType css
8241
8203
 
8242
- /// This is equivalent to `padding-inline: -1px;`.
8243
- /// @example padding-inline: -1px;
8244
- /// @name .k-px--1px
8245
- /// @group padding
8246
- /// @contextType css
8247
-
8248
- /// This is equivalent to `padding-inline: -0.25rem;`.
8249
- /// @example padding-inline: -0.25rem;
8250
- /// @name .k-px--1
8251
- /// @group padding
8252
- /// @contextType css
8253
-
8254
8204
  /// This is equivalent to `padding-inline: 0.25rem;`.
8255
8205
  /// @example padding-inline: 0.25rem;
8256
8206
  /// @name .k-px-xs
@@ -8317,18 +8267,6 @@ $_kendo-module-meta: (
8317
8267
  /// @group padding
8318
8268
  /// @contextType css
8319
8269
 
8320
- /// This is equivalent to `padding-block: -1px;`.
8321
- /// @example padding-block: -1px;
8322
- /// @name .k-py--1px
8323
- /// @group padding
8324
- /// @contextType css
8325
-
8326
- /// This is equivalent to `padding-block: -0.25rem;`.
8327
- /// @example padding-block: -0.25rem;
8328
- /// @name .k-py--1
8329
- /// @group padding
8330
- /// @contextType css
8331
-
8332
8270
  /// This is equivalent to `padding-block: 0.25rem;`.
8333
8271
  /// @example padding-block: 0.25rem;
8334
8272
  /// @name .k-py-xs
@@ -8380,13 +8318,14 @@ $_kendo-module-meta: (
8380
8318
  @mixin kendo-utils--spacing--padding() {
8381
8319
 
8382
8320
  // Padding utility classes
8383
- @include generate-utils( p, padding, $kendo-spacing, $css-var: "spacing" );
8384
- @include generate-utils( pt, padding-top, $kendo-spacing, $css-var: "spacing" );
8385
- @include generate-utils( pr, padding-right, $kendo-spacing, $css-var: "spacing" );
8386
- @include generate-utils( pb, padding-bottom, $kendo-spacing, $css-var: "spacing" );
8387
- @include generate-utils( pl, padding-left, $kendo-spacing, $css-var: "spacing" );
8388
- @include generate-utils( px, padding-inline, $kendo-spacing, $css-var: "spacing" );
8389
- @include generate-utils( py, padding-block, $kendo-spacing, $css-var: "spacing" );
8321
+ $kendo-utils-padding: k-map-get( $kendo-utils, "padding" ) !default;
8322
+ @include generate-utils( p, padding, $kendo-utils-padding, $css-var: "spacing" );
8323
+ @include generate-utils( pt, padding-top, $kendo-utils-padding, $css-var: "spacing" );
8324
+ @include generate-utils( pr, padding-right, $kendo-utils-padding, $css-var: "spacing" );
8325
+ @include generate-utils( pb, padding-bottom, $kendo-utils-padding, $css-var: "spacing" );
8326
+ @include generate-utils( pl, padding-left, $kendo-utils-padding, $css-var: "spacing" );
8327
+ @include generate-utils( px, padding-inline, $kendo-utils-padding, $css-var: "spacing" );
8328
+ @include generate-utils( py, padding-block, $kendo-utils-padding, $css-var: "spacing" );
8390
8329
 
8391
8330
  }
8392
8331
 
@@ -8431,6 +8370,15 @@ $kendo-theme-colors: () !default;
8431
8370
  $kendo-font-sizes: () !default;
8432
8371
 
8433
8372
  $kendo-util-colors-list: (
8373
+ app-surface,
8374
+ on-app-surface,
8375
+ subtle,
8376
+ surface,
8377
+ surface-alt,
8378
+ border,
8379
+ border-alt,
8380
+ base-subtle,
8381
+ base-emphasis,
8434
8382
  primary-subtle,
8435
8383
  primary,
8436
8384
  primary-emphasis,
@@ -10971,9 +10919,9 @@ $kendo-utils: (
10971
10919
 
10972
10920
  // Gap utility classes
10973
10921
  $kendo-utils-gap: k-map-get( $kendo-utils, "gap" ) !default;
10974
- @include generate-utils( gap, gap, $kendo-utils-gap );
10975
- @include generate-utils( gap-x, column-gap, $kendo-utils-gap );
10976
- @include generate-utils( gap-y, row-gap, $kendo-utils-gap );
10922
+ @include generate-utils( gap, gap, $kendo-utils-gap, $css-var: "spacing" );
10923
+ @include generate-utils( gap-x, column-gap, $kendo-utils-gap, $css-var: "spacing" );
10924
+ @include generate-utils( gap-y, row-gap, $kendo-utils-gap, $css-var: "spacing" );
10977
10925
 
10978
10926
  }
10979
10927
 
@@ -12291,7 +12239,7 @@ $kendo-utils: (
12291
12239
  @mixin kendo-utils--typography--font-weight() {
12292
12240
 
12293
12241
  // Font weight utility classes
12294
- @include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font" );
12242
+ @include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font-weight" );
12295
12243
 
12296
12244
 
12297
12245
  // Legacy aliases
@@ -12412,25 +12360,25 @@ $kendo-utils: (
12412
12360
  // #region @import "./_text-decoration.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/typography/_text-decoration.scss
12413
12361
  /// This is equivalent to `text-decoration: underline;`.
12414
12362
  /// @example text-decoration: underline;
12415
- /// @name .k-underline
12363
+ /// @name .k-text-underline
12416
12364
  /// @group text-decoration
12417
12365
  /// @contextType css
12418
12366
 
12419
12367
  /// This is equivalent to `text-decoration: overline;`.
12420
12368
  /// @example text-decoration: overline;
12421
- /// @name .k-overline
12369
+ /// @name .k-text-overline
12422
12370
  /// @group text-decoration
12423
12371
  /// @contextType css
12424
12372
 
12425
12373
  /// This is equivalent to `text-decoration: line-through;`.
12426
12374
  /// @example text-decoration: line-through;
12427
- /// @name .k-line-through
12375
+ /// @name .k-text-line-through
12428
12376
  /// @group text-decoration
12429
12377
  /// @contextType css
12430
12378
 
12431
12379
  /// This is equivalent to `text-decoration: none-decoration;`.
12432
12380
  /// @example text-decoration: none-decoration;
12433
- /// @name .k-none-decoration
12381
+ /// @name .k-text-no-underline
12434
12382
  /// @group text-decoration
12435
12383
  /// @contextType css
12436
12384
 
@@ -15191,48 +15139,123 @@ $_kendo-module-meta: (
15191
15139
 
15192
15140
 
15193
15141
  // Headings
15194
- $kendo-h1-font-size: calc( var( --kendo-font-size, inherit ) * 4 ) !default;
15195
- $kendo-h2-font-size: calc( var( --kendo-font-size, inherit ) * 3 ) !default;
15196
- $kendo-h3-font-size: calc( var( --kendo-font-size, inherit ) * 2.5 ) !default;
15197
- $kendo-h4-font-size: calc( var( --kendo-font-size, inherit ) * 2 ) !default;
15198
- $kendo-h5-font-size: calc( var( --kendo-font-size, inherit ) * 1.5 ) !default;
15142
+
15143
+ /// The font size of the highest level heading.
15144
+ /// @group typography
15145
+ $kendo-h1-font-size: calc( var( --kendo-font-size, .875rem ) * 4 ) !default;
15146
+ /// The font size of the second highest level heading.
15147
+ /// @group typography
15148
+ $kendo-h2-font-size: calc( var( --kendo-font-size, .875rem ) * 3 ) !default;
15149
+ /// The font size of the third highest level heading.
15150
+ /// @group typography
15151
+ $kendo-h3-font-size: calc( var( --kendo-font-size, .875rem ) * 2.5 ) !default;
15152
+ /// The font size of the fourth highest level heading.
15153
+ /// @group typography
15154
+ $kendo-h4-font-size: calc( var( --kendo-font-size, .875rem ) * 2 ) !default;
15155
+ /// The font size of the fifth highest level heading.
15156
+ /// @group typography
15157
+ $kendo-h5-font-size: calc( var( --kendo-font-size, .875rem ) * 1.5 ) !default;
15158
+ /// The font size of the sixth highest level heading.
15159
+ /// @group typography
15199
15160
  $kendo-h6-font-size: var( --kendo-font-size, inherit ) !default;
15200
15161
 
15162
+ /// The font family of the highest level heading.
15163
+ /// @group typography
15201
15164
  $kendo-h1-font-family: var( --kendo-font-family, inherit ) !default;
15165
+ /// The font family of the second highest level heading.
15166
+ /// @group typography
15202
15167
  $kendo-h2-font-family: var( --kendo-font-family, inherit ) !default;
15168
+ /// The font family of the third highest level heading.
15169
+ /// @group typography
15203
15170
  $kendo-h3-font-family: var( --kendo-font-family, inherit ) !default;
15171
+ /// The font family of the fourth highest level heading.
15172
+ /// @group typography
15204
15173
  $kendo-h4-font-family: var( --kendo-font-family, inherit ) !default;
15174
+ /// The font family of the fifth highest level heading.
15175
+ /// @group typography
15205
15176
  $kendo-h5-font-family: var( --kendo-font-family, inherit ) !default;
15177
+ /// The font family of the sixth highest level heading.
15178
+ /// @group typography
15206
15179
  $kendo-h6-font-family: var( --kendo-font-family, inherit ) !default;
15207
15180
 
15181
+ /// The line height of the highest level heading.
15182
+ /// @group typography
15208
15183
  $kendo-h1-line-height: 74px !default;
15184
+ /// The line height of the second highest level heading.
15185
+ /// @group typography
15209
15186
  $kendo-h2-line-height: 56px !default;
15187
+ /// The line height of the third highest level heading.
15188
+ /// @group typography
15210
15189
  $kendo-h3-line-height: 42px !default;
15190
+ /// The line height of the fourth highest level heading.
15191
+ /// @group typography
15211
15192
  $kendo-h4-line-height: 40px !default;
15193
+ /// The line height of the fifth highest level heading.
15194
+ /// @group typography
15212
15195
  $kendo-h5-line-height: 28px !default;
15196
+ /// The line height of the sixth highest level heading.
15197
+ /// @group typography
15213
15198
  $kendo-h6-line-height: 20px !default;
15214
15199
 
15200
+ /// The font weight of the highest level heading.
15201
+ /// @group typography
15215
15202
  $kendo-h1-font-weight: var( --kendo-font-weight-normal, normal ) !default;
15203
+ /// The font weight of the second highest level heading.
15204
+ /// @group typography
15216
15205
  $kendo-h2-font-weight: var( --kendo-font-weight-normal, normal ) !default;
15206
+ /// The font weight of the third highest level heading.
15207
+ /// @group typography
15217
15208
  $kendo-h3-font-weight: var( --kendo-font-weight-normal, normal ) !default;
15209
+ /// The font weight of the fourth highest level heading.
15210
+ /// @group typography
15218
15211
  $kendo-h4-font-weight: var( --kendo-font-weight-bold, normal ) !default;
15212
+ /// The font weight of the fifth highest level heading.
15213
+ /// @group typography
15219
15214
  $kendo-h5-font-weight: var( --kendo-font-weight-bold, normal ) !default;
15215
+ /// The font weight of the sixth highest level heading.
15216
+ /// @group typography
15220
15217
  $kendo-h6-font-weight: var( --kendo-font-weight-bold, normal ) !default;
15221
15218
 
15219
+ /// The letter spacing of the highest level heading.
15220
+ /// @group typography
15222
15221
  $kendo-h1-letter-spacing: null !default;
15222
+ /// The letter spacing of the second highest level heading.
15223
+ /// @group typography
15223
15224
  $kendo-h2-letter-spacing: null !default;
15225
+ /// The letter spacing of the third highest level heading.
15226
+ /// @group typography
15224
15227
  $kendo-h3-letter-spacing: null !default;
15228
+ /// The letter spacing of the fourth highest level heading.
15229
+ /// @group typography
15225
15230
  $kendo-h4-letter-spacing: null !default;
15231
+ /// The letter spacing of the fifth highest level heading.
15232
+ /// @group typography
15226
15233
  $kendo-h5-letter-spacing: null !default;
15234
+ /// The letter spacing of the sixth highest level heading.
15235
+ /// @group typography
15227
15236
  $kendo-h6-letter-spacing: null !default;
15228
15237
 
15238
+ /// The margin of the highest level heading.
15239
+ /// @group typography
15229
15240
  $kendo-h1-margin: 0 0 var( --kendo-font-size, inherit ) !default;
15241
+ /// The margin of the second highest level heading.
15242
+ /// @group typography
15230
15243
  $kendo-h2-margin: 0 0 var( --kendo-font-size, inherit ) !default;
15244
+ /// The margin of the third highest level heading.
15245
+ /// @group typography
15231
15246
  $kendo-h3-margin: 0 0 var( --kendo-font-size, inherit ) !default;
15247
+ /// The margin of the fourth highest level heading.
15248
+ /// @group typography
15232
15249
  $kendo-h4-margin: 0 0 var( --kendo-font-size, inherit ) !default;
15250
+ /// The margin of the fifth highest level heading.
15251
+ /// @group typography
15233
15252
  $kendo-h5-margin: 0 0 var( --kendo-font-size, inherit ) !default;
15253
+ /// The margin of the sixth highest level heading.
15254
+ /// @group typography
15234
15255
  $kendo-h6-margin: 0 0 var( --kendo-font-size, inherit ) !default;
15235
15256
 
15257
+ /// The headings Map.
15258
+ /// @group typography
15236
15259
  $kendo-headings: (
15237
15260
  h1: (
15238
15261
  font-size: $kendo-h1-font-size,
@@ -15287,58 +15310,139 @@ $kendo-headings: (
15287
15310
 
15288
15311
 
15289
15312
  // Paragraph
15313
+
15314
+ /// The margin of the paragraph.
15315
+ /// @group typography
15290
15316
  $kendo-paragraph-margin: 0 0 var( --kendo-font-size, inherit ) !default;
15317
+ /// The font size of the paragraph.
15318
+ /// @group typography
15291
15319
  $kendo-paragraph-font-size: var( --kendo-font-size, inherit ) !default;
15320
+ /// The font family of the paragraph.
15321
+ /// @group typography
15292
15322
  $kendo-paragraph-font-family: var( --kendo-font-family, inherit ) !default;
15323
+ /// The line height of the paragraph.
15324
+ /// @group typography
15293
15325
  $kendo-paragraph-line-height: 20px !default;
15326
+ /// The font weight of the paragraph.
15327
+ /// @group typography
15294
15328
  $kendo-paragraph-font-weight: var( --kendo-font-weight-normal, normal ) !default;
15329
+ /// The letter spacing of the paragraph.
15330
+ /// @group typography
15295
15331
  $kendo-paragraph-letter-spacing: null !default;
15296
15332
 
15297
15333
 
15298
15334
  // Code
15335
+
15336
+ /// The font size of the code tag.
15337
+ /// @group typography
15299
15338
  $kendo-code-font-size: var( --kendo-font-size, inherit ) !default;
15339
+ /// The font family of the code tag.
15340
+ /// @group typography
15300
15341
  $kendo-code-font-family: var( --kendo-font-family-monospace, normal ) !default;
15342
+ /// The line height of the code tag.
15343
+ /// @group typography
15301
15344
  $kendo-code-line-height: 20px !default;
15345
+ /// The font weight of the code tag.
15346
+ /// @group typography
15302
15347
  $kendo-code-font-weight: var( --kendo-font-weight-normal, normal ) !default;
15348
+ /// The letter spacing of the code tag.
15349
+ /// @group typography
15303
15350
  $kendo-code-letter-spacing: null !default;
15304
15351
 
15352
+ /// The horizontal padding of the code tag.
15353
+ /// @group typography
15305
15354
  $kendo-code-padding-x: k-spacing(1) !default;
15355
+ /// The vertical padding of the code tag.
15356
+ /// @group typography
15306
15357
  $kendo-code-padding-y: k-spacing(0) !default;
15358
+ /// The horizontal padding of the preformatted text.
15359
+ /// @group typography
15307
15360
  $kendo-pre-padding-x: k-spacing(6) !default;
15361
+ /// The vertical padding of the preformatted text.
15362
+ /// @group typography
15308
15363
  $kendo-pre-padding-y: k-spacing(4) !default;
15364
+ /// The width of the border of the code tag.
15365
+ /// @group typography
15309
15366
  $kendo-code-border-width: 1px !default;
15310
15367
 
15368
+ /// The background color of the code tag.
15369
+ /// @group typography
15311
15370
  $kendo-code-bg: $kendo-base-bg !default;
15371
+ /// The color of the code tag.
15372
+ /// @group typography
15312
15373
  $kendo-code-text: $kendo-component-text !default;
15374
+ /// The border color of the code tag.
15375
+ /// @group typography
15313
15376
  $kendo-code-border: $kendo-component-border !default;
15314
15377
 
15315
-
15316
15378
  // Display
15317
- $kendo-display1-font-size: calc( var( --kendo-font-size, inherit ) * 8) !default;
15318
- $kendo-display2-font-size: calc( var( --kendo-font-size, inherit ) * 7) !default;
15319
- $kendo-display3-font-size: calc( var( --kendo-font-size, inherit ) * 6) !default;
15320
- $kendo-display4-font-size: calc( var( --kendo-font-size, inherit ) * 5) !default;
15321
15379
 
15380
+ /// The font size of the largest display text.
15381
+ /// @group typography
15382
+ $kendo-display1-font-size: calc( var( --kendo-font-size, .875rem ) * 8) !default;
15383
+ /// The font size of the second largest display text.
15384
+ /// @group typography
15385
+ $kendo-display2-font-size: calc( var( --kendo-font-size, .875rem ) * 7) !default;
15386
+ /// The font size of the third largest display text.
15387
+ /// @group typography
15388
+ $kendo-display3-font-size: calc( var( --kendo-font-size, .875rem ) * 6) !default;
15389
+ /// The font size of the fourth largest display text.
15390
+ /// @group typography
15391
+ $kendo-display4-font-size: calc( var( --kendo-font-size, .875rem ) * 5) !default;
15392
+
15393
+ /// The font family of the largest display text.
15394
+ /// @group typography
15322
15395
  $kendo-display1-font-family: var( --kendo-font-family, inherit ) !default;
15396
+ /// The font family of the second largest display text.
15397
+ /// @group typography
15323
15398
  $kendo-display2-font-family: var( --kendo-font-family, inherit ) !default;
15399
+ /// The font family of the third largest display text.
15400
+ /// @group typography
15324
15401
  $kendo-display3-font-family: var( --kendo-font-family, inherit ) !default;
15402
+ /// The font family of the fourth largest display text.
15403
+ /// @group typography
15325
15404
  $kendo-display4-font-family: var( --kendo-font-family, inherit ) !default;
15326
15405
 
15406
+ /// The line height of the largest display text.
15407
+ /// @group typography
15327
15408
  $kendo-display1-line-height: 1.2 !default;
15409
+ /// The line height of the second largest display text.
15410
+ /// @group typography
15328
15411
  $kendo-display2-line-height: 1.2 !default;
15412
+ /// The line height of the third largest display text.
15413
+ /// @group typography
15329
15414
  $kendo-display3-line-height: 1.2 !default;
15415
+ /// The line height of the fourth largest display text.
15416
+ /// @group typography
15330
15417
  $kendo-display4-line-height: 1.2 !default;
15331
15418
 
15419
+ /// The font weight of the largest display text.
15420
+ /// @group typography
15332
15421
  $kendo-display1-font-weight: var( --kendo-font-weight-light, normal ) !default;
15422
+ /// The font weight of the second largest display text.
15423
+ /// @group typography
15333
15424
  $kendo-display2-font-weight: var( --kendo-font-weight-light, normal ) !default;
15425
+ /// The font weight of the third largest display text.
15426
+ /// @group typography
15334
15427
  $kendo-display3-font-weight: var( --kendo-font-weight-light, normal ) !default;
15428
+ /// The font weight of the fourth largest display text.
15429
+ /// @group typography
15335
15430
  $kendo-display4-font-weight: var( --kendo-font-weight-light, normal ) !default;
15336
15431
 
15432
+ /// The letter spacing of the largest display text.
15433
+ /// @group typography
15337
15434
  $kendo-display1-letter-spacing: null !default;
15435
+ /// The letter spacing of the second largest display text.
15436
+ /// @group typography
15338
15437
  $kendo-display2-letter-spacing: null !default;
15438
+ /// The letter spacing of the third largest display text.
15439
+ /// @group typography
15339
15440
  $kendo-display3-letter-spacing: null !default;
15441
+ /// The letter spacing of the fourth largest display text.
15442
+ /// @group typography
15340
15443
  $kendo-display4-letter-spacing: null !default;
15341
15444
 
15445
+ /// The displays Map.
15342
15446
  $kendo-display: (
15343
15447
  1: (
15344
15448
  font-size: $kendo-display1-font-size,
@@ -19274,7 +19378,7 @@ $kendo-badge-sizes: (
19274
19378
  // Outline badges
19275
19379
  .k-badge-outline {
19276
19380
  border-color: currentColor;
19277
- background-color: $kendo-component-bg;
19381
+ background-color: transparent;
19278
19382
  }
19279
19383
 
19280
19384
  @each $name, $color in $kendo-theme-colors {
@@ -19747,7 +19851,7 @@ $kendo-chip-solid-selected-text: null !default;
19747
19851
  $kendo-chip-outline-bg: $kendo-component-bg !default;
19748
19852
  /// The base text color of the outline Chip.
19749
19853
  /// @group chip
19750
- $kendo-chip-outline-text: $kendo-chip-solid-text !default;
19854
+ $kendo-chip-outline-text: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-chip-solid-text) !default;
19751
19855
  /// The base border color of the outline Chip.
19752
19856
  /// @group chip
19753
19857
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
@@ -20010,7 +20114,7 @@ $kendo-chip-list-sizes: (
20010
20114
  @if ($name == "base") {
20011
20115
  @include fill(
20012
20116
  $kendo-chip-outline-text,
20013
- $kendo-chip-outline-bg,
20117
+ transparent,
20014
20118
  $kendo-chip-outline-border
20015
20119
  );
20016
20120
 
@@ -20035,8 +20139,8 @@ $kendo-chip-list-sizes: (
20035
20139
  }
20036
20140
  } @else if ($name == "warning") {
20037
20141
  @include fill(
20038
- if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
20039
- if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
20142
+ if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
20143
+ if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
20040
20144
  if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
20041
20145
  );
20042
20146
 
@@ -20062,7 +20166,7 @@ $kendo-chip-list-sizes: (
20062
20166
  } @else {
20063
20167
  @include fill(
20064
20168
  if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
20065
- if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
20169
+ if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
20066
20170
  if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
20067
20171
  );
20068
20172
 
@@ -20818,7 +20922,7 @@ $kendo-loading-opacity: .3 !default;
20818
20922
  display: flex;
20819
20923
  align-items: center;
20820
20924
  justify-content: center;
20821
- z-index: 2001;
20925
+ z-index: 20001;
20822
20926
 
20823
20927
  .k-loader {
20824
20928
  padding: 0;
@@ -21799,9 +21903,9 @@ $_kendo-module-meta: (
21799
21903
  &.k-hover {
21800
21904
  @if $name == "base" {
21801
21905
  @include fill(
21802
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21803
- $color,
21804
- $color
21906
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
21907
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
21908
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
21805
21909
  );
21806
21910
  } @else {
21807
21911
  @include fill(
@@ -21829,9 +21933,9 @@ $_kendo-module-meta: (
21829
21933
  &.k-active {
21830
21934
  @if $name == "base" {
21831
21935
  @include fill(
21832
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21833
- $color,
21834
- $color
21936
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
21937
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
21938
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
21835
21939
  );
21836
21940
  } @else {
21837
21941
  @include fill(
@@ -21846,9 +21950,9 @@ $_kendo-module-meta: (
21846
21950
  &.k-selected {
21847
21951
  @if $name == "base" {
21848
21952
  @include fill(
21849
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21850
- $color,
21851
- $color
21953
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
21954
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
21955
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
21852
21956
  );
21853
21957
  } @else {
21854
21958
  @include fill(
@@ -21871,7 +21975,11 @@ $_kendo-module-meta: (
21871
21975
  // Flat button
21872
21976
  @each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": inherit ) ) {
21873
21977
  .k-button-flat-#{$name} {
21874
- color: $color;
21978
+ @if $name == "base" {
21979
+ color: inherit;
21980
+ } @else {
21981
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
21982
+ }
21875
21983
 
21876
21984
  // Disabled state
21877
21985
  &:disabled,
@@ -21940,7 +22048,7 @@ $_kendo-module-meta: (
21940
22048
  // Clear button
21941
22049
  @each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": $kendo-base-text ) ) {
21942
22050
  .k-button-clear-#{$name} {
21943
- color: $color;
22051
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
21944
22052
 
21945
22053
  &:focus,
21946
22054
  &.k-focus,
@@ -23840,7 +23948,7 @@ $kendo-tooltip-line-height: 1.25 !default;
23840
23948
 
23841
23949
  /// The font size of the Tooltip title.
23842
23950
  /// @group tooltip
23843
- $kendo-tooltip-title-font-size: calc( ( #{$kendo-tooltip-font-size} * 1.25 ) ) !default;
23951
+ $kendo-tooltip-title-font-size: calc( ( var( --kendo-font-size, .875rem ) * 1.25 ) ) !default;
23844
23952
  /// The line height of the Tooltip title.
23845
23953
  /// @group tooltip
23846
23954
  $kendo-tooltip-title-line-height: 1 !default;
@@ -28092,7 +28200,7 @@ $kendo-slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !def
28092
28200
 
28093
28201
  /// The background color of the Slider track.
28094
28202
  /// @group slider
28095
- $kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-component-bg, 1 )) !default;
28203
+ $kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base-emphasis ), k-try-shade( $kendo-component-bg, 1 )) !default;
28096
28204
  /// The background color of the Slider's track selection.
28097
28205
  /// @group slider
28098
28206
  $kendo-slider-selection-bg: $kendo-color-primary !default;
@@ -28655,8 +28763,15 @@ $_kendo-module-meta: (
28655
28763
  /// The width of the border around the Calendar.
28656
28764
  /// @group calendar
28657
28765
  $kendo-calendar-border-width: 1px !default;
28766
+
28767
+ /// The font family of the Calendar.
28768
+ /// @group calendar
28658
28769
  $kendo-calendar-font-family: var( --kendo-font-family, inherit ) !default;
28770
+ /// The font size of the Calendar.
28771
+ /// @group calendar
28659
28772
  $kendo-calendar-font-size: var( --kendo-font-size, inherit ) !default;
28773
+ /// The line height of the Calendar.
28774
+ /// @group calendar
28660
28775
  $kendo-calendar-line-height: var( --kendo-line-height, normal ) !default;
28661
28776
 
28662
28777
  /// The size of the cells in the Calendar.
@@ -28739,7 +28854,11 @@ $kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
28739
28854
  /// The height of the header cells in the Calendar.
28740
28855
  /// @group calendar
28741
28856
  $kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
28857
+ /// The font size of the header cells in the Calendar.
28858
+ /// @group calendar
28742
28859
  $kendo-calendar-header-cell-font-size: var( --kendo-font-size-sm, inherit ) !default;
28860
+ /// The line height of the header cells in the Calendar.
28861
+ /// @group calendar
28743
28862
  $kendo-calendar-header-cell-line-height: 2 !default;
28744
28863
 
28745
28864
  /// The background color of the header cells in the Calendar.
@@ -28767,6 +28886,8 @@ $kendo-calendar-caption-font-size: null !default;
28767
28886
  /// The line height of the caption in the Calendar.
28768
28887
  /// @group calendar
28769
28888
  $kendo-calendar-caption-line-height: null !default;
28889
+ /// The font weight of the caption in the Calendar.
28890
+ /// @group calendar
28770
28891
  $kendo-calendar-caption-font-weight: var( --kendo-font-weight-bold, normal ) !default;
28771
28892
 
28772
28893
  /// The font size of the week number cells in the Calendar.
@@ -28914,12 +29035,21 @@ $kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default
28914
29035
 
28915
29036
  // Multiview calendar
28916
29037
 
29038
+ /// The border radius of the range cells in the Multiview Calendar.
29039
+ /// @group calendar
29040
+ $kendo-calendar-range-cell-border-radius: k-border-radius(lg) !default;
28917
29041
 
28918
29042
  // Calendar sizes
29043
+
29044
+ /// The font size of the small Calendar.
29045
+ /// @group calendar
28919
29046
  $kendo-calendar-sm-font-size: var( --kendo-font-size, inherit ) !default;
29047
+ /// The line height of the small Calendar.
29048
+ /// @group calendar
28920
29049
  $kendo-calendar-sm-line-height: var( --kendo-line-height, normal ) !default;
29050
+ /// The size of the cells in the small Calendar.
29051
+ /// @group calendar
28921
29052
  $kendo-calendar-sm-cell-size: 28px !default;
28922
-
28923
29053
  /// The horizontal padding of the cells in the small Calendar.
28924
29054
  /// @group calendar
28925
29055
  $kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
@@ -28927,10 +29057,15 @@ $kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
28927
29057
  /// @group calendar
28928
29058
  $kendo-calendar-sm-cell-padding-y: k-spacing(0.5) !default;
28929
29059
 
29060
+ /// The font size of the medium Calendar.
29061
+ /// @group calendar
28930
29062
  $kendo-calendar-md-font-size: var( --kendo-font-size, inherit ) !default;
29063
+ /// The line height of the medium Calendar.
29064
+ /// @group calendar
28931
29065
  $kendo-calendar-md-line-height: var( --kendo-line-height, normal ) !default;
29066
+ /// The size of the cells in the medium Calendar.
29067
+ /// @group calendar
28932
29068
  $kendo-calendar-md-cell-size: 32px !default;
28933
-
28934
29069
  /// The horizontal padding of the cells in the medium Calendar.
28935
29070
  /// @group calendar
28936
29071
  $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
@@ -28938,10 +29073,15 @@ $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
28938
29073
  /// @group calendar
28939
29074
  $kendo-calendar-md-cell-padding-y: k-spacing(1) !default;
28940
29075
 
29076
+ /// The font size of the large Calendar.
29077
+ /// @group calendar
28941
29078
  $kendo-calendar-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
29079
+ /// The line height of the large Calendar.
29080
+ /// @group calendar
28942
29081
  $kendo-calendar-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
29082
+ /// The size of the cells in the large Calendar.
29083
+ /// @group calendar
28943
29084
  $kendo-calendar-lg-cell-size: 40px !default;
28944
-
28945
29085
  /// The horizontal padding of the cells in the large Calendar.
28946
29086
  /// @group calendar
28947
29087
  $kendo-calendar-lg-cell-padding-x: k-spacing(2) !default;
@@ -29428,9 +29568,6 @@ $kendo-calendar-sizes: (
29428
29568
  // }
29429
29569
  }
29430
29570
 
29431
-
29432
-
29433
-
29434
29571
  // Multiview calendar
29435
29572
  .k-calendar-range {
29436
29573
  width: auto;
@@ -29447,25 +29584,34 @@ $kendo-calendar-sizes: (
29447
29584
  outline: 0;
29448
29585
  }
29449
29586
  }
29587
+ }
29450
29588
 
29451
- .k-range-start {
29452
- border-color: inherit;
29453
- border-top-right-radius: 0;
29454
- border-bottom-right-radius: 0;
29455
- }
29456
- .k-range-end {
29589
+ // Range Selection
29590
+ .k-range-start {
29591
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
29592
+
29593
+ .k-calendar-cell-inner,
29594
+ .k-link {
29457
29595
  border-color: inherit;
29458
- border-top-left-radius: 0;
29459
- border-bottom-left-radius: 0;
29596
+ border-radius: inherit;
29460
29597
  }
29461
- .k-range-mid {
29598
+ }
29599
+ .k-range-end {
29600
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
29601
+
29602
+ .k-calendar-cell-inner,
29603
+ .k-link {
29462
29604
  border-color: inherit;
29463
- border-radius: 0;
29605
+ border-radius: inherit;
29464
29606
  }
29465
29607
  }
29466
-
29467
-
29468
-
29608
+ .k-range-mid {
29609
+ border-color: inherit;
29610
+ border-radius: 0;
29611
+ }
29612
+ .k-range-start.k-range-end {
29613
+ border-radius: $kendo-calendar-range-cell-border-radius;
29614
+ }
29469
29615
 
29470
29616
  // RTL
29471
29617
  .k-rtl .k-calendar,
@@ -29478,6 +29624,14 @@ $kendo-calendar-sizes: (
29478
29624
  @include hide-scrollbar("left");
29479
29625
  }
29480
29626
 
29627
+ // Range Selection RTL
29628
+ .k-range-start {
29629
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
29630
+ }
29631
+ .k-range-end {
29632
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
29633
+ }
29634
+
29481
29635
  }
29482
29636
 
29483
29637
  }
@@ -29656,11 +29810,6 @@ $kendo-calendar-sizes: (
29656
29810
  background-color: $kendo-calendar-range-bg;
29657
29811
  }
29658
29812
 
29659
- .k-range-start.k-range-end {
29660
- background-image: none;
29661
- background-color: transparent;
29662
- }
29663
-
29664
29813
  .k-range-start,
29665
29814
  .k-range-end {
29666
29815
  .k-calendar-cell-inner {
@@ -37088,13 +37237,24 @@ $kendo-drawer-border: $kendo-component-border !default;
37088
37237
  /// The border width of the Drawer.
37089
37238
  /// @group drawer
37090
37239
  $kendo-drawer-border-width: 1px !default;
37240
+
37241
+ /// The font family of the Drawer.
37242
+ /// @group drawer
37091
37243
  $kendo-drawer-font-family: var( --kendo-font-family, inherit ) !default;
37244
+ /// The font size of the Drawer.
37245
+ /// @group drawer
37092
37246
  $kendo-drawer-font-size: var( --kendo-font-size, inherit ) !default;
37247
+ /// The line height of the Drawer.
37248
+ /// @group drawer
37093
37249
  $kendo-drawer-line-height: var( --kendo-line-height, normal ) !default;
37094
- $kendo-drawer-content-padding-x: $kendo-padding-md-x !default;
37250
+
37251
+ /// The horizontal padding of the Drawer content.
37252
+ /// @group drawer
37253
+ $kendo-drawer-content-padding-x: null !default;
37254
+
37095
37255
  /// The vertical padding of the Drawer content.
37096
37256
  /// @group drawer
37097
- $kendo-drawer-content-padding-y: $kendo-padding-md-y !default;
37257
+ $kendo-drawer-content-padding-y: null !default;
37098
37258
 
37099
37259
  /// The width of the Drawer scrollbar.
37100
37260
  /// @group drawer
@@ -37239,6 +37399,8 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
37239
37399
  .k-drawer-content {
37240
37400
  flex: 1 1 auto;
37241
37401
  overflow: auto;
37402
+ padding-block: $kendo-drawer-content-padding-y;
37403
+ padding-inline: $kendo-drawer-content-padding-x;
37242
37404
  }
37243
37405
 
37244
37406
 
@@ -40938,120 +41100,161 @@ $_kendo-module-meta: (
40938
41100
 
40939
41101
  // Component
40940
41102
  // #region @import "./_variables.scss"; -> scss/tabstrip/_variables.scss
40941
- // Tabstrip
41103
+ // TabStrip
41104
+
40942
41105
 
41106
+ /// The horizontal padding of the TabStrip wrapper.
41107
+ /// @group tabstrip
40943
41108
  $kendo-tabstrip-wrapper-padding-x: k-spacing(0) !default;
41109
+ /// The vertical padding of the TabStrip wrapper.
41110
+ /// @group tabstrip
40944
41111
  $kendo-tabstrip-wrapper-padding-y: k-spacing(0) !default;
41112
+ /// The border width around the TabStrip wrapper.
41113
+ /// @group tabstrip
40945
41114
  $kendo-tabstrip-wrapper-border-width: 0px !default;
40946
41115
 
41116
+ /// The font family of the TabStrip.
41117
+ /// @group tabstrip
40947
41118
  $kendo-tabstrip-font-family: var( --kendo-font-family, inherit ) !default;
41119
+ /// The font size of the TabStrip.
41120
+ /// @group tabstrip
40948
41121
  $kendo-tabstrip-font-size: var( --kendo-font-size, inherit ) !default;
41122
+ /// The line height of the TabStrip.
41123
+ /// @group tabstrip
40949
41124
  $kendo-tabstrip-line-height: var( --kendo-line-height, normal ) !default;
41125
+ /// The border width around the TabStrip.
41126
+ /// @group tabstrip
40950
41127
  $kendo-tabstrip-border-width: 1px !default;
40951
41128
 
41129
+ /// The background color of the TabStrip wrapper.
41130
+ /// @group tabstrip
40952
41131
  $kendo-tabstrip-wrapper-bg: null !default;
41132
+ /// The text color of the TabStrip wrapper.
41133
+ /// @group tabstrip
40953
41134
  $kendo-tabstrip-wrapper-text: null !default;
41135
+ /// The border color of the TabStrip wrapper.
41136
+ /// @group tabstrip
40954
41137
  $kendo-tabstrip-wrapper-border: null !default;
40955
41138
 
40956
- /// Background color of tabstrip component
41139
+ /// The background color of the TabStrip.
40957
41140
  /// @group tabstrip
40958
41141
  $kendo-tabstrip-bg: null !default;
40959
- /// Text color of tabstrip component
41142
+ /// The text color of the TabStrip.
40960
41143
  /// @group tabstrip
40961
41144
  $kendo-tabstrip-text: $kendo-component-text !default;
40962
- /// Border color of tabstrip component
41145
+ /// The border color of the TabStrip.
40963
41146
  /// @group tabstrip
40964
41147
  $kendo-tabstrip-border: $kendo-component-border !default;
40965
41148
 
40966
- /// Horizontal padding of tabs
41149
+ /// The horizontal padding of the TabStrip items.
40967
41150
  /// @group tabstrip
40968
41151
  $kendo-tabstrip-item-padding-x: k-spacing(3) !default;
40969
- /// Vertical padding of tabs
41152
+ /// The vertical padding of the TabStrip items.
40970
41153
  /// @group tabstrip
40971
41154
  $kendo-tabstrip-item-padding-y: k-spacing(1.5) !default;
40972
- /// Width of border around tabs
41155
+ /// The border width around the TabStrip items.
40973
41156
  /// @group tabstrip
40974
41157
  $kendo-tabstrip-item-border-width: 1px !default;
40975
- /// Border radius of tabs
41158
+ /// The border radius of the TabStrip items.
40976
41159
  /// @group tabstrip
40977
41160
  $kendo-tabstrip-item-border-radius: k-border-radius(md) !default;
40978
- /// Spacing between tabs
41161
+ /// The gap between the TabStrip items.
40979
41162
  /// @group tabstrip
40980
41163
  $kendo-tabstrip-item-gap: k-spacing(0) !default;
40981
41164
 
40982
- /// Background color of tabs
41165
+ /// The background color of the TabStrip items.
40983
41166
  /// @group tabstrip
40984
41167
  $kendo-tabstrip-item-bg: null !default;
40985
- /// Text color of tabs
41168
+ /// The text color of the TabStrip items.
40986
41169
  /// @group tabstrip
40987
41170
  $kendo-tabstrip-item-text: $kendo-link-text !default;
40988
- /// Border color of tabs
41171
+ /// The border color of the TabStrip items.
40989
41172
  /// @group tabstrip
40990
41173
  $kendo-tabstrip-item-border: null !default;
40991
- /// Background gradient of tabs
41174
+ /// The gradient of the TabStrip items.
40992
41175
  /// @group tabstrip
40993
41176
  $kendo-tabstrip-item-gradient: null !default;
40994
41177
 
40995
- /// Background color of hovered tabs
41178
+ /// The background color of the hovered TabStrip items.
40996
41179
  /// @group tabstrip
40997
41180
  $kendo-tabstrip-item-hover-bg: null !default;
40998
- /// Text color of hovered tabs
41181
+ /// The text color of the hovered TabStrip items.
40999
41182
  /// @group tabstrip
41000
41183
  $kendo-tabstrip-item-hover-text: $kendo-link-hover-text !default;
41001
- /// Border color of hovered tabs
41184
+ /// The border color of the hovered TabStrip items.
41002
41185
  /// @group tabstrip
41003
41186
  $kendo-tabstrip-item-hover-border: null !default;
41004
- /// Background gradient of hovered tabs
41187
+ /// The gradient of the hovered TabStrip items.
41005
41188
  /// @group tabstrip
41006
41189
  $kendo-tabstrip-item-hover-gradient: null !default;
41007
41190
 
41008
- /// Background color of selected tabs
41191
+ /// The background color of the selected TabStrip items.
41009
41192
  /// @group tabstrip
41010
41193
  $kendo-tabstrip-item-selected-bg: $kendo-component-bg !default;
41011
- /// Text color of selected tabs
41194
+ /// The text color of the selected TabStrip items.
41012
41195
  /// @group tabstrip
41013
41196
  $kendo-tabstrip-item-selected-text: $kendo-component-text !default;
41014
- /// Border color of selected tabs
41197
+ /// The border color of the selected TabStrip items.
41015
41198
  /// @group tabstrip
41016
41199
  $kendo-tabstrip-item-selected-border: $kendo-component-border !default;
41017
- /// Background gradient of selected tabs
41200
+ /// The gradient of the selected TabStrip items.
41018
41201
  /// @group tabstrip
41019
41202
  $kendo-tabstrip-item-selected-gradient: null !default;
41020
41203
 
41204
+ /// The shadow of the focused TabStrip items.
41205
+ /// @group tabstrip
41021
41206
  $kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
41022
41207
 
41208
+ /// The shadow of the dragged TabStrip items.
41209
+ /// @group tabstrip
41023
41210
  $kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
41024
41211
 
41212
+ /// The background color of the disabled TabStrip items.
41213
+ /// @group tabstrip
41025
41214
  $kendo-tabstrip-item-disabled-bg: null !default;
41215
+ /// The text color of the disabled TabStrip items.
41216
+ /// @group tabstrip
41026
41217
  $kendo-tabstrip-item-disabled-text: null !default;
41218
+ /// The border color of the disabled TabStrip items.
41219
+ /// @group tabstrip
41027
41220
  $kendo-tabstrip-item-disabled-border: null !default;
41221
+ /// The gradient of the disabled TabStrip items.
41222
+ /// @group tabstrip
41028
41223
  $kendo-tabstrip-item-disabled-gradient: null !default;
41224
+ /// The opacity of the disabled TabStrip items.
41225
+ /// @group tabstrip
41029
41226
  $kendo-tabstrip-item-disabled-opacity: null !default;
41227
+ /// The filter of the disabled TabStrip items.
41228
+ /// @group tabstrip
41030
41229
  $kendo-tabstrip-item-disabled-filter: null !default;
41031
41230
 
41231
+ /// The border width of the TabStrip indicator.
41232
+ /// @group tabstrip
41032
41233
  $kendo-tabstrip-indicator-size: null !default;
41234
+ /// The border color of the TabStrip ripple.
41235
+ /// @group tabstrip
41033
41236
  $kendo-tabstrip-indicator-color: null !default;
41034
41237
 
41035
- /// Horizontal padding of tabstrip content
41238
+ /// The horizontal padding of the TabStrip content.
41036
41239
  /// @group tabstrip
41037
41240
  $kendo-tabstrip-content-padding-x: k-spacing(4) !default;
41038
- /// Vertical padding of tabstrip content
41241
+ /// The vertical padding of the TabStrip content.
41039
41242
  /// @group tabstrip
41040
41243
  $kendo-tabstrip-content-padding-y: k-spacing(4) !default;
41041
- /// Width of border around tabstrip content
41244
+ /// The border width around the TabStrip content.
41042
41245
  /// @group tabstrip
41043
41246
  $kendo-tabstrip-content-border-width: 1px !default;
41044
41247
 
41045
- /// Background color of tabstrip content
41248
+ /// The background color of the TabStrip content.
41046
41249
  /// @group tabstrip
41047
41250
  $kendo-tabstrip-content-bg: $kendo-component-bg !default;
41048
- /// Text color of tabstrip content
41251
+ /// The text color of the TabStrip content.
41049
41252
  /// @group tabstrip
41050
41253
  $kendo-tabstrip-content-text: $kendo-component-text !default;
41051
- /// Border color of tabstrip content
41254
+ /// The border color of the TabStrip content.
41052
41255
  /// @group tabstrip
41053
41256
  $kendo-tabstrip-content-border: $kendo-component-border !default;
41054
- /// Border color of tabstrip focused content
41257
+ /// The border color of the focused TabStrip content.
41055
41258
  /// @group tabstrip
41056
41259
  $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
41057
41260
 
@@ -46942,6 +47145,7 @@ $kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
46942
47145
  font-family: $kendo-listview-font-family;
46943
47146
  font-size: $kendo-listview-font-size;
46944
47147
  line-height: $kendo-listview-line-height;
47148
+ display: flex;
46945
47149
  flex-flow: column nowrap;
46946
47150
  position: relative;
46947
47151
  -webkit-touch-callout: none;
@@ -47505,7 +47709,7 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(4) !default;
47505
47709
 
47506
47710
  // Spreadsheet
47507
47711
  .k-spreadsheet {
47508
- width: 800px;
47712
+ width: 100%;
47509
47713
  height: 600px;
47510
47714
  border-width: $kendo-spreadsheet-border-width;
47511
47715
  border-style: solid;
@@ -54281,96 +54485,239 @@ $_kendo-module-meta: (
54281
54485
  // Component
54282
54486
  // #region @import "./_variables.scss"; -> scss/scheduler/_variables.scss
54283
54487
  // Scheduler
54488
+
54489
+ /// The width of the border around the Scheduler.
54490
+ /// @group scheduler
54284
54491
  $kendo-scheduler-border-width: 1px !default;
54492
+ /// The font family of the Scheduler.
54493
+ /// @group scheduler
54285
54494
  $kendo-scheduler-font-family: var( --kendo-font-family, inherit ) !default;
54495
+ /// The font size of the Scheduler.
54496
+ /// @group scheduler
54286
54497
  $kendo-scheduler-font-size: var( --kendo-font-size, inherit ) !default;
54498
+ /// The line height of the Scheduler.
54499
+ /// @group scheduler
54287
54500
  $kendo-scheduler-line-height: var( --kendo-line-height, normal ) !default;
54288
54501
 
54502
+ /// The background color of the Scheduler.
54503
+ /// @group scheduler
54289
54504
  $kendo-scheduler-bg: $kendo-component-bg !default;
54505
+ /// The text color of the Scheduler.
54506
+ /// @group scheduler
54290
54507
  $kendo-scheduler-text: $kendo-component-text !default;
54508
+ /// The border color of the Scheduler.
54509
+ /// @group scheduler
54291
54510
  $kendo-scheduler-border: $kendo-component-border !default;
54292
54511
 
54512
+ /// The background color of the Scheduler ToolBar.
54513
+ /// @group scheduler
54293
54514
  $kendo-scheduler-toolbar-bg: $kendo-toolbar-bg !default;
54515
+ /// The text color of the Scheduler ToolBar.
54516
+ /// @group scheduler
54294
54517
  $kendo-scheduler-toolbar-text: $kendo-toolbar-text !default;
54518
+ /// The border color of the Scheduler ToolBar.
54519
+ /// @group scheduler
54295
54520
  $kendo-scheduler-toolbar-border: $kendo-toolbar-border !default;
54521
+ /// The gradient of the Scheduler ToolBar.
54522
+ /// @group scheduler
54296
54523
  $kendo-scheduler-toolbar-gradient: $kendo-toolbar-gradient !default;
54297
54524
 
54525
+ /// The background color of the Scheduler footer.
54526
+ /// @group scheduler
54298
54527
  $kendo-scheduler-footer-bg: $kendo-toolbar-bg !default;
54528
+ /// The text color of the Scheduler footer.
54529
+ /// @group scheduler
54299
54530
  $kendo-scheduler-footer-text: $kendo-toolbar-text !default;
54531
+ /// The border color of the Scheduler footer.
54532
+ /// @group scheduler
54300
54533
  $kendo-scheduler-footer-border: $kendo-toolbar-border !default;
54534
+ /// The gradient of the Scheduler footer.
54535
+ /// @group scheduler
54301
54536
  $kendo-scheduler-footer-gradient: $kendo-toolbar-gradient !default;
54302
54537
 
54538
+ /// The minimum height of the Scheduler event.
54539
+ /// @group scheduler
54303
54540
  $kendo-scheduler-event-min-height: 25px !default;
54541
+ /// The border radius of the Scheduler event.
54542
+ /// @group scheduler
54304
54543
  $kendo-scheduler-event-border-radius: k-border-radius(md) !default;
54544
+ /// The line height of the Scheduler event.
54545
+ /// @group scheduler
54305
54546
  $kendo-scheduler-event-line-height: calc( #{$kendo-scheduler-event-min-height} - (2 * #{$kendo-padding-md-y}) ) !default;
54306
54547
 
54548
+ /// The background color of the Scheduler event.
54549
+ /// @group scheduler
54307
54550
  $kendo-scheduler-event-bg: if($kendo-enable-color-system, k-color( primary ), k-color-tint( $kendo-selected-bg, 2 )) !default;
54551
+ /// The text color of the Scheduler event.
54552
+ /// @group scheduler
54308
54553
  $kendo-scheduler-event-text: $kendo-selected-text !default;
54554
+ /// The border color of the Scheduler event.
54555
+ /// @group scheduler
54309
54556
  $kendo-scheduler-event-border: null !default;
54557
+ /// The gradient of the Scheduler event.
54558
+ /// @group scheduler
54310
54559
  $kendo-scheduler-event-gradient: null !default;
54560
+ /// The shadow of the Scheduler event.
54561
+ /// @group scheduler
54311
54562
  $kendo-scheduler-event-shadow: null !default;
54312
54563
 
54564
+ /// The background color of the hovered Scheduler event.
54565
+ /// @group scheduler
54313
54566
  $kendo-scheduler-event-hover-bg: null !default;
54567
+ /// The text color of the hovered Scheduler event.
54568
+ /// @group scheduler
54314
54569
  $kendo-scheduler-event-hover-text: null !default;
54570
+ /// The border color of the hovered Scheduler event.
54571
+ /// @group scheduler
54315
54572
  $kendo-scheduler-event-hover-border: null !default;
54573
+ /// The gradient of the hovered Scheduler event.
54574
+ /// @group scheduler
54316
54575
  $kendo-scheduler-event-hover-gradient: null !default;
54576
+ /// The shadow of the hovered Scheduler event.
54577
+ /// @group scheduler
54317
54578
  $kendo-scheduler-event-hover-shadow: null !default;
54318
54579
 
54580
+ /// The background color of the selected Scheduler event.
54581
+ /// @group scheduler
54319
54582
  $kendo-scheduler-event-selected-bg: if($kendo-enable-color-system, k-color( primary-active ), $kendo-selected-bg) !default;
54583
+ /// The text color of the selected Scheduler event.
54584
+ /// @group scheduler
54320
54585
  $kendo-scheduler-event-selected-text: $kendo-selected-text !default;
54586
+ /// The border color of the selected Scheduler event.
54587
+ /// @group scheduler
54321
54588
  $kendo-scheduler-event-selected-border: null !default;
54589
+ /// The gradient of the selected Scheduler event.
54590
+ /// @group scheduler
54322
54591
  $kendo-scheduler-event-selected-gradient: null !default;
54592
+ /// The shadow of the selected Scheduler event.
54593
+ /// @group scheduler
54323
54594
  $kendo-scheduler-event-selected-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
54324
54595
 
54596
+ /// The shadow of the ongoing Scheduler event.
54597
+ /// @group scheduler
54325
54598
  $kendo-scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
54326
54599
 
54600
+ /// The horizontal padding of the Scheduler cell.
54601
+ /// @group scheduler
54327
54602
  $kendo-scheduler-cell-padding-x: k-spacing(2) !default;
54603
+ /// The vertical padding of the Scheduler cell.
54604
+ /// @group scheduler
54328
54605
  $kendo-scheduler-cell-padding-y: k-spacing(2) !default;
54606
+ /// The height of the Scheduler cell.
54607
+ /// @group scheduler
54329
54608
  $kendo-scheduler-cell-height: $kendo-line-height-em !default;
54609
+ /// The width of the Scheduler date column.
54610
+ /// @group scheduler
54330
54611
  $kendo-scheduler-datecolumn-width: 12em !default;
54612
+ /// The width of the Scheduler time column.
54613
+ /// @group scheduler
54331
54614
  $kendo-scheduler-timecolumn-width: 11em !default;
54332
54615
 
54616
+ /// The background color of the non-working hours in the Scheduler.
54617
+ /// @group scheduler
54333
54618
  $kendo-scheduler-nonwork-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
54619
+ /// The text color of the non-working hours in the Scheduler.
54620
+ /// @group scheduler
54334
54621
  $kendo-scheduler-nonwork-text: null !default;
54335
54622
 
54623
+ /// The background color of the weekends in the Scheduler.
54624
+ /// @group scheduler
54336
54625
  $kendo-scheduler-weekend-bg: null !default;
54626
+ /// The text color of the weekends in the Scheduler.
54627
+ /// @group scheduler
54337
54628
  $kendo-scheduler-weekend-text: null !default;
54338
54629
 
54630
+ /// The background color of the preceding/subsequent month cells in the Calendar.
54631
+ /// @group scheduler
54339
54632
  $kendo-scheduler-othermonth-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
54633
+ /// The text color of the preceding/subsequent month cells in the Calendar.
54634
+ /// @group scheduler
54340
54635
  $kendo-scheduler-othermonth-text: null !default;
54341
54636
 
54637
+ /// The horizontal padding of the year view in the Scheduler.
54638
+ /// @group scheduler
54342
54639
  $kendo-scheduler-yearview-padding-x: k-spacing(3) !default;
54640
+ /// The vertical padding of the year view in the Scheduler.
54641
+ /// @group scheduler
54343
54642
  $kendo-scheduler-yearview-padding-y: $kendo-scheduler-yearview-padding-x !default;
54344
54643
 
54644
+ /// The spacing between the calendars of the year view in the Scheduler.
54645
+ /// @group scheduler
54345
54646
  $kendo-scheduler-yearview-calendar-gap: k-spacing(3) !default;
54346
54647
 
54648
+ /// The days with events indicator size of the year view in the Scheduler.
54649
+ /// @group scheduler
54347
54650
  $kendo-scheduler-yearview-indicator-size: 3px !default;
54651
+ /// The top position of the days with events indicator of the year view in the Scheduler.
54652
+ /// @group scheduler
54348
54653
  $kendo-scheduler-yearview-indicator-calc-offset-top: calc( #{$kendo-calendar-cell-size} - (#{$kendo-calendar-cell-padding-y} * 2)) !default;
54654
+ /// The left position of the days with events indicator of the year view in the Scheduler.
54655
+ /// @group scheduler
54349
54656
  $kendo-scheduler-yearview-indicator-calc-offset-left: calc( 50% - #{k-math-div( $kendo-scheduler-yearview-indicator-size, 2 )} ) !default;
54657
+ /// The border radius of the days with events indicator of the year view in the Scheduler.
54658
+ /// @group scheduler
54350
54659
  $kendo-scheduler-yearview-indicator-border-radius: 50% !default;
54660
+ /// The background color of the days with events indicator of the year view in the Scheduler.
54661
+ /// @group scheduler
54351
54662
  $kendo-scheduler-yearview-indicator-bg: $kendo-color-primary !default;
54663
+ /// The background color of the selected days with events indicator of the year view in the Scheduler.
54664
+ /// @group scheduler
54352
54665
  $kendo-scheduler-yearview-indicator-selected-bg: $kendo-color-primary-contrast !default;
54353
54666
 
54667
+ /// The horizontal padding of the Scheduler Tooltip.
54668
+ /// @group scheduler
54354
54669
  $kendo-scheduler-tooltip-padding-x: k-spacing(2) !default;
54670
+ /// The vertical padding of the Scheduler Tooltip.
54671
+ /// @group scheduler
54355
54672
  $kendo-scheduler-tooltip-padding-y: k-spacing(2) !default;
54673
+ /// The width of the border of the Scheduler Tooltip.
54674
+ /// @group scheduler
54356
54675
  $kendo-scheduler-tooltip-border-width: 0 !default;
54676
+ /// The background color of the Scheduler Tooltip.
54677
+ /// @group scheduler
54357
54678
  $kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
54679
+ /// The text color of the Scheduler Tooltip.
54680
+ /// @group scheduler
54358
54681
  $kendo-scheduler-tooltip-text: $kendo-base-text !default;
54682
+ /// The border color of the Scheduler Tooltip.
54683
+ /// @group scheduler
54359
54684
  $kendo-scheduler-tooltip-border: null !default;
54685
+ /// The shadow of the Scheduler Tooltip.
54686
+ /// @group scheduler
54360
54687
  $kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
54361
54688
 
54689
+ /// The vertical margin of the Scheduler Tooltip title.
54690
+ /// @group scheduler
54362
54691
  $kendo-scheduler-tooltip-title-margin-y: k-spacing(3) !default;
54692
+ /// The font size of the month inside the Scheduler Tooltip.
54693
+ /// @group scheduler
54363
54694
  $kendo-scheduler-tooltip-month-font-size: var( --kendo-font-size-sm, inherit ) !default;
54364
- $kendo-scheduler-tooltip-day-font-size: calc( #{$kendo-scheduler-tooltip-month-font-size} * 2 ) !default;
54695
+ /// The font size of the day inside the Scheduler Tooltip.
54696
+ /// @group scheduler
54697
+ $kendo-scheduler-tooltip-day-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 2 ) !default;
54365
54698
 
54699
+ /// The max height of the events inside the Scheduler Tooltip.
54700
+ /// @group scheduler
54366
54701
  $kendo-scheduler-tooltip-events-max-height: 250px !default;
54702
+ /// The spacing between the events inside the Scheduler Tooltip.
54703
+ /// @group scheduler
54367
54704
  $kendo-scheduler-tooltip-events-gap: k-spacing(1) !default;
54368
54705
 
54706
+ /// The horizontal padding of the events inside the Scheduler Tooltip.
54707
+ /// @group scheduler
54369
54708
  $kendo-scheduler-tooltip-event-padding-x: k-spacing(2) !default;
54709
+ /// The vertical padding of the events inside the Scheduler Tooltip.
54710
+ /// @group scheduler
54370
54711
  $kendo-scheduler-tooltip-event-padding-y: k-spacing(1) !default;
54712
+ /// The border radius of the events inside the Scheduler Tooltip.
54713
+ /// @group scheduler
54371
54714
  $kendo-scheduler-tooltip-event-border-radius: k-border-radius(md) !default;
54715
+ /// The spacing between the events items inside the Scheduler Tooltip.
54716
+ /// @group scheduler
54372
54717
  $kendo-scheduler-tooltip-event-gap: k-spacing(1) !default;
54373
54718
 
54719
+ /// The color of the Scheduler Tooltip callout.
54720
+ /// @group scheduler
54374
54721
  $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54375
54722
 
54376
54723
  // #endregion
@@ -58299,8 +58646,8 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
58299
58646
 
58300
58647
  &::before {
58301
58648
  content: "";
58302
- width: ($kendo-scrollview-pagebutton-size + $kendo-scrollview-pager-item-spacing);
58303
- height: ($kendo-scrollview-pagebutton-size + $kendo-scrollview-pager-item-spacing);
58649
+ width: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-spacing} );
58650
+ height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-spacing} );
58304
58651
  display: block;
58305
58652
  position: absolute;
58306
58653
  top: 50%;
@@ -58835,7 +59182,7 @@ $kendo-chart-line-height: var( --kendo-line-height, normal ) !default;
58835
59182
  $kendo-chart-sm-font-size: 11px !default;
58836
59183
  $kendo-chart-md-font-size: 12px !default;
58837
59184
  $kendo-chart-lg-font-size: 16px !default;
58838
- $kendo-chart-tooltip-font-size: calc( var( --kendo-font-size, inherit ) * .929) !default;
59185
+ $kendo-chart-tooltip-font-size: calc( #{$kendo-font-size} * .929) !default;
58839
59186
  $kendo-chart-label-font-size: .857em !default;
58840
59187
  $kendo-chart-title-font-size: 1.143em !default;
58841
59188
  $kendo-chart-pane-title-font-size: $kendo-chart-label-font-size !default;
@@ -59153,7 +59500,10 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
59153
59500
  }
59154
59501
 
59155
59502
 
59156
-
59503
+ // Sankey labels
59504
+ .k-sankey text {
59505
+ pointer-events: none;
59506
+ }
59157
59507
 
59158
59508
  // Treemap
59159
59509
  .k-treemap {