fw-webbuilder 1.1.281 → 1.1.282

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/index.d.ts CHANGED
@@ -1204,7 +1204,7 @@ declare class WbImageListNumberConfig implements OnInit {
1204
1204
  static ɵcmp: i0.ɵɵComponentDeclaration<WbImageListNumberConfig, "wb-image-list-number-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "configNumber": { "alias": "configNumber"; "required": false; }; "classGrid": { "alias": "classGrid"; "required": false; }; }, {}, never, never, true, never>;
1205
1205
  }
1206
1206
 
1207
- declare class WbLinkPageConfig implements OnInit {
1207
+ declare class WbLinkPageConfig implements OnInit, OnChanges {
1208
1208
  webBuilderService: webBuilderService;
1209
1209
  private modal;
1210
1210
  private translate;
@@ -1215,6 +1215,13 @@ declare class WbLinkPageConfig implements OnInit {
1215
1215
  dialogTypeOptions: any[];
1216
1216
  drawerPositionOptions: any[];
1217
1217
  pages: any;
1218
+ pageGroups: {
1219
+ label: string;
1220
+ type: string;
1221
+ pages: any[];
1222
+ }[];
1223
+ selectedPageId: string | null;
1224
+ pageTypeMap: Record<string, string>;
1218
1225
  clickActionOptions: {
1219
1226
  label: string;
1220
1227
  value: string;
@@ -1222,9 +1229,16 @@ declare class WbLinkPageConfig implements OnInit {
1222
1229
  blocks: any;
1223
1230
  constructor(webBuilderService: webBuilderService, modal: NzModalService, translate: TranslateService);
1224
1231
  get filteredFreeblocks(): any;
1232
+ getPageTypeName(type: string): string;
1233
+ getPageName(item: any): string;
1234
+ getPageLabel(item: any): string;
1235
+ buildPageGroups(): void;
1225
1236
  ngOnInit(): void;
1237
+ ngOnChanges(changes: SimpleChanges): void;
1238
+ initSelectedPage(): void;
1239
+ onSelectPage(pageId: string): void;
1226
1240
  getPages(): void;
1227
- getBlocks(): void;
1241
+ getBlocks(pageId?: string): void;
1228
1242
  updateClass(): void;
1229
1243
  updateConfig(): void;
1230
1244
  openManageImgs(): void;
@@ -1888,6 +1902,9 @@ declare class WbFrameProducts implements OnInit, OnDestroy {
1888
1902
  elementRef: ElementRef;
1889
1903
  authService: AuthService;
1890
1904
  map: ComponentMapService;
1905
+ private route;
1906
+ private modal;
1907
+ private translate;
1891
1908
  data: any;
1892
1909
  device: any;
1893
1910
  class: any;
@@ -1921,8 +1938,12 @@ declare class WbFrameProducts implements OnInit, OnDestroy {
1921
1938
  changeGridSub: any;
1922
1939
  private lastGridSignature;
1923
1940
  autoSlideInterval: any;
1924
- constructor(webBuilderService: webBuilderService, elementRef: ElementRef, authService: AuthService, map: ComponentMapService);
1941
+ constructor(webBuilderService: webBuilderService, elementRef: ElementRef, authService: AuthService, map: ComponentMapService, route: ActivatedRoute, modal: NzModalService, translate: TranslateService);
1942
+ onDblClick(event: MouseEvent): void;
1943
+ handleEditContent(): void;
1925
1944
  ngOnInit(): void;
1945
+ loadRelateDataByRoute(): void;
1946
+ handleFetchRelateData(product: any): void;
1926
1947
  updateDataClone(): void;
1927
1948
  ngOnChanges(changes: SimpleChanges): void;
1928
1949
  ngDoCheck(): void;
@@ -2267,9 +2288,11 @@ declare class WbBreadcumb implements OnInit {
2267
2288
  routeSub?: Subscription;
2268
2289
  constructor(route: ActivatedRoute, webBuilderService: webBuilderService, router: Router);
2269
2290
  ngOnInit(): void;
2291
+ updateItemName(slug?: string | null): void;
2270
2292
  updateDataClone(): void;
2271
2293
  ngOnChanges(changes: SimpleChanges): void;
2272
2294
  handleNavigate(): void;
2295
+ getIcon(): any;
2273
2296
  static ɵfac: i0.ɵɵFactoryDeclaration<WbBreadcumb, never>;
2274
2297
  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>;
2275
2298
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fw-webbuilder",
3
- "version": "1.1.281",
3
+ "version": "1.1.282",
4
4
  "peerDependencies": {
5
5
  "@fingerprintjs/fingerprintjs": "^5.2.0",
6
6
  "@abacritt/angularx-social-login": "2.4.0",