fw-webbuilder 1.1.261 → 1.1.263
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 +13 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Subject, Observable, Subscription } from 'rxjs';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { OnInit, ElementRef, Renderer2, SimpleChanges, OnDestroy, DoCheck, ChangeDetectorRef, AfterViewInit, InjectionToken } from '@angular/core';
|
|
4
|
+
import { OnInit, ElementRef, Renderer2, SimpleChanges, OnDestroy, OnChanges, DoCheck, ChangeDetectorRef, AfterViewInit, InjectionToken } from '@angular/core';
|
|
5
5
|
import { SocialAuthService } from '@abacritt/angularx-social-login';
|
|
6
6
|
import * as ng_zorro_antd_message from 'ng-zorro-antd/message';
|
|
7
7
|
import { NzMessageService } from 'ng-zorro-antd/message';
|
|
@@ -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>;
|
|
@@ -1334,15 +1335,24 @@ declare class WbScrollbarConfig implements OnInit {
|
|
|
1334
1335
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbScrollbarConfig, "wb-scrollbar-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "classScrollbar": { "alias": "classScrollbar"; "required": false; }; }, {}, never, never, true, never>;
|
|
1335
1336
|
}
|
|
1336
1337
|
|
|
1337
|
-
declare class WbShadowConfig implements OnInit {
|
|
1338
|
+
declare class WbShadowConfig implements OnInit, OnChanges {
|
|
1338
1339
|
webBuilderService: webBuilderService;
|
|
1339
1340
|
data: any;
|
|
1340
1341
|
device: any;
|
|
1341
1342
|
classShadow: string;
|
|
1342
1343
|
configShadow: string;
|
|
1344
|
+
isShadow: boolean;
|
|
1345
|
+
shadowType: string;
|
|
1346
|
+
shadowX: number;
|
|
1347
|
+
shadowY: number;
|
|
1348
|
+
shadowBlur: number;
|
|
1349
|
+
shadowSpread: number;
|
|
1350
|
+
shadowColor: string;
|
|
1343
1351
|
shadowOptions: any;
|
|
1344
1352
|
constructor(webBuilderService: webBuilderService);
|
|
1345
1353
|
ngOnInit(): void;
|
|
1354
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1355
|
+
parseShadowFromClass(): void;
|
|
1346
1356
|
onChangeShadow(): void;
|
|
1347
1357
|
updateClass(): void;
|
|
1348
1358
|
updateConfig(): void;
|