@dereekb/dbx-core 9.23.19 → 9.23.21
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/action/directive/state/action.presuccess.directive.mjs +1 -1
- package/esm2020/lib/router/anchor/mousable.mjs +1 -1
- package/fesm2015/dereekb-dbx-core.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-core.mjs.map +1 -1
- package/lib/action/directive/state/action.presuccess.directive.d.ts +2 -2
- package/lib/router/anchor/mousable.d.ts +4 -0
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { Maybe } from '@dereekb/util';
|
|
3
3
|
import { AbstractIfDirective } from '../../../view/if.directive';
|
|
4
4
|
import { DbxActionContextStoreSourceInstance } from '../../action.store.source';
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
*
|
|
9
9
|
* Can be configured to hide for a temporary period.
|
|
10
10
|
*/
|
|
11
|
-
export declare class DbxActionPreSuccessDirective extends AbstractIfDirective
|
|
11
|
+
export declare class DbxActionPreSuccessDirective extends AbstractIfDirective {
|
|
12
12
|
readonly source: DbxActionContextStoreSourceInstance;
|
|
13
13
|
hideFor?: Maybe<number> | '';
|
|
14
14
|
readonly show$: import("rxjs").Observable<boolean>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { Maybe } from '@dereekb/util';
|
|
2
2
|
export declare type MouseEventType = 'enter' | 'leave';
|
|
3
|
+
export interface MouseEventPair<T> {
|
|
4
|
+
readonly type: MouseEventType;
|
|
5
|
+
readonly data: T;
|
|
6
|
+
}
|
|
3
7
|
export interface MousableFunction {
|
|
4
8
|
onMouse?: (type: MouseEventType, event?: Maybe<MouseEvent>) => void;
|
|
5
9
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-core",
|
|
3
|
-
"version": "9.23.
|
|
3
|
+
"version": "9.23.21",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0",
|
|
@@ -9,11 +9,11 @@
|
|
|
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.23.
|
|
13
|
-
"@dereekb/rxjs": "9.23.
|
|
12
|
+
"@dereekb/util": "9.23.21",
|
|
13
|
+
"@dereekb/rxjs": "9.23.21",
|
|
14
14
|
"@angular/platform-browser": "^14.2.0",
|
|
15
15
|
"@uirouter/core": "^6.0.8",
|
|
16
|
-
"@dereekb/date": "9.23.
|
|
16
|
+
"@dereekb/date": "9.23.21",
|
|
17
17
|
"@angular/router": "^14.2.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|