@gipisistemas/ng-core 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/assets/styles/colors.scss +261 -0
- package/assets/styles/layout-grid.scss +146 -0
- package/assets/styles/styles.scss +149 -0
- package/assets/styles/theme.scss +22 -0
- package/assets/styles/typography.scss +54 -0
- package/assets/styles/variable.scss +41 -0
- package/bundles/gipisistemas-ng-core.umd.js +28311 -0
- package/bundles/gipisistemas-ng-core.umd.js.map +1 -0
- package/bundles/gipisistemas-ng-core.umd.min.js +66 -0
- package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -0
- package/core/app-messages.d.ts +9 -0
- package/core/app.messages.d.ts +4 -0
- package/core/components/abstract-crud.component.d.ts +27 -0
- package/core/components/abstract-find.component.d.ts +43 -0
- package/core/components/abstract.component.d.ts +23 -0
- package/core/components/alert/alert.component.d.ts +7 -0
- package/core/core.module.d.ts +17 -0
- package/core/custom-breakpoints.d.ts +7 -0
- package/core/enums/local-time.enum.d.ts +5 -0
- package/core/extensions/string.extension.d.ts +3 -0
- package/core/gipi-components/components/abstract-crud.component.d.ts +25 -0
- package/core/gipi-components/components/abstract-find.component.d.ts +73 -0
- package/core/gipi-components/components/abstract.component.d.ts +38 -0
- package/core/gipi-components/decorators/autowired.decorator.d.ts +7 -0
- package/core/gipi-components/enums/sort-direction.enum.d.ts +5 -0
- package/core/gipi-components/interface/abstract-crud.interface.d.ts +5 -0
- package/core/gipi-components/interface/abstract-find.interface.d.ts +12 -0
- package/core/gipi-components/interface/abstract.interface.d.ts +11 -0
- package/core/gipi-components/interface/base-permission.interface.d.ts +9 -0
- package/core/gipi-components/models/abstract-filter.model.d.ts +9 -0
- package/core/gipi-components/models/abstract.model.d.ts +7 -0
- package/core/gipi-components/models/applied-filter.model.d.ts +9 -0
- package/core/gipi-components/models/dto/abstract.dto.d.ts +7 -0
- package/core/gipi-components/models/page-event.model.d.ts +18 -0
- package/core/gipi-components/models/page.model.d.ts +7 -0
- package/core/gipi-components/models/sort.model.d.ts +6 -0
- package/core/gipi-components/services/abstract-crud.service.d.ts +83 -0
- package/core/gipi-components/services/abstract.service.d.ts +19 -0
- package/core/gipi-components/services/base.service.d.ts +35 -0
- package/core/gipi-components/services/file.service.d.ts +6 -0
- package/core/gipi-components/services/session-storage.service.d.ts +8 -0
- package/core/gipi-components/types/generic.type.d.ts +1 -0
- package/core/gipi-components/types/uuid.type.d.ts +1 -0
- package/core/guards/auth.guard.d.ts +11 -0
- package/core/guards/permission.guard.d.ts +14 -0
- package/core/guards/public.guard.d.ts +11 -0
- package/core/interceptors/auth.interceptor.d.ts +9 -0
- package/core/interceptors/error.interceptor.d.ts +11 -0
- package/core/models/abstract.model.d.ts +3 -0
- package/core/models/archive.model.d.ts +4 -0
- package/core/models/authority.model.d.ts +3 -0
- package/core/models/base-user.model.d.ts +12 -0
- package/core/models/dto/abstract.dto.d.ts +2 -0
- package/core/models/dto/api-error.dto.d.ts +9 -0
- package/core/models/dto/api-sub-error.dto.d.ts +7 -0
- package/core/models/dto/chart.dto.d.ts +5 -0
- package/core/models/dto/confirmation.dto.d.ts +10 -0
- package/core/models/dto/dialog.dto.d.ts +36 -0
- package/core/models/dto/filter.dto.d.ts +8 -0
- package/core/models/dto/input-listbox.dto.d.ts +6 -0
- package/core/models/dto/menu.dto.d.ts +15 -0
- package/core/models/dto/message.dto.d.ts +7 -0
- package/core/models/dto/page.dto.d.ts +8 -0
- package/core/models/dto/sort.dto.d.ts +7 -0
- package/core/models/dto/tab.dto.d.ts +12 -0
- package/core/models/dto/table-column.dto.d.ts +21 -0
- package/core/models/dto/table-group-header.dto.d.ts +7 -0
- package/core/models/dto/table-page-event.dto.d.ts +6 -0
- package/core/models/dto/token.dto.d.ts +8 -0
- package/core/models/enums/criteria-operation.enum.d.ts +13 -0
- package/core/models/enums/criteria-sort-direction.enum.d.ts +4 -0
- package/core/models/enums/menu-type.enum.d.ts +6 -0
- package/core/models/enums/radio-button.enum.d.ts +6 -0
- package/core/models/enums/sort-direction.enum.d.ts +4 -0
- package/core/models/multitenant.model.d.ts +4 -0
- package/core/models/permission.model.d.ts +8 -0
- package/core/models/role.model.d.ts +7 -0
- package/core/pipes/local-time.pipe.d.ts +6 -0
- package/core/services/abstract-crud.service.d.ts +15 -0
- package/core/services/abstract-find.service.d.ts +30 -0
- package/core/services/abstract.service.d.ts +13 -0
- package/core/services/authentication.service.d.ts +23 -0
- package/core/services/breakpoint-observer.service.d.ts +9 -0
- package/core/services/confirmation.service.d.ts +8 -0
- package/core/services/dialog.service.d.ts +8 -0
- package/core/services/message.service.d.ts +8 -0
- package/core/services/nav.service.d.ts +16 -0
- package/core/services/svg-register.service.d.ts +22 -0
- package/core/types/local-time.type.d.ts +5 -0
- package/core/types/ng-class.type.d.ts +10 -0
- package/core/utils/array.util.d.ts +14 -0
- package/core/utils/browser.util.d.ts +4 -0
- package/core/utils/currency.util.d.ts +6 -0
- package/core/utils/date.util.d.ts +39 -0
- package/core/utils/document.util.d.ts +11 -0
- package/core/utils/email.util.d.ts +4 -0
- package/core/utils/number.util.d.ts +8 -0
- package/core/utils/object.util.d.ts +20 -0
- package/core/utils/password.util.d.ts +11 -0
- package/core/utils/phone.util.d.ts +13 -0
- package/core/utils/string.util.d.ts +9 -0
- package/core/utils/table-column-builder.d.ts +40 -0
- package/core/utils/time.util.d.ts +9 -0
- package/core/utils/url-params.util.d.ts +7 -0
- package/core/utils/uuid.util.d.ts +5 -0
- package/core/utils/zindex.util.d.ts +7 -0
- package/core.d.ts +88 -0
- package/esm2015/core/app-messages.js +1 -0
- package/esm2015/core/app.messages.js +12 -0
- package/esm2015/core/components/abstract-crud.component.js +97 -0
- package/esm2015/core/components/abstract-find.component.js +189 -0
- package/esm2015/core/components/abstract.component.js +110 -0
- package/esm2015/core/components/alert/alert.component.js +24 -0
- package/esm2015/core/core.module.js +103 -0
- package/esm2015/core/custom-breakpoints.js +87 -0
- package/esm2015/core/enums/local-time.enum.js +6 -0
- package/esm2015/core/extensions/string.extension.js +37 -0
- package/esm2015/core/gipi-components/components/abstract-crud.component.js +110 -0
- package/esm2015/core/gipi-components/components/abstract-find.component.js +471 -0
- package/esm2015/core/gipi-components/components/abstract.component.js +140 -0
- package/esm2015/core/gipi-components/decorators/autowired.decorator.js +47 -0
- package/esm2015/core/gipi-components/enums/sort-direction.enum.js +6 -0
- package/esm2015/core/gipi-components/interface/abstract-crud.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/abstract-find.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/abstract.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/base-permission.interface.js +1 -0
- package/esm2015/core/gipi-components/models/abstract-filter.model.js +3 -0
- package/esm2015/core/gipi-components/models/abstract.model.js +3 -0
- package/esm2015/core/gipi-components/models/applied-filter.model.js +19 -0
- package/esm2015/core/gipi-components/models/dto/abstract.dto.js +3 -0
- package/esm2015/core/gipi-components/models/page-event.model.js +35 -0
- package/esm2015/core/gipi-components/models/page.model.js +7 -0
- package/esm2015/core/gipi-components/models/sort.model.js +7 -0
- package/esm2015/core/gipi-components/services/abstract-crud.service.js +109 -0
- package/esm2015/core/gipi-components/services/abstract.service.js +47 -0
- package/esm2015/core/gipi-components/services/base.service.js +102 -0
- package/esm2015/core/gipi-components/services/file.service.js +51 -0
- package/esm2015/core/gipi-components/services/session-storage.service.js +44 -0
- package/esm2015/core/gipi-components/types/generic.type.js +1 -0
- package/esm2015/core/gipi-components/types/uuid.type.js +1 -0
- package/esm2015/core/guards/auth.guard.js +48 -0
- package/esm2015/core/guards/permission.guard.js +61 -0
- package/esm2015/core/guards/public.guard.js +45 -0
- package/esm2015/core/interceptors/auth.interceptor.js +28 -0
- package/esm2015/core/interceptors/error.interceptor.js +110 -0
- package/esm2015/core/models/abstract.model.js +3 -0
- package/esm2015/core/models/archive.model.js +3 -0
- package/esm2015/core/models/authority.model.js +3 -0
- package/esm2015/core/models/base-user.model.js +8 -0
- package/esm2015/core/models/dto/abstract.dto.js +3 -0
- package/esm2015/core/models/dto/api-error.dto.js +8 -0
- package/esm2015/core/models/dto/api-sub-error.dto.js +4 -0
- package/esm2015/core/models/dto/chart.dto.js +4 -0
- package/esm2015/core/models/dto/confirmation.dto.js +8 -0
- package/esm2015/core/models/dto/dialog.dto.js +4 -0
- package/esm2015/core/models/dto/filter.dto.js +4 -0
- package/esm2015/core/models/dto/input-listbox.dto.js +7 -0
- package/esm2015/core/models/dto/menu.dto.js +9 -0
- package/esm2015/core/models/dto/message.dto.js +4 -0
- package/esm2015/core/models/dto/page.dto.js +9 -0
- package/esm2015/core/models/dto/sort.dto.js +9 -0
- package/esm2015/core/models/dto/tab.dto.js +10 -0
- package/esm2015/core/models/dto/table-column.dto.js +24 -0
- package/esm2015/core/models/dto/table-group-header.dto.js +10 -0
- package/esm2015/core/models/dto/table-page-event.dto.js +7 -0
- package/esm2015/core/models/dto/token.dto.js +4 -0
- package/esm2015/core/models/enums/criteria-operation.enum.js +15 -0
- package/esm2015/core/models/enums/criteria-sort-direction.enum.js +6 -0
- package/esm2015/core/models/enums/menu-type.enum.js +7 -0
- package/esm2015/core/models/enums/radio-button.enum.js +8 -0
- package/esm2015/core/models/enums/sort-direction.enum.js +6 -0
- package/esm2015/core/models/multitenant.model.js +4 -0
- package/esm2015/core/models/permission.model.js +11 -0
- package/esm2015/core/models/role.model.js +8 -0
- package/esm2015/core/pipes/local-time.pipe.js +21 -0
- package/esm2015/core/services/abstract-crud.service.js +24 -0
- package/esm2015/core/services/abstract-find.service.js +65 -0
- package/esm2015/core/services/abstract.service.js +30 -0
- package/esm2015/core/services/authentication.service.js +100 -0
- package/esm2015/core/services/breakpoint-observer.service.js +42 -0
- package/esm2015/core/services/confirmation.service.js +55 -0
- package/esm2015/core/services/dialog.service.js +41 -0
- package/esm2015/core/services/message.service.js +33 -0
- package/esm2015/core/services/nav.service.js +48 -0
- package/esm2015/core/services/svg-register.service.js +55 -0
- package/esm2015/core/types/local-time.type.js +1 -0
- package/esm2015/core/types/ng-class.type.js +1 -0
- package/esm2015/core/utils/array.util.js +110 -0
- package/esm2015/core/utils/browser.util.js +13 -0
- package/esm2015/core/utils/currency.util.js +21 -0
- package/esm2015/core/utils/date.util.js +257 -0
- package/esm2015/core/utils/document.util.js +153 -0
- package/esm2015/core/utils/email.util.js +25 -0
- package/esm2015/core/utils/number.util.js +28 -0
- package/esm2015/core/utils/object.util.js +199 -0
- package/esm2015/core/utils/password.util.js +38 -0
- package/esm2015/core/utils/phone.util.js +125 -0
- package/esm2015/core/utils/string.util.js +40 -0
- package/esm2015/core/utils/table-column-builder.js +85 -0
- package/esm2015/core/utils/time.util.js +59 -0
- package/esm2015/core/utils/url-params.util.js +12 -0
- package/esm2015/core/utils/uuid.util.js +17 -0
- package/esm2015/core/utils/zindex.util.js +35 -0
- package/esm2015/core.js +89 -0
- package/esm2015/gipi-components.js +105 -0
- package/esm2015/gipisistemas-ng-core.js +21 -0
- package/esm2015/public_api.js +4 -0
- package/esm2015/shared/api/generate-id-component.js +12 -0
- package/esm2015/shared/api/gipi-ng-config.js +76 -0
- package/esm2015/shared/api/overlay-message.js +1 -0
- package/esm2015/shared/api/throttle.js +60 -0
- package/esm2015/shared/api/translation.js +1 -0
- package/esm2015/shared/components/button/button.component.js +110 -0
- package/esm2015/shared/components/card/card.component.js +44 -0
- package/esm2015/shared/components/checkbox/checkbox.component.js +79 -0
- package/esm2015/shared/components/dom/connected-overlay-scroll-handler.js +27 -0
- package/esm2015/shared/components/dom/dom-handler.js +538 -0
- package/esm2015/shared/components/icon/icon.component.js +35 -0
- package/esm2015/shared/components/input/input.component.js +235 -0
- package/esm2015/shared/components/input-currency/input-currency.component.js +115 -0
- package/esm2015/shared/components/input-file/input-file.component.js +161 -0
- package/esm2015/shared/components/loading/loading.component.js +15 -0
- package/esm2015/shared/components/loading-overlay/loading-overlay.component.js +21 -0
- package/esm2015/shared/components/overlay-panel/overlay-panel.component.js +361 -0
- package/esm2015/shared/components/popover/popover-ref.js +25 -0
- package/esm2015/shared/components/popover/popover.component.js +34 -0
- package/esm2015/shared/components/popover/popover.service.js +85 -0
- package/esm2015/shared/components/radio-group-entity/radio-group-entity.component.js +74 -0
- package/esm2015/shared/components/radio-group-enum/radio-group-enum.component.js +126 -0
- package/esm2015/shared/components/select-button/select-button.component.js +181 -0
- package/esm2015/shared/components/select-entity/select-entity.component.js +262 -0
- package/esm2015/shared/components/select-entity-paged/select-entity-paged.component.js +419 -0
- package/esm2015/shared/components/select-entity-paged/shared/default-options.js +35 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.js +69 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.js +59 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-no-entries-found.directive.js +20 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-search/select-search.component.js +547 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-search-clear.directive.js +18 -0
- package/esm2015/shared/components/select-enum/select-enum.component.js +117 -0
- package/esm2015/shared/components/select-month-period/select-month-period.component.js +87 -0
- package/esm2015/shared/components/slide-toggle/slide-toggle.component.js +75 -0
- package/esm2015/shared/components/stepper/stepper.component.js +32 -0
- package/esm2015/shared/components/tab/tab.component.js +57 -0
- package/esm2015/shared/components/tab-group/tab-group.component.js +117 -0
- package/esm2015/shared/components/table/table.component.js +523 -0
- package/esm2015/shared/components/table-scrolled/table-scrolled.component.js +105 -0
- package/esm2015/shared/components/textarea/textarea.component.js +156 -0
- package/esm2015/shared/directives/dynamic-tab.directive.js +18 -0
- package/esm2015/shared/directives/generic-template.directive.js +30 -0
- package/esm2015/shared/directives/input-select-infinite-scroll.directive.js +109 -0
- package/esm2015/shared/directives/lower-case.directive.js +47 -0
- package/esm2015/shared/directives/phone-mask.directive.js +60 -0
- package/esm2015/shared/directives/space-drop.directive.js +47 -0
- package/esm2015/shared/directives/upper-case.directive.js +47 -0
- package/esm2015/shared/gipi-components/abstract-form/abstract-form.component.js +119 -0
- package/esm2015/shared/gipi-components/action-row/action-row.component.js +30 -0
- package/esm2015/shared/gipi-components/badge/badge.component.js +44 -0
- package/esm2015/shared/gipi-components/button/button.component.js +251 -0
- package/esm2015/shared/gipi-components/chips/chips.component.js +149 -0
- package/esm2015/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.js +44 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.js +324 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.js +41 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.js +35 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.js +259 -0
- package/esm2015/shared/gipi-components/datepicker/datepicker/datepicker.component.js +218 -0
- package/esm2015/shared/gipi-components/datepicker/datepicker.module.js +130 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/calendar-body.js +341 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/calendar.js +397 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.js +325 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-input.js +329 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.js +41 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.js +61 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.js +159 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.js +35 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.js +555 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.js +14 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.js +303 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.js +179 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.js +51 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.js +124 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker.js +29 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/month-view.js +365 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.js +305 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.js +116 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.js +10 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.js +294 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.js +19 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.js +81 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/year-view.js +294 -0
- package/esm2015/shared/gipi-components/dom/connected-overlay-scroll-handler.js +27 -0
- package/esm2015/shared/gipi-components/dom/dom-handler.js +645 -0
- package/esm2015/shared/gipi-components/dropdown-menu/dropdown-menu.component.js +185 -0
- package/esm2015/shared/gipi-components/expansion-panel/expansion-panel.component.js +81 -0
- package/esm2015/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.js +240 -0
- package/esm2015/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.js +92 -0
- package/esm2015/shared/gipi-components/footer/footer.component.js +29 -0
- package/esm2015/shared/gipi-components/form-field/form-field.component.js +262 -0
- package/esm2015/shared/gipi-components/helpful-tip/helpful-tip.component.js +62 -0
- package/esm2015/shared/gipi-components/infinite-scroll/infinite-scroll.directive.js +103 -0
- package/esm2015/shared/gipi-components/input-checkbox/input-checkbox.component.js +112 -0
- package/esm2015/shared/gipi-components/input-currency/input-currency.component.js +197 -0
- package/esm2015/shared/gipi-components/input-monthpicker/input-monthpicker.component.js +408 -0
- package/esm2015/shared/gipi-components/input-select/input-select.component.js +655 -0
- package/esm2015/shared/gipi-components/input-select-enum/input-select-enum.component.js +311 -0
- package/esm2015/shared/gipi-components/input-select-listbox/input-select-listbox.component.js +422 -0
- package/esm2015/shared/gipi-components/input-select-paged/input-search/input-search.component.js +374 -0
- package/esm2015/shared/gipi-components/input-select-paged/input-select-paged.component.js +350 -0
- package/esm2015/shared/gipi-components/input-select-radio/input-select-radio.component.js +269 -0
- package/esm2015/shared/gipi-components/layout-grid/col.directive.js +161 -0
- package/esm2015/shared/gipi-components/layout-grid/row.directive.js +124 -0
- package/esm2015/shared/gipi-components/layout-grid/services/breakpoint.service.js +87 -0
- package/esm2015/shared/gipi-components/layout-grid/services/resize.service.js +64 -0
- package/esm2015/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.js +193 -0
- package/esm2015/shared/gipi-components/month-year-picker/mont-year-picker.module.js +47 -0
- package/esm2015/shared/gipi-components/month-year-picker/month-year-picker.component.js +460 -0
- package/esm2015/shared/gipi-components/notification/notification.component.js +104 -0
- package/esm2015/shared/gipi-components/novelties/novelties.component.js +109 -0
- package/esm2015/shared/gipi-components/overlay/overlay.component.js +565 -0
- package/esm2015/shared/gipi-components/overlay/shared/overlay-service.js +21 -0
- package/esm2015/shared/gipi-components/overlay/shared/overlay_options.js +1 -0
- package/esm2015/shared/gipi-components/password-requeriments/password-requeriments.component.js +127 -0
- package/esm2015/shared/gipi-components/popover/popover.component.js +397 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-animations.js +29 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-errors.js +27 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-interfaces.js +1 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-target.js +19 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-trigger.js +514 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-types.js +1 -0
- package/esm2015/shared/gipi-components/radio-group/radio-group.component.js +143 -0
- package/esm2015/shared/gipi-components/range-page/range-page.component.js +254 -0
- package/esm2015/shared/gipi-components/range-slider/range-slider.component.js +345 -0
- package/esm2015/shared/gipi-components/select/select.component.js +211 -0
- package/esm2015/shared/gipi-components/select-button/select-button.component.js +187 -0
- package/esm2015/shared/gipi-components/sidebar/container/container.component.js +83 -0
- package/esm2015/shared/gipi-components/sidebar/sidenav/sidenav.component.js +240 -0
- package/esm2015/shared/gipi-components/stepper/stepper.component.js +37 -0
- package/esm2015/shared/gipi-components/table/components/table-body/table-body.component.js +203 -0
- package/esm2015/shared/gipi-components/table/components/table-footer/table-footer.component.js +30 -0
- package/esm2015/shared/gipi-components/table/components/table-header/table-header.component.js +152 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.js +122 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.js +225 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.js +1 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination.service.js +105 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/table-pagination.component.js +102 -0
- package/esm2015/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.js +30 -0
- package/esm2015/shared/gipi-components/table/models/pipe-transform.model.js +1 -0
- package/esm2015/shared/gipi-components/table/models/sort.model.js +19 -0
- package/esm2015/shared/gipi-components/table/models/sorted-column.model.js +2 -0
- package/esm2015/shared/gipi-components/table/models/table-column-builder.model.js +104 -0
- package/esm2015/shared/gipi-components/table/models/table-column.model.js +162 -0
- package/esm2015/shared/gipi-components/table/table.component.js +159 -0
- package/esm2015/shared/gipi-components/table/types/sort-direction.type.js +1 -0
- package/esm2015/shared/gipi-components/table/types/sort.type.js +1 -0
- package/esm2015/shared/gipi-components/template/template.directive.js +33 -0
- package/esm2015/shared/gipi-components/toolbar/toolbar.component.js +53 -0
- package/esm2015/shared/gipi-components/top-nav/top-nav.component.js +38 -0
- package/esm2015/shared/gipi-components/user-profile/user-profile.component.js +109 -0
- package/esm2015/shared/material.module.js +102 -0
- package/esm2015/shared/shared.module.js +339 -0
- package/esm2015/shared.js +36 -0
- package/esm5/core/app-messages.js +1 -0
- package/esm5/core/app.messages.js +12 -0
- package/esm5/core/components/abstract-crud.component.js +108 -0
- package/esm5/core/components/abstract-find.component.js +201 -0
- package/esm5/core/components/abstract.component.js +112 -0
- package/esm5/core/components/alert/alert.component.js +25 -0
- package/esm5/core/core.module.js +107 -0
- package/esm5/core/custom-breakpoints.js +87 -0
- package/esm5/core/enums/local-time.enum.js +6 -0
- package/esm5/core/extensions/string.extension.js +37 -0
- package/esm5/core/gipi-components/components/abstract-crud.component.js +122 -0
- package/esm5/core/gipi-components/components/abstract-find.component.js +507 -0
- package/esm5/core/gipi-components/components/abstract.component.js +152 -0
- package/esm5/core/gipi-components/decorators/autowired.decorator.js +52 -0
- package/esm5/core/gipi-components/enums/sort-direction.enum.js +6 -0
- package/esm5/core/gipi-components/interface/abstract-crud.interface.js +1 -0
- package/esm5/core/gipi-components/interface/abstract-find.interface.js +1 -0
- package/esm5/core/gipi-components/interface/abstract.interface.js +1 -0
- package/esm5/core/gipi-components/interface/base-permission.interface.js +1 -0
- package/esm5/core/gipi-components/models/abstract-filter.model.js +7 -0
- package/esm5/core/gipi-components/models/abstract.model.js +7 -0
- package/esm5/core/gipi-components/models/applied-filter.model.js +29 -0
- package/esm5/core/gipi-components/models/dto/abstract.dto.js +7 -0
- package/esm5/core/gipi-components/models/page-event.model.js +49 -0
- package/esm5/core/gipi-components/models/page.model.js +9 -0
- package/esm5/core/gipi-components/models/sort.model.js +9 -0
- package/esm5/core/gipi-components/services/abstract-crud.service.js +114 -0
- package/esm5/core/gipi-components/services/abstract.service.js +49 -0
- package/esm5/core/gipi-components/services/base.service.js +143 -0
- package/esm5/core/gipi-components/services/file.service.js +53 -0
- package/esm5/core/gipi-components/services/session-storage.service.js +45 -0
- package/esm5/core/gipi-components/types/generic.type.js +1 -0
- package/esm5/core/gipi-components/types/uuid.type.js +1 -0
- package/esm5/core/guards/auth.guard.js +50 -0
- package/esm5/core/guards/permission.guard.js +74 -0
- package/esm5/core/guards/public.guard.js +47 -0
- package/esm5/core/interceptors/auth.interceptor.js +29 -0
- package/esm5/core/interceptors/error.interceptor.js +129 -0
- package/esm5/core/models/abstract.model.js +7 -0
- package/esm5/core/models/archive.model.js +7 -0
- package/esm5/core/models/authority.model.js +7 -0
- package/esm5/core/models/base-user.model.js +13 -0
- package/esm5/core/models/dto/abstract.dto.js +7 -0
- package/esm5/core/models/dto/api-error.dto.js +13 -0
- package/esm5/core/models/dto/api-sub-error.dto.js +11 -0
- package/esm5/core/models/dto/chart.dto.js +11 -0
- package/esm5/core/models/dto/confirmation.dto.js +13 -0
- package/esm5/core/models/dto/dialog.dto.js +11 -0
- package/esm5/core/models/dto/filter.dto.js +11 -0
- package/esm5/core/models/dto/input-listbox.dto.js +11 -0
- package/esm5/core/models/dto/menu.dto.js +14 -0
- package/esm5/core/models/dto/message.dto.js +11 -0
- package/esm5/core/models/dto/page.dto.js +14 -0
- package/esm5/core/models/dto/sort.dto.js +14 -0
- package/esm5/core/models/dto/tab.dto.js +15 -0
- package/esm5/core/models/dto/table-column.dto.js +29 -0
- package/esm5/core/models/dto/table-group-header.dto.js +15 -0
- package/esm5/core/models/dto/table-page-event.dto.js +11 -0
- package/esm5/core/models/dto/token.dto.js +11 -0
- package/esm5/core/models/enums/criteria-operation.enum.js +15 -0
- package/esm5/core/models/enums/criteria-sort-direction.enum.js +6 -0
- package/esm5/core/models/enums/menu-type.enum.js +7 -0
- package/esm5/core/models/enums/radio-button.enum.js +8 -0
- package/esm5/core/models/enums/sort-direction.enum.js +6 -0
- package/esm5/core/models/multitenant.model.js +11 -0
- package/esm5/core/models/permission.model.js +16 -0
- package/esm5/core/models/role.model.js +13 -0
- package/esm5/core/pipes/local-time.pipe.js +26 -0
- package/esm5/core/services/abstract-crud.service.js +30 -0
- package/esm5/core/services/abstract-find.service.js +71 -0
- package/esm5/core/services/abstract.service.js +32 -0
- package/esm5/core/services/authentication.service.js +121 -0
- package/esm5/core/services/breakpoint-observer.service.js +52 -0
- package/esm5/core/services/confirmation.service.js +66 -0
- package/esm5/core/services/dialog.service.js +44 -0
- package/esm5/core/services/message.service.js +36 -0
- package/esm5/core/services/nav.service.js +51 -0
- package/esm5/core/services/svg-register.service.js +67 -0
- package/esm5/core/types/local-time.type.js +1 -0
- package/esm5/core/types/ng-class.type.js +1 -0
- package/esm5/core/utils/array.util.js +120 -0
- package/esm5/core/utils/browser.util.js +17 -0
- package/esm5/core/utils/currency.util.js +26 -0
- package/esm5/core/utils/date.util.js +269 -0
- package/esm5/core/utils/document.util.js +157 -0
- package/esm5/core/utils/email.util.js +29 -0
- package/esm5/core/utils/number.util.js +32 -0
- package/esm5/core/utils/object.util.js +204 -0
- package/esm5/core/utils/password.util.js +42 -0
- package/esm5/core/utils/phone.util.js +135 -0
- package/esm5/core/utils/string.util.js +44 -0
- package/esm5/core/utils/table-column-builder.js +87 -0
- package/esm5/core/utils/time.util.js +65 -0
- package/esm5/core/utils/url-params.util.js +16 -0
- package/esm5/core/utils/uuid.util.js +21 -0
- package/esm5/core/utils/zindex.util.js +35 -0
- package/esm5/core.js +89 -0
- package/esm5/gipi-components.js +105 -0
- package/esm5/gipisistemas-ng-core.js +21 -0
- package/esm5/public_api.js +4 -0
- package/esm5/shared/api/generate-id-component.js +16 -0
- package/esm5/shared/api/gipi-ng-config.js +77 -0
- package/esm5/shared/api/overlay-message.js +1 -0
- package/esm5/shared/api/throttle.js +60 -0
- package/esm5/shared/api/translation.js +1 -0
- package/esm5/shared/components/button/button.component.js +111 -0
- package/esm5/shared/components/card/card.component.js +45 -0
- package/esm5/shared/components/checkbox/checkbox.component.js +85 -0
- package/esm5/shared/components/dom/connected-overlay-scroll-handler.js +30 -0
- package/esm5/shared/components/dom/dom-handler.js +573 -0
- package/esm5/shared/components/icon/icon.component.js +38 -0
- package/esm5/shared/components/input/input.component.js +242 -0
- package/esm5/shared/components/input-currency/input-currency.component.js +121 -0
- package/esm5/shared/components/input-file/input-file.component.js +165 -0
- package/esm5/shared/components/loading/loading.component.js +18 -0
- package/esm5/shared/components/loading-overlay/loading-overlay.component.js +23 -0
- package/esm5/shared/components/overlay-panel/overlay-panel.component.js +366 -0
- package/esm5/shared/components/popover/popover-ref.js +28 -0
- package/esm5/shared/components/popover/popover.component.js +35 -0
- package/esm5/shared/components/popover/popover.service.js +88 -0
- package/esm5/shared/components/radio-group-entity/radio-group-entity.component.js +80 -0
- package/esm5/shared/components/radio-group-enum/radio-group-enum.component.js +138 -0
- package/esm5/shared/components/select-button/select-button.component.js +195 -0
- package/esm5/shared/components/select-entity/select-entity.component.js +269 -0
- package/esm5/shared/components/select-entity-paged/select-entity-paged.component.js +453 -0
- package/esm5/shared/components/select-entity-paged/shared/default-options.js +35 -0
- package/esm5/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.js +72 -0
- package/esm5/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.js +62 -0
- package/esm5/shared/components/select-entity-paged/shared/select-no-entries-found.directive.js +23 -0
- package/esm5/shared/components/select-entity-paged/shared/select-search/select-search.component.js +590 -0
- package/esm5/shared/components/select-entity-paged/shared/select-search-clear.directive.js +21 -0
- package/esm5/shared/components/select-enum/select-enum.component.js +124 -0
- package/esm5/shared/components/select-month-period/select-month-period.component.js +91 -0
- package/esm5/shared/components/slide-toggle/slide-toggle.component.js +81 -0
- package/esm5/shared/components/stepper/stepper.component.js +36 -0
- package/esm5/shared/components/tab/tab.component.js +58 -0
- package/esm5/shared/components/tab-group/tab-group.component.js +125 -0
- package/esm5/shared/components/table/table.component.js +538 -0
- package/esm5/shared/components/table-scrolled/table-scrolled.component.js +107 -0
- package/esm5/shared/components/textarea/textarea.component.js +174 -0
- package/esm5/shared/directives/dynamic-tab.directive.js +19 -0
- package/esm5/shared/directives/generic-template.directive.js +31 -0
- package/esm5/shared/directives/input-select-infinite-scroll.directive.js +113 -0
- package/esm5/shared/directives/lower-case.directive.js +48 -0
- package/esm5/shared/directives/phone-mask.directive.js +61 -0
- package/esm5/shared/directives/space-drop.directive.js +48 -0
- package/esm5/shared/directives/upper-case.directive.js +48 -0
- package/esm5/shared/gipi-components/abstract-form/abstract-form.component.js +141 -0
- package/esm5/shared/gipi-components/action-row/action-row.component.js +33 -0
- package/esm5/shared/gipi-components/badge/badge.component.js +46 -0
- package/esm5/shared/gipi-components/button/button.component.js +257 -0
- package/esm5/shared/gipi-components/chips/chips.component.js +159 -0
- package/esm5/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.js +46 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.js +378 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.js +42 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.js +40 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.js +291 -0
- package/esm5/shared/gipi-components/datepicker/datepicker/datepicker.component.js +252 -0
- package/esm5/shared/gipi-components/datepicker/datepicker.module.js +133 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/calendar-body.js +349 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/calendar.js +441 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.js +339 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-input.js +376 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.js +46 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.js +62 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.js +167 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.js +35 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.js +586 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.js +14 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.js +327 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.js +199 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.js +52 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.js +133 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker.js +34 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/month-view.js +384 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.js +324 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.js +118 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.js +10 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.js +300 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.js +19 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.js +82 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/year-view.js +313 -0
- package/esm5/shared/gipi-components/dom/connected-overlay-scroll-handler.js +30 -0
- package/esm5/shared/gipi-components/dom/dom-handler.js +681 -0
- package/esm5/shared/gipi-components/dropdown-menu/dropdown-menu.component.js +191 -0
- package/esm5/shared/gipi-components/expansion-panel/expansion-panel.component.js +83 -0
- package/esm5/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.js +255 -0
- package/esm5/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.js +93 -0
- package/esm5/shared/gipi-components/footer/footer.component.js +32 -0
- package/esm5/shared/gipi-components/form-field/form-field.component.js +276 -0
- package/esm5/shared/gipi-components/helpful-tip/helpful-tip.component.js +68 -0
- package/esm5/shared/gipi-components/infinite-scroll/infinite-scroll.directive.js +106 -0
- package/esm5/shared/gipi-components/input-checkbox/input-checkbox.component.js +118 -0
- package/esm5/shared/gipi-components/input-currency/input-currency.component.js +207 -0
- package/esm5/shared/gipi-components/input-monthpicker/input-monthpicker.component.js +426 -0
- package/esm5/shared/gipi-components/input-select/input-select.component.js +698 -0
- package/esm5/shared/gipi-components/input-select-enum/input-select-enum.component.js +351 -0
- package/esm5/shared/gipi-components/input-select-listbox/input-select-listbox.component.js +437 -0
- package/esm5/shared/gipi-components/input-select-paged/input-search/input-search.component.js +397 -0
- package/esm5/shared/gipi-components/input-select-paged/input-select-paged.component.js +384 -0
- package/esm5/shared/gipi-components/input-select-radio/input-select-radio.component.js +286 -0
- package/esm5/shared/gipi-components/layout-grid/col.directive.js +164 -0
- package/esm5/shared/gipi-components/layout-grid/row.directive.js +127 -0
- package/esm5/shared/gipi-components/layout-grid/services/breakpoint.service.js +90 -0
- package/esm5/shared/gipi-components/layout-grid/services/resize.service.js +68 -0
- package/esm5/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.js +200 -0
- package/esm5/shared/gipi-components/month-year-picker/mont-year-picker.module.js +50 -0
- package/esm5/shared/gipi-components/month-year-picker/month-year-picker.component.js +505 -0
- package/esm5/shared/gipi-components/notification/notification.component.js +106 -0
- package/esm5/shared/gipi-components/novelties/novelties.component.js +111 -0
- package/esm5/shared/gipi-components/overlay/overlay.component.js +670 -0
- package/esm5/shared/gipi-components/overlay/shared/overlay-service.js +22 -0
- package/esm5/shared/gipi-components/overlay/shared/overlay_options.js +1 -0
- package/esm5/shared/gipi-components/password-requeriments/password-requeriments.component.js +157 -0
- package/esm5/shared/gipi-components/popover/popover.component.js +473 -0
- package/esm5/shared/gipi-components/popover/shared/popover-animations.js +29 -0
- package/esm5/shared/gipi-components/popover/shared/popover-errors.js +21 -0
- package/esm5/shared/gipi-components/popover/shared/popover-interfaces.js +1 -0
- package/esm5/shared/gipi-components/popover/shared/popover-target.js +20 -0
- package/esm5/shared/gipi-components/popover/shared/popover-trigger.js +529 -0
- package/esm5/shared/gipi-components/popover/shared/popover-types.js +1 -0
- package/esm5/shared/gipi-components/radio-group/radio-group.component.js +155 -0
- package/esm5/shared/gipi-components/range-page/range-page.component.js +283 -0
- package/esm5/shared/gipi-components/range-slider/range-slider.component.js +364 -0
- package/esm5/shared/gipi-components/select/select.component.js +222 -0
- package/esm5/shared/gipi-components/select-button/select-button.component.js +206 -0
- package/esm5/shared/gipi-components/sidebar/container/container.component.js +96 -0
- package/esm5/shared/gipi-components/sidebar/sidenav/sidenav.component.js +267 -0
- package/esm5/shared/gipi-components/stepper/stepper.component.js +43 -0
- package/esm5/shared/gipi-components/table/components/table-body/table-body.component.js +209 -0
- package/esm5/shared/gipi-components/table/components/table-footer/table-footer.component.js +33 -0
- package/esm5/shared/gipi-components/table/components/table-header/table-header.component.js +155 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.js +123 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.js +228 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.js +1 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination.service.js +108 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/table-pagination.component.js +116 -0
- package/esm5/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.js +33 -0
- package/esm5/shared/gipi-components/table/models/pipe-transform.model.js +1 -0
- package/esm5/shared/gipi-components/table/models/sort.model.js +29 -0
- package/esm5/shared/gipi-components/table/models/sorted-column.model.js +2 -0
- package/esm5/shared/gipi-components/table/models/table-column-builder.model.js +106 -0
- package/esm5/shared/gipi-components/table/models/table-column.model.js +252 -0
- package/esm5/shared/gipi-components/table/table.component.js +161 -0
- package/esm5/shared/gipi-components/table/types/sort-direction.type.js +1 -0
- package/esm5/shared/gipi-components/table/types/sort.type.js +1 -0
- package/esm5/shared/gipi-components/template/template.directive.js +34 -0
- package/esm5/shared/gipi-components/toolbar/toolbar.component.js +56 -0
- package/esm5/shared/gipi-components/top-nav/top-nav.component.js +40 -0
- package/esm5/shared/gipi-components/user-profile/user-profile.component.js +115 -0
- package/esm5/shared/material.module.js +101 -0
- package/esm5/shared/shared.module.js +340 -0
- package/esm5/shared.js +36 -0
- package/fesm2015/gipisistemas-ng-core.js +25879 -0
- package/fesm2015/gipisistemas-ng-core.js.map +1 -0
- package/fesm5/gipisistemas-ng-core.js +27905 -0
- package/fesm5/gipisistemas-ng-core.js.map +1 -0
- package/gipi-components.d.ts +97 -0
- package/gipisistemas-ng-core.d.ts +20 -0
- package/gipisistemas-ng-core.metadata.json +1 -0
- package/package.json +31 -83
- package/public_api.d.ts +3 -0
- package/shared/api/generate-id-component.d.ts +3 -0
- package/shared/api/gipi-ng-config.d.ts +18 -0
- package/shared/api/overlay-message.d.ts +14 -0
- package/shared/api/throttle.d.ts +17 -0
- package/shared/api/translation.d.ts +45 -0
- package/shared/components/button/button.component.d.ts +26 -0
- package/shared/components/card/card.component.d.ts +10 -0
- package/shared/components/checkbox/checkbox.component.d.ts +20 -0
- package/shared/components/dom/connected-overlay-scroll-handler.d.ts +9 -0
- package/shared/components/dom/dom-handler.d.ts +74 -0
- package/shared/components/icon/icon.component.d.ts +9 -0
- package/shared/components/input/input.component.d.ts +52 -0
- package/shared/components/input-currency/input-currency.component.d.ts +29 -0
- package/shared/components/input-file/input-file.component.d.ts +28 -0
- package/shared/components/loading/loading.component.d.ts +4 -0
- package/shared/components/loading-overlay/loading-overlay.component.d.ts +6 -0
- package/shared/components/overlay-panel/overlay-panel.component.d.ts +67 -0
- package/shared/components/popover/popover-ref.d.ts +17 -0
- package/shared/components/popover/popover.component.d.ts +10 -0
- package/shared/components/popover/popover.service.d.ts +23 -0
- package/shared/components/radio-group-entity/radio-group-entity.component.d.ts +19 -0
- package/shared/components/radio-group-enum/radio-group-enum.component.d.ts +30 -0
- package/shared/components/select-button/select-button.component.d.ts +35 -0
- package/shared/components/select-entity/select-entity.component.d.ts +52 -0
- package/shared/components/select-entity-paged/select-entity-paged.component.d.ts +78 -0
- package/shared/components/select-entity-paged/shared/default-options.d.ts +25 -0
- package/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.d.ts +18 -0
- package/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.d.ts +16 -0
- package/shared/components/select-entity-paged/shared/select-no-entries-found.directive.d.ts +11 -0
- package/shared/components/select-entity-paged/shared/select-search/select-search.component.d.ts +119 -0
- package/shared/components/select-entity-paged/shared/select-search-clear.directive.d.ts +9 -0
- package/shared/components/select-enum/select-enum.component.d.ts +29 -0
- package/shared/components/select-month-period/select-month-period.component.d.ts +20 -0
- package/shared/components/slide-toggle/slide-toggle.component.d.ts +19 -0
- package/shared/components/stepper/stepper.component.d.ts +7 -0
- package/shared/components/tab/tab.component.d.ts +14 -0
- package/shared/components/tab-group/tab-group.component.d.ts +22 -0
- package/shared/components/table/table.component.d.ts +86 -0
- package/shared/components/table-scrolled/table-scrolled.component.d.ts +31 -0
- package/shared/components/textarea/textarea.component.d.ts +35 -0
- package/shared/directives/dynamic-tab.directive.d.ts +5 -0
- package/shared/directives/generic-template.directive.d.ts +8 -0
- package/shared/directives/input-select-infinite-scroll.directive.d.ts +35 -0
- package/shared/directives/lower-case.directive.d.ts +9 -0
- package/shared/directives/phone-mask.directive.d.ts +8 -0
- package/shared/directives/space-drop.directive.d.ts +9 -0
- package/shared/directives/upper-case.directive.d.ts +9 -0
- package/shared/gipi-components/abstract-form/abstract-form.component.d.ts +21 -0
- package/shared/gipi-components/action-row/action-row.component.d.ts +5 -0
- package/shared/gipi-components/badge/badge.component.d.ts +8 -0
- package/shared/gipi-components/button/button.component.d.ts +56 -0
- package/shared/gipi-components/chips/chips.component.d.ts +37 -0
- package/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.d.ts +11 -0
- package/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.d.ts +71 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.d.ts +11 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.d.ts +6 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.d.ts +40 -0
- package/shared/gipi-components/datepicker/datepicker/datepicker.component.d.ts +49 -0
- package/shared/gipi-components/datepicker/datepicker.module.d.ts +2 -0
- package/shared/gipi-components/datepicker/mat-datepicker/calendar-body.d.ts +143 -0
- package/shared/gipi-components/datepicker/mat-datepicker/calendar.d.ts +152 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.d.ts +102 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-input.d.ts +124 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.d.ts +21 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.d.ts +45 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.d.ts +106 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.d.ts +16 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.d.ts +209 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.d.ts +9 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.d.ts +136 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.d.ts +68 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.d.ts +38 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.d.ts +39 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker.d.ts +11 -0
- package/shared/gipi-components/datepicker/mat-datepicker/month-view.d.ts +120 -0
- package/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.d.ts +85 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.d.ts +225 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.d.ts +20 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.d.ts +76 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.d.ts +9 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.d.ts +33 -0
- package/shared/gipi-components/datepicker/mat-datepicker/year-view.d.ts +97 -0
- package/shared/gipi-components/dom/connected-overlay-scroll-handler.d.ts +9 -0
- package/shared/gipi-components/dom/dom-handler.d.ts +85 -0
- package/shared/gipi-components/dropdown-menu/dropdown-menu.component.d.ts +36 -0
- package/shared/gipi-components/expansion-panel/expansion-panel.component.d.ts +16 -0
- package/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.d.ts +43 -0
- package/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.d.ts +13 -0
- package/shared/gipi-components/footer/footer.component.d.ts +5 -0
- package/shared/gipi-components/form-field/form-field.component.d.ts +61 -0
- package/shared/gipi-components/helpful-tip/helpful-tip.component.d.ts +13 -0
- package/shared/gipi-components/infinite-scroll/infinite-scroll.directive.d.ts +27 -0
- package/shared/gipi-components/input-checkbox/input-checkbox.component.d.ts +28 -0
- package/shared/gipi-components/input-currency/input-currency.component.d.ts +48 -0
- package/shared/gipi-components/input-monthpicker/input-monthpicker.component.d.ts +89 -0
- package/shared/gipi-components/input-select/input-select.component.d.ts +120 -0
- package/shared/gipi-components/input-select-enum/input-select-enum.component.d.ts +65 -0
- package/shared/gipi-components/input-select-listbox/input-select-listbox.component.d.ts +85 -0
- package/shared/gipi-components/input-select-paged/input-search/input-search.component.d.ts +77 -0
- package/shared/gipi-components/input-select-paged/input-select-paged.component.d.ts +66 -0
- package/shared/gipi-components/input-select-radio/input-select-radio.component.d.ts +53 -0
- package/shared/gipi-components/layout-grid/col.directive.d.ts +38 -0
- package/shared/gipi-components/layout-grid/row.directive.d.ts +28 -0
- package/shared/gipi-components/layout-grid/services/breakpoint.service.d.ts +30 -0
- package/shared/gipi-components/layout-grid/services/resize.service.d.ts +17 -0
- package/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.d.ts +37 -0
- package/shared/gipi-components/month-year-picker/mont-year-picker.module.d.ts +2 -0
- package/shared/gipi-components/month-year-picker/month-year-picker.component.d.ts +104 -0
- package/shared/gipi-components/notification/notification.component.d.ts +21 -0
- package/shared/gipi-components/novelties/novelties.component.d.ts +22 -0
- package/shared/gipi-components/overlay/overlay.component.d.ts +113 -0
- package/shared/gipi-components/overlay/shared/overlay-service.d.ts +6 -0
- package/shared/gipi-components/overlay/shared/overlay_options.d.ts +50 -0
- package/shared/gipi-components/password-requeriments/password-requeriments.component.d.ts +27 -0
- package/shared/gipi-components/popover/popover.component.d.ts +133 -0
- package/shared/gipi-components/popover/shared/popover-animations.d.ts +13 -0
- package/shared/gipi-components/popover/shared/popover-errors.d.ts +14 -0
- package/shared/gipi-components/popover/shared/popover-interfaces.d.ts +43 -0
- package/shared/gipi-components/popover/shared/popover-target.d.ts +5 -0
- package/shared/gipi-components/popover/shared/popover-trigger.d.ts +140 -0
- package/shared/gipi-components/popover/shared/popover-types.d.ts +4 -0
- package/shared/gipi-components/radio-group/radio-group.component.d.ts +33 -0
- package/shared/gipi-components/range-page/range-page.component.d.ts +55 -0
- package/shared/gipi-components/range-slider/range-slider.component.d.ts +57 -0
- package/shared/gipi-components/select/select.component.d.ts +45 -0
- package/shared/gipi-components/select-button/select-button.component.d.ts +39 -0
- package/shared/gipi-components/sidebar/container/container.component.d.ts +15 -0
- package/shared/gipi-components/sidebar/sidenav/sidenav.component.d.ts +40 -0
- package/shared/gipi-components/stepper/stepper.component.d.ts +8 -0
- package/shared/gipi-components/table/components/table-body/table-body.component.d.ts +36 -0
- package/shared/gipi-components/table/components/table-footer/table-footer.component.d.ts +5 -0
- package/shared/gipi-components/table/components/table-header/table-header.component.d.ts +28 -0
- package/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.d.ts +40 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.d.ts +81 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.d.ts +24 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination.service.d.ts +45 -0
- package/shared/gipi-components/table/components/table-pagination/table-pagination.component.d.ts +21 -0
- package/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.d.ts +5 -0
- package/shared/gipi-components/table/models/pipe-transform.model.d.ts +3 -0
- package/shared/gipi-components/table/models/sort.model.d.ts +10 -0
- package/shared/gipi-components/table/models/sorted-column.model.d.ts +6 -0
- package/shared/gipi-components/table/models/table-column-builder.model.d.ts +52 -0
- package/shared/gipi-components/table/models/table-column.model.d.ts +74 -0
- package/shared/gipi-components/table/table.component.d.ts +37 -0
- package/shared/gipi-components/table/types/sort-direction.type.d.ts +1 -0
- package/shared/gipi-components/table/types/sort.type.d.ts +1 -0
- package/shared/gipi-components/template/template.directive.d.ts +8 -0
- package/shared/gipi-components/toolbar/toolbar.component.d.ts +11 -0
- package/shared/gipi-components/top-nav/top-nav.component.d.ts +8 -0
- package/shared/gipi-components/user-profile/user-profile.component.d.ts +24 -0
- package/shared/material.module.d.ts +2 -0
- package/shared/shared.module.d.ts +6 -0
- package/shared.d.ts +35 -0
- package/README.md +0 -38
- package/_ITSS-NG-CI-CD.yml +0 -53
- package/_ITSS-NG-CI-PR.yml +0 -53
- package/angular-cli.json +0 -42
- package/azure-pipelines.yml +0 -35
- package/projects/itss-ng/ng-package.json +0 -7
- package/projects/itss-ng/package.json +0 -25
package/package.json
CHANGED
@@ -1,85 +1,33 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
"@angular/material": "~8.1.3",
|
34
|
-
"@angular/material-moment-adapter": "^8.2.3",
|
35
|
-
"@angular/platform-browser": "~8.2.3",
|
36
|
-
"@angular/platform-browser-dynamic": "~8.2.3",
|
37
|
-
"@angular/router": "~8.2.3",
|
38
|
-
"@brazilian-utils/brazilian-utils": "^1.0.0-rc.12",
|
39
|
-
"@material-extended/mde": "^2.3.1",
|
40
|
-
"@ngx-pwa/local-storage": "^8.2.4",
|
41
|
-
"angular-mentions": "1.1.6",
|
42
|
-
"libphonenumber-js": "^1.11.4",
|
43
|
-
"lodash": "^4.17.15",
|
44
|
-
"moment": "^2.27.0",
|
45
|
-
"ngx-currency": "^2.0.0",
|
46
|
-
"ngx-infinite-scroll": "^9.0.0",
|
47
|
-
"ngx-mask": "^8.1.6",
|
48
|
-
"ngx-material-timepicker": "^5.5.3",
|
49
|
-
"node-sass": "^4.13.0",
|
50
|
-
"package": "^1.0.1",
|
51
|
-
"pkg": "^4.4.9",
|
52
|
-
"rxjs": "~6.4.0",
|
53
|
-
"tslib": "^1.10.0",
|
54
|
-
"zone.js": "~0.9.1"
|
55
|
-
},
|
56
|
-
"publishConfig": {
|
57
|
-
"access": "public"
|
58
|
-
},
|
59
|
-
"devDependencies": {
|
60
|
-
"@angular-devkit/architect": "~0.803.26",
|
61
|
-
"@angular-devkit/build-angular": "~0.803.1",
|
62
|
-
"@angular-devkit/build-ng-packagr": "~0.803.2",
|
63
|
-
"@angular/cli": "~8.3.1",
|
64
|
-
"@angular/compiler-cli": "~8.2.3",
|
65
|
-
"@angular/language-service": "~8.2.3",
|
66
|
-
"@types/jasmine": "~3.3.8",
|
67
|
-
"@types/jasminewd2": "~2.0.3",
|
68
|
-
"@types/node": "~8.9.4",
|
69
|
-
"codelyzer": "^5.0.0",
|
70
|
-
"jasmine-core": "~3.4.0",
|
71
|
-
"jasmine-spec-reporter": "~4.2.1",
|
72
|
-
"karma": "~4.1.0",
|
73
|
-
"karma-chrome-launcher": "~2.2.0",
|
74
|
-
"karma-coverage-istanbul-reporter": "~2.0.1",
|
75
|
-
"karma-jasmine": "~2.0.1",
|
76
|
-
"karma-jasmine-html-reporter": "^1.4.0",
|
77
|
-
"ng-packagr": "^5.4.0",
|
78
|
-
"protractor": "~5.4.0",
|
79
|
-
"run-script-os": "^1.0.7",
|
80
|
-
"ts-node": "~7.0.0",
|
81
|
-
"tsickle": "^0.37.0",
|
82
|
-
"tslint": "~5.15.0",
|
83
|
-
"typescript": "^3.9.7"
|
84
|
-
}
|
2
|
+
"name": "@gipisistemas/ng-core",
|
3
|
+
"version": "1.1.1",
|
4
|
+
"peerDependencies": {
|
5
|
+
"@angular/common": "~8.2.3",
|
6
|
+
"@angular/core": "~8.2.3",
|
7
|
+
"@angular/cdk": "~8.2.1",
|
8
|
+
"@angular/cdk-experimental": "~8.1.3",
|
9
|
+
"@angular/material": "~8.1.3",
|
10
|
+
"@angular/flex-layout": "~8.0.0-beta.27",
|
11
|
+
"@material-extended/mde": "^2.3.1",
|
12
|
+
"ngx-currency": "^2.3.3",
|
13
|
+
"ngx-mask": "^9.1.2",
|
14
|
+
"lodash": "^4.17.15",
|
15
|
+
"ngx-infinite-scroll": "^9.0.0",
|
16
|
+
"moment": "^2.27.0",
|
17
|
+
"@brazilian-utils/brazilian-utils": "^1.0.0-rc.12"
|
18
|
+
},
|
19
|
+
"private": false,
|
20
|
+
"main": "bundles/gipisistemas-ng-core.umd.js",
|
21
|
+
"module": "fesm5/gipisistemas-ng-core.js",
|
22
|
+
"es2015": "fesm2015/gipisistemas-ng-core.js",
|
23
|
+
"esm5": "esm5/gipisistemas-ng-core.js",
|
24
|
+
"esm2015": "esm2015/gipisistemas-ng-core.js",
|
25
|
+
"fesm5": "fesm5/gipisistemas-ng-core.js",
|
26
|
+
"fesm2015": "fesm2015/gipisistemas-ng-core.js",
|
27
|
+
"typings": "gipisistemas-ng-core.d.ts",
|
28
|
+
"metadata": "gipisistemas-ng-core.metadata.json",
|
29
|
+
"sideEffects": false,
|
30
|
+
"dependencies": {
|
31
|
+
"tslib": "^1.9.0"
|
32
|
+
}
|
85
33
|
}
|
package/public_api.d.ts
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { OverlayOptions } from '../gipi-components/overlay/shared/overlay_options';
|
3
|
+
import { Translation } from './translation';
|
4
|
+
export declare class GIPINgConfig {
|
5
|
+
ripple: boolean;
|
6
|
+
overlayOptions: OverlayOptions;
|
7
|
+
translation: Translation;
|
8
|
+
zIndex: {
|
9
|
+
modal: number;
|
10
|
+
overlay: number;
|
11
|
+
menu: number;
|
12
|
+
tooltip: number;
|
13
|
+
};
|
14
|
+
private translationSource;
|
15
|
+
translationObserver: Observable<any>;
|
16
|
+
getTranslation(key: string): any;
|
17
|
+
setTranslation(value: Translation): void;
|
18
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
export interface OverlayMessage {
|
2
|
+
severity?: string;
|
3
|
+
summary?: string;
|
4
|
+
detail?: string;
|
5
|
+
id?: any;
|
6
|
+
key?: string;
|
7
|
+
life?: number;
|
8
|
+
sticky?: boolean;
|
9
|
+
closable?: boolean;
|
10
|
+
data?: any;
|
11
|
+
icon?: string;
|
12
|
+
contentStyleClass?: string;
|
13
|
+
styleClass?: string;
|
14
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
/**
|
2
|
+
* Throttle a function
|
3
|
+
*/
|
4
|
+
export declare function throttle(func: any, wait: number, options?: any): (this: any) => any;
|
5
|
+
/**
|
6
|
+
* Throttle decorator
|
7
|
+
*
|
8
|
+
* class MyClass {
|
9
|
+
* throttleable(10)
|
10
|
+
* myFn() { ... }
|
11
|
+
* }
|
12
|
+
*/
|
13
|
+
export declare function throttleable(duration: number, options?: any): (target: any, key: PropertyKey, descriptor: PropertyDescriptor) => {
|
14
|
+
configurable: boolean;
|
15
|
+
enumerable: boolean;
|
16
|
+
get: () => any;
|
17
|
+
};
|
@@ -0,0 +1,45 @@
|
|
1
|
+
export interface Translation {
|
2
|
+
startsWith?: string;
|
3
|
+
contains?: string;
|
4
|
+
notContains?: string;
|
5
|
+
endsWith?: string;
|
6
|
+
equals?: string;
|
7
|
+
notEquals?: string;
|
8
|
+
noFilter?: string;
|
9
|
+
lt?: string;
|
10
|
+
lte?: string;
|
11
|
+
gt?: string;
|
12
|
+
gte?: string;
|
13
|
+
is?: string;
|
14
|
+
isNot?: string;
|
15
|
+
before?: string;
|
16
|
+
after?: string;
|
17
|
+
dateIs?: string;
|
18
|
+
dateIsNot?: string;
|
19
|
+
dateBefore?: string;
|
20
|
+
dateAfter?: string;
|
21
|
+
clear?: string;
|
22
|
+
apply?: string;
|
23
|
+
matchAll?: string;
|
24
|
+
matchAny?: string;
|
25
|
+
addRule?: string;
|
26
|
+
removeRule?: string;
|
27
|
+
accept?: string;
|
28
|
+
reject?: string;
|
29
|
+
choose?: string;
|
30
|
+
upload?: string;
|
31
|
+
cancel?: string;
|
32
|
+
dayNames?: string[];
|
33
|
+
dayNamesShort?: string[];
|
34
|
+
dayNamesMin?: string[];
|
35
|
+
monthNames?: string[];
|
36
|
+
monthNamesShort?: string[];
|
37
|
+
dateFormat?: string;
|
38
|
+
firstDayOfWeek?: number;
|
39
|
+
today?: string;
|
40
|
+
weekHeader?: string;
|
41
|
+
weak?: string;
|
42
|
+
medium?: string;
|
43
|
+
strong?: string;
|
44
|
+
passwordPrompt?: string;
|
45
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
2
|
+
import { MatMenu } from '@angular/material';
|
3
|
+
import { MdePopoverTrigger } from '@material-extended/mde';
|
4
|
+
export declare class ButtonComponent implements OnInit {
|
5
|
+
popoverRef: TemplateRef<any>;
|
6
|
+
popoverTrigger: MdePopoverTrigger;
|
7
|
+
_elementRef: ElementRef;
|
8
|
+
label: string;
|
9
|
+
icon: string;
|
10
|
+
rightIcon: string;
|
11
|
+
svgIcon: string;
|
12
|
+
color: string;
|
13
|
+
type: 'raised' | 'stroked' | 'icon' | 'menu' | 'spinner' | 'popover' | 'popover-icon';
|
14
|
+
menu: MatMenu;
|
15
|
+
badge: number;
|
16
|
+
badgeColor: string;
|
17
|
+
disabled: boolean;
|
18
|
+
tooltip: string;
|
19
|
+
loading: boolean;
|
20
|
+
download: boolean;
|
21
|
+
stylePopover: string;
|
22
|
+
styleClassPopover: string;
|
23
|
+
onClick: EventEmitter<MouseEvent>;
|
24
|
+
ngOnInit(): void;
|
25
|
+
onClickButton(event: MouseEvent): void;
|
26
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
export declare class CheckboxComponent implements ControlValueAccessor, OnInit {
|
4
|
+
name: string;
|
5
|
+
label: string;
|
6
|
+
disabled: boolean;
|
7
|
+
required: boolean;
|
8
|
+
indeterminate: boolean;
|
9
|
+
indeterminateChange: EventEmitter<boolean>;
|
10
|
+
change: EventEmitter<any>;
|
11
|
+
val: any;
|
12
|
+
ngOnInit(): void;
|
13
|
+
onChange: any;
|
14
|
+
onTouch: any;
|
15
|
+
get value(): any;
|
16
|
+
set value(val: any);
|
17
|
+
registerOnChange(fn: any): void;
|
18
|
+
registerOnTouched(fn: any): void;
|
19
|
+
writeValue(value: any): void;
|
20
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
/**
|
2
|
+
* @dynamic é para inicializar o DomHandler.browser em tempo de execução
|
3
|
+
*
|
4
|
+
* Se excluir o comentário abaixo, podemos ver esta mensagem de erro:
|
5
|
+
* Os metadados coletados contêm um erro que será relatado em tempo de execução:
|
6
|
+
* Somente variáveis e constantes inicializadas podem ser referenciadas
|
7
|
+
* porque o valor desta variável é necessário para o compilador de template.
|
8
|
+
*/
|
9
|
+
/** @dynamic */
|
10
|
+
export declare class DomHandler {
|
11
|
+
static zindex: number;
|
12
|
+
private static calculatedScrollbarWidth;
|
13
|
+
private static calculatedScrollbarHeight;
|
14
|
+
private static browser;
|
15
|
+
static addClass(element: any, className: string): void;
|
16
|
+
static addMultipleClasses(element: any, className: string): void;
|
17
|
+
static removeClass(element: any, className: string): void;
|
18
|
+
static hasClass(element: any, className: string): boolean;
|
19
|
+
static siblings(element: any): any;
|
20
|
+
static find(element: any, selector: string): any[];
|
21
|
+
static findSingle(element: any, selector: string): any;
|
22
|
+
static index(element: any): number;
|
23
|
+
static indexWithinGroup(element: any, attributeName: string): number;
|
24
|
+
static relativePosition(element: any, target: any): void;
|
25
|
+
static absolutePosition(element: any, target: any, calculateTop?: boolean): void;
|
26
|
+
static getParents(element: any, parents?: any): any;
|
27
|
+
static getScrollableParents(element: any): any[];
|
28
|
+
static getHiddenElementOuterHeight(element: any): number;
|
29
|
+
static getHiddenElementOuterWidth(element: any): number;
|
30
|
+
static getHiddenElementDimensions(element: any): any;
|
31
|
+
static scrollInView(container: any, item: any): void;
|
32
|
+
static fadeIn(element: any, duration: number): void;
|
33
|
+
static fadeOut(element: any, ms: any): void;
|
34
|
+
static getWindowScrollTop(): number;
|
35
|
+
static getWindowScrollLeft(): number;
|
36
|
+
static matches(element: any, selector: string): boolean;
|
37
|
+
static getOuterWidth(el: any, margin?: any): any;
|
38
|
+
static getHorizontalPadding(el: any): number;
|
39
|
+
static getHorizontalMargin(el: any): number;
|
40
|
+
static innerWidth(el: any): any;
|
41
|
+
static width(el: any): any;
|
42
|
+
static getInnerHeight(el: any): any;
|
43
|
+
static getOuterHeight(el: any, margin?: any): any;
|
44
|
+
static getHeight(el: any): number;
|
45
|
+
static getWidth(el: any): number;
|
46
|
+
static getViewport(): any;
|
47
|
+
static getOffset(el: any): {
|
48
|
+
top: any;
|
49
|
+
left: any;
|
50
|
+
};
|
51
|
+
static replaceElementWith(element: any, replacementElement: any): any;
|
52
|
+
static getUserAgent(): string;
|
53
|
+
static isIE(): boolean;
|
54
|
+
static isIOS(): boolean;
|
55
|
+
static isAndroid(): boolean;
|
56
|
+
static isTouchDevice(): boolean;
|
57
|
+
static appendChild(element: any, target: any): void;
|
58
|
+
static removeChild(element: any, target: any): void;
|
59
|
+
static removeElement(element: Element): void;
|
60
|
+
static isElement(obj: any): boolean;
|
61
|
+
static calculateScrollbarWidth(el?: HTMLElement): number;
|
62
|
+
static calculateScrollbarHeight(): number;
|
63
|
+
static invokeElementMethod(element: any, methodName: string, args?: any[]): void;
|
64
|
+
static clearSelection(): void;
|
65
|
+
static getBrowser(): any;
|
66
|
+
static resolveUserAgent(): {
|
67
|
+
browser: any;
|
68
|
+
version: any;
|
69
|
+
};
|
70
|
+
static isInteger(value: any): boolean;
|
71
|
+
static isHidden(element: HTMLElement): boolean;
|
72
|
+
static getFocusableElements(element: HTMLElement): any[];
|
73
|
+
static generateZIndex(): number;
|
74
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
4
|
+
export declare class InputComponent implements ControlValueAccessor, OnInit, AfterViewInit {
|
5
|
+
_elementRef: ElementRef;
|
6
|
+
suffixRef: TemplateRef<any>;
|
7
|
+
private _inputSubject;
|
8
|
+
_maskPhone: BehaviorSubject<string>;
|
9
|
+
name: string;
|
10
|
+
label: string;
|
11
|
+
tooltip: string;
|
12
|
+
styleClassFormField: string;
|
13
|
+
styleClassSuffix: string;
|
14
|
+
placeholder: string;
|
15
|
+
disabled: boolean;
|
16
|
+
required: boolean;
|
17
|
+
readonly: boolean;
|
18
|
+
hidePasswordManager: boolean;
|
19
|
+
maxlength: number;
|
20
|
+
type: string;
|
21
|
+
min: any;
|
22
|
+
max: any;
|
23
|
+
appearance: string;
|
24
|
+
val: any;
|
25
|
+
get value(): any;
|
26
|
+
set value(val: any);
|
27
|
+
mask: string | undefined | null;
|
28
|
+
phone: boolean;
|
29
|
+
loading: boolean;
|
30
|
+
dropSpecialCharacters: boolean;
|
31
|
+
upperCase: boolean;
|
32
|
+
lowerCase: boolean;
|
33
|
+
patterns: any;
|
34
|
+
spaceDrop: boolean;
|
35
|
+
focus: EventEmitter<Event>;
|
36
|
+
blur: EventEmitter<Event>;
|
37
|
+
constructor();
|
38
|
+
ngOnInit(): void;
|
39
|
+
ngAfterViewInit(): void;
|
40
|
+
onChange: any;
|
41
|
+
onTouch: any;
|
42
|
+
registerOnChange(fn: any): void;
|
43
|
+
registerOnTouched(fn: any): void;
|
44
|
+
writeValue(value: any): void;
|
45
|
+
checkSpaceDrop(value: any): any;
|
46
|
+
checkUppercase(value: any): any;
|
47
|
+
checkLowercase(value: any): any;
|
48
|
+
onFocus(event: Event): void;
|
49
|
+
onBlur(event: Event): void;
|
50
|
+
onInputPhoneKeyup(event: KeyboardEvent): void;
|
51
|
+
onInputPhoneChange(value: string): void;
|
52
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { ElementRef, OnInit, TemplateRef } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
import { CurrencyMaskConfig } from 'ngx-currency';
|
4
|
+
export declare class InputCurrencyComponent implements ControlValueAccessor, OnInit {
|
5
|
+
_elementRef: ElementRef;
|
6
|
+
suffixRef: TemplateRef<any>;
|
7
|
+
name: string;
|
8
|
+
label: string;
|
9
|
+
tooltip: string;
|
10
|
+
placeholder: string;
|
11
|
+
disabled: boolean;
|
12
|
+
required: boolean;
|
13
|
+
maxlength: number;
|
14
|
+
type: string;
|
15
|
+
appearance: string;
|
16
|
+
val: any;
|
17
|
+
prefix: string;
|
18
|
+
styleClassFormField: string;
|
19
|
+
styleClassSuffix: string;
|
20
|
+
options: Partial<CurrencyMaskConfig>;
|
21
|
+
ngOnInit(): void;
|
22
|
+
onChange: any;
|
23
|
+
onTouch: any;
|
24
|
+
get value(): any;
|
25
|
+
set value(val: any);
|
26
|
+
registerOnChange(fn: any): void;
|
27
|
+
registerOnTouched(fn: any): void;
|
28
|
+
writeValue(value: any): void;
|
29
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
3
|
+
import { AbstractComponent } from '../../../core/components/abstract.component';
|
4
|
+
import { Archive } from '../../../core/models/archive.model';
|
5
|
+
import { MessageService } from '../../../core/services/message.service';
|
6
|
+
export declare class InputFileComponent extends AbstractComponent {
|
7
|
+
_elementRef: ElementRef;
|
8
|
+
fileInput: ElementRef<HTMLInputElement>;
|
9
|
+
name: string;
|
10
|
+
label: string;
|
11
|
+
tooltip: string;
|
12
|
+
placeholder: string;
|
13
|
+
required: boolean;
|
14
|
+
disabled: boolean;
|
15
|
+
appearance: string;
|
16
|
+
loading: boolean;
|
17
|
+
extensions: string[];
|
18
|
+
maximumSize: number;
|
19
|
+
archiveChange: EventEmitter<Archive>;
|
20
|
+
archive: Archive;
|
21
|
+
nativeFileChange: EventEmitter<File>;
|
22
|
+
constructor(messageService: MessageService, router: Router, activatedRoute: ActivatedRoute);
|
23
|
+
private validateExtensions;
|
24
|
+
private validateMaximumSize;
|
25
|
+
uploadArchive(): void;
|
26
|
+
downloadArchive(): void;
|
27
|
+
clearArchive(): void;
|
28
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
import { AnimationEvent } from '@angular/animations';
|
2
|
+
import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, Renderer2, TemplateRef } from '@angular/core';
|
3
|
+
import { Subscription } from 'rxjs';
|
4
|
+
import { GIPINgConfig } from '../../api/gipi-ng-config';
|
5
|
+
import { GIPIOverlayService } from '../../gipi-components/overlay/shared/overlay-service';
|
6
|
+
export declare class OverlayPanelComponent implements AfterContentInit, OnInit, OnDestroy {
|
7
|
+
el: ElementRef;
|
8
|
+
renderer: Renderer2;
|
9
|
+
cd: ChangeDetectorRef;
|
10
|
+
private zone;
|
11
|
+
config: GIPINgConfig;
|
12
|
+
overlayService: GIPIOverlayService;
|
13
|
+
dismissable: boolean;
|
14
|
+
showCloseIcon: boolean;
|
15
|
+
closeIconSize: number;
|
16
|
+
style: any;
|
17
|
+
styleClass: string;
|
18
|
+
appendTo: any;
|
19
|
+
autoZIndex: boolean;
|
20
|
+
ariaCloseLabel: string;
|
21
|
+
baseZIndex: number;
|
22
|
+
focusOnShow: boolean;
|
23
|
+
showTransitionOptions: string;
|
24
|
+
hideTransitionOptions: string;
|
25
|
+
onShow: EventEmitter<any>;
|
26
|
+
onHide: EventEmitter<any>;
|
27
|
+
overlayContentRef: TemplateRef<any>;
|
28
|
+
overlayFooterRef: TemplateRef<any>;
|
29
|
+
container: HTMLDivElement;
|
30
|
+
overlayVisible: boolean;
|
31
|
+
render: boolean;
|
32
|
+
isOverlayAnimationInProgress: boolean;
|
33
|
+
selfClick: boolean;
|
34
|
+
documentClickListener: any;
|
35
|
+
target: any;
|
36
|
+
willHide: boolean;
|
37
|
+
scrollHandler: any;
|
38
|
+
documentResizeListener: any;
|
39
|
+
destroyCallback: Function;
|
40
|
+
overlayEventListener: any;
|
41
|
+
overlaySubscription: Subscription;
|
42
|
+
constructor(el: ElementRef, renderer: Renderer2, cd: ChangeDetectorRef, zone: NgZone, config: GIPINgConfig, overlayService: GIPIOverlayService);
|
43
|
+
ngOnInit(): void;
|
44
|
+
ngAfterContentInit(): void;
|
45
|
+
bindDocumentClickListener(): void;
|
46
|
+
unbindDocumentClickListener(): void;
|
47
|
+
toggle(event: any, target?: any): void;
|
48
|
+
show(event: any, target?: any): void;
|
49
|
+
onOverlayClick(event: any): void;
|
50
|
+
onContentClick(): void;
|
51
|
+
hasTargetChanged(event: any, target: any): boolean;
|
52
|
+
appendContainer(): void;
|
53
|
+
restoreAppend(): void;
|
54
|
+
align(): void;
|
55
|
+
onAnimationStart(event: AnimationEvent): void;
|
56
|
+
onAnimationEnd(event: AnimationEvent): void;
|
57
|
+
focus(): void;
|
58
|
+
hide(): void;
|
59
|
+
onCloseClick(event: any): void;
|
60
|
+
onWindowResize(event: any): void;
|
61
|
+
bindDocumentResizeListener(): void;
|
62
|
+
unbindDocumentResizeListener(): void;
|
63
|
+
bindScrollListener(): void;
|
64
|
+
unbindScrollListener(): void;
|
65
|
+
onContainerDestroy(): void;
|
66
|
+
ngOnDestroy(): void;
|
67
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { OverlayRef } from '@angular/cdk/overlay';
|
2
|
+
import { TemplateRef, Type } from '@angular/core';
|
3
|
+
export interface PopoverCloseEvent<T = any> {
|
4
|
+
type: 'backdropClick' | 'close';
|
5
|
+
data: T;
|
6
|
+
}
|
7
|
+
export declare type PopoverContent = TemplateRef<any> | Type<any> | string;
|
8
|
+
export declare class PopoverRef<T = any> {
|
9
|
+
overlay: OverlayRef;
|
10
|
+
content: PopoverContent;
|
11
|
+
data: T;
|
12
|
+
private afterClosed;
|
13
|
+
afterClosed$: import("rxjs").Observable<PopoverCloseEvent<T>>;
|
14
|
+
constructor(overlay: OverlayRef, content: PopoverContent, data: T);
|
15
|
+
close(data?: T): void;
|
16
|
+
private _close;
|
17
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import { PopoverContent, PopoverRef } from './popover-ref';
|
3
|
+
export declare class PopoverComponent implements OnInit {
|
4
|
+
private popoverRef;
|
5
|
+
renderMethod: 'template' | 'component' | 'text';
|
6
|
+
content: PopoverContent;
|
7
|
+
context: any;
|
8
|
+
constructor(popoverRef: PopoverRef);
|
9
|
+
ngOnInit(): void;
|
10
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { ElementRef, Injector } from '@angular/core';
|
2
|
+
import { Overlay } from '@angular/cdk/overlay';
|
3
|
+
import { PortalInjector } from '@angular/cdk/portal';
|
4
|
+
import { PopoverContent, PopoverRef } from './popover-ref';
|
5
|
+
export interface PopoverParams<T> {
|
6
|
+
width?: string | number;
|
7
|
+
height?: string | number;
|
8
|
+
origin: ElementRef | HTMLElement;
|
9
|
+
content: PopoverContent;
|
10
|
+
data?: T;
|
11
|
+
event?: MouseEvent;
|
12
|
+
}
|
13
|
+
export declare class PopoverService {
|
14
|
+
private overlay;
|
15
|
+
private injector;
|
16
|
+
constructor(overlay: Overlay, injector: Injector);
|
17
|
+
open<T>({ origin, content, data, width, height, event }: PopoverParams<T>): PopoverRef<T>;
|
18
|
+
private getOverlayConfig;
|
19
|
+
private getOverlayPosition;
|
20
|
+
updatePosition(popoverRef: PopoverRef, event: MouseEvent): void;
|
21
|
+
createInjector(popoverRef: PopoverRef, injector: Injector): PortalInjector;
|
22
|
+
private getPositions;
|
23
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
export declare class RadioGroupEntityComponent implements ControlValueAccessor, OnInit {
|
4
|
+
label: string;
|
5
|
+
disabled: boolean;
|
6
|
+
required: boolean;
|
7
|
+
property: string;
|
8
|
+
entities: any[];
|
9
|
+
val: any;
|
10
|
+
ngOnInit(): void;
|
11
|
+
getPropertyValue(entity: any): string;
|
12
|
+
onChange: any;
|
13
|
+
onTouch: any;
|
14
|
+
get value(): any;
|
15
|
+
set value(val: any);
|
16
|
+
registerOnChange(fn: any): void;
|
17
|
+
registerOnTouched(fn: any): void;
|
18
|
+
writeValue(value: any): void;
|
19
|
+
}
|