fw-webbuilder 1.1.228 → 1.1.230
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 +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -368,6 +368,7 @@ declare class webBuilderService {
|
|
|
368
368
|
getDashboard(startDate: string, endDate: string): Promise<Object>;
|
|
369
369
|
private getVisitorId;
|
|
370
370
|
addAdminUser(data: any): Promise<any>;
|
|
371
|
+
changeTemplate(db: string, id_template: string): Promise<Object>;
|
|
371
372
|
static ɵfac: i0.ɵɵFactoryDeclaration<webBuilderService, never>;
|
|
372
373
|
static ɵprov: i0.ɵɵInjectableDeclaration<webBuilderService>;
|
|
373
374
|
}
|
|
@@ -2103,6 +2104,7 @@ declare class WbSelectProvinceDistrictWardConfig implements OnInit {
|
|
|
2103
2104
|
declare class WbBreadcumb implements OnInit {
|
|
2104
2105
|
private route;
|
|
2105
2106
|
webBuilderService: webBuilderService;
|
|
2107
|
+
private router;
|
|
2106
2108
|
data: any;
|
|
2107
2109
|
device: any;
|
|
2108
2110
|
class: any;
|
|
@@ -2115,10 +2117,11 @@ declare class WbBreadcumb implements OnInit {
|
|
|
2115
2117
|
pageName: string;
|
|
2116
2118
|
itemName: string;
|
|
2117
2119
|
routeSub?: Subscription;
|
|
2118
|
-
constructor(route: ActivatedRoute, webBuilderService: webBuilderService);
|
|
2120
|
+
constructor(route: ActivatedRoute, webBuilderService: webBuilderService, router: Router);
|
|
2119
2121
|
ngOnInit(): void;
|
|
2120
2122
|
updateDataClone(): void;
|
|
2121
2123
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2124
|
+
handleNavigate(): void;
|
|
2122
2125
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbBreadcumb, never>;
|
|
2123
2126
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbBreadcumb, "wb-breadcumb", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "class": { "alias": "class"; "required": false; }; "config": { "alias": "config"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "type": { "alias": "type"; "required": false; }; "isClone": { "alias": "isClone"; "required": false; }; "product": { "alias": "product"; "required": false; }; }, {}, never, never, true, never>;
|
|
2124
2127
|
}
|