info-library 2.10.72 → 2.10.74
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/bundles/info-library.umd.js +388 -71
- package/bundles/info-library.umd.js.map +1 -1
- package/bundles/info-library.umd.min.js +1 -1
- package/bundles/info-library.umd.min.js.map +1 -1
- package/esm2015/info-library.js +13 -12
- package/esm2015/info-library.module.js +5 -1
- package/esm2015/layouts/main/main.component.js +17 -7
- package/esm2015/layouts/topbar/topbar.component.js +13 -5
- package/esm2015/model/platform.model.js +3 -3
- package/esm2015/service/authentication.service.js +75 -29
- package/esm2015/service/data.service.js +15 -11
- package/esm2015/service/theme.service.js +1 -1
- package/esm2015/utils/utilities.js +256 -0
- package/fesm2015/info-library.js +368 -52
- package/fesm2015/info-library.js.map +1 -1
- package/info-library.d.ts +12 -11
- package/info-library.metadata.json +1 -1
- package/layouts/main/main.component.d.ts +3 -1
- package/layouts/topbar/topbar.component.d.ts +3 -1
- package/package.json +1 -1
- package/service/authentication.service.d.ts +8 -3
- package/service/data.service.d.ts +3 -2
- package/utils/utilities.d.ts +24 -0
package/info-library.d.ts
CHANGED
|
@@ -4,17 +4,18 @@
|
|
|
4
4
|
export * from './public_api';
|
|
5
5
|
export { PT_BR_DATE_MONTH_FORMATS as ɵb } from './controls/date-month/date-month.component';
|
|
6
6
|
export { PT_BR_DATE_FORMATS as ɵa } from './controls/date/date.component';
|
|
7
|
-
export { InfoMaskDirective as
|
|
8
|
-
export { InfoUnmaskDirective as
|
|
7
|
+
export { InfoMaskDirective as ɵq } from './directives/mask.directive';
|
|
8
|
+
export { InfoUnmaskDirective as ɵr } from './directives/unmask.directive';
|
|
9
9
|
export { AtalhoModalComponent as ɵc } from './layouts/pagebar/pagebar.component';
|
|
10
|
-
export { InfoDialogModel as
|
|
11
|
-
export { InfoFormPropModel as
|
|
12
|
-
export { InfoLastSearchModel as
|
|
10
|
+
export { InfoDialogModel as ɵn } from './model/dialog.model';
|
|
11
|
+
export { InfoFormPropModel as ɵg } from './model/form-prop.model';
|
|
12
|
+
export { InfoLastSearchModel as ɵl } from './model/last-search.model';
|
|
13
13
|
export { InfoPlatformModel as ɵe } from './model/platform.model';
|
|
14
|
-
export { InfoSessionModel as
|
|
15
|
-
export { InfoMaskPipe as
|
|
16
|
-
export { InfoTranslatePipe as
|
|
17
|
-
export { InfoAuthenticationService as
|
|
14
|
+
export { InfoSessionModel as ɵj } from './model/session.model';
|
|
15
|
+
export { InfoMaskPipe as ɵp } from './pipe/mask.pipe';
|
|
16
|
+
export { InfoTranslatePipe as ɵo } from './pipe/translate.pipe';
|
|
17
|
+
export { InfoAuthenticationService as ɵh, RefreshSessionTimeModalComponent as ɵi } from './service/authentication.service';
|
|
18
18
|
export { InfoDataService as ɵd } from './service/data.service';
|
|
19
|
-
export { InfoThemeService as
|
|
20
|
-
export { InfoTranslateService as
|
|
19
|
+
export { InfoThemeService as ɵm } from './service/theme.service';
|
|
20
|
+
export { InfoTranslateService as ɵk } from './service/translate.service';
|
|
21
|
+
export { Utilities as ɵf } from './utils/utilities';
|