@dereekb/dbx-web 13.0.2 → 13.0.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.4",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^21.0.0",
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
"@angular/forms": "^21.0.0",
|
|
9
9
|
"@angular/material": "^21.0.0",
|
|
10
10
|
"@angular/platform-browser": "^21.0.0",
|
|
11
|
-
"@dereekb/browser": "13.0.
|
|
12
|
-
"@dereekb/date": "13.0.
|
|
13
|
-
"@dereekb/dbx-core": "13.0.
|
|
14
|
-
"@dereekb/rxjs": "13.0.
|
|
15
|
-
"@dereekb/util": "13.0.
|
|
11
|
+
"@dereekb/browser": "13.0.4",
|
|
12
|
+
"@dereekb/date": "13.0.4",
|
|
13
|
+
"@dereekb/dbx-core": "13.0.4",
|
|
14
|
+
"@dereekb/rxjs": "13.0.4",
|
|
15
|
+
"@dereekb/util": "13.0.4",
|
|
16
16
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
17
17
|
"@ngrx/component-store": "^21.0.0",
|
|
18
18
|
"@ngrx/effects": "^21.0.0",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"date-fns": "^4.0.0",
|
|
28
28
|
"linkify-string": "^4.3.0",
|
|
29
29
|
"mapbox-gl": "^3.10.0",
|
|
30
|
-
"ng-overlay-container": "
|
|
30
|
+
"ng-overlay-container": "git+https://git@github.com/dereekb/ng-overlay-container#f8f887afe7e1c75e4f1afe40470a4d39291707d6",
|
|
31
31
|
"ngx-infinite-scroll": "^21.0.0",
|
|
32
32
|
"ngx-mapbox-gl": "git+https://git@github.com/dereekb/ngx-mapbox-gl#3f1d25b0661bc48abbd415dc79ca7f66568bae2e",
|
|
33
33
|
"rxjs": "^7.8.0"
|
|
@@ -441,12 +441,10 @@ interface DbxActionConfirmConfig<T = unknown> extends DbxPromptConfirmConfig {
|
|
|
441
441
|
* This only works to pass a ready value or reject through, not to work with a button.
|
|
442
442
|
* For button usage, use an appPromptConfirmButton directive.
|
|
443
443
|
*/
|
|
444
|
-
declare class DbxActionConfirmDirective<T = unknown, O = unknown> extends AbstractPromptConfirmDirective
|
|
444
|
+
declare class DbxActionConfirmDirective<T = unknown, O = unknown> extends AbstractPromptConfirmDirective {
|
|
445
445
|
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
446
446
|
readonly dbxActionConfirm: _angular_core.InputSignalWithTransform<Maybe<DbxActionConfirmConfig<T>>, Maybe<"" | DbxActionConfirmConfig<T>>>;
|
|
447
|
-
|
|
448
|
-
ngOnInit(): void;
|
|
449
|
-
ngOnDestroy(): void;
|
|
447
|
+
constructor();
|
|
450
448
|
protected getDefaultDialogConfig(): Maybe<DbxPromptConfirmConfig>;
|
|
451
449
|
protected _handleDialogResult(result: boolean): boolean;
|
|
452
450
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionConfirmDirective<any, any>, never>;
|
|
@@ -4019,7 +4017,8 @@ interface DbxSidenavSidebarState {
|
|
|
4019
4017
|
/**
|
|
4020
4018
|
* Navigation component that sits at the side of an app.
|
|
4021
4019
|
*/
|
|
4022
|
-
declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective {
|
|
4020
|
+
declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective implements OnInit {
|
|
4021
|
+
private readonly _sidenavSub;
|
|
4023
4022
|
private readonly _screenMediaService;
|
|
4024
4023
|
readonly color: _angular_core.InputSignal<"primary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | undefined>;
|
|
4025
4024
|
readonly sidenav: _angular_core.Signal<MatSidenav>;
|
|
@@ -4028,13 +4027,18 @@ declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective {
|
|
|
4028
4027
|
readonly modeSignal: _angular_core.Signal<SideNavDisplayMode | undefined>;
|
|
4029
4028
|
readonly disableBackdropSignal: _angular_core.Signal<boolean>;
|
|
4030
4029
|
readonly sizeCssClassSignal: _angular_core.Signal<string>;
|
|
4031
|
-
readonly
|
|
4032
|
-
mode: SideNavDisplayMode
|
|
4030
|
+
readonly state$: Observable<{
|
|
4031
|
+
mode: SideNavDisplayMode;
|
|
4033
4032
|
drawer: "over" | "side";
|
|
4034
4033
|
open: boolean;
|
|
4035
4034
|
}>;
|
|
4035
|
+
readonly stateSignal: _angular_core.Signal<{
|
|
4036
|
+
mode: SideNavDisplayMode;
|
|
4037
|
+
drawer: "over" | "side";
|
|
4038
|
+
open: boolean;
|
|
4039
|
+
} | undefined>;
|
|
4036
4040
|
readonly drawerSignal: _angular_core.Signal<"over" | "side">;
|
|
4037
|
-
|
|
4041
|
+
ngOnInit(): void;
|
|
4038
4042
|
protected updateForSuccessfulTransition(): void;
|
|
4039
4043
|
closeNav(): void;
|
|
4040
4044
|
toggleNav(open?: boolean): void;
|