coer-elements 1.1.8 → 1.1.10
Sign up to get free protection for your applications and to get access to all the features.
- package/fesm2022/coer-elements-services.mjs +20 -4
- package/fesm2022/coer-elements-services.mjs.map +1 -1
- package/fesm2022/coer-elements.mjs +7 -23
- package/fesm2022/coer-elements.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +1 -1
- package/services/lib/jwt.service.d.ts +2 -2
- package/services/lib/services.module.d.ts +6 -0
- package/services/public-api.d.ts +1 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as i0 from '@angular/core';
|
2
|
-
import { inject, Injectable } from '@angular/core';
|
2
|
+
import { inject, Injectable, NgModule } from '@angular/core';
|
3
3
|
import { JwtHelperService } from '@auth0/angular-jwt';
|
4
4
|
import { User, Tools, DateTime } from 'coer-elements/tools';
|
5
5
|
|
@@ -12,13 +12,13 @@ class JWTService {
|
|
12
12
|
return User.Get()?.jwt || '';
|
13
13
|
}
|
14
14
|
/** */
|
15
|
-
get
|
15
|
+
get expirationDate() {
|
16
16
|
return Tools.IsNotOnlyWhiteSpace(this.jwt) && Tools.IsNotNull(this.jwtService.getTokenExpirationDate(this.jwt))
|
17
17
|
? DateTime.GetFormatDB(this.jwtService.getTokenExpirationDate(this.jwt))
|
18
18
|
: null;
|
19
19
|
}
|
20
20
|
/** */
|
21
|
-
get
|
21
|
+
get isExpired() {
|
22
22
|
return Tools.IsNotOnlyWhiteSpace(this.jwt)
|
23
23
|
? this.jwtService.isTokenExpired(this.jwt)
|
24
24
|
: true;
|
@@ -33,9 +33,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImpor
|
|
33
33
|
}]
|
34
34
|
}] });
|
35
35
|
|
36
|
+
class ServicesModule {
|
37
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: ServicesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
38
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.1", ngImport: i0, type: ServicesModule }); }
|
39
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: ServicesModule, providers: [
|
40
|
+
JWTService
|
41
|
+
] }); }
|
42
|
+
}
|
43
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: ServicesModule, decorators: [{
|
44
|
+
type: NgModule,
|
45
|
+
args: [{
|
46
|
+
providers: [
|
47
|
+
JWTService
|
48
|
+
]
|
49
|
+
}]
|
50
|
+
}] });
|
51
|
+
|
36
52
|
/**
|
37
53
|
* Generated bundle index. Do not edit.
|
38
54
|
*/
|
39
55
|
|
40
|
-
export { JWTService };
|
56
|
+
export { JWTService, ServicesModule };
|
41
57
|
//# sourceMappingURL=coer-elements-services.mjs.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"coer-elements-services.mjs","sources":["../../../projects/coer-elements/services/lib/jwt.service.ts","../../../projects/coer-elements/services/coer-elements-services.ts"],"sourcesContent":["import { inject, Injectable } from '@angular/core';\r\nimport { JwtHelperService } from '@auth0/angular-jwt';\r\nimport { DateTime, Tools, User } from 'coer-elements/tools'; \r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class JWTService {\r\n\r\n private readonly jwtService = inject(JwtHelperService);\r\n \r\n \r\n /** */\r\n public get jwt(): string {\r\n return User.Get<any>()?.jwt || '';\r\n }\r\n\r\n \r\n /** */\r\n public get
|
1
|
+
{"version":3,"file":"coer-elements-services.mjs","sources":["../../../projects/coer-elements/services/lib/jwt.service.ts","../../../projects/coer-elements/services/lib/services.module.ts","../../../projects/coer-elements/services/coer-elements-services.ts"],"sourcesContent":["import { inject, Injectable } from '@angular/core';\r\nimport { JwtHelperService } from '@auth0/angular-jwt';\r\nimport { DateTime, Tools, User } from 'coer-elements/tools'; \r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class JWTService {\r\n\r\n private readonly jwtService = inject(JwtHelperService);\r\n \r\n \r\n /** */\r\n public get jwt(): string {\r\n return User.Get<any>()?.jwt || '';\r\n }\r\n\r\n \r\n /** */\r\n public get expirationDate(): string | null { \r\n return Tools.IsNotOnlyWhiteSpace(this.jwt) && Tools.IsNotNull(this.jwtService.getTokenExpirationDate(this.jwt))\r\n ? DateTime.GetFormatDB(this.jwtService.getTokenExpirationDate(this.jwt)!)\r\n : null\r\n }\r\n\r\n\r\n /** */\r\n public get isExpired(): boolean { \r\n return Tools.IsNotOnlyWhiteSpace(this.jwt)\r\n ? this.jwtService.isTokenExpired(this.jwt)\r\n : true\r\n }\r\n}","import { NgModule } from '@angular/core'; \r\n\r\n//Services\r\nimport { JWTService } from './jwt.service';\r\n\r\n@NgModule({ \r\n providers: [ \r\n JWTService \r\n ]\r\n})\r\nexport class ServicesModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAOa,UAAU,CAAA;AAHvB,IAAA,WAAA,GAAA;AAKqB,QAAA,IAAA,CAAA,UAAU,GAAG,MAAM,CAAC,gBAAgB,CAAC;AAuBzD;;AAnBG,IAAA,IAAW,GAAG,GAAA;QACV,OAAO,IAAI,CAAC,GAAG,EAAO,EAAE,GAAG,IAAI,EAAE;;;AAKrC,IAAA,IAAW,cAAc,GAAA;QACrB,OAAO,KAAK,CAAC,mBAAmB,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,sBAAsB,CAAC,IAAI,CAAC,GAAG,CAAC;AAC1G,cAAE,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,sBAAsB,CAAC,IAAI,CAAC,GAAG,CAAE;cACtE,IAAI;;;AAKd,IAAA,IAAW,SAAS,GAAA;AAChB,QAAA,OAAO,KAAK,CAAC,mBAAmB,CAAC,IAAI,CAAC,GAAG;cACnC,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG;cACvC,IAAI;;8GAvBL,UAAU,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAV,IAAA,SAAA,IAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAU,cAFP,MAAM,EAAA,CAAA,CAAA;;2FAET,UAAU,EAAA,UAAA,EAAA,CAAA;kBAHtB,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,UAAU,EAAE;AACf,iBAAA;;;MCIY,cAAc,CAAA;8GAAd,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAAd,cAAc,EAAA,CAAA,CAAA;AAAd,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,EAJZ,SAAA,EAAA;YACP;AACH,SAAA,EAAA,CAAA,CAAA;;2FAEQ,cAAc,EAAA,UAAA,EAAA,CAAA;kBAL1B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACN,oBAAA,SAAS,EAAE;wBACP;AACH;AACJ,iBAAA;;;ACTD;;AAEG;;;;"}
|
@@ -1,32 +1,22 @@
|
|
1
1
|
import * as i0 from '@angular/core';
|
2
2
|
import { NgModule } from '@angular/core';
|
3
|
-
import * as i5 from '@auth0/angular-jwt';
|
4
|
-
import { JwtModule } from '@auth0/angular-jwt';
|
5
3
|
import 'coer-elements/extensions';
|
6
|
-
import {
|
4
|
+
import { CoerAlert } from 'coer-elements/tools';
|
7
5
|
import * as components from 'coer-elements/components';
|
8
6
|
import * as pages from 'coer-elements/pages';
|
9
7
|
import * as directives from 'coer-elements/directives';
|
10
8
|
import * as pipes from 'coer-elements/pipes';
|
9
|
+
import * as services from 'coer-elements/services';
|
11
10
|
|
12
|
-
function TOKEN() {
|
13
|
-
return User.Get()?.jwt || '';
|
14
|
-
}
|
15
11
|
class CoerElementsModule {
|
16
12
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
17
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, imports: [components.ComponentsModule, pages.PagesModule, directives.DirectivesModule, pipes.PipesModule,
|
13
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, imports: [components.ComponentsModule, pages.PagesModule, directives.DirectivesModule, pipes.PipesModule, services.ServicesModule, CoerAlert], exports: [CoerAlert, pages.COERSystem, pages.CoerMenuPage, pages.HomePage, pages.LoadingPage, components.CoerAccordion, components.CoerButton, components.CoerCheckbox, components.CoerDateBox, components.CoerFilebox, components.CoerForm, components.CoerGrid, components.CoerList, components.CoerModal, components.CoerNumberBox, components.CoerPageTitle, components.CoerSelectbox, components.CoerDropdown, components.CoerSidenav, components.CoerSwitch, components.CoerTextarea, components.CoerTab, components.CoerTextBox, components.CoerToolbar, directives.CoerRefDirective, directives.LifeCycleDirective, pipes.HtmlPipe, pipes.NoImagePipe, pipes.NumericFormatPipe] }); }
|
18
14
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, imports: [components.ComponentsModule,
|
19
15
|
pages.PagesModule,
|
20
16
|
directives.DirectivesModule,
|
21
17
|
pipes.PipesModule,
|
22
|
-
|
23
|
-
|
24
|
-
config: {
|
25
|
-
tokenGetter: TOKEN,
|
26
|
-
allowedDomains: [],
|
27
|
-
disallowedRoutes: [],
|
28
|
-
}
|
29
|
-
})] }); }
|
18
|
+
services.ServicesModule,
|
19
|
+
CoerAlert] }); }
|
30
20
|
}
|
31
21
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: CoerElementsModule, decorators: [{
|
32
22
|
type: NgModule,
|
@@ -36,14 +26,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImpor
|
|
36
26
|
pages.PagesModule,
|
37
27
|
directives.DirectivesModule,
|
38
28
|
pipes.PipesModule,
|
39
|
-
|
40
|
-
|
41
|
-
config: {
|
42
|
-
tokenGetter: TOKEN,
|
43
|
-
allowedDomains: [],
|
44
|
-
disallowedRoutes: [],
|
45
|
-
}
|
46
|
-
})
|
29
|
+
services.ServicesModule,
|
30
|
+
CoerAlert
|
47
31
|
],
|
48
32
|
exports: [
|
49
33
|
CoerAlert,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"coer-elements.mjs","sources":["../../../projects/coer-elements/index.ts","../../../projects/coer-elements/coer-elements.ts"],"sourcesContent":["import { NgModule } from '@angular/core'; \r\nimport
|
1
|
+
{"version":3,"file":"coer-elements.mjs","sources":["../../../projects/coer-elements/index.ts","../../../projects/coer-elements/coer-elements.ts"],"sourcesContent":["import { NgModule } from '@angular/core'; \r\nimport 'coer-elements/extensions';\r\n\r\n//Components \r\nimport { CoerAlert } from 'coer-elements/tools';\r\nimport * as components from 'coer-elements/components';\r\nimport * as pages from 'coer-elements/pages';\r\nimport * as directives from 'coer-elements/directives';\r\nimport * as pipes from 'coer-elements/pipes'; \r\nimport * as services from 'coer-elements/services';\r\n\r\n\r\n@NgModule({ \r\n imports: [ \r\n components.ComponentsModule, \r\n pages.PagesModule,\r\n directives.DirectivesModule,\r\n pipes.PipesModule, \r\n services.ServicesModule,\r\n CoerAlert \r\n ],\r\n exports: [ \r\n CoerAlert,\r\n pages.COERSystem,\r\n pages.CoerMenuPage,\r\n pages.HomePage, \r\n pages.LoadingPage,\r\n components.CoerAccordion,\r\n components.CoerButton,\r\n components.CoerCheckbox,\r\n components.CoerDateBox,\r\n components.CoerFilebox,\r\n components.CoerForm,\r\n components.CoerGrid,\r\n components.CoerList, \r\n components.CoerModal,\r\n components.CoerNumberBox,\r\n components.CoerPageTitle,\r\n components.CoerSelectbox,\r\n components.CoerDropdown,\r\n components.CoerSidenav,\r\n components.CoerSwitch,\r\n components.CoerTextarea,\r\n components.CoerTab,\r\n components.CoerTextBox,\r\n components.CoerToolbar, \r\n directives.CoerRefDirective,\r\n directives.LifeCycleDirective,\r\n pipes.HtmlPipe,\r\n pipes.NoImagePipe,\r\n pipes.NumericFormatPipe \r\n ]\r\n})\r\nexport class CoerElementsModule { } \r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i2","i3","i4","i5"],"mappings":"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"}
|
package/index.d.ts
CHANGED
@@ -4,10 +4,10 @@ import * as i1 from "coer-elements/components";
|
|
4
4
|
import * as i2 from "coer-elements/pages";
|
5
5
|
import * as i3 from "coer-elements/directives";
|
6
6
|
import * as i4 from "coer-elements/pipes";
|
7
|
-
import * as i5 from "coer-elements/
|
8
|
-
import * as i6 from "
|
7
|
+
import * as i5 from "coer-elements/services";
|
8
|
+
import * as i6 from "coer-elements/tools";
|
9
9
|
export declare class CoerElementsModule {
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoerElementsModule, never>;
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CoerElementsModule, never, [typeof i1.ComponentsModule, typeof i2.PagesModule, typeof i3.DirectivesModule, typeof i4.PipesModule, typeof i5.
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CoerElementsModule, never, [typeof i1.ComponentsModule, typeof i2.PagesModule, typeof i3.DirectivesModule, typeof i4.PipesModule, typeof i5.ServicesModule, typeof i6.CoerAlert], [typeof i6.CoerAlert, typeof i2.COERSystem, typeof i2.CoerMenuPage, typeof i2.HomePage, typeof i2.LoadingPage, typeof i1.CoerAccordion, typeof i1.CoerButton, typeof i1.CoerCheckbox, typeof i1.CoerDateBox, typeof i1.CoerFilebox, typeof i1.CoerForm, typeof i1.CoerGrid, typeof i1.CoerList, typeof i1.CoerModal, typeof i1.CoerNumberBox, typeof i1.CoerPageTitle, typeof i1.CoerSelectbox, typeof i1.CoerDropdown, typeof i1.CoerSidenav, typeof i1.CoerSwitch, typeof i1.CoerTextarea, typeof i1.CoerTab, typeof i1.CoerTextBox, typeof i1.CoerToolbar, typeof i3.CoerRefDirective, typeof i3.LifeCycleDirective, typeof i4.HtmlPipe, typeof i4.NoImagePipe, typeof i4.NumericFormatPipe]>;
|
12
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<CoerElementsModule>;
|
13
13
|
}
|
package/package.json
CHANGED
@@ -4,9 +4,9 @@ export declare class JWTService {
|
|
4
4
|
/** */
|
5
5
|
get jwt(): string;
|
6
6
|
/** */
|
7
|
-
get
|
7
|
+
get expirationDate(): string | null;
|
8
8
|
/** */
|
9
|
-
get
|
9
|
+
get isExpired(): boolean;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<JWTService, never>;
|
11
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<JWTService>;
|
12
12
|
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class ServicesModule {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ServicesModule, never>;
|
4
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ServicesModule, never, never, never>;
|
5
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ServicesModule>;
|
6
|
+
}
|
package/services/public-api.d.ts
CHANGED