@progress/kendo-theme-material 5.1.2-dev.6 → 5.2.1-dev.0

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 (40) hide show
  1. package/dist/all.css +415 -164
  2. package/dist/all.scss +266 -130
  3. package/lib/swatches/material-aqua-dark.json +202 -41
  4. package/lib/swatches/material-arctic.json +202 -41
  5. package/lib/swatches/material-burnt-teal.json +202 -41
  6. package/lib/swatches/material-dataviz-v4.json +2 -1
  7. package/lib/swatches/material-eggplant.json +202 -41
  8. package/lib/swatches/material-lime-dark.json +202 -41
  9. package/lib/swatches/material-lime.json +202 -41
  10. package/lib/swatches/material-main-dark.json +202 -41
  11. package/lib/swatches/material-main.json +202 -41
  12. package/lib/swatches/material-nova.json +202 -41
  13. package/lib/swatches/material-pacific-dark.json +202 -41
  14. package/lib/swatches/material-pacific.json +202 -41
  15. package/lib/swatches/material-sky-dark.json +202 -41
  16. package/lib/swatches/material-sky.json +202 -41
  17. package/lib/swatches/material-smoke.json +202 -41
  18. package/package.json +4 -4
  19. package/scss/_variables.scss +4 -3
  20. package/scss/badge/_variables.scss +3 -3
  21. package/scss/breadcrumb/_variables.scss +1 -1
  22. package/scss/button/_variables.scss +11 -0
  23. package/scss/card/_variables.scss +1 -1
  24. package/scss/color-preview/_variables.scss +1 -1
  25. package/scss/coloreditor/_variables.scss +1 -1
  26. package/scss/colorgradient/_variables.scss +2 -2
  27. package/scss/fab/_variables.scss +1 -1
  28. package/scss/gantt/_variables.scss +5 -0
  29. package/scss/listgroup/_variables.scss +1 -1
  30. package/scss/loader/_variables.scss +1 -1
  31. package/scss/notification/_variables.scss +1 -0
  32. package/scss/orgchart/_variables.scss +1 -1
  33. package/scss/pivotgrid/_variables.scss +1 -1
  34. package/scss/scheduler/_variables.scss +2 -2
  35. package/scss/skeleton/_variables.scss +1 -1
  36. package/scss/spreadsheet/_variables.scss +3 -3
  37. package/scss/taskboard/_variables.scss +1 -1
  38. package/scss/tilelayout/_variables.scss +1 -1
  39. package/scss/tooltip/_variables.scss +1 -1
  40. package/scss/utils/_border.scss +4 -4
package/dist/all.scss CHANGED
@@ -1864,9 +1864,10 @@ $padding-x-lg: $padding-x * 1.5 !default;
1864
1864
  $padding-y-lg: $padding-y * 1.5 !default;
1865
1865
 
1866
1866
  /// Border radius for all components.
1867
- $border-radius: 2px !default;
1868
- $border-radius-sm: $border-radius / 2 !default;
1869
- $border-radius-lg: $border-radius * 2 !default;
1867
+ $kendo-border-radius: map-get( $spacing, 1 ) !default;
1868
+ $kendo-border-radius-sm: $kendo-border-radius / 2 !default;
1869
+ $kendo-border-radius-md: $kendo-border-radius !default;
1870
+ $kendo-border-radius-lg: $kendo-border-radius * 1.5 !default;
1870
1871
 
1871
1872
  $panel-padding-x: $padding-x !default;
1872
1873
  $panel-padding-y: $padding-y !default;
@@ -2564,7 +2565,7 @@ $display4-letter-spacing: null !default;
2564
2565
  // Panels
2565
2566
  .k-block,
