fw-webbuilder 1.1.262 → 1.1.264
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 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -834,9 +834,10 @@ declare class WbBlockBlankConfig implements OnInit {
|
|
|
834
834
|
|
|
835
835
|
declare class WbAnimationConfig implements OnInit {
|
|
836
836
|
private modal;
|
|
837
|
+
private translate;
|
|
837
838
|
data: any;
|
|
838
839
|
device: any;
|
|
839
|
-
constructor(modal: NzModalService);
|
|
840
|
+
constructor(modal: NzModalService, translate: TranslateService);
|
|
840
841
|
ngOnInit(): void;
|
|
841
842
|
handleChangeAnimation(): void;
|
|
842
843
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbAnimationConfig, never>;
|
|
@@ -2268,6 +2269,7 @@ declare class WbButton implements OnInit {
|
|
|
2268
2269
|
onEditContentBlur(): void;
|
|
2269
2270
|
onEditContentKeydown(event: KeyboardEvent): void;
|
|
2270
2271
|
saveEditedContent(): void;
|
|
2272
|
+
autoGrowTextarea(event: Event): void;
|
|
2271
2273
|
updateDataClone(): void;
|
|
2272
2274
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2273
2275
|
ngAfterViewInit(): void;
|
|
@@ -2508,7 +2510,7 @@ declare class WbTextParagraph implements OnInit {
|
|
|
2508
2510
|
ngOnDestroy(): void;
|
|
2509
2511
|
getContent(): any;
|
|
2510
2512
|
handleChangeContent(): void;
|
|
2511
|
-
|
|
2513
|
+
updateClassAndConfig(): void;
|
|
2512
2514
|
getReadMoreText(): string;
|
|
2513
2515
|
toggleExpanded(): void;
|
|
2514
2516
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbTextParagraph, never>;
|