@progress/kendo-angular-toolbar 19.0.0-develop.30 → 19.0.0-develop.32
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/esm2022/package-metadata.mjs +2 -2
- package/esm2022/renderer.component.mjs +15 -12
- package/esm2022/toolbar.component.mjs +32 -18
- package/esm2022/tools/toolbar-button.component.mjs +155 -9
- package/esm2022/tools/toolbar-buttongroup.component.mjs +17 -3
- package/esm2022/tools/toolbar-dropdownbutton.component.mjs +24 -2
- package/esm2022/tools/toolbar-splitbutton.component.mjs +26 -15
- package/fesm2022/progress-kendo-angular-toolbar.mjs +268 -59
- package/package.json +9 -9
- package/toolbar.component.d.ts +12 -10
- package/tools/toolbar-button.component.d.ts +10 -0
- package/tools/toolbar-buttongroup.component.d.ts +7 -1
- package/tools/toolbar-dropdownbutton.component.d.ts +6 -0
- package/tools/toolbar-splitbutton.component.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-toolbar",
|
|
3
|
-
"version": "19.0.0-develop.
|
|
3
|
+
"version": "19.0.0-develop.32",
|
|
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",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"package": {
|
|
46
46
|
"productName": "Kendo UI for Angular",
|
|
47
47
|
"productCode": "KENDOUIANGULAR",
|
|
48
|
-
"publishDate":
|
|
48
|
+
"publishDate": 1748002104,
|
|
49
49
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
@@ -55,17 +55,17 @@
|
|
|
55
55
|
"@angular/core": "16 - 19",
|
|
56
56
|
"@angular/platform-browser": "16 - 19",
|
|
57
57
|
"@progress/kendo-licensing": "^1.5.0",
|
|
58
|
-
"@progress/kendo-angular-buttons": "19.0.0-develop.
|
|
59
|
-
"@progress/kendo-angular-common": "19.0.0-develop.
|
|
60
|
-
"@progress/kendo-angular-l10n": "19.0.0-develop.
|
|
61
|
-
"@progress/kendo-angular-icons": "19.0.0-develop.
|
|
62
|
-
"@progress/kendo-angular-indicators": "19.0.0-develop.
|
|
63
|
-
"@progress/kendo-angular-popup": "19.0.0-develop.
|
|
58
|
+
"@progress/kendo-angular-buttons": "19.0.0-develop.32",
|
|
59
|
+
"@progress/kendo-angular-common": "19.0.0-develop.32",
|
|
60
|
+
"@progress/kendo-angular-l10n": "19.0.0-develop.32",
|
|
61
|
+
"@progress/kendo-angular-icons": "19.0.0-develop.32",
|
|
62
|
+
"@progress/kendo-angular-indicators": "19.0.0-develop.32",
|
|
63
|
+
"@progress/kendo-angular-popup": "19.0.0-develop.32",
|
|
64
64
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"tslib": "^2.3.1",
|
|
68
|
-
"@progress/kendo-angular-schematics": "19.0.0-develop.
|
|
68
|
+
"@progress/kendo-angular-schematics": "19.0.0-develop.32"
|
|
69
69
|
},
|
|
70
70
|
"schematics": "./schematics/collection.json",
|
|
71
71
|
"module": "fesm2022/progress-kendo-angular-toolbar.mjs",
|
package/toolbar.component.d.ts
CHANGED
|
@@ -110,20 +110,12 @@ export declare class ToolBarComponent {
|
|
|
110
110
|
* Specifies the icons visibility for all tools in the ToolBar.
|
|
111
111
|
* This can be overridden by the `showIcon` property of each tool.
|
|
112
112
|
*/
|
|
113
|
-
showIcon: DisplayMode | boolean;
|
|
114
|
-
/**
|
|
115
|
-
* @hidden
|
|
116
|
-
*/
|
|
117
|
-
get normalizedShowIcon(): DisplayMode;
|
|
113
|
+
set showIcon(value: DisplayMode | boolean);
|
|
118
114
|
/**
|
|
119
115
|
* Specifies the text visibility for all tools in the ToolBar.
|
|
120
116
|
* This can be overridden by the `showText` property of each tool.
|
|
121
117
|
*/
|
|
122
|
-
showText: DisplayMode | boolean;
|
|
123
|
-
/**
|
|
124
|
-
* @hidden
|
|
125
|
-
*/
|
|
126
|
-
get normalizedShowText(): DisplayMode;
|
|
118
|
+
set showText(value: DisplayMode | boolean);
|
|
127
119
|
/**
|
|
128
120
|
* Fires when the overflow popup of the ToolBar is opened.
|
|
129
121
|
*/
|
|
@@ -157,6 +149,13 @@ export declare class ToolBarComponent {
|
|
|
157
149
|
* @hidden
|
|
158
150
|
*/
|
|
159
151
|
nextButtonIcon: SVGIcon;
|
|
152
|
+
/**
|
|
153
|
+
* @hidden
|
|
154
|
+
*/
|
|
155
|
+
propertyChange: EventEmitter<{
|
|
156
|
+
property: string;
|
|
157
|
+
value: any;
|
|
158
|
+
}>;
|
|
160
159
|
hostClass: boolean;
|
|
161
160
|
get scrollableClass(): boolean;
|
|
162
161
|
get sectionClass(): boolean;
|
|
@@ -171,6 +170,8 @@ export declare class ToolBarComponent {
|
|
|
171
170
|
private cachedGap;
|
|
172
171
|
private _size;
|
|
173
172
|
private _fillMode;
|
|
173
|
+
private _showText;
|
|
174
|
+
private _showIcon;
|
|
174
175
|
private overflowButtonClickedTime;
|
|
175
176
|
private showAutoButtons;
|
|
176
177
|
private scrollButtonStateChangeSub;
|
|
@@ -278,6 +279,7 @@ export declare class ToolBarComponent {
|
|
|
278
279
|
private setScrollableOverlayClasses;
|
|
279
280
|
private handleScrollModeUpdates;
|
|
280
281
|
private removeSubscriptions;
|
|
282
|
+
private normalizeDisplayValue;
|
|
281
283
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarComponent, never>;
|
|
282
284
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarComponent, "kendo-toolbar", ["kendoToolBar"], { "overflow": { "alias": "overflow"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "showText": { "alias": "showText"; "required": false; }; }, { "open": "open"; "close": "close"; }, ["allTools"], never, true, never>;
|
|
283
285
|
}
|
|
@@ -32,6 +32,10 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
32
32
|
*/
|
|
33
33
|
set text(text: string);
|
|
34
34
|
get text(): string;
|
|
35
|
+
/**
|
|
36
|
+
* @hidden
|
|
37
|
+
*/
|
|
38
|
+
get size(): any;
|
|
35
39
|
/**
|
|
36
40
|
* Specifies custom inline CSS styles of the Button.
|
|
37
41
|
*/
|
|
@@ -139,6 +143,10 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
139
143
|
selectedChange: EventEmitter<any>;
|
|
140
144
|
toolbarOptions: ToolOptions;
|
|
141
145
|
overflowOptions: ToolOptions;
|
|
146
|
+
/**
|
|
147
|
+
* @hidden
|
|
148
|
+
*/
|
|
149
|
+
hasBadgeContainer: boolean;
|
|
142
150
|
/**
|
|
143
151
|
* @hidden
|
|
144
152
|
*/
|
|
@@ -149,8 +157,10 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
149
157
|
private _showText;
|
|
150
158
|
private _showIcon;
|
|
151
159
|
private _text;
|
|
160
|
+
private propertyChangeSub;
|
|
152
161
|
constructor(element: ElementRef, zone: NgZone, host: ToolBarComponent);
|
|
153
162
|
ngOnInit(): void;
|
|
163
|
+
ngOnDestroy(): void;
|
|
154
164
|
/**
|
|
155
165
|
* @hidden
|
|
156
166
|
*/
|
|
@@ -8,12 +8,14 @@ import { ToolBarToolComponent } from './toolbar-tool.component';
|
|
|
8
8
|
import { ToolBarButtonComponent } from './toolbar-button.component';
|
|
9
9
|
import { ButtonGroupSelection } from '../group-selection-settings';
|
|
10
10
|
import { PreventableEvent } from '@progress/kendo-angular-buttons';
|
|
11
|
+
import { ToolBarComponent } from '../toolbar.component';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
/**
|
|
13
14
|
* Represents the Kendo UI Toolbar ButtonGroup for Angular.
|
|
14
15
|
*/
|
|
15
16
|
export declare class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
16
17
|
private localization;
|
|
18
|
+
private host;
|
|
17
19
|
/**
|
|
18
20
|
* By default, the ButtonGroup is enabled. To disable the whole group of buttons, set its `disabled`
|
|
19
21
|
* attribute to `true`. To disable a specific button, set the `disabled` attribute of the button to
|
|
@@ -52,7 +54,7 @@ export declare class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
|
52
54
|
private focusedIndex;
|
|
53
55
|
private getNextKey;
|
|
54
56
|
private getPrevKey;
|
|
55
|
-
constructor(localization: LocalizationService);
|
|
57
|
+
constructor(localization: LocalizationService, host: ToolBarComponent);
|
|
56
58
|
/**
|
|
57
59
|
* @hidden
|
|
58
60
|
*/
|
|
@@ -93,6 +95,10 @@ export declare class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
|
93
95
|
* @hidden
|
|
94
96
|
*/
|
|
95
97
|
getIconClasses(button: any): any;
|
|
98
|
+
/**
|
|
99
|
+
* @hidden
|
|
100
|
+
*/
|
|
101
|
+
get size(): any;
|
|
96
102
|
private focusButton;
|
|
97
103
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarButtonGroupComponent, never>;
|
|
98
104
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarButtonGroupComponent, "kendo-toolbar-buttongroup", ["kendoToolBarButtonGroup"], { "disabled": { "alias": "disabled"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "width": { "alias": "width"; "required": false; }; "look": { "alias": "look"; "required": false; }; }, {}, ["buttonComponents"], never, true, never>;
|
|
@@ -160,15 +160,21 @@ export declare class ToolBarDropDownButtonComponent extends ToolBarToolComponent
|
|
|
160
160
|
private _showText;
|
|
161
161
|
private _showIcon;
|
|
162
162
|
private _text;
|
|
163
|
+
private propertyChangeSub;
|
|
163
164
|
private getNextKey;
|
|
164
165
|
private getPrevKey;
|
|
165
166
|
constructor(zone: NgZone, renderer: Renderer2, host: ToolBarComponent);
|
|
166
167
|
ngOnInit(): void;
|
|
168
|
+
ngOnDestroy(): void;
|
|
167
169
|
ngAfterViewInit(): void;
|
|
168
170
|
/**
|
|
169
171
|
* @hidden
|
|
170
172
|
*/
|
|
171
173
|
onButtonListClick(ev: MouseEvent): void;
|
|
174
|
+
/**
|
|
175
|
+
* @hidden
|
|
176
|
+
*/
|
|
177
|
+
get size(): any;
|
|
172
178
|
/**
|
|
173
179
|
* @hidden
|
|
174
180
|
*/
|
|
@@ -150,6 +150,7 @@ export declare class ToolBarSplitButtonComponent extends ToolBarToolComponent im
|
|
|
150
150
|
toolbarOptions: ToolOptions;
|
|
151
151
|
overflowOptions: ToolOptions;
|
|
152
152
|
ngOnInit(): void;
|
|
153
|
+
ngOnDestroy(): void;
|
|
153
154
|
private get overflowButtons();
|
|
154
155
|
private _data;
|
|
155
156
|
private _popupSettings;
|
|
@@ -157,6 +158,7 @@ export declare class ToolBarSplitButtonComponent extends ToolBarToolComponent im
|
|
|
157
158
|
private _showText;
|
|
158
159
|
private _showIcon;
|
|
159
160
|
private _text;
|
|
161
|
+
private propertyChangeSub;
|
|
160
162
|
private getNextKey;
|
|
161
163
|
private getPrevKey;
|
|
162
164
|
private toolbarSplitButton;
|
|
@@ -176,6 +178,10 @@ export declare class ToolBarSplitButtonComponent extends ToolBarToolComponent im
|
|
|
176
178
|
* @hidden
|
|
177
179
|
*/
|
|
178
180
|
canFocus(): boolean;
|
|
181
|
+
/**
|
|
182
|
+
* @hidden
|
|
183
|
+
*/
|
|
184
|
+
get size(): any;
|
|
179
185
|
/**
|
|
180
186
|
* @hidden
|
|
181
187
|
*/
|