fw-webbuilder 1.1.261 → 1.1.262
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 +11 -2
- 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';
|
|
@@ -1334,15 +1334,24 @@ declare class WbScrollbarConfig implements OnInit {
|
|
|
1334
1334
|
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
1335
|
}
|
|
1336
1336
|
|
|
1337
|
-
declare class WbShadowConfig implements OnInit {
|
|
1337
|
+
declare class WbShadowConfig implements OnInit, OnChanges {
|
|
1338
1338
|
webBuilderService: webBuilderService;
|
|
1339
1339
|
data: any;
|
|
1340
1340
|
device: any;
|
|
1341
1341
|
classShadow: string;
|
|
1342
1342
|
configShadow: string;
|
|
1343
|
+
isShadow: boolean;
|
|
1344
|
+
shadowType: string;
|
|
1345
|
+
shadowX: number;
|
|
1346
|
+
shadowY: number;
|
|
1347
|
+
shadowBlur: number;
|
|
1348
|
+
shadowSpread: number;
|
|
1349
|
+
shadowColor: string;
|
|
1343
1350
|
shadowOptions: any;
|
|
1344
1351
|
constructor(webBuilderService: webBuilderService);
|
|
1345
1352
|
ngOnInit(): void;
|
|
1353
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1354
|
+
parseShadowFromClass(): void;
|
|
1346
1355
|
onChangeShadow(): void;
|
|
1347
1356
|
updateClass(): void;
|
|
1348
1357
|
updateConfig(): void;
|