@progress/kendo-theme-material 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.
- package/dist/all.css +1 -1
- package/dist/all.scss +14 -11
- package/dist/material-aqua-dark.css +1 -1
- package/dist/material-arctic.css +1 -1
- package/dist/material-burnt-teal.css +1 -1
- package/dist/material-dataviz-v4.css +1 -1
- package/dist/material-eggplant.css +1 -1
- package/dist/material-lime-dark.css +1 -1
- package/dist/material-lime.css +1 -1
- package/dist/material-main-dark.css +1 -1
- package/dist/material-main.css +1 -1
- package/dist/material-nova.css +1 -1
- package/dist/material-pacific-dark.css +1 -1
- package/dist/material-pacific.css +1 -1
- package/dist/material-sky-dark.css +1 -1
- package/dist/material-sky.css +1 -1
- package/dist/material-smoke.css +1 -1
- package/dist/meta/sassdoc-data.json +600 -546
- package/dist/meta/sassdoc-raw-data.json +277 -252
- package/dist/meta/variables.json +26 -22
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/splitter/_variables.scss +1 -1
- package/scss/stepper/_variables.scss +3 -0
- package/scss/timeline/_variables.scss +5 -5
- package/scss/tooltip/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -27385,7 +27385,7 @@ $kendo-picker-flat-hover-focus-border: null !default;
|
|
|
27385
27385
|
|
|
27386
27386
|
/// The vertical padding of the Tooltip.
|
|
27387
27387
|
/// @group tooltip
|
|
27388
|
-
$kendo-tooltip-padding-y:
|
|
27388
|
+
$kendo-tooltip-padding-y: k-spacing(.5) !default;
|
|
27389
27389
|
/// The horizontal padding of the Tooltip.
|
|
27390
27390
|
/// @group tooltip
|
|
27391
27391
|
$kendo-tooltip-padding-x: calc( #{$kendo-padding-md-x} / 2 ) !default;
|
|
@@ -45159,6 +45159,9 @@ $kendo-stepper-label-padding-x: k-spacing(3) !default;
|
|
|
45159
45159
|
/// The vertical padding the Stepper label.
|
|
45160
45160
|
/// @group stepper
|
|
45161
45161
|
$kendo-stepper-label-padding-y: calc( #{k-spacing(2.5)} / 2 ) !default;
|
|
45162
|
+
/// The border radius of the Stepper label.
|
|
45163
|
+
/// @group stepper
|
|
45164
|
+
$kendo-stepper-label-border-radius: k-border-radius(xxl) !default;
|
|
45162
45165
|
/// The width of the border around the Stepper.
|
|
45163
45166
|
/// @group stepper
|
|
45164
45167
|
$kendo-stepper-border-width: 0px !default;
|
|
@@ -45485,7 +45488,7 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
45485
45488
|
z-index: 1;
|
|
45486
45489
|
}
|
|
45487
45490
|
.k-step-label:only-child {
|
|
45488
|
-
@include border-radius(
|
|
45491
|
+
@include border-radius( $kendo-stepper-label-border-radius );
|
|
45489
45492
|
padding-block: $kendo-stepper-label-padding-y;
|
|
45490
45493
|
padding-inline: $kendo-stepper-label-padding-x;
|
|
45491
45494
|
border-width: 0;
|
|
@@ -45566,7 +45569,7 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
45566
45569
|
text-align: center;
|
|
45567
45570
|
}
|
|
45568
45571
|
.k-step-indicator + .k-step-label {
|
|
45569
|
-
margin-top: if($kendo-stepper-indicator-focus-offset > 0,
|
|
45572
|
+
margin-top: if($kendo-stepper-indicator-focus-offset > 0, k-spacing(1), 8px);
|
|
45570
45573
|
}
|
|
45571
45574
|
|
|
45572
45575
|
// Progressbar
|
|
@@ -48152,7 +48155,7 @@ $kendo-splitter-drag-handle-length: 20px !default;
|
|
|
48152
48155
|
$kendo-splitter-drag-handle-thickness: 2px !default;
|
|
48153
48156
|
/// The margin of the Splitter drag handle icon.
|
|
48154
48157
|
/// @group splitter
|
|
48155
|
-
$kendo-splitter-drag-icon-margin:
|
|
48158
|
+
$kendo-splitter-drag-icon-margin: k-spacing(2) !default;
|
|
48156
48159
|
/// The horizontal padding of the collapse icon in the Splitter.
|
|
48157
48160
|
/// @group splitter
|
|
48158
48161
|
$kendo-splitter-collapse-icon-padding-x: null !default;
|
|
@@ -64399,10 +64402,10 @@ $kendo-timeline-mobile-spacing-y: $kendo-padding-md-x !default;
|
|
|
64399
64402
|
|
|
64400
64403
|
/// The width of the Timeline track arrow.
|
|
64401
64404
|
/// @group timeline
|
|
64402
|
-
$kendo-timeline-track-arrow-width:
|
|
64405
|
+
$kendo-timeline-track-arrow-width: k-spacing(9) !default;
|
|
64403
64406
|
/// The height of the Timeline track arrow.
|
|
64404
64407
|
/// @group timeline
|
|
64405
|
-
$kendo-timeline-track-arrow-height:
|
|
64408
|
+
$kendo-timeline-track-arrow-height: k-spacing(9) !default;
|
|
64406
64409
|
|
|
64407
64410
|
/// The background color of the disabled Timeline track arrow.
|
|
64408
64411
|
/// @group timeline
|
|
@@ -64416,10 +64419,10 @@ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, tran
|
|
|
64416
64419
|
|
|
64417
64420
|
/// The size of the Timeline track.
|
|
64418
64421
|
/// @group timeline
|
|
64419
|
-
$kendo-timeline-track-size:
|
|
64422
|
+
$kendo-timeline-track-size: k-spacing(1.5) !default;
|
|
64420
64423
|
/// The bottom padding of the Timeline's track wrapper.
|
|
64421
64424
|
/// @group timeline
|
|
64422
|
-
$kendo-timeline-track-wrap-padding-bottom:
|
|
64425
|
+
$kendo-timeline-track-wrap-padding-bottom: calc( #{$kendo-timeline-track-size} / 2 ) !default;
|
|
64423
64426
|
/// The border width of the Timeline track.
|
|
64424
64427
|
/// @group timeline
|
|
64425
64428
|
$kendo-timeline-track-border-width: 1px !default;
|
|
@@ -64428,7 +64431,7 @@ $kendo-timeline-track-border-width: 1px !default;
|
|
|
64428
64431
|
$kendo-timeline-track-margin-bottom: k-spacing(4.5) !default;
|
|
64429
64432
|
/// The bottom offset of the Timeline track.
|
|
64430
64433
|
/// @group timeline
|
|
64431
|
-
$kendo-timeline-track-bottom-calc: calc(#{
|
|
64434
|
+
$kendo-timeline-track-bottom-calc: calc( calc( #{$kendo-timeline-track-arrow-height} / 2) + #{$kendo-timeline-track-wrap-padding-bottom}) !default;
|
|
64432
64435
|
/// The left offset of the Timeline track.
|
|
64433
64436
|
/// @group timeline
|
|
64434
64437
|
$kendo-timeline-track-start-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 * #{$kendo-timeline-track-border-width}) !default;
|
|
@@ -64872,7 +64875,7 @@ $kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-o
|
|
|
64872
64875
|
|
|
64873
64876
|
.k-timeline-track-wrap {
|
|
64874
64877
|
position: relative;
|
|
64875
|
-
padding:
|
|
64878
|
+
padding: calc( #{$kendo-timeline-track-arrow-height} / 2 ) 0;
|
|
64876
64879
|
|
|
64877
64880
|
&::after {
|
|
64878
64881
|
top: auto;
|
|
@@ -66927,7 +66930,7 @@ $kendo-orgchart-line-fill: $kendo-base-border !default;
|
|
|
66927
66930
|
|
|
66928
66931
|
/// The height of the OrgChart connecting line.
|
|
66929
66932
|
/// @group orgchart
|
|
66930
|
-
$kendo-orgchart-line-v-height:
|
|
66933
|
+
$kendo-orgchart-line-v-height: k-spacing(6) !default;
|
|
66931
66934
|
|
|
66932
66935
|
// #endregion
|
|
66933
66936
|
// #region @import "./_layout.scss"; -> scss/orgchart/_layout.scss
|