@progress/kendo-theme-classic 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 (37) hide show
  1. package/dist/all.css +309 -58
  2. package/dist/all.scss +272 -136
  3. package/lib/swatches/classic-green-dark.json +2 -1
  4. package/lib/swatches/classic-green.json +2 -1
  5. package/lib/swatches/classic-main-dark.json +2 -1
  6. package/lib/swatches/classic-main.json +2 -1
  7. package/lib/swatches/classic-opal-dark.json +2 -1
  8. package/lib/swatches/classic-opal.json +2 -1
  9. package/lib/swatches/classic-silver-dark.json +2 -1
  10. package/lib/swatches/classic-silver.json +2 -1
  11. package/package.json +4 -4
  12. package/scss/_variables.scss +5 -4
  13. package/scss/badge/_variables.scss +3 -3
  14. package/scss/bottom-navigation/_variables.scss +1 -1
  15. package/scss/breadcrumb/_variables.scss +1 -1
  16. package/scss/button/_variables.scss +11 -0
  17. package/scss/calendar/_variables.scss +1 -1
  18. package/scss/card/_variables.scss +1 -1
  19. package/scss/color-preview/_variables.scss +1 -1
  20. package/scss/coloreditor/_variables.scss +1 -1
  21. package/scss/colorgradient/_variables.scss +2 -2
  22. package/scss/fab/_variables.scss +1 -1
  23. package/scss/gantt/_variables.scss +5 -0
  24. package/scss/listgroup/_variables.scss +1 -1
  25. package/scss/loader/_variables.scss +1 -1
  26. package/scss/notification/_variables.scss +2 -1
  27. package/scss/orgchart/_variables.scss +1 -1
  28. package/scss/pivotgrid/_variables.scss +1 -1
  29. package/scss/scheduler/_variables.scss +2 -2
  30. package/scss/skeleton/_variables.scss +1 -1
  31. package/scss/spreadsheet/_variables.scss +3 -3
  32. package/scss/tabstrip/_variables.scss +1 -1
  33. package/scss/taskboard/_variables.scss +1 -1
  34. package/scss/tilelayout/_variables.scss +1 -1
  35. package/scss/tooltip/_variables.scss +1 -1
  36. package/scss/treeview/_variables.scss +1 -1
  37. package/scss/utils/_border.scss +4 -4
package/dist/all.scss CHANGED
@@ -1011,9 +1011,10 @@ $padding-x-lg: $padding-x * 1.5 !default;
1011
1011
  $padding-y-lg: $padding-y * 1.5 !default;
1012
1012
 
1013
1013
  /// Border radius for all components.
1014
- $border-radius: map-get( $spacing, 1 ) !default;
1015
- $border-radius-sm: $border-radius / 2 !default;
1016
- $border-radius-lg: $border-radius * 2 !default;
1014
+ $kendo-border-radius: map-get( $spacing, 1 ) !default;
1015
+ $kendo-border-radius-sm: $kendo-border-radius / 2 !default;
1016
+ $kendo-border-radius-md: $kendo-border-radius !default;
1017
+ $kendo-border-radius-lg: $kendo-border-radius * 2 !default;
1017
1018
 
1018
1019
  $panel-padding-x: $padding-x !default;
1019
1020
  $panel-padding-y: $padding-y !default;
@@ -1309,7 +1310,7 @@ $invalid-shadow: null !default;
1309
1310
  $drag-clue-padding-x: $padding-x !default;
1310
1311
  $drag-clue-padding-y: $padding-y !default;
1311
1312
  $drag-clue-border-width: 1px !default;
1312
- $drag-clue-border-radius: $border-radius !default;
1313
+ $drag-clue-border-radius: $kendo-border-radius-md !default;
1313
1314
  $drag-clue-font-size: $font-size !default;
1314
1315
  $drag-clue-font-family: $font-family !default;
1315
1316
  $drag-clue-line-height: $line-height !default;
@@ -1712,7 +1713,7 @@ $display4-letter-spacing: null !default;
1712
1713
  // Panels
1713
1714
  .k-block,
