@progress/kendo-angular-toolbar 17.0.0-develop.9 → 17.0.0
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/README.md +28 -20
- package/common/fillmode.d.ts +8 -0
- package/common/size.d.ts +1 -1
- package/direction.d.ts +1 -1
- package/display-mode.d.ts +1 -1
- package/{esm2020 → esm2022}/common/preventable-event.mjs +1 -3
- package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/localization/localized-toolbar-messages.directive.mjs +9 -8
- package/{esm2020 → esm2022}/localization/messages.mjs +7 -3
- package/{esm2020 → esm2022}/navigation.service.mjs +9 -7
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{esm2020 → esm2022}/refresh.service.mjs +4 -6
- package/{esm2020 → esm2022}/renderer.component.mjs +22 -10
- package/{esm2020 → esm2022}/renderer.service.mjs +5 -3
- package/esm2022/tool-options.mjs +5 -0
- package/{esm2020 → esm2022}/toolbar.component.mjs +104 -64
- package/{esm2020 → esm2022}/toolbar.module.mjs +4 -4
- package/{esm2020 → esm2022}/tools/toolbar-button.component.mjs +110 -98
- package/{esm2020 → esm2022}/tools/toolbar-buttongroup.component.mjs +49 -25
- package/{esm2020 → esm2022}/tools/toolbar-dropdownbutton.component.mjs +112 -95
- package/{esm2020 → esm2022}/tools/toolbar-separator.component.mjs +7 -12
- package/{esm2020 → esm2022}/tools/toolbar-spacer.component.mjs +10 -16
- package/{esm2020 → esm2022}/tools/toolbar-splitbutton.component.mjs +117 -102
- package/{esm2020 → esm2022}/tools/toolbar-tool.component.mjs +23 -13
- package/{esm2020 → esm2022}/tools/tools.service.mjs +8 -10
- package/{esm2020 → esm2022}/util.mjs +5 -0
- package/{fesm2020 → fesm2022}/progress-kendo-angular-toolbar.mjs +612 -484
- package/group-selection-settings.d.ts +1 -1
- package/index.d.ts +1 -0
- package/localization/messages.d.ts +1 -1
- package/package.json +15 -21
- package/render-location.d.ts +1 -1
- package/renderer.component.d.ts +1 -1
- package/schematics/ngAdd/index.js +1 -1
- package/toolbar.component.d.ts +11 -1
- package/tools/toolbar-button.component.d.ts +2 -8
- package/tools/toolbar-buttongroup.component.d.ts +8 -4
- package/tools/toolbar-dropdownbutton.component.d.ts +2 -4
- package/tools/toolbar-separator.component.d.ts +1 -3
- package/tools/toolbar-spacer.component.d.ts +1 -3
- package/tools/toolbar-splitbutton.component.d.ts +2 -4
- package/tools/toolbar-tool.component.d.ts +3 -3
- package/fesm2015/progress-kendo-angular-toolbar.mjs +0 -3374
- /package/{esm2020/common/renderer-click.mjs → esm2022/common/fillmode.mjs} +0 -0
- /package/{esm2020/common/size.mjs → esm2022/common/renderer-click.mjs} +0 -0
- /package/{esm2020/direction.mjs → esm2022/common/size.mjs} +0 -0
- /package/{esm2020/display-mode.mjs → esm2022/direction.mjs} +0 -0
- /package/{esm2020 → esm2022}/directives.mjs +0 -0
- /package/{esm2020/group-selection-settings.mjs → esm2022/display-mode.mjs} +0 -0
- /package/{esm2020/popup-settings.mjs → esm2022/group-selection-settings.mjs} +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020/render-location.mjs → esm2022/popup-settings.mjs} +0 -0
- /package/{esm2020 → esm2022}/progress-kendo-angular-toolbar.mjs +0 -0
- /package/{esm2020/tool-options.mjs → esm2022/render-location.mjs} +0 -0
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
* The selection mode of the ToolBar ButtonGroup. For more information, refer to the
|
|
7
7
|
* [`ToolBarButtonGroupComponent`]({% slug api_toolbar_toolbarbuttongroupcomponent %}).
|
|
8
8
|
*/
|
|
9
|
-
export
|
|
9
|
+
export type ButtonGroupSelection = "single" | "multiple";
|
package/index.d.ts
CHANGED
|
@@ -18,4 +18,5 @@ export { LocalizedToolbarMessagesDirective } from './localization/localized-tool
|
|
|
18
18
|
export { ToolbarCustomMessagesComponent } from './localization/custom-messages.component';
|
|
19
19
|
export { RefreshService } from './refresh.service';
|
|
20
20
|
export { ToolbarSize } from './common/size';
|
|
21
|
+
export { ToolbarFillMode } from './common/fillmode';
|
|
21
22
|
export * from './directives';
|
|
@@ -13,5 +13,5 @@ export declare class ToolbarMessages extends ComponentMessages {
|
|
|
13
13
|
*/
|
|
14
14
|
moreToolsTitle: string;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarMessages, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ToolbarMessages, "kendo-toolbar-messages-base", never, { "moreToolsTitle": "moreToolsTitle"; }, {}, never, never, false, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ToolbarMessages, "kendo-toolbar-messages-base", never, { "moreToolsTitle": { "alias": "moreToolsTitle"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-toolbar",
|
|
3
|
-
"version": "17.0.0
|
|
3
|
+
"version": "17.0.0",
|
|
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",
|
|
@@ -24,28 +24,24 @@
|
|
|
24
24
|
"friendlyName": "ToolBar"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@angular/animations": "
|
|
28
|
-
"@angular/common": "
|
|
29
|
-
"@angular/core": "
|
|
30
|
-
"@angular/platform-browser": "
|
|
27
|
+
"@angular/animations": "16 - 18",
|
|
28
|
+
"@angular/common": "16 - 18",
|
|
29
|
+
"@angular/core": "16 - 18",
|
|
30
|
+
"@angular/platform-browser": "16 - 18",
|
|
31
31
|
"@progress/kendo-licensing": "^1.0.2",
|
|
32
|
-
"@progress/kendo-angular-buttons": "17.0.0
|
|
33
|
-
"@progress/kendo-angular-common": "17.0.0
|
|
34
|
-
"@progress/kendo-angular-l10n": "17.0.0
|
|
35
|
-
"@progress/kendo-angular-icons": "17.0.0
|
|
36
|
-
"@progress/kendo-angular-popup": "17.0.0
|
|
32
|
+
"@progress/kendo-angular-buttons": "17.0.0",
|
|
33
|
+
"@progress/kendo-angular-common": "17.0.0",
|
|
34
|
+
"@progress/kendo-angular-l10n": "17.0.0",
|
|
35
|
+
"@progress/kendo-angular-icons": "17.0.0",
|
|
36
|
+
"@progress/kendo-angular-popup": "17.0.0",
|
|
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": "17.0.0
|
|
41
|
+
"@progress/kendo-angular-schematics": "17.0.0"
|
|
42
42
|
},
|
|
43
43
|
"schematics": "./schematics/collection.json",
|
|
44
|
-
"module": "
|
|
45
|
-
"es2020": "fesm2020/progress-kendo-angular-toolbar.mjs",
|
|
46
|
-
"esm2020": "esm2020/progress-kendo-angular-toolbar.mjs",
|
|
47
|
-
"fesm2020": "fesm2020/progress-kendo-angular-toolbar.mjs",
|
|
48
|
-
"fesm2015": "fesm2015/progress-kendo-angular-toolbar.mjs",
|
|
44
|
+
"module": "fesm2022/progress-kendo-angular-toolbar.mjs",
|
|
49
45
|
"typings": "index.d.ts",
|
|
50
46
|
"exports": {
|
|
51
47
|
"./package.json": {
|
|
@@ -53,11 +49,9 @@
|
|
|
53
49
|
},
|
|
54
50
|
".": {
|
|
55
51
|
"types": "./index.d.ts",
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"node": "./fesm2015/progress-kendo-angular-toolbar.mjs",
|
|
60
|
-
"default": "./fesm2020/progress-kendo-angular-toolbar.mjs"
|
|
52
|
+
"esm2022": "./esm2022/progress-kendo-angular-toolbar.mjs",
|
|
53
|
+
"esm": "./esm2022/progress-kendo-angular-toolbar.mjs",
|
|
54
|
+
"default": "./fesm2022/progress-kendo-angular-toolbar.mjs"
|
|
61
55
|
}
|
|
62
56
|
},
|
|
63
57
|
"sideEffects": false
|
package/render-location.d.ts
CHANGED
package/renderer.component.d.ts
CHANGED
|
@@ -42,5 +42,5 @@ export declare class ToolBarRendererComponent implements OnInit, OnDestroy {
|
|
|
42
42
|
private onClick;
|
|
43
43
|
private updateTools;
|
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarRendererComponent, never>;
|
|
45
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ToolBarRendererComponent, "[kendoToolbarRenderer]", never, { "tool": "tool"; "location": "location"; "resizable": "resizable"; }, { "rendererClick": "rendererClick"; }, never, never, true, never>;
|
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ToolBarRendererComponent, "[kendoToolbarRenderer]", never, { "tool": { "alias": "tool"; "required": false; }; "location": { "alias": "location"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; }, { "rendererClick": "rendererClick"; }, never, never, true, never>;
|
|
46
46
|
}
|
|
@@ -4,7 +4,7 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ToolBarModule', package: 'toolbar', peerDependencies: {
|
|
6
6
|
// peer dep of the icons
|
|
7
|
-
'@progress/kendo-svg-icons': '^
|
|
7
|
+
'@progress/kendo-svg-icons': '^4.0.0'
|
|
8
8
|
} });
|
|
9
9
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
10
10
|
}
|
package/toolbar.component.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import { Direction } from './direction';
|
|
|
16
16
|
import { RendererClickPayload } from './common/renderer-click';
|
|
17
17
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
18
18
|
import { ToolbarToolsService } from './tools/tools.service';
|
|
19
|
+
import { ToolbarFillMode } from './common/fillmode';
|
|
19
20
|
import * as i0 from "@angular/core";
|
|
20
21
|
/**
|
|
21
22
|
* Represents the [Kendo UI ToolBar component for Angular]({% slug overview_toolbar %}).
|
|
@@ -49,6 +50,14 @@ export declare class ToolBarComponent {
|
|
|
49
50
|
*/
|
|
50
51
|
set popupSettings(settings: PopupSettings);
|
|
51
52
|
get popupSettings(): PopupSettings;
|
|
53
|
+
/**
|
|
54
|
+
* The fillMode property specifies the background and border styles of the Toolbar
|
|
55
|
+
* ([see example](slug:appearance_toolbar#toc-fill-mode)).
|
|
56
|
+
*
|
|
57
|
+
* @default 'solid'
|
|
58
|
+
*/
|
|
59
|
+
set fillMode(fillMode: ToolbarFillMode);
|
|
60
|
+
get fillMode(): ToolbarFillMode;
|
|
52
61
|
/**
|
|
53
62
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the ToolBar.
|
|
54
63
|
*/
|
|
@@ -96,6 +105,7 @@ export declare class ToolBarComponent {
|
|
|
96
105
|
private cancelRenderedToolsSubscription$;
|
|
97
106
|
private cachedGap;
|
|
98
107
|
private _size;
|
|
108
|
+
private _fillMode;
|
|
99
109
|
private overflowButtonClickedTime;
|
|
100
110
|
private subscriptions;
|
|
101
111
|
private popupSubs;
|
|
@@ -174,5 +184,5 @@ export declare class ToolBarComponent {
|
|
|
174
184
|
private handleClasses;
|
|
175
185
|
private normalizePopupClasses;
|
|
176
186
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarComponent, never>;
|
|
177
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarComponent, "kendo-toolbar", ["kendoToolBar"], { "overflow": "overflow"; "resizable": "resizable"; "popupSettings": "popupSettings"; "tabindex": "tabindex"; "size": "size"; "tabIndex": "tabIndex"; }, { "open": "open"; "close": "close"; }, ["allTools"], never, true, never>;
|
|
187
|
+
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; }; }, { "open": "open"; "close": "close"; }, ["allTools"], never, true, never>;
|
|
178
188
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { EventEmitter, ElementRef, NgZone } from '@angular/core';
|
|
6
6
|
import { ToolBarToolComponent } from './toolbar-tool.component';
|
|
7
7
|
import { DisplayMode } from '../display-mode';
|
|
8
8
|
import { ToolOptions } from '../tool-options';
|
|
@@ -134,8 +134,6 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
134
134
|
* The event argument is the new selected state (Boolean).
|
|
135
135
|
*/
|
|
136
136
|
selectedChange: EventEmitter<any>;
|
|
137
|
-
toolbarTemplate: TemplateRef<any>;
|
|
138
|
-
popupTemplate: TemplateRef<any>;
|
|
139
137
|
toolbarOptions: ToolOptions;
|
|
140
138
|
overflowOptions: ToolOptions;
|
|
141
139
|
toolbarButtonElement: ElementRef;
|
|
@@ -160,10 +158,6 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
160
158
|
* @hidden
|
|
161
159
|
*/
|
|
162
160
|
handleKey(): boolean;
|
|
163
|
-
/**
|
|
164
|
-
* @hidden
|
|
165
|
-
*/
|
|
166
|
-
get toolbarButtonClass(): string;
|
|
167
161
|
/**
|
|
168
162
|
* @hidden
|
|
169
163
|
*/
|
|
@@ -175,5 +169,5 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
175
169
|
private getButton;
|
|
176
170
|
private setTextDisplayMode;
|
|
177
171
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarButtonComponent, never>;
|
|
178
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarButtonComponent, "kendo-toolbar-button", ["kendoToolBarButton"], { "showText": "showText"; "showIcon": "showIcon"; "text": "text"; "style": "style"; "className": "className"; "title": "title"; "disabled": "disabled"; "toggleable": "toggleable"; "look": "look"; "togglable": "togglable"; "selected": "selected"; "fillMode": "fillMode"; "themeColor": "themeColor"; "icon": "icon"; "iconClass": "iconClass"; "svgIcon": "svgIcon"; "imageUrl": "imageUrl"; }, { "click": "click"; "pointerdown": "pointerdown"; "selectedChange": "selectedChange"; }, never, never, true, never>;
|
|
172
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarButtonComponent, "kendo-toolbar-button", ["kendoToolBarButton"], { "showText": { "alias": "showText"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "style": { "alias": "style"; "required": false; }; "className": { "alias": "className"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "look": { "alias": "look"; "required": false; }; "togglable": { "alias": "togglable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "click": "click"; "pointerdown": "pointerdown"; "selectedChange": "selectedChange"; }, never, never, true, never>;
|
|
179
173
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { QueryList, ElementRef } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { ToolBarToolComponent } from './toolbar-tool.component';
|
|
8
8
|
import { ToolBarButtonComponent } from './toolbar-button.component';
|
|
@@ -22,6 +22,12 @@ export declare class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
|
22
22
|
* buttons and they will be ignored.
|
|
23
23
|
*/
|
|
24
24
|
disabled: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* @hidden
|
|
27
|
+
*
|
|
28
|
+
* Used to set different fillmode in Spreadsheet and Toolbar to comply with referent rendering.
|
|
29
|
+
*/
|
|
30
|
+
fillMode: 'solid' | 'flat';
|
|
25
31
|
/**
|
|
26
32
|
* By default, the selection mode of the ButtonGroup is set to `multiple`.
|
|
27
33
|
*/
|
|
@@ -38,8 +44,6 @@ export declare class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
|
38
44
|
* @hidden
|
|
39
45
|
*/
|
|
40
46
|
set look(look: 'default' | 'flat' | 'outline');
|
|
41
|
-
toolbarTemplate: TemplateRef<any>;
|
|
42
|
-
popupTemplate: TemplateRef<any>;
|
|
43
47
|
private toolbarButtonGroup;
|
|
44
48
|
overflowListItems: QueryList<ElementRef>;
|
|
45
49
|
buttonComponents: QueryList<ToolBarButtonComponent>;
|
|
@@ -90,5 +94,5 @@ export declare class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
|
90
94
|
getIconClasses(button: any): any;
|
|
91
95
|
private focusButton;
|
|
92
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarButtonGroupComponent, never>;
|
|
93
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarButtonGroupComponent, "kendo-toolbar-buttongroup", ["kendoToolBarButtonGroup"], { "disabled": "disabled"; "selection": "selection"; "width": "width"; "look": "look"; }, {}, ["buttonComponents"], never, true, never>;
|
|
97
|
+
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>;
|
|
94
98
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ElementRef,
|
|
5
|
+
import { ElementRef, EventEmitter, OnInit, QueryList, Renderer2 } from '@angular/core';
|
|
6
6
|
import { ToolBarToolComponent } from './toolbar-tool.component';
|
|
7
7
|
import { PopupSettings } from '../popup-settings';
|
|
8
8
|
import { ArrowIconSettings, ButtonFillMode, ButtonThemeColor, DropDownButtonComponent } from '@progress/kendo-angular-buttons';
|
|
@@ -143,8 +143,6 @@ export declare class ToolBarDropDownButtonComponent extends ToolBarToolComponent
|
|
|
143
143
|
* This event is preventable. If you cancel the event, the popup will remain open.
|
|
144
144
|
*/
|
|
145
145
|
close: EventEmitter<PreventableEvent>;
|
|
146
|
-
toolbarTemplate: TemplateRef<any>;
|
|
147
|
-
popupTemplate: TemplateRef<any>;
|
|
148
146
|
dropdownButton: ElementRef;
|
|
149
147
|
dropDownButtonComponent: DropDownButtonComponent;
|
|
150
148
|
overflowListItems: QueryList<ElementRef>;
|
|
@@ -189,5 +187,5 @@ export declare class ToolBarDropDownButtonComponent extends ToolBarToolComponent
|
|
|
189
187
|
private focusButton;
|
|
190
188
|
private setTextDisplayMode;
|
|
191
189
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarDropDownButtonComponent, never>;
|
|
192
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarDropDownButtonComponent, "kendo-toolbar-dropdownbutton", ["kendoToolBarDropDownButton"], { "arrowIcon": "arrowIcon"; "title": "title"; "showText": "showText"; "showIcon": "showIcon"; "text": "text"; "icon": "icon"; "svgIcon": "svgIcon"; "iconClass": "iconClass"; "imageUrl": "imageUrl"; "popupSettings": "popupSettings"; "look": "look"; "primary": "primary"; "fillMode": "fillMode"; "themeColor": "themeColor"; "buttonClass": "buttonClass"; "textField": "textField"; "disabled": "disabled"; "data": "data"; }, { "itemClick": "itemClick"; "open": "open"; "close": "close"; }, never, never, true, never>;
|
|
190
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarDropDownButtonComponent, "kendo-toolbar-dropdownbutton", ["kendoToolBarDropDownButton"], { "arrowIcon": { "alias": "arrowIcon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "showText": { "alias": "showText"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "look": { "alias": "look"; "required": false; }; "primary": { "alias": "primary"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "itemClick": "itemClick"; "open": "open"; "close": "close"; }, never, never, true, never>;
|
|
193
191
|
}
|
|
@@ -2,15 +2,13 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { ElementRef, AfterViewInit } from '@angular/core';
|
|
6
6
|
import { ToolBarToolComponent } from './toolbar-tool.component';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Represents the [Kendo UI ToolBar Separator for Angular]({% slug controltypes_toolbar %}#toc-separators).
|
|
10
10
|
*/
|
|
11
11
|
export declare class ToolBarSeparatorComponent extends ToolBarToolComponent implements AfterViewInit {
|
|
12
|
-
toolbarTemplate: TemplateRef<any>;
|
|
13
|
-
popupTemplate: TemplateRef<any>;
|
|
14
12
|
separator: ElementRef;
|
|
15
13
|
constructor();
|
|
16
14
|
/**
|
|
@@ -2,15 +2,13 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { AfterViewInit } from '@angular/core';
|
|
6
6
|
import { ToolBarToolComponent } from './toolbar-tool.component';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Represents the [Kendo UI ToolBar Spacer for Angular]({% slug controltypes_toolbar %}#toc-separators).
|
|
10
10
|
*/
|
|
11
11
|
export declare class ToolBarSpacerComponent extends ToolBarToolComponent implements AfterViewInit {
|
|
12
|
-
toolbarTemplate: TemplateRef<any>;
|
|
13
|
-
popupTemplate: TemplateRef<any>;
|
|
14
12
|
/**
|
|
15
13
|
* @hidden
|
|
16
14
|
*/
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { ElementRef, EventEmitter, OnInit, QueryList } from '@angular/core';
|
|
6
6
|
import { ButtonFillMode, ButtonThemeColor } from '@progress/kendo-angular-buttons';
|
|
7
7
|
import { ToolBarToolComponent } from './toolbar-tool.component';
|
|
8
8
|
import { PopupSettings } from '../popup-settings';
|
|
@@ -144,8 +144,6 @@ export declare class ToolBarSplitButtonComponent extends ToolBarToolComponent im
|
|
|
144
144
|
* This event is preventable. If you cancel the event, the popup will remain open.
|
|
145
145
|
*/
|
|
146
146
|
close: EventEmitter<PreventableEvent>;
|
|
147
|
-
toolbarTemplate: TemplateRef<any>;
|
|
148
|
-
popupTemplate: TemplateRef<any>;
|
|
149
147
|
toolbarOptions: ToolOptions;
|
|
150
148
|
overflowOptions: ToolOptions;
|
|
151
149
|
ngOnInit(): void;
|
|
@@ -192,5 +190,5 @@ export declare class ToolBarSplitButtonComponent extends ToolBarToolComponent im
|
|
|
192
190
|
private focusButton;
|
|
193
191
|
private setTextDisplayMode;
|
|
194
192
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarSplitButtonComponent, never>;
|
|
195
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarSplitButtonComponent, "kendo-toolbar-splitbutton", ["kendoToolBarSplitButton"], { "showText": "showText"; "showIcon": "showIcon"; "text": "text"; "icon": "icon"; "svgIcon": "svgIcon"; "iconClass": "iconClass"; "imageUrl": "imageUrl"; "disabled": "disabled"; "popupSettings": "popupSettings"; "fillMode": "fillMode"; "themeColor": "themeColor"; "look": "look"; "buttonClass": "buttonClass"; "arrowButtonClass": "arrowButtonClass"; "arrowButtonIcon": "arrowButtonIcon"; "arrowButtonSvgIcon": "arrowButtonSvgIcon"; "textField": "textField"; "data": "data"; }, { "buttonClick": "buttonClick"; "itemClick": "itemClick"; "open": "open"; "close": "close"; }, never, never, true, never>;
|
|
193
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarSplitButtonComponent, "kendo-toolbar-splitbutton", ["kendoToolBarSplitButton"], { "showText": { "alias": "showText"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "look": { "alias": "look"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "arrowButtonClass": { "alias": "arrowButtonClass"; "required": false; }; "arrowButtonIcon": { "alias": "arrowButtonIcon"; "required": false; }; "arrowButtonSvgIcon": { "alias": "arrowButtonSvgIcon"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "buttonClick": "buttonClick"; "itemClick": "itemClick"; "open": "open"; "close": "close"; }, never, never, true, never>;
|
|
196
194
|
}
|
|
@@ -9,11 +9,11 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Extend this class to create custom tools.
|
|
10
10
|
*/
|
|
11
11
|
export declare class ToolBarToolComponent {
|
|
12
|
+
toolbarTemplate: TemplateRef<any>;
|
|
13
|
+
popupTemplate: TemplateRef<any>;
|
|
12
14
|
tabIndex: number;
|
|
13
15
|
overflows: boolean;
|
|
14
16
|
visibility: string;
|
|
15
|
-
toolbarTemplate: TemplateRef<any>;
|
|
16
|
-
popupTemplate: TemplateRef<any>;
|
|
17
17
|
element: ElementRef;
|
|
18
18
|
isBuiltInTool: boolean;
|
|
19
19
|
constructor();
|
|
@@ -44,5 +44,5 @@ export declare class ToolBarToolComponent {
|
|
|
44
44
|
*/
|
|
45
45
|
handleKey(ev: KeyboardEvent): boolean;
|
|
46
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarToolComponent, never>;
|
|
47
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ToolBarToolComponent, never, never, { "responsive": "responsive"; }, {}, never, never, true, never>;
|
|
47
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ToolBarToolComponent, never, never, { "responsive": { "alias": "responsive"; "required": false; }; }, {}, never, never, true, never>;
|
|
48
48
|
}
|