fw-webbuilder 1.1.227 → 1.1.229
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 +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -368,6 +368,7 @@ declare class webBuilderService {
|
|
|
368
368
|
getDashboard(startDate: string, endDate: string): Promise<Object>;
|
|
369
369
|
private getVisitorId;
|
|
370
370
|
addAdminUser(data: any): Promise<any>;
|
|
371
|
+
changeTemplate(db: string, id_template: string): Promise<Object>;
|
|
371
372
|
static ɵfac: i0.ɵɵFactoryDeclaration<webBuilderService, never>;
|
|
372
373
|
static ɵprov: i0.ɵɵInjectableDeclaration<webBuilderService>;
|
|
373
374
|
}
|
|
@@ -1175,7 +1176,7 @@ declare class WbPaddingConfig implements OnInit {
|
|
|
1175
1176
|
}
|
|
1176
1177
|
|
|
1177
1178
|
declare class WbPaginationConfig implements OnInit {
|
|
1178
|
-
|
|
1179
|
+
webBuilderService: webBuilderService;
|
|
1179
1180
|
data: any;
|
|
1180
1181
|
device: any;
|
|
1181
1182
|
classNotChoose: any;
|
|
@@ -1184,8 +1185,11 @@ declare class WbPaginationConfig implements OnInit {
|
|
|
1184
1185
|
classAlign: any;
|
|
1185
1186
|
borderOptions: any;
|
|
1186
1187
|
alignOptions: any[];
|
|
1188
|
+
categories: any[];
|
|
1187
1189
|
constructor(webBuilderService: webBuilderService);
|
|
1188
1190
|
ngOnInit(): void;
|
|
1191
|
+
getCategories(): void;
|
|
1192
|
+
optionRender: (cate: any) => string;
|
|
1189
1193
|
updateClass(): void;
|
|
1190
1194
|
updateConfig(): void;
|
|
1191
1195
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbPaginationConfig, never>;
|