@kris701/ez-ui 1.3.6 → 1.3.8
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/package.json
CHANGED
package/types/kris701-ez-ui.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ interface MenuBarItem {
|
|
|
115
115
|
expanded: boolean;
|
|
116
116
|
command(): Promise<any>;
|
|
117
117
|
style: string;
|
|
118
|
+
data: any;
|
|
118
119
|
}
|
|
119
120
|
declare class EzUIMenuBarSubDataList {
|
|
120
121
|
menuItemTemplate: TemplateRef<any> | undefined;
|
|
@@ -238,6 +239,7 @@ interface PopoutMenuItem {
|
|
|
238
239
|
expanded: boolean;
|
|
239
240
|
command(): Promise<any>;
|
|
240
241
|
style: string;
|
|
242
|
+
data: any;
|
|
241
243
|
}
|
|
242
244
|
declare class EzUIPopoutMenuSubDataList {
|
|
243
245
|
itemTemplate: TemplateRef<any> | undefined;
|
|
@@ -253,9 +255,10 @@ declare class EzUIPopoutMenu implements OnChanges {
|
|
|
253
255
|
label: string;
|
|
254
256
|
size: "l" | "m" | "s";
|
|
255
257
|
appearance: string;
|
|
258
|
+
onMenuOpen: EventEmitter<boolean>;
|
|
256
259
|
ngOnChanges(changes: SimpleChanges): void;
|
|
257
260
|
static ɵfac: i0.ɵɵFactoryDeclaration<EzUIPopoutMenu, never>;
|
|
258
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EzUIPopoutMenu, "ezui-popoutmenu", never, { "items": { "alias": "items"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; }, {}, ["itemTemplate"], never, true, never>;
|
|
261
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EzUIPopoutMenu, "ezui-popoutmenu", never, { "items": { "alias": "items"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; }, { "onMenuOpen": "onMenuOpen"; }, ["itemTemplate"], never, true, never>;
|
|
259
262
|
}
|
|
260
263
|
|
|
261
264
|
declare class EzUIPasswordInput implements OnChanges {
|