fw-webbuilder 1.1.171 → 1.1.172
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 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { NzModalRef, NzModalService } from 'ng-zorro-antd/modal';
|
|
|
10
10
|
import { TranslateService } from '@ngx-translate/core';
|
|
11
11
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
12
12
|
import { NzTableQueryParams } from 'ng-zorro-antd/table';
|
|
13
|
-
import { SafeHtml
|
|
13
|
+
import { SafeHtml } from '@angular/platform-browser';
|
|
14
14
|
|
|
15
15
|
declare class SocketService {
|
|
16
16
|
private apiUrl;
|
|
@@ -1315,7 +1315,6 @@ declare class WbTextFormatConfig implements OnInit {
|
|
|
1315
1315
|
updateClassAndConfig(): void;
|
|
1316
1316
|
updateClass(): void;
|
|
1317
1317
|
updateConfig(): void;
|
|
1318
|
-
updateHeight(): void;
|
|
1319
1318
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbTextFormatConfig, never>;
|
|
1320
1319
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbTextFormatConfig, "wb-text-format-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "classContent": { "alias": "classContent"; "required": false; }; "classGap": { "alias": "classGap"; "required": false; }; "classCursor": { "alias": "classCursor"; "required": false; }; "classFontWeight": { "alias": "classFontWeight"; "required": false; }; "classAlign": { "alias": "classAlign"; "required": false; }; "classLineHeight": { "alias": "classLineHeight"; "required": false; }; "classLetterSpacing": { "alias": "classLetterSpacing"; "required": false; }; "classAlignFlex": { "alias": "classAlignFlex"; "required": false; }; "classMargin": { "alias": "classMargin"; "required": false; }; "classMaxLine": { "alias": "classMaxLine"; "required": false; }; "classPadding": { "alias": "classPadding"; "required": false; }; "classMinWidth": { "alias": "classMinWidth"; "required": false; }; "classMinHeight": { "alias": "classMinHeight"; "required": false; }; "configContent": { "alias": "configContent"; "required": false; }; "configNotFound": { "alias": "configNotFound"; "required": false; }; "configHref": { "alias": "configHref"; "required": false; }; "configTag": { "alias": "configTag"; "required": false; }; "configMaxLine": { "alias": "configMaxLine"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "configFormatDate": { "alias": "configFormatDate"; "required": false; }; }, {}, never, never, true, never>;
|
|
1321
1320
|
}
|
|
@@ -1659,16 +1658,20 @@ declare class WbFrameProductDetail implements OnInit {
|
|
|
1659
1658
|
}
|
|
1660
1659
|
|
|
1661
1660
|
declare class WbFrameProductDetailConfig implements OnInit {
|
|
1661
|
+
webBuilderService: webBuilderService;
|
|
1662
|
+
map: CommonConfigMapService;
|
|
1662
1663
|
data: any;
|
|
1663
1664
|
device: any;
|
|
1664
1665
|
class: any;
|
|
1665
1666
|
config: any;
|
|
1666
1667
|
animation: any;
|
|
1667
1668
|
type: any;
|
|
1668
|
-
|
|
1669
|
+
tabs: any[];
|
|
1670
|
+
constructor(webBuilderService: webBuilderService, map: CommonConfigMapService);
|
|
1669
1671
|
ngOnInit(): void;
|
|
1672
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1670
1673
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbFrameProductDetailConfig, never>;
|
|
1671
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WbFrameProductDetailConfig, "wb-frame-product-detail-config", 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; }; }, {}, never, never,
|
|
1674
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WbFrameProductDetailConfig, "wb-frame-product-detail-config", 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; }; }, {}, never, never, true, never>;
|
|
1672
1675
|
}
|
|
1673
1676
|
|
|
1674
1677
|
declare class WbFrameProducts implements OnInit {
|
|
@@ -2225,6 +2228,7 @@ declare class WbText implements OnInit {
|
|
|
2225
2228
|
private authService;
|
|
2226
2229
|
private cart;
|
|
2227
2230
|
private translate;
|
|
2231
|
+
private el;
|
|
2228
2232
|
data: any;
|
|
2229
2233
|
device: any;
|
|
2230
2234
|
class: any;
|
|
@@ -2233,9 +2237,13 @@ declare class WbText implements OnInit {
|
|
|
2233
2237
|
type: any;
|
|
2234
2238
|
isClone: any;
|
|
2235
2239
|
product: any;
|
|
2236
|
-
|
|
2240
|
+
private resizeObserver;
|
|
2241
|
+
private resizeTimeout;
|
|
2242
|
+
constructor(webBuilderService: webBuilderService, router: Router, authService: AuthService, cart: CartService, translate: TranslateService, el: ElementRef);
|
|
2237
2243
|
ngOnInit(): void;
|
|
2238
2244
|
onClick(e: any): void;
|
|
2245
|
+
ngAfterViewInit(): void;
|
|
2246
|
+
ngOnDestroy(): void;
|
|
2239
2247
|
orderLabel: any;
|
|
2240
2248
|
getContent(): any;
|
|
2241
2249
|
conditionDisplay(): any;
|
|
@@ -2267,7 +2275,6 @@ declare class WbTextConfig implements OnInit {
|
|
|
2267
2275
|
|
|
2268
2276
|
declare class WbTextParagraph implements OnInit {
|
|
2269
2277
|
webBuilderService: webBuilderService;
|
|
2270
|
-
private sanitizer;
|
|
2271
2278
|
data: any;
|
|
2272
2279
|
device: any;
|
|
2273
2280
|
class: any;
|
|
@@ -2277,10 +2284,9 @@ declare class WbTextParagraph implements OnInit {
|
|
|
2277
2284
|
isClone: any;
|
|
2278
2285
|
product: any;
|
|
2279
2286
|
safeContent: SafeHtml;
|
|
2280
|
-
constructor(webBuilderService: webBuilderService
|
|
2287
|
+
constructor(webBuilderService: webBuilderService);
|
|
2281
2288
|
ngOnInit(): void;
|
|
2282
2289
|
getContent(): any;
|
|
2283
|
-
getContentSafe(rawHtml: string): SafeHtml;
|
|
2284
2290
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbTextParagraph, never>;
|
|
2285
2291
|
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>;
|
|
2286
2292
|
}
|