@progress/kendo-theme-material 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 (41) hide show
  1. package/dist/all.css +3921 -378
  2. package/dist/all.scss +640 -208
  3. package/dist/meta/sassdoc-data.json +45882 -33780
  4. package/dist/meta/sassdoc-raw-data.json +12816 -6769
  5. package/dist/meta/variables.json +77 -73
  6. package/lib/swatches/material-aqua-dark.json +1 -1
  7. package/lib/swatches/material-arctic.json +1 -1
  8. package/lib/swatches/material-burnt-teal.json +1 -1
  9. package/lib/swatches/material-dataviz-v4.json +1 -1
  10. package/lib/swatches/material-eggplant.json +1 -1
  11. package/lib/swatches/material-lime-dark.json +1 -1
  12. package/lib/swatches/material-lime.json +1 -1
  13. package/lib/swatches/material-main-dark.json +1 -1
  14. package/lib/swatches/material-main.json +1 -1
  15. package/lib/swatches/material-nova.json +1 -1
  16. package/lib/swatches/material-pacific-dark.json +1 -1
  17. package/lib/swatches/material-pacific.json +1 -1
  18. package/lib/swatches/material-sky-dark.json +1 -1
  19. package/lib/swatches/material-sky.json +1 -1
  20. package/lib/swatches/material-smoke.json +1 -1
  21. package/package.json +6 -6
  22. package/scss/button/_layout.scss +9 -0
  23. package/scss/button/_theme.scss +20 -2
  24. package/scss/button/_variables.scss +7 -7
  25. package/scss/calendar/_variables.scss +34 -3
  26. package/scss/checkbox/_variables.scss +1 -1
  27. package/scss/chip/_theme.scss +3 -3
  28. package/scss/chip/_variables.scss +1 -1
  29. package/scss/core/border-radii/index.import.scss +26 -0
  30. package/scss/core/color-system/_swatch-legacy.scss +1 -1
  31. package/scss/core/color-system/_swatch.scss +1 -1
  32. package/scss/dataviz/_variables.scss +1 -1
  33. package/scss/drawer/_variables.scss +12 -2
  34. package/scss/scheduler/_layout.scss +1 -1
  35. package/scss/scheduler/_variables.scss +145 -1
  36. package/scss/switch/_variables.scss +1 -1
  37. package/scss/tabstrip/_variables.scss +70 -28
  38. package/scss/timeline/_variables.scss +1 -1
  39. package/scss/toolbar/_theme.scss +27 -0
  40. package/scss/tooltip/_variables.scss +1 -1
  41. package/scss/typography/_variables.scss +163 -5
