info-library 2.10.22 → 2.10.26
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 +85 -9
- 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/controls/card-menu/card-menu.component.js +6 -1
- package/esm2015/info-library.js +5 -4
- package/esm2015/info-library.module.js +4 -1
- package/esm2015/layouts/main/main.component.js +14 -3
- package/esm2015/layouts/topbar/topbar.component.js +7 -2
- package/esm2015/pipe/index.js +2 -1
- package/esm2015/pipe/mask.pipe.js +47 -0
- package/esm2015/public_api.js +2 -2
- package/esm2015/service/authentication.service.js +2 -2
- package/fesm2015/info-library.js +73 -5
- package/fesm2015/info-library.js.map +1 -1
- package/info-library.d.ts +3 -2
- package/info-library.metadata.json +1 -1
- package/layouts/main/main.component.d.ts +3 -1
- package/layouts/topbar/topbar.component.d.ts +1 -0
- package/package.json +1 -1
- package/pipe/index.d.ts +1 -0
- package/pipe/mask.pipe.d.ts +5 -0
package/info-library.d.ts
CHANGED
|
@@ -4,14 +4,15 @@
|
|
|
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 ɵp } from './directives/mask.directive';
|
|
8
|
+
export { InfoUnmaskDirective as ɵq } from './directives/unmask.directive';
|
|
9
9
|
export { AtalhoModalComponent as ɵc } from './layouts/pagebar/pagebar.component';
|
|
10
10
|
export { InfoDialogModel as ɵm } from './model/dialog.model';
|
|
11
11
|
export { InfoFormPropModel as ɵf } from './model/form-prop.model';
|
|
12
12
|
export { InfoLastSearchModel as ɵk } from './model/last-search.model';
|
|
13
13
|
export { InfoPlatformModel as ɵe } from './model/platform.model';
|
|
14
14
|
export { InfoSessionModel as ɵi } from './model/session.model';
|
|
15
|
+
export { InfoMaskPipe as ɵo } from './pipe/mask.pipe';
|
|
15
16
|
export { InfoTranslatePipe as ɵn } from './pipe/translate.pipe';
|
|
16
17
|
export { InfoAuthenticationService as ɵg, RefreshSessionTimeModalComponent as ɵh } from './service/authentication.service';
|
|
17
18
|
export { InfoDataService as ɵd } from './service/data.service';
|