@gipisistemas/ng-core 1.1.13 → 1.1.15

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.
Files changed (35) hide show
  1. package/bundles/gipisistemas-ng-core.umd.js +140 -11
  2. package/bundles/gipisistemas-ng-core.umd.js.map +1 -1
  3. package/bundles/gipisistemas-ng-core.umd.min.js +9 -9
  4. package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -1
  5. package/esm2015/gipi-components.js +2 -1
  6. package/esm2015/gipisistemas-ng-core.js +8 -7
  7. package/esm2015/shared/components/input/input.component.js +12 -3
  8. package/esm2015/shared/directives/input-trim.directive.js +70 -0
  9. package/esm2015/shared/directives/lower-case.directive.js +1 -1
  10. package/esm2015/shared/directives/phone-mask.directive.js +1 -1
  11. package/esm2015/shared/directives/space-drop.directive.js +1 -1
  12. package/esm2015/shared/directives/upper-case.directive.js +1 -1
  13. package/esm2015/shared/gipi-components/qr-code/qr-code.component.js +46 -0
  14. package/esm2015/shared/shared.module.js +7 -1
  15. package/esm5/gipi-components.js +2 -1
  16. package/esm5/gipisistemas-ng-core.js +8 -7
  17. package/esm5/shared/components/input/input.component.js +16 -3
  18. package/esm5/shared/directives/input-trim.directive.js +71 -0
  19. package/esm5/shared/directives/lower-case.directive.js +1 -1
  20. package/esm5/shared/directives/phone-mask.directive.js +1 -1
  21. package/esm5/shared/directives/space-drop.directive.js +1 -1
  22. package/esm5/shared/directives/upper-case.directive.js +1 -1
  23. package/esm5/shared/gipi-components/qr-code/qr-code.component.js +47 -0
  24. package/esm5/shared/shared.module.js +7 -1
  25. package/fesm2015/gipisistemas-ng-core.js +124 -2
  26. package/fesm2015/gipisistemas-ng-core.js.map +1 -1
  27. package/fesm5/gipisistemas-ng-core.js +130 -2
  28. package/fesm5/gipisistemas-ng-core.js.map +1 -1
  29. package/gipi-components.d.ts +1 -0
  30. package/gipisistemas-ng-core.d.ts +7 -6
  31. package/gipisistemas-ng-core.metadata.json +1 -1
  32. package/package.json +3 -2
  33. package/shared/components/input/input.component.d.ts +3 -1
  34. package/shared/directives/input-trim.directive.d.ts +9 -0
  35. package/shared/gipi-components/qr-code/qr-code.component.d.ts +8 -0
@@ -39,6 +39,7 @@ export * from './shared/gipi-components/popover/shared/popover-animations';
39
39
  export * from './shared/gipi-components/popover/shared/popover-interfaces';
40
40
  export * from './shared/gipi-components/popover/shared/popover-target';
41
41
  export * from './shared/gipi-components/popover/shared/popover-trigger';
42
+ export * from './shared/gipi-components/qr-code/qr-code.component';
42
43
  export * from './shared/gipi-components/radio-group/radio-group.component';
43
44
  export * from './shared/gipi-components/range-page/range-page.component';
44
45
  export * from './shared/gipi-components/range-slider/range-slider.component';
@@ -3,20 +3,21 @@
3
3
  */
4
4
  export * from './public_api';
5
5
  export { GIPINgConfig as ɵg } from './shared/api/gipi-ng-config';
6
- export { ITSS_SELECT_SEARCH_DEFAULT_OPTIONS as ɵo, ItssSelectSearchOptions as ɵp } from './shared/components/select-entity-paged/shared/default-options';
6
+ export { ITSS_SELECT_SEARCH_DEFAULT_OPTIONS as ɵp, ItssSelectSearchOptions as ɵq } from './shared/components/select-entity-paged/shared/default-options';
7
7
  export { TextareaComponent as ɵj } from './shared/components/textarea/textarea.component';
8
- export { InputSelectInfiniteScrollDirective as ɵn } from './shared/directives/input-select-infinite-scroll.directive';
8
+ export { InputSelectInfiniteScrollDirective as ɵo } from './shared/directives/input-select-infinite-scroll.directive';
9
+ export { InputTrimDirective as ɵn } from './shared/directives/input-trim.directive';
9
10
  export { LowerCaseDirective as ɵl } from './shared/directives/lower-case.directive';
10
11
  export { SpaceDropDirective as ɵm } from './shared/directives/space-drop.directive';
11
12
  export { UpperCaseDirective as ɵk } from './shared/directives/upper-case.directive';
12
13
  export { GIPIChipsComponent as ɵh } from './shared/gipi-components/chips/chips.component';
13
- export { DatepickerComponent as ɵr } from './shared/gipi-components/datepicker/datepicker/datepicker.component';
14
+ export { DatepickerComponent as ɵs } from './shared/gipi-components/datepicker/datepicker/datepicker.component';
14
15
  export { MAT_DATE_RANGE_INPUT_PARENT as ɵa } from './shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts';
15
16
  export { MAT_CALENDAR_RANGE_STRATEGY_PROVIDER as ɵc, MAT_CALENDAR_RANGE_STRATEGY_PROVIDER_FACTORY as ɵb } from './shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy';
16
17
  export { MatDatepickerBase as ɵd } from './shared/gipi-components/datepicker/mat-datepicker/datepicker-base';
17
18
  export { MAT_FORM_FIELD as ɵe } from './shared/gipi-components/datepicker/mat-datepicker/datepicker-input';
18
19
  export { MatDatepickerInputBase as ɵf } from './shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base';
19
- export { slideCalendar as ɵs } from './shared/gipi-components/datetime-picker/mat-datetime-picker/datetimepicker-animations';
20
- export { GIPIDatetimepickerMultiYearViewComponent as ɵt } from './shared/gipi-components/datetime-picker/mat-datetime-picker/multi-year-view';
20
+ export { slideCalendar as ɵt } from './shared/gipi-components/datetime-picker/mat-datetime-picker/datetimepicker-animations';
21
+ export { GIPIDatetimepickerMultiYearViewComponent as ɵu } from './shared/gipi-components/datetime-picker/mat-datetime-picker/multi-year-view';
21
22
  export { GIPIFileDragAndDropDirective as ɵi } from './shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive';
22
- export { MaterialModule as ɵq } from './shared/material.module';
23
+ export { MaterialModule as ɵr } from './shared/material.module';