package/dist/all.scss CHANGED
@@ -3092,7 +3092,7 @@ $_default-colors: (
3092
3092
  light-emphasis: k-map-get( $kendo-palette-gray, 5 ),
3093
3093
  light-on-subtle: k-map-get( $kendo-palette-gray, 15 ),
3094
3094
  on-light: k-map-get( $kendo-palette-gray, black ),
3095
- light-on-surface: k-map-get( $kendo-palette-gray, 13 ),
3095
+ light-on-surface: k-map-get( $kendo-palette-gray, 4 ),
3096
3096
  // Dark
3097
3097
  dark-subtle: k-map-get( $kendo-palette-gray, 7 ),
3098
3098
  dark-subtle-hover: k-map-get( $kendo-palette-gray, 8 ),
@@ -3689,6 +3689,7 @@ $kendo-line-height: k-math-div( 20, 14 ) !default;
3689
3689
  /// @group typography
3690
3690
  $kendo-line-height-xs: 1 !default;
3691
3691
  /// The small line height across all components.
3692
+ /// @group typography
3692
3693
  $kendo-line-height-sm: 1.25 !default;
3693
3694
  /// The medium line height across all components.
3694
3695
  /// @group typography
@@ -4120,12 +4121,38 @@ $kendo-padding-lg-y: k-spacing(1.5) !default;
4120
4121
 
4121
4122
  // Radii
4122
4123
  // #region @import "./border-radii/index.import.scss"; -> scss/core/border-radii/index.import.scss
4124
+ /// The none border radius used across the Components.
4125
+ /// @group radii
4126
+ $kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
4127
+ /// The extra small border radius used across the Components.
4128
+ /// @group radii
4129
+ $kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
4130
+ /// The small border radius used across the Components.
4131
+ /// @group radii
4132
+ $kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
4133
+ /// The medium border radius used across the Components.
4134
+ /// @group radii
4135
+ $kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
4136
+ /// The large border radius used across the Components.
4137
+ /// @group radii
4123
4138
  $kendo-border-radius-lg: k-map-get($kendo-spacing, 2) !default;
4139
+ /// The extra large border radius used across the Components.
4140
+ /// @group radii
4124
4141
  $kendo-border-radius-xl: k-map-get($kendo-spacing, 3) !default;
4142
+ /// The third largest border radius used across the Components.
4143
+ /// @group radii
4125
4144
  $kendo-border-radius-xxl: k-map-get($kendo-spacing, 4) !default;
4145
+ /// The second largest border radius used across the Components.
4146
+ /// @group radii
4126
4147
  $kendo-border-radius-xxxl: k-map-get($kendo-spacing, 5) !default;
4127
4148
 
4149
+ /// The global radii Map.
4150
+ /// @group radii
4128
4151
  $kendo-border-radii: (
4152
+ none: $kendo-border-radius-none,
4153
+ xs: $kendo-border-radius-xs,
4154
+ sm: $kendo-border-radius-sm,
4155
+ md: $kendo-border-radius-md,
4129
4156
  lg: $kendo-border-radius-lg,
4130
4157
  xl: $kendo-border-radius-xl,
4131
4158
  xxl: $kendo-border-radius-xxl,
@@ -4133,14 +4160,32 @@ $kendo-border-radii: (
4133
4160
  ) !default;
4134
4161
 
4135
4162
  // #region @import "@progress/kendo-theme-core/scss/border-radii/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/border-radii/index.import.scss
4163
+ /// The none border radius used across the Components.
4164
+ /// @group radii
4136
4165
  $kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
4166
+ /// The extra small border radius used across the Components.
4167
+ /// @group radii
4137
4168
  $kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
4169
+ /// The small border radius used across the Components.
4170
+ /// @group radii
4138
4171
  $kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
4172
+ /// The medium border radius used across the Components.
4173
+ /// @group radii
4139
4174
  $kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
4175
+ /// The large border radius used across the Components.
4176
+ /// @group radii
4140
4177
  $kendo-border-radius-lg: k-map-get($kendo-spacing, 1.5) !default;
4178
+ /// The extra large border radius used across the Components.
4179
+ /// @group radii
4141
4180
  $kendo-border-radius-xl: k-map-get($kendo-spacing, 2) !default;
4181
+ /// The third largest border radius used across the Components.
4182
+ /// @group radii
4142
4183
  $kendo-border-radius-xxl: k-map-get($kendo-spacing, 3) !default;
4184
+ /// The second largest border radius used across the Components.
4185
+ /// @group radii
4143
4186
  $kendo-border-radius-xxxl: k-map-get($kendo-spacing, 4) !default;
4187
+ /// The largest border radius used across the Components.
4188
+ /// @group radii
4144
4189
  $kendo-border-radius-full: 9999px !default;
4145
4190
 
4146
4191
 
@@ -4159,6 +4204,8 @@ $_default-border-radii: (
4159
4204
 
4160
4205
  $kendo-border-radii: $_default-border-radii !default;
4161
4206
 
4207
+ /// The global radii Map.
4208
+ /// @group radii
4162
4209
  $kendo-border-radii: k-map-merge($_default-border-radii, $kendo-border-radii);
4163
4210
 
4164
4211
 
@@ -7088,6 +7135,7 @@ $kendo-zindex-loading: 100 !default;
7088
7135
  @if ($kendo-enable-color-system) {
7089
7136
  $kendo-color-primary: k-color( primary );
7090
7137
  $kendo-color-primary-contrast: k-color( on-primary );
7138
+ $kendo-color-primary-darker: k-color( primary-active );
7091
7139
  $kendo-color-secondary: k-color( secondary );
7092
7140
  $kendo-color-secondary-contrast: k-color( on-secondary );
7093
7141
  $kendo-color-tertiary: k-color( tertiary );
@@ -7148,7 +7196,6 @@ $kendo-zindex-loading: 100 !default;
7148
7196
  "inverse": $kendo-color-inverse,
7149
7197
  );
7150
7198
 
7151
-
7152
7199
  }
7153
7200
 
7154
7201
  // #endregion
@@ -8890,13 +8937,14 @@ $_kendo-module-meta: (
8890
8937
  @mixin kendo-utils--spacing--margin() {
8891
8938
 
8892
8939
  // Margin utility classes
8893
- @include generate-utils( m, margin, $kendo-spacing, $css-var: "spacing" );
8894
- @include generate-utils( mt, margin-top, $kendo-spacing, $css-var: "spacing" );
8895
- @include generate-utils( mr, margin-right, $kendo-spacing, $css-var: "spacing" );
8896
- @include generate-utils( mb, margin-bottom, $kendo-spacing, $css-var: "spacing" );
8897
- @include generate-utils( ml, margin-left, $kendo-spacing, $css-var: "spacing" );
8898
- @include generate-utils( mx, margin-inline, $kendo-spacing, $css-var: "spacing" );
8899
- @include generate-utils( my, margin-block, $kendo-spacing, $css-var: "spacing" );
8940
+ $kendo-utils-margin: k-map-get( $kendo-utils, "margin" ) !default;
8941
+ @include generate-utils( m, margin, $kendo-utils-margin, $css-var: "spacing" );
8942
+ @include generate-utils( mt, margin-top, $kendo-utils-margin, $css-var: "spacing" );
8943
+ @include generate-utils( mr, margin-right, $kendo-utils-margin, $css-var: "spacing" );
8944
+ @include generate-utils( mb, margin-bottom, $kendo-utils-margin, $css-var: "spacing" );
8945
+ @include generate-utils( ml, margin-left, $kendo-utils-margin, $css-var: "spacing" );
8946
+ @include generate-utils( mx, margin-inline, $kendo-utils-margin, $css-var: "spacing" );
8947
+ @include generate-utils( my, margin-block, $kendo-utils-margin, $css-var: "spacing" );
8900
8948
 
8901
8949
  }
8902
8950
 
@@ -8920,18 +8968,6 @@ $_kendo-module-meta: (
8920
8968
  /// @group padding
8921
8969
  /// @contextType css
8922
8970
 
8923
- /// This is equivalent to `padding: -1px;`.
8924
- /// @example padding: -1px;
8925
- /// @name .k-p--1px
8926
- /// @group padding
8927
- /// @contextType css
8928
-
8929
- /// This is equivalent to `padding: -0.25rem;`.
8930
- /// @example padding: -0.25rem;
8931
- /// @name .k-p--1
8932
- /// @group padding
8933
- /// @contextType css
8934
-
8935
8971
  /// This is equivalent to `padding: 0.25rem;`.
8936
8972
  /// @example padding: 0.25rem;
8937
8973
  /// @name .k-p-xs
@@ -8998,18 +9034,6 @@ $_kendo-module-meta: (
8998
9034
  /// @group padding
8999
9035
  /// @contextType css
9000
9036
 
9001
- /// This is equivalent to `padding-top: -1px;`.
9002
- /// @example padding-top: -1px;
9003
- /// @name .k-pt--1px
9004
- /// @group padding
9005
- /// @contextType css
9006
-
9007
- /// This is equivalent to `padding-top: -0.25rem;`.
9008
- /// @example padding-top: -0.25rem;
9009
- /// @name .k-pt--1
9010
- /// @group padding
9011
- /// @contextType css
9012
-
9013
9037
  /// This is equivalent to `padding-top: 0.25rem;`.
9014
9038
  /// @example padding-top: 0.25rem;
9015
9039
  /// @name .k-pt-xs
@@ -9076,18 +9100,6 @@ $_kendo-module-meta: (
9076
9100
  /// @group padding
9077
9101
  /// @contextType css
9078
9102
 
9079
- /// This is equivalent to `padding-right: -1px;`.
9080
- /// @example padding-right: -1px;
9081
- /// @name .k-pr--1px
9082
- /// @group padding
9083
- /// @contextType css
9084
-
9085
- /// This is equivalent to `padding-right: -0.25rem;`.
9086
- /// @example padding-right: -0.25rem;
9087
- /// @name .k-pr--1
9088
- /// @group padding
9089
- /// @contextType css
9090
-
9091
9103
  /// This is equivalent to `padding-right: 0.25rem;`.
9092
9104
  /// @example padding-right: 0.25rem;
9093
9105
  /// @name .k-pr-xs
@@ -9154,18 +9166,6 @@ $_kendo-module-meta: (
9154
9166
  /// @group padding
9155
9167
  /// @contextType css
9156
9168
 
9157
- /// This is equivalent to `padding-bottom: -1px;`.
9158
- /// @example padding-bottom: -1px;
9159
- /// @name .k-pb--1px
9160
- /// @group padding
9161
- /// @contextType css
9162
-
9163
- /// This is equivalent to `padding-bottom: -0.25rem;`.
9164
- /// @example padding-bottom: -0.25rem;
9165
- /// @name .k-pb--1
9166
- /// @group padding
9167
- /// @contextType css
9168
-
9169
9169
  /// This is equivalent to `padding-bottom: 0.25rem;`.
9170
9170
  /// @example padding-bottom: 0.25rem;
9171
9171
  /// @name .k-pb-xs
@@ -9232,18 +9232,6 @@ $_kendo-module-meta: (
9232
9232
  /// @group padding
9233
9233
  /// @contextType css
9234
9234
 
9235
- /// This is equivalent to `padding-left: -1px;`.
9236
- /// @example padding-left: -1px;
9237
- /// @name .k-pl--1px
9238
- /// @group padding
9239
- /// @contextType css
9240
-
9241
- /// This is equivalent to `padding-left: -0.25rem;`.
9242
- /// @example padding-left: -0.25rem;
9243
- /// @name .k-pl--1
9244
- /// @group padding
9245
- /// @contextType css
9246
-
9247
9235
  /// This is equivalent to `padding-left: 0.25rem;`.
9248
9236
  /// @example padding-left: 0.25rem;
9249
9237
  /// @name .k-pl-xs
@@ -9310,18 +9298,6 @@ $_kendo-module-meta: (
9310
9298
  /// @group padding
9311
9299
  /// @contextType css
9312
9300
 
9313
- /// This is equivalent to `padding-inline: -1px;`.
9314
- /// @example padding-inline: -1px;
9315
- /// @name .k-px--1px
9316
- /// @group padding
9317
- /// @contextType css
9318
-
9319
- /// This is equivalent to `padding-inline: -0.25rem;`.
9320
- /// @example padding-inline: -0.25rem;
9321
- /// @name .k-px--1
9322
- /// @group padding
9323
- /// @contextType css
9324
-
9325
9301
  /// This is equivalent to `padding-inline: 0.25rem;`.
9326
9302
  /// @example padding-inline: 0.25rem;
9327
9303
  /// @name .k-px-xs
@@ -9388,18 +9364,6 @@ $_kendo-module-meta: (
9388
9364
  /// @group padding
9389
9365
  /// @contextType css
9390
9366
 
9391
- /// This is equivalent to `padding-block: -1px;`.
9392
- /// @example padding-block: -1px;
9393
- /// @name .k-py--1px
9394
- /// @group padding
9395
- /// @contextType css
9396
-
9397
- /// This is equivalent to `padding-block: -0.25rem;`.
9398
- /// @example padding-block: -0.25rem;
9399
- /// @name .k-py--1
9400
- /// @group padding
9401
- /// @contextType css
9402
-
9403
9367
  /// This is equivalent to `padding-block: 0.25rem;`.
9404
9368
  /// @example padding-block: 0.25rem;
9405
9369
  /// @name .k-py-xs
@@ -9451,13 +9415,14 @@ $_kendo-module-meta: (
9451
9415
  @mixin kendo-utils--spacing--padding() {
9452
9416
 
9453
9417
  // Padding utility classes
9454
- @include generate-utils( p, padding, $kendo-spacing, $css-var: "spacing" );
9455
- @include generate-utils( pt, padding-top, $kendo-spacing, $css-var: "spacing" );
9456
- @include generate-utils( pr, padding-right, $kendo-spacing, $css-var: "spacing" );
9457
- @include generate-utils( pb, padding-bottom, $kendo-spacing, $css-var: "spacing" );
9458
- @include generate-utils( pl, padding-left, $kendo-spacing, $css-var: "spacing" );
9459
- @include generate-utils( px, padding-inline, $kendo-spacing, $css-var: "spacing" );
9460
- @include generate-utils( py, padding-block, $kendo-spacing, $css-var: "spacing" );
9418
+ $kendo-utils-padding: k-map-get( $kendo-utils, "padding" ) !default;
9419
+ @include generate-utils( p, padding, $kendo-utils-padding, $css-var: "spacing" );
9420
+ @include generate-utils( pt, padding-top, $kendo-utils-padding, $css-var: "spacing" );
9421
+ @include generate-utils( pr, padding-right, $kendo-utils-padding, $css-var: "spacing" );
9422
+ @include generate-utils( pb, padding-bottom, $kendo-utils-padding, $css-var: "spacing" );
9423
+ @include generate-utils( pl, padding-left, $kendo-utils-padding, $css-var: "spacing" );
9424
+ @include generate-utils( px, padding-inline, $kendo-utils-padding, $css-var: "spacing" );
9425
+ @include generate-utils( py, padding-block, $kendo-utils-padding, $css-var: "spacing" );
9461
9426
 
9462
9427
  }
9463
9428
 
@@ -9502,6 +9467,15 @@ $kendo-theme-colors: () !default;
9502
9467
  $kendo-font-sizes: () !default;
9503
9468
 
9504
9469
  $kendo-util-colors-list: (
9470
+ app-surface,
9471
+ on-app-surface,
9472
+ subtle,
9473
+ surface,
9474
+ surface-alt,
9475
+ border,
9476
+ border-alt,
9477
+ base-subtle,
9478
+ base-emphasis,
9505
9479
  primary-subtle,
9506
9480
  primary,
9507
9481
  primary-emphasis,
@@ -12042,9 +12016,9 @@ $kendo-utils: (
12042
12016
 
12043
12017
  // Gap utility classes
12044
12018
  $kendo-utils-gap: k-map-get( $kendo-utils, "gap" ) !default;
12045
- @include generate-utils( gap, gap, $kendo-utils-gap );
12046
- @include generate-utils( gap-x, column-gap, $kendo-utils-gap );
12047
- @include generate-utils( gap-y, row-gap, $kendo-utils-gap );
12019
+ @include generate-utils( gap, gap, $kendo-utils-gap, $css-var: "spacing" );
12020
+ @include generate-utils( gap-x, column-gap, $kendo-utils-gap, $css-var: "spacing" );
12021
+ @include generate-utils( gap-y, row-gap, $kendo-utils-gap, $css-var: "spacing" );
12048
12022
 
12049
12023
  }
12050
12024
 
@@ -13362,7 +13336,7 @@ $kendo-utils: (
13362
13336
  @mixin kendo-utils--typography--font-weight() {
13363
13337
 
13364
13338
  // Font weight utility classes
13365
- @include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font" );
13339
+ @include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font-weight" );
13366
13340
 
13367
13341
 
13368
13342
  // Legacy aliases
@@ -13483,25 +13457,25 @@ $kendo-utils: (
13483
13457
  // #region @import "./_text-decoration.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/typography/_text-decoration.scss
13484
13458
  /// This is equivalent to `text-decoration: underline;`.
13485
13459
  /// @example text-decoration: underline;
13486
- /// @name .k-underline
13460
+ /// @name .k-text-underline
13487
13461
  /// @group text-decoration
13488
13462
  /// @contextType css
13489
13463
 
13490
13464
  /// This is equivalent to `text-decoration: overline;`.
13491
13465
  /// @example text-decoration: overline;
13492
- /// @name .k-overline
13466
+ /// @name .k-text-overline
13493
13467
  /// @group text-decoration
13494
13468
  /// @contextType css
13495
13469
 
13496
13470
  /// This is equivalent to `text-decoration: line-through;`.
13497
13471
  /// @example text-decoration: line-through;
13498
- /// @name .k-line-through
13472
+ /// @name .k-text-line-through
13499
13473
  /// @group text-decoration
13500
13474
  /// @contextType css
13501
13475
 
13502
13476
  /// This is equivalent to `text-decoration: none-decoration;`.
13503
13477
  /// @example text-decoration: none-decoration;
13504
- /// @name .k-none-decoration
13478
+ /// @name .k-text-no-underline
13505
13479
  /// @group text-decoration
13506
13480
  /// @contextType css
13507
13481
 
@@ -16262,48 +16236,124 @@ $_kendo-module-meta: (
16262
16236
 
16263
16237
 
16264
16238
  // Headings
16239
+
16240
+ /// The font size of the highest level heading.
16241
+ /// @group typography
16265
16242
  $kendo-h1-font-size: 96px !default;
16243
+ /// The font size of the second highest level heading.
16244
+ /// @group typography
16266
16245
  $kendo-h2-font-size: 60px !default;
16246
+ /// The font size of the third highest level heading.
16247
+ /// @group typography
16267
16248
  $kendo-h3-font-size: 48px !default;
16249
+ /// The font size of the fourth highest level heading.
16250
+ /// @group typography
16268
16251
  $kendo-h4-font-size: 34px !default;
16252
+ /// The font size of the fifth highest level heading.
16253
+ /// @group typography
16269
16254
  $kendo-h5-font-size: 24px !default;
16255
+ /// The font size of the sixth highest level heading.
16256
+ /// @group typography
16270
16257
  $kendo-h6-font-size: 20px !default;
16271
16258
 
16259
+ /// The font family of the highest level heading.
16260
+ /// @group typography
16272
16261
  $kendo-h1-font-family: var( --kendo-font-family, inherit ) !default;
16262
+ /// The font family of the second highest level heading.
16263
+ /// @group typography
16273
16264
  $kendo-h2-font-family: var( --kendo-font-family, inherit ) !default;
16265
+ /// The font family of the third highest level heading.
16266
+ /// @group typography
16274
16267
  $kendo-h3-font-family: var( --kendo-font-family, inherit ) !default;
16268
+ /// The font family of the fourth highest level heading.
16269
+ /// @group typography
16275
16270
  $kendo-h4-font-family: var( --kendo-font-family, inherit ) !default;
16271
+ /// The font family of the fifth highest level heading.
16272
+ /// @group typography
16276
16273
  $kendo-h5-font-family: var( --kendo-font-family, inherit ) !default;
16274
+ /// The font family of the sixth highest level heading.
16275
+ /// @group typography
16277
16276
  $kendo-h6-font-family: var( --kendo-font-family, inherit ) !default;
16278
16277
 
16278
+ /// The line height of the highest level heading.
16279
+ /// @group typography
16279
16280
  $kendo-h1-line-height: 112px !default;
16281
+ /// The line height of the second highest level heading.
16282
+ /// @group typography
16280
16283
  $kendo-h2-line-height: 72px !default;
16284
+ /// The line height of the third highest level heading.
16285
+ /// @group typography
16281
16286
  $kendo-h3-line-height: 56px !default;
16287
+ /// The line height of the fourth highest level heading.
16288
+ /// @group typography
16282
16289
  $kendo-h4-line-height: 36px !default;
16290
+ /// The line height of the fifth highest level heading.
16291
+ /// @group typography
16283
16292
  $kendo-h5-line-height: 24px !default;
16293
+ /// The line height of the sixth highest level heading.
16294
+ /// @group typography
16284
16295
  $kendo-h6-line-height: 24px !default;
16285
16296
 
16297
+ /// The font weight of the highest level heading.
16298
+ /// @group typography
16286
16299
  $kendo-h1-font-weight: var( --kendo-font-weight-light, normal ) !default;
16300
+ /// The font weight of the second highest level heading.
16301
+ /// @group typography
16287
16302
  $kendo-h2-font-weight: var( --kendo-font-weight-light, normal ) !default;
16303
+ /// The font weight of the third highest level heading.
16304
+ /// @group typography
16288
16305
  $kendo-h3-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16306
+ /// The font weight of the fourth highest level heading.
16307
+ /// @group typography
16289
16308
  $kendo-h4-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16309
+ /// The font weight of the fifth highest level heading.
16310
+ /// @group typography
16290
16311
  $kendo-h5-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16312
+ /// The font weight of the sixth highest level heading.
16313
+ /// @group typography
16291
16314
  $kendo-h6-font-weight: var( --kendo-font-weight-medium, normal ) !default;
16292
16315
 
16316
+ /// The letter spacing of the highest level heading.
16317
+ /// @group typography
16293
16318
  $kendo-h1-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16319
+ /// The letter spacing of the second highest level heading.
16320
+ /// @group typography
16294
16321
  $kendo-h2-letter-spacing: var( --kendo-letter-spacing-tight, normal ) !default;
16322
+ /// The letter spacing of the third highest level heading.
16323
+ /// @group typography
16295
16324
  $kendo-h3-letter-spacing: var( --kendo-letter-spacing-normal, normal ) !default;
16325
+ /// The letter spacing of the fourth highest level heading.
16326
+ /// @group typography
16296
16327
  $kendo-h4-letter-spacing: var( --kendo-letter-spacing-wider, normal ) !default;
16328
+ /// The letter spacing of the fifth highest level heading.
16329
+ /// @group typography
16297
16330
  $kendo-h5-letter-spacing: var( --kendo-letter-spacing-normal, normal ) !default;
16331
+ /// The letter spacing of the sixth highest level heading.
16332
+ /// @group typography
16298
16333
  $kendo-h6-letter-spacing: var( --kendo-letter-spacing-wide, normal ) !default;
16299
16334
 
16335
+
16336
+ /// The margin of the highest level heading.
16337
+ /// @group typography
16300
16338
  $kendo-h1-margin: 0 0 12px !default;
16339
+ /// The margin of the second highest level heading.
16340
+ /// @group typography
16301
16341
  $kendo-h2-margin: 0 0 12px !default;
16342
+ /// The margin of the third highest level heading.
16343
+ /// @group typography
16302
16344
  $kendo-h3-margin: 0 0 12px !default;
16345
+ /// The margin of the fourth highest level heading.
16346
+ /// @group typography
16303
16347
  $kendo-h4-margin: 0 0 12px !default;
16348
+ /// The margin of the fifth highest level heading.
16349
+ /// @group typography
16304
16350
  $kendo-h5-margin: 0 0 12px !default;
16351
+ /// The margin of the sixth highest level heading.
16352
+ /// @group typography
16305
16353
  $kendo-h6-margin: 0 0 12px !default;
16306
16354
 
16355
+ /// The headings Map.
16356
+ /// @group typography
16307
16357
  $kendo-headings: (
16308
16358
  h1: (
16309
16359
  font-size: $kendo-h1-font-size,
@@ -16358,58 +16408,140 @@ $kendo-headings: (
16358
16408
 
16359
16409
 
16360
16410
  // Paragraph
16411
+
16412
+ /// The margin of the paragraph.
16413
+ /// @group typography
16361
16414
  $kendo-paragraph-margin: 0 0 12px !default;
16415
+ /// The font size of the paragraph.
16416
+ /// @group typography
16362
16417
  $kendo-paragraph-font-size: 1rem !default;
16418
+ /// The font family of the paragraph.
16419
+ /// @group typography
16363
16420
  $kendo-paragraph-font-family: var( --kendo-font-family, inherit ) !default;
16421
+ /// The line height of the paragraph.
16422
+ /// @group typography
16364
16423
  $kendo-paragraph-line-height: var( --kendo-line-height-lg, normal ) !default;
16424
+ /// The font weight of the paragraph.
16425
+ /// @group typography
16365
16426
  $kendo-paragraph-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16427
+ /// The letter spacing of the paragraph.
16428
+ /// @group typography
16366
16429
  $kendo-paragraph-letter-spacing: .0313em !default;
16367
16430
 
16368
16431
 
16369
16432
  // Code
16433
+
16434
+ /// The font size of the code tag.
16435
+ /// @group typography
16370
16436
  $kendo-code-font-size: var( --kendo-font-size, inherit ) !default;
16437
+ /// The font family of the code tag.
16438
+ /// @group typography
16371
16439
  $kendo-code-font-family: var( --kendo-font-family-monospace, normal ) !default;
16440
+ /// The line height of the code tag.
16441
+ /// @group typography
16372
16442
  $kendo-code-line-height: var( --kendo-line-height, normal ) !default;
16443
+ /// The font weight of the code tag.
16444
+ /// @group typography
16373
16445
  $kendo-code-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16446
+ /// The letter spacing of the code tag.
16447
+ /// @group typography
16374
16448
  $kendo-code-letter-spacing: null !default;
16375
16449
 
16450
+ /// The horizontal padding of the code tag.
16451
+ /// @group typography
16376
16452
  $kendo-code-padding-x: k-spacing(1) !default;
16453
+ /// The vertical padding of the code tag.
16454
+ /// @group typography
16377
16455
  $kendo-code-padding-y: k-spacing(0) !default;
16456
+ /// The horizontal padding of the preformatted text.
16457
+ /// @group typography
16378
16458
  $kendo-pre-padding-x: k-spacing(6) !default;
16459
+ /// The vertical padding of the preformatted text.
16460
+ /// @group typography
16379
16461
  $kendo-pre-padding-y: k-spacing(4) !default;
16462
+ /// The border width of the code tag.
16463
+ /// @group typography
16380
16464
  $kendo-code-border-width: 1px !default;
16381
16465
 
16466
+ /// The background color of the code tag.
16467
+ /// @group typography
16382
16468
  $kendo-code-bg: $kendo-base-bg !default;
16469
+ /// The text color of the code tag.
16470
+ /// @group typography
16383
16471
  $kendo-code-text: $kendo-component-text !default;
16472
+ /// The border color of the code tag.
16473
+ /// @group typography
16384
16474
  $kendo-code-border: $kendo-component-border !default;
16385
16475
 
16386
-
16387
16476
  // Display
16388
- $kendo-display1-font-size: calc( var( --kendo-font-size, inherit) * 9.5 ) !default;
16389
- $kendo-display2-font-size: calc( var( --kendo-font-size, inherit) * 8.75 ) !default;
16390
- $kendo-display3-font-size: calc( var( --kendo-font-size, inherit) * 8 ) !default;
16391
- $kendo-display4-font-size: calc( var( --kendo-font-size, inherit) * 7.25 ) !default;
16392
16477
 
16478
+ /// The font size of the largest display text.
16479
+ /// @group typography
16480
+ $kendo-display1-font-size: calc( var( --kendo-font-size, .875rem ) * 9.5 ) !default;
16481
+ /// The font size of the second largest display text.
16482
+ /// @group typography
16483
+ $kendo-display2-font-size: calc( var( --kendo-font-size, .875rem ) * 8.75 ) !default;
16484
+ /// The font size of the third largest display text.
16485
+ /// @group typography
16486
+ $kendo-display3-font-size: calc( var( --kendo-font-size, .875rem ) * 8 ) !default;
16487
+ /// The font size of the fourth largest display text.
16488
+ /// @group typography
16489
+ $kendo-display4-font-size: calc( var( --kendo-font-size, .875rem ) * 7.25 ) !default;
16490
+
16491
+ /// The font family of the largest display text.
16492
+ /// @group typography
16393
16493
  $kendo-display1-font-family: var( --kendo-font-family, inherit ) !default;
16494
+ /// The font family of the second largest display text.
16495
+ /// @group typography
16394
16496
  $kendo-display2-font-family: var( --kendo-font-family, inherit ) !default;
16497
+ /// The font family of the third largest display text.
16498
+ /// @group typography
16395
16499
  $kendo-display3-font-family: var( --kendo-font-family, inherit ) !default;
16500
+ /// The font family of the fourth largest display text.
16501
+ /// @group typography
16396
16502
  $kendo-display4-font-family: var( --kendo-font-family, inherit ) !default;
16397
16503
 
16504
+ /// The line height of the largest display text.
16505
+ /// @group typography
16398
16506
  $kendo-display1-line-height: 1.2 !default;
16507
+ /// The line height of the second largest display text.
16508
+ /// @group typography
16399
16509
  $kendo-display2-line-height: 1.2 !default;
16510
+ /// The line height of the third largest display text.
16511
+ /// @group typography
16400
16512
  $kendo-display3-line-height: 1.2 !default;
16513
+ /// The line height of the fourth largest display text.
16514
+ /// @group typography
16401
16515
  $kendo-display4-line-height: 1.2 !default;
16402
16516
 
16517
+ /// The font weight of the largest display text.
16518
+ /// @group typography
16403
16519
  $kendo-display1-font-weight: var( --kendo-font-weight-light, normal ) !default;
16520
+ /// The font weight of the second largest display text.
16521
+ /// @group typography
16404
16522
  $kendo-display2-font-weight: var( --kendo-font-weight-light, normal ) !default;
16523
+ /// The font weight of the third largest display text.
16524
+ /// @group typography
16405
16525
  $kendo-display3-font-weight: var( --kendo-font-weight-light, normal ) !default;
16526
+ /// The font weight of the fourth largest display text.
16527
+ /// @group typography
16406
16528
  $kendo-display4-font-weight: var( --kendo-font-weight-light, normal ) !default;
16407
16529
 
16530
+ /// The letter spacing of the largest display text.
16531
+ /// @group typography
16408
16532
  $kendo-display1-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16533
+ /// The letter spacing of the second largest display text.
16534
+ /// @group typography
16409
16535
  $kendo-display2-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16536
+ /// The letter spacing of the third largest display text.
16537
+ /// @group typography
16410
16538
  $kendo-display3-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16539
+ /// The letter spacing of the fourth largest display text.
16540
+ /// @group typography
16411
16541
  $kendo-display4-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16412
16542
 
16543
+ /// The displays Map.
16544
+ /// @group typography
16413
16545
  $kendo-display: (
16414
16546
  1: (
16415
16547
  font-size: $kendo-display1-font-size,
@@ -17664,7 +17796,7 @@ $kendo-checkbox-bg: null !default;
17664
17796
  $kendo-checkbox-text: null !default;
17665
17797
  /// The border color of the CheckBox.
17666
17798
  /// @group checkbox
17667
- $kendo-checkbox-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 54%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .54 )) !default;
17799
+ $kendo-checkbox-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 44%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .54 )) !default;
17668
17800
 
17669
17801
  /// The background color of the hovered CheckBox.
17670
17802
  /// @group checkbox
@@ -20650,7 +20782,7 @@ $kendo-badge-sizes: (
20650
20782
  // Outline badges
20651
20783
  .k-badge-outline {
20652
20784
  border-color: currentColor;
20653
- background-color: $kendo-component-bg;
20785
+ background-color: transparent;
20654
20786
  }
20655
20787
 
20656
20788
  @each $name, $color in $kendo-theme-colors {
@@ -20852,13 +20984,13 @@ $kendo-button-shadow: $box-shadow-depth-2 !default;
20852
20984
 
20853
20985
  /// The base background of the hovered Button.
20854
20986
  /// @group button
20855
- $kendo-button-hover-bg: null !default;
20987
+ $kendo-button-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), null) !default;
20856
20988
  /// The base text color of the hovered Button.
20857
20989
  /// @group button
20858
20990
  $kendo-button-hover-text: null !default;
20859
20991
  /// The base border color of the hovered Button.
20860
20992
  /// @group button
20861
- $kendo-button-hover-border: null !default;
20993
+ $kendo-button-hover-border: if($kendo-enable-color-system, k-color( base-hover ), null) !default;
20862
20994
  /// The base background gradient of the hovered Button.
20863
20995
  /// @group button
20864
20996
  $kendo-button-hover-gradient: null !default;
@@ -20868,13 +21000,13 @@ $kendo-button-hover-shadow: null !default;
20868
21000
 
20869
21001
  /// The base background color of the active Button.
20870
21002
  /// @group button
20871
- $kendo-button-active-bg: null !default;
21003
+ $kendo-button-active-bg: if($kendo-enable-color-system, k-color( base-active ), null) !default;
20872
21004
  /// The base text color of the active Button.
20873
21005
  /// @group button
20874
21006
  $kendo-button-active-text: null !default;
20875
21007
  /// The base border color of the active Button.
20876
21008
  /// @group button
20877
- $kendo-button-active-border: null !default;
21009
+ $kendo-button-active-border: if($kendo-enable-color-system, k-color( base-active ), null) !default;
20878
21010
  /// The base background gradient of the active Button.
20879
21011
  /// @group button
20880
21012
  $kendo-button-active-gradient: null !default;
@@ -20900,19 +21032,19 @@ $kendo-button-selected-shadow: null !default;
20900
21032
 
20901
21033
  /// The base background of the focused Button.
20902
21034
  /// @group button
20903
- $kendo-button-focus-bg: null !default;
21035
+ $kendo-button-focus-bg: if($kendo-enable-color-system, k-color( base-hover ), null) !default;
20904
21036
  /// The base text color of the focused Button.
20905
21037
  /// @group button
20906
21038
  $kendo-button-focus-text: null !default;
20907
21039
  /// The base border color of the focused Button.
20908
21040
  /// @group button
20909
- $kendo-button-focus-border: null !default;
21041
+ $kendo-button-focus-border: if($kendo-enable-color-system, k-color( base-hover ), null) !default;
20910
21042
  /// The base background gradient of focused Button.
20911
21043
  /// @group button
20912
21044
  $kendo-button-focus-gradient: null !default;
20913
21045
  /// The base shadow of the focused Button.
20914
21046
  /// @group button
20915
- $kendo-button-focus-shadow: null !default;
21047
+ $kendo-button-focus-shadow: $box-shadow-depth-3 !default;
20916
21048
 
20917
21049
  /// The base background color of the disabled Button.
20918
21050
  /// @group button
@@ -21130,7 +21262,7 @@ $kendo-chip-solid-selected-text: null !default;
21130
21262
  $kendo-chip-outline-bg: $kendo-component-bg !default;
21131
21263
  /// The base text color of the outline Chip.
21132
21264
  /// @group chip
21133
- $kendo-chip-outline-text: $kendo-chip-solid-text !default;
21265
+ $kendo-chip-outline-text: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-chip-solid-text) !default;
21134
21266
  /// The base border color of the outline Chip.
21135
21267
  /// @group chip
21136
21268
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
@@ -21402,7 +21534,7 @@ $kendo-chip-list-sizes: (
21402
21534
  @if ($name == "base") {
21403
21535
  @include fill(
21404
21536
  $kendo-chip-outline-text,
21405
- $kendo-chip-outline-bg,
21537
+ transparent,
21406
21538
  $kendo-chip-outline-border
21407
21539
  );
21408
21540
 
@@ -21427,8 +21559,8 @@ $kendo-chip-list-sizes: (
21427
21559
  }
21428
21560
  } @else if ($name == "warning") {
21429
21561
  @include fill(
21430
- if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
21431
- if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
21562
+ if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
21563
+ if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
21432
21564
  if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
21433
21565
  );
21434
21566
 
@@ -21454,7 +21586,7 @@ $kendo-chip-list-sizes: (
21454
21586
  } @else {
21455
21587
  @include fill(
21456
21588
  if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
21457
- if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
21589
+ if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
21458
21590
  if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
21459
21591
  );
21460
21592
 
@@ -21523,7 +21655,7 @@ $kendo-chip-list-sizes: (
21523
21655
  }
21524
21656
  } @else if ($name == "warning") {
21525
21657
  @include fill(
21526
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
21658
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
21527
21659
  );
21528
21660
 
21529
21661
  &:focus,
@@ -21536,14 +21668,14 @@ $kendo-chip-list-sizes: (
21536
21668
  &.k-hover {
21537
21669
  @include fill(
21538
21670
  $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-hover ), k-try-tint( $color, 80% )),
21539
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
21671
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
21540
21672
  );
21541
21673
  }
21542
21674
 
21543
21675
  &.k-selected {
21544
21676
  @include fill(
21545
21677
  $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-active ), k-try-tint( $color, 65% )),
21546
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
21678
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
21547
21679
  );
21548
21680
  }
21549
21681
  } @else {
@@ -22317,7 +22449,7 @@ $kendo-loading-opacity: .3 !default;
22317
22449
  display: flex;
22318
22450
  align-items: center;
22319
22451
  justify-content: center;
22320
- z-index: 2001;
22452
+ z-index: 20001;
22321
22453
 
22322
22454
  .k-loader {
22323
22455
  padding: 0;
@@ -23203,6 +23335,15 @@ $_kendo-module-meta: (
23203
23335
  }
23204
23336
  }
23205
23337
 
23338
+ // Solid button
23339
+ .k-button-solid {
23340
+ &::before {
23341
+ @if($kendo-enable-color-system) {
23342
+ display: none;
23343
+ }
23344
+ }
23345
+ }
23346
+
23206
23347
  // Outline button
23207
23348
  .k-button-outline {
23208
23349
  background-color: transparent !important; // stylelint-disable-line declaration-no-important
@@ -23422,9 +23563,9 @@ $_kendo-module-meta: (
23422
23563
  &.k-hover {
23423
23564
  @if $name == "base" {
23424
23565
  @include fill(
23425
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
23426
- $color,
23427
- $color
23566
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
23567
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
23568
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
23428
23569
  );
23429
23570
  } @else {
23430
23571
  @include fill(
@@ -23452,9 +23593,9 @@ $_kendo-module-meta: (
23452
23593
  &.k-active {
23453
23594
  @if $name == "base" {
23454
23595
  @include fill(
23455
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
23456
- $color,
23457
- $color
23596
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
23597
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
23598
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
23458
23599
  );
23459
23600
  } @else {
23460
23601
  @include fill(
@@ -23469,9 +23610,9 @@ $_kendo-module-meta: (
23469
23610
  &.k-selected {
23470
23611
  @if $name == "base" {
23471
23612
  @include fill(
23472
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
23473
- $color,
23474
- $color
23613
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
23614
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
23615
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
23475
23616
  );
23476
23617
  } @else {
23477
23618
  @include fill(
@@ -23494,7 +23635,11 @@ $_kendo-module-meta: (
23494
23635
  // Flat button
23495
23636
  @each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": inherit ) ) {
23496
23637
  .k-button-flat-#{$name} {
23497
- color: $color;
23638
+ @if $name == "base" {
23639
+ color: inherit;
23640
+ } @else {
23641
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
23642
+ }
23498
23643
 
23499
23644
  // Disabled state
23500
23645
  &:disabled,
@@ -23563,7 +23708,7 @@ $_kendo-module-meta: (
23563
23708
  // Clear button
23564
23709
  @each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": $kendo-base-text ) ) {
23565
23710
  .k-button-clear-#{$name} {
23566
- color: $color;
23711
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
23567
23712
 
23568
23713
  &:focus,
23569
23714
  &.k-focus,
@@ -23605,6 +23750,9 @@ $_kendo-module-meta: (
23605
23750
  @each $name, $color in $kendo-button-theme-colors {
23606
23751
  .k-button-solid-#{$name} {
23607
23752
  @include box-shadow( $kendo-button-shadow );
23753
+
23754
+ // These 3 lines can be deleted once we
23755
+ // stop supporting the old color system.
23608
23756
  color: if( $name == "base", $kendo-button-text, if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-color( $color )) );
23609
23757
  background-color: if( $name == "base", $kendo-button-bg, if($kendo-enable-color-system, k-color( $name ), $color) );
23610
23758
  border-color: if( $name == "base", $kendo-button-bg, if($kendo-enable-color-system, k-color( $name ), $color) );
@@ -23618,6 +23766,8 @@ $_kendo-module-meta: (
23618
23766
  // Focus state
23619
23767
  &:focus,
23620
23768
  &.k-focus {
23769
+ background-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), null);
23770
+ border-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), null);
23621
23771
  @include box-shadow( $kendo-button-focus-shadow );
23622
23772
  }
23623
23773
 
@@ -23644,7 +23794,14 @@ $_kendo-module-meta: (
23644
23794
  // Outline button
23645
23795
  @each $name, $color in $kendo-button-theme-colors {
23646
23796
  .k-button-outline-#{$name} {
23647
- color: if( $name == "base", $kendo-button-text, if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color) );
23797
+
23798
+ // The "base" case can be deleted once we
23799
+ // stop supporting the old color system.
23800
+ @if $name == "base" {
23801
+ color: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-button-text)
23802
+ } @else {
23803
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color)
23804
+ }
23648
23805
 
23649
23806
  &:hover,
23650
23807
  &.k-hover,
@@ -23653,7 +23810,13 @@ $_kendo-module-meta: (
23653
23810
  &:active,
23654
23811
  &.k-active,
23655
23812
  &.k-selected {
23656
- color: if( $name == "base", $kendo-button-text, if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color) );
23813
+ // The "base" case can be deleted once we
23814
+ // stop supporting the old color system.
23815
+ @if $name == "base" {
23816
+ color: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-button-text)
23817
+ } @else {
23818
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color)
23819
+ }
23657
23820
  }
23658
23821
 
23659
23822
  // Disabled state
@@ -25083,6 +25246,33 @@ $kendo-toolbar-sizes: (
25083
25246
  background-color: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-button-bg ));
25084
25247
  border-color: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-button-bg ));
25085
25248
 
25249
+ // Hover state
25250
+ &:hover,
25251
+ &.k-hover {
25252
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25253
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25254
+ }
25255
+
25256
+ // Focus state
25257
+ &:focus,
25258
+ &.k-focus {
25259
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25260
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25261
+ }
25262
+
25263
+ // Active state
25264
+ &:active,
25265
+ &.k-active {
25266
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
25267
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
25268
+ }
25269
+
25270
+ // Selected state
25271
+ &.k-selected {
25272
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
25273
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
25274
+ }
25275
+
25086
25276
  &.k-input-button,
25087
25277
  &.k-input-spinner .k-spinner-increase,
25088
25278
  &.k-input-spinner .k-spinner-decrease {
@@ -25803,7 +25993,7 @@ $kendo-tooltip-line-height: k-math-div( 20, 14 ) !default;
25803
25993
 
25804
25994
  /// The font size of the Tooltip title.
25805
25995
  /// @group tooltip
25806
- $kendo-tooltip-title-font-size: calc( #{$kendo-tooltip-font-size} * 1.25 ) !default;
25996
+ $kendo-tooltip-title-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 1.25 ) !default;
25807
25997
  /// The line height of the Tooltip title.
25808
25998
  /// @group tooltip
25809
25999
  $kendo-tooltip-title-line-height: 1 !default;
@@ -31243,8 +31433,15 @@ $_kendo-module-meta: (
31243
31433
  /// The width of the border around the Calendar.
31244
31434
  /// @group calendar
31245
31435
  $kendo-calendar-border-width: 1px !default;
31436
+
31437
+ /// The font family of the Calendar.
31438
+ /// @group calendar
31246
31439
  $kendo-calendar-font-family: var( --kendo-font-family, inherit ) !default;
31440
+ /// The font size of the Calendar.
31441
+ /// @group calendar
31247
31442
  $kendo-calendar-font-size: var( --kendo-font-size, inherit ) !default;
31443
+ /// The line height of the Calendar.
31444
+ /// @group calendar
31248
31445
  $kendo-calendar-line-height: k-math-div( 20, 14 ) !default;
31249
31446
 
31250
31447
  /// The size of the cells in the Calendar.
@@ -31314,7 +31511,7 @@ $kendo-calendar-cell-line-height: $kendo-calendar-line-height !default;
31314
31511
  $kendo-calendar-cell-border-radius: 100px !default;
31315
31512
 
31316
31513
  /// The horizontal padding of the header cells in the Calendar.
31317
- /// @group calenda
31514
+ /// @group calendar
31318
31515
  $kendo-calendar-header-cell-padding-x: null !default;
31319
31516
  /// The vertical padding of the header cells in the Calendar.
31320
31517
  /// @group calendar
@@ -31325,7 +31522,11 @@ $kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
31325
31522
  /// The height of the header cells in the Calendar.
31326
31523
  /// @group calendar
31327
31524
  $kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
31525
+ /// The font size of the header cells in the Calendar.
31526
+ /// @group calendar
31328
31527
  $kendo-calendar-header-cell-font-size: var( --kendo-font-size-sm, inherit )!default;
31528
+ /// The line height of the header cells in the Calendar.
31529
+ /// @group calendar
31329
31530
  $kendo-calendar-header-cell-line-height: 2 !default;
31330
31531
 
31331
31532
  /// The background color of the header cells in the Calendar.
@@ -31503,10 +31704,20 @@ $kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default
31503
31704
 
31504
31705
  // Multiview calendar
31505
31706
 
31707
+ /// The border radius of the range cells in the Multiview Calendar.
31708
+ /// @group calendar
31709
+ $kendo-calendar-range-cell-border-radius: k-border-radius(full) !default;
31506
31710
 
31507
31711
  // Calendar sizes
31712
+
31713
+ /// The font size of the small Calendar.
31714
+ /// @group calendar
31508
31715
  $kendo-calendar-sm-font-size: var( --kendo-font-size, inherit ) !default;
31716
+ /// The line height of the small Calendar.
31717
+ /// @group calendar
31509
31718
  $kendo-calendar-sm-line-height: var( --kendo-line-height, normal ) !default;
31719
+ /// The size of the cells in the small Calendar.
31720
+ /// @group calendar
31510
31721
  $kendo-calendar-sm-cell-size: 32px !default;
31511
31722
  /// The horizontal padding of the cells in the small Calendar.
31512
31723
  /// @group calendar
@@ -31515,10 +31726,15 @@ $kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
31515
31726
  /// @group calendar
31516
31727
  $kendo-calendar-sm-cell-padding-y: k-spacing(0.5) !default;
31517
31728
 
31729
+ /// The font size of the medium Calendar.
31730
+ /// @group calendar
31518
31731
  $kendo-calendar-md-font-size: var( --kendo-font-size, inherit ) !default;
31732
+ /// The line height of the medium Calendar.
31733
+ /// @group calendar
31519
31734
  $kendo-calendar-md-line-height: var( --kendo-line-height, normal ) !default;
31735
+ /// The size of the cells in the medium Calendar.
31736
+ /// @group calendar
31520
31737
  $kendo-calendar-md-cell-size: 36px !default;
31521
-
31522
31738
  /// The horizontal padding of the cells in the medium Calendar.
31523
31739
  /// @group calendar
31524
31740
  $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
@@ -31526,10 +31742,15 @@ $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
31526
31742
  /// @group calendar
31527
31743
  $kendo-calendar-md-cell-padding-y: k-spacing(1) !default;
31528
31744
 
31745
+ /// The font size of the large Calendar.
31746
+ /// @group calendar
31529
31747
  $kendo-calendar-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
31748
+ /// The line height of the large Calendar.
31749
+ /// @group calendar
31530
31750
  $kendo-calendar-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
31751
+ /// The size of the cells in the large Calendar.
31752
+ /// @group calendar
31531
31753
  $kendo-calendar-lg-cell-size: 40px !default;
31532
-
31533
31754
  /// The horizontal padding of the cells in the large Calendar.
31534
31755
  /// @group calendar
31535
31756
  $kendo-calendar-lg-cell-padding-x: k-spacing(1) !default;
@@ -32017,9 +32238,6 @@ $kendo-calendar-sizes: (
32017
32238
  // }
32018
32239
  }
32019
32240
 
32020
-
32021
-
32022
-
32023
32241
  // Multiview calendar
32024
32242
  .k-calendar-range {
32025
32243
  width: auto;
@@ -32036,25 +32254,34 @@ $kendo-calendar-sizes: (
32036
32254
  outline: 0;
32037
32255
  }
32038
32256
  }
32257
+ }
32039
32258
 
32040
- .k-range-start {
32041
- border-color: inherit;
32042
- border-top-right-radius: 0;
32043
- border-bottom-right-radius: 0;
32044
- }
32045
- .k-range-end {
32259
+ // Range Selection
32260
+ .k-range-start {
32261
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
32262
+
32263
+ .k-calendar-cell-inner,
32264
+ .k-link {
32046
32265
  border-color: inherit;
32047
- border-top-left-radius: 0;
32048
- border-bottom-left-radius: 0;
32266
+ border-radius: inherit;
32049
32267
  }
32050
- .k-range-mid {
32268
+ }
32269
+ .k-range-end {
32270
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
32271
+
32272
+ .k-calendar-cell-inner,
32273
+ .k-link {
32051
32274
  border-color: inherit;
32052
- border-radius: 0;
32275
+ border-radius: inherit;
32053
32276
  }
32054
32277
  }
32055
-
32056
-
32057
-
32278
+ .k-range-mid {
32279
+ border-color: inherit;
32280
+ border-radius: 0;
32281
+ }
32282
+ .k-range-start.k-range-end {
32283
+ border-radius: $kendo-calendar-range-cell-border-radius;
32284
+ }
32058
32285
 
32059
32286
  // RTL
32060
32287
  .k-rtl .k-calendar,
@@ -32067,6 +32294,14 @@ $kendo-calendar-sizes: (
32067
32294
  @include hide-scrollbar("left");
32068
32295
  }
32069
32296
 
32297
+ // Range Selection RTL
32298
+ .k-range-start {
32299
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
32300
+ }
32301
+ .k-range-end {
32302
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
32303
+ }
32304
+
32070
32305
  }
32071
32306
 
32072
32307
  }
@@ -32276,11 +32511,6 @@ $kendo-calendar-sizes: (
32276
32511
  background-color: $kendo-calendar-range-bg;
32277
32512
  }
32278
32513
 
32279
- .k-range-start.k-range-end {
32280
- background-image: none;
32281
- background-color: transparent;
32282
- }
32283
-
32284
32514
  .k-range-start,
32285
32515
  .k-range-end {
32286
32516
  .k-calendar-cell-inner {
@@ -37053,7 +37283,7 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
37053
37283
 
37054
37284
  /// The background of the track when the Switch is checked.
37055
37285
  /// @group switch
37056
- $kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 54%, transparent), rgba( $kendo-color-primary, .54 )) !default;
37286
+ $kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 44%, transparent), rgba( $kendo-color-primary, .54 )) !default;
37057
37287
  /// The text color of the track when the Switch is checked.
37058
37288
  /// @group switch
37059
37289
  $kendo-switch-on-track-text: null !default;
@@ -40495,13 +40725,23 @@ $kendo-drawer-border: $kendo-component-border !default;
40495
40725
  /// The border width of the Drawer.
40496
40726
  /// @group drawer
40497
40727
  $kendo-drawer-border-width: 1px !default;
40728
+
40729
+ /// The font family of the Drawer.
40730
+ /// @group drawer
40498
40731
  $kendo-drawer-font-family: var( --kendo-font-family, inherit ) !default;
40732
+ /// The font size of the Drawer.
40733
+ /// @group drawer
40499
40734
  $kendo-drawer-font-size: var( --kendo-font-size, inherit ) !default;
40735
+ /// The line height of the Drawer.
40736
+ /// @group drawer
40500
40737
  $kendo-drawer-line-height: var( --kendo-line-height, normal ) !default;
40501
- $kendo-drawer-content-padding-x: $kendo-padding-md-x !default;
40738
+
40739
+ /// The horizontal padding of the Drawer content.
40740
+ /// @group drawer
40741
+ $kendo-drawer-content-padding-x: null !default;
40502
40742
  /// The vertical padding of the Drawer content.
40503
40743
  /// @group drawer
40504
- $kendo-drawer-content-padding-y: $kendo-padding-md-y !default;
40744
+ $kendo-drawer-content-padding-y: null !default;
40505
40745
 
40506
40746
  /// The width of the Drawer scrollbar.
40507
40747
  /// @group drawer
@@ -40648,6 +40888,8 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
40648
40888
  .k-drawer-content {
40649
40889
  flex: 1 1 auto;
40650
40890
  overflow: auto;
40891
+ padding-block: $kendo-drawer-content-padding-y;
40892
+ padding-inline: $kendo-drawer-content-padding-x;
40651
40893
  }
40652
40894
 
40653
40895
 
@@ -44551,119 +44793,161 @@ $_kendo-module-meta: (
44551
44793
 
44552
44794
  // Component
44553
44795
  // #region @import "./_variables.scss"; -> scss/tabstrip/_variables.scss
44554
- // Tabstrip
44796
+ // TabStrip
44797
+
44798
+
44799
+ /// The horizontal padding of the TabStrip wrapper.
44800
+ /// @group tabstrip
44555
44801
  $kendo-tabstrip-wrapper-padding-x: k-spacing(0) !default;
44802
+ /// The vertical padding of the TabStrip wrapper.
44803
+ /// @group tabstrip
44556
44804
  $kendo-tabstrip-wrapper-padding-y: k-spacing(0) !default;
44805
+ /// The border width around the TabStrip wrapper.
44806
+ /// @group tabstrip
44557
44807
  $kendo-tabstrip-wrapper-border-width: 0px !default;
44558
44808
 
44809
+ /// The font family of the TabStrip.
44810
+ /// @group tabstrip
44559
44811
  $kendo-tabstrip-font-family: var( --kendo-font-family, inherit ) !default;
44812
+ /// The font size of the TabStrip.
44813
+ /// @group tabstrip
44560
44814
  $kendo-tabstrip-font-size: var( --kendo-font-size, inherit ) !default;
44815
+ /// The line height of the TabStrip.
44816
+ /// @group tabstrip
44561
44817
  $kendo-tabstrip-line-height: k-math-div( 20, 14 ) !default;
44818
+ /// The border width around the TabStrip.
44819
+ /// @group tabstrip
44562
44820
  $kendo-tabstrip-border-width: 1px !default;
44563
44821
 
44822
+ /// The background color of the TabStrip wrapper.
44823
+ /// @group tabstrip
44564
44824
  $kendo-tabstrip-wrapper-bg: null !default;
44825
+ /// The text color of the TabStrip wrapper.
44826
+ /// @group tabstrip
44565
44827
  $kendo-tabstrip-wrapper-text: null !default;
44828
+ /// The border color of the TabStrip wrapper.
44829
+ /// @group tabstrip
44566
44830
  $kendo-tabstrip-wrapper-border: null !default;
44567
44831
 
44568
- /// Background color of tabstrip component
44832
+ /// The background color of the TabStrip.
44569
44833
  /// @group tabstrip
44570
44834
  $kendo-tabstrip-bg: null !default;
44571
- /// Text color of tabstrip component
44835
+ /// The text color of the TabStrip.
44572
44836
  /// @group tabstrip
44573
44837
  $kendo-tabstrip-text: $kendo-subtle-text !default;
44574
- /// Border color of tabstrip component
44838
+ /// The border color of the TabStrip.
44575
44839
  /// @group tabstrip
44576
44840
  $kendo-tabstrip-border: $kendo-component-border !default;
44577
44841
 
44578
- /// Horizontal padding of tabs
44842
+ /// The horizontal padding of the TabStrip items.
44579
44843
  /// @group tabstrip
44580
44844
  $kendo-tabstrip-item-padding-x: k-spacing(6) !default;
44581
- /// Vertical padding of tabs
44845
+ /// The vertical padding of the TabStrip items.
44582
44846
  /// @group tabstrip
44583
44847
  $kendo-tabstrip-item-padding-y: k-spacing(3.5) !default;
44584
- /// Width of border around of tabs
44848
+ /// The border width around the TabStrip items.
44585
44849
  /// @group tabstrip
44586
44850
  $kendo-tabstrip-item-border-width: 0px !default;
44587
- /// Border radius of tabs
44851
+ /// The border radius of the TabStrip items.
44588
44852
  /// @group tabstrip
44589
44853
  $kendo-tabstrip-item-border-radius: 0px !default;
44590
- /// Spacing between tabs
44854
+ /// The gap between the TabStrip items.
44591
44855
  /// @group tabstrip
44592
44856
  $kendo-tabstrip-item-gap: k-spacing(0) !default;
44593
44857
 
44594
- /// Background color of tabs
44858
+ /// The background color of the TabStrip items.
44595
44859
  /// @group tabstrip
44596
44860
  $kendo-tabstrip-item-bg: null !default;
44597
- /// Text color of tabs
44861
+ /// The text color of the TabStrip items.
44598
44862
  /// @group tabstrip
44599
44863
  $kendo-tabstrip-item-text: $kendo-subtle-text !default;
44600
- /// Border color of tabs
44864
+ /// The border color of the TabStrip items.
44601
44865
  /// @group tabstrip
44602
44866
  $kendo-tabstrip-item-border: null !default;
44603
- /// Background gradient of tabs
44867
+ /// The gradient of the TabStrip items.
44604
44868
  /// @group tabstrip
44605
44869
  $kendo-tabstrip-item-gradient: null !default;
44606
44870
 
44607
- /// Background color of hovered tabs
44871
+ /// The background color of the hovered TabStrip items.
44608
44872
  /// @group tabstrip
44609
44873
  $kendo-tabstrip-item-hover-bg: $kendo-hover-bg !default;
44610
- /// Text color of hovered tabs
44874
+ /// The text color of the hovered TabStrip items.
44611
44875
  /// @group tabstrip
44612
44876
  $kendo-tabstrip-item-hover-text: $kendo-body-text !default;
44613
- /// Border color of hovered tabs
44877
+ /// The border color of the hovered TabStrip items.
44614
44878
  /// @group tabstrip
44615
44879
  $kendo-tabstrip-item-hover-border: null !default;
44616
- /// Background gradient of hovered tabs
44880
+ /// The gradient of the hovered TabStrip items.
44617
44881
  /// @group tabstrip
44618
44882
  $kendo-tabstrip-item-hover-gradient: null !default;
44619
44883
 
44620
- /// Background color of selected tabs
44884
+ /// The background color of the selected TabStrip items.
44621
44885
  /// @group tabstrip
44622
44886
  $kendo-tabstrip-item-selected-bg: null !default;
44623
- /// Text color of selected tabs
44887
+ /// The text color of the selected TabStrip items.
44624
44888
  /// @group tabstrip
44625
44889
  $kendo-tabstrip-item-selected-text: $kendo-body-text !default;
44626
- /// Border color of selected tabs
44890
+ /// The border color of the selected TabStrip items.
44627
44891
  /// @group tabstrip
44628
44892
  $kendo-tabstrip-item-selected-border: null !default;
44629
- /// Background gradient of selected tabs
44893
+ /// The gradient of the selected TabStrip items.
44630
44894
  /// @group tabstrip
44631
44895
  $kendo-tabstrip-item-selected-gradient: null !default;
44632
44896
 
44897
+ /// The shadow of the focused TabStrip items.
44898
+ /// @group tabstrip
44633
44899
  $kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
44634
44900
 
44901
+ /// The shadow of the dragged TabStrip items.
44902
+ /// @group tabstrip
44635
44903
  $kendo-tabstrip-item-dragging-shadow: $box-shadow-depth-3 !default;
44636
44904
 
44905
+ /// The background color of the disabled TabStrip items.
44906
+ /// @group tabstrip
44637
44907
  $kendo-tabstrip-item-disabled-bg: null !default;
44908
+ /// The text color of the disabled TabStrip items.
44909
+ /// @group tabstrip
44638
44910
  $kendo-tabstrip-item-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), k-map-get( $theme, disabled-text )) !default;
44911
+ /// The border color of the disabled TabStrip items.
44912
+ /// @group tabstrip
44639
44913
  $kendo-tabstrip-item-disabled-border: null !default;
44914
+ /// The gradient of the disabled TabStrip items.
44915
+ /// @group tabstrip
44640
44916
  $kendo-tabstrip-item-disabled-gradient: null !default;
44917
+ /// The opacity of the disabled TabStrip items.
44918
+ /// @group tabstrip
44641
44919
  $kendo-tabstrip-item-disabled-opacity: 1 !default;
44920
+ /// The filter of the disabled TabStrip items.
44921
+ /// @group tabstrip
44642
44922
  $kendo-tabstrip-item-disabled-filter: none !default;
44643
44923
 
44924
+ /// The border width of the TabStrip indicator.
44925
+ /// @group tabstrip
44644
44926
  $kendo-tabstrip-indicator-size: 2px !default;
44927
+ /// The border color of the TabStrip ripple.
44928
+ /// @group tabstrip
44645
44929
  $kendo-tabstrip-indicator-color: $kendo-color-primary !default;
44646
44930
 
44647
- /// Horizontal padding of tabstrip content
44931
+ /// The horizontal padding of the TabStrip content.
44648
44932
  /// @group tabstrip
44649
44933
  $kendo-tabstrip-content-padding-x: k-spacing(4) !default;
44650
- /// Vertical padding of tabstrip content
44934
+ /// The vertical padding of the TabStrip content.
44651
44935
  /// @group tabstrip
44652
44936
  $kendo-tabstrip-content-padding-y: k-spacing(4) !default;
44653
- /// Width of border around tabstrip content
44937
+ /// The border width around the TabStrip content.
44654
44938
  /// @group tabstrip
44655
44939
  $kendo-tabstrip-content-border-width: 0px !default;
44656
44940
 
44657
- /// Background color of tabstrip content
44941
+ /// The background color of the TabStrip content.
44658
44942
  /// @group tabstrip
44659
44943
  $kendo-tabstrip-content-bg: transparent !default;
44660
- /// Text color of tabstrip content
44944
+ /// The text color of the TabStrip content.
44661
44945
  /// @group tabstrip
44662
44946
  $kendo-tabstrip-content-text: null !default;
44663
- /// Border color of tabstrip content
44947
+ /// The border color of the TabStrip content.
44664
44948
  /// @group tabstrip
44665
44949
  $kendo-tabstrip-content-border: null !default;
44666
- /// Border color of tabstrip focused content
44950
+ /// The border color of the focused TabStrip content.
44667
44951
  /// @group tabstrip
44668
44952
  $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
44669
44953
 
@@ -51064,6 +51348,7 @@ $kendo-listview-item-focus-shadow: null !default;
51064
51348
  font-family: $kendo-listview-font-family;
51065
51349
  font-size: $kendo-listview-font-size;
51066
51350
  line-height: $kendo-listview-line-height;
51351
+ display: flex;
51067
51352
  flex-flow: column nowrap;
51068
51353
  position: relative;
51069
51354
  -webkit-touch-callout: none;
@@ -51656,7 +51941,7 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(2) !default;
51656
51941
 
51657
51942
  // Spreadsheet
51658
51943
  .k-spreadsheet {
51659
- width: 800px;
51944
+ width: 100%;
51660
51945
  height: 600px;
51661
51946
  border-width: $kendo-spreadsheet-border-width;
51662
51947
  border-style: solid;
@@ -58758,96 +59043,240 @@ $_kendo-module-meta: (
58758
59043
  // Component
58759
59044
  // #region @import "./_variables.scss"; -> scss/scheduler/_variables.scss
58760
59045
  // Scheduler
59046
+
59047
+ /// The width of the border around the Scheduler.
59048
+ /// @group scheduler
58761
59049
  $kendo-scheduler-border-width: 1px !default;
59050
+ /// The font family of the Scheduler.
59051
+ /// @group scheduler
58762
59052
  $kendo-scheduler-font-family: var( --kendo-font-family, inherit ) !default;
59053
+ /// The font size of the Scheduler.
59054
+ /// @group scheduler
58763
59055
  $kendo-scheduler-font-size: var( --kendo-font-size, inherit ) !default;
59056
+ /// The line height of the Scheduler.
59057
+ /// @group scheduler
58764
59058
  $kendo-scheduler-line-height: var( --kendo-line-height, normal ) !default;
58765
59059
 
59060
+ /// The background color of the Scheduler.
59061
+ /// @group scheduler
58766
59062
  $kendo-scheduler-bg: $kendo-component-bg !default;
59063
+ /// The text color of the Scheduler.
59064
+ /// @group scheduler
58767
59065
  $kendo-scheduler-text: $kendo-component-text !default;
59066
+ /// The border color of the Scheduler.
59067
+ /// @group scheduler
58768
59068
  $kendo-scheduler-border: $kendo-component-border !default;
58769
59069
 
59070
+ /// The background color of the Scheduler ToolBar.
59071
+ /// @group scheduler
58770
59072
  $kendo-scheduler-toolbar-bg: if($kendo-enable-color-system, k-color( surface ), k-try-shade( $kendo-button-bg, .5 )) !default;
59073
+ /// The text color of the Scheduler ToolBar.
59074
+ /// @group scheduler
58771
59075
  $kendo-scheduler-toolbar-text: null !default;
59076
+ /// The border color of the Scheduler ToolBar.
59077
+ /// @group scheduler
58772
59078
  $kendo-scheduler-toolbar-border: null !default;
59079
+ /// The gradient of the Scheduler ToolBar.
59080
+ /// @group scheduler
58773
59081
  $kendo-scheduler-toolbar-gradient: null !default;
58774
59082
 
59083
+ /// The background color of the Scheduler footer.
59084
+ /// @group scheduler
58775
59085
  $kendo-scheduler-footer-bg: if($kendo-enable-color-system, k-color( surface ), k-try-shade( $kendo-button-bg, .5 )) !default;
59086
+ /// The text color of the Scheduler footer.
59087
+ /// @group scheduler
58776
59088
  $kendo-scheduler-footer-text: null !default;
59089
+ /// The border color of the Scheduler footer.
59090
+ /// @group scheduler
58777
59091
  $kendo-scheduler-footer-border: null !default;
59092
+ /// The gradient of the Scheduler footer.
59093
+ /// @group scheduler
58778
59094
  $kendo-scheduler-footer-gradient: null !default;
58779
59095
 
59096
+ /// The minimum height of the Scheduler event.
59097
+ /// @group scheduler
58780
59098
  $kendo-scheduler-event-min-height: 25px !default;
59099
+ /// The border radius of the Scheduler event.
59100
+ /// @group scheduler
58781
59101
  $kendo-scheduler-event-border-radius: k-border-radius(md) !default;
59102
+ /// The line height of the Scheduler event.
59103
+ /// @group scheduler
58782
59104
  $kendo-scheduler-event-line-height: calc( #{$kendo-scheduler-event-min-height} - (2 * #{$kendo-padding-sm-y}) ) !default;
58783
59105
 
59106
+ /// The background color of the Scheduler event.
59107
+ /// @group scheduler
58784
59108
  $kendo-scheduler-event-bg: $kendo-color-primary !default;
59109
+ /// The text color of the Scheduler event.
59110
+ /// @group scheduler
58785
59111
  $kendo-scheduler-event-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-scheduler-event-bg )) !default;
59112
+ /// The border color of the Scheduler event.
59113
+ /// @group scheduler
58786
59114
  $kendo-scheduler-event-border: null !default;
59115
+ /// The gradient of the Scheduler event.
59116
+ /// @group scheduler
58787
59117
  $kendo-scheduler-event-gradient: null !default;
59118
+ /// The shadow of the Scheduler event.
59119
+ /// @group scheduler
58788
59120
  $kendo-scheduler-event-shadow: null !default;
58789
59121
 
59122
+ /// The background color of the hovered Scheduler event.
59123
+ /// @group scheduler
58790
59124
  $kendo-scheduler-event-hover-bg: null !default;
59125
+ /// The text color of the hovered Scheduler event.
59126
+ /// @group scheduler
58791
59127
  $kendo-scheduler-event-hover-text: null !default;
59128
+ /// The border color of the hovered Scheduler event.
59129
+ /// @group scheduler
58792
59130
  $kendo-scheduler-event-hover-border: null !default;
59131
+ /// The gradient of the hovered Scheduler event.
59132
+ /// @group scheduler
58793
59133
  $kendo-scheduler-event-hover-gradient: null !default;
59134
+ /// The shadow of the hovered Scheduler event.
59135
+ /// @group scheduler
58794
59136
  $kendo-scheduler-event-hover-shadow: null !default;
58795
59137
 
59138
+ /// The background color of the selected Scheduler event.
59139
+ /// @group scheduler
58796
59140
  $kendo-scheduler-event-selected-bg: if($kendo-enable-color-system, k-color( primary-active ), k-try-tint( $kendo-color-primary, 1 )) !default;
59141
+ /// The text color of the selected Scheduler event.
59142
+ /// @group scheduler
58797
59143
  $kendo-scheduler-event-selected-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-scheduler-event-selected-bg )) !default;
59144
+ /// The border color of the selected Scheduler event.
59145
+ /// @group scheduler
58798
59146
  $kendo-scheduler-event-selected-border: null !default;
59147
+ /// The gradient of the selected Scheduler event.
59148
+ /// @group scheduler
58799
59149
  $kendo-scheduler-event-selected-gradient: null !default;
59150
+ /// The shadow of the selected Scheduler event.
59151
+ /// @group scheduler
58800
59152
  $kendo-scheduler-event-selected-shadow: $box-shadow-depth-3 !default;
58801
59153
 
59154
+ /// The shadow of the ongoing Scheduler event.
59155
+ /// @group scheduler
58802
59156
  $kendo-scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
58803
59157
 
59158
+ /// The horizontal padding of the Scheduler cell.
59159
+ /// @group scheduler
58804
59160
  $kendo-scheduler-cell-padding-x: k-spacing(2) !default;
59161
+ /// The vertical padding of the Scheduler cell.
59162
+ /// @group scheduler
58805
59163
  $kendo-scheduler-cell-padding-y: k-spacing(2) !default;
59164
+ /// The height of the Scheduler cell.
59165
+ /// @group scheduler
58806
59166
  $kendo-scheduler-cell-height: calc( var( --kendo-line-height, normal) * 1rem) !default;
59167
+ /// The width of the Scheduler date column.
59168
+ /// @group scheduler
58807
59169
  $kendo-scheduler-datecolumn-width: 12rem !default;
59170
+
59171
+ /// The width of the Scheduler time column.
59172
+ /// @group scheduler
58808
59173
  $kendo-scheduler-timecolumn-width: 11rem !default;
58809
59174
 
59175
+ /// The background color of the non-working hours in the Scheduler.
59176
+ /// @group scheduler
58810
59177
  $kendo-scheduler-nonwork-bg: if($kendo-enable-color-system, k-color( surface ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
59178
+ /// The text color of the non-working hours in the Scheduler.
59179
+ /// @group scheduler
58811
59180
  $kendo-scheduler-nonwork-text: null !default;
58812
59181
 
59182
+ /// The background color of the weekends in the Scheduler.
59183
+ /// @group scheduler
58813
59184
  $kendo-scheduler-weekend-bg: null !default;
59185
+ /// The text color of the weekends in the Scheduler.
59186
+ /// @group scheduler
58814
59187
  $kendo-scheduler-weekend-text: null !default;
58815
59188
 
59189
+ /// The background color of the preceding/subsequent month cells in the Calendar.
59190
+ /// @group scheduler
58816
59191
  $kendo-scheduler-othermonth-bg: if($kendo-enable-color-system, k-color( surface ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
59192
+ /// The text color of the preceding/subsequent month cells in the Calendar.
59193
+ /// @group scheduler
58817
59194
  $kendo-scheduler-othermonth-text: null !default;
58818
59195
 
59196
+ /// The horizontal padding of the year view in the Scheduler.
59197
+ /// @group scheduler
58819
59198
  $kendo-scheduler-yearview-padding-x: k-spacing(5) !default;
59199
+ /// The vertical padding of the year view in the Scheduler.
59200
+ /// @group scheduler
58820
59201
  $kendo-scheduler-yearview-padding-y: $kendo-scheduler-yearview-padding-x !default;
58821
59202
 
59203
+ /// The spacing between the calendars of the year view in the Scheduler.
59204
+ /// @group scheduler
58822
59205
  $kendo-scheduler-yearview-calendar-gap: k-spacing(5) !default;
58823
59206
 
59207
+ /// The days with events indicator size of the year view in the Scheduler.
59208
+ /// @group scheduler
58824
59209
  $kendo-scheduler-yearview-indicator-size: 3px !default;
59210
+ /// The top position of the days with events indicator of the year view in the Scheduler.
59211
+ /// @group scheduler
58825
59212
  $kendo-scheduler-yearview-indicator-calc-offset-top: calc( #{$kendo-calendar-cell-size} - (#{$kendo-calendar-cell-padding-y} * 2)) !default;
59213
+ /// The left position of the days with events indicator of the year view in the Scheduler.
59214
+ /// @group scheduler
58826
59215
  $kendo-scheduler-yearview-indicator-calc-offset-left: calc( 50% - #{k-math-div( $kendo-scheduler-yearview-indicator-size, 2 )} ) !default;
59216
+ /// The border radius of the days with events indicator of the year view in the Scheduler.
59217
+ /// @group scheduler
58827
59218
  $kendo-scheduler-yearview-indicator-border-radius: 50% !default;
59219
+ /// The background color of the days with events indicator of the year view in the Scheduler.
59220
+ /// @group scheduler
58828
59221
  $kendo-scheduler-yearview-indicator-bg: $kendo-color-primary !default;
59222
+ /// The background color of the selected days with events indicator of the year view in the Scheduler.
59223
+ /// @group scheduler
58829
59224
  $kendo-scheduler-yearview-indicator-selected-bg: $kendo-color-primary-contrast !default;
58830
59225
 
59226
+ /// The horizontal padding of the Scheduler Tooltip.
59227
+ /// @group scheduler
58831
59228
  $kendo-scheduler-tooltip-padding-x: k-spacing(2) !default;
59229
+ /// The vertical padding of the Scheduler Tooltip.
59230
+ /// @group scheduler
58832
59231
  $kendo-scheduler-tooltip-padding-y: k-spacing(2) !default;
59232
+ /// The width of the border of the Scheduler Tooltip.
59233
+ /// @group scheduler
58833
59234
  $kendo-scheduler-tooltip-border-width: 0 !default;
59235
+ /// The background color of the Scheduler Tooltip.
59236
+ /// @group scheduler
58834
59237
  $kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
59238
+ /// The text color of the Scheduler Tooltip.
59239
+ /// @group scheduler
58835
59240
  $kendo-scheduler-tooltip-text: $kendo-base-text !default;
59241
+ /// The border color of the Scheduler Tooltip.
59242
+ /// @group scheduler
58836
59243
  $kendo-scheduler-tooltip-border: null !default;
59244
+ /// The shadow of the Scheduler Tooltip.
59245
+ /// @group scheduler
58837
59246
  $kendo-scheduler-tooltip-shadow: $box-shadow-depth-2 !default;
58838
59247
 
59248
+ /// The vertical margin of the Scheduler Tooltip title.
59249
+ /// @group scheduler
58839
59250
  $kendo-scheduler-tooltip-title-margin-y: k-spacing(2) !default;
59251
+ /// The font size of the month inside the Scheduler Tooltip.
59252
+ /// @group scheduler
58840
59253
  $kendo-scheduler-tooltip-month-font-size: var( --kendo-font-size-sm, inherit ) !default;
58841
- $kendo-scheduler-tooltip-day-font-size: calc( #{$kendo-scheduler-tooltip-month-font-size} * 2 ) !default;
59254
+ /// The font size of the day inside the Scheduler Tooltip.
59255
+ /// @group scheduler
59256
+ $kendo-scheduler-tooltip-day-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 2 ) !default;
58842
59257
 
59258
+ /// The max height of the events inside the Scheduler Tooltip.
59259
+ /// @group scheduler
58843
59260
  $kendo-scheduler-tooltip-events-max-height: 250px !default;
59261
+ /// The spacing between the events inside the Scheduler Tooltip.
59262
+ /// @group scheduler
58844
59263
  $kendo-scheduler-tooltip-events-gap: k-spacing(1) !default;
58845
59264
 
59265
+ /// The horizontal padding of the events inside the Scheduler Tooltip.
59266
+ /// @group scheduler
58846
59267
  $kendo-scheduler-tooltip-event-padding-x: k-spacing(2) !default;
59268
+ /// The vertical padding of the events inside the Scheduler Tooltip.
59269
+ /// @group scheduler
58847
59270
  $kendo-scheduler-tooltip-event-padding-y: k-spacing(2) !default;
59271
+ /// The border radius of the events inside the Scheduler Tooltip.
59272
+ /// @group scheduler
58848
59273
  $kendo-scheduler-tooltip-event-border-radius: k-border-radius(md) !default;
59274
+ /// The spacing between the events items inside the Scheduler Tooltip.
59275
+ /// @group scheduler
58849
59276
  $kendo-scheduler-tooltip-event-gap: k-spacing(2) !default;
58850
59277
 
59278
+ /// The color of the Scheduler Tooltip callout.
59279
+ /// @group scheduler
58851
59280
  $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
58852
59281
 
58853
59282
  // #endregion
@@ -59965,7 +60394,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
59965
60394
  line-height: normal;
59966
60395
 
59967
60396
  .k-icon {
59968
- padding: calc( var( --kendo-font-size, inherit) - var( --kendo-font-size-sm, inherit) );
60397
+ padding: calc( var( --kendo-font-size, .875rem) - var( --kendo-font-size-sm, .75rem) );
59969
60398
  box-sizing: content-box;
59970
60399
  vertical-align: unset;
59971
60400
  }
@@ -61539,7 +61968,7 @@ $kendo-timeline-track-start-calc: calc(#{$kendo-timeline-track-arrow-width} - 2
61539
61968
  $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 * #{$kendo-timeline-track-border-width}) !default;
61540
61969
  /// The background color of the Timeline track.
61541
61970
  /// @group timeline
61542
- $kendo-timeline-track-bg: #e0e0e0 !default;
61971
+ $kendo-timeline-track-bg: if($kendo-enable-color-system, k-color( base-subtle ), #e0e0e0) !default;
61543
61972
  /// The border color of the Timeline track.
61544
61973
  /// @group timeline
61545
61974
  $kendo-timeline-track-border-color: $kendo-timeline-track-bg !default;
@@ -63079,8 +63508,8 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
63079
63508
 
63080
63509
  &::before {
63081
63510
  content: "";
63082
- width: ($kendo-scrollview-pagebutton-size + $kendo-scrollview-pager-item-spacing);
63083
- height: ($kendo-scrollview-pagebutton-size + $kendo-scrollview-pager-item-spacing);
63511
+ width: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-spacing} );
63512
+ height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-spacing} );
63084
63513
  display: block;
63085
63514
  position: absolute;
63086
63515
  top: 50%;
@@ -63646,7 +64075,7 @@ $kendo-chart-line-height: var( --kendo-line-height, normal ) !default;
63646
64075
  $kendo-chart-sm-font-size: 11px !default;
63647
64076
  $kendo-chart-md-font-size: 12px !default;
63648
64077
  $kendo-chart-lg-font-size: 16px !default;
63649
- $kendo-chart-tooltip-font-size: calc( var( --kendo-font-size, inherit ) * .929 ) !default;
64078
+ $kendo-chart-tooltip-font-size: calc( #{$kendo-font-size} * .929) !default;
63650
64079
  $kendo-chart-label-font-size: .857em !default;
63651
64080
  $kendo-chart-title-font-size: 1.143em !default;
63652
64081
  $kendo-chart-pane-title-font-size: $kendo-chart-label-font-size !default;
@@ -63965,7 +64394,10 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
63965
64394
  }
63966
64395
 
63967
64396
 
63968
-
64397
+ // Sankey labels
64398
+ .k-sankey text {
64399
+ pointer-events: none;
64400
+ }
63969
64401
 
63970
64402
  // Treemap
63971
64403
  .k-treemap {