@progress/kendo-theme-material 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/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/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
|
|
@@ -7883,13 +7985,57 @@ $_kendo-module-meta: (
|
|
|
7883
7985
|
|
|
7884
7986
|
// #endregion
|
|
7885
7987
|
// #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_variables.scss
|
|
7988
|
+
// #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
|
|
7989
|
+
// File already imported_once. Skipping output.
|
|
7990
|
+
// #endregion
|
|
7991
|
+
|
|
7886
7992
|
$kendo-prefix: k- !default;
|
|
7887
7993
|
$kendo-important: true !default;
|
|
7994
|
+
$kendo-enable-color-system: false !default;
|
|
7888
7995
|
|
|
7889
7996
|
$kendo-theme-colors: () !default;
|
|
7890
7997
|
|
|
7891
7998
|
$kendo-font-sizes: () !default;
|
|
7892
7999
|
|
|
8000
|
+
$kendo-util-colors-list: (
|
|
8001
|
+
primary-subtle,
|
|
8002
|
+
primary,
|
|
8003
|
+
primary-emphasis,
|
|
8004
|
+
secondary-subtle,
|
|
8005
|
+
secondary,
|
|
8006
|
+
secondary-emphasis,
|
|
8007
|
+
tertiary-subtle,
|
|
8008
|
+
tertiary,
|
|
8009
|
+
tertiary-emphasis,
|
|
8010
|
+
info-subtle,
|
|
8011
|
+
info,
|
|
8012
|
+
info-emphasis,
|
|
8013
|
+
success-subtle,
|
|
8014
|
+
success,
|
|
8015
|
+
success-emphasis,
|
|
8016
|
+
warning-subtle,
|
|
8017
|
+
warning,
|
|
8018
|
+
warning-emphasis,
|
|
8019
|
+
error-subtle,
|
|
8020
|
+
error,
|
|
8021
|
+
error-emphasis,
|
|
8022
|
+
light-subtle,
|
|
8023
|
+
light,
|
|
8024
|
+
light-emphasis,
|
|
8025
|
+
dark-subtle,
|
|
8026
|
+
dark,
|
|
8027
|
+
dark-emphasis,
|
|
8028
|
+
) !default;
|
|
8029
|
+
|
|
8030
|
+
$kendo-util-colors: () !default;
|
|
8031
|
+
@each $name, $color in $kendo-colors {
|
|
8032
|
+
@each $util-color in $kendo-util-colors-list {
|
|
8033
|
+
@if ( $name == $util-color ) {
|
|
8034
|
+
$kendo-util-colors: k-map-merge( $kendo-util-colors, ( $name: $color) );
|
|
8035
|
+
}
|
|
8036
|
+
}
|
|
8037
|
+
}
|
|
8038
|
+
|
|
7893
8039
|
$kendo-spacing: (
|
|
7894
8040
|
0: 0,
|
|
7895
8041
|
1px: 1px,
|
|
@@ -8577,7 +8723,7 @@ $kendo-utils: (
|
|
|
8577
8723
|
start,
|
|
8578
8724
|
end
|
|
8579
8725
|
),
|
|
8580
|
-
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
8726
|
+
"text-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
8581
8727
|
"inherit": inherit,
|
|
8582
8728
|
"current": currentColor,
|
|
8583
8729
|
"transparent": transparent,
|
|
@@ -8632,7 +8778,7 @@ $kendo-utils: (
|
|
|
8632
8778
|
content: content-box,
|
|
8633
8779
|
text: text
|
|
8634
8780
|
),
|
|
8635
|
-
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
8781
|
+
"background-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
8636
8782
|
"inherit": inherit,
|
|
8637
8783
|
"transparent": transparent,
|
|
8638
8784
|
"black": black,
|
|
@@ -8675,7 +8821,7 @@ $kendo-utils: (
|
|
|
8675
8821
|
hidden,
|
|
8676
8822
|
none
|
|
8677
8823
|
),
|
|
8678
|
-
"border-color": k-map-merge( $kendo-theme-colors, (
|
|
8824
|
+
"border-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
8679
8825
|
"inherit": inherit,
|
|
8680
8826
|
"current": currentColor,
|
|
8681
8827
|
"transparent": transparent,
|
|
@@ -8701,7 +8847,7 @@ $kendo-utils: (
|
|
|
8701
8847
|
outset,
|
|
8702
8848
|
none
|
|
8703
8849
|
),
|
|
8704
|
-
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
8850
|
+
"outline-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
8705
8851
|
"inherit": inherit,
|
|
8706
8852
|
"current": currentColor,
|
|
8707
8853
|
"transparent": transparent,
|
|
@@ -8920,7 +9066,7 @@ $kendo-utils: (
|
|
|
8920
9066
|
|
|
8921
9067
|
// #endregion
|
|
8922
9068
|
// #region @import "./_mixins.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_mixins.scss
|
|
8923
|
-
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important ) {
|
|
9069
|
+
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important, $css-var: null ) {
|
|
8924
9070
|
@if $values {
|
|
8925
9071
|
$_props: if( k-meta-type-of($props) == list, $props, ( $props ) );
|
|
8926
9072
|
$_fn: if( k-meta-function-exists( $function ), k-meta-get-function( $function ), null );
|
|
@@ -8930,25 +9076,33 @@ $kendo-utils: (
|
|
|
8930
9076
|
$_val: if( k-meta-type-of($values) == list, $key, $val );
|
|
8931
9077
|
$_name: k-escape-class-name( $name );
|
|
8932
9078
|
$_selector: if( $_key == DEFAULT, #{$kendo-prefix}#{$_name}, #{$kendo-prefix}#{$_name}-#{$_key});
|
|
9079
|
+
$_custom-prop: if( $_key == DEFAULT, var( --kendo-#{$css-var}, #{$_val} ), var( --kendo-#{$css-var}-#{$_key}, #{$_val} ) );
|
|
8933
9080
|
|
|
8934
9081
|
@if $important != only {
|
|
8935
9082
|
.#{$_selector} {
|
|
8936
9083
|
@each $prop in $_props {
|
|
8937
|
-
|
|
9084
|
+
@if $css-var {
|
|
9085
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_custom-prop), $_custom-prop );
|
|
9086
|
+
} @else {
|
|
9087
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val );
|
|
9088
|
+
}
|
|
8938
9089
|
}
|
|
8939
9090
|
}
|
|
8940
9091
|
}
|
|
8941
9092
|
@if $important {
|
|
8942
9093
|
.\!#{$_selector} {
|
|
8943
9094
|
@each $prop in $_props {
|
|
8944
|
-
|
|
9095
|
+
@if $css-var {
|
|
9096
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $-custom-prop), $-custom-prop ) !important; // stylelint-disable-line declaration-no-important
|
|
9097
|
+
} @else {
|
|
9098
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
|
|
9099
|
+
}
|
|
8945
9100
|
}
|
|
8946
9101
|
}
|
|
8947
9102
|
}
|
|
8948
9103
|
}
|
|
8949
9104
|
}
|
|
8950
9105
|
}
|
|
8951
|
-
|
|
8952
9106
|
// #endregion
|
|
8953
9107
|
|
|
8954
9108
|
// #region @import "./accessibility/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/accessibility/index.import.scss
|
|
@@ -13002,11 +13156,11 @@ $kendo-utils: (
|
|
|
13002
13156
|
|
|
13003
13157
|
// Text color utility classes
|
|
13004
13158
|
$kendo-utils-text-color: k-map-get( $kendo-utils, "text-color" ) !default;
|
|
13005
|
-
@include generate-utils( text, color, $kendo-utils-text-color );
|
|
13159
|
+
@include generate-utils( text, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
13006
13160
|
|
|
13007
13161
|
|
|
13008
13162
|
// Legacy aliases
|
|
13009
|
-
@include generate-utils( color, color, $kendo-utils-text-color );
|
|
13163
|
+
@include generate-utils( color, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
13010
13164
|
|
|
13011
13165
|
}
|
|
13012
13166
|
|
|
@@ -13304,7 +13458,7 @@ $kendo-utils: (
|
|
|
13304
13458
|
|
|
13305
13459
|
// Background color utility classes
|
|
13306
13460
|
$kendo-utils-background-color: k-map-get( $kendo-utils, "background-color" ) !default;
|
|
13307
|
-
@include generate-utils( bg, background-color, $kendo-utils-background-color );
|
|
13461
|
+
@include generate-utils( bg, background-color, $kendo-utils-background-color, $css-var: 'color' );
|
|
13308
13462
|
|
|
13309
13463
|
}
|
|
13310
13464
|
|
|
@@ -13448,13 +13602,7 @@ $kendo-utils: (
|
|
|
13448
13602
|
|
|
13449
13603
|
// Border color utility classes
|
|
13450
13604
|
$kendo-utils-border-color: k-map-get( $kendo-utils, "border-color" ) !default;
|
|
13451
|
-
@include generate-utils( border, border-color, $kendo-utils-border-color );
|
|
13452
|
-
@include generate-utils( border-t, border-top-color, $kendo-utils-border-color );
|
|
13453
|
-
@include generate-utils( border-r, border-right-color, $kendo-utils-border-color );
|
|
13454
|
-
@include generate-utils( border-b, border-bottom-color, $kendo-utils-border-color );
|
|
13455
|
-
@include generate-utils( border-l, border-left-color, $kendo-utils-border-color );
|
|
13456
|
-
@include generate-utils( border-x, border-inline-color, $kendo-utils-border-color );
|
|
13457
|
-
@include generate-utils( border-y, border-block-color, $kendo-utils-border-color );
|
|
13605
|
+
@include generate-utils( border, border-color, $kendo-utils-border-color, $css-var: 'color' );
|
|
13458
13606
|
|
|
13459
13607
|
}
|
|
13460
13608
|
|
|
@@ -14334,7 +14482,7 @@ $kendo-utils: (
|
|
|
14334
14482
|
|
|
14335
14483
|
// Outline color utility classes
|
|
14336
14484
|
$kendo-utils-outline-color: k-map-get( $kendo-utils, "outline-color" ) !default;
|
|
14337
|
-
@include generate-utils( outline, outline-color, $kendo-utils-outline-color );
|
|
14485
|
+
@include generate-utils( outline, outline-color, $kendo-utils-outline-color, $css-var: 'color' );
|
|
14338
14486
|
|
|
14339
14487
|
}
|
|
14340
14488
|
|
|
@@ -15724,7 +15872,7 @@ $kendo-utils: (
|
|
|
15724
15872
|
// #endregion
|
|
15725
15873
|
|
|
15726
15874
|
@mixin kendo-utils--elevation {
|
|
15727
|
-
@include generate-utils(elevation, box-shadow, $kendo-elevation);
|
|
15875
|
+
@include generate-utils(elevation, box-shadow, $kendo-elevation, $css-var: 'elevation');
|
|
15728
15876
|
}
|
|
15729
15877
|
|
|
15730
15878
|
// #endregion
|
package/dist/meta/variables.json
CHANGED
|
@@ -827,6 +827,14 @@
|
|
|
827
827
|
"type": "Bool",
|
|
828
828
|
"value": "true"
|
|
829
829
|
},
|
|
830
|
+
"kendo-util-colors-list": {
|
|
831
|
+
"type": "List",
|
|
832
|
+
"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"
|
|
833
|
+
},
|
|
834
|
+
"kendo-util-colors": {
|
|
835
|
+
"type": "Map",
|
|
836
|
+
"value": "(primary-subtle: #d1d5ee, primary: #3f51b5, primary-emphasis: #97a0d7, secondary-subtle: #fbcdd9, secondary: #e51a5f, secondary-emphasis: #f58da9, tertiary-subtle: #c9dbd8, tertiary: #00695c, tertiary-emphasis: #84aea7, info-subtle: #c8d7fb, info: #0058e9, info-emphasis: #80a5f4, success-subtle: #d7f0cc, success: #37b400, success-emphasis: #93d775, warning-subtle: #fff0ce, warning: #ffc000, warning-emphasis: #ffdd8f, error-subtle: #fcc7c2, error: #f31700, error-emphasis: #fc8d83, light-subtle: #fafafa, light: #f5f5f5, light-emphasis: #e0e0e0, dark-subtle: #c7c7c7, dark: #424242, dark-emphasis: #9e9e9e)"
|
|
837
|
+
},
|
|
830
838
|
"kendo-sizing": {
|
|
831
839
|
"type": "Map",
|
|
832
840
|
"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-material",
|
|
3
3
|
"description": "Material theme for Kendo UI",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.3.0-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "2.1.0",
|
|
57
|
-
"@progress/kendo-theme-core": "7.
|
|
58
|
-
"@progress/kendo-theme-default": "7.
|
|
59
|
-
"@progress/kendo-theme-utils": "7.
|
|
57
|
+
"@progress/kendo-theme-core": "7.3.0-dev.0",
|
|
58
|
+
"@progress/kendo-theme-default": "7.3.0-dev.0",
|
|
59
|
+
"@progress/kendo-theme-utils": "7.3.0-dev.0"
|
|
60
60
|
},
|
|
61
61
|
"directories": {
|
|
62
62
|
"doc": "docs",
|
|
63
63
|
"lib": "lib"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "01297a87bc94d867851e28577c04a0596e35e4f9"
|
|
66
66
|
}
|