fw-webbuilder 1.1.245 → 1.1.246
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/fesm2022/fw-webbuilder.mjs +1 -1
- package/index.d.ts +6 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -122,6 +122,7 @@ declare class webBuilderService {
|
|
|
122
122
|
* }
|
|
123
123
|
*/
|
|
124
124
|
dataCopyFormat: any;
|
|
125
|
+
data_list: any;
|
|
125
126
|
constructor(http: HttpClient);
|
|
126
127
|
closeConnection(): void;
|
|
127
128
|
onNotifyChange(callback: (data: any) => void): any;
|
|
@@ -1130,15 +1131,19 @@ declare class WbLinkPageConfig implements OnInit {
|
|
|
1130
1131
|
declare class WbMenuContentConfig implements OnInit {
|
|
1131
1132
|
webBuilderService: webBuilderService;
|
|
1132
1133
|
private modal;
|
|
1134
|
+
private msg;
|
|
1135
|
+
private translate;
|
|
1133
1136
|
data: any;
|
|
1134
1137
|
device: any;
|
|
1135
1138
|
options: any;
|
|
1136
1139
|
directionOptions: any;
|
|
1137
|
-
constructor(webBuilderService: webBuilderService, modal: NzModalService);
|
|
1140
|
+
constructor(webBuilderService: webBuilderService, modal: NzModalService, msg: NzMessageService, translate: TranslateService);
|
|
1138
1141
|
ngOnInit(): void;
|
|
1139
1142
|
handleEditContent(): void;
|
|
1140
1143
|
updateConfig(): void;
|
|
1141
1144
|
handleChangeDirection(direction: string): void;
|
|
1145
|
+
handleCopyContent(): void;
|
|
1146
|
+
handlePasteContent(): void;
|
|
1142
1147
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbMenuContentConfig, never>;
|
|
1143
1148
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbMenuContentConfig, "wb-menu-content-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; }, {}, never, never, true, never>;
|
|
1144
1149
|
}
|