@progress/kendo-theme-bootstrap 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/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.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
|
|
@@ -8823,13 +8925,57 @@ $_kendo-module-meta: (
|
|
|
8823
8925
|
|
|
8824
8926
|
// #endregion
|
|
8825
8927
|
// #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_variables.scss
|
|
8928
|
+
// #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
|
|
8929
|
+
// File already imported_once. Skipping output.
|
|
8930
|
+
// #endregion
|
|
8931
|
+
|
|
8826
8932
|
$kendo-prefix: k- !default;
|
|
8827
8933
|
$kendo-important: true !default;
|
|
8934
|
+
$kendo-enable-color-system: false !default;
|
|
8828
8935
|
|
|
8829
8936
|
$kendo-theme-colors: () !default;
|
|
8830
8937
|
|
|
8831
8938
|
$kendo-font-sizes: () !default;
|
|
8832
8939
|
|
|
8940
|
+
$kendo-util-colors-list: (
|
|
8941
|
+
primary-subtle,
|
|
8942
|
+
primary,
|
|
8943
|
+
primary-emphasis,
|
|
8944
|
+
secondary-subtle,
|
|
8945
|
+
secondary,
|
|
8946
|
+
secondary-emphasis,
|
|
8947
|
+
tertiary-subtle,
|
|
8948
|
+
tertiary,
|
|
8949
|
+
tertiary-emphasis,
|
|
8950
|
+
info-subtle,
|
|
8951
|
+
info,
|
|
8952
|
+
info-emphasis,
|
|
8953
|
+
success-subtle,
|
|
8954
|
+
success,
|
|
8955
|
+
success-emphasis,
|
|
8956
|
+
warning-subtle,
|
|
8957
|
+
warning,
|
|
8958
|
+
warning-emphasis,
|
|
8959
|
+
error-subtle,
|
|
8960
|
+
error,
|
|
8961
|
+
error-emphasis,
|
|
8962
|
+
light-subtle,
|
|
8963
|
+
light,
|
|
8964
|
+
light-emphasis,
|
|
8965
|
+
dark-subtle,
|
|
8966
|
+
dark,
|
|
8967
|
+
dark-emphasis,
|
|
8968
|
+
) !default;
|
|
8969
|
+
|
|
8970
|
+
$kendo-util-colors: () !default;
|
|
8971
|
+
@each $name, $color in $kendo-colors {
|
|
8972
|
+
@each $util-color in $kendo-util-colors-list {
|
|
8973
|
+
@if ( $name == $util-color ) {
|
|
8974
|
+
$kendo-util-colors: k-map-merge( $kendo-util-colors, ( $name: $color) );
|
|
8975
|
+
}
|
|
8976
|
+
}
|
|
8977
|
+
}
|
|
8978
|
+
|
|
8833
8979
|
$kendo-spacing: (
|
|
8834
8980
|
0: 0,
|
|
8835
8981
|
1px: 1px,
|
|
@@ -9517,7 +9663,7 @@ $kendo-utils: (
|
|
|
9517
9663
|
start,
|
|
9518
9664
|
end
|
|
9519
9665
|
),
|
|
9520
|
-
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
9666
|
+
"text-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
9521
9667
|
"inherit": inherit,
|
|
9522
9668
|
"current": currentColor,
|
|
9523
9669
|
"transparent": transparent,
|
|
@@ -9572,7 +9718,7 @@ $kendo-utils: (
|
|
|
9572
9718
|
content: content-box,
|
|
9573
9719
|
text: text
|
|
9574
9720
|
),
|
|
9575
|
-
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
9721
|
+
"background-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
9576
9722
|
"inherit": inherit,
|
|
9577
9723
|
"transparent": transparent,
|
|
9578
9724
|
"black": black,
|
|
@@ -9615,7 +9761,7 @@ $kendo-utils: (
|
|
|
9615
9761
|
hidden,
|
|
9616
9762
|
none
|
|
9617
9763
|
),
|
|
9618
|
-
"border-color": k-map-merge( $kendo-theme-colors, (
|
|
9764
|
+
"border-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
9619
9765
|
"inherit": inherit,
|
|
9620
9766
|
"current": currentColor,
|
|
9621
9767
|
"transparent": transparent,
|
|
@@ -9641,7 +9787,7 @@ $kendo-utils: (
|
|
|
9641
9787
|
outset,
|
|
9642
9788
|
none
|
|
9643
9789
|
),
|
|
9644
|
-
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
9790
|
+
"outline-color": k-map-merge( if( $kendo-enable-color-system, $kendo-util-colors, $kendo-theme-colors ), (
|
|
9645
9791
|
"inherit": inherit,
|
|
9646
9792
|
"current": currentColor,
|
|
9647
9793
|
"transparent": transparent,
|
|
@@ -9860,7 +10006,7 @@ $kendo-utils: (
|
|
|
9860
10006
|
|
|
9861
10007
|
// #endregion
|
|
9862
10008
|
// #region @import "./_mixins.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/_mixins.scss
|
|
9863
|
-
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important ) {
|
|
10009
|
+
@mixin generate-utils( $name, $props, $values, $function: "", $important: $kendo-important, $css-var: null ) {
|
|
9864
10010
|
@if $values {
|
|
9865
10011
|
$_props: if( k-meta-type-of($props) == list, $props, ( $props ) );
|
|
9866
10012
|
$_fn: if( k-meta-function-exists( $function ), k-meta-get-function( $function ), null );
|
|
@@ -9870,25 +10016,33 @@ $kendo-utils: (
|
|
|
9870
10016
|
$_val: if( k-meta-type-of($values) == list, $key, $val );
|
|
9871
10017
|
$_name: k-escape-class-name( $name );
|
|
9872
10018
|
$_selector: if( $_key == DEFAULT, #{$kendo-prefix}#{$_name}, #{$kendo-prefix}#{$_name}-#{$_key});
|
|
10019
|
+
$_custom-prop: if( $_key == DEFAULT, var( --kendo-#{$css-var}, #{$_val} ), var( --kendo-#{$css-var}-#{$_key}, #{$_val} ) );
|
|
9873
10020
|
|
|
9874
10021
|
@if $important != only {
|
|
9875
10022
|
.#{$_selector} {
|
|
9876
10023
|
@each $prop in $_props {
|
|
9877
|
-
|
|
10024
|
+
@if $css-var {
|
|
10025
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_custom-prop), $_custom-prop );
|
|
10026
|
+
} @else {
|
|
10027
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val );
|
|
10028
|
+
}
|
|
9878
10029
|
}
|
|
9879
10030
|
}
|
|
9880
10031
|
}
|
|
9881
10032
|
@if $important {
|
|
9882
10033
|
.\!#{$_selector} {
|
|
9883
10034
|
@each $prop in $_props {
|
|
9884
|
-
|
|
10035
|
+
@if $css-var {
|
|
10036
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $-custom-prop), $-custom-prop ) !important; // stylelint-disable-line declaration-no-important
|
|
10037
|
+
} @else {
|
|
10038
|
+
#{$prop}: if( $_fn, k-meta-call($_fn, $_val), $_val ) !important; // stylelint-disable-line declaration-no-important
|
|
10039
|
+
}
|
|
9885
10040
|
}
|
|
9886
10041
|
}
|
|
9887
10042
|
}
|
|
9888
10043
|
}
|
|
9889
10044
|
}
|
|
9890
10045
|
}
|
|
9891
|
-
|
|
9892
10046
|
// #endregion
|
|
9893
10047
|
|
|
9894
10048
|
// #region @import "./accessibility/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-utils/scss/accessibility/index.import.scss
|
|
@@ -13942,11 +14096,11 @@ $kendo-utils: (
|
|
|
13942
14096
|
|
|
13943
14097
|
// Text color utility classes
|
|
13944
14098
|
$kendo-utils-text-color: k-map-get( $kendo-utils, "text-color" ) !default;
|
|
13945
|
-
@include generate-utils( text, color, $kendo-utils-text-color );
|
|
14099
|
+
@include generate-utils( text, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
13946
14100
|
|
|
13947
14101
|
|
|
13948
14102
|
// Legacy aliases
|
|
13949
|
-
@include generate-utils( color, color, $kendo-utils-text-color );
|
|
14103
|
+
@include generate-utils( color, color, $kendo-utils-text-color, $css-var: 'color' );
|
|
13950
14104
|
|
|
13951
14105
|
}
|
|
13952
14106
|
|
|
@@ -14244,7 +14398,7 @@ $kendo-utils: (
|
|
|
14244
14398
|
|
|
14245
14399
|
// Background color utility classes
|
|
14246
14400
|
$kendo-utils-background-color: k-map-get( $kendo-utils, "background-color" ) !default;
|
|
14247
|
-
@include generate-utils( bg, background-color, $kendo-utils-background-color );
|
|
14401
|
+
@include generate-utils( bg, background-color, $kendo-utils-background-color, $css-var: 'color' );
|
|
14248
14402
|
|
|
14249
14403
|
}
|
|
14250
14404
|
|
|
@@ -14388,13 +14542,7 @@ $kendo-utils: (
|
|
|
14388
14542
|
|
|
14389
14543
|
// Border color utility classes
|
|
14390
14544
|
$kendo-utils-border-color: k-map-get( $kendo-utils, "border-color" ) !default;
|
|
14391
|
-
@include generate-utils( border, border-color, $kendo-utils-border-color );
|
|
14392
|
-
@include generate-utils( border-t, border-top-color, $kendo-utils-border-color );
|
|
14393
|
-
@include generate-utils( border-r, border-right-color, $kendo-utils-border-color );
|
|
14394
|
-
@include generate-utils( border-b, border-bottom-color, $kendo-utils-border-color );
|
|
14395
|
-
@include generate-utils( border-l, border-left-color, $kendo-utils-border-color );
|
|
14396
|
-
@include generate-utils( border-x, border-inline-color, $kendo-utils-border-color );
|
|
14397
|
-
@include generate-utils( border-y, border-block-color, $kendo-utils-border-color );
|
|
14545
|
+
@include generate-utils( border, border-color, $kendo-utils-border-color, $css-var: 'color' );
|
|
14398
14546
|
|
|
14399
14547
|
}
|
|
14400
14548
|
|
|
@@ -15274,7 +15422,7 @@ $kendo-utils: (
|
|
|
15274
15422
|
|
|
15275
15423
|
// Outline color utility classes
|
|
15276
15424
|
$kendo-utils-outline-color: k-map-get( $kendo-utils, "outline-color" ) !default;
|
|
15277
|
-
@include generate-utils( outline, outline-color, $kendo-utils-outline-color );
|
|
15425
|
+
@include generate-utils( outline, outline-color, $kendo-utils-outline-color, $css-var: 'color' );
|
|
15278
15426
|
|
|
15279
15427
|
}
|
|
15280
15428
|
|
|
@@ -16664,7 +16812,7 @@ $kendo-utils: (
|
|
|
16664
16812
|
// #endregion
|
|
16665
16813
|
|
|
16666
16814
|
@mixin kendo-utils--elevation {
|
|
16667
|
-
@include generate-utils(elevation, box-shadow, $kendo-elevation);
|
|
16815
|
+
@include generate-utils(elevation, box-shadow, $kendo-elevation, $css-var: 'elevation');
|
|
16668
16816
|
}
|
|
16669
16817
|
|
|
16670
16818
|
// #endregion
|
package/dist/meta/variables.json
CHANGED
|
@@ -4239,6 +4239,14 @@
|
|
|
4239
4239
|
"type": "Bool",
|
|
4240
4240
|
"value": "true"
|
|
4241
4241
|
},
|
|
4242
|
+
"kendo-util-colors-list": {
|
|
4243
|
+
"type": "List",
|
|
4244
|
+
"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"
|
|
4245
|
+
},
|
|
4246
|
+
"kendo-util-colors": {
|
|
4247
|
+
"type": "Map",
|
|
4248
|
+
"value": "(primary-subtle: #cfe2ff, primary: #0d6efd, primary-emphasis: #6ea8fe, secondary-subtle: #dee2e6, secondary: #6c757d, secondary-emphasis: #8d959d, tertiary-subtle: #e2d9f3, tertiary: #6f42c1, tertiary-emphasis: #a98eda, info-subtle: #cff4fc, info: #0dcaf0, info-emphasis: #3dd5f3, success-subtle: #d1e7dd, success: #146c43, success-emphasis: #479f76, warning-subtle: #ffecb5, warning: #ffc107, warning-emphasis: #ffcd39, error-subtle: #f8d7da, error: #dc3545, error-emphasis: #e35d6a, light-subtle: #f8f9fa, light: #f8f9fa, light-emphasis: #bdc4cb, dark-subtle: #6c757d, dark: #212529, dark-emphasis: #343a40)"
|
|
4249
|
+
},
|
|
4242
4250
|
"kendo-sizing": {
|
|
4243
4251
|
"type": "Map",
|
|
4244
4252
|
"value": "(0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"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-bootstrap",
|
|
3
3
|
"description": "Bootstrap 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": [
|
|
@@ -53,14 +53,14 @@
|
|
|
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
|
"bootstrap": "5.2.1"
|
|
60
60
|
},
|
|
61
61
|
"directories": {
|
|
62
62
|
"doc": "docs",
|
|
63
63
|
"lib": "lib"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "01297a87bc94d867851e28577c04a0596e35e4f9"
|
|
66
66
|
}
|