fw-webbuilder 1.1.232 → 1.1.233
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 +15 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -874,6 +874,15 @@ declare class WbCkeditorConfig implements OnInit {
|
|
|
874
874
|
configContent: string;
|
|
875
875
|
configMaxLine: string;
|
|
876
876
|
classMaxLine: string;
|
|
877
|
+
configReadMore: string;
|
|
878
|
+
classReadMoreContent: string;
|
|
879
|
+
classBgReadMore: string;
|
|
880
|
+
classReadMoreIcon: string;
|
|
881
|
+
classAlignFlex: string;
|
|
882
|
+
classWidthHeight: string;
|
|
883
|
+
classIconPosition: string;
|
|
884
|
+
classMargin: string;
|
|
885
|
+
justifyOptions: any;
|
|
877
886
|
constructor(webBuilderService: webBuilderService, modal: NzModalService, translate: TranslateService);
|
|
878
887
|
ngOnInit(): void;
|
|
879
888
|
handleChangeContent(): void;
|
|
@@ -881,8 +890,10 @@ declare class WbCkeditorConfig implements OnInit {
|
|
|
881
890
|
onChangeUseMaxLine(): void;
|
|
882
891
|
onChangeMaxLine(): void;
|
|
883
892
|
updateClassAndConfig(): void;
|
|
893
|
+
updateClass(): void;
|
|
894
|
+
handleChangeIcon(configIcon: any): void;
|
|
884
895
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbCkeditorConfig, never>;
|
|
885
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WbCkeditorConfig, "wb-ckeditor-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "configContent": { "alias": "configContent"; "required": false; }; "configMaxLine": { "alias": "configMaxLine"; "required": false; }; "classMaxLine": { "alias": "classMaxLine"; "required": false; }; }, {}, never, never, true, never>;
|
|
896
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WbCkeditorConfig, "wb-ckeditor-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "configContent": { "alias": "configContent"; "required": false; }; "configMaxLine": { "alias": "configMaxLine"; "required": false; }; "classMaxLine": { "alias": "classMaxLine"; "required": false; }; "configReadMore": { "alias": "configReadMore"; "required": false; }; "classReadMoreContent": { "alias": "classReadMoreContent"; "required": false; }; "classBgReadMore": { "alias": "classBgReadMore"; "required": false; }; "classReadMoreIcon": { "alias": "classReadMoreIcon"; "required": false; }; "classAlignFlex": { "alias": "classAlignFlex"; "required": false; }; "classWidthHeight": { "alias": "classWidthHeight"; "required": false; }; "classIconPosition": { "alias": "classIconPosition"; "required": false; }; "classMargin": { "alias": "classMargin"; "required": false; }; }, {}, never, never, true, never>;
|
|
886
897
|
}
|
|
887
898
|
|
|
888
899
|
declare class WbDialogConfig implements OnInit {
|
|
@@ -2404,6 +2415,7 @@ declare class WbTextParagraph implements OnInit {
|
|
|
2404
2415
|
isClone: any;
|
|
2405
2416
|
product: any;
|
|
2406
2417
|
safeContent: SafeHtml;
|
|
2418
|
+
isExpanded: boolean;
|
|
2407
2419
|
private resizeObserver;
|
|
2408
2420
|
private resizeTimeout;
|
|
2409
2421
|
constructor(webBuilderService: webBuilderService, modal: NzModalService, translate: TranslateService, el: ElementRef);
|
|
@@ -2416,6 +2428,8 @@ declare class WbTextParagraph implements OnInit {
|
|
|
2416
2428
|
getContent(): any;
|
|
2417
2429
|
handleChangeContent(): void;
|
|
2418
2430
|
updateConfig(): void;
|
|
2431
|
+
getReadMoreText(): string;
|
|
2432
|
+
toggleExpanded(): void;
|
|
2419
2433
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbTextParagraph, never>;
|
|
2420
2434
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbTextParagraph, "wb-text-paragraph", 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>;
|
|
2421
2435
|
}
|