@progress/kendo-theme-core 11.1.0-dev.1 → 11.1.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": "11.1.0-dev.1",
4
+ "version": "11.1.0-dev.3",
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": "4de4ed4dd2e22bc1723647389f5fa1ad7f3fda06"
48
+ "gitHead": "4fd50ac879ec7978638ac573471e953da0926914"
49
49
  }
@@ -262,6 +262,7 @@
262
262
 
263
263
  // Diagram
264
264
  .k-diagram {
265
+ display: block;
265
266
  height: 600px;
266
267
  }
267
268
 
@@ -381,6 +382,7 @@
381
382
 
382
383
  // Gauge
383
384
  .k-gauge {
385
+ display: block;
384
386
  text-align: start;
385
387
  position: relative;
386
388
  }
@@ -0,0 +1,18 @@
1
+ // Dependencies
2
+ @use "../core/_index.scss" as *;
3
+ @use "../button/_index.scss" as *;
4
+
5
+ // Component
6
+ @forward "./_variables.scss";
7
+ @use "_layout.scss" as *;
8
+ @use "_theme.scss" as *;
9
+
10
+ // Expose
11
+ @mixin kendo-speech-to-text-button--styles() {
12
+ @include import-once( "speech-to-text-button" ) {
13
+ @include core-styles();
14
+ @include kendo-button--styles();
15
+ @include kendo-speech-to-text-button--layout();
16
+ @include kendo-speech-to-text-button--theme();
17
+ }
18
+ }
@@ -0,0 +1,26 @@
1
+ @use "./_variables.scss" as *;
2
+
3
+ @mixin kendo-speech-to-text-button--layout-base() {
4
+
5
+ .k-speech-to-text-button {
6
+ &.k-listening {
7
+ animation: k-speech-to-text-button-listening 1.5s ease-in-out 0.5s infinite;
8
+ }
9
+ }
10
+
11
+ @keyframes k-speech-to-text-button-listening {
12
+ 0% {
13
+ opacity: 1;
14
+ }
15
+ 50% {
16
+ opacity: $kendo-speech-to-text-button-listening-opacity;
17
+ }
18
+ 100% {
19
+ opacity: 1;
20
+ }
21
+ }
22
+ }
23
+
24
+ @mixin kendo-speech-to-text-button--layout() {
25
+ @include kendo-speech-to-text-button--layout-base();
26
+ }
@@ -0,0 +1,7 @@
1
+ @mixin kendo-speech-to-text-button--theme-base() {
2
+ .k-speech-to-text-button {}
3
+ }
4
+
5
+ @mixin kendo-speech-to-text-button--theme() {
6
+ @include kendo-speech-to-text-button--theme-base();
7
+ }
@@ -0,0 +1,2 @@
1
+ $kendo-speech-to-text-button-listening-opacity: null !default;
2
+