@progress/kendo-theme-core 13.0.0-dev.2 → 13.0.0-dev.3

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/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.2",
4
+ "version": "13.0.0-dev.3",
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": "fbb2123e3f2c61d5b960c897b969af8cba3549ae"
49
+ "gitHead": "e416202d88c228d1ab3f6f310633e644b141e642"
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: calc( #{$kendo-chat-padding-y} / 2 ) $kendo-chat-padding-y;
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;
@@ -34,6 +34,7 @@
34
34
  .k-files-scroll {
35
35
  display: flex;
36
36
  flex-flow: row nowrap;
37
+ flex: 1;
37
38
  overflow-x: auto;
38
39
  scrollbar-width: none;
39
40
  white-space: nowrap;
@@ -283,7 +283,7 @@
283
283
  flex-flow: row nowrap;
284
284
  align-items: center;
285
285
  align-content: center;
286
- gap: $kendo-icon-spacing;
286
+ gap: $kendo-list-item-gap;
287
287
  position: relative;
288
288
  }
289
289
 
@@ -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% - #{math.div( $_thumb-width, 2 )} - #{$_thumb-offset} );
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( #{math.div( $_thumb-width, 2 )} + #{$_thumb-offset} );
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 {