@progress/kendo-theme-default 9.1.0-dev.2 → 9.1.0-dev.4

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 (36) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/all.scss +13 -10
  3. package/dist/default-blue.css +1 -1
  4. package/dist/default-dataviz-v4.css +1 -1
  5. package/dist/default-green.css +1 -1
  6. package/dist/default-main-dark.css +1 -1
  7. package/dist/default-main.css +1 -1
  8. package/dist/default-nordic.css +1 -1
  9. package/dist/default-ocean-blue-a11y.css +1 -1
  10. package/dist/default-ocean-blue.css +1 -1
  11. package/dist/default-orange.css +1 -1
  12. package/dist/default-purple.css +1 -1
  13. package/dist/default-turquoise.css +1 -1
  14. package/dist/default-urban.css +1 -1
  15. package/dist/meta/sassdoc-data.json +594 -540
  16. package/dist/meta/sassdoc-raw-data.json +276 -251
  17. package/dist/meta/variables.json +24 -20
  18. package/lib/swatches/default-blue.json +1 -1
  19. package/lib/swatches/default-dataviz-v4.json +1 -1
  20. package/lib/swatches/default-green.json +1 -1
  21. package/lib/swatches/default-main-dark.json +1 -1
  22. package/lib/swatches/default-main.json +1 -1
  23. package/lib/swatches/default-nordic.json +1 -1
  24. package/lib/swatches/default-ocean-blue-a11y.json +1 -1
  25. package/lib/swatches/default-ocean-blue.json +1 -1
  26. package/lib/swatches/default-orange.json +1 -1
  27. package/lib/swatches/default-purple.json +1 -1
  28. package/lib/swatches/default-turquoise.json +1 -1
  29. package/lib/swatches/default-urban.json +1 -1
  30. package/package.json +4 -4
  31. package/scss/orgchart/_variables.scss +1 -1
  32. package/scss/splitter/_variables.scss +1 -1
  33. package/scss/stepper/_layout.scss +2 -2
  34. package/scss/stepper/_variables.scss +3 -0
  35. package/scss/timeline/_layout.scss +1 -1
  36. package/scss/timeline/_variables.scss +5 -5
package/dist/all.scss CHANGED
@@ -41547,6 +41547,9 @@ $kendo-stepper-label-padding-x: k-spacing(3) !default;
41547
41547
  /// The vertical padding the Stepper label.
41548
41548
  /// @group stepper
41549
41549
  $kendo-stepper-label-padding-y: calc( #{k-spacing(2.5)} / 2 ) !default;
41550
+ /// The border radius of the Stepper label.
41551
+ /// @group stepper
41552
+ $kendo-stepper-label-border-radius: k-border-radius(xxxl) !default;
41550
41553
  /// The width of the border around the Stepper.
41551
41554
  /// @group stepper
41552
41555
  $kendo-stepper-border-width: 0px !default;
@@ -41872,7 +41875,7 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
41872
41875
  z-index: 1;
41873
41876
  }
41874
41877
  .k-step-label:only-child {
41875
- @include border-radius( k-math-div( ( $kendo-stepper-indicator-height + 2 * $kendo-stepper-indicator-border-width ), 2 ) );
41878
+ @include border-radius( $kendo-stepper-label-border-radius );
41876
41879
  padding-block: $kendo-stepper-label-padding-y;
41877
41880
  padding-inline: $kendo-stepper-label-padding-x;
41878
41881
  border-width: 0;
@@ -41953,7 +41956,7 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
41953
41956
  text-align: center;
41954
41957
  }