1714
1715
  .k-panel {
1715
- @include border-radius( $border-radius );
1716
+ @include border-radius( $kendo-border-radius-md );
1716
1717
  @include fill(
1717
1718
  $panel-text,
1718
1719
  $panel-bg,
@@ -1724,7 +1725,7 @@ $display4-letter-spacing: null !default;
1724
1725
  box-sizing: border-box;
1725
1726
 
1726
1727
  > .k-header {
1727
- @include border-top-radius( $border-radius );
1728
+ @include border-top-radius( $kendo-border-radius-md );
1728
1729
  @include fill(
1729
1730
  $header-text,
1730
1731
  $header-bg,
@@ -3296,11 +3297,11 @@ $display4-letter-spacing: null !default;
3296
3297
  // Component
3297
3298
  // #region @import "_border.scss"; -> packages/classic/scss/utils/_border.scss
3298
3299
  $utils-border-radius: (
3299
- default: map-get( $spacing, 1 ),
3300
+ default: $kendo-border-radius-md,
3300
3301
  0: 0,
3301
- sm: map-get( $spacing, 1) / 2,
3302
- md: map-get( $spacing, 1),
3303
- lg: map-get( $spacing, 1) * 1.5,
3302
+ sm: $kendo-border-radius-sm,
3303
+ md: $kendo-border-radius-md,
3304
+ lg: $kendo-border-radius-lg,
3304
3305
  full: 9999px
3305
3306
  ) !default;
3306
3307
 
@@ -3348,11 +3349,11 @@ $utils-border-radius: (
3348
3349
  ) !default;
3349
3350
 
3350
3351
  $utils-border-radius: (
3351
- default: map-get( $spacing, 1 ),
3352
+ default: $kendo-border-radius-md,
3352
3353
  0: 0,
3353
- sm: ( map-get( $spacing, 1 ) / 4 ),
3354
- md: ( map-get( $spacing, 1 ) / 2 ),
3355
- lg: map-get( $spacing, 1 ),
3354
+ sm: $kendo-border-radius-sm,
3355
+ md: $kendo-border-radius-md,
3356
+ lg: $kendo-border-radius-lg,
3356
3357
  full: 9999px
3357
3358
  ) !default;
3358
3359
 
@@ -3476,48 +3477,48 @@ $utils-border-radius: (
3476
3477
  /// @name k-d-flex
3477
3478
  /// @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.
3478
3479
  /// @group flex-layout
3479
- .k-d-flex { display: flex; }
3480
- .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
3480
+ .k-d-flex { display: flex; }
3481
+ .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
3481
3482
  /// @name k-d-inline-flex
3482
3483
  /// @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.
3483
3484
  /// @group flex-layout
3484
- .k-d-inline-flex { display: inline-flex; }
3485
- .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
3485
+ .k-d-inline-flex { display: inline-flex; }
3486
+ .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
3486
3487
  /// @name k-d-flex-row
3487
3488
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
3488
3489
  /// @group flex-layout
3489
- .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
3490
- .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3490
+ .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
3491
+ .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3491
3492
  /// @name k-d-flex-col
3492
3493
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
3493
3494
  /// @group flex-layout
3494
- .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
3495
- .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3495
+ .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
3496
+ .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3496
3497
  /// @name k-flex-row
3497
3498
  /// @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`.
3498
3499
  /// @group flex-layout
3499
- .k-flex-row { flex-direction: row; }
3500
- .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
3500
+ .k-flex-row { flex-direction: row; }
3501
+ .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
3501
3502
  /// @name k-flex-row-reverse
3502
3503
  /// @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`.
3503
3504
  /// @group flex-layout
3504
- .k-flex-row-reverse { flex-direction: row-reverse; }
3505
- .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
3505
+ .k-flex-row-reverse { flex-direction: row-reverse; }
3506
+ .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
3506
3507
  /// @name k-flex-col
3507
3508
  /// @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.
3508
3509
  /// @group flex-layout
3509
- .k-flex-col { flex-direction: column; }
3510
- .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
3510
+ .k-flex-col { flex-direction: column; }
3511
+ .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
3511
3512
  /// @name k-flex-col-reverse
3512
3513
  /// @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.
3513
3514
  /// @group flex-layout
3514
- .k-flex-col-reverse { flex-direction: column-reverse; }
3515
- .\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
3515
+ .k-flex-col-reverse { flex-direction: column-reverse; }
3516
+ .\!k-flex-col-reverse { flex-direction: column-reverse !important; } // sass-lint:disable-line no-important class-name-format
3516
3517
 
3517
3518
 
3518
3519
  // Aliases
3519
- .k-flex-column { @extend .k-flex-col; }
3520
- .k-flex-column-reverse { @extend .k-flex-col-reverse; }
3520
+ .k-flex-column { @extend .k-flex-col; }
3521
+ .k-flex-column-reverse { @extend .k-flex-col-reverse; }
3521
3522
 
3522
3523
 
3523
3524
  // Flex wrap
@@ -3525,15 +3526,18 @@ $utils-border-radius: (
3525
3526
  /// @name k-flex-wrap
3526
3527
  /// @description This is equivalent to `flex-wrap: wrap`. It allows flex items to wrap as needed onto multiple lines, from top to bottom.
3527
3528
  /// @group flex-layout
3528
- .k-flex-wrap { flex-wrap: wrap; }
3529
+ .k-flex-wrap { flex-wrap: wrap; }
3530
+ .\!k-flex-wrap { flex-wrap: wrap !important; } // sass-lint:disable-line no-important class-name-format
3529
3531
  /// @name k-flex-nowrap
3530
3532
  /// @description This is equivalent to `flex-wrap: nowrap`. All flex items will be on one line.
3531
3533
  /// @group flex-layout
3532
- .k-flex-nowrap { flex-wrap: nowrap; }
3534
+ .k-flex-nowrap { flex-wrap: nowrap; }
3535
+ .\!k-flex-nowrap { flex-wrap: nowrap !important; } // sass-lint:disable-line no-important class-name-format
3533
3536
  /// @name k-flex-wrap-reverse
3534
3537
  /// @description This is equivalent to `flex-wrap: wrap-reverse`. It allows flex items to wrap as needed onto multiple lines, from bottom to top.
3535
3538
  /// @group flex-layout
3536
- .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
3539
+ .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
3540
+ .\!k-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } // sass-lint:disable-line no-important class-name-format
3537
3541
 
3538
3542
 
3539
3543
  // Flex, shrink, grow,
@@ -3541,80 +3545,116 @@ $utils-border-radius: (
3541
3545
  /// @name k-flex-initial
3542
3546
  /// @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.
3543
3547
  /// @group flex-layout
3544
- .k-flex-initial { flex: 0 1 auto; }
3548
+ .k-flex-initial { flex: 0 1 auto; }
3549
+ .\!k-flex-initial { flex: 0 1 auto !important; } // sass-lint:disable-line no-important class-name-format
3545
3550
  /// @name k-flex-1
3546
3551
  /// @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.
3547
3552
  /// @group flex-layout
3548
- .k-flex-1 { flex: 1 1 0%; }
3553
+ .k-flex-1 { flex: 1 1 0%; }
3554
+ .\!k-flex-1 { flex: 1 1 0% !important; } // sass-lint:disable-line no-important class-name-format
3549
3555
  /// @name k-flex-auto
3550
3556
  /// @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`.
3551
3557
  /// @group flex-layout
3552
- .k-flex-auto { flex: 1 1 auto; }
3558
+ .k-flex-auto { flex: 1 1 auto; }
3559
+ .\!k-flex-auto { flex: 1 1 auto !important; } // sass-lint:disable-line no-important class-name-format
3553
3560
  /// @name k-flex-none
3554
3561
  /// @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.
3555
3562
  /// @group flex-layout
3556
- .k-flex-none { flex: none; }
3563
+ .k-flex-none { flex: none; }
3564
+ .\!k-flex-none { flex: none !important; } // sass-lint:disable-line no-important class-name-format
3557
3565
  /// @name k-flex-grow
3558
3566
  /// @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.
3559
3567
  /// @group flex-layout
3560
- .k-flex-grow { flex-grow: 1; }
3568
+ .k-flex-grow { flex-grow: 1; }
3569
+ .\!k-flex-grow { flex-grow: 1 !important; } // sass-lint:disable-line no-important class-name-format
3561
3570
  /// @name k-flex-grow-0
3562
3571
  /// @description This is equivalent to `flex-grow: 0`. The item will not grow.
3563
3572
  /// @group flex-layout
3564
- .k-flex-grow-0 { flex-grow: 0; }
3573
+ .k-flex-grow-0 { flex-grow: 0; }
3574
+ .\!k-flex-grow-0 { flex-grow: 0 !important; } // sass-lint:disable-line no-important class-name-format
3565
3575
  /// @name k-flex-shrink
3566
3576
  /// @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.
3567
3577
  /// @group flex-layout
3568
- .k-flex-shrink { flex-shrink: 1; }
3578
+ .k-flex-shrink { flex-shrink: 1; }
3579
+ .\!k-flex-shrink { flex-shrink: 1 !important; } // sass-lint:disable-line no-important class-name-format
3569
3580
  /// @name k-flex-shrink-0
3570
3581
  /// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
3571
3582
  /// @group flex-layout
3572
- .k-flex-shrink-0 { flex-shrink: 0; }
3583
+ .k-flex-shrink-0 { flex-shrink: 0; }
3584
+ .\!k-flex-shrink-0 { flex-shrink: 0 !important; } // sass-lint:disable-line no-important class-name-format
3573
3585
  /// @name k-flex-basis-auto
3574
3586
  /// @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.
3575
3587
  /// @group flex-layout
3576
- .k-flex-basis-auto { flex-basis: auto; }
3588
+ .k-flex-basis-auto { flex-basis: auto; }
3589
+ .\!k-flex-basis-auto { flex-basis: auto !important; } // sass-lint:disable-line no-important class-name-format
3577
3590
  /// @name k-flex-basis-0
3578
3591
  /// @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.
3579
3592
  /// @group flex-layout
3580
- .k-flex-basis-0 { flex-basis: 0%; }
3593
+ .k-flex-basis-0 { flex-basis: 0%; }
3594
+ .\!k-flex-basis-0 { flex-basis: 0% !important; } // sass-lint:disable-line no-important class-name-format
3581
3595
 
3582
3596
 
3583
3597
  // Flex align
3584
- .k-align-items-start { align-items: flex-start; }
3585
- .k-align-items-end { align-items: flex-end; }
3586
- .k-align-items-center { align-items: center; }
3587
- .k-align-items-stretch { align-items: stretch; }
3588
- .k-align-items-baseline { align-items: baseline; }
3589
-
3590
- .k-align-content-start { align-content: flex-start; }
3591
- .k-align-content-end { align-content: flex-end; }
3592
- .k-align-content-center { align-content: center; }
3593
- .k-align-content-stretch { align-content: stretch; }
3594
- .k-align-content-baseline { align-content: baseline; }
3595
-
3596
- .k-align-self-start { align-self: flex-start; }
3597
- .k-align-self-end { align-self: flex-end; }
3598
- .k-align-self-center { align-self: center; }
3599
- .k-align-self-stretch { align-self: stretch; }
3600
- .k-align-self-baseline { align-self: baseline; }
3598
+ .k-align-items-start { align-items: flex-start; }
3599
+ .\!k-align-items-start { align-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3600
+ .k-align-items-end { align-items: flex-end; }
3601
+ .\!k-align-items-end { align-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3602
+ .k-align-items-center { align-items: center; }
3603
+ .\!k-align-items-center { align-items: center !important; } // sass-lint:disable-line no-important class-name-format
3604
+ .k-align-items-stretch { align-items: stretch; }
3605
+ .\!k-align-items-stretch { align-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
3606
+ .k-align-items-baseline { align-items: baseline; }
3607
+ .\!k-align-items-baseline { align-items: baseline !important; } // sass-lint:disable-line no-important class-name-format
3608
+
3609
+ .k-align-content-start { align-content: flex-start; }
3610
+ .\!k-align-content-start { align-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3611
+ .k-align-content-end { align-content: flex-end; }
3612
+ .\!k-align-content-end { align-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3613
+ .k-align-content-center { align-content: center; }
3614
+ .\!k-align-content-center { align-content: center !important; } // sass-lint:disable-line no-important class-name-format
3615
+ .k-align-content-stretch { align-content: stretch; }
3616
+ .\!k-align-content-stretch { align-content: stretch !important; } // sass-lint:disable-line no-important class-name-format
3617
+ .k-align-content-baseline { align-content: baseline; }
3618
+ .\!k-align-content-baseline { align-content: baseline !important; } // sass-lint:disable-line no-important class-name-format
3619
+
3620
+ .k-align-self-start { align-self: flex-start; }
3621
+ .\!k-align-self-start { align-self: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3622
+ .k-align-self-end { align-self: flex-end; }
3623
+ .\!k-align-self-end { align-self: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3624
+ .k-align-self-center { align-self: center; }
3625
+ .\!k-align-self-center { align-self: center !important; } // sass-lint:disable-line no-important class-name-format
3626
+ .k-align-self-stretch { align-self: stretch; }
3627
+ .\!k-align-self-stretch { align-self: stretch !important; } // sass-lint:disable-line no-important class-name-format
3628
+ .k-align-self-baseline { align-self: baseline; }
3629
+ .\!k-align-self-baseline { align-self: baseline !important; } // sass-lint:disable-line no-important class-name-format
3601
3630
 
3602
3631
 
3603
3632
  // Justify content
3604
- .k-justify-content-start { justify-content: flex-start; }
3605
- .k-justify-content-end { justify-content: flex-end; }
3606
- .k-justify-content-center { justify-content: center; }
3607
- .k-justify-content-between { justify-content: space-between; }
3608
- .k-justify-content-around { justify-content: space-around; }
3609
- .k-justify-content-evenly { justify-content: space-evenly; }
3610
- .k-justify-content-stretch > * { flex: 1 0 0%; }
3633
+ .k-justify-content-start { justify-content: flex-start; }
3634
+ .\!k-justify-content-start { justify-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3635
+ .k-justify-content-end { justify-content: flex-end; }
3636
+ .\!k-justify-content-end { justify-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3637
+ .k-justify-content-center { justify-content: center; }
3638
+ .\!k-justify-content-center { justify-content: center !important; } // sass-lint:disable-line no-important class-name-format
3639
+ .k-justify-content-between { justify-content: space-between; }
3640
+ .\!k-justify-content-between { justify-content: space-between !important; } // sass-lint:disable-line no-important class-name-format
3641
+ .k-justify-content-around { justify-content: space-around; }
3642
+ .\!k-justify-content-around { justify-content: space-around !important; } // sass-lint:disable-line no-important class-name-format
3643
+ .k-justify-content-evenly { justify-content: space-evenly; }
3644
+ .\!k-justify-content-evenly { justify-content: space-evenly !important; } // sass-lint:disable-line no-important class-name-format
3645
+ .k-justify-content-stretch > * { flex: 1 0 0%; }
3646
+ .\!k-justify-content-stretch > * { flex: 1 0 0% !important; } // sass-lint:disable-line no-important class-name-format
3611
3647
 
3612
3648
 
3613
3649
  // Justify items
3614
- .k-justify-items-start { justify-items: flex-start; }
3615
- .k-justify-items-end { justify-items: flex-end; }
3616
- .k-justify-items-center { justify-items: center; }
3617
- .k-justify-items-stretch { justify-items: stretch; }
3650
+ .k-justify-items-start { justify-items: flex-start; }
3651
+ .\!k-justify-items-start { justify-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3652
+ .k-justify-items-end { justify-items: flex-end; }
3653
+ .\!k-justify-items-end { justify-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3654
+ .k-justify-items-center { justify-items: center; }
3655
+ .\!k-justify-items-center { justify-items: center !important; } // sass-lint:disable-line no-important class-name-format
3656
+ .k-justify-items-stretch { justify-items: stretch; }
3657
+ .\!k-justify-items-stretch { justify-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
3618
3658
 
3619
3659
  }
3620
3660
 
@@ -6888,6 +6928,14 @@ $kendo-checkbox-ripple-opacity: .25 !default;
6888
6928
  right: 0;
6889
6929
  }
6890
6930
  }
6931
+ .k-list-item-text,
6932
+ .k-list-optionlabel {
6933
+ &::before {
6934
+ content: "\200b";
6935
+ width: 0px;
6936
+ overflow: hidden;
6937
+ }
6938
+ }
6891
6939
  .k-list-optionlabel {
6892
6940
  @extend .k-list-item;
6893
6941
  }
@@ -7150,7 +7198,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
7150
7198
  // #region @import "_variables.scss"; -> packages/classic/scss/listgroup/_variables.scss
7151
7199
  // Listgroup
7152
7200
  $listgroup-border-width: 1px !default;
7153
- $listgroup-border-radius: $border-radius !default;
7201
+ $listgroup-border-radius: $kendo-border-radius-md !default;
7154
7202
 
7155
7203
  $listgroup-font-size: $font-size !default;
7156
7204
  $listgroup-line-height: $line-height !default;
@@ -7504,7 +7552,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7504
7552
  }
7505
7553
  }
7506
7554
  .k-animation-container {
7507
- @include border-bottom-radius-only( $border-radius );
7555
+ @include border-bottom-radius-only( $kendo-border-radius-md );
7508
7556
 
7509
7557
  .k-popup {}
7510
7558
  }
@@ -7562,7 +7610,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7562
7610
  }
7563
7611
 
7564
7612
  .k-animation-container {
7565
- @include border-bottom-radius-only( $border-radius );
7613
+ @include border-bottom-radius-only( $kendo-border-radius );
7566
7614
  }
7567
7615
 
7568
7616
  }
@@ -7703,21 +7751,21 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7703
7751
  $badge-padding-x: $padding-x-sm !default;
7704
7752
  $badge-padding-y: $badge-padding-x !default;
7705
7753
  $badge-border-width: 1px !default;
7706
- $badge-border-radius: $border-radius !default;
7754
+ $badge-border-radius: $kendo-border-radius-md !default;
7707
7755
  $badge-font-size: $font-size-xs !default;
7708
7756
  $badge-line-height: 1 !default;
7709
7757
 
7710
7758
  $badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
7711
7759
  $badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
7712
7760
  $badge-border-width-sm: $badge-border-width !default;
7713
- $badge-border-radius-sm: $border-radius-sm !default;
7761
+ $badge-border-radius-sm: $kendo-border-radius-sm !default;
7714
7762
  $badge-font-size-sm: $font-size-xs !default;
7715
7763
  $badge-line-height-sm: 1 !default;
7716
7764
 
7717
7765
  $badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
7718
7766
  $badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
7719
7767
  $badge-border-width-lg: $badge-border-width !default;
7720
- $badge-border-radius-lg: $border-radius-lg !default;
7768
+ $badge-border-radius-lg: $kendo-border-radius-lg !default;
7721
7769
  $badge-font-size-lg: $font-size-sm !default;
7722
7770
  $badge-line-height-lg: 1 !default;
7723
7771
 
@@ -8034,8 +8082,19 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
8034
8082
  /// @group button
8035
8083
  $kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
8036
8084
 
8085
+ /// Horizontal padding of the arrow button.
8086
+ /// @group button
8037
8087
  $kendo-button-arrow-padding-x: $kendo-button-padding-y !default;
8088
+ $kendo-button-arrow-padding-x-sm: $kendo-button-padding-y-sm !default;
8089
+ $kendo-button-arrow-padding-x-md: $kendo-button-padding-y-md !default;
8090
+ $kendo-button-arrow-padding-x-lg: $kendo-button-padding-y-lg !default;
8091
+
8092
+ /// Vertical padding of the arrow button.
8093
+ /// @group button
8038
8094
  $kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
8095
+ $kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
8096
+ $kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
8097
+ $kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
8039
8098
 
8040
8099
  /// Theme colors map for the button.
8041
8100
  /// @group button
@@ -8199,6 +8258,7 @@ $kendo-button-transition: color .2s ease-in-out !default;
8199
8258
  box-sizing: border-box;
8200
8259
  border-width: $kendo-button-border-width;
8201
8260
  border-style: solid;
8261
+ border-radius: $kendo-button-border-radius;
8202
8262
  color: inherit;
8203
8263
  background: none;
8204
8264
  font-family: $kendo-button-font-family;
@@ -8413,6 +8473,18 @@ $kendo-button-transition: color .2s ease-in-out !default;
8413
8473
  aspect-ratio: auto;
8414
8474
  flex: none;
8415
8475
 
8476
+ &.k-button-sm {
8477
+ padding: $kendo-button-arrow-padding-y-sm $kendo-button-arrow-padding-x-sm;
8478
+ }
8479
+
8480
+ &.k-button-md {
8481
+ padding: $kendo-button-arrow-padding-y-md $kendo-button-arrow-padding-x-md;
8482
+ }
8483
+
8484
+ &.k-button-lg {
8485
+ padding: $kendo-button-arrow-padding-y-lg $kendo-button-arrow-padding-x-lg;
8486
+ }
8487
+
8416
8488
  .k-button-icon {
8417
8489
  min-width: 0;
8418
8490
  }
@@ -9104,7 +9176,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
9104
9176
  position: relative;
9105
9177
  z-index: 1;
9106
9178
  overflow: hidden;
9107
- text-overflow: clip;
9179
+ text-overflow: ellipsis;
9108
9180
  -webkit-appearance: none;
9109
9181
 
9110
9182
  // Hide clear icon
@@ -9143,7 +9215,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
9143
9215
  .k-input-value-text {
9144
9216
  flex: 1;
9145
9217
  overflow: hidden;
9146
- text-overflow: clip;
9218
+ text-overflow: ellipsis;
9147
9219
  }
9148
9220
  .k-input-value-text::before {
9149
9221
  content: "\200b";
@@ -11156,6 +11228,8 @@ $kendo-chip-list-sizes: (
11156
11228
 
11157
11229
  // Chip content
11158
11230
  .k-chip-content {
11231
+ padding: .5em 0;
11232
+ margin: -.5em 0;
11159
11233
  min-width: 0;
11160
11234
  display: flex;
11161
11235
  flex-flow: row nowrap;
@@ -11435,7 +11509,7 @@ $kendo-chip-list-sizes: (
11435
11509
  // #endregion
11436
11510
  // #region @import "_variables.scss"; -> packages/classic/scss/color-preview/_variables.scss
11437
11511
  // Color Preview
11438
- $color-preview-border-radius: $border-radius !default;
11512
+ $color-preview-border-radius: $kendo-border-radius-md !default;
11439
11513
  $color-preview-border-width: 1px !default;
11440
11514
  $color-preview-bg: null !default;
11441
11515
  $color-preview-text: null !default;
@@ -11604,7 +11678,7 @@ $loader-secondary-bg: #656565 !default;
11604
11678
  $loader-container-panel-border-width: 1px !default;
11605
11679
  $loader-container-panel-border-style: solid !default;
11606
11680
  $loader-container-panel-border-color: $component-border !default;
11607
- $loader-container-panel-border-radius: $border-radius !default;
11681
+ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
11608
11682
  $loader-container-panel-bg: $white !default;
11609
11683
 
11610
11684
  $loader-container-padding-sm: 15px !default;
@@ -12132,7 +12206,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
12132
12206
  // #region @import "_variables.scss"; -> packages/classic/scss/skeleton/_variables.scss
12133
12207
  // Skeleton
12134
12208
  $skeleton-text-transform: scale( 1, .6 ) !default;
12135
- $skeleton-text-border-radius: $border-radius !default;
12209
+ $skeleton-text-border-radius: $kendo-border-radius-md !default;
12136
12210
 
12137
12211
  $skeleton-rect-border-radius: 0 !default;
12138
12212
 
@@ -12287,7 +12361,7 @@ $tooltip-padding-y: $padding-y !default;
12287
12361
  $tooltip-padding-x: $padding-x !default;
12288
12362
  $tooltip-max-width: null !default;
12289
12363
  $tooltip-border-width: 0px !default;
12290
- $tooltip-border-radius: $border-radius !default;
12364
+ $tooltip-border-radius: $kendo-border-radius-md !default;
12291
12365
 
12292
12366
  $tooltip-font-family: $font-family !default;
12293
12367
  $tooltip-font-size: $font-size !default;
@@ -13627,11 +13701,6 @@ $fieldset-legend-border: null !default;
13627
13701
  display: inline-flex;
13628
13702
  width: 100%;
13629
13703
  }
13630
- .k-daterangepicker {
13631
- width: 100%;
13632
- flex-flow: column nowrap;
13633
- gap: 0;
13634
- }
13635
13704
  }
13636
13705
 
13637
13706
  // Form Buttons Container
@@ -14559,7 +14628,7 @@ $progressbar-chunk-border: $body-bg !default;
14559
14628
 
14560
14629
  // Base
14561
14630
  .k-progressbar {
14562
- @include border-radius( $border-radius );
14631
+ @include border-radius( $kendo-border-radius );
14563
14632
  --kendo-progressbar-progress: 0;
14564
14633
  border-width: $progressbar-border-width;
14565
14634
  border-style: solid;
@@ -15875,7 +15944,7 @@ $slider-disabled-opacity: null !default;
15875
15944
 
15876
15945
  .k-slider-track,
15877
15946
  .k-slider-selection {
15878
- @include border-radius( $border-radius );
15947
+ @include border-radius( $kendo-border-radius );
15879
15948
  }
15880
15949
 
15881
15950
  .k-slider-track {
@@ -16005,7 +16074,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
16005
16074
  $calendar-cell-padding-x: map-get( $spacing, 1 ) !default;
16006
16075
  $calendar-cell-padding-y: $calendar-cell-padding-x !default;
16007
16076
  $calendar-cell-line-height: $calendar-line-height !default;
16008
- $calendar-cell-border-radius: $border-radius !default;
16077
+ $calendar-cell-border-radius: $kendo-border-radius-md !default;
16009
16078
 
16010
16079
  $calendar-header-cell-padding-x: null !default;
16011
16080
  $calendar-header-cell-padding-y: null !default;
@@ -16452,6 +16521,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16452
16521
  line-height: $calendar-navigation-item-height;
16453
16522
  cursor: pointer;
16454
16523
  padding: 0 1em;
16524
+ overflow: hidden;
16525
+ white-space: nowrap;
16526
+ text-overflow: clip;
16455
16527
  }
16456
16528
  }
16457
16529
 
@@ -17584,7 +17656,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
17584
17656
 
17585
17657
  $colorgradient-width: 272px !default;
17586
17658
  $colorgradient-border-width: 1px !default;
17587
- $colorgradient-border-radius: $border-radius !default;
17659
+ $colorgradient-border-radius: $kendo-border-radius-md !default;
17588
17660
  $colorgradient-padding-y: $colorgradient-spacer !default;
17589
17661
  $colorgradient-padding-x: $colorgradient-padding-y !default;
17590
17662
  $colorgradient-gap: $colorgradient-spacer !default;
@@ -17599,7 +17671,7 @@ $colorgradient-focus-border: null !default;
17599
17671
  $colorgradient-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
17600
17672
 
17601
17673
 
17602
- $colorgradient-canvas-border-radius: $border-radius !default;
17674
+ $colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
17603
17675
  $colorgradient-canvas-gap: $colorgradient-spacer !default;
17604
17676
  $colorgradient-canvas-rectangle-height: 180px !default;
17605
17677
 
@@ -17771,6 +17843,10 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
17771
17843
  .k-numerictextbox {
17772
17844
  width: $colorgradient-input-width;
17773
17845
  }
17846
+
17847
+ .k-input-inner {
17848
+ text-overflow: clip;
17849
+ }
17774
17850
  }
17775
17851
 
17776
17852
  // Contrast
@@ -17953,7 +18029,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
17953
18029
 
17954
18030
  $coloreditor-min-width: 272px !default;
17955
18031
  $coloreditor-border-width: 1px !default;
17956
- $coloreditor-border-radius: $border-radius !default;
18032
+ $coloreditor-border-radius: $kendo-border-radius-md !default;
17957
18033
  $coloreditor-font-family: $font-family !default;
17958
18034
  $coloreditor-font-size: $font-size !default;
17959
18035
  $coloreditor-line-height: $line-height !default;
@@ -19084,7 +19160,7 @@ $kendo-treeview-item-padding-y: map-get( $spacing, 1 ) !default;
19084
19160
  $kendo-treeview-item-border-width: 0px !default;
19085
19161
  /// Border radius of treeview items.
19086
19162
  /// @group treeview
19087
- $kendo-treeview-item-border-radius: $border-radius !default;
19163
+ $kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
19088
19164
 
19089
19165
 
19090
19166
  /// The sizes of the treeview.
@@ -21361,7 +21437,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
21361
21437
  $kendo-fab-border-width: 1px !default;
21362
21438
  /// Border radius of the FAB.
21363
21439
  /// @group floating-action-button
21364
- $kendo-fab-border-radius: $border-radius !default;
21440
+ $kendo-fab-border-radius: $kendo-border-radius-md !default;
21365
21441
 
21366
21442
  /// Font family of the FAB.
21367
21443
  /// @group floating-action-button
@@ -22883,7 +22959,7 @@ $drawer-selected-hover-text: $selected-hover-text !default;
22883
22959
  $notification-padding-x: 8px !default;
22884
22960
  $notification-padding-y: 4px !default;
22885
22961
  $notification-border-width: 1px !default;
22886
- $notification-border-radius: $border-radius !default;
22962
+ $notification-border-radius: $kendo-border-radius-md !default;
22887
22963
 
22888
22964
  $notification-shadow: $popup-shadow !default;
22889
22965
 
@@ -22901,6 +22977,7 @@ $notification-border: $component-border !default;
22901
22977
  @function notification-theme( $colors ) {
22902
22978
  $_theme: ();
22903
22979
 
22980
+ // sass-lint:disable-block indentation
22904
22981
  @each $name, $color in $colors {
22905
22982
  $_theme: map-merge(( $name: (
22906
22983
  color: contrast-wcag( $color ),
@@ -23093,7 +23170,7 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
23093
23170
  $card-padding-x: map-get( $spacing, lg ) !default;
23094
23171
  $card-padding-y: map-get( $spacing, md ) !default;
23095
23172
  $card-border-width: 1px !default;
23096
- $card-border-radius: $border-radius-lg !default;
23173
+ $card-border-radius: $kendo-border-radius-lg !default;
23097
23174
  $card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
23098
23175
  $card-font-family: $font-family !default;
23099
23176
  $card-font-size: $font-size !default;
@@ -23990,7 +24067,7 @@ $bottom-nav-item-padding-y: 0 !default;
23990
24067
  $bottom-nav-item-min-width: 72px !default;
23991
24068
  $bottom-nav-item-max-width: null !default;
23992
24069
  $bottom-nav-item-min-height: calc( #{$icon-size * 2.5} + #{$padding-x * 2} - #{$bottom-nav-padding-x * 2} ) !default;
23993
- $bottom-nav-item-border-radius: $border-radius !default;
24070
+ $bottom-nav-item-border-radius: $kendo-border-radius-md !default;
23994
24071
  $bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
23995
24072
 
23996
24073
  $bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
@@ -24228,7 +24305,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
24228
24305
 
24229
24306
  $breadcrumb-link-padding-x: $padding-x !default;
24230
24307
  $breadcrumb-link-padding-y: $padding-y-lg !default;
24231
- $breadcrumb-link-border-radius: $border-radius !default;
24308
+ $breadcrumb-link-border-radius: $kendo-border-radius-md !default;
24232
24309
 
24233
24310
  $breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
24234
24311
  $breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
@@ -24771,6 +24848,11 @@ $pager-dropdown-width: 5em !default;
24771
24848
  width: $pager-dropdown-width;
24772
24849
  }
24773
24850
 
24851
+ .k-input-inner,
24852
+ .k-input-value-text {
24853
+ text-overflow: clip;
24854
+ }
24855
+
24774
24856
  .k-rtl &,
24775
24857
  [dir="rtl"] & {
24776
24858
  .k-dropdown-list,
@@ -25197,6 +25279,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
25197
25279
  display: flex;
25198
25280
  align-items: center;
25199
25281
  justify-content: center;
25282
+ flex: none;
25200
25283
  position: relative;
25201
25284
  z-index: 1;
25202
25285
  overflow: visible;
@@ -25230,7 +25313,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
25230
25313
 
25231
25314
  // Step label
25232
25315
  .k-step-label {
25233
- max-width: 10em;
25316
+ max-width: clamp(100%, 10em, 100%);
25234
25317
  display: inline-flex;
25235
25318
  flex-wrap: wrap;
25236
25319
  align-items: center;
@@ -25655,7 +25738,7 @@ $tabstrip-item-padding-y: $nav-item-padding-y !default;
25655
25738
  $tabstrip-item-border-width: 1px !default;
25656
25739
  /// Border radius of tabs
25657
25740
  /// @group tabstrip
25658
- $tabstrip-item-border-radius: $border-radius !default;
25741
+ $tabstrip-item-border-radius: $kendo-border-radius-md !default;
25659
25742
  /// Spacing between tabs
25660
25743
  /// @group tabstrip
25661
25744
  $tabstrip-item-gap: $nav-item-margin !default;
@@ -27455,7 +27538,7 @@ $tilelayout-card-border-width: $card-border-width !default;
27455
27538
  $tilelayout-card-focus-shadow: $card-focus-shadow !default;
27456
27539
 
27457
27540
  $tilelayout-hint-border-width: 1px !default;
27458
- $tilelayout-hint-border-radius: $border-radius-lg !default;
27541
+ $tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
27459
27542
 
27460
27543
  $tilelayout-bg: $base-bg !default;
27461
27544
 
@@ -28304,7 +28387,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
28304
28387
 
28305
28388
  $grid-hierarchy-col-width: ($icon-size * 2) !default;
28306
28389
 
28307
- $grid-group-indicator-border-radius: $border-radius !default;
28390
+ $grid-group-indicator-border-radius: $kendo-border-radius-md !default;
28308
28391
  $grid-group-indicator-gap: $table-cell-padding-y !default;
28309
28392
 
28310
28393
  $grid-grouping-row-border-top: 1px !default;
@@ -30525,9 +30608,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
30525
30608
  $spreadsheet-insert-image-dialog-preview-height: 230px !default;
30526
30609
  $spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
30527
30610
  $spreadsheet-insert-image-dialog-preview-border: $component-border !default;
30528
- $spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
30611
+ $spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
30529
30612
  $spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
30530
- $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $border-radius !default;
30613
+ $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
30531
30614
  $spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
30532
30615
 
30533
30616
  $spreadsheet-drawing-handle-width: 6px !default;
@@ -30537,7 +30620,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
30537
30620
  $spreadsheet-drawing-handle-outline-color: $primary !default;
30538
30621
  $spreadsheet-drawing-handle-border-color: $selected-bg !default;
30539
30622
  $spreadsheet-drawing-handle-bg: $primary !default;
30540
- $spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
30623
+ $spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
30541
30624
 
30542
30625
  $spreadsheet-drawing-outline-style: solid !default;
30543
30626
  $spreadsheet-drawing-outline-width: 2px !default;
@@ -30646,10 +30729,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
30646
30729
  min-width: $form-line-height * 1em;
30647
30730
  }
30648
30731
 
30649
- .k-input,
30650
- .k-picker {
30651
- width: 5em;
30652
- }
30653
30732
  .k-color-picker {
30654
30733
  width: min-content;
30655
30734
  }
@@ -31124,7 +31203,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31124
31203
  box-sizing: border-box;
31125
31204
  }
31126
31205
  .k-spreadsheet-filter {
31127
- @include border-radius( $border-radius );
31206
+ @include border-radius( $kendo-border-radius );
31128
31207
  line-height: 1;
31129
31208
  position: absolute;
31130
31209
  cursor: pointer;
@@ -31874,7 +31953,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
31874
31953
  $pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
31875
31954
  $pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
31876
31955
  $pivotgrid-calculated-field-border-width: 1px !default;
31877
- $pivotgrid-calculated-field-border-radius: $border-radius-sm !default;
31956
+ $pivotgrid-calculated-field-border-radius: $kendo-border-radius-sm !default;
31878
31957
  $pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
31879
31958
 
31880
31959
  $pivotgrid-calculated-field-bg: $component-bg !default;
@@ -33762,7 +33841,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
33762
33841
 
33763
33842
  $taskboard-column-width: 320px !default;
33764
33843
  $taskboard-column-border-width: 1px !default;
33765
- $taskboard-column-border-radius: $border-radius !default;
33844
+ $taskboard-column-border-radius: $kendo-border-radius-md !default;
33766
33845
  $taskboard-column-bg: $base-bg !default;
33767
33846
  $taskboard-column-text: null !default;
33768
33847
  $taskboard-column-border: transparent !default;
@@ -34314,7 +34393,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
34314
34393
 
34315
34394
  // Inline editor
34316
34395
  .k-editor-inline {
34317
- @include border-radius( $border-radius );
34396
+ @include border-radius( $kendo-border-radius-md );
34318
34397
  padding: $padding-y-sm $padding-x-sm;
34319
34398
  border: 1px solid transparent;
34320
34399
  word-wrap: break-word;
@@ -34735,7 +34814,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
34735
34814
  white-space: nowrap;
34736
34815
  overflow: hidden;
34737
34816
  cursor: pointer;
34738
- @include border-radius( $border-radius );
34817
+ @include border-radius( $kendo-border-radius-md );
34739
34818
 
34740
34819
  .k-i-file,
34741
34820
  .k-i-folder {
@@ -35207,6 +35286,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
35207
35286
  box-sizing: border-box;
35208
35287
  flex: none;
35209
35288
  overflow-y: auto;
35289
+
35290
+ .k-input-inner,
35291
+ .k-input-value-text {
35292
+ text-overflow: clip;
35293
+ }
35210
35294
  }
35211
35295
 
35212
35296
 
@@ -35493,6 +35577,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
35493
35577
  $gantt-action-on-offset-text: #000000 !default;
35494
35578
  $gantt-offset-resize-handler-top: 50% !default;
35495
35579
 
35580
+ $gantt-validation-tooltip-width: 200px !default;
35581
+ $gantt-validation-tooltip-border: #656565 !default;
35582
+ $gantt-validation-tooltip-valid-border: $success !default;
35583
+ $gantt-validation-tooltip-invalid-border: $error !default;
35584
+
35496
35585
  // #endregion
35497
35586
  // #region @import "_layout.scss"; -> packages/classic/scss/gantt/_layout.scss
35498
35587
  // #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
@@ -36004,7 +36093,7 @@ $gantt-offset-resize-handler-top: 50% !default;
36004
36093
  // Single task
36005
36094
  .k-single-wrap {}
36006
36095
  .k-task-single {
36007
- @include border-radius( $border-radius );
36096
+ @include border-radius( $kendo-border-radius-md );
36008
36097
  border-width: $gantt-task-border-width;
36009
36098
  border-style: solid;
36010
36099
  box-sizing: border-box;
@@ -36037,7 +36126,7 @@ $gantt-offset-resize-handler-top: 50% !default;
36037
36126
  }
36038
36127
  }
36039
36128
  .k-task-complete {
36040
- @include border-radius( $border-radius );
36129
+ @include border-radius( $kendo-border-radius-md );
36041
36130
  width: 20%;
36042
36131
  position: absolute;
36043
36132
  z-index: 1;
@@ -36107,7 +36196,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36107
36196
  }
36108
36197
 
36109
36198
  // Planned position
36110
-
36111
36199
  .k-gantt-planned {
36112
36200
  .k-gantt-dependencies,
36113
36201
  .k-task-dot,
@@ -36138,7 +36226,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36138
36226
  }
36139
36227
 
36140
36228
  // Planned element
36141
-
36142
36229
  .k-task-planned {
36143
36230
  margin: 0 0 $gantt-planned-margin-y;
36144
36231
  line-height: $gantt-planned-line-height;
@@ -36171,7 +36258,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36171
36258
  }
36172
36259
 
36173
36260
  // Planned Tooltip
36174
-
36175
36261
  .k-planned-tooltip {
36176
36262
  .k-task-content {
36177
36263
  display: block;
@@ -36179,7 +36265,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36179
36265
  }
36180
36266
 
36181
36267
  // Delay offset
36182
-
36183
36268
  .k-task-offset-wrap .k-task-content .k-resize-e {
36184
36269
  display: none;
36185
36270
  }
@@ -36210,6 +36295,36 @@ $gantt-offset-resize-handler-top: 50% !default;
36210
36295
  .k-task-offset:hover .k-resize-handle {
36211
36296
  visibility: visible;
36212
36297
  }
36298
+
36299
+
36300
+ // Dependency Validation Tooltip
36301
+ .k-gantt-tooltip-validation {
36302
+ max-width: $gantt-validation-tooltip-width;
36303
+ display: block;
36304
+
36305
+ &::before {
36306
+ content: "";
36307
+ width: 4px;
36308
+ height: 100%;
36309
+ position: absolute;
36310
+ top: 0;
36311
+ left: 0;
36312
+ }
36313
+ }
36314
+ .k-gantt-tooltip-validation-row {
36315
+ display: flex;
36316
+ flex-direction: row;
36317
+ justify-content: space-between;
36318
+ }
36319
+ .k-gantt-tooltip-validation-label {
36320
+ display: inline-flex;
36321
+ white-space: nowrap;
36322
+ overflow: hidden;
36323
+ text-overflow: ellipsis;
36324
+ }
36325
+ .k-gantt-tooltip-validation-value {
36326
+ font-weight: $font-weight-bold;
36327
+ }
36213
36328
  }
36214
36329
 
36215
36330
  @include exports("gantt/export") {
@@ -36255,7 +36370,8 @@ $gantt-offset-resize-handler-top: 50% !default;
36255
36370
 
36256
36371
  @include exports("gantt/rtl") {
36257
36372
 
36258
- .k-rtl {
36373
+ .k-rtl,
36374
+ [dir="rtl"] {
36259
36375
 
36260
36376
  .k-gantt-rows,
36261
36377
  .k-gantt-columns {
@@ -36334,6 +36450,11 @@ $gantt-offset-resize-handler-top: 50% !default;
36334
36450
  .k-gantt-timeline .k-milestone-wrap .k-task-start {
36335
36451
  right: $gantt-rtl-milestone-dot-start-margin-x;
36336
36452
  }
36453
+
36454
+ .k-gantt-tooltip-validation::before {
36455
+ left: auto;
36456
+ right: 0;
36457
+ }
36337
36458
  }
36338
36459
  }
36339
36460
 
@@ -36588,7 +36709,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36588
36709
  }
36589
36710
 
36590
36711
  // Tooltips
36591
-
36592
36712
  .k-offset-tooltip-delayed {
36593
36713
  @include fill(
36594
36714
  $bg: $gantt-delayed-bg
@@ -36600,6 +36720,22 @@ $gantt-offset-resize-handler-top: 50% !default;
36600
36720
  $bg: $gantt-planned-bg
36601
36721
  );
36602
36722
  }
36723
+
36724
+ .k-gantt-tooltip-validation {
36725
+ &::before {
36726
+ background-color: $gantt-validation-tooltip-border;
36727
+ }
36728
+ }
36729
+ .k-gantt-tooltip-valid {
36730
+ &::before {
36731
+ background-color: $gantt-validation-tooltip-valid-border;
36732
+ }
36733
+ }
36734
+ .k-gantt-tooltip-invalid {
36735
+ &::before {
36736
+ background-color: $gantt-validation-tooltip-invalid-border;
36737
+ }
36738
+ }
36603
36739
  }
36604
36740
 
36605
36741
  // #endregion
@@ -36663,7 +36799,7 @@ $scheduler-footer-border: $toolbar-border !default;
36663
36799
  $scheduler-footer-gradient: $toolbar-gradient !default;
36664
36800
 
36665
36801
  $scheduler-event-min-height: 25px !default;
36666
- $scheduler-event-border-radius: $border-radius !default;
36802
+ $scheduler-event-border-radius: $kendo-border-radius-md !default;
36667
36803
  $scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
36668
36804
 
36669
36805
  $scheduler-event-bg: tint( $selected-bg, 2 ) !default;
@@ -36730,7 +36866,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
36730
36866
 
36731
36867
  $scheduler-tooltip-event-padding-x: $padding-x !default;
36732
36868
  $scheduler-tooltip-event-padding-y: $padding-y !default;
36733
- $scheduler-tooltip-event-border-radius: $border-radius !default;
36869
+ $scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
36734
36870
  $scheduler-tooltip-event-gap: $padding-x-sm !default;
36735
36871
 
36736
36872
  $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
@@ -37133,7 +37269,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
37133
37269
  // Appointments
37134
37270
  kendo-scheduler .k-event,
37135
37271
  .k-event {
37136
- @include border-radius( $border-radius );
37272
+ @include border-radius( $kendo-border-radius );
37137
37273
  min-height: $scheduler-event-min-height;
37138
37274
  box-sizing: border-box;
37139
37275
  border-width: 0;
@@ -39176,7 +39312,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39176
39312
  display: inline-block;
39177
39313
  text-align: center;
39178
39314
  padding: $timeline-flag-padding-y $timeline-flag-padding-x;
39179
- border-radius: $border-radius;
39315
+ border-radius: $kendo-border-radius;
39180
39316
  line-height: $timeline-flag-line-height;
39181
39317
  min-width: $timeline-flag-min-width;
39182
39318
  max-width: $timeline-flag-max-width;
@@ -39240,7 +39376,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39240
39376
  }
39241
39377
 
39242
39378
  &::-webkit-scrollbar-thumb {
39243
- border-radius: $border-radius;
39379
+ border-radius: $kendo-border-radius;
39244
39380
  }
39245
39381
  }
39246
39382
  }
@@ -39284,7 +39420,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39284
39420
  height: 100%;
39285
39421
  width: $timeline-track-size;
39286
39422
  transform: translateX(-50%);
39287
- border-radius: $border-radius-lg;
39423
+ border-radius: $kendo-border-radius-lg;
39288
39424
  }
39289
39425
 
39290
39426
  .k-timeline-flag-wrap {
@@ -40653,7 +40789,7 @@ $treemap-line-height: $line-height !default;
40653
40789
  }
40654
40790
 
40655
40791
  .k-chart-tooltip {
40656
- @include border-radius( $border-radius );
40792
+ @include border-radius( $kendo-border-radius-md );
40657
40793
  font-size: $chart-tooltip-font-size;
40658
40794
  line-height: $line-height;
40659
40795
  padding: $tooltip-padding-y $tooltip-padding-x;
@@ -40761,7 +40897,7 @@ $treemap-line-height: $line-height !default;
40761
40897
  }
40762
40898
 
40763
40899
  .k-navigator-hint .k-scroll {
40764
- @include border-radius( $border-radius );
40900
+ @include border-radius( $kendo-border-radius-md );
40765
40901
  position: absolute;
40766
40902
  height: 4px;
40767
40903
  }
@@ -40988,7 +41124,7 @@ $treemap-line-height: $line-height !default;
40988
41124
  base: $base-bg,
40989
41125
  background: $chart-bg,
40990
41126
 
40991
- border-radius: $border-radius,
41127
+ border-radius: $kendo-border-radius-md,
40992
41128
 
40993
41129
  normal-background: $base-bg,
40994
41130
  normal-text-color: $base-text,
@@ -41517,7 +41653,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
41517
41653
  $orgchart-node-group-padding-y: $orgchart-spacer !default;
41518
41654
  $orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
41519
41655
  $orgchart-node-group-border-width: 1px !default;
41520
- $orgchart-node-group-border-radius: $border-radius !default;
41656
+ $orgchart-node-group-border-radius: $kendo-border-radius-md !default;
41521
41657
  $orgchart-node-group-bg: $base-bg !default;
41522
41658
  $orgchart-node-group-text: $base-text !default;
41523
41659
  $orgchart-node-group-border: $base-border !default;