@progress/kendo-theme-default 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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-default",
3
3
  "description": "SASS resources for the default Kendo UI theme",
4
- "version": "13.0.0-dev.2",
4
+ "version": "13.0.0-dev.4",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -53,12 +53,12 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@progress/kendo-svg-icons": "^4.8.0",
56
- "@progress/kendo-theme-core": "13.0.0-dev.2",
57
- "@progress/kendo-theme-utils": "13.0.0-dev.2"
56
+ "@progress/kendo-theme-core": "13.0.0-dev.4",
57
+ "@progress/kendo-theme-utils": "13.0.0-dev.4"
58
58
  },
59
59
  "directories": {
60
60
  "doc": "docs",
61
61
  "lib": "lib"
62
62
  },
63
- "gitHead": "fbb2123e3f2c61d5b960c897b969af8cba3549ae"
63
+ "gitHead": "755590fe1a60a7eb3cccfdc1f4d42874d0f32643"
64
64
  }
@@ -14,7 +14,7 @@ $kendo-chat-padding-y: k-spacing(5) !default;
14
14
  $kendo-chat-width: 280px !default;
15
15
  /// The minimum height of the Chat.
16
16
  /// @group chat
17
- $kendo-chat-height: 600px !default;
17
+ $kendo-chat-height: 320px !default;
18
18
  /// The border width of the Chat.
19
19
  /// @group chat
20
20
  $kendo-chat-border-width: 1px !default;
@@ -54,7 +54,7 @@ $kendo-chat-message-list-padding-y: $kendo-chat-padding-y !default;
54
54
  $kendo-chat-message-list-spacing: $kendo-chat-item-spacing-y !default;
55
55
  /// The spacing of the Chat message box wrapper.
56
56
  /// @group chat
57
- $kendo-chat-message-box-wrapper-spacing: k-spacing(3) !default;
57
+ $kendo-chat-message-box-wrapper-spacing: k-spacing(4) !default;
58
58
 
59
59
  /// The minimum size of the Chat message status.
60
60
  /// @group chat
package/scss/index.scss CHANGED
@@ -30,6 +30,8 @@
30
30
  @forward "./floating-label/_index.scss";
31
31
  @forward "./textbox/_index.scss";
32
32
  @forward "./textarea/_index.scss";
33
+ @forward "./segmented-control/_index.scss";
34
+ @forward "./smart-box/_index.scss";
33
35
  @forward "./checkbox/_index.scss";
34
36
  @forward "./listbox/_index.scss";
35
37
  @forward "./progressbar/_index.scss";
@@ -106,6 +108,7 @@
106
108
  @forward "./gantt/_index.scss";
107
109
  @forward "./scheduler/_index.scss";
108
110
  @forward "./file-box/_index.scss";
111
+ @forward "./prompt-box/_index.scss";
109
112
  @forward "./chat/_index.scss";
110
113
  @forward "./mediaplayer/_index.scss";
111
114
  @forward "./timeline/_index.scss";
@@ -114,8 +117,6 @@
114
117
  @forward "./scrollview/_index.scss";
115
118
  @forward "./speech-to-text-button/_index.scss";
116
119
  @forward "./prompt/_index.scss";
117
- @forward "./segmented-control/_index.scss";
118
- @forward "./prompt-box/_index.scss";
119
120
  @forward "./dataviz/_index.scss";
120
121
  @forward "./chart-wizard/_index.scss";
121
122
  @forward "./map/_index.scss";
@@ -124,7 +125,6 @@
124
125
  @forward "./otp/_index.scss";
125
126
  @forward "./column-menu/_index.scss";
126
127
  @forward "./marquee/_index.scss";
127
- @forward "./smart-box/_index.scss";
128
128
 
129
129
 
130
130
  // Use component modules
@@ -1,5 +1,9 @@
1
1
  // Dependencies
2
2
  @use "../core/_index.scss" as *;
3
+ @use "../input/_index.scss" as *;
4
+ @use "../button/_index.scss" as *;
5
+ @use "../speech-to-text-button/_index.scss" as *;
6
+ @use "../file-box/_index.scss" as *;
3
7
 
4
8
  // Component
5
9
  @forward "./_variables.scss";
@@ -10,6 +14,10 @@
10
14
  @mixin kendo-prompt-box--styles() {
11
15
  @include import-once( "prompt-box" ) {
12
16
  @include core-styles();
17
+ @include kendo-input--styles();
18
+ @include kendo-button--styles();
19
+ @include kendo-speech-to-text-button--styles();
20
+ @include kendo-file-box--styles();
13
21
  @include kendo-prompt-box--layout();
14
22
  @include kendo-prompt-box--theme();
15
23
  }
@@ -23,7 +23,7 @@ $kendo-suggestion-font-size: var( --kendo-font-size, inherit ) !default;
23
23
 
24
24
  /// The line height of the Suggestion.
25
25
  /// @group suggestion
26
- $kendo-suggestion-line-height: var( --kendo-line-height, normal ) !default;
26
+ $kendo-suggestion-line-height: var( --kendo-line-height-lg, normal ) !default;
27
27
  /// The border radius of the Suggestion.
28
28
  /// @group suggestion
29
29
  $kendo-suggestion-border-radius: k-border-radius(full) !default;