@progress/kendo-theme-classic 7.2.2-dev.0 → 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/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
package/dist/all.scss
CHANGED
|
@@ -711,27 +711,129 @@ $kendo-color-level-step: 8% !default;
|
|
|
711
711
|
@return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
|
|
712
712
|
}
|
|
713
713
|
|
|
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
|
|
714
716
|
/// Generates all color variations of a given main color
|
|
715
717
|
/// @param {String} $name - The name of the main color
|
|
716
|
-
/// @param {Color} $
|
|
718
|
+
/// @param {Color} $color - The color value to be assigned to the main color
|
|
719
|
+
/// @param {String} $theme - The theme the colors will be generated for
|
|
717
720
|
/// @return {Map} - A map with the generated keys and values
|
|
718
721
|
///
|
|
719
722
|
/// @group color-system
|
|
720
|
-
@function k-generate-
|
|
721
|
-
$
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
723
|
+
@function k-generate-color-variations( $name, $color, $theme: null ) {
|
|
724
|
+
$result: ();
|
|
725
|
+
|
|
726
|
+
// DataViz
|
|
727
|
+
@if (
|
|
728
|
+
$name == 'series-a' or
|
|
729
|
+
$name == 'series-b' or
|
|
730
|
+
$name == 'series-c' or
|
|
731
|
+
$name == 'series-d' or
|
|
732
|
+
$name == 'series-e' or
|
|
733
|
+
$name == 'series-f'
|
|
734
|
+
) {
|
|
735
|
+
$_variations: (
|
|
736
|
+
#{$name}: $color,
|
|
737
|
+
#{$name}-bold: k-color-mix(black, $color, 25%),
|
|
738
|
+
#{$name}-bolder: k-color-mix(black, $color, 50%),
|
|
739
|
+
#{$name}-subtle: k-color-mix(white, $color, 25%),
|
|
740
|
+
#{$name}-subtler: k-color-mix(white, $color, 50%),
|
|
741
|
+
);
|
|
742
|
+
|
|
743
|
+
$result: k-map-merge($result, $_variations);
|
|
744
|
+
} @else {
|
|
745
|
+
// Default
|
|
746
|
+
@if ( $theme == 'default' or $theme == null ) { // stylelint-disable-line
|
|
747
|
+
$_variations: (
|
|
748
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 4% ), k-try-tint( $color, 80% )),
|
|
749
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint($color, 65% )),
|
|
750
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 13% ), k-try-tint( $color, 50% )),
|
|
751
|
+
#{$name}: $color,
|
|
752
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
753
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
754
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
|
|
755
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 75% ), k-try-shade( $color, 65% )),
|
|
756
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 75% ), k-contrast-legacy( $color )),
|
|
757
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 75% ), k-try-shade( $color, 25% )),
|
|
758
|
+
);
|
|
759
|
+
|
|
760
|
+
$result: k-map-merge($result, $_variations);
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
// Bootstrap
|
|
764
|
+
@if ( $theme == 'bootstrap' ) {
|
|
765
|
+
$_variations: (
|
|
766
|
+
#{$name}-subtle: if( $name == 'base', k-try-tint( $color, 30% ), k-try-tint( $color, 80% )),
|
|
767
|
+
#{$name}-subtle-hover: if( $name == 'base', $color, k-try-tint($color, 65% )),
|
|
768
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint( $color, 50% )),
|
|
769
|
+
#{$name}: $color,
|
|
770
|
+
#{$name}-hover: k-color-darken( $color, 7.5% ),
|
|
771
|
+
#{$name}-active: k-color-darken( $color, 10% ),
|
|
772
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
|
|
773
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
|
|
774
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-color( $color )),
|
|
775
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
|
|
776
|
+
);
|
|
777
|
+
|
|
778
|
+
$result: k-map-merge($result, $_variations);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
// Material
|
|
782
|
+
@if ( $theme == 'material' ) {
|
|
783
|
+
$_variations: (
|
|
784
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 12% ), k-try-tint( $color, 80% )),
|
|
785
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 16% ), k-try-tint($color, 65% )),
|
|
786
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 24% ), k-try-tint( $color, 50% )),
|
|
787
|
+
#{$name}: $color,
|
|
788
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
789
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
790
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 32% ), k-try-tint( $color, 25% )),
|
|
791
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 87% ), k-try-shade( $color, 65% )),
|
|
792
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 87% ), k-contrast-color( $color )),
|
|
793
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 87% ), k-try-shade( $color, 50% )),
|
|
794
|
+
);
|
|
795
|
+
|
|
796
|
+
$result: k-map-merge($result, $_variations);
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
// Fluent
|
|
800
|
+
@if ( $theme == 'fluent' ) {
|
|
801
|
+
$_variations: (
|
|
802
|
+
#{$name}-subtle: if( $name == 'base', k-try-shade( $color, 2% ), k-try-tint( $color, 80% )),
|
|
803
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-shade( $color, 8% ), k-try-tint($color, 65% )),
|
|
804
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 12% ), k-try-tint( $color, 50% )),
|
|
805
|
+
#{$name}: $color,
|
|
806
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
807
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
808
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 18% ), k-try-tint( $color, 25% )),
|
|
809
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 74% ), k-try-shade( $color, 65% )),
|
|
810
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 86% ), k-contrast-legacy( $color )),
|
|
811
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 86% ), k-try-shade( $color, 25% )),
|
|
812
|
+
);
|
|
813
|
+
|
|
814
|
+
$result: k-map-merge($result, $_variations);
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
// Classic
|
|
818
|
+
@if ( $theme == 'classic' ) {
|
|
819
|
+
$_variations: (
|
|
820
|
+
#{$name}-subtle: if( $name == 'base', k-try-tint( $color, 20% ), k-try-tint( $color, 80% )),
|
|
821
|
+
#{$name}-subtle-hover: if( $name == 'base', k-try-tint( $color, 8% ), k-try-tint($color, 65% )),
|
|
822
|
+
#{$name}-subtle-active: if( $name == 'base', k-try-shade( $color, 6% ), k-try-tint( $color, 50% )),
|
|
823
|
+
#{$name}: $color,
|
|
824
|
+
#{$name}-hover: k-try-shade( $color, 1 ),
|
|
825
|
+
#{$name}-active: k-try-shade( $color, 2 ),
|
|
826
|
+
#{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 14% ), k-try-tint( $color, 25% )),
|
|
827
|
+
#{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
|
|
828
|
+
on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-legacy( $color )),
|
|
829
|
+
#{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
|
|
830
|
+
);
|
|
831
|
+
|
|
832
|
+
$result: k-map-merge($result, $_variations);
|
|
833
|
+
}
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
@return $result;
|
|
735
837
|
}
|
|
736
838
|
// #endregion
|
|
737
839
|
// #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
|
|
@@ -6951,13 +7053,57 @@ $_kendo-module-meta: (
|
|
|
6951
7053
|
|
|
6952
7054
|
// #endregion
|
|
6953
7055
|
// #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_variables.scss
|
|
7056
|
+
// #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
|
|
7057
|
+
// File already imported_once. Skipping output.
|
|
7058
|
+
// #endregion
|
|
7059
|
+
|
|
6954
7060
|
$kendo-prefix: k- !default;
|
|
6955
7061
|
$kendo-important: true !default;
|
|
7062
|
+
$kendo-enable-color-system: false !default;
|
|
6956
7063
|
|
|
6957
7064
|
$kendo-theme-colors: () !default;
|
|
6958
7065
|
|
|
6959
7066
|
$kendo-font-sizes: () !default;
|
|
6960
7067
|
|
|
7068
|
+
$kendo-util-colors-list: (
|
|
7069
|
+
primary-subtle,
|
|
7070
|
+
primary,
|
|
7071
|
+
primary-emphasis,
|
|
7072
|
+
secondary-subtle,
|
|
7073
|
+
secondary,
|
|
7074
|
+
secondary-emphasis,
|
|
7075
|
+
tertiary-subtle,
|
|
7076
|
+
tertiary,
|
|
7077
|
+
tertiary-emphasis,
|
|
7078
|
+
info-subtle,
|
|
7079
|
+
info,
|
|
7080
|
+
info-emphasis,
|
|
7081
|
+
success-subtle,
|
|
7082
|
+
success,
|
|
7083
|
+
success-emphasis,
|
|
7084
|
+
warning-subtle,
|
|
7085
|
+
warning,
|
|
7086
|
+
warning-emphasis,
|
|
7087
|
+
error-subtle,
|
|
7088
|
+
error,
|
|
7089
|
+
error-emphasis,
|
|
7090
|
+
light-subtle,
|
|
7091
|
+
light,
|
|
7092
|
+
light-emphasis,
|
|
7093
|
+
dark-subtle,
|
|
7094
|
+
dark,
|
|
7095
|
+
dark-emphasis,
|
|
7096
|
+
) !default;
|
|
7097
|
+
|
|
7098
|
+
$kendo-util-colors: () !default;
|
|
7099
|
+
@each $name, $color in $kendo-colors {
|
|
7100
|
+
@each $util-color in $kendo-util-colors-list {
|
|
7101
|
+
@if ( $name == $util-color ) {
|
|
7102
|
+
$kendo-util-colors: k-map-merge( $kendo-util-colors, ( $name: $color) );
|
|
7103
|
+
}
|
|
7104
|
+
}
|
|
7105
|
+
}
|
|
7106
|
+
|
|
6961
7107
|
$kendo-spacing: (
|
|
6962
7108
|
0: 0,
|
|
6963
7109
|
1px: 1px,
|
|
@@ -7645,7 +7791,7 @@ $kendo-utils: (
|
|
|
7645
7791
|
start,
|
|
7646
7792
|
end
|
|
7647
7793
|
),
|
|
7648
|
-
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
7794
|
+
"text-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
7649
7795
|
"inherit": inherit,
|
|
7650
7796
|
"current": currentColor,
|
|
7651
7797
|
"transparent": transparent,
|
|
@@ -7700,7 +7846,7 @@ $kendo-utils: (
|
|
|
7700
7846
|
content: content-box,
|
|
7701
7847
|
text: text
|
|
7702
7848
|
),
|
|
7703
|
-
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
7849
|
+
"background-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
7704
7850
|
"inherit": inherit,
|
|
7705
7851
|
"transparent": transparent,
|
|
7706
7852
|
"black": black,
|
|
@@ -7743,7 +7889,7 @@ $kendo-utils: (
|
|
|
7743
7889
|
hidden,
|
|
7744
7890
|
none
|
|
7745
7891
|
),
|
|
7746
|
-
"border-color": k-map-merge( $kendo-theme-colors, (
|
|
7892
|
+
"border-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
7747
7893
|
"inherit": inherit,
|
|
7748
7894
|
"current": currentColor,
|
|
7749
7895
|
"transparent": transparent,
|
|
@@ -7769,7 +7915,7 @@ $kendo-utils: (
|
|
|
7769
7915
|
outset,
|
|
7770
7916
|
none
|
|
7771
7917
|
),
|
|
7772
|
-
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
7918
|
+
"outline-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
7773
7919
|
"inherit": inherit,
|
|
7774
7920
|
"current": currentColor,
|
|
7775
7921
|
"transparent": transparent,
|
|
@@ -7988,7 +8134,7 @@ $kendo-utils: (
|
|
|
7988
8134
|
|
|
7989
8135
|
// #endregion
|
|
7990
8136
|
// #region @import "./_mixins.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_mixins.scss
|
|
7991
|
-
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important ) {
|
|
8137
|
+
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important, $css-var: null ) {
|
|
7992
8138
|
@if $values {
|
|
7993
8139
|
$_props: if( k-meta-type-of($props) == list, $props, ( $props ) );
|
|
7994
8140
|
$_fn: if( k-meta-function-exists( $function ), k-meta-get-function( $function ), null );
|
|
@@ -7998,25 +8144,33 @@ $kendo-utils: (
|
|
|
7998
8144
|
$_val: if( k-meta-type-of($values) == list, $key, $val );
|
|
7999
8145
|
$_name: k-escape-class-name( $name );
|
|
8000
8146
|
$_selector: if( $_key == DEFAULT, #{$kendo-prefix}#{$_name}, #{$kendo-prefix}#{$_name}-#{$_key});
|
|
8147
|
+
$_custom-prop: if( $_key == DEFAULT, var( --kendo-#{$css-var}, #{$_val} ), var( --kendo-#{$css-var}-#{$_key}, #{$_val} ) );
|
|
8001
8148
|
|
|
8002
8149
|
@if $important != only {
|
|
8003
8150
|
.#{$_selector} {
|
|
8004
8151
|
@each $prop in $_props {
|
|
8005
|
-
|
|
8152
|
+
@if $css-var {
|
|
8153
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_custom-prop), $_custom-prop );
|
|
8154
|
+
} @else {
|
|
8155
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val );
|
|
8156
|
+
}
|
|
8006
8157
|
}
|
|
8007
8158
|
}
|
|
8008
8159
|
}
|
|
8009
8160
|
@if $important {
|
|
8010
8161
|
.\!#{$_selector} {
|
|
8011
8162
|
@each $prop in $_props {
|
|
8012
|
-
|
|
8163
|
+
@if $css-var {
|
|
8164
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $-custom-prop), $-custom-prop ) !important; // stylelint-disable-line declaration-no-important
|
|
8165
|
+
} @else {
|
|
8166
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
|
|
8167
|
+
}
|
|
8013
8168
|
}
|
|
8014
8169
|
}
|
|
8015
8170
|
}
|
|
8016
8171
|
}
|
|
8017
8172
|
}
|
|
8018
8173
|
}
|
|
8019
|
-
|
|
8020
8174
|
// #endregion
|
|
8021
8175
|
|
|
8022
8176
|
// #region @import "./accessibility/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/accessibility/index.import.scss
|
|
@@ -12070,11 +12224,11 @@ $kendo-utils: (
|
|
|
12070
12224
|
|
|
12071
12225
|
// Text color utility classes
|
|
12072
12226
|
$kendo-utils-text-color: k-map-get( $kendo-utils, "text-color" ) !default;
|
|
12073
|
-
@include generate-utils( text, color, $kendo-utils-text-color );
|
|
12227
|
+
@include generate-utils( text, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
12074
12228
|
|
|
12075
12229
|
|
|
12076
12230
|
// Legacy aliases
|
|
12077
|
-
@include generate-utils( color, color, $kendo-utils-text-color );
|
|
12231
|
+
@include generate-utils( color, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
12078
12232
|
|
|
12079
12233
|
}
|
|
12080
12234
|
|
|
@@ -12372,7 +12526,7 @@ $kendo-utils: (
|
|
|
12372
12526
|
|
|
12373
12527
|
// Background color utility classes
|
|
12374
12528
|
$kendo-utils-background-color: k-map-get( $kendo-utils, "background-color" ) !default;
|
|
12375
|
-
@include generate-utils( bg, background-color, $kendo-utils-background-color );
|
|
12529
|
+
@include generate-utils( bg, background-color, $kendo-utils-background-color, $css-var: 'color' );
|
|
12376
12530
|
|
|
12377
12531
|
}
|
|
12378
12532
|
|
|
@@ -12516,13 +12670,7 @@ $kendo-utils: (
|
|
|
12516
12670
|
|
|
12517
12671
|
// Border color utility classes
|
|
12518
12672
|
$kendo-utils-border-color: k-map-get( $kendo-utils, "border-color" ) !default;
|
|
12519
|
-
@include generate-utils( border, border-color, $kendo-utils-border-color );
|
|
12520
|
-
@include generate-utils( border-t, border-top-color, $kendo-utils-border-color );
|
|
12521
|
-
@include generate-utils( border-r, border-right-color, $kendo-utils-border-color );
|
|
12522
|
-
@include generate-utils( border-b, border-bottom-color, $kendo-utils-border-color );
|
|
12523
|
-
@include generate-utils( border-l, border-left-color, $kendo-utils-border-color );
|
|
12524
|
-
@include generate-utils( border-x, border-inline-color, $kendo-utils-border-color );
|
|
12525
|
-
@include generate-utils( border-y, border-block-color, $kendo-utils-border-color );
|
|
12673
|
+
@include generate-utils( border, border-color, $kendo-utils-border-color, $css-var: 'color' );
|
|
12526
12674
|
|
|
12527
12675
|
}
|
|
12528
12676
|
|
|
@@ -13402,7 +13550,7 @@ $kendo-utils: (
|
|
|
13402
13550
|
|
|
13403
13551
|
// Outline color utility classes
|
|
13404
13552
|
$kendo-utils-outline-color: k-map-get( $kendo-utils, "outline-color" ) !default;
|
|
13405
|
-
@include generate-utils( outline, outline-color, $kendo-utils-outline-color );
|
|
13553
|
+
@include generate-utils( outline, outline-color, $kendo-utils-outline-color, $css-var: 'color' );
|
|
13406
13554
|
|
|
13407
13555
|
}
|
|
13408
13556
|
|
|
@@ -14792,7 +14940,7 @@ $kendo-utils: (
|
|
|
14792
14940
|
// #endregion
|
|
14793
14941
|
|
|
14794
14942
|
@mixin kendo-utils--elevation {
|
|
14795
|
-
@include generate-utils(elevation, box-shadow, $kendo-elevation);
|
|
14943
|
+
@include generate-utils(elevation, box-shadow, $kendo-elevation, $css-var: 'elevation');
|
|
14796
14944
|
}
|
|
14797
14945
|
|
|
14798
14946
|
// #endregion
|
package/dist/meta/variables.json
CHANGED
|
@@ -707,6 +707,14 @@
|
|
|
707
707
|
"type": "Bool",
|
|
708
708
|
"value": "true"
|
|
709
709
|
},
|
|
710
|
+
"kendo-util-colors-list": {
|
|
711
|
+
"type": "List",
|
|
712
|
+
"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"
|
|
713
|
+
},
|
|
714
|
+
"kendo-util-colors": {
|
|
715
|
+
"type": "Map",
|
|
716
|
+
"value": "(primary-subtle: #fff2eb, primary: #f35800, primary-emphasis: #ff8b47, secondary-subtle: #cacaca, secondary: #b6b6b6, secondary-emphasis: #7a7a7a, tertiary-subtle: #9cdffe, tertiary: #03a9f4, tertiary-emphasis: #2cbbfd, info-subtle: #cce5f3, info: #007bc3, info-emphasis: #409cd2, success-subtle: #bbdfc1, success: #3ea44e, success-emphasis: #6ebb7a, warning-subtle: #ffdead, warning: #ffa41f, warning-emphasis: #ffb240, error-subtle: #f4c3b8, error: #d92800, error-emphasis: #e35e40, light-subtle: #f0f0f0, light: #ebebeb, light-emphasis: #cacaca, dark-subtle: #cacaca, dark: #404040, dark-emphasis: #7a7a7a)"
|
|
717
|
+
},
|
|
710
718
|
"kendo-sizing": {
|
|
711
719
|
"type": "Map",
|
|
712
720
|
"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-classic",
|
|
3
3
|
"description": "Sass port of less based themes for 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": [
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "2.1.0",
|
|
56
|
-
"@progress/kendo-theme-core": "7.
|
|
57
|
-
"@progress/kendo-theme-default": "7.
|
|
58
|
-
"@progress/kendo-theme-utils": "7.
|
|
56
|
+
"@progress/kendo-theme-core": "7.3.0-dev.0",
|
|
57
|
+
"@progress/kendo-theme-default": "7.3.0-dev.0",
|
|
58
|
+
"@progress/kendo-theme-utils": "7.3.0-dev.0"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "01297a87bc94d867851e28577c04a0596e35e4f9"
|
|
65
65
|
}
|