41955
41958
  .k-step-indicator + .k-step-label {
41956
- margin-top: if($kendo-stepper-indicator-focus-offset > 0, calc(8px - #{$kendo-stepper-indicator-focus-offset}), 8px);
41959
+ margin-top: if($kendo-stepper-indicator-focus-offset > 0, k-spacing(1), 8px);
41957
41960
  }
41958
41961
 
41959
41962
  // Progressbar
@@ -44428,7 +44431,7 @@ $kendo-splitter-drag-handle-length: 20px !default;
44428
44431
  $kendo-splitter-drag-handle-thickness: 2px !default;
44429
44432
  /// The margin of the Splitter drag handle icon.
44430
44433
  /// @group splitter
44431
- $kendo-splitter-drag-icon-margin: calc( #{k-spacing(3.5)} / 2 ) !default;
44434
+ $kendo-splitter-drag-icon-margin: k-spacing(2) !default;
44432
44435
  /// The horizontal padding of the collapse icon in the Splitter.
44433
44436
  /// @group splitter
44434
44437
  $kendo-splitter-collapse-icon-padding-x: null !default;
@@ -59618,10 +59621,10 @@ $kendo-timeline-mobile-spacing-y: k-spacing(4) !default;
59618
59621
 
59619
59622
  /// The width of the Timeline track arrow.
59620
59623
  /// @group timeline
59621
- $kendo-timeline-track-arrow-width: 30px !default;
59624
+ $kendo-timeline-track-arrow-width: k-spacing(7.5) !default;
59622
59625
  /// The height of the Timeline track arrow.
59623
59626
  /// @group timeline
59624
- $kendo-timeline-track-arrow-height: 30px !default;
59627
+ $kendo-timeline-track-arrow-height: k-spacing(7.5) !default;
59625
59628
 
59626
59629
  /// The background color of the disabled Timeline track arrow.
59627
59630
  /// @group timeline
@@ -59635,10 +59638,10 @@ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, k-co
59635
59638
 
59636
59639
  /// The size of the Timeline track.
59637
59640
  /// @group timeline
59638
- $kendo-timeline-track-size: 6px !default;
59641
+ $kendo-timeline-track-size: k-spacing(1.5) !default;
59639
59642
  /// The bottom padding of the Timeline's track wrapper.
59640
59643
  /// @group timeline
59641
- $kendo-timeline-track-wrap-padding-bottom: k-math-div( $kendo-timeline-track-size, 2 ) !default;
59644
+ $kendo-timeline-track-wrap-padding-bottom: calc( #{$kendo-timeline-track-size} / 2) !default;
59642
59645
  /// The border width of the Timeline track.
59643
59646
  /// @group timeline
59644
59647
  $kendo-timeline-track-border-width: 1px !default;
@@ -59647,7 +59650,7 @@ $kendo-timeline-track-border-width: 1px !default;
59647
59650
  $kendo-timeline-track-margin-bottom: k-spacing(4) !default;
59648
59651
  /// The bottom offset of the Timeline track.
59649
59652
  /// @group timeline
59650
- $kendo-timeline-track-bottom-calc: calc(#{k-math-div( $kendo-timeline-track-arrow-height, 2 )} + #{$kendo-timeline-track-wrap-padding-bottom}) !default;
59653
+ $kendo-timeline-track-bottom-calc: calc( calc( #{$kendo-timeline-track-arrow-height} / 2) + #{$kendo-timeline-track-wrap-padding-bottom}) !default;
59651
59654
  /// The left offset of the Timeline track.
59652
59655
  /// @group timeline
59653
59656
  $kendo-timeline-track-start-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 * #{$kendo-timeline-track-border-width}) !default;
@@ -60090,7 +60093,7 @@ $kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-o
60090
60093
 
60091
60094
  .k-timeline-track-wrap {
60092
60095
  position: relative;
60093
- padding: k-math-div( $kendo-timeline-track-arrow-height, 2 ) 0;
60096
+ padding: calc( #{$kendo-timeline-track-arrow-height} / 2 ) 0;
60094
60097
 
60095
60098
  &::after {
60096
60099
  top: auto;
@@ -62035,7 +62038,7 @@ $kendo-orgchart-line-fill: $kendo-base-border !default;
62035
62038
 
62036
62039
  /// The height of the OrgChart connecting line.
62037
62040
  /// @group orgchart
62038
- $kendo-orgchart-line-v-height: 25px !default;
62041
+ $kendo-orgchart-line-v-height: k-spacing(6) !default;
62039
62042
 
62040
62043
  // #endregion
62041
62044
  // #region @import "./_layout.scss"; -> scss/orgchart/_layout.scss