@progress/kendo-theme-default 7.2.1 → 7.3.0-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.
- package/dist/all.css +166 -886
- package/dist/all.scss +184 -36
- package/dist/meta/variables.json +8 -0
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
package/dist/all.scss
CHANGED
|
@@ -712,27 +712,129 @@ $kendo-color-level-step: 8% !default;
|
|
|
712
712
|
@return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
|
|
713
713
|
}
|
|
714
714
|
|
|
715
|
+
// #endregion
|
|
716
|
+
// #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
717
|
/// Generates all color variations of a given main color
|
|
716
718
|
/// @param {String} $name - The name of the main color
|
|
717
|
-
/// @param {Color} $
|
|
719
|
+
/// @param {Color} $color - The color value to be assigned to the main color
|
|
720
|
+
/// @param {String} $theme - The theme the colors will be generated for
|
|
718
721
|
/// @return {Map} - A map with the generated keys and values
|
|
719
722
|
///
|
|
720
723
|
/// @group color-system
|
|
721
|
-
@function k-generate-
|
|
722
|
-
$
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
724
|
+
@function k-generate-color-variations( $name, $color, $theme: null ) {
|
|
725
|
+
$result: ();
|
|
726
|
+
|
|
727
|
+
// DataViz
|
|
728
|
+
@if (
|
|
729
|
+
$name == 'series-a' or
|
|
730
|
+
$name == 'series-b' or
|
|
731
|
+
$name == 'series-c' or
|
|
732
|
+
$name == 'series-d' or
|
|
733
|
+
$name == 'series-e' or
|
|
734
|
+
$name == 'series-f'
|
|
735
|
+
) {
|
|
736
|
+
$_variations: (
|
|
737
|
+
#{$name}: $color,
|
|
738
|
+
#{$name}-bold: k-color-mix(black, $color, 25%),
|
|
739
|
+
#{$name}-bolder: k-color-mix(black, $color, 50%),
|
|
740
|
+
#{$name}-subtle: k-color-mix(white, $color, 25%),
|
|
741
|
+
#{$name}-subtler: k-color-mix(white, $color, 50%),
|
|
742
|
+
);
|
|
743
|
+
|
|
744
|
+
$result: k-map-merge($result, $_variations);
|
|
745
|
+
} @else {
|
|
746
|
+
// Default
|
|
747
|
+
@if ( $theme == 'default' or $theme == null ) { // stylelint-disable-line
|
|
748
|
+
$_variations: (
|
|
749
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 4% ), k-try-tint( $color, 80% )),
|
|
750
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint($color, 65% )),
|
|
751
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 13% ), k-try-tint( $color, 50% )),
|
|
752
|
+
#{$name}: $color,
|
|
753
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
754
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
755
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
|
|
756
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 75% ), k-try-shade( $color, 65% )),
|
|
757
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 75% ), k-contrast-legacy( $color )),
|
|
758
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 75% ), k-try-shade( $color, 25% )),
|
|
759
|
+
);
|
|
760
|
+
|
|
761
|
+
$result: k-map-merge($result, $_variations);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
// Bootstrap
|
|
765
|
+
@if ( $theme == 'bootstrap' ) {
|
|
766
|
+
$_variations: (
|
|
767
|
+
#{$name}-subtle: if( $name == 'base', k-try-tint( $color, 30% ), k-try-tint( $color, 80% )),
|
|
768
|
+
#{$name}-subtle-hover: if( $name == 'base', $color, k-try-tint($color, 65% )),
|
|
769
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint( $color, 50% )),
|
|
770
|
+
#{$name}: $color,
|
|
771
|
+
#{$name}-hover: k-color-darken( $color, 7.5% ),
|
|
772
|
+
#{$name}-active: k-color-darken( $color, 10% ),
|
|
773
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
|
|
774
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
|
|
775
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-color( $color )),
|
|
776
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
|
|
777
|
+
);
|
|
778
|
+
|
|
779
|
+
$result: k-map-merge($result, $_variations);
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
// Material
|
|
783
|
+
@if ( $theme == 'material' ) {
|
|
784
|
+
$_variations: (
|
|
785
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 12% ), k-try-tint( $color, 80% )),
|
|
786
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 16% ), k-try-tint($color, 65% )),
|
|
787
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 24% ), k-try-tint( $color, 50% )),
|
|
788
|
+
#{$name}: $color,
|
|
789
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
790
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
791
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 32% ), k-try-tint( $color, 25% )),
|
|
792
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 87% ), k-try-shade( $color, 65% )),
|
|
793
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 87% ), k-contrast-color( $color )),
|
|
794
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 87% ), k-try-shade( $color, 50% )),
|
|
795
|
+
);
|
|
796
|
+
|
|
797
|
+
$result: k-map-merge($result, $_variations);
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
// Fluent
|
|
801
|
+
@if ( $theme == 'fluent' ) {
|
|
802
|
+
$_variations: (
|
|
803
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 2% ), k-try-tint( $color, 80% )),
|
|
804
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint($color, 65% )),
|
|
805
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 12% ), k-try-tint( $color, 50% )),
|
|
806
|
+
#{$name}: $color,
|
|
807
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
808
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
809
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 18% ), k-try-tint( $color, 25% )),
|
|
810
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 74% ), k-try-shade( $color, 65% )),
|
|
811
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 86% ), k-contrast-legacy( $color )),
|
|
812
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 86% ), k-try-shade( $color, 25% )),
|
|
813
|
+
);
|
|
814
|
+
|
|
815
|
+
$result: k-map-merge($result, $_variations);
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
// Classic
|
|
819
|
+
@if ( $theme == 'classic' ) {
|
|
820
|
+
$_variations: (
|
|
821
|
+
#{$name}-subtle: if( $name == 'base', k-try-tint( $color, 20% ), k-try-tint( $color, 80% )),
|
|
822
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-tint( $color, 8% ), k-try-tint($color, 65% )),
|
|
823
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 6% ), k-try-tint( $color, 50% )),
|
|
824
|
+
#{$name}: $color,
|
|
825
|
+
#{$name}-hover: k-try-shade( $color, 1 ),
|
|
826
|
+
#{$name}-active: k-try-shade( $color, 2 ),
|
|
827
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 14% ), k-try-tint( $color, 25% )),
|
|
828
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
|
|
829
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-legacy( $color )),
|
|
830
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
|
|
831
|
+
);
|
|
832
|
+
|
|
833
|
+
$result: k-map-merge($result, $_variations);
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
@return $result;
|
|
736
838
|
}
|
|
737
839
|
// #endregion
|
|
738
840
|
// #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
|
|
@@ -6984,13 +7086,57 @@ $_kendo-module-meta: (
|
|
|
6984
7086
|
|
|
6985
7087
|
// #endregion
|
|
6986
7088
|
// #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_variables.scss
|
|
7089
|
+
// #region @import "@progress/kendo-theme-core/scss/color-system/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/index.import.scss
|
|
7090
|
+
// File already imported_once. Skipping output.
|
|
7091
|
+
// #endregion
|
|
7092
|
+
|
|
6987
7093
|
$kendo-prefix: k- !default;
|
|
6988
7094
|
$kendo-important: true !default;
|
|
7095
|
+
$kendo-enable-color-system: false !default;
|
|
6989
7096
|
|
|
6990
7097
|
$kendo-theme-colors: () !default;
|
|
6991
7098
|
|
|
6992
7099
|
$kendo-font-sizes: () !default;
|
|
6993
7100
|
|
|
7101
|
+
$kendo-util-colors-list: (
|
|
7102
|
+
primary-subtle,
|
|
7103
|
+
primary,
|
|
7104
|
+
primary-emphasis,
|
|
7105
|
+
secondary-subtle,
|
|
7106
|
+
secondary,
|
|
7107
|
+
secondary-emphasis,
|
|
7108
|
+
tertiary-subtle,
|
|
7109
|
+
tertiary,
|
|
7110
|
+
tertiary-emphasis,
|
|
7111
|
+
info-subtle,
|
|
7112
|
+
info,
|
|
7113
|
+
info-emphasis,
|
|
7114
|
+
success-subtle,
|
|
7115
|
+
success,
|
|
7116
|
+
success-emphasis,
|
|
7117
|
+
warning-subtle,
|
|
7118
|
+
warning,
|
|
7119
|
+
warning-emphasis,
|
|
7120
|
+
error-subtle,
|
|
7121
|
+
error,
|
|
7122
|
+
error-emphasis,
|
|
7123
|
+
light-subtle,
|
|
7124
|
+
light,
|
|
7125
|
+
light-emphasis,
|
|
7126
|
+
dark-subtle,
|
|
7127
|
+
dark,
|
|
7128
|
+
dark-emphasis,
|
|
7129
|
+
) !default;
|
|
7130
|
+
|
|
7131
|
+
$kendo-util-colors: () !default;
|
|
7132
|
+
@each $name, $color in $kendo-colors {
|
|
7133
|
+
@each $util-color in $kendo-util-colors-list {
|
|
7134
|
+
@if ( $name == $util-color ) {
|
|
7135
|
+
$kendo-util-colors: k-map-merge( $kendo-util-colors, ( $name: $color) );
|
|
7136
|
+
}
|
|
7137
|
+
}
|
|
7138
|
+
}
|
|
7139
|
+
|
|
6994
7140
|
$kendo-spacing: (
|
|
6995
7141
|
0: 0,
|
|
6996
7142
|
1px: 1px,
|
|
@@ -7678,7 +7824,7 @@ $kendo-utils: (
|
|
|
7678
7824
|
start,
|
|
7679
7825
|
end
|
|
7680
7826
|
),
|
|
7681
|
-
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
7827
|
+
"text-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
7682
7828
|
"inherit": inherit,
|
|
7683
7829
|
"current": currentColor,
|
|
7684
7830
|
"transparent": transparent,
|
|
@@ -7733,7 +7879,7 @@ $kendo-utils: (
|
|
|
7733
7879
|
content: content-box,
|
|
7734
7880
|
text: text
|
|
7735
7881
|
),
|
|
7736
|
-
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
7882
|
+
"background-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
7737
7883
|
"inherit": inherit,
|
|
7738
7884
|
"transparent": transparent,
|
|
7739
7885
|
"black": black,
|
|
@@ -7776,7 +7922,7 @@ $kendo-utils: (
|
|
|
7776
7922
|
hidden,
|
|
7777
7923
|
none
|
|
7778
7924
|
),
|
|
7779
|
-
"border-color": k-map-merge( $kendo-theme-colors, (
|
|
7925
|
+
"border-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
7780
7926
|
"inherit": inherit,
|
|
7781
7927
|
"current": currentColor,
|
|
7782
7928
|
"transparent": transparent,
|
|
@@ -7802,7 +7948,7 @@ $kendo-utils: (
|
|
|
7802
7948
|
outset,
|
|
7803
7949
|
none
|
|
7804
7950
|
),
|
|
7805
|
-
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
7951
|
+
"outline-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
7806
7952
|
"inherit": inherit,
|
|
7807
7953
|
"current": currentColor,
|
|
7808
7954
|
"transparent": transparent,
|
|
@@ -8021,7 +8167,7 @@ $kendo-utils: (
|
|
|
8021
8167
|
|
|
8022
8168
|
// #endregion
|
|
8023
8169
|
// #region @import "./_mixins.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_mixins.scss
|
|
8024
|
-
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important ) {
|
|
8170
|
+
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important, $css-var: null ) {
|
|
8025
8171
|
@if $values {
|
|
8026
8172
|
$_props: if( k-meta-type-of($props) == list, $props, ( $props ) );
|
|
8027
8173
|
$_fn: if( k-meta-function-exists( $function ), k-meta-get-function( $function ), null );
|
|
@@ -8031,25 +8177,33 @@ $kendo-utils: (
|
|
|
8031
8177
|
$_val: if( k-meta-type-of($values) == list, $key, $val );
|
|
8032
8178
|
$_name: k-escape-class-name( $name );
|
|
8033
8179
|
$_selector: if( $_key == DEFAULT, #{$kendo-prefix}#{$_name}, #{$kendo-prefix}#{$_name}-#{$_key});
|
|
8180
|
+
$_custom-prop: if( $_key == DEFAULT, var( --kendo-#{$css-var}, #{$_val} ), var( --kendo-#{$css-var}-#{$_key}, #{$_val} ) );
|
|
8034
8181
|
|
|
8035
8182
|
@if $important != only {
|
|
8036
8183
|
.#{$_selector} {
|
|
8037
8184
|
@each $prop in $_props {
|
|
8038
|
-
|
|
8185
|
+
@if $css-var {
|
|
8186
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_custom-prop), $_custom-prop );
|
|
8187
|
+
} @else {
|
|
8188
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val );
|
|
8189
|
+
}
|
|
8039
8190
|
}
|
|
8040
8191
|
}
|
|
8041
8192
|
}
|
|
8042
8193
|
@if $important {
|
|
8043
8194
|
.\!#{$_selector} {
|
|
8044
8195
|
@each $prop in $_props {
|
|
8045
|
-
|
|
8196
|
+
@if $css-var {
|
|
8197
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $-custom-prop), $-custom-prop ) !important; // stylelint-disable-line declaration-no-important
|
|
8198
|
+
} @else {
|
|
8199
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
|
|
8200
|
+
}
|
|
8046
8201
|
}
|
|
8047
8202
|
}
|
|
8048
8203
|
}
|
|
8049
8204
|
}
|
|
8050
8205
|
}
|
|
8051
8206
|
}
|
|
8052
|
-
|
|
8053
8207
|
// #endregion
|
|
8054
8208
|
|
|
8055
8209
|
// #region @import "./accessibility/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/accessibility/index.import.scss
|
|
@@ -12103,11 +12257,11 @@ $kendo-utils: (
|
|
|
12103
12257
|
|
|
12104
12258
|
// Text color utility classes
|
|
12105
12259
|
$kendo-utils-text-color: k-map-get( $kendo-utils, "text-color" ) !default;
|
|
12106
|
-
@include generate-utils( text, color, $kendo-utils-text-color );
|
|
12260
|
+
@include generate-utils( text, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
12107
12261
|
|
|
12108
12262
|
|
|
12109
12263
|
// Legacy aliases
|
|
12110
|
-
@include generate-utils( color, color, $kendo-utils-text-color );
|
|
12264
|
+
@include generate-utils( color, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
12111
12265
|
|
|
12112
12266
|
}
|
|
12113
12267
|
|
|
@@ -12405,7 +12559,7 @@ $kendo-utils: (
|
|
|
12405
12559
|
|
|
12406
12560
|
// Background color utility classes
|
|
12407
12561
|
$kendo-utils-background-color: k-map-get( $kendo-utils, "background-color" ) !default;
|
|
12408
|
-
@include generate-utils( bg, background-color, $kendo-utils-background-color );
|
|
12562
|
+
@include generate-utils( bg, background-color, $kendo-utils-background-color, $css-var: 'color' );
|
|
12409
12563
|
|
|
12410
12564
|
}
|
|
12411
12565
|
|
|
@@ -12549,13 +12703,7 @@ $kendo-utils: (
|
|
|
12549
12703
|
|
|
12550
12704
|
// Border color utility classes
|
|
12551
12705
|
$kendo-utils-border-color: k-map-get( $kendo-utils, "border-color" ) !default;
|
|
12552
|
-
@include generate-utils( border, border-color, $kendo-utils-border-color );
|
|
12553
|
-
@include generate-utils( border-t, border-top-color, $kendo-utils-border-color );
|
|
12554
|
-
@include generate-utils( border-r, border-right-color, $kendo-utils-border-color );
|
|
12555
|
-
@include generate-utils( border-b, border-bottom-color, $kendo-utils-border-color );
|
|
12556
|
-
@include generate-utils( border-l, border-left-color, $kendo-utils-border-color );
|
|
12557
|
-
@include generate-utils( border-x, border-inline-color, $kendo-utils-border-color );
|
|
12558
|
-
@include generate-utils( border-y, border-block-color, $kendo-utils-border-color );
|
|
12706
|
+
@include generate-utils( border, border-color, $kendo-utils-border-color, $css-var: 'color' );
|
|
12559
12707
|
|
|
12560
12708
|
}
|
|
12561
12709
|
|
|
@@ -13435,7 +13583,7 @@ $kendo-utils: (
|
|
|
13435
13583
|
|
|
13436
13584
|
// Outline color utility classes
|
|
13437
13585
|
$kendo-utils-outline-color: k-map-get( $kendo-utils, "outline-color" ) !default;
|
|
13438
|
-
@include generate-utils( outline, outline-color, $kendo-utils-outline-color );
|
|
13586
|
+
@include generate-utils( outline, outline-color, $kendo-utils-outline-color, $css-var: 'color' );
|
|
13439
13587
|
|
|
13440
13588
|
}
|
|
13441
13589
|
|
|
@@ -14825,7 +14973,7 @@ $kendo-utils: (
|
|
|
14825
14973
|
// #endregion
|
|
14826
14974
|
|
|
14827
14975
|
@mixin kendo-utils--elevation {
|
|
14828
|
-
@include generate-utils(elevation, box-shadow, $kendo-elevation);
|
|
14976
|
+
@include generate-utils(elevation, box-shadow, $kendo-elevation, $css-var: 'elevation');
|
|
14829
14977
|
}
|
|
14830
14978
|
|
|
14831
14979
|
// #endregion
|
package/dist/meta/variables.json
CHANGED
|
@@ -703,6 +703,14 @@
|
|
|
703
703
|
"type": "Bool",
|
|
704
704
|
"value": "true"
|
|
705
705
|
},
|
|
706
|
+
"kendo-util-colors-list": {
|
|
707
|
+
"type": "List",
|
|
708
|
+
"value": "primary-subtle, primary, primary-emphasis, secondary-subtle, secondary, secondary-emphasis, tertiary-subtle, tertiary, tertiary-emphasis, info-subtle, info, info-emphasis, success-subtle, success, success-emphasis, warning-subtle, warning, warning-emphasis, error-subtle, error, error-emphasis, light-subtle, light, light-emphasis, dark-subtle, dark, dark-emphasis"
|
|
709
|
+
},
|
|
710
|
+
"kendo-util-colors": {
|
|
711
|
+
"type": "Map",
|
|
712
|
+
"value": "(primary-subtle: #ffeceb, primary: #ff6358, primary-emphasis: #ff9d97, secondary-subtle: #fafafa, secondary: #666666, secondary-emphasis: #e0e0e0, tertiary-subtle: #d8f1fd, tertiary: #03a9f4, tertiary-emphasis: #61c9f9, info-subtle: #d2e2fb, info: #0058e9, info-emphasis: #6098f2, success-subtle: #dcf0d3, success: #37b400, success-emphasis: #81d15f, warning-subtle: #fff4d3, warning: #ffc000, warning-emphasis: #ffd760, error-subtle: #fcddda, error: #f31700, error-emphasis: #f76f60, light-subtle: #fafafa, light: #ebebeb, light-emphasis: #d6d6d6, dark-subtle: #c2c2c2, dark: #3d3d3d, dark-emphasis: #666666)"
|
|
713
|
+
},
|
|
706
714
|
"kendo-sizing": {
|
|
707
715
|
"type": "Map",
|
|
708
716
|
"value": "(0: 0, 1px: 1px, 0.5: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content)"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.3.0-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@progress/kendo-svg-icons": "2.1.0",
|
|
55
|
-
"@progress/kendo-theme-core": "7.
|
|
56
|
-
"@progress/kendo-theme-utils": "7.
|
|
55
|
+
"@progress/kendo-theme-core": "7.3.0-dev.0",
|
|
56
|
+
"@progress/kendo-theme-utils": "7.3.0-dev.0"
|
|
57
57
|
},
|
|
58
58
|
"directories": {
|
|
59
59
|
"doc": "docs",
|
|
60
60
|
"lib": "lib"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "01297a87bc94d867851e28577c04a0596e35e4f9"
|
|
63
63
|
}
|