fw-webbuilder 1.1.183 → 1.1.185
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 +14 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2105,6 +2105,8 @@ declare class WbButton implements OnInit {
|
|
|
2105
2105
|
type: any;
|
|
2106
2106
|
isClone: any;
|
|
2107
2107
|
product: any;
|
|
2108
|
+
isEditingContent: boolean;
|
|
2109
|
+
editedContent: string;
|
|
2108
2110
|
findBlock: any;
|
|
2109
2111
|
positionDialog: any;
|
|
2110
2112
|
wbBlockBlank: any;
|
|
@@ -2117,6 +2119,10 @@ declare class WbButton implements OnInit {
|
|
|
2117
2119
|
previousUrl: string;
|
|
2118
2120
|
constructor(router: Router, webBuilderService: webBuilderService, authService: AuthService, functionService: FunctionService, elementRef: ElementRef, modal: NzModalService, modalRef: NzModalRef<WbBlockBlank>, drawerService: DrawerService, cart: CartService, translate: TranslateService);
|
|
2119
2121
|
ngOnInit(): void;
|
|
2122
|
+
onDblClickContent(event: MouseEvent): void;
|
|
2123
|
+
onEditContentBlur(): void;
|
|
2124
|
+
onEditContentKeydown(event: KeyboardEvent): void;
|
|
2125
|
+
saveEditedContent(): void;
|
|
2120
2126
|
updateDataClone(): void;
|
|
2121
2127
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2122
2128
|
ngAfterViewInit(): void;
|
|
@@ -2270,6 +2276,9 @@ declare class WbText implements OnInit {
|
|
|
2270
2276
|
product: any;
|
|
2271
2277
|
private resizeObserver;
|
|
2272
2278
|
private resizeTimeout;
|
|
2279
|
+
isEditingContent: boolean;
|
|
2280
|
+
editedContent: string;
|
|
2281
|
+
editingHeight: string;
|
|
2273
2282
|
constructor(webBuilderService: webBuilderService, router: Router, authService: AuthService, cart: CartService, translate: TranslateService, el: ElementRef);
|
|
2274
2283
|
ngOnInit(): void;
|
|
2275
2284
|
updateDataClone(): void;
|
|
@@ -2285,6 +2294,11 @@ declare class WbText implements OnInit {
|
|
|
2285
2294
|
* */
|
|
2286
2295
|
scrollToBlockWhenAvailable(blockId: string, offset?: number): void;
|
|
2287
2296
|
getIcon(): any;
|
|
2297
|
+
onDblClickContent(event: MouseEvent): void;
|
|
2298
|
+
onEditContentBlur(): void;
|
|
2299
|
+
onEditContentKeydown(event: KeyboardEvent): void;
|
|
2300
|
+
saveEditedContent(): void;
|
|
2301
|
+
autoGrowTextarea(event: Event): void;
|
|
2288
2302
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbText, never>;
|
|
2289
2303
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbText, "wb-text", 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>;
|
|
2290
2304
|
}
|