fw-webbuilder 1.1.229 → 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 +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2104,6 +2104,7 @@ declare class WbSelectProvinceDistrictWardConfig implements OnInit {
|
|
|
2104
2104
|
declare class WbBreadcumb implements OnInit {
|
|
2105
2105
|
private route;
|
|
2106
2106
|
webBuilderService: webBuilderService;
|
|
2107
|
+
private router;
|
|
2107
2108
|
data: any;
|
|
2108
2109
|
device: any;
|
|
2109
2110
|
class: any;
|
|
@@ -2116,10 +2117,11 @@ declare class WbBreadcumb implements OnInit {
|
|
|
2116
2117
|
pageName: string;
|
|
2117
2118
|
itemName: string;
|
|
2118
2119
|
routeSub?: Subscription;
|
|
2119
|
-
constructor(route: ActivatedRoute, webBuilderService: webBuilderService);
|
|
2120
|
+
constructor(route: ActivatedRoute, webBuilderService: webBuilderService, router: Router);
|
|
2120
2121
|
ngOnInit(): void;
|
|
2121
2122
|
updateDataClone(): void;
|
|
2122
2123
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2124
|
+
handleNavigate(): void;
|
|
2123
2125
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbBreadcumb, never>;
|
|
2124
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>;
|
|
2125
2127
|
}
|