fw-webbuilder 1.1.154 → 1.1.156

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
@@ -1097,8 +1097,12 @@ declare class WbOrdinalConfig implements OnInit {
1097
1097
  data: any;
1098
1098
  device: any;
1099
1099
  classGap: any;
1100
+ classMinHeight: any;
1100
1101
  classJustifyContent: any;
1102
+ classTransitionDuration: any;
1101
1103
  configPositionTab: any;
1104
+ configDefaultIndex: any;
1105
+ configIsOpenAll: any;
1102
1106
  positions: {
1103
1107
  label: string;
1104
1108
  value: string;
@@ -1108,14 +1112,16 @@ declare class WbOrdinalConfig implements OnInit {
1108
1112
  ngOnInit(): void;
1109
1113
  drop(event: CdkDragDrop<string[]>): void;
1110
1114
  updateClass(): void;
1115
+ updateConfig(): void;
1111
1116
  updateObjectChoosingConfig(object: any, field: string): void;
1112
1117
  handleAdd(): void;
1113
1118
  onChangePositionTab(pos: any): void;
1114
1119
  updateClassAndConfig(): void;
1115
1120
  handleRemove(obj: any): void;
1116
1121
  randomColor(): string;
1122
+ updateMinHeight(): void;
1117
1123
  static ɵfac: i0.ɵɵFactoryDeclaration<WbOrdinalConfig, never>;
1118
- static ɵcmp: i0.ɵɵComponentDeclaration<WbOrdinalConfig, "wb-ordinal-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "classGap": { "alias": "classGap"; "required": false; }; "classJustifyContent": { "alias": "classJustifyContent"; "required": false; }; "configPositionTab": { "alias": "configPositionTab"; "required": false; }; }, {}, never, never, true, never>;
1124
+ static ɵcmp: i0.ɵɵComponentDeclaration<WbOrdinalConfig, "wb-ordinal-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "classGap": { "alias": "classGap"; "required": false; }; "classMinHeight": { "alias": "classMinHeight"; "required": false; }; "classJustifyContent": { "alias": "classJustifyContent"; "required": false; }; "classTransitionDuration": { "alias": "classTransitionDuration"; "required": false; }; "configPositionTab": { "alias": "configPositionTab"; "required": false; }; "configDefaultIndex": { "alias": "configDefaultIndex"; "required": false; }; "configIsOpenAll": { "alias": "configIsOpenAll"; "required": false; }; }, {}, never, never, true, never>;
1119
1125
  }
1120
1126
 
1121
1127
  declare class WbPaddingConfig implements OnInit {
@@ -1463,6 +1469,43 @@ declare class WbFrameBannerConfig implements OnInit {
1463
1469
  static ɵcmp: i0.ɵɵComponentDeclaration<WbFrameBannerConfig, "wb-frame-banner-config", 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; }; }, {}, never, never, true, never>;
1464
1470
  }
1465
1471
 
1472
+ declare class WbFrameCollapse implements OnInit {
1473
+ webBuilderService: webBuilderService;
1474
+ map: ComponentMapService;
1475
+ data: any;
1476
+ device: any;
1477
+ class: any;
1478
+ config: any;
1479
+ animation: any;
1480
+ type: any;
1481
+ isClone: any;
1482
+ product: any;
1483
+ currentIndex: number;
1484
+ constructor(webBuilderService: webBuilderService, map: ComponentMapService);
1485
+ ngOnInit(): void;
1486
+ handleOpenCollapse(obj: any, index: any): void;
1487
+ handleChooseFrame(obj: any, index: any, node: any): void;
1488
+ static ɵfac: i0.ɵɵFactoryDeclaration<WbFrameCollapse, never>;
1489
+ static ɵcmp: i0.ɵɵComponentDeclaration<WbFrameCollapse, "wb-frame-collapse", 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>;
1490
+ }
1491
+
1492
+ declare class WbFrameCollapseConfig implements OnInit {
1493
+ webBuilderService: webBuilderService;
1494
+ map: CommonConfigMapService;
1495
+ data: any;
1496
+ device: any;
1497
+ class: any;
1498
+ config: any;
1499
+ animation: any;
1500
+ type: any;
1501
+ tabs: any[];
1502
+ constructor(webBuilderService: webBuilderService, map: CommonConfigMapService);
1503
+ ngOnInit(): void;
1504
+ ngOnChanges(changes: SimpleChanges): void;
1505
+ static ɵfac: i0.ɵɵFactoryDeclaration<WbFrameCollapseConfig, never>;
1506
+ static ɵcmp: i0.ɵɵComponentDeclaration<WbFrameCollapseConfig, "wb-frame-collapse-config", 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; }; }, {}, never, never, true, never>;
1507
+ }
1508
+
1466
1509
  declare class WbFrameBlank implements OnInit {
1467
1510
  webBuilderService: webBuilderService;
1468
1511
  map: ComponentMapService;
@@ -2619,4 +2662,4 @@ declare class WbStyleDirective implements DoCheck {
2619
2662
 
2620
2663
  declare const WEBBUILDER_API_URL: InjectionToken<string>;
2621
2664
 
2622
- export { AuthService, CartService, CommonConfigMapService, ComponentConfigMapService, ComponentMapService, DEVICES, DrawerService, FunctionService, LIST_LANGUAGES, MAIN_SECTOR, ManageImgsComponent, PAYMENT_METHODS, SelectLanguageComponent, TOOLS, TOOLS_BLOCK, TOOLS_OBJECT, WEBBUILDER_API_URL, WbAnimationConfig, WbBackgroundColorConfig, WbBackgroundImageConfig, WbBannerAnimationConfig, WbBlockBlank, WbBlockBlankConfig, WbBorderConfig, WbBorderRadiusConfig, WbBreadcumb, WbBreadcumbConfig, WbButton, WbButtonConfig, WbButtonQuantity, WbButtonQuantityConfig, WbButtonSetDefaultAddress, WbButtonSetDefaultAddressConfig, WbCheckboxConfig, WbCheckboxFilter, WbCheckboxFilterConfig, WbCkeditorConfig, WbDialogConfig, WbDragDrop, WbFilterConfig, WbFixedConfig, WbFrameBanner, WbFrameBannerConfig, WbFrameBlank, WbFrameBlankConfig, WbFrameCart, WbFrameCartConfig, WbFrameContentConfig, WbFrameProductDetail, WbFrameProductDetailConfig, WbFrameProducts, WbFrameProductsAdmin, WbFrameProductsByCategory, WbFrameProductsByCategoryConfig, WbFrameProductsConfig, WbFrameTab, WbFrameTabConfig, WbFreeblockConfig, WbGridConfig, WbHideShowConfig, WbIconConfig, WbImage, WbImageConfig, WbImageListNumberConfig, WbInput, WbInputConfig, WbLine, WbLineConfig, WbLinkPageConfig, WbMenuContentConfig, WbMenuHorizontal, WbMenuHorizontalConfig, WbMenuMobile, WbMenuMobileConfig, WbObjectFitConfig, WbOrdinalConfig, WbPaddingConfig, WbPageConfig, WbPaginationConfig, WbPositionConfig, WbPositionInConfig, WbPositionOutConfig, WbProductImageList, WbProductImageListConfig, WbProductSelectAttribute, WbProductSelectAttributeConfig, WbRotateConfig, WbScrollbarConfig, WbSelectCountry, WbSelectCountryConfig, WbSelectProvinceDistrictWard, WbSelectProvinceDistrictWardConfig, WbShadowConfig, WbSlideConfig, WbStickyConfig, WbStyleDirective, WbText, WbTextConfig, WbTextFormatConfig, WbTextParagraph, WbTextParagraphConfig, WbToolTipConfig, WbUploadImageConfig, WbVideo, WbVideoConfig, WbVirtualSelected, WbWidthHeightConfig, webBuilderService };
2665
+ export { AuthService, CartService, CommonConfigMapService, ComponentConfigMapService, ComponentMapService, DEVICES, DrawerService, FunctionService, LIST_LANGUAGES, MAIN_SECTOR, ManageImgsComponent, PAYMENT_METHODS, SelectLanguageComponent, TOOLS, TOOLS_BLOCK, TOOLS_OBJECT, WEBBUILDER_API_URL, WbAnimationConfig, WbBackgroundColorConfig, WbBackgroundImageConfig, WbBannerAnimationConfig, WbBlockBlank, WbBlockBlankConfig, WbBorderConfig, WbBorderRadiusConfig, WbBreadcumb, WbBreadcumbConfig, WbButton, WbButtonConfig, WbButtonQuantity, WbButtonQuantityConfig, WbButtonSetDefaultAddress, WbButtonSetDefaultAddressConfig, WbCheckboxConfig, WbCheckboxFilter, WbCheckboxFilterConfig, WbCkeditorConfig, WbDialogConfig, WbDragDrop, WbFilterConfig, WbFixedConfig, WbFrameBanner, WbFrameBannerConfig, WbFrameBlank, WbFrameBlankConfig, WbFrameCart, WbFrameCartConfig, WbFrameCollapse, WbFrameCollapseConfig, WbFrameContentConfig, WbFrameProductDetail, WbFrameProductDetailConfig, WbFrameProducts, WbFrameProductsAdmin, WbFrameProductsByCategory, WbFrameProductsByCategoryConfig, WbFrameProductsConfig, WbFrameTab, WbFrameTabConfig, WbFreeblockConfig, WbGridConfig, WbHideShowConfig, WbIconConfig, WbImage, WbImageConfig, WbImageListNumberConfig, WbInput, WbInputConfig, WbLine, WbLineConfig, WbLinkPageConfig, WbMenuContentConfig, WbMenuHorizontal, WbMenuHorizontalConfig, WbMenuMobile, WbMenuMobileConfig, WbObjectFitConfig, WbOrdinalConfig, WbPaddingConfig, WbPageConfig, WbPaginationConfig, WbPositionConfig, WbPositionInConfig, WbPositionOutConfig, WbProductImageList, WbProductImageListConfig, WbProductSelectAttribute, WbProductSelectAttributeConfig, WbRotateConfig, WbScrollbarConfig, WbSelectCountry, WbSelectCountryConfig, WbSelectProvinceDistrictWard, WbSelectProvinceDistrictWardConfig, WbShadowConfig, WbSlideConfig, WbStickyConfig, WbStyleDirective, WbText, WbTextConfig, WbTextFormatConfig, WbTextParagraph, WbTextParagraphConfig, WbToolTipConfig, WbUploadImageConfig, WbVideo, WbVideoConfig, WbVirtualSelected, WbWidthHeightConfig, webBuilderService };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fw-webbuilder",
3
- "version": "1.1.154",
3
+ "version": "1.1.156",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0",
6
6
  "@angular/core": "^20.3.0",