@progress/kendo-theme-bootstrap 8.0.2-dev.1 → 8.0.2-dev.3

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.scss CHANGED
@@ -712,7 +712,7 @@ $kendo-color-level-step: 8% !default;
712
712
  }
713
713
 
714
714
  // #endregion
715
- // #region @import "./_color-variations.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_color-variations.import.scss
715
+ // #region @import "./_color-system.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_color-system.import.scss
716
716
  /// Generates all color variations of a given main color
717
717
  /// @param {String} $name - The name of the main color
718
718
  /// @param {Color} $color - The color value to be assigned to the main color
@@ -835,6 +835,22 @@ $kendo-color-level-step: 8% !default;
835
835
 
836
836
  @return $result;
837
837
  }
838
+
839
+ /// Takes a color name from the $kendo-colors map as a parameter
840
+ /// and returns a CSS variable with the actual color as a fallback
841
+ /// @param {String} $key - The name of a color/key in the $kendo-colors map
842
+ /// @return {String} - CSS variable with the actual color as a fallback
843
+ ///
844
+ /// @group color-system
845
+ @function k-color($key) {
846
+ $_color: k-map-get($kendo-colors, $key);
847
+
848
+ @if ($_color) {
849
+ @return var(--kendo-color-#{$key}, $_color);
850
+ } @else {
851
+ @error "Color Variable \`#{$key}\` does not exists in the color collection.";
852
+ }
853
+ }
838
854
  // #endregion
839
855
  // #region @import "./_custom-properties.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_custom-properties.import.scss
840
856
  @function k-var( $prefix: kendo-, $var: null, $fallback: null ) {
@@ -6462,16 +6478,6 @@ $_default-colors: (
6462
6478
  $kendo-colors: $_default-colors !default;
6463
6479
  $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
6464
6480
 
6465
- @function k-color($key) {
6466
- $_color: k-map-get($kendo-colors, $key);
6467
-
6468
- @if ($_color) {
6469
- @return var(--kendo-color-#{$key}, $_color);
6470
- } @else {
6471
- @error "Color Variable \`#{$key}\` does not exists in the color collection.";
6472
- }
6473
- }
6474
-
6475
6481
  @mixin color-system--styles() {
6476
6482
  :root {
6477
6483
  @each $key, $value in $kendo-colors {
@@ -17305,7 +17311,6 @@ $kendo-headings: (
17305
17311
  font-weight: $kendo-h1-font-weight,
17306
17312
  letter-spacing: $kendo-h1-letter-spacing,
17307
17313
  margin: $kendo-h1-margin
17308
-
17309
17314
  ),
17310
17315
  h2: (
17311
17316
  font-size: $kendo-h2-font-size,
@@ -17346,7 +17351,7 @@ $kendo-headings: (
17346
17351
  font-weight: $kendo-h6-font-weight,
17347
17352
  letter-spacing: $kendo-h6-letter-spacing,
17348
17353
  margin: $kendo-h6-margin
17349
- ),
17354
+ )
17350
17355
  ) !default;
17351
17356
 
17352
17357
 
@@ -17513,7 +17518,7 @@ $kendo-display: (
17513
17518
  line-height: $kendo-display4-line-height,
17514
17519
  font-weight: $kendo-display4-font-weight,
17515
17520
  letter-spacing: $kendo-display4-letter-spacing
17516
- ),
17521
+ )
17517
17522
  ) !default;
17518
17523
 
17519
17524
  // #endregion
@@ -53487,10 +53492,9 @@ $kendo-pivotgrid-remove-text: null !default;
53487
53492
  .k-flex-row-reverse & {
53488
53493
  display: flex;
53489
53494
  align-items: center;
53495
+ justify-content: center;
53496
+ writing-mode: vertical-rl;
53490
53497
 
53491
- span {
53492
- writing-mode: vertical-rl;
53493
- }
53494
53498
  .k-icon {
53495
53499
  vertical-align: baseline;
53496
53500
  }