fw-webbuilder 1.1.172 → 1.1.174
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 +52 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ declare class webBuilderService {
|
|
|
115
115
|
* Biến để kiểm soát việc có cho phép copy hay không
|
|
116
116
|
*/
|
|
117
117
|
allowCopy: boolean;
|
|
118
|
+
FONTS: any;
|
|
118
119
|
ctrlZ: any;
|
|
119
120
|
ctrlY: any;
|
|
120
121
|
constructor(http: HttpClient, socketService: SocketService, route: ActivatedRoute);
|
|
@@ -523,11 +524,7 @@ declare class DrawerService {
|
|
|
523
524
|
static ɵprov: i0.ɵɵInjectableDeclaration<DrawerService>;
|
|
524
525
|
}
|
|
525
526
|
|
|
526
|
-
declare const TOOLS:
|
|
527
|
-
tool_tip: string;
|
|
528
|
-
icon: string;
|
|
529
|
-
type: string;
|
|
530
|
-
}[];
|
|
527
|
+
declare const TOOLS: any[];
|
|
531
528
|
declare const LIST_LANGUAGES: {
|
|
532
529
|
code: string;
|
|
533
530
|
name: string;
|
|
@@ -553,6 +550,10 @@ declare const PAYMENT_METHODS: {
|
|
|
553
550
|
icon: string;
|
|
554
551
|
description: string;
|
|
555
552
|
}[];
|
|
553
|
+
declare const FONTS: {
|
|
554
|
+
name: string;
|
|
555
|
+
value: string;
|
|
556
|
+
}[];
|
|
556
557
|
|
|
557
558
|
declare class WbDragDrop implements OnInit {
|
|
558
559
|
webBuilderService: webBuilderService;
|
|
@@ -1303,7 +1304,6 @@ declare class WbTextFormatConfig implements OnInit {
|
|
|
1303
1304
|
placeholder: boolean;
|
|
1304
1305
|
configFormatDate: string;
|
|
1305
1306
|
dateFormatOptions: any;
|
|
1306
|
-
fonts: any[];
|
|
1307
1307
|
textAlignOptions: any[];
|
|
1308
1308
|
justifyOptions: any;
|
|
1309
1309
|
tagOptions: any[];
|
|
@@ -2725,6 +2725,51 @@ declare class WbMaskImageConfig implements OnInit {
|
|
|
2725
2725
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbMaskImageConfig, "wb-mask-image-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "classMaskImage": { "alias": "classMaskImage"; "required": false; }; "configMaskImage": { "alias": "configMaskImage"; "required": false; }; "configImg": { "alias": "configImg"; "required": false; }; }, {}, never, never, true, never>;
|
|
2726
2726
|
}
|
|
2727
2727
|
|
|
2728
|
+
declare class WbMapConfig implements OnInit {
|
|
2729
|
+
private webBuilderService;
|
|
2730
|
+
data: any;
|
|
2731
|
+
device: any;
|
|
2732
|
+
configIframeCode: any;
|
|
2733
|
+
constructor(webBuilderService: webBuilderService);
|
|
2734
|
+
ngOnInit(): void;
|
|
2735
|
+
updateConfig(): void;
|
|
2736
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WbMapConfig, never>;
|
|
2737
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WbMapConfig, "wb-map-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "configIframeCode": { "alias": "configIframeCode"; "required": false; }; }, {}, never, never, true, never>;
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
declare class WbGoogleMap implements OnInit {
|
|
2741
|
+
data: any;
|
|
2742
|
+
device: any;
|
|
2743
|
+
class: any;
|
|
2744
|
+
config: any;
|
|
2745
|
+
animation: any;
|
|
2746
|
+
type: any;
|
|
2747
|
+
isClone: any;
|
|
2748
|
+
product: any;
|
|
2749
|
+
constructor();
|
|
2750
|
+
ngOnInit(): void;
|
|
2751
|
+
getMapCode(): any;
|
|
2752
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WbGoogleMap, never>;
|
|
2753
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WbGoogleMap, "wb-google-map", 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>;
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
declare class WbGoogleMapConfig implements OnInit {
|
|
2757
|
+
webBuilderService: webBuilderService;
|
|
2758
|
+
map: CommonConfigMapService;
|
|
2759
|
+
data: any;
|
|
2760
|
+
device: any;
|
|
2761
|
+
class: any;
|
|
2762
|
+
config: any;
|
|
2763
|
+
animation: any;
|
|
2764
|
+
type: any;
|
|
2765
|
+
tabs: any[];
|
|
2766
|
+
constructor(webBuilderService: webBuilderService, map: CommonConfigMapService);
|
|
2767
|
+
ngOnInit(): void;
|
|
2768
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2769
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WbGoogleMapConfig, never>;
|
|
2770
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WbGoogleMapConfig, "wb-google-map-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>;
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2728
2773
|
declare class WbStyleDirective implements DoCheck {
|
|
2729
2774
|
private el;
|
|
2730
2775
|
private renderer;
|
|
@@ -2740,4 +2785,4 @@ declare class WbStyleDirective implements DoCheck {
|
|
|
2740
2785
|
|
|
2741
2786
|
declare const WEBBUILDER_API_URL: InjectionToken<string>;
|
|
2742
2787
|
|
|
2743
|
-
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, WbFilterImageConfig, 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, WbMaskImageConfig, 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 };
|
|
2788
|
+
export { AuthService, CartService, CommonConfigMapService, ComponentConfigMapService, ComponentMapService, DEVICES, DrawerService, FONTS, 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, WbFilterImageConfig, WbFixedConfig, WbFrameBanner, WbFrameBannerConfig, WbFrameBlank, WbFrameBlankConfig, WbFrameCart, WbFrameCartConfig, WbFrameCollapse, WbFrameCollapseConfig, WbFrameContentConfig, WbFrameProductDetail, WbFrameProductDetailConfig, WbFrameProducts, WbFrameProductsAdmin, WbFrameProductsByCategory, WbFrameProductsByCategoryConfig, WbFrameProductsConfig, WbFrameTab, WbFrameTabConfig, WbFreeblockConfig, WbGoogleMap, WbGoogleMapConfig, WbGridConfig, WbHideShowConfig, WbIconConfig, WbImage, WbImageConfig, WbImageListNumberConfig, WbInput, WbInputConfig, WbLine, WbLineConfig, WbLinkPageConfig, WbMapConfig, WbMaskImageConfig, 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 };
|