@dereekb/dbx-core 9.19.4 → 9.20.0
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/esm2020/lib/router/anchor/anchor.mjs +1 -1
- package/esm2020/lib/storage/storage.di.mjs +3 -3
- package/fesm2015/dereekb-dbx-core.mjs +2 -2
- package/fesm2015/dereekb-dbx-core.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-core.mjs +2 -2
- package/fesm2020/dereekb-dbx-core.mjs.map +1 -1
- package/lib/router/anchor/anchor.d.ts +6 -1
- package/package.json +4 -4
|
@@ -7,10 +7,15 @@ export interface ClickableAnchor extends ClickableFunction, ClickableUrl, Partia
|
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
selected?: boolean;
|
|
9
9
|
}
|
|
10
|
-
|
|
10
|
+
/**
|
|
11
|
+
* Title an an optional icon.
|
|
12
|
+
*/
|
|
13
|
+
export interface IconAndTitle {
|
|
11
14
|
title: string;
|
|
12
15
|
icon?: string;
|
|
13
16
|
}
|
|
17
|
+
export interface ClickableAnchorLink extends ClickableAnchor, IconAndTitle {
|
|
18
|
+
}
|
|
14
19
|
/**
|
|
15
20
|
* ClickableAnchorLink that definitely has a SegueRef
|
|
16
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-core",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.20.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0",
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"@ngrx/effects": "^14.0.0",
|
|
10
10
|
"@ngrx/entity": "^14.0.0",
|
|
11
11
|
"@ngrx/store": "^14.0.0",
|
|
12
|
-
"@dereekb/util": "9.
|
|
13
|
-
"@dereekb/rxjs": "9.
|
|
12
|
+
"@dereekb/util": "9.20.0",
|
|
13
|
+
"@dereekb/rxjs": "9.20.0",
|
|
14
14
|
"@angular/platform-browser": "^14.2.0",
|
|
15
15
|
"@uirouter/core": "^6.0.8",
|
|
16
16
|
"date-fns": "^2.29.0",
|
|
17
|
-
"@dereekb/date": "9.
|
|
17
|
+
"@dereekb/date": "9.20.0",
|
|
18
18
|
"@angular/router": "^14.2.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|