fw-webbuilder 1.1.251 → 1.1.253
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 +6 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -163,6 +163,10 @@ declare class webBuilderService {
|
|
|
163
163
|
* dùng route khác vì route này không cần đăng nhập
|
|
164
164
|
*/
|
|
165
165
|
getTemplates_byFields(query: any, sort: any, page?: number, limit?: number): Promise<any>;
|
|
166
|
+
/**
|
|
167
|
+
* dùng route khác vì route này cần đăng nhập và check admin
|
|
168
|
+
*/
|
|
169
|
+
getTemplates_byFields_byAdmin(query: any, sort: any, page?: number, limit?: number): Promise<any>;
|
|
166
170
|
addTemplate(data: any): Promise<any>;
|
|
167
171
|
updateTemplate(id: string, data: any): Promise<any>;
|
|
168
172
|
deleteTemplate(id: string): Promise<any>;
|
|
@@ -992,15 +996,14 @@ declare class WbHideShowConfig implements OnInit {
|
|
|
992
996
|
data: any;
|
|
993
997
|
device: any;
|
|
994
998
|
classCursor: any;
|
|
995
|
-
classOverflowY: any;
|
|
996
999
|
classFlexDirection: any;
|
|
997
1000
|
classGap: any;
|
|
998
1001
|
configTypeDisplay: any;
|
|
1002
|
+
configRequired: any;
|
|
999
1003
|
/**
|
|
1000
1004
|
* configEnableZoom dùng cho object_product_image
|
|
1001
1005
|
*/
|
|
1002
1006
|
configEnableZoom: any;
|
|
1003
|
-
configRequired: any;
|
|
1004
1007
|
devices: any;
|
|
1005
1008
|
cursorOptions: any[];
|
|
1006
1009
|
dragOptions: any[];
|
|
@@ -1017,9 +1020,8 @@ declare class WbHideShowConfig implements OnInit {
|
|
|
1017
1020
|
updateConfig(): void;
|
|
1018
1021
|
updateHidden(key: string, value: boolean): void;
|
|
1019
1022
|
onChangedirection(): void;
|
|
1020
|
-
changeOverFlow(): void;
|
|
1021
1023
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbHideShowConfig, never>;
|
|
1022
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WbHideShowConfig, "wb-hide-show-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "classCursor": { "alias": "classCursor"; "required": false; }; "
|
|
1024
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WbHideShowConfig, "wb-hide-show-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "classCursor": { "alias": "classCursor"; "required": false; }; "classFlexDirection": { "alias": "classFlexDirection"; "required": false; }; "classGap": { "alias": "classGap"; "required": false; }; "configTypeDisplay": { "alias": "configTypeDisplay"; "required": false; }; "configRequired": { "alias": "configRequired"; "required": false; }; "configEnableZoom": { "alias": "configEnableZoom"; "required": false; }; }, {}, never, never, true, never>;
|
|
1023
1025
|
}
|
|
1024
1026
|
|
|
1025
1027
|
declare class WbIconConfig implements OnInit {
|