fw-webbuilder 1.1.154 → 1.1.155
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 +7 -1
- package/package.json +1 -1
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 {
|