@abp/ng.core 7.3.0-rc.1 → 7.3.0-rc.2
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/README.md +129 -2
- package/esm2022/lib/directives/caps-lock.directive.mjs +42 -0
- package/esm2022/lib/directives/index.mjs +3 -1
- package/esm2022/lib/directives/show-password.directive.mjs +26 -0
- package/fesm2022/abp-ng.core.mjs +64 -2
- package/fesm2022/abp-ng.core.mjs.map +1 -1
- package/lib/directives/caps-lock.directive.d.ts +10 -0
- package/lib/directives/index.d.ts +2 -0
- package/lib/directives/show-password.directive.d.ts +8 -0
- package/package.json +16 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TrackCapsLockDirective {
|
|
4
|
+
capsLock: EventEmitter<Boolean>;
|
|
5
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
6
|
+
onKeyUp(event: KeyboardEvent): void;
|
|
7
|
+
isCapsLockOpen(e: any): boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrackCapsLockDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TrackCapsLockDirective, "[abpCapsLock]", never, {}, { "capsLock": "abpCapsLock"; }, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ShowPasswordDirective {
|
|
4
|
+
protected readonly elementRef: ElementRef<any>;
|
|
5
|
+
set abpShowPassword(visible: boolean);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowPasswordDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ShowPasswordDirective, "[abpShowPassword]", never, { "abpShowPassword": { "alias": "abpShowPassword"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abp/ng.core",
|
|
3
|
-
"version": "7.3.0-rc.
|
|
3
|
+
"version": "7.3.0-rc.2",
|
|
4
4
|
"homepage": "https://abp.io",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/abpframework/abp.git"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@abp/utils": "~7.3.0-rc.
|
|
10
|
+
"@abp/utils": "~7.3.0-rc.2",
|
|
11
11
|
"angular-oauth2-oidc": "^15.0.1",
|
|
12
12
|
"just-clone": "^6.1.1",
|
|
13
13
|
"just-compare": "^2.3.0",
|
|
@@ -17,6 +17,20 @@
|
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
|
+
"license": "LGPL-3.0",
|
|
21
|
+
"keywords": [
|
|
22
|
+
"aspnetcore",
|
|
23
|
+
"boilerplate",
|
|
24
|
+
"framework",
|
|
25
|
+
"web",
|
|
26
|
+
"best-practices",
|
|
27
|
+
"angular",
|
|
28
|
+
"maui",
|
|
29
|
+
"blazor",
|
|
30
|
+
"mvc",
|
|
31
|
+
"csharp",
|
|
32
|
+
"webapp"
|
|
33
|
+
],
|
|
20
34
|
"module": "fesm2022/abp-ng.core.mjs",
|
|
21
35
|
"typings": "index.d.ts",
|
|
22
36
|
"exports": {
|