@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.
- package/bundles/gipisistemas-ng-core.umd.js +140 -11
- package/bundles/gipisistemas-ng-core.umd.js.map +1 -1
- package/bundles/gipisistemas-ng-core.umd.min.js +9 -9
- package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -1
- package/esm2015/gipi-components.js +2 -1
- package/esm2015/gipisistemas-ng-core.js +8 -7
- package/esm2015/shared/components/input/input.component.js +12 -3
- package/esm2015/shared/directives/input-trim.directive.js +70 -0
- package/esm2015/shared/directives/lower-case.directive.js +1 -1
- package/esm2015/shared/directives/phone-mask.directive.js +1 -1
- package/esm2015/shared/directives/space-drop.directive.js +1 -1
- package/esm2015/shared/directives/upper-case.directive.js +1 -1
- package/esm2015/shared/gipi-components/qr-code/qr-code.component.js +46 -0
- package/esm2015/shared/shared.module.js +7 -1
- package/esm5/gipi-components.js +2 -1
- package/esm5/gipisistemas-ng-core.js +8 -7
- package/esm5/shared/components/input/input.component.js +16 -3
- package/esm5/shared/directives/input-trim.directive.js +71 -0
- package/esm5/shared/directives/lower-case.directive.js +1 -1
- package/esm5/shared/directives/phone-mask.directive.js +1 -1
- package/esm5/shared/directives/space-drop.directive.js +1 -1
- package/esm5/shared/directives/upper-case.directive.js +1 -1
- package/esm5/shared/gipi-components/qr-code/qr-code.component.js +47 -0
- package/esm5/shared/shared.module.js +7 -1
- package/fesm2015/gipisistemas-ng-core.js +124 -2
- package/fesm2015/gipisistemas-ng-core.js.map +1 -1
- package/fesm5/gipisistemas-ng-core.js +130 -2
- package/fesm5/gipisistemas-ng-core.js.map +1 -1
- package/gipi-components.d.ts +1 -0
- package/gipisistemas-ng-core.d.ts +7 -6
- package/gipisistemas-ng-core.metadata.json +1 -1
- package/package.json +3 -2
- package/shared/components/input/input.component.d.ts +3 -1
- package/shared/directives/input-trim.directive.d.ts +9 -0
- package/shared/gipi-components/qr-code/qr-code.component.d.ts +8 -0
package/gipi-components.d.ts
CHANGED
@@ -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
|
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
|
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
|
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
|
20
|
-
export { GIPIDatetimepickerMultiYearViewComponent as
|
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
|
23
|
+
export { MaterialModule as ɵr } from './shared/material.module';
|