2566
2567
  .k-panel {
2567
- @include border-radius( $border-radius );
2568
+ @include border-radius( $kendo-border-radius-md );
2568
2569
  @include fill(
2569
2570
  $panel-text,
2570
2571
  $panel-bg,
@@ -2576,7 +2577,7 @@ $display4-letter-spacing: null !default;
2576
2577
  box-sizing: border-box;
2577
2578
 
2578
2579
  > .k-header {
2579
- @include border-top-radius( $border-radius );
2580
+ @include border-top-radius( $kendo-border-radius-md );
2580
2581
  @include fill(
2581
2582
  $header-text,
2582
2583
  $header-bg,
@@ -4148,11 +4149,11 @@ $display4-letter-spacing: null !default;
4148
4149
  // Component
4149
4150
  // #region @import "_border.scss"; -> packages/material/scss/utils/_border.scss
4150
4151
  $utils-border-radius: (
4151
- default: map-get( $spacing, 1 ),
4152
+ default: $kendo-border-radius-md,
4152
4153
  0: 0,
4153
- sm: .125rem,
4154
- md: .25rem,
4155
- lg: .375rem,
4154
+ sm: $kendo-border-radius-sm,
4155
+ md: $kendo-border-radius-md,
4156
+ lg: $kendo-border-radius-lg,
4156
4157
  full: 9999px
4157
4158
  ) !default;
4158
4159
 
@@ -4200,11 +4201,11 @@ $utils-border-radius: (
4200
4201
  ) !default;
4201
4202
 
4202
4203
  $utils-border-radius: (
4203
- default: map-get( $spacing, 1 ),
4204
+ default: $kendo-border-radius-md,
4204
4205
  0: 0,
4205
- sm: ( map-get( $spacing, 1 ) / 4 ),
4206
- md: ( map-get( $spacing, 1 ) / 2 ),
4207
- lg: map-get( $spacing, 1 ),
4206
+ sm: $kendo-border-radius-sm,
4207
+ md: $kendo-border-radius-md,
4208
+ lg: $kendo-border-radius-lg,
4208
4209
  full: 9999px
4209
4210
  ) !default;
4210
4211
 
@@ -4328,48 +4329,48 @@ $utils-border-radius: (
4328
4329
  /// @name k-d-flex
4329
4330
  /// @description This is equivalent to `display: flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
4330
4331
  /// @group flex-layout
4331
- .k-d-flex { display: flex; }
4332
- .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
4332
+ .k-d-flex { display: flex; }
4333
+ .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
4333
4334
  /// @name k-d-inline-flex
4334
4335
  /// @description This is equivalent to `display: inline-flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
4335
4336
  /// @group flex-layout
4336
- .k-d-inline-flex { display: inline-flex; }
4337
- .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
4337
+ .k-d-inline-flex { display: inline-flex; }
4338
+ .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
4338
4339
  /// @name k-d-flex-row
4339
4340
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
4340
4341
  /// @group flex-layout
4341
- .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
4342
- .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
4342
+ .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
4343
+ .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
4343
4344
  /// @name k-d-flex-col
4344
4345
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
4345
4346
  /// @group flex-layout
4346
- .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
4347
- .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
4347
+ .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
4348
+ .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
4348
4349
  /// @name k-flex-row
4349
4350
  /// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
4350
4351
  /// @group flex-layout
4351
- .k-flex-row { flex-direction: row; }
4352
- .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
4352
+ .k-flex-row { flex-direction: row; }
4353
+ .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
4353
4354
  /// @name k-flex-row-reverse
4354
4355
  /// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
4355
4356
  /// @group flex-layout
4356
- .k-flex-row-reverse { flex-direction: row-reverse; }
4357
- .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
4357
+ .k-flex-row-reverse { flex-direction: row-reverse; }
4358
+ .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
4358
4359
  /// @name k-flex-col
4359
4360
  /// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
4360
4361
  /// @group flex-layout
4361
- .k-flex-col { flex-direction: column; }
4362
- .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
4362
+ .k-flex-col { flex-direction: column; }
4363
+ .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
4363
4364
  /// @name k-flex-col-reverse
4364
4365
  /// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
4365
4366
  /// @group flex-layout
4366
- .k-flex-col-reverse { flex-direction: column-reverse; }
4367
- .\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
4367
+ .k-flex-col-reverse { flex-direction: column-reverse; }
4368
+ .\!k-flex-col-reverse { flex-direction: column-reverse !important; } // sass-lint:disable-line no-important class-name-format
4368
4369
 
4369
4370
 
4370
4371
  // Aliases
4371
- .k-flex-column { @extend .k-flex-col; }
4372
- .k-flex-column-reverse { @extend .k-flex-col-reverse; }
4372
+ .k-flex-column { @extend .k-flex-col; }
4373
+ .k-flex-column-reverse { @extend .k-flex-col-reverse; }
4373
4374
 
4374
4375
 
4375
4376
  // Flex wrap
@@ -4377,15 +4378,18 @@ $utils-border-radius: (
4377
4378
  /// @name k-flex-wrap
4378
4379
  /// @description This is equivalent to `flex-wrap: wrap`. It allows flex items to wrap as needed onto multiple lines, from top to bottom.
4379
4380
  /// @group flex-layout
4380
- .k-flex-wrap { flex-wrap: wrap; }
4381
+ .k-flex-wrap { flex-wrap: wrap; }
4382
+ .\!k-flex-wrap { flex-wrap: wrap !important; } // sass-lint:disable-line no-important class-name-format
4381
4383
  /// @name k-flex-nowrap
4382
4384
  /// @description This is equivalent to `flex-wrap: nowrap`. All flex items will be on one line.
4383
4385
  /// @group flex-layout
4384
- .k-flex-nowrap { flex-wrap: nowrap; }
4386
+ .k-flex-nowrap { flex-wrap: nowrap; }
4387
+ .\!k-flex-nowrap { flex-wrap: nowrap !important; } // sass-lint:disable-line no-important class-name-format
4385
4388
  /// @name k-flex-wrap-reverse
4386
4389
  /// @description This is equivalent to `flex-wrap: wrap-reverse`. It allows flex items to wrap as needed onto multiple lines, from bottom to top.
4387
4390
  /// @group flex-layout
4388
- .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
4391
+ .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
4392
+ .\!k-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } // sass-lint:disable-line no-important class-name-format
4389
4393
 
4390
4394
 
4391
4395
  // Flex, shrink, grow,
@@ -4393,80 +4397,116 @@ $utils-border-radius: (
4393
4397
  /// @name k-flex-initial
4394
4398
  /// @description This is the same as `flex: initial;` and the shorthand for the default value: `flex: 0 1 auto`. It sizes the item based on its `width`/`height` properties (or its content if not set). It makes the flex item inflexible when there is some free space left, but allows it to shrink to its minimum when there is not enough space. The alignment abilities or `auto` margins can be used to align flex items along the main axis.
4395
4399
  /// @group flex-layout
4396
- .k-flex-initial { flex: 0 1 auto; }
4400
+ .k-flex-initial { flex: 0 1 auto; }
4401
+ .\!k-flex-initial { flex: 0 1 auto !important; } // sass-lint:disable-line no-important class-name-format
4397
4402
  /// @name k-flex-1
4398
4403
  /// @description This is equivalent to `flex: 1 1 0%`. It sizes the item not based on its `width`/`height` properties, but based on the available space. This is similar to `flex: 1 1 auto` execpt it is allowed to shrink beyond its initial size.
4399
4404
  /// @group flex-layout
4400
- .k-flex-1 { flex: 1 1 0%; }
4405
+ .k-flex-1 { flex: 1 1 0%; }
4406
+ .\!k-flex-1 { flex: 1 1 0% !important; } // sass-lint:disable-line no-important class-name-format
4401
4407
  /// @name k-flex-auto
4402
4408
  /// @description This is equivalent to `flex: 1 1 auto`. Beware, this is not the default value. It sizes the item based on its `width`/`height` properties, but makes it fully flexible so that they absorb any extra space along the main axis. If all items are either `flex: auto`, `flex: initial`, or `flex: none`, any remaining space after the items have been sized will be distributed evenly to the items with `flex: auto`.
4403
4409
  /// @group flex-layout
4404
- .k-flex-auto { flex: 1 1 auto; }
4410
+ .k-flex-auto { flex: 1 1 auto; }
4411
+ .\!k-flex-auto { flex: 1 1 auto !important; } // sass-lint:disable-line no-important class-name-format
4405
4412
  /// @name k-flex-none
4406
4413
  /// @description This is equivalent to `flex: 0 0 auto`. It sizes the item according to its `width`/`height` properties, but makes it fully inflexible. This is similar to `flex: initial` except it is not allowed to shrink, even in an overflow situation.
4407
4414
  /// @group flex-layout
4408
- .k-flex-none { flex: none; }
4415
+ .k-flex-none { flex: none; }
4416
+ .\!k-flex-none { flex: none !important; } // sass-lint:disable-line no-important class-name-format
4409
4417
  /// @name k-flex-grow
4410
4418
  /// @description This is equivalent to `flex-grow: 1`. It defines the ability for a flex item to grow if necessary. It accepts a unitless value that serves as a proportion. It dictates what amount of the available space inside the flex container the item should take up.
4411
4419
  /// @group flex-layout
4412
- .k-flex-grow { flex-grow: 1; }
4420
+ .k-flex-grow { flex-grow: 1; }
4421
+ .\!k-flex-grow { flex-grow: 1 !important; } // sass-lint:disable-line no-important class-name-format
4413
4422
  /// @name k-flex-grow-0
4414
4423
  /// @description This is equivalent to `flex-grow: 0`. The item will not grow.
4415
4424
  /// @group flex-layout
4416
- .k-flex-grow-0 { flex-grow: 0; }
4425
+ .k-flex-grow-0 { flex-grow: 0; }
4426
+ .\!k-flex-grow-0 { flex-grow: 0 !important; } // sass-lint:disable-line no-important class-name-format
4417
4427
  /// @name k-flex-shrink
4418
4428
  /// @description This is equivalent to `flex-shrink: 1`. It determines how much the flex item will shrink relative to the rest of the flex items in the flex container when there isn't enough space on the row.
4419
4429
  /// @group flex-layout
4420
- .k-flex-shrink { flex-shrink: 1; }
4430
+ .k-flex-shrink { flex-shrink: 1; }
4431
+ .\!k-flex-shrink { flex-shrink: 1 !important; } // sass-lint:disable-line no-important class-name-format
4421
4432
  /// @name k-flex-shrink-0
4422
4433
  /// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
4423
4434
  /// @group flex-layout
4424
- .k-flex-shrink-0 { flex-shrink: 0; }
4435
+ .k-flex-shrink-0 { flex-shrink: 0; }
4436
+ .\!k-flex-shrink-0 { flex-shrink: 0 !important; } // sass-lint:disable-line no-important class-name-format
4425
4437
  /// @name k-flex-basis-auto
4426
4438
  /// @description This is equivalent to `flex-basis: auto`. It specifies the initial size of the flex item, before any available space is distributed according to the flex factors. It sizes the element according to its size property.
4427
4439
  /// @group flex-layout
4428
- .k-flex-basis-auto { flex-basis: auto; }
4440
+ .k-flex-basis-auto { flex-basis: auto; }
4441
+ .\!k-flex-basis-auto { flex-basis: auto !important; } // sass-lint:disable-line no-important class-name-format
4429
4442
  /// @name k-flex-basis-0
4430
4443
  /// @description This is equivalent to `flex-basis: 0`. It specifies the initial size of the flex item, before any available space is distributed according to the flex factors. It disregards the element' size property.
4431
4444
  /// @group flex-layout
4432
- .k-flex-basis-0 { flex-basis: 0%; }
4445
+ .k-flex-basis-0 { flex-basis: 0%; }
4446
+ .\!k-flex-basis-0 { flex-basis: 0% !important; } // sass-lint:disable-line no-important class-name-format
4433
4447
 
4434
4448
 
4435
4449
  // Flex align
4436
- .k-align-items-start { align-items: flex-start; }
4437
- .k-align-items-end { align-items: flex-end; }
4438
- .k-align-items-center { align-items: center; }
4439
- .k-align-items-stretch { align-items: stretch; }
4440
- .k-align-items-baseline { align-items: baseline; }
4441
-
4442
- .k-align-content-start { align-content: flex-start; }
4443
- .k-align-content-end { align-content: flex-end; }
4444
- .k-align-content-center { align-content: center; }
4445
- .k-align-content-stretch { align-content: stretch; }
4446
- .k-align-content-baseline { align-content: baseline; }
4447
-
4448
- .k-align-self-start { align-self: flex-start; }
4449
- .k-align-self-end { align-self: flex-end; }
4450
- .k-align-self-center { align-self: center; }
4451
- .k-align-self-stretch { align-self: stretch; }
4452
- .k-align-self-baseline { align-self: baseline; }
4450
+ .k-align-items-start { align-items: flex-start; }
4451
+ .\!k-align-items-start { align-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
4452
+ .k-align-items-end { align-items: flex-end; }
4453
+ .\!k-align-items-end { align-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
4454
+ .k-align-items-center { align-items: center; }
4455
+ .\!k-align-items-center { align-items: center !important; } // sass-lint:disable-line no-important class-name-format
4456
+ .k-align-items-stretch { align-items: stretch; }
4457
+ .\!k-align-items-stretch { align-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
4458
+ .k-align-items-baseline { align-items: baseline; }
4459
+ .\!k-align-items-baseline { align-items: baseline !important; } // sass-lint:disable-line no-important class-name-format
4460
+
4461
+ .k-align-content-start { align-content: flex-start; }
4462
+ .\!k-align-content-start { align-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
4463
+ .k-align-content-end { align-content: flex-end; }
4464
+ .\!k-align-content-end { align-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
4465
+ .k-align-content-center { align-content: center; }
4466
+ .\!k-align-content-center { align-content: center !important; } // sass-lint:disable-line no-important class-name-format
4467
+ .k-align-content-stretch { align-content: stretch; }
4468
+ .\!k-align-content-stretch { align-content: stretch !important; } // sass-lint:disable-line no-important class-name-format
4469
+ .k-align-content-baseline { align-content: baseline; }
4470
+ .\!k-align-content-baseline { align-content: baseline !important; } // sass-lint:disable-line no-important class-name-format
4471
+
4472
+ .k-align-self-start { align-self: flex-start; }
4473
+ .\!k-align-self-start { align-self: flex-start !important; } // sass-lint:disable-line no-important class-name-format
4474
+ .k-align-self-end { align-self: flex-end; }
4475
+ .\!k-align-self-end { align-self: flex-end !important; } // sass-lint:disable-line no-important class-name-format
4476
+ .k-align-self-center { align-self: center; }
4477
+ .\!k-align-self-center { align-self: center !important; } // sass-lint:disable-line no-important class-name-format
4478
+ .k-align-self-stretch { align-self: stretch; }
4479
+ .\!k-align-self-stretch { align-self: stretch !important; } // sass-lint:disable-line no-important class-name-format
4480
+ .k-align-self-baseline { align-self: baseline; }
4481
+ .\!k-align-self-baseline { align-self: baseline !important; } // sass-lint:disable-line no-important class-name-format
4453
4482
 
4454
4483
 
4455
4484
  // Justify content
4456
- .k-justify-content-start { justify-content: flex-start; }
4457
- .k-justify-content-end { justify-content: flex-end; }
4458
- .k-justify-content-center { justify-content: center; }
4459
- .k-justify-content-between { justify-content: space-between; }
4460
- .k-justify-content-around { justify-content: space-around; }
4461
- .k-justify-content-evenly { justify-content: space-evenly; }
4462
- .k-justify-content-stretch > * { flex: 1 0 0%; }
4485
+ .k-justify-content-start { justify-content: flex-start; }
4486
+ .\!k-justify-content-start { justify-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
4487
+ .k-justify-content-end { justify-content: flex-end; }
4488
+ .\!k-justify-content-end { justify-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
4489
+ .k-justify-content-center { justify-content: center; }
4490
+ .\!k-justify-content-center { justify-content: center !important; } // sass-lint:disable-line no-important class-name-format
4491
+ .k-justify-content-between { justify-content: space-between; }
4492
+ .\!k-justify-content-between { justify-content: space-between !important; } // sass-lint:disable-line no-important class-name-format
4493
+ .k-justify-content-around { justify-content: space-around; }
4494
+ .\!k-justify-content-around { justify-content: space-around !important; } // sass-lint:disable-line no-important class-name-format
4495
+ .k-justify-content-evenly { justify-content: space-evenly; }
4496
+ .\!k-justify-content-evenly { justify-content: space-evenly !important; } // sass-lint:disable-line no-important class-name-format
4497
+ .k-justify-content-stretch > * { flex: 1 0 0%; }
4498
+ .\!k-justify-content-stretch > * { flex: 1 0 0% !important; } // sass-lint:disable-line no-important class-name-format
4463
4499
 
4464
4500
 
4465
4501
  // Justify items
4466
- .k-justify-items-start { justify-items: flex-start; }
4467
- .k-justify-items-end { justify-items: flex-end; }
4468
- .k-justify-items-center { justify-items: center; }
4469
- .k-justify-items-stretch { justify-items: stretch; }
4502
+ .k-justify-items-start { justify-items: flex-start; }
4503
+ .\!k-justify-items-start { justify-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
4504
+ .k-justify-items-end { justify-items: flex-end; }
4505
+ .\!k-justify-items-end { justify-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
4506
+ .k-justify-items-center { justify-items: center; }
4507
+ .\!k-justify-items-center { justify-items: center !important; } // sass-lint:disable-line no-important class-name-format
4508
+ .k-justify-items-stretch { justify-items: stretch; }
4509
+ .\!k-justify-items-stretch { justify-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
4470
4510
 
4471
4511
  }
4472
4512
 
@@ -7757,6 +7797,14 @@ $kendo-checkbox-ripple-opacity: .2 !default;
7757
7797
  right: 0;
7758
7798
  }
7759
7799
  }
7800
+ .k-list-item-text,
7801
+ .k-list-optionlabel {
7802
+ &::before {
7803
+ content: "\200b";
7804
+ width: 0px;
7805
+ overflow: hidden;
7806
+ }
7807
+ }
7760
7808
  .k-list-optionlabel {
7761
7809
  @extend .k-list-item;
7762
7810
  }
@@ -8019,7 +8067,7 @@ $kendo-checkbox-ripple-opacity: .2 !default;
8019
8067
  // #region @import "_variables.scss"; -> packages/material/scss/listgroup/_variables.scss
8020
8068
  // Listgroup
8021
8069
  $listgroup-border-width: 1px !default;
8022
- $listgroup-border-radius: $border-radius !default;
8070
+ $listgroup-border-radius: $kendo-border-radius-md !default;
8023
8071
 
8024
8072
  $listgroup-font-size: $font-size !default;
8025
8073
  $listgroup-line-height: (20 / 14) !default;
@@ -8373,7 +8421,7 @@ $popup-shadow: 0 2px 4px -1px rgba( $elevation, .2 ), 0 4px 5px 0 rgba( $elevati
8373
8421
  }
8374
8422
  }
8375
8423
  .k-animation-container {
8376
- @include border-bottom-radius-only( $border-radius );
8424
+ @include border-bottom-radius-only( $kendo-border-radius-md );
8377
8425
 
8378
8426
  .k-popup {}
8379
8427
  }
@@ -8431,7 +8479,7 @@ $popup-shadow: 0 2px 4px -1px rgba( $elevation, .2 ), 0 4px 5px 0 rgba( $elevati
8431
8479
  }
8432
8480
 
8433
8481
  .k-animation-container {
8434
- @include border-bottom-radius-only( $border-radius );
8482
+ @include border-bottom-radius-only( $kendo-border-radius );
8435
8483
  }
8436
8484
 
8437
8485
  }
@@ -8572,21 +8620,21 @@ $popup-shadow: 0 2px 4px -1px rgba( $elevation, .2 ), 0 4px 5px 0 rgba( $elevati
8572
8620
  $badge-padding-x: $padding-y !default;
8573
8621
  $badge-padding-y: $badge-padding-x !default;
8574
8622
  $badge-border-width: 1px !default;
8575
- $badge-border-radius: $border-radius !default;
8623
+ $badge-border-radius: $kendo-border-radius-md !default;
8576
8624
  $badge-font-size: $font-size-sm !default;
8577
8625
  $badge-line-height: 1 !default;
8578
8626
 
8579
8627
  $badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
8580
8628
  $badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
8581
8629
  $badge-border-width-sm: $badge-border-width !default;
8582
- $badge-border-radius-sm: $border-radius-sm !default;
8630
+ $badge-border-radius-sm: $kendo-border-radius-sm !default;
8583
8631
  $badge-font-size-sm: $font-size-xs !default;
8584
8632
  $badge-line-height-sm: 1 !default;
8585
8633
 
8586
8634
  $badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
8587
8635
  $badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
8588
8636
  $badge-border-width-lg: $badge-border-width !default;
8589
- $badge-border-radius-lg: $border-radius-lg !default;
8637
+ $badge-border-radius-lg: $kendo-border-radius-lg !default;
8590
8638
  $badge-font-size-lg: $font-size !default;
8591
8639
  $badge-line-height-lg: 1 !default;
8592
8640
 
@@ -8904,8 +8952,19 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
8904
8952
  /// @group button
8905
8953
  $kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
8906
8954
 
8955
+ /// Horizontal padding of the arrow button.
8956
+ /// @group button
8907
8957
  $kendo-button-arrow-padding-x: map-get( $spacing, 1 ) !default;
8958
+ $kendo-button-arrow-padding-x-sm: map-get( $spacing, 1 ) !default;
8959
+ $kendo-button-arrow-padding-x-md: map-get( $spacing, 1 ) !default;
8960
+ $kendo-button-arrow-padding-x-lg: map-get( $spacing, 1 ) !default;
8961
+
8962
+ /// Vertical padding of the arrow button.
8963
+ /// @group button
8908
8964
  $kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
8965
+ $kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
8966
+ $kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
8967
+ $kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
8909
8968
 
8910
8969
  /// Theme colors map for the button.
8911
8970
  /// @group button
@@ -9069,6 +9128,7 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
9069
9128
  box-sizing: border-box;
9070
9129
  border-width: $kendo-button-border-width;
9071
9130
  border-style: solid;
9131
+ border-radius: $kendo-button-border-radius;
9072
9132
  color: inherit;
9073
9133
  background: none;
9074
9134
  font-family: $kendo-button-font-family;
@@ -9283,6 +9343,18 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
9283
9343
  aspect-ratio: auto;
9284
9344
  flex: none;
9285
9345
 
9346
+ &.k-button-sm {
9347
+ padding: $kendo-button-arrow-padding-y-sm $kendo-button-arrow-padding-x-sm;
9348
+ }
9349
+
9350
+ &.k-button-md {
9351
+ padding: $kendo-button-arrow-padding-y-md $kendo-button-arrow-padding-x-md;
9352
+ }
9353
+
9354
+ &.k-button-lg {
9355
+ padding: $kendo-button-arrow-padding-y-lg $kendo-button-arrow-padding-x-lg;
9356
+ }
9357
+
9286
9358
  .k-button-icon {
9287
9359
  min-width: 0;
9288
9360
  }
@@ -10178,7 +10250,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
10178
10250
  position: relative;
10179
10251
  z-index: 1;
10180
10252
  overflow: hidden;
10181
- text-overflow: clip;
10253
+ text-overflow: ellipsis;
10182
10254
  -webkit-appearance: none;
10183
10255
 
10184
10256
  // Hide clear icon
@@ -10217,7 +10289,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
10217
10289
  .k-input-value-text {
10218
10290
  flex: 1;
10219
10291
  overflow: hidden;
10220
- text-overflow: clip;
10292
+ text-overflow: ellipsis;
10221
10293
  }
10222
10294
  .k-input-value-text::before {
10223
10295
  content: "\200b";
@@ -12326,6 +12398,8 @@ $kendo-chip-list-sizes: (
12326
12398
 
12327
12399
  // Chip content
12328
12400
  .k-chip-content {
12401
+ padding: .5em 0;
12402
+ margin: -.5em 0;
12329
12403
  min-width: 0;
12330
12404
  display: flex;
12331
12405
  flex-flow: row nowrap;
@@ -12649,7 +12723,7 @@ $kendo-chip-list-sizes: (
12649
12723
  // #endregion
12650
12724
  // #region @import "_variables.scss"; -> packages/material/scss/color-preview/_variables.scss
12651
12725
  // Color Preview
12652
- $color-preview-border-radius: $border-radius !default;
12726
+ $color-preview-border-radius: $kendo-border-radius-md !default;
12653
12727
  $color-preview-border-width: 1px !default;
12654
12728
  $color-preview-bg: null !default;
12655
12729
  $color-preview-text: null !default;
@@ -12817,7 +12891,7 @@ $loader-secondary-bg: #000000 !default;
12817
12891
  $loader-container-panel-border-width: 1px !default;
12818
12892
  $loader-container-panel-border-style: solid !default;
12819
12893
  $loader-container-panel-border-color: $component-border !default;
12820
- $loader-container-panel-border-radius: $border-radius !default;
12894
+ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
12821
12895
  $loader-container-panel-bg: $white !default;
12822
12896
 
12823
12897
  $loader-container-padding-sm: map-get( $spacing, 4 ) !default;
@@ -13345,7 +13419,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
13345
13419
  // #region @import "_variables.scss"; -> packages/material/scss/skeleton/_variables.scss
13346
13420
  // Skeleton
13347
13421
  $skeleton-text-transform: scale( 1, .6 ) !default;
13348
- $skeleton-text-border-radius: $border-radius !default;
13422
+ $skeleton-text-border-radius: $kendo-border-radius-md !default;
13349
13423
 
13350
13424
  $skeleton-rect-border-radius: 0 !default;
13351
13425
 
@@ -13500,7 +13574,7 @@ $tooltip-padding-y: ($padding-y * .75) !default;
13500
13574
  $tooltip-padding-x: ($padding-x / 2) !default;
13501
13575
  $tooltip-max-width: null !default;
13502
13576
  $tooltip-border-width: 0px !default;
13503
- $tooltip-border-radius: $border-radius !default;
13577
+ $tooltip-border-radius: $kendo-border-radius-md !default;
13504
13578
 
13505
13579
  $tooltip-font-family: $font-family !default;
13506
13580
  $tooltip-font-size: $font-size-sm !default;
@@ -15022,11 +15096,6 @@ $fieldset-legend-border: null !default;
15022
15096
  display: inline-flex;
15023
15097
  width: 100%;
15024
15098
  }
15025
- .k-daterangepicker {
15026
- width: 100%;
15027
- flex-flow: column nowrap;
15028
- gap: 0;
15029
- }
15030
15099
  }
15031
15100
 
15032
15101
  // Form Buttons Container
@@ -16006,7 +16075,7 @@ $progressbar-chunk-border: $component-bg !default;
16006
16075
 
16007
16076
  // Base
16008
16077
  .k-progressbar {
16009
- @include border-radius( $border-radius );
16078
+ @include border-radius( $kendo-border-radius );
16010
16079
  --kendo-progressbar-progress: 0;
16011
16080
  border-width: $progressbar-border-width;
16012
16081
  border-style: solid;
@@ -17500,7 +17569,7 @@ $slider-disabled-opacity: .65 !default;
17500
17569
 
17501
17570
  .k-slider-track,
17502
17571
  .k-slider-selection {
17503
- @include border-radius( $border-radius );
17572
+ @include border-radius( $kendo-border-radius );
17504
17573
  }
17505
17574
 
17506
17575
  .k-slider-track {
@@ -18115,6 +18184,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18115
18184
  line-height: $calendar-navigation-item-height;
18116
18185
  cursor: pointer;
18117
18186
  padding: 0 1em;
18187
+ overflow: hidden;
18188
+ white-space: nowrap;
18189
+ text-overflow: clip;
18118
18190
  }
18119
18191
  }
18120
18192
 
@@ -19313,7 +19385,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
19313
19385
 
19314
19386
  $colorgradient-width: 294px !default;
19315
19387
  $colorgradient-border-width: 1px !default;
19316
- $colorgradient-border-radius: $border-radius !default;
19388
+ $colorgradient-border-radius: $kendo-border-radius-md !default;
19317
19389
  $colorgradient-padding-y: $colorgradient-spacer !default;
19318
19390
  $colorgradient-padding-x: $colorgradient-padding-y !default;
19319
19391
  $colorgradient-gap: $colorgradient-spacer !default;
@@ -19327,7 +19399,7 @@ $colorgradient-border: $component-border !default;
19327
19399
  $colorgradient-focus-border: $hovered-border !default;
19328
19400
  $colorgradient-focus-shadow: $box-shadow-depth-2 !default;
19329
19401
 
19330
- $colorgradient-canvas-border-radius: $border-radius !default;
19402
+ $colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
19331
19403
  $colorgradient-canvas-gap: $colorgradient-spacer !default;
19332
19404
  $colorgradient-canvas-rectangle-height: 180px !default;
19333
19405
 
@@ -19499,6 +19571,10 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
19499
19571
  .k-numerictextbox {
19500
19572
  width: $colorgradient-input-width;
19501
19573
  }
19574
+
19575
+ .k-input-inner {
19576
+ text-overflow: clip;
19577
+ }
19502
19578
  }
19503
19579
 
19504
19580
  // Contrast
@@ -19680,7 +19756,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
19680
19756
 
19681
19757
  $coloreditor-min-width: 294px !default;
19682
19758
  $coloreditor-border-width: 1px !default;
19683
- $coloreditor-border-radius: $border-radius !default;
19759
+ $coloreditor-border-radius: $kendo-border-radius-md !default;
19684
19760
  $coloreditor-font-family: $font-family !default;
19685
19761
  $coloreditor-font-size: $font-size !default;
19686
19762
  $coloreditor-line-height: $line-height !default;
@@ -23214,7 +23290,7 @@ $appbar-bottom-box-shadow: 0px -2px 3px rgba(0, 0, 0, .24) !default;
23214
23290
  $kendo-fab-border-width: 0px !default;
23215
23291
  /// Border radius of the FAB.
23216
23292
  /// @group floating-action-button
23217
- $kendo-fab-border-radius: $border-radius !default;
23293
+ $kendo-fab-border-radius: $kendo-border-radius-md !default;
23218
23294
 
23219
23295
  /// Font family of the FAB.
23220
23296
  /// @group floating-action-button
@@ -24830,6 +24906,7 @@ $notification-border: $component-border !default;
24830
24906
  @function notification-theme( $colors ) {
24831
24907
  $_theme: ();
24832
24908
 
24909
+ // sass-lint:disable-block indentation
24833
24910
  @each $name, $color in $colors {
24834
24911
  $_theme: map-merge(( $name: (
24835
24912
  color: contrast-wcag( $color ),
@@ -25022,7 +25099,7 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
25022
25099
  $card-padding-x: map-get( $spacing, lg ) !default;
25023
25100
  $card-padding-y: map-get( $spacing, md ) !default;
25024
25101
  $card-border-width: 0px !default;
25025
- $card-border-radius: $border-radius !default;
25102
+ $card-border-radius: $kendo-border-radius-md !default;
25026
25103
  $card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
25027
25104
  $card-font-family: $font-family !default;
25028
25105
  $card-font-size: $font-size !default;
@@ -26157,7 +26234,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
26157
26234
 
26158
26235
  $breadcrumb-link-padding-x: ( $padding-x * 1.25 ) / 2 !default;
26159
26236
  $breadcrumb-link-padding-y: $padding-y !default;
26160
- $breadcrumb-link-border-radius: $border-radius !default;
26237
+ $breadcrumb-link-border-radius: $kendo-border-radius-md !default;
26161
26238
 
26162
26239
  $breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
26163
26240
  $breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
@@ -26700,6 +26777,11 @@ $pager-dropdown-width: 5em !default;
26700
26777
  width: $pager-dropdown-width;
26701
26778
  }
26702
26779
 
26780
+ .k-input-inner,
26781
+ .k-input-value-text {
26782
+ text-overflow: clip;
26783
+ }
26784
+
26703
26785
  .k-rtl &,
26704
26786
  [dir="rtl"] & {
26705
26787
  .k-dropdown-list,
@@ -27160,6 +27242,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
27160
27242
  display: flex;
27161
27243
  align-items: center;
27162
27244
  justify-content: center;
27245
+ flex: none;
27163
27246
  position: relative;
27164
27247
  z-index: 1;
27165
27248
  overflow: visible;
@@ -27193,7 +27276,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
27193
27276
 
27194
27277
  // Step label
27195
27278
  .k-step-label {
27196
- max-width: 10em;
27279
+ max-width: clamp(100%, 10em, 100%);
27197
27280
  display: inline-flex;
27198
27281
  flex-wrap: wrap;
27199
27282
  align-items: center;
@@ -29466,7 +29549,7 @@ $tilelayout-card-border-width: 1px !default;
29466
29549
  $tilelayout-card-focus-shadow: $card-focus-shadow !default;
29467
29550
 
29468
29551
  $tilelayout-hint-border-width: 1px !default;
29469
- $tilelayout-hint-border-radius: $border-radius !default;
29552
+ $tilelayout-hint-border-radius: $kendo-border-radius-md !default;
29470
29553
 
29471
29554
  $tilelayout-bg: if( $dark-theme, $dark, $light) !default;
29472
29555
 
@@ -30327,7 +30410,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
30327
30410
 
30328
30411
  $grid-hierarchy-col-width: ($icon-size * 2) !default;
30329
30412
 
30330
- $grid-group-indicator-border-radius: $border-radius !default;
30413
+ $grid-group-indicator-border-radius: $kendo-border-radius-md !default;
30331
30414
  $grid-group-indicator-gap: $table-cell-padding-y !default;
30332
30415
 
30333
30416
  $grid-grouping-row-border-top: 1px !default;
@@ -32939,9 +33022,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
32939
33022
  $spreadsheet-insert-image-dialog-preview-height: 230px !default;
32940
33023
  $spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
32941
33024
  $spreadsheet-insert-image-dialog-preview-border: $component-border !default;
32942
- $spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
33025
+ $spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
32943
33026
  $spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
32944
- $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $border-radius !default;
33027
+ $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
32945
33028
  $spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
32946
33029
 
32947
33030
  $spreadsheet-drawing-handle-width: 6px !default;
@@ -32951,7 +33034,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
32951
33034
  $spreadsheet-drawing-handle-outline-color: $primary !default;
32952
33035
  $spreadsheet-drawing-handle-border-color: $primary !default;
32953
33036
  $spreadsheet-drawing-handle-bg: $primary !default;
32954
- $spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
33037
+ $spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
32955
33038
 
32956
33039
  $spreadsheet-drawing-outline-style: solid !default;
32957
33040
  $spreadsheet-drawing-outline-width: 2px !default;
@@ -33060,10 +33143,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
33060
33143
  min-width: $form-line-height * 1em;
33061
33144
  }
33062
33145
 
33063
- .k-input,
33064
- .k-picker {
33065
- width: 5em;
33066
- }
33067
33146
  .k-color-picker {
33068
33147
  width: min-content;
33069
33148
  }
@@ -33538,7 +33617,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
33538
33617
  box-sizing: border-box;
33539
33618
  }
33540
33619
  .k-spreadsheet-filter {
33541
- @include border-radius( $border-radius );
33620
+ @include border-radius( $kendo-border-radius );
33542
33621
  line-height: 1;
33543
33622
  position: absolute;
33544
33623
  cursor: pointer;
@@ -34369,7 +34448,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
34369
34448
  $pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
34370
34449
  $pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
34371
34450
  $pivotgrid-calculated-field-border-width: 1px !default;
34372
- $pivotgrid-calculated-field-border-radius: $border-radius !default;
34451
+ $pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
34373
34452
  $pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
34374
34453
 
34375
34454
  $pivotgrid-calculated-field-bg: $component-bg !default;
@@ -36329,7 +36408,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
36329
36408
 
36330
36409
  $taskboard-column-width: 320px !default;
36331
36410
  $taskboard-column-border-width: 1px !default;
36332
- $taskboard-column-border-radius: $border-radius !default;
36411
+ $taskboard-column-border-radius: $kendo-border-radius-md !default;
36333
36412
  $taskboard-column-bg: if( $dark-theme, $dark, $light) !default;
36334
36413
  $taskboard-column-text: null !default;
36335
36414
  $taskboard-column-border: transparent !default;
@@ -36881,7 +36960,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
36881
36960
 
36882
36961
  // Inline editor
36883
36962
  .k-editor-inline {
36884
- @include border-radius( $border-radius );
36963
+ @include border-radius( $kendo-border-radius-md );
36885
36964
  padding: $padding-y-sm $padding-x-sm;
36886
36965
  border: 1px solid transparent;
36887
36966
  word-wrap: break-word;
@@ -37302,7 +37381,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
37302
37381
  white-space: nowrap;
37303
37382
  overflow: hidden;
37304
37383
  cursor: pointer;
37305
- @include border-radius( $border-radius );
37384
+ @include border-radius( $kendo-border-radius-md );
37306
37385
 
37307
37386
  .k-i-file,
37308
37387
  .k-i-folder {
@@ -37823,6 +37902,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
37823
37902
  box-sizing: border-box;
37824
37903
  flex: none;
37825
37904
  overflow-y: auto;
37905
+
37906
+ .k-input-inner,
37907
+ .k-input-value-text {
37908
+ text-overflow: clip;
37909
+ }
37826
37910
  }
37827
37911
 
37828
37912
 
@@ -38109,6 +38193,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
38109
38193
  $gantt-action-on-offset-text: #000000 !default;
38110
38194
  $gantt-offset-resize-handler-top: 50% !default;
38111
38195
 
38196
+ $gantt-validation-tooltip-width: 200px !default;
38197
+ $gantt-validation-tooltip-border: #656565 !default;
38198
+ $gantt-validation-tooltip-valid-border: $success !default;
38199
+ $gantt-validation-tooltip-invalid-border: $error !default;
38200
+
38112
38201
  // #endregion
38113
38202
  // #region @import "_layout.scss"; -> packages/material/scss/gantt/_layout.scss
38114
38203
  // #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
@@ -38620,7 +38709,7 @@ $gantt-offset-resize-handler-top: 50% !default;
38620
38709
  // Single task
38621
38710
  .k-single-wrap {}
38622
38711
  .k-task-single {
38623
- @include border-radius( $border-radius );
38712
+ @include border-radius( $kendo-border-radius-md );
38624
38713
  border-width: $gantt-task-border-width;
38625
38714
  border-style: solid;
38626
38715
  box-sizing: border-box;
@@ -38653,7 +38742,7 @@ $gantt-offset-resize-handler-top: 50% !default;
38653
38742
  }
38654
38743
  }
38655
38744
  .k-task-complete {
38656
- @include border-radius( $border-radius );
38745
+ @include border-radius( $kendo-border-radius-md );
38657
38746
  width: 20%;
38658
38747
  position: absolute;
38659
38748
  z-index: 1;
@@ -38723,7 +38812,6 @@ $gantt-offset-resize-handler-top: 50% !default;
38723
38812
  }
38724
38813
 
38725
38814
  // Planned position
38726
-
38727
38815
  .k-gantt-planned {
38728
38816
  .k-gantt-dependencies,
38729
38817
  .k-task-dot,
@@ -38754,7 +38842,6 @@ $gantt-offset-resize-handler-top: 50% !default;
38754
38842
  }
38755
38843
 
38756
38844
  // Planned element
38757
-
38758
38845
  .k-task-planned {
38759
38846
  margin: 0 0 $gantt-planned-margin-y;
38760
38847
  line-height: $gantt-planned-line-height;
@@ -38787,7 +38874,6 @@ $gantt-offset-resize-handler-top: 50% !default;
38787
38874
  }
38788
38875
 
38789
38876
  // Planned Tooltip
38790
-
38791
38877
  .k-planned-tooltip {
38792
38878
  .k-task-content {
38793
38879
  display: block;
@@ -38795,7 +38881,6 @@ $gantt-offset-resize-handler-top: 50% !default;
38795
38881
  }
38796
38882
 
38797
38883
  // Delay offset
38798
-
38799
38884
  .k-task-offset-wrap .k-task-content .k-resize-e {
38800
38885
  display: none;
38801
38886
  }
@@ -38826,6 +38911,36 @@ $gantt-offset-resize-handler-top: 50% !default;
38826
38911
  .k-task-offset:hover .k-resize-handle {
38827
38912
  visibility: visible;
38828
38913
  }
38914
+
38915
+
38916
+ // Dependency Validation Tooltip
38917
+ .k-gantt-tooltip-validation {
38918
+ max-width: $gantt-validation-tooltip-width;
38919
+ display: block;
38920
+
38921
+ &::before {
38922
+ content: "";
38923
+ width: 4px;
38924
+ height: 100%;
38925
+ position: absolute;
38926
+ top: 0;
38927
+ left: 0;
38928
+ }
38929
+ }
38930
+ .k-gantt-tooltip-validation-row {
38931
+ display: flex;
38932
+ flex-direction: row;
38933
+ justify-content: space-between;
38934
+ }
38935
+ .k-gantt-tooltip-validation-label {
38936
+ display: inline-flex;
38937
+ white-space: nowrap;
38938
+ overflow: hidden;
38939
+ text-overflow: ellipsis;
38940
+ }
38941
+ .k-gantt-tooltip-validation-value {
38942
+ font-weight: $font-weight-bold;
38943
+ }
38829
38944
  }
38830
38945
 
38831
38946
  @include exports("gantt/export") {
@@ -38871,7 +38986,8 @@ $gantt-offset-resize-handler-top: 50% !default;
38871
38986
 
38872
38987
  @include exports("gantt/rtl") {
38873
38988
 
38874
- .k-rtl {
38989
+ .k-rtl,
38990
+ [dir="rtl"] {
38875
38991
 
38876
38992
  .k-gantt-rows,
38877
38993
  .k-gantt-columns {
@@ -38950,6 +39066,11 @@ $gantt-offset-resize-handler-top: 50% !default;
38950
39066
  .k-gantt-timeline .k-milestone-wrap .k-task-start {
38951
39067
  right: $gantt-rtl-milestone-dot-start-margin-x;
38952
39068
  }
39069
+
39070
+ .k-gantt-tooltip-validation::before {
39071
+ left: auto;
39072
+ right: 0;
39073
+ }
38953
39074
  }
38954
39075
  }
38955
39076
 
@@ -39218,7 +39339,6 @@ $gantt-offset-resize-handler-top: 50% !default;
39218
39339
  }
39219
39340
 
39220
39341
  // Tooltips
39221
-
39222
39342
  .k-offset-tooltip-delayed {
39223
39343
  @include fill(
39224
39344
  $bg: $gantt-delayed-bg
@@ -39230,6 +39350,22 @@ $gantt-offset-resize-handler-top: 50% !default;
39230
39350
  $bg: $gantt-planned-bg
39231
39351
  );
39232
39352
  }
39353
+
39354
+ .k-gantt-tooltip-validation {
39355
+ &::before {
39356
+ background-color: $gantt-validation-tooltip-border;
39357
+ }
39358
+ }
39359
+ .k-gantt-tooltip-valid {
39360
+ &::before {
39361
+ background-color: $gantt-validation-tooltip-valid-border;
39362
+ }
39363
+ }
39364
+ .k-gantt-tooltip-invalid {
39365
+ &::before {
39366
+ background-color: $gantt-validation-tooltip-invalid-border;
39367
+ }
39368
+ }
39233
39369
  }
39234
39370
 
39235
39371
  // #endregion
@@ -39315,7 +39451,7 @@ $scheduler-footer-border: null !default;
39315
39451
  $scheduler-footer-gradient: null !default;
39316
39452
 
39317
39453
  $scheduler-event-min-height: 25px !default;
39318
- $scheduler-event-border-radius: $border-radius !default;
39454
+ $scheduler-event-border-radius: $kendo-border-radius-md !default;
39319
39455
  $scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y-sm}) ) !default;
39320
39456
 
39321
39457
  $scheduler-event-bg: $primary !default;
@@ -39382,7 +39518,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
39382
39518
 
39383
39519
  $scheduler-tooltip-event-padding-x: $padding-x-sm !default;
39384
39520
  $scheduler-tooltip-event-padding-y: map-get( $spacing, 2 ) !default;
39385
- $scheduler-tooltip-event-border-radius: $border-radius !default;
39521
+ $scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
39386
39522
  $scheduler-tooltip-event-gap: $padding-x-sm !default;
39387
39523
 
39388
39524
  $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
@@ -39785,7 +39921,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
39785
39921
  // Appointments
39786
39922
  kendo-scheduler .k-event,
39787
39923
  .k-event {
39788
- @include border-radius( $border-radius );
39924
+ @include border-radius( $kendo-border-radius );
39789
39925
  min-height: $scheduler-event-min-height;
39790
39926
  box-sizing: border-box;
39791
39927
  border-width: 0;
@@ -42027,7 +42163,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
42027
42163
  display: inline-block;
42028
42164
  text-align: center;
42029
42165
  padding: $timeline-flag-padding-y $timeline-flag-padding-x;
42030
- border-radius: $border-radius;
42166
+ border-radius: $kendo-border-radius;
42031
42167
  line-height: $timeline-flag-line-height;
42032
42168
  min-width: $timeline-flag-min-width;
42033
42169
  max-width: $timeline-flag-max-width;
@@ -42091,7 +42227,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
42091
42227
  }
42092
42228
 
42093
42229
  &::-webkit-scrollbar-thumb {
42094
- border-radius: $border-radius;
42230
+ border-radius: $kendo-border-radius;
42095
42231
  }
42096
42232
  }
42097
42233
  }
@@ -42135,7 +42271,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
42135
42271
  height: 100%;
42136
42272
  width: $timeline-track-size;
42137
42273
  transform: translateX(-50%);
42138
- border-radius: $border-radius-lg;
42274
+ border-radius: $kendo-border-radius-lg;
42139
42275
  }
42140
42276
 
42141
42277
  .k-timeline-flag-wrap {
@@ -43524,7 +43660,7 @@ $treemap-line-height: $line-height !default;
43524
43660
  }
43525
43661
 
43526
43662
  .k-chart-tooltip {
43527
- @include border-radius( $border-radius );
43663
+ @include border-radius( $kendo-border-radius-md );
43528
43664
  font-size: $chart-tooltip-font-size;
43529
43665
  line-height: $line-height;
43530
43666
  padding: $tooltip-padding-y $tooltip-padding-x;
@@ -43632,7 +43768,7 @@ $treemap-line-height: $line-height !default;
43632
43768
  }
43633
43769
 
43634
43770
  .k-navigator-hint .k-scroll {
43635
- @include border-radius( $border-radius );
43771
+ @include border-radius( $kendo-border-radius-md );
43636
43772
  position: absolute;
43637
43773
  height: 4px;
43638
43774
  }
@@ -43859,7 +43995,7 @@ $treemap-line-height: $line-height !default;
43859
43995
  base: $base-bg,
43860
43996
  background: $chart-bg,
43861
43997
 
43862
- border-radius: $border-radius,
43998
+ border-radius: $kendo-border-radius-md,
43863
43999
 
43864
44000
  normal-background: $base-bg,
43865
44001
  normal-text-color: $base-text,
@@ -44388,7 +44524,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
44388
44524
  $orgchart-node-group-padding-y: $orgchart-spacer !default;
44389
44525
  $orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
44390
44526
  $orgchart-node-group-border-width: 1px !default;
44391
- $orgchart-node-group-border-radius: $border-radius !default;
44527
+ $orgchart-node-group-border-radius: $kendo-border-radius-md !default;
44392
44528
  $orgchart-node-group-bg: if( $dark-theme, $dark, $light) !default;
44393
44529
  $orgchart-node-group-text: $base-text !default;
44394
44530
  $orgchart-node-group-border: $base-border !default;