@progress/kendo-angular-toolbar 11.2.0-develop.7 → 11.2.0-develop.9
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/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tools/toolbar-button.component.mjs +10 -0
- package/esm2020/tools/toolbar-dropdownbutton.component.mjs +11 -0
- package/esm2020/tools/toolbar-splitbutton.component.mjs +10 -0
- package/fesm2015/progress-kendo-angular-toolbar.mjs +33 -2
- package/fesm2020/progress-kendo-angular-toolbar.mjs +33 -2
- package/package.json +7 -7
- package/tools/toolbar-button.component.d.ts +3 -1
- package/tools/toolbar-dropdownbutton.component.d.ts +3 -1
- package/tools/toolbar-splitbutton.component.d.ts +3 -1
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-toolbar',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '11.2.0-develop.
|
|
12
|
+
publishDate: 1675778207,
|
|
13
|
+
version: '11.2.0-develop.9',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -104,6 +104,16 @@ export class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
104
104
|
get showText() {
|
|
105
105
|
return this._showText;
|
|
106
106
|
}
|
|
107
|
+
/**
|
|
108
|
+
* Specifies the text of the Button ([see example]({% slug controltypes_toolbar %}#toc-buttons)).
|
|
109
|
+
*/
|
|
110
|
+
set text(text) {
|
|
111
|
+
this._text = text;
|
|
112
|
+
this.setTextDisplayMode();
|
|
113
|
+
}
|
|
114
|
+
get text() {
|
|
115
|
+
return this._text;
|
|
116
|
+
}
|
|
107
117
|
/**
|
|
108
118
|
* @hidden
|
|
109
119
|
*/
|
|
@@ -98,6 +98,17 @@ export class ToolBarDropDownButtonComponent extends ToolBarToolComponent {
|
|
|
98
98
|
get showText() {
|
|
99
99
|
return this._showText;
|
|
100
100
|
}
|
|
101
|
+
/**
|
|
102
|
+
* Sets the text of the DropDownButton
|
|
103
|
+
* ([see example]({% slug controltypes_toolbar %}#toc-dropdownbuttons).
|
|
104
|
+
*/
|
|
105
|
+
set text(text) {
|
|
106
|
+
this._text = text;
|
|
107
|
+
this.setTextDisplayMode();
|
|
108
|
+
}
|
|
109
|
+
get text() {
|
|
110
|
+
return this._text;
|
|
111
|
+
}
|
|
101
112
|
/**
|
|
102
113
|
* Defines an icon that will be rendered next to the button text.
|
|
103
114
|
*/
|
|
@@ -116,6 +116,16 @@ export class ToolBarSplitButtonComponent extends ToolBarToolComponent {
|
|
|
116
116
|
get showText() {
|
|
117
117
|
return this._showText;
|
|
118
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* Sets the text of the SplitButton ([see example]({% slug controltypes_toolbar %}#toc-splitbuttons).
|
|
121
|
+
*/
|
|
122
|
+
set text(text) {
|
|
123
|
+
this._text = text;
|
|
124
|
+
this.setTextDisplayMode();
|
|
125
|
+
}
|
|
126
|
+
get text() {
|
|
127
|
+
return this._text;
|
|
128
|
+
}
|
|
119
129
|
/**
|
|
120
130
|
* Defines the icon that will be rendered next to the button text
|
|
121
131
|
* ([see example]({% slug controltypes_toolbar %}#toc-splitbuttons)).
|
|
@@ -28,8 +28,8 @@ const packageMetadata = {
|
|
|
28
28
|
name: '@progress/kendo-angular-toolbar',
|
|
29
29
|
productName: 'Kendo UI for Angular',
|
|
30
30
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
31
|
-
publishDate:
|
|
32
|
-
version: '11.2.0-develop.
|
|
31
|
+
publishDate: 1675778207,
|
|
32
|
+
version: '11.2.0-develop.9',
|
|
33
33
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
34
34
|
};
|
|
35
35
|
|
|
@@ -1531,6 +1531,16 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
1531
1531
|
get showText() {
|
|
1532
1532
|
return this._showText;
|
|
1533
1533
|
}
|
|
1534
|
+
/**
|
|
1535
|
+
* Specifies the text of the Button ([see example]({% slug controltypes_toolbar %}#toc-buttons)).
|
|
1536
|
+
*/
|
|
1537
|
+
set text(text) {
|
|
1538
|
+
this._text = text;
|
|
1539
|
+
this.setTextDisplayMode();
|
|
1540
|
+
}
|
|
1541
|
+
get text() {
|
|
1542
|
+
return this._text;
|
|
1543
|
+
}
|
|
1534
1544
|
/**
|
|
1535
1545
|
* @hidden
|
|
1536
1546
|
*/
|
|
@@ -2196,6 +2206,17 @@ class ToolBarDropDownButtonComponent extends ToolBarToolComponent {
|
|
|
2196
2206
|
get showText() {
|
|
2197
2207
|
return this._showText;
|
|
2198
2208
|
}
|
|
2209
|
+
/**
|
|
2210
|
+
* Sets the text of the DropDownButton
|
|
2211
|
+
* ([see example]({% slug controltypes_toolbar %}#toc-dropdownbuttons).
|
|
2212
|
+
*/
|
|
2213
|
+
set text(text) {
|
|
2214
|
+
this._text = text;
|
|
2215
|
+
this.setTextDisplayMode();
|
|
2216
|
+
}
|
|
2217
|
+
get text() {
|
|
2218
|
+
return this._text;
|
|
2219
|
+
}
|
|
2199
2220
|
/**
|
|
2200
2221
|
* Defines an icon that will be rendered next to the button text.
|
|
2201
2222
|
*/
|
|
@@ -2653,6 +2674,16 @@ class ToolBarSplitButtonComponent extends ToolBarToolComponent {
|
|
|
2653
2674
|
get showText() {
|
|
2654
2675
|
return this._showText;
|
|
2655
2676
|
}
|
|
2677
|
+
/**
|
|
2678
|
+
* Sets the text of the SplitButton ([see example]({% slug controltypes_toolbar %}#toc-splitbuttons).
|
|
2679
|
+
*/
|
|
2680
|
+
set text(text) {
|
|
2681
|
+
this._text = text;
|
|
2682
|
+
this.setTextDisplayMode();
|
|
2683
|
+
}
|
|
2684
|
+
get text() {
|
|
2685
|
+
return this._text;
|
|
2686
|
+
}
|
|
2656
2687
|
/**
|
|
2657
2688
|
* Defines the icon that will be rendered next to the button text
|
|
2658
2689
|
* ([see example]({% slug controltypes_toolbar %}#toc-splitbuttons)).
|
|
@@ -28,8 +28,8 @@ const packageMetadata = {
|
|
|
28
28
|
name: '@progress/kendo-angular-toolbar',
|
|
29
29
|
productName: 'Kendo UI for Angular',
|
|
30
30
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
31
|
-
publishDate:
|
|
32
|
-
version: '11.2.0-develop.
|
|
31
|
+
publishDate: 1675778207,
|
|
32
|
+
version: '11.2.0-develop.9',
|
|
33
33
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
34
34
|
};
|
|
35
35
|
|
|
@@ -1530,6 +1530,16 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
1530
1530
|
get showText() {
|
|
1531
1531
|
return this._showText;
|
|
1532
1532
|
}
|
|
1533
|
+
/**
|
|
1534
|
+
* Specifies the text of the Button ([see example]({% slug controltypes_toolbar %}#toc-buttons)).
|
|
1535
|
+
*/
|
|
1536
|
+
set text(text) {
|
|
1537
|
+
this._text = text;
|
|
1538
|
+
this.setTextDisplayMode();
|
|
1539
|
+
}
|
|
1540
|
+
get text() {
|
|
1541
|
+
return this._text;
|
|
1542
|
+
}
|
|
1533
1543
|
/**
|
|
1534
1544
|
* @hidden
|
|
1535
1545
|
*/
|
|
@@ -2194,6 +2204,17 @@ class ToolBarDropDownButtonComponent extends ToolBarToolComponent {
|
|
|
2194
2204
|
get showText() {
|
|
2195
2205
|
return this._showText;
|
|
2196
2206
|
}
|
|
2207
|
+
/**
|
|
2208
|
+
* Sets the text of the DropDownButton
|
|
2209
|
+
* ([see example]({% slug controltypes_toolbar %}#toc-dropdownbuttons).
|
|
2210
|
+
*/
|
|
2211
|
+
set text(text) {
|
|
2212
|
+
this._text = text;
|
|
2213
|
+
this.setTextDisplayMode();
|
|
2214
|
+
}
|
|
2215
|
+
get text() {
|
|
2216
|
+
return this._text;
|
|
2217
|
+
}
|
|
2197
2218
|
/**
|
|
2198
2219
|
* Defines an icon that will be rendered next to the button text.
|
|
2199
2220
|
*/
|
|
@@ -2651,6 +2672,16 @@ class ToolBarSplitButtonComponent extends ToolBarToolComponent {
|
|
|
2651
2672
|
get showText() {
|
|
2652
2673
|
return this._showText;
|
|
2653
2674
|
}
|
|
2675
|
+
/**
|
|
2676
|
+
* Sets the text of the SplitButton ([see example]({% slug controltypes_toolbar %}#toc-splitbuttons).
|
|
2677
|
+
*/
|
|
2678
|
+
set text(text) {
|
|
2679
|
+
this._text = text;
|
|
2680
|
+
this.setTextDisplayMode();
|
|
2681
|
+
}
|
|
2682
|
+
get text() {
|
|
2683
|
+
return this._text;
|
|
2684
|
+
}
|
|
2654
2685
|
/**
|
|
2655
2686
|
* Defines the icon that will be rendered next to the button text
|
|
2656
2687
|
* ([see example]({% slug controltypes_toolbar %}#toc-splitbuttons)).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-toolbar",
|
|
3
|
-
"version": "11.2.0-develop.
|
|
3
|
+
"version": "11.2.0-develop.9",
|
|
4
4
|
"description": "Kendo UI Angular Toolbar component - a single UI element that organizes buttons and other navigation elements",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
"@angular/core": "13 - 15",
|
|
30
30
|
"@angular/platform-browser": "13 - 15",
|
|
31
31
|
"@progress/kendo-licensing": "^1.0.2",
|
|
32
|
-
"@progress/kendo-angular-buttons": "11.2.0-develop.
|
|
33
|
-
"@progress/kendo-angular-common": "11.2.0-develop.
|
|
34
|
-
"@progress/kendo-angular-l10n": "11.2.0-develop.
|
|
35
|
-
"@progress/kendo-angular-icons": "11.2.0-develop.
|
|
36
|
-
"@progress/kendo-angular-popup": "11.2.0-develop.
|
|
32
|
+
"@progress/kendo-angular-buttons": "11.2.0-develop.9",
|
|
33
|
+
"@progress/kendo-angular-common": "11.2.0-develop.9",
|
|
34
|
+
"@progress/kendo-angular-l10n": "11.2.0-develop.9",
|
|
35
|
+
"@progress/kendo-angular-icons": "11.2.0-develop.9",
|
|
36
|
+
"@progress/kendo-angular-popup": "11.2.0-develop.9",
|
|
37
37
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"tslib": "^2.3.1",
|
|
41
|
-
"@progress/kendo-angular-schematics": "11.2.0-develop.
|
|
41
|
+
"@progress/kendo-angular-schematics": "11.2.0-develop.9"
|
|
42
42
|
},
|
|
43
43
|
"schematics": "./schematics/collection.json",
|
|
44
44
|
"module": "fesm2015/progress-kendo-angular-toolbar.mjs",
|
|
@@ -27,7 +27,8 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
27
27
|
/**
|
|
28
28
|
* Specifies the text of the Button ([see example]({% slug controltypes_toolbar %}#toc-buttons)).
|
|
29
29
|
*/
|
|
30
|
-
text: string;
|
|
30
|
+
set text(text: string);
|
|
31
|
+
get text(): string;
|
|
31
32
|
/**
|
|
32
33
|
* Specifies custom inline CSS styles of the Button.
|
|
33
34
|
*/
|
|
@@ -140,6 +141,7 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
140
141
|
toolbarButtonElement: ElementRef;
|
|
141
142
|
private overflowButtonElement;
|
|
142
143
|
private _showText;
|
|
144
|
+
private _text;
|
|
143
145
|
constructor(element: ElementRef, zone: NgZone);
|
|
144
146
|
ngOnInit(): void;
|
|
145
147
|
/**
|
|
@@ -28,7 +28,8 @@ export declare class ToolBarDropDownButtonComponent extends ToolBarToolComponent
|
|
|
28
28
|
* Sets the text of the DropDownButton
|
|
29
29
|
* ([see example]({% slug controltypes_toolbar %}#toc-dropdownbuttons).
|
|
30
30
|
*/
|
|
31
|
-
text: string;
|
|
31
|
+
set text(text: string);
|
|
32
|
+
get text(): string;
|
|
32
33
|
/**
|
|
33
34
|
* Defines an icon that will be rendered next to the button text.
|
|
34
35
|
*/
|
|
@@ -145,6 +146,7 @@ export declare class ToolBarDropDownButtonComponent extends ToolBarToolComponent
|
|
|
145
146
|
private _popupSettings;
|
|
146
147
|
private focusedIndex;
|
|
147
148
|
private _showText;
|
|
149
|
+
private _text;
|
|
148
150
|
private getNextKey;
|
|
149
151
|
private getPrevKey;
|
|
150
152
|
constructor();
|
|
@@ -27,7 +27,8 @@ export declare class ToolBarSplitButtonComponent extends ToolBarToolComponent im
|
|
|
27
27
|
/**
|
|
28
28
|
* Sets the text of the SplitButton ([see example]({% slug controltypes_toolbar %}#toc-splitbuttons).
|
|
29
29
|
*/
|
|
30
|
-
text: string;
|
|
30
|
+
set text(text: string);
|
|
31
|
+
get text(): string;
|
|
31
32
|
/**
|
|
32
33
|
* Defines the icon that will be rendered next to the button text
|
|
33
34
|
* ([see example]({% slug controltypes_toolbar %}#toc-splitbuttons)).
|
|
@@ -153,6 +154,7 @@ export declare class ToolBarSplitButtonComponent extends ToolBarToolComponent im
|
|
|
153
154
|
private _popupSettings;
|
|
154
155
|
private focusedIndex;
|
|
155
156
|
private _showText;
|
|
157
|
+
private _text;
|
|
156
158
|
private getNextKey;
|
|
157
159
|
private getPrevKey;
|
|
158
160
|
private toolbarSplitButton;
|