@progress/kendo-theme-core 11.1.0-dev.8 → 11.2.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/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": "11.1.0-dev.8",
4
+ "version": "11.2.0-dev.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -45,5 +45,5 @@
45
45
  "directories": {
46
46
  "doc": "docs"
47
47
  },
48
- "gitHead": "af53b1e95dabc215115b604f2e80c6716be3d3cb"
48
+ "gitHead": "e1c7c75c3d2cc27f13558cd0381f5442fcdcd276"
49
49
  }
@@ -323,8 +323,6 @@
323
323
  }
324
324
 
325
325
 
326
-
327
-
328
326
  // Button focus ring
329
327
  .k-button { // stylelint-disable-line
330
328
 
@@ -50,6 +50,30 @@
50
50
  }
51
51
  }
52
52
 
53
+ // Generating state
54
+ .k-fab-solid-primary.k-generating {
55
+
56
+ animation: k-fab-generating 1.5s ease-in-out 0.5s infinite;
57
+
58
+ @keyframes k-fab-generating {
59
+ 0% {
60
+ background-color: k-color(primary-active);
61
+ border: k-color(primary-active);
62
+ outline-color: k-color(primary-active);
63
+ }
64
+ 50% {
65
+ background-color: color-mix(in srgb, k-color(primary-active) $kendo-fab-generating-opacity, k-color(surface-alt));
66
+ border: color-mix(in srgb, k-color(primary-active) $kendo-fab-generating-opacity, k-color(surface-alt));
67
+ outline-color: color-mix(in srgb, k-color(primary-active) $kendo-fab-generating-opacity, k-color(surface-alt));
68
+ }
69
+ 100% {
70
+ background-color: k-color(primary-active);
71
+ border: k-color(primary-active);
72
+ outline-color: k-color(primary-active);
73
+ }
74
+ }
75
+ }
76
+
53
77
  // Disabled state
54
78
  @each $name, $color in $kendo-fab-theme-colors {
55
79
  .k-disabled.k-fab-solid-#{$name},
@@ -59,3 +59,5 @@ $kendo-fab-item-active-shadow: null !default;
59
59
  $kendo-fab-item-outline-style: null !default;
60
60
  $kendo-fab-item-outline-width: null !default;
61
61
  $kendo-fab-item-outline-color: null !default;
62
+
63
+ $kendo-fab-generating-opacity: null !default;
@@ -1343,7 +1343,11 @@
1343
1343
  }
1344
1344
  }
1345
1345
 
1346
-
1346
+ // Grid assistant window
1347
+ .k-grid-assistant-window .k-window-content {
1348
+ padding: 0;
1349
+ @include border-bottom-radius( inherit );
1350
+ }
1347
1351
 
1348
1352
  // Column menu
1349
1353
  .k-column-menu-popup,
@@ -1,6 +1,7 @@
1
1
  // Dependencies
2
2
  @use "../core/_index.scss" as *;
3
3
  @use "../utils/_index.scss" as *;
4
+ @use "../speech-to-text-button/_index.scss" as *;
4
5
 
5
6
  // Component
6
7
  @forward "./_variables.scss";
@@ -11,6 +12,7 @@
11
12
  @mixin kendo-prompt--styles() {
12
13
  @include import-once( "prompt" ) {
13
14
  @include core-styles();
15
+ @include kendo-speech-to-text-button--styles();
14
16
  @include kendo-prompt--layout();
15
17
  @include kendo-prompt--theme();
16
18
  @include kendo-utils--flex-grid--flex-direction();
@@ -8,6 +8,7 @@
8
8
  flex-direction: column;
9
9
  position: relative;
10
10
  overflow: hidden;
11
+ border-radius: inherit;
11
12
 
12
13
  // Toolbar
13
14
  .k-toolbar {
@@ -51,6 +52,7 @@
51
52
  align-self: stretch;
52
53
  }
53
54
 
55
+ // Remove when k-suggestion is adopted
54
56
  .k-prompt-suggestion {
55
57
  border-width: 1px;
56
58
  border-style: solid;
@@ -70,6 +72,10 @@
70
72
  margin: 0;
71
73
  }
72
74
 
75
+ // Stop FAB
76
+ .k-prompt-stop-fab {
77
+ z-index: 1;
78
+ }
73
79
  }
74
80
 
75
81
 
@@ -27,6 +27,7 @@
27
27
  );
28
28
  }
29
29
 
30
+ // Remove when k-suggestion is adopted
30
31
  .k-prompt-suggestion {
31
32
  @include fill(
32
33
  $kendo-prompt-suggestion-text,