@progress/kendo-angular-buttons 23.0.1-develop.3 → 23.0.2-develop.1

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.
@@ -47,6 +47,8 @@ export declare class ButtonGroupComponent implements OnInit, OnDestroy, AfterCon
47
47
  width: string;
48
48
  /**
49
49
  * Specifies the [`tabIndex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
50
+ *
51
+ * @default 0
50
52
  */
51
53
  set tabIndex(value: number);
52
54
  get tabIndex(): number;
@@ -57,6 +59,9 @@ export declare class ButtonGroupComponent implements OnInit, OnDestroy, AfterCon
57
59
  * When set to `false`, the inner buttons are part of the natural tab sequence of the page.
58
60
  *
59
61
  * @default true
62
+ *
63
+ * @remarks
64
+ * This property is related to accessibility.
60
65
  */
61
66
  navigable: boolean;
62
67
  /**
@@ -76,6 +76,9 @@ export declare class ChipListComponent implements OnInit, AfterViewInit, AfterCo
76
76
  * When set to `false`, all chips are part of the default tabbing sequence of the page.
77
77
  *
78
78
  * @default true
79
+ *
80
+ * @remarks
81
+ * This property is related to accessibility.
79
82
  */
80
83
  set navigable(value: boolean);
81
84
  get navigable(): boolean;
@@ -25,6 +25,9 @@ export declare class ChipComponent implements OnInit, AfterViewInit, OnChanges {
25
25
  private localizationService;
26
26
  /**
27
27
  * Sets the label text of the Chip.
28
+ *
29
+ * @remarks
30
+ * This property is related to accessibility.
28
31
  */
29
32
  label: string;
30
33
  /**
@@ -23,6 +23,9 @@ export interface ChipAvatarSettings {
23
23
  imageSrc?: string;
24
24
  /**
25
25
  * Sets the `alt` attribute for the Chip avatar image.
26
+ *
27
+ * @remarks
28
+ * This option is related to accessibility.
26
29
  */
27
30
  imageAltText?: string;
28
31
  /**
@@ -50,7 +50,7 @@ const packageMetadata = {
50
50
  productCode: 'KENDOUIANGULAR',
51
51
  productCodes: ['KENDOUIANGULAR'],
52
52
  publishDate: 0,
53
- version: '23.0.1-develop.3',
53
+ version: '23.0.2-develop.1',
54
54
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
55
55
  };
56
56
 
@@ -752,6 +752,8 @@ class ButtonGroupComponent {
752
752
  width;
753
753
  /**
754
754
  * Specifies the [`tabIndex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
755
+ *
756
+ * @default 0
755
757
  */
756
758
  set tabIndex(value) {
757
759
  this._tabIndex = value;
@@ -767,6 +769,9 @@ class ButtonGroupComponent {
767
769
  * When set to `false`, the inner buttons are part of the natural tab sequence of the page.
768
770
  *
769
771
  * @default true
772
+ *
773
+ * @remarks
774
+ * This property is related to accessibility.
770
775
  */
771
776
  navigable = true;
772
777
  /**
@@ -1048,6 +1053,9 @@ class ChipComponent {
1048
1053
  localizationService;
1049
1054
  /**
1050
1055
  * Sets the label text of the Chip.
1056
+ *
1057
+ * @remarks
1058
+ * This property is related to accessibility.
1051
1059
  */
1052
1060
  label;
1053
1061
  /**
@@ -1676,6 +1684,9 @@ class ChipListComponent {
1676
1684
  * When set to `false`, all chips are part of the default tabbing sequence of the page.
1677
1685
  *
1678
1686
  * @default true
1687
+ *
1688
+ * @remarks
1689
+ * This property is related to accessibility.
1679
1690
  */
1680
1691
  set navigable(value) {
1681
1692
  this._navigable = value;
@@ -3769,6 +3780,9 @@ class FloatingActionButtonComponent {
3769
3780
  dialClass;
3770
3781
  /**
3771
3782
  * Specifies the text content of the FloatingActionButton.
3783
+ *
3784
+ * @remarks
3785
+ * This property is related to accessibility.
3772
3786
  */
3773
3787
  text;
3774
3788
  /**
@@ -4684,6 +4698,9 @@ class SplitButtonComponent extends ListButton {
4684
4698
  renderer;
4685
4699
  /**
4686
4700
  * Sets the text displayed within the SplitButton.
4701
+ *
4702
+ * @remarks
4703
+ * This property is related to accessibility.
4687
4704
  */
4688
4705
  text = '';
4689
4706
  /**
@@ -4756,6 +4773,8 @@ class SplitButtonComponent extends ListButton {
4756
4773
  }
4757
4774
  /**
4758
4775
  * Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
4776
+ *
4777
+ * @default 0
4759
4778
  */
4760
4779
  tabIndex = 0;
4761
4780
  /**
@@ -113,6 +113,9 @@ export declare class FloatingActionButtonComponent implements AfterViewInit, OnD
113
113
  dialClass: any;
114
114
  /**
115
115
  * Specifies the text content of the FloatingActionButton.
116
+ *
117
+ * @remarks
118
+ * This property is related to accessibility.
116
119
  */
117
120
  text: string;
118
121
  /**
@@ -39,6 +39,9 @@ export interface DialItem {
39
39
  /**
40
40
  * Specifies the `title` attribute of the dial item.
41
41
  * If set, the `title` value is rendered in the `aria-label` attribute on the dial item's element.
42
+ *
43
+ * @remarks
44
+ * This option is related to accessibility.
42
45
  */
43
46
  itemTitle?: string;
44
47
  /**
@@ -55,6 +55,9 @@ export interface ListItemModel {
55
55
  imageUrl?: string;
56
56
  /**
57
57
  * Specifies the value of the image element `alt` attribute.
58
+ *
59
+ * @remarks
60
+ * This option is related to accessibility.
58
61
  */
59
62
  imageAlt?: string;
60
63
  /**
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1770812581,
11
- "version": "23.0.1-develop.3",
10
+ "publishDate": 1771334683,
11
+ "version": "23.0.2-develop.1",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-buttons",
3
- "version": "23.0.1-develop.3",
3
+ "version": "23.0.2-develop.1",
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": 1770812581,
24
+ "publishDate": 1771334683,
25
25
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
26
26
  }
27
27
  },
@@ -31,15 +31,15 @@
31
31
  "@angular/core": "19 - 21",
32
32
  "@angular/platform-browser": "19 - 21",
33
33
  "@progress/kendo-licensing": "^1.10.0",
34
- "@progress/kendo-angular-common": "23.0.1-develop.3",
35
- "@progress/kendo-angular-l10n": "23.0.1-develop.3",
36
- "@progress/kendo-angular-popup": "23.0.1-develop.3",
37
- "@progress/kendo-angular-icons": "23.0.1-develop.3",
34
+ "@progress/kendo-angular-common": "23.0.2-develop.1",
35
+ "@progress/kendo-angular-l10n": "23.0.2-develop.1",
36
+ "@progress/kendo-angular-popup": "23.0.2-develop.1",
37
+ "@progress/kendo-angular-icons": "23.0.2-develop.1",
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": "23.0.1-develop.3",
42
+ "@progress/kendo-angular-schematics": "23.0.2-develop.1",
43
43
  "@progress/kendo-common": "^1.0.1",
44
44
  "@progress/kendo-webspeech-common": "1.0.1",
45
45
  "@progress/kendo-smartpaste-common": "1.0.0"
@@ -49,6 +49,9 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
49
49
  private renderer;
50
50
  /**
51
51
  * Sets the text displayed within the SplitButton.
52
+ *
53
+ * @remarks
54
+ * This property is related to accessibility.
52
55
  */
53
56
  text: string;
54
57
  /**
@@ -101,6 +104,8 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
101
104
  get popupSettings(): PopupSettings;
102
105
  /**
103
106
  * Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
107
+ *
108
+ * @default 0
104
109
  */
105
110
  tabIndex: number;
106
111
  /**