@progress/kendo-theme-core 13.0.0-dev.2 → 13.0.0-dev.4
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/meta/sassdoc-data.json +328 -328
- package/dist/meta/sassdoc-raw-data.json +164 -164
- package/package.json +2 -2
- package/scss/components/chat/_layout.scss +1 -1
- package/scss/components/file-box/_layout.scss +1 -0
- package/scss/components/list/_layout.scss +1 -1
- package/scss/components/suggestion/_layout.scss +3 -0
- package/scss/components/switch/_layout.scss +2 -2
- package/scss/typography/index.scss +2 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-core",
|
|
3
3
|
"description": "A collection of functions and mixins used for building themes for Kendo UI",
|
|
4
|
-
"version": "13.0.0-dev.
|
|
4
|
+
"version": "13.0.0-dev.4",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"directories": {
|
|
47
47
|
"doc": "docs"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "755590fe1a60a7eb3cccfdc1f4d42874d0f32643"
|
|
50
50
|
}
|
|
@@ -463,7 +463,7 @@
|
|
|
463
463
|
|
|
464
464
|
.k-message-box-wrapper {
|
|
465
465
|
padding-inline: $kendo-chat-padding-x;
|
|
466
|
-
padding-block:
|
|
466
|
+
padding-block: $kendo-chat-padding-y;
|
|
467
467
|
display: flex;
|
|
468
468
|
flex-direction: column;
|
|
469
469
|
gap: $kendo-chat-message-box-wrapper-spacing;
|
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.k-suggestion-group {
|
|
18
|
+
padding-block: calc( #{$kendo-suggestion-padding-y} / 2 );
|
|
18
19
|
display: flex;
|
|
20
|
+
flex: 1;
|
|
19
21
|
flex-wrap: wrap;
|
|
20
22
|
gap: $kendo-suggestion-spacing;
|
|
21
23
|
align-self: normal;
|
|
@@ -27,6 +29,7 @@
|
|
|
27
29
|
|
|
28
30
|
.k-suggestions-scroll {
|
|
29
31
|
padding-block: calc( #{$kendo-suggestion-padding-y} / 2 );
|
|
32
|
+
margin-block: calc( #{$kendo-suggestion-padding-y} / -2 );
|
|
30
33
|
display: flex;
|
|
31
34
|
overflow-x: auto;
|
|
32
35
|
scrollbar-width: none;
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
&.k-switch-on .k-switch-thumb-wrap {
|
|
70
|
-
inset-inline-start: calc( 100% - #{
|
|
70
|
+
inset-inline-start: calc( 100% - #{$_thumb-width} / 2 - #{$_thumb-offset} );
|
|
71
71
|
transition: left k-transition(bouncy);
|
|
72
72
|
}
|
|
73
73
|
&.k-switch-off .k-switch-thumb-wrap {
|
|
74
|
-
inset-inline-start: calc( #{
|
|
74
|
+
inset-inline-start: calc( #{$_thumb-width} / 2 + #{$_thumb-offset} );
|
|
75
75
|
transition: left k-transition(snappy);
|
|
76
76
|
}
|
|
77
77
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "sass:meta";
|
|
3
3
|
@use "sass:math";
|
|
4
|
+
@use "sass:string";
|
|
4
5
|
|
|
5
6
|
/// The base font size across all components.
|
|
6
7
|
/// @group typography
|
|
@@ -213,7 +214,7 @@ $kendo-font-families: map.merge( $default-font-families, $kendo-font-families );
|
|
|
213
214
|
}
|
|
214
215
|
|
|
215
216
|
@each $weight, $value in $kendo-font-weights {
|
|
216
|
-
--kendo-font-weight-#{$weight}: #{$value};
|
|
217
|
+
--kendo-font-weight-#{string.unquote("" + $weight)}: #{$value};
|
|
217
218
|
}
|
|
218
219
|
|
|
219
220
|
@each $spacing, $value in $kendo-letter-spacings {
|