@progress/kendo-theme-classic 5.1.2-dev.4 → 5.2.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 +361 -96
  2. package/dist/all.scss +304 -158
  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 +15 -13
  27. package/scss/orgchart/_variables.scss +1 -1
  28. package/scss/pivotgrid/_variables.scss +2 -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";
@@ -9209,7 +9281,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
9209
9281
  // Input with icon styles
9210
9282
  .k-input-icon,
9211
9283
  .k-input-validation-icon,
9212
- .k-input-loading-icon {
9284
+ .k-input-loading-icon,
9285
+ .k-input-prefix > .k-icon,
9286
+ .k-input-suffix > .k-icon {
9213
9287
  flex: none;
9214
9288
  align-self: center;
9215
9289
  display: inline-flex;
@@ -9383,7 +9457,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
9383
9457
  .k-input-icon,
9384
9458
  .k-input-validation-icon,
9385
9459
  .k-input-loading-icon,
9386
- .k-clear-value {
9460
+ .k-clear-value,
9461
+ .k-input-prefix > .k-icon,
9462
+ .k-input-suffix > .k-icon {
9387
9463
  width: $_icon-size;
9388
9464
  height: $_icon-size;
9389
9465
  }
@@ -11152,6 +11228,8 @@ $kendo-chip-list-sizes: (
11152
11228
 
11153
11229
  // Chip content
11154
11230
  .k-chip-content {
11231
+ padding: .5em 0;
11232
+ margin: -.5em 0;
11155
11233
  min-width: 0;
11156
11234
  display: flex;
11157
11235
  flex-flow: row nowrap;
@@ -11431,7 +11509,7 @@ $kendo-chip-list-sizes: (
11431
11509
  // #endregion
11432
11510
  // #region @import "_variables.scss"; -> packages/classic/scss/color-preview/_variables.scss
11433
11511
  // Color Preview
11434
- $color-preview-border-radius: $border-radius !default;
11512
+ $color-preview-border-radius: $kendo-border-radius-md !default;
11435
11513
  $color-preview-border-width: 1px !default;
11436
11514
  $color-preview-bg: null !default;
11437
11515
  $color-preview-text: null !default;
@@ -11600,7 +11678,7 @@ $loader-secondary-bg: #656565 !default;
11600
11678
  $loader-container-panel-border-width: 1px !default;
11601
11679
  $loader-container-panel-border-style: solid !default;
11602
11680
  $loader-container-panel-border-color: $component-border !default;
11603
- $loader-container-panel-border-radius: $border-radius !default;
11681
+ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
11604
11682
  $loader-container-panel-bg: $white !default;
11605
11683
 
11606
11684
  $loader-container-padding-sm: 15px !default;
@@ -12128,7 +12206,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
12128
12206
  // #region @import "_variables.scss"; -> packages/classic/scss/skeleton/_variables.scss
12129
12207
  // Skeleton
12130
12208
  $skeleton-text-transform: scale( 1, .6 ) !default;
12131
- $skeleton-text-border-radius: $border-radius !default;
12209
+ $skeleton-text-border-radius: $kendo-border-radius-md !default;
12132
12210
 
12133
12211
  $skeleton-rect-border-radius: 0 !default;
12134
12212
 
@@ -12283,7 +12361,7 @@ $tooltip-padding-y: $padding-y !default;
12283
12361
  $tooltip-padding-x: $padding-x !default;
12284
12362
  $tooltip-max-width: null !default;
12285
12363
  $tooltip-border-width: 0px !default;
12286
- $tooltip-border-radius: $border-radius !default;
12364
+ $tooltip-border-radius: $kendo-border-radius-md !default;
12287
12365
 
12288
12366
  $tooltip-font-family: $font-family !default;
12289
12367
  $tooltip-font-size: $font-size !default;
@@ -13623,11 +13701,6 @@ $fieldset-legend-border: null !default;
13623
13701
  display: inline-flex;
13624
13702
  width: 100%;
13625
13703
  }
13626
- .k-daterangepicker {
13627
- width: 100%;
13628
- flex-flow: column nowrap;
13629
- gap: 0;
13630
- }
13631
13704
  }
13632
13705
 
13633
13706
  // Form Buttons Container
@@ -14274,9 +14347,7 @@ $fieldset-legend-border: null !default;
14274
14347
  @include exports( "textarea/layout" ) {
14275
14348
 
14276
14349
  // Textarea
14277
- .k-textarea {
14278
- display: flex;
14279
- }
14350
+ .k-textarea {}
14280
14351
 
14281
14352
  }
14282
14353
 
@@ -14557,7 +14628,7 @@ $progressbar-chunk-border: $body-bg !default;
14557
14628
 
14558
14629
  // Base
14559
14630
  .k-progressbar {
14560
- @include border-radius( $border-radius );
14631
+ @include border-radius( $kendo-border-radius );
14561
14632
  --kendo-progressbar-progress: 0;
14562
14633
  border-width: $progressbar-border-width;
14563
14634
  border-style: solid;
@@ -15873,7 +15944,7 @@ $slider-disabled-opacity: null !default;
15873
15944
 
15874
15945
  .k-slider-track,
15875
15946
  .k-slider-selection {
15876
- @include border-radius( $border-radius );
15947
+ @include border-radius( $kendo-border-radius );
15877
15948
  }
15878
15949
 
15879
15950
  .k-slider-track {
@@ -16003,7 +16074,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
16003
16074
  $calendar-cell-padding-x: map-get( $spacing, 1 ) !default;
16004
16075
  $calendar-cell-padding-y: $calendar-cell-padding-x !default;
16005
16076
  $calendar-cell-line-height: $calendar-line-height !default;
16006
- $calendar-cell-border-radius: $border-radius !default;
16077
+ $calendar-cell-border-radius: $kendo-border-radius-md !default;
16007
16078
 
16008
16079
  $calendar-header-cell-padding-x: null !default;
16009
16080
  $calendar-header-cell-padding-y: null !default;
@@ -16450,6 +16521,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16450
16521
  line-height: $calendar-navigation-item-height;
16451
16522
  cursor: pointer;
16452
16523
  padding: 0 1em;
16524
+ overflow: hidden;
16525
+ white-space: nowrap;
16526
+ text-overflow: clip;
16453
16527
  }
16454
16528
  }
16455
16529
 
@@ -17582,7 +17656,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
17582
17656
 
17583
17657
  $colorgradient-width: 272px !default;
17584
17658
  $colorgradient-border-width: 1px !default;
17585
- $colorgradient-border-radius: $border-radius !default;
17659
+ $colorgradient-border-radius: $kendo-border-radius-md !default;
17586
17660
  $colorgradient-padding-y: $colorgradient-spacer !default;
17587
17661
  $colorgradient-padding-x: $colorgradient-padding-y !default;
17588
17662
  $colorgradient-gap: $colorgradient-spacer !default;
@@ -17597,7 +17671,7 @@ $colorgradient-focus-border: null !default;
17597
17671
  $colorgradient-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
17598
17672
 
17599
17673
 
17600
- $colorgradient-canvas-border-radius: $border-radius !default;
17674
+ $colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
17601
17675
  $colorgradient-canvas-gap: $colorgradient-spacer !default;
17602
17676
  $colorgradient-canvas-rectangle-height: 180px !default;
17603
17677
 
@@ -17769,6 +17843,10 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
17769
17843
  .k-numerictextbox {
17770
17844
  width: $colorgradient-input-width;
17771
17845
  }
17846
+
17847
+ .k-input-inner {
17848
+ text-overflow: clip;
17849
+ }
17772
17850
  }
17773
17851
 
17774
17852
  // Contrast
@@ -17951,7 +18029,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
17951
18029
 
17952
18030
  $coloreditor-min-width: 272px !default;
17953
18031
  $coloreditor-border-width: 1px !default;
17954
- $coloreditor-border-radius: $border-radius !default;
18032
+ $coloreditor-border-radius: $kendo-border-radius-md !default;
17955
18033
  $coloreditor-font-family: $font-family !default;
17956
18034
  $coloreditor-font-size: $font-size !default;
17957
18035
  $coloreditor-line-height: $line-height !default;
@@ -19082,7 +19160,7 @@ $kendo-treeview-item-padding-y: map-get( $spacing, 1 ) !default;
19082
19160
  $kendo-treeview-item-border-width: 0px !default;
19083
19161
  /// Border radius of treeview items.
19084
19162
  /// @group treeview
19085
- $kendo-treeview-item-border-radius: $border-radius !default;
19163
+ $kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
19086
19164
 
19087
19165
 
19088
19166
  /// The sizes of the treeview.
@@ -21359,7 +21437,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
21359
21437
  $kendo-fab-border-width: 1px !default;
21360
21438
  /// Border radius of the FAB.
21361
21439
  /// @group floating-action-button
21362
- $kendo-fab-border-radius: $border-radius !default;
21440
+ $kendo-fab-border-radius: $kendo-border-radius-md !default;
21363
21441
 
21364
21442
  /// Font family of the FAB.
21365
21443
  /// @group floating-action-button
@@ -22881,7 +22959,7 @@ $drawer-selected-hover-text: $selected-hover-text !default;
22881
22959
  $notification-padding-x: 8px !default;
22882
22960
  $notification-padding-y: 4px !default;
22883
22961
  $notification-border-width: 1px !default;
22884
- $notification-border-radius: $border-radius !default;
22962
+ $notification-border-radius: $kendo-border-radius-md !default;
22885
22963
 
22886
22964
  $notification-shadow: $popup-shadow !default;
22887
22965
 
@@ -22896,22 +22974,24 @@ $notification-bg: $component-bg !default;
22896
22974
  $notification-text: $component-text !default;
22897
22975
  $notification-border: $component-border !default;
22898
22976
 
22899
- $notification-themes: () !default;
22977
+ @function notification-theme( $colors ) {
22978
+ $_theme: ();
22900
22979
 
22901
- @function notification-theme($name: null, $color: null) {
22902
- // sass-lint:disable indentation
22903
- @return (
22904
- border: $color,
22905
- color: contrast-wcag( $color ),
22906
- bg: $color
22907
- );
22908
- // sass-lint:enable indentation
22909
- }
22980
+ // sass-lint:disable-block indentation
22981
+ @each $name, $color in $colors {
22982
+ $_theme: map-merge(( $name: (
22983
+ color: contrast-wcag( $color ),
22984
+ background-color: $color,
22985
+ border: $color,
22986
+ )), $_theme );
22987
+ }
22910
22988
 
22911
- @each $theme, $props in $kendo-theme-colors {
22912
- $notification-themes: map-merge($notification-themes, ($theme: notification-theme($theme, $props)) );
22989
+ @return $_theme;
22913
22990
  }
22914
22991
 
22992
+ $kendo-notification-theme-colors: $kendo-theme-colors !default;
22993
+ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
22994
+
22915
22995
  // #endregion
22916
22996
  // #region @import "_layout.scss"; -> packages/classic/scss/notification/_layout.scss
22917
22997
  // #region @import "~@progress/kendo-theme-default/scss/notification/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/notification/_layout.scss
@@ -23024,11 +23104,13 @@ $notification-themes: () !default;
23024
23104
  box-shadow: $notification-shadow;
23025
23105
  }
23026
23106
 
23027
- @each $theme, $props in $notification-themes {
23028
- .k-notification-#{$theme} {
23029
- border-color: map-get( $props, border );
23030
- color: map-get( $props, color );
23031
- background-color: map-get( $props, bg );
23107
+ @each $name, $props in $kendo-notification-theme {
23108
+ .k-notification-#{$name} {
23109
+ @include fill(
23110
+ map-get( $props, color ),
23111
+ map-get( $props, background-color ),
23112
+ map-get( $props, border )
23113
+ );
23032
23114
  }
23033
23115
  }
23034
23116
 
@@ -23088,7 +23170,7 @@ $notification-themes: () !default;
23088
23170
  $card-padding-x: map-get( $spacing, lg ) !default;
23089
23171
  $card-padding-y: map-get( $spacing, md ) !default;
23090
23172
  $card-border-width: 1px !default;
23091
- $card-border-radius: $border-radius-lg !default;
23173
+ $card-border-radius: $kendo-border-radius-lg !default;
23092
23174
  $card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
23093
23175
  $card-font-family: $font-family !default;
23094
23176
  $card-font-size: $font-size !default;
@@ -23985,7 +24067,7 @@ $bottom-nav-item-padding-y: 0 !default;
23985
24067
  $bottom-nav-item-min-width: 72px !default;
23986
24068
  $bottom-nav-item-max-width: null !default;
23987
24069
  $bottom-nav-item-min-height: calc( #{$icon-size * 2.5} + #{$padding-x * 2} - #{$bottom-nav-padding-x * 2} ) !default;
23988
- $bottom-nav-item-border-radius: $border-radius !default;
24070
+ $bottom-nav-item-border-radius: $kendo-border-radius-md !default;
23989
24071
  $bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
23990
24072
 
23991
24073
  $bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
@@ -24223,7 +24305,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
24223
24305
 
24224
24306
  $breadcrumb-link-padding-x: $padding-x !default;
24225
24307
  $breadcrumb-link-padding-y: $padding-y-lg !default;
24226
- $breadcrumb-link-border-radius: $border-radius !default;
24308
+ $breadcrumb-link-border-radius: $kendo-border-radius-md !default;
24227
24309
 
24228
24310
  $breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
24229
24311
  $breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
@@ -24766,6 +24848,11 @@ $pager-dropdown-width: 5em !default;
24766
24848
  width: $pager-dropdown-width;
24767
24849
  }
24768
24850
 
24851
+ .k-input-inner,
24852
+ .k-input-value-text {
24853
+ text-overflow: clip;
24854
+ }
24855
+
24769
24856
  .k-rtl &,
24770
24857
  [dir="rtl"] & {
24771
24858
  .k-dropdown-list,
@@ -25192,6 +25279,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
25192
25279
  display: flex;
25193
25280
  align-items: center;
25194
25281
  justify-content: center;
25282
+ flex: none;
25195
25283
  position: relative;
25196
25284
  z-index: 1;
25197
25285
  overflow: visible;
@@ -25225,7 +25313,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
25225
25313
 
25226
25314
  // Step label
25227
25315
  .k-step-label {
25228
- max-width: 10em;
25316
+ max-width: clamp(100%, 10em, 100%);
25229
25317
  display: inline-flex;
25230
25318
  flex-wrap: wrap;
25231
25319
  align-items: center;
@@ -25650,7 +25738,7 @@ $tabstrip-item-padding-y: $nav-item-padding-y !default;
25650
25738
  $tabstrip-item-border-width: 1px !default;
25651
25739
  /// Border radius of tabs
25652
25740
  /// @group tabstrip
25653
- $tabstrip-item-border-radius: $border-radius !default;
25741
+ $tabstrip-item-border-radius: $kendo-border-radius-md !default;
25654
25742
  /// Spacing between tabs
25655
25743
  /// @group tabstrip
25656
25744
  $tabstrip-item-gap: $nav-item-margin !default;
@@ -27450,7 +27538,7 @@ $tilelayout-card-border-width: $card-border-width !default;
27450
27538
  $tilelayout-card-focus-shadow: $card-focus-shadow !default;
27451
27539
 
27452
27540
  $tilelayout-hint-border-width: 1px !default;
27453
- $tilelayout-hint-border-radius: $border-radius-lg !default;
27541
+ $tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
27454
27542
 
27455
27543
  $tilelayout-bg: $base-bg !default;
27456
27544
 
@@ -28299,7 +28387,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
28299
28387
 
28300
28388
  $grid-hierarchy-col-width: ($icon-size * 2) !default;
28301
28389
 
28302
- $grid-group-indicator-border-radius: $border-radius !default;
28390
+ $grid-group-indicator-border-radius: $kendo-border-radius-md !default;
28303
28391
  $grid-group-indicator-gap: $table-cell-padding-y !default;
28304
28392
 
28305
28393
  $grid-grouping-row-border-top: 1px !default;
@@ -30520,9 +30608,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
30520
30608
  $spreadsheet-insert-image-dialog-preview-height: 230px !default;
30521
30609
  $spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
30522
30610
  $spreadsheet-insert-image-dialog-preview-border: $component-border !default;
30523
- $spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
30611
+ $spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
30524
30612
  $spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
30525
- $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;
30526
30614
  $spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
30527
30615
 
30528
30616
  $spreadsheet-drawing-handle-width: 6px !default;
@@ -30532,7 +30620,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
30532
30620
  $spreadsheet-drawing-handle-outline-color: $primary !default;
30533
30621
  $spreadsheet-drawing-handle-border-color: $selected-bg !default;
30534
30622
  $spreadsheet-drawing-handle-bg: $primary !default;
30535
- $spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
30623
+ $spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
30536
30624
 
30537
30625
  $spreadsheet-drawing-outline-style: solid !default;
30538
30626
  $spreadsheet-drawing-outline-width: 2px !default;
@@ -30641,10 +30729,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
30641
30729
  min-width: $form-line-height * 1em;
30642
30730
  }
30643
30731
 
30644
- .k-input,
30645
- .k-picker {
30646
- width: 5em;
30647
- }
30648
30732
  .k-color-picker {
30649
30733
  width: min-content;
30650
30734
  }
@@ -31119,7 +31203,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31119
31203
  box-sizing: border-box;
31120
31204
  }
31121
31205
  .k-spreadsheet-filter {
31122
- @include border-radius( $border-radius );
31206
+ @include border-radius( $kendo-border-radius );
31123
31207
  line-height: 1;
31124
31208
  position: absolute;
31125
31209
  cursor: pointer;
@@ -31795,6 +31879,7 @@ $pivotgrid-font-family: $font-family !default;
31795
31879
  $pivotgrid-font-size: $font-size !default;
31796
31880
  $pivotgrid-line-height: $line-height !default;
31797
31881
  $pivotgrid-border-width: 1px !default;
31882
+ $pivotgrid-icon-spacing: 8px !default;
31798
31883
 
31799
31884
  $pivotgrid-row-header-width: 300px !default;
31800
31885
  $pivotgrid-column-header-height: 75px !default;
@@ -31868,7 +31953,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
31868
31953
  $pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
31869
31954
  $pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
31870
31955
  $pivotgrid-calculated-field-border-width: 1px !default;
31871
- $pivotgrid-calculated-field-border-radius: $border-radius-sm !default;
31956
+ $pivotgrid-calculated-field-border-radius: $kendo-border-radius-sm !default;
31872
31957
  $pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
31873
31958
 
31874
31959
  $pivotgrid-calculated-field-bg: $component-bg !default;
@@ -32040,6 +32125,7 @@ $pivotgrid-remove-text: null !default;
32040
32125
 
32041
32126
  .k-pivotgrid-cell .k-icon {
32042
32127
  cursor: pointer;
32128
+ padding-inline-end: $pivotgrid-icon-spacing;
32043
32129
  }
32044
32130
 
32045
32131
  .k-pivotgrid-total {
@@ -33544,6 +33630,9 @@ $filemanager-preview-icon-border: null !default;
33544
33630
  flex-shrink: 0;
33545
33631
  display: inline-flex;
33546
33632
  position: relative;
33633
+ border-width: 0 1px;
33634
+ border-style: solid;
33635
+ border-color: inherit;
33547
33636
  }
33548
33637
 
33549
33638
 
@@ -33752,7 +33841,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
33752
33841
 
33753
33842
  $taskboard-column-width: 320px !default;
33754
33843
  $taskboard-column-border-width: 1px !default;
33755
- $taskboard-column-border-radius: $border-radius !default;
33844
+ $taskboard-column-border-radius: $kendo-border-radius-md !default;
33756
33845
  $taskboard-column-bg: $base-bg !default;
33757
33846
  $taskboard-column-text: null !default;
33758
33847
  $taskboard-column-border: transparent !default;
@@ -34304,7 +34393,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
34304
34393
 
34305
34394
  // Inline editor
34306
34395
  .k-editor-inline {
34307
- @include border-radius( $border-radius );
34396
+ @include border-radius( $kendo-border-radius-md );
34308
34397
  padding: $padding-y-sm $padding-x-sm;
34309
34398
  border: 1px solid transparent;
34310
34399
  word-wrap: break-word;
@@ -34725,7 +34814,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
34725
34814
  white-space: nowrap;
34726
34815
  overflow: hidden;
34727
34816
  cursor: pointer;
34728
- @include border-radius( $border-radius );
34817
+ @include border-radius( $kendo-border-radius-md );
34729
34818
 
34730
34819
  .k-i-file,
34731
34820
  .k-i-folder {
@@ -35197,6 +35286,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
35197
35286
  box-sizing: border-box;
35198
35287
  flex: none;
35199
35288
  overflow-y: auto;
35289
+
35290
+ .k-input-inner,
35291
+ .k-input-value-text {
35292
+ text-overflow: clip;
35293
+ }
35200
35294
  }
35201
35295
 
35202
35296
 
@@ -35483,6 +35577,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
35483
35577
  $gantt-action-on-offset-text: #000000 !default;
35484
35578
  $gantt-offset-resize-handler-top: 50% !default;
35485
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
+
35486
35585
  // #endregion
35487
35586
  // #region @import "_layout.scss"; -> packages/classic/scss/gantt/_layout.scss
35488
35587
  // #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
@@ -35994,7 +36093,7 @@ $gantt-offset-resize-handler-top: 50% !default;
35994
36093
  // Single task
35995
36094
  .k-single-wrap {}
35996
36095
  .k-task-single {
35997
- @include border-radius( $border-radius );
36096
+ @include border-radius( $kendo-border-radius-md );
35998
36097
  border-width: $gantt-task-border-width;
35999
36098
  border-style: solid;
36000
36099
  box-sizing: border-box;
@@ -36027,7 +36126,7 @@ $gantt-offset-resize-handler-top: 50% !default;
36027
36126
  }
36028
36127
  }
36029
36128
  .k-task-complete {
36030
- @include border-radius( $border-radius );
36129
+ @include border-radius( $kendo-border-radius-md );
36031
36130
  width: 20%;
36032
36131
  position: absolute;
36033
36132
  z-index: 1;
@@ -36097,7 +36196,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36097
36196
  }
36098
36197
 
36099
36198
  // Planned position
36100
-
36101
36199
  .k-gantt-planned {
36102
36200
  .k-gantt-dependencies,
36103
36201
  .k-task-dot,
@@ -36128,7 +36226,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36128
36226
  }
36129
36227
 
36130
36228
  // Planned element
36131
-
36132
36229
  .k-task-planned {
36133
36230
  margin: 0 0 $gantt-planned-margin-y;
36134
36231
  line-height: $gantt-planned-line-height;
@@ -36161,7 +36258,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36161
36258
  }
36162
36259
 
36163
36260
  // Planned Tooltip
36164
-
36165
36261
  .k-planned-tooltip {
36166
36262
  .k-task-content {
36167
36263
  display: block;
@@ -36169,7 +36265,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36169
36265
  }
36170
36266
 
36171
36267
  // Delay offset
36172
-
36173
36268
  .k-task-offset-wrap .k-task-content .k-resize-e {
36174
36269
  display: none;
36175
36270
  }
@@ -36200,6 +36295,36 @@ $gantt-offset-resize-handler-top: 50% !default;
36200
36295
  .k-task-offset:hover .k-resize-handle {
36201
36296
  visibility: visible;
36202
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
+ }
36203
36328
  }
36204
36329
 
36205
36330
  @include exports("gantt/export") {
@@ -36245,7 +36370,8 @@ $gantt-offset-resize-handler-top: 50% !default;
36245
36370
 
36246
36371
  @include exports("gantt/rtl") {
36247
36372
 
36248
- .k-rtl {
36373
+ .k-rtl,
36374
+ [dir="rtl"] {
36249
36375
 
36250
36376
  .k-gantt-rows,
36251
36377
  .k-gantt-columns {
@@ -36324,6 +36450,11 @@ $gantt-offset-resize-handler-top: 50% !default;
36324
36450
  .k-gantt-timeline .k-milestone-wrap .k-task-start {
36325
36451
  right: $gantt-rtl-milestone-dot-start-margin-x;
36326
36452
  }
36453
+
36454
+ .k-gantt-tooltip-validation::before {
36455
+ left: auto;
36456
+ right: 0;
36457
+ }
36327
36458
  }
36328
36459
  }
36329
36460
 
@@ -36578,7 +36709,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36578
36709
  }
36579
36710
 
36580
36711
  // Tooltips
36581
-
36582
36712
  .k-offset-tooltip-delayed {
36583
36713
  @include fill(
36584
36714
  $bg: $gantt-delayed-bg
@@ -36590,6 +36720,22 @@ $gantt-offset-resize-handler-top: 50% !default;
36590
36720
  $bg: $gantt-planned-bg
36591
36721
  );
36592
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
+ }
36593
36739
  }
36594
36740
 
36595
36741
  // #endregion
@@ -36653,7 +36799,7 @@ $scheduler-footer-border: $toolbar-border !default;
36653
36799
  $scheduler-footer-gradient: $toolbar-gradient !default;
36654
36800
 
36655
36801
  $scheduler-event-min-height: 25px !default;
36656
- $scheduler-event-border-radius: $border-radius !default;
36802
+ $scheduler-event-border-radius: $kendo-border-radius-md !default;
36657
36803
  $scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
36658
36804
 
36659
36805
  $scheduler-event-bg: tint( $selected-bg, 2 ) !default;
@@ -36720,7 +36866,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
36720
36866
 
36721
36867
  $scheduler-tooltip-event-padding-x: $padding-x !default;
36722
36868
  $scheduler-tooltip-event-padding-y: $padding-y !default;
36723
- $scheduler-tooltip-event-border-radius: $border-radius !default;
36869
+ $scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
36724
36870
  $scheduler-tooltip-event-gap: $padding-x-sm !default;
36725
36871
 
36726
36872
  $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
@@ -37123,7 +37269,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
37123
37269
  // Appointments
37124
37270
  kendo-scheduler .k-event,
37125
37271
  .k-event {
37126
- @include border-radius( $border-radius );
37272
+ @include border-radius( $kendo-border-radius );
37127
37273
  min-height: $scheduler-event-min-height;
37128
37274
  box-sizing: border-box;
37129
37275
  border-width: 0;
@@ -39166,7 +39312,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39166
39312
  display: inline-block;
39167
39313
  text-align: center;
39168
39314
  padding: $timeline-flag-padding-y $timeline-flag-padding-x;
39169
- border-radius: $border-radius;
39315
+ border-radius: $kendo-border-radius;
39170
39316
  line-height: $timeline-flag-line-height;
39171
39317
  min-width: $timeline-flag-min-width;
39172
39318
  max-width: $timeline-flag-max-width;
@@ -39230,7 +39376,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39230
39376
  }
39231
39377
 
39232
39378
  &::-webkit-scrollbar-thumb {
39233
- border-radius: $border-radius;
39379
+ border-radius: $kendo-border-radius;
39234
39380
  }
39235
39381
  }
39236
39382
  }
@@ -39274,7 +39420,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39274
39420
  height: 100%;
39275
39421
  width: $timeline-track-size;
39276
39422
  transform: translateX(-50%);
39277
- border-radius: $border-radius-lg;
39423
+ border-radius: $kendo-border-radius-lg;
39278
39424
  }
39279
39425
 
39280
39426
  .k-timeline-flag-wrap {
@@ -40643,7 +40789,7 @@ $treemap-line-height: $line-height !default;
40643
40789
  }
40644
40790
 
40645
40791
  .k-chart-tooltip {
40646
- @include border-radius( $border-radius );
40792
+ @include border-radius( $kendo-border-radius-md );
40647
40793
  font-size: $chart-tooltip-font-size;
40648
40794
  line-height: $line-height;
40649
40795
  padding: $tooltip-padding-y $tooltip-padding-x;
@@ -40751,7 +40897,7 @@ $treemap-line-height: $line-height !default;
40751
40897
  }
40752
40898
 
40753
40899
  .k-navigator-hint .k-scroll {
40754
- @include border-radius( $border-radius );
40900
+ @include border-radius( $kendo-border-radius-md );
40755
40901
  position: absolute;
40756
40902
  height: 4px;
40757
40903
  }
@@ -40978,7 +41124,7 @@ $treemap-line-height: $line-height !default;
40978
41124
  base: $base-bg,
40979
41125
  background: $chart-bg,
40980
41126
 
40981
- border-radius: $border-radius,
41127
+ border-radius: $kendo-border-radius-md,
40982
41128
 
40983
41129
  normal-background: $base-bg,
40984
41130
  normal-text-color: $base-text,
@@ -41507,7 +41653,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
41507
41653
  $orgchart-node-group-padding-y: $orgchart-spacer !default;
41508
41654
  $orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
41509
41655
  $orgchart-node-group-border-width: 1px !default;
41510
- $orgchart-node-group-border-radius: $border-radius !default;
41656
+ $orgchart-node-group-border-radius: $kendo-border-radius-md !default;
41511
41657
  $orgchart-node-group-bg: $base-bg !default;
41512
41658
  $orgchart-node-group-text: $base-text !default;
41513
41659
  $orgchart-node-group-border: $base-border !default;