@progress/kendo-angular-buttons 19.3.0-develop.15 → 19.3.0-develop.16

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.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1753347332,
14
- version: '19.3.0-develop.15',
13
+ publishDate: 1753435607,
14
+ version: '19.3.0-develop.16',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -45,8 +45,8 @@ const packageMetadata = {
45
45
  productName: 'Kendo UI for Angular',
46
46
  productCode: 'KENDOUIANGULAR',
47
47
  productCodes: ['KENDOUIANGULAR'],
48
- publishDate: 1753347332,
49
- version: '19.3.0-develop.15',
48
+ publishDate: 1753435607,
49
+ version: '19.3.0-develop.16',
50
50
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
51
51
  };
52
52
 
package/index.d.ts CHANGED
@@ -39,6 +39,7 @@ export { SpeechToTextButtonComponent } from './speechtotextbutton/speechtotextbu
39
39
  export { IntegrationMode } from './speechtotextbutton/models/integration-mode';
40
40
  export { SpeechToTextResultEvent } from './speechtotextbutton/models/result-event';
41
41
  export { SpeechToTextErrorEvent } from './speechtotextbutton/models/error-event';
42
+ export { SpeechToTextButtonSettings } from './speechtotextbutton/models/speechtotextbutton-settings';
42
43
  export { SpeechToTextButtonModule } from './speechtotextbutton/speechtotextbutton.module';
43
44
  export { ButtonSize, ChipSize, ButtonRounded, ChipRounded, ButtonFillMode, ChipFillMode, ButtonThemeColor, ChipThemeColor, ArrowIconSettings } from './common/models';
44
45
  export { FocusableDirective } from './focusable/focusable.directive';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-buttons",
3
- "version": "19.3.0-develop.15",
3
+ "version": "19.3.0-develop.16",
4
4
  "description": "Buttons Package for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -21,7 +21,7 @@
21
21
  "package": {
22
22
  "productName": "Kendo UI for Angular",
23
23
  "productCode": "KENDOUIANGULAR",
24
- "publishDate": 1753347332,
24
+ "publishDate": 1753435607,
25
25
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
26
26
  }
27
27
  },
@@ -31,15 +31,15 @@
31
31
  "@angular/core": "16 - 20",
32
32
  "@angular/platform-browser": "16 - 20",
33
33
  "@progress/kendo-licensing": "^1.5.0",
34
- "@progress/kendo-angular-common": "19.3.0-develop.15",
35
- "@progress/kendo-angular-l10n": "19.3.0-develop.15",
36
- "@progress/kendo-angular-popup": "19.3.0-develop.15",
37
- "@progress/kendo-angular-icons": "19.3.0-develop.15",
34
+ "@progress/kendo-angular-common": "19.3.0-develop.16",
35
+ "@progress/kendo-angular-l10n": "19.3.0-develop.16",
36
+ "@progress/kendo-angular-popup": "19.3.0-develop.16",
37
+ "@progress/kendo-angular-icons": "19.3.0-develop.16",
38
38
  "rxjs": "^6.5.3 || ^7.0.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "tslib": "^2.3.1",
42
- "@progress/kendo-angular-schematics": "19.3.0-develop.15",
42
+ "@progress/kendo-angular-schematics": "19.3.0-develop.16",
43
43
  "@progress/kendo-common": "^1.0.1",
44
44
  "@progress/kendo-webspeech-common": "1.0.0"
45
45
  },
@@ -0,0 +1,61 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from "../../common/models";
6
+ import { IntegrationMode } from "./integration-mode";
7
+ /**
8
+ * Defines the settings for the Speech to Text button.
9
+ *
10
+ * @example
11
+ * ```typescript
12
+ * const speechSettings: SpeechToTextButtonSettings = {
13
+ * continuous: true,
14
+ * lang: 'en-US',
15
+ * interimResults: false,
16
+ * disabled: false
17
+ * };
18
+ * ```
19
+ */
20
+ export interface SpeechToTextButtonSettings {
21
+ /**
22
+ * Specifies whether the component returns continuous results for each recognition, or only a single result once recognition stops.
23
+ */
24
+ continuous?: boolean;
25
+ /**
26
+ * When `true`, disables the SpeechToTextButton and prevents user interaction.
27
+ */
28
+ disabled?: boolean;
29
+ /**
30
+ * Sets the background and border styles of the SpeechToTextButton.
31
+ */
32
+ fillMode?: ButtonFillMode;
33
+ /**
34
+ * Specifies which speech recognition engine or integration the component should use. Allows the component to operate in different environments or use alternative implementations.
35
+ */
36
+ integrationMode?: IntegrationMode;
37
+ /**
38
+ * Specifies whether the component should return interim results or not. Interim results are results that are not yet final.
39
+ */
40
+ interimResults?: boolean;
41
+ /**
42
+ * Specifies a `BCP 47` language tag (e.g., `'en-US'`, `'bg-BG'`) used for speech recognition.
43
+ */
44
+ lang?: string;
45
+ /**
46
+ * Represents the maximum number of alternative transcriptions to return for each result.
47
+ */
48
+ maxAlternatives?: number;
49
+ /**
50
+ * Sets the border radius of the SpeechToTextButton.
51
+ */
52
+ rounded?: ButtonRounded;
53
+ /**
54
+ * Sets the padding of the SpeechToTextButton.
55
+ */
56
+ size?: ButtonSize;
57
+ /**
58
+ * Sets a predefined theme color for the SpeechToTextButton. The theme color applies as a background and border color and adjusts the text color.
59
+ */
60
+ themeColor?: ButtonThemeColor;
61
+ }