fw-webbuilder 1.1.227 → 1.1.228
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 +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1175,7 +1175,7 @@ declare class WbPaddingConfig implements OnInit {
|
|
|
1175
1175
|
}
|
|
1176
1176
|
|
|
1177
1177
|
declare class WbPaginationConfig implements OnInit {
|
|
1178
|
-
|
|
1178
|
+
webBuilderService: webBuilderService;
|
|
1179
1179
|
data: any;
|
|
1180
1180
|
device: any;
|
|
1181
1181
|
classNotChoose: any;
|
|
@@ -1184,8 +1184,11 @@ declare class WbPaginationConfig implements OnInit {
|
|
|
1184
1184
|
classAlign: any;
|
|
1185
1185
|
borderOptions: any;
|
|
1186
1186
|
alignOptions: any[];
|
|
1187
|
+
categories: any[];
|
|
1187
1188
|
constructor(webBuilderService: webBuilderService);
|
|
1188
1189
|
ngOnInit(): void;
|
|
1190
|
+
getCategories(): void;
|
|
1191
|
+
optionRender: (cate: any) => string;
|
|
1189
1192
|
updateClass(): void;
|
|
1190
1193
|
updateConfig(): void;
|
|
1191
1194
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbPaginationConfig, never>;
|