@gipisistemas/ng-core 1.0.67 → 1.0.68
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
@@ -0,0 +1,27 @@
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
export declare class GIPIPasswordRequerimentsComponent implements OnInit, ControlValueAccessor {
|
4
|
+
private _changeDetectorRef;
|
5
|
+
private _name;
|
6
|
+
id: number | string;
|
7
|
+
name: string;
|
8
|
+
disabled: boolean;
|
9
|
+
private _password;
|
10
|
+
set password(value: string);
|
11
|
+
get password(): string;
|
12
|
+
get isValidMinLength(): boolean;
|
13
|
+
get isValidMaxLength(): boolean;
|
14
|
+
get hasUppercase(): boolean;
|
15
|
+
get hasLowercase(): boolean;
|
16
|
+
get hasNumber(): boolean;
|
17
|
+
get hasBackspace(): boolean;
|
18
|
+
onValid: EventEmitter<boolean>;
|
19
|
+
constructor(_changeDetectorRef: ChangeDetectorRef);
|
20
|
+
ngOnInit(): void;
|
21
|
+
onChange: any;
|
22
|
+
onTouch: any;
|
23
|
+
writeValue(value: any): void;
|
24
|
+
registerOnChange(fn: any): void;
|
25
|
+
registerOnTouched(fn: any): void;
|
26
|
+
setDisabledState?(value: boolean): void;
|
27
|
+
}
|
@@ -0,0 +1,133 @@
|
|
1
|
+
import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
2
|
+
import { PopoverPanel } from './shared/popover-interfaces';
|
3
|
+
import { PopoverPositionX, PopoverPositionY, PopoverScrollStrategy, PopoverTriggerEvent } from './shared/popover-types';
|
4
|
+
export declare class GIPIPopoverComponent implements OnInit, PopoverPanel, OnDestroy {
|
5
|
+
private _elementRef;
|
6
|
+
zone: NgZone;
|
7
|
+
role: string;
|
8
|
+
private _popoverWidth;
|
9
|
+
private _positionX;
|
10
|
+
private _positionY;
|
11
|
+
private _triggerEvent;
|
12
|
+
private _scrollStrategy;
|
13
|
+
private _enterDelay;
|
14
|
+
private _leaveDelay;
|
15
|
+
private _overlapTrigger;
|
16
|
+
private _disableAnimation;
|
17
|
+
private _targetOffsetX;
|
18
|
+
private _targetOffsetY;
|
19
|
+
private _arrowOffsetX;
|
20
|
+
private _arrowWidth;
|
21
|
+
private _arrowColor;
|
22
|
+
private _closeOnClick;
|
23
|
+
private _focusTrapEnabled;
|
24
|
+
private _focusTrapAutoCaptureEnabled;
|
25
|
+
/** Objeto de configuração a ser passado para o ngClass do popover */
|
26
|
+
_classList: {
|
27
|
+
[key: string]: boolean;
|
28
|
+
};
|
29
|
+
/** Posição do popover */
|
30
|
+
containerPositioning: boolean;
|
31
|
+
/** Fechamento desabilitado no popover */
|
32
|
+
closeDisabled: boolean;
|
33
|
+
/** Objeto de configuração a ser passado para a seta ngStyle do popover */
|
34
|
+
popoverPanelStyles: {};
|
35
|
+
/** Objeto de configuração a ser passado para a seta ngStyle do popover */
|
36
|
+
popoverArrowStyles: {};
|
37
|
+
/** Objeto de configuração a ser passado para o conteúdo do popover ngStyle */
|
38
|
+
popoverContentStyles: {};
|
39
|
+
/** Emite o estado de animação atual sempre que muda. */
|
40
|
+
_onAnimationStateChange: EventEmitter<AnimationEvent>;
|
41
|
+
/** Largura do popover */
|
42
|
+
get popoverWidth(): string;
|
43
|
+
set popoverWidth(value: string);
|
44
|
+
/** Posição do popover no eixo X. */
|
45
|
+
get positionX(): PopoverPositionX;
|
46
|
+
set positionX(value: PopoverPositionX);
|
47
|
+
/** Posição do popover no eixo Y. */
|
48
|
+
get positionY(): PopoverPositionY;
|
49
|
+
set positionY(value: PopoverPositionY);
|
50
|
+
/** Evento de gatilho popover */
|
51
|
+
get triggerEvent(): PopoverTriggerEvent;
|
52
|
+
set triggerEvent(value: PopoverTriggerEvent);
|
53
|
+
/** Estratégia de rolagem popover */
|
54
|
+
get scrollStrategy(): PopoverScrollStrategy;
|
55
|
+
set scrollStrategy(value: PopoverScrollStrategy);
|
56
|
+
/** Atrazo de entrada popover */
|
57
|
+
get enterDelay(): number;
|
58
|
+
set enterDelay(value: number);
|
59
|
+
/** Atraso de saída popover */
|
60
|
+
get leaveDelay(): number;
|
61
|
+
set leaveDelay(value: number);
|
62
|
+
/** Gatilho de sobreposição de popover */
|
63
|
+
get overlapTrigger(): boolean;
|
64
|
+
set overlapTrigger(value: boolean);
|
65
|
+
/** Deslocamento alvo do popover x */
|
66
|
+
get targetOffsetX(): number;
|
67
|
+
set targetOffsetX(value: number);
|
68
|
+
/** Deslocamento do alvo popover y */
|
69
|
+
get targetOffsetY(): number;
|
70
|
+
set targetOffsetY(value: number);
|
71
|
+
/** Deslocamento da seta popover x */
|
72
|
+
get arrowOffsetX(): number;
|
73
|
+
set arrowOffsetX(value: number);
|
74
|
+
/** Largura da seta popover */
|
75
|
+
get arrowWidth(): number;
|
76
|
+
set arrowWidth(value: number);
|
77
|
+
/** Cor da seta popover */
|
78
|
+
get arrowColor(): string;
|
79
|
+
set arrowColor(value: string);
|
80
|
+
/**
|
81
|
+
* Contêiner popover fechado ao clicar
|
82
|
+
* default: true
|
83
|
+
*/
|
84
|
+
get closeOnClick(): boolean;
|
85
|
+
set closeOnClick(value: boolean);
|
86
|
+
/**
|
87
|
+
* Desativar animações de popover e todos os elementos filhos
|
88
|
+
* default: false
|
89
|
+
*/
|
90
|
+
get disableAnimation(): boolean;
|
91
|
+
set disableAnimation(value: boolean);
|
92
|
+
/**
|
93
|
+
* Armadilha de foco popover usando cdkTrapFocus
|
94
|
+
* default: true
|
95
|
+
*/
|
96
|
+
get focusTrapEnabled(): boolean;
|
97
|
+
set focusTrapEnabled(value: boolean);
|
98
|
+
/**
|
99
|
+
* Captura automática da armadilha de foco popover usando cdkTrapFocusAutoCapture
|
100
|
+
* default: true
|
101
|
+
*/
|
102
|
+
get focusTrapAutoCaptureEnabled(): boolean;
|
103
|
+
set focusTrapAutoCaptureEnabled(value: boolean);
|
104
|
+
/**
|
105
|
+
* Esse método usa classes definidas no elemento popover do host e as aplica no modelo popover
|
106
|
+
* exibido no contêiner de sobreposição. Caso contrário, é difícil estilizar o popover de fora do componente.
|
107
|
+
* @param classes list of class names
|
108
|
+
*/
|
109
|
+
set panelClass(classes: string);
|
110
|
+
/** Evento emitido quando o popover é fechado. */
|
111
|
+
close: EventEmitter<void>;
|
112
|
+
templateRef: TemplateRef<any>;
|
113
|
+
constructor(_elementRef: ElementRef, zone: NgZone);
|
114
|
+
ngOnInit(): void;
|
115
|
+
ngOnDestroy(): void;
|
116
|
+
/** Manipule um evento de teclado do popover, delegando para a ação apropriada. */
|
117
|
+
_handleKeydown(event: KeyboardEvent): void;
|
118
|
+
/** Isso emite um evento de fechamento no qual o acionador está inscrito. Quando emitido, o gatilho fechará o popover. */
|
119
|
+
_emitCloseEvent(): void;
|
120
|
+
/** Fechar popover ao clicar se closeOnClick for true */
|
121
|
+
onClick(): void;
|
122
|
+
/** Desativa o fechamento do popover ao sair do elemento de gatilho e passar o mouse sobre o popover */
|
123
|
+
onMouseOver(): void;
|
124
|
+
/** Habilita o fechamento do popover quando o mouse sai do elemento popover */
|
125
|
+
onMouseLeave(): void;
|
126
|
+
/** Define os estilos atuais para o popover para permitir a alteração dinâmica das configurações */
|
127
|
+
setCurrentStyles(): void;
|
128
|
+
/**
|
129
|
+
* É necessário definir classes baseadas em posição para garantir que a animação do painel popover
|
130
|
+
* se expanda na direção correta.
|
131
|
+
*/
|
132
|
+
setPositionClasses(posX?: PopoverPositionX, posY?: PopoverPositionY): void;
|
133
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { AnimationTriggerMetadata } from '@angular/animations';
|
2
|
+
/**
|
3
|
+
* Abaixo estão todas as animações para o componente popover.
|
4
|
+
* A duração da animação e os valores de tempo são baseados no Angular Material.
|
5
|
+
*/
|
6
|
+
/**
|
7
|
+
* Esta animação controla a entrada e saída do painel popover da página.
|
8
|
+
*
|
9
|
+
* Quando o painel popover é adicionado ao DOM, ele é dimensionado e esmaecido em sua borda.
|
10
|
+
*
|
11
|
+
* Quando o painel popover é removido do DOM, ele simplesmente desaparece após um breve atraso para exibir a ondulação.
|
12
|
+
*/
|
13
|
+
export declare const transformPopover: AnimationTriggerMetadata;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/**
|
2
|
+
* Lança uma exceção para o caso em que o gatilho popover não possui uma instância popover válida
|
3
|
+
*/
|
4
|
+
export declare function throwPopoverMissingError(): void;
|
5
|
+
/**
|
6
|
+
* Lança uma exceção para o caso em que o valor popoverPositionX do popover não é válido.
|
7
|
+
* Em outras palavras, não corresponde a 'before' ou 'after'.
|
8
|
+
*/
|
9
|
+
export declare function throwPopoverInvalidPositionX(): void;
|
10
|
+
/**
|
11
|
+
* Lança uma exceção para o caso em que o valor popoverPositionY do popover não é válido.
|
12
|
+
* Em outras palavras, não corresponde a 'above' ou 'below'.
|
13
|
+
*/
|
14
|
+
export declare function throwPopoverInvalidPositionY(): void;
|
@@ -0,0 +1,43 @@
|
|
1
|
+
import { ElementRef, EventEmitter, NgZone, TemplateRef } from '@angular/core';
|
2
|
+
import { PopoverPositionX, PopoverPositionY, PopoverScrollStrategy, PopoverTriggerEvent } from './popover-types';
|
3
|
+
export interface PopoverPanel {
|
4
|
+
popoverWidth: string;
|
5
|
+
positionX: PopoverPositionX;
|
6
|
+
positionY: PopoverPositionY;
|
7
|
+
containerPositioning: boolean;
|
8
|
+
overlapTrigger: boolean;
|
9
|
+
triggerEvent: PopoverTriggerEvent;
|
10
|
+
scrollStrategy: PopoverScrollStrategy;
|
11
|
+
enterDelay: number;
|
12
|
+
leaveDelay: number;
|
13
|
+
targetOffsetX: number;
|
14
|
+
targetOffsetY: number;
|
15
|
+
arrowOffsetX: number;
|
16
|
+
arrowWidth: number;
|
17
|
+
arrowColor: string;
|
18
|
+
closeOnClick: boolean;
|
19
|
+
closeDisabled: boolean;
|
20
|
+
setCurrentStyles: () => void;
|
21
|
+
templateRef: TemplateRef<any>;
|
22
|
+
close: EventEmitter<void>;
|
23
|
+
zone: NgZone;
|
24
|
+
setPositionClasses: (x: PopoverPositionX, y: PopoverPositionY) => void;
|
25
|
+
_emitCloseEvent: () => void;
|
26
|
+
}
|
27
|
+
export interface PopoverConfig {
|
28
|
+
popoverWidth: string;
|
29
|
+
positionX: PopoverPositionX;
|
30
|
+
positionY: PopoverPositionY;
|
31
|
+
overlapTrigger: boolean;
|
32
|
+
triggerEvent: PopoverTriggerEvent;
|
33
|
+
triggerDelay: number;
|
34
|
+
targetOffsetX: number;
|
35
|
+
targetOffsetY: number;
|
36
|
+
arrowOffsetX: number;
|
37
|
+
arrowWidth: number;
|
38
|
+
arrowColor: string;
|
39
|
+
closeOnClick: boolean;
|
40
|
+
}
|
41
|
+
export interface Target {
|
42
|
+
_elementRef: ElementRef;
|
43
|
+
}
|
@@ -0,0 +1,140 @@
|
|
1
|
+
import { Direction, Directionality } from '@angular/cdk/bidi';
|
2
|
+
import { Overlay } from '@angular/cdk/overlay';
|
3
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, ViewContainerRef } from '@angular/core';
|
4
|
+
import { Subject } from 'rxjs';
|
5
|
+
import { PopoverPanel, Target } from './popover-interfaces';
|
6
|
+
import { PopoverPositionX, PopoverPositionY, PopoverTriggerEvent } from './popover-types';
|
7
|
+
/**
|
8
|
+
* Esta diretiva destina-se a ser usada em conjunto com uma tag gipi-popover.
|
9
|
+
* Ele é responsável por alternar a exibição da instância popover fornecida.
|
10
|
+
*/
|
11
|
+
export declare class GIPIPopoverTrigger implements AfterViewInit, OnDestroy {
|
12
|
+
private _overlay;
|
13
|
+
_elementRef: ElementRef;
|
14
|
+
private _viewContainerRef;
|
15
|
+
private _dir;
|
16
|
+
private _changeDetectorRef;
|
17
|
+
ariaHaspopup: boolean;
|
18
|
+
popoverOpened: Subject<void>;
|
19
|
+
popoverClosed: Subject<void>;
|
20
|
+
private _portal;
|
21
|
+
private _overlayRef;
|
22
|
+
private _popoverOpen;
|
23
|
+
private _halt;
|
24
|
+
private _backdropSubscription;
|
25
|
+
private _positionSubscription;
|
26
|
+
private _detachmentsSubscription;
|
27
|
+
private _mouseoverTimer;
|
28
|
+
private _openedByMouse;
|
29
|
+
private _onDestroy;
|
30
|
+
/** References the popover instance that the trigger is associated with. */
|
31
|
+
popover: PopoverPanel;
|
32
|
+
/** References the popover target instance that the trigger is associated with. */
|
33
|
+
targetElement: Target;
|
34
|
+
/** Position of the popover in the X axis */
|
35
|
+
positionX: PopoverPositionX;
|
36
|
+
/** Position of the popover in the Y axis */
|
37
|
+
positionY: PopoverPositionY;
|
38
|
+
/** Popover trigger event */
|
39
|
+
triggerEvent: PopoverTriggerEvent;
|
40
|
+
/** Popover delay */
|
41
|
+
enterDelay: number;
|
42
|
+
/** Popover delay */
|
43
|
+
leaveDelay: number;
|
44
|
+
/** Popover overlap trigger */
|
45
|
+
overlapTrigger: boolean;
|
46
|
+
/** Popover target offset x */
|
47
|
+
targetOffsetX: number;
|
48
|
+
/** Popover target offset y */
|
49
|
+
targetOffsetY: number;
|
50
|
+
/** Popover arrow offset x */
|
51
|
+
arrowOffsetX: number;
|
52
|
+
/** Popover arrow width */
|
53
|
+
arrowWidth: number;
|
54
|
+
/** Popover arrow color */
|
55
|
+
arrowColor: string;
|
56
|
+
/** Popover container close on click */
|
57
|
+
closeOnClick: boolean;
|
58
|
+
/** Popover backdrop close on click */
|
59
|
+
backdropCloseOnClick: boolean;
|
60
|
+
/** Event emitted when the associated popover is opened. */
|
61
|
+
opened: EventEmitter<void>;
|
62
|
+
/** Event emitted when the associated popover is closed. */
|
63
|
+
closed: EventEmitter<void>;
|
64
|
+
constructor(_overlay: Overlay, _elementRef: ElementRef, _viewContainerRef: ViewContainerRef, _dir: Directionality, _changeDetectorRef: ChangeDetectorRef);
|
65
|
+
ngAfterViewInit(): void;
|
66
|
+
ngOnDestroy(): void;
|
67
|
+
private _setCurrentConfig;
|
68
|
+
/** Whether the popover is open. */
|
69
|
+
get popoverOpen(): boolean;
|
70
|
+
onClick(event: MouseEvent): void;
|
71
|
+
onMouseEnter(event: MouseEvent): void;
|
72
|
+
onMouseLeave(event: MouseEvent): void;
|
73
|
+
/** Toggles the popover between the open and closed states. */
|
74
|
+
togglePopover(): void;
|
75
|
+
/** Opens the popover. */
|
76
|
+
openPopover(): void;
|
77
|
+
/** Closes the popover. */
|
78
|
+
closePopover(): void;
|
79
|
+
/** Removes the popover from the DOM. */
|
80
|
+
destroyPopover(): void;
|
81
|
+
/** Focuses the popover trigger. */
|
82
|
+
focus(): void;
|
83
|
+
/** The text direction of the containing app. */
|
84
|
+
get dir(): Direction;
|
85
|
+
/**
|
86
|
+
* This method ensures that the popover closes when the overlay backdrop is clicked.
|
87
|
+
* We do not use first() here because doing so would not catch clicks from within
|
88
|
+
* the popover, and it would fail to unsubscribe properly. Instead, we unsubscribe
|
89
|
+
* explicitly when the popover is closed or destroyed.
|
90
|
+
*/
|
91
|
+
private _subscribeToBackdrop;
|
92
|
+
private _subscribeToDetachments;
|
93
|
+
/**
|
94
|
+
* This method sets the popover state to open and focuses the first item if
|
95
|
+
* the popover was opened via the keyboard.
|
96
|
+
*/
|
97
|
+
private _initPopover;
|
98
|
+
/**
|
99
|
+
* This method resets the popover when it's closed, most importantly restoring
|
100
|
+
* focus to the popover trigger if the popover was opened via the keyboard.
|
101
|
+
*/
|
102
|
+
private _resetPopover;
|
103
|
+
/** set state rather than toggle to support triggers sharing a popover */
|
104
|
+
private _setPopoverOpened;
|
105
|
+
/** set state rather than toggle to support triggers sharing a popover */
|
106
|
+
private _setPopoverClosed;
|
107
|
+
/**
|
108
|
+
* This method checks that a valid instance of MdPopover has been passed into
|
109
|
+
* mdPopoverTriggerFor. If not, an exception is thrown.
|
110
|
+
*/
|
111
|
+
private _checkPopover;
|
112
|
+
/**
|
113
|
+
* This method creates the overlay from the provided popover's template and saves its
|
114
|
+
* OverlayRef so that it can be attached to the DOM when openPopover is called.
|
115
|
+
*/
|
116
|
+
private _createOverlay;
|
117
|
+
/**
|
118
|
+
* This method builds the configuration object needed to create the overlay, the OverlayConfig.
|
119
|
+
* @returns OverlayConfig
|
120
|
+
*/
|
121
|
+
private _getOverlayConfig;
|
122
|
+
/**
|
123
|
+
* This method returns the scroll strategy used by the cdk/overlay.
|
124
|
+
*/
|
125
|
+
private _getOverlayScrollStrategy;
|
126
|
+
/**
|
127
|
+
* Listens to changes in the position of the overlay and sets the correct classes
|
128
|
+
* on the popover based on the new position. This ensures the animation origin is always
|
129
|
+
* correct, even if a fallback position is used for the overlay.
|
130
|
+
*/
|
131
|
+
private _subscribeToPositions;
|
132
|
+
/**
|
133
|
+
* This method builds the position strategy for the overlay, so the popover is properly connected
|
134
|
+
* to the trigger.
|
135
|
+
* @returns ConnectedPositionStrategy
|
136
|
+
*/
|
137
|
+
private _getPosition;
|
138
|
+
private _cleanUpSubscriptions;
|
139
|
+
_handleMousedown(event: MouseEvent): void;
|
140
|
+
}
|
@@ -0,0 +1,4 @@
|
|
1
|
+
export declare type PopoverPositionX = 'before' | 'after';
|
2
|
+
export declare type PopoverPositionY = 'above' | 'below';
|
3
|
+
export declare type PopoverTriggerEvent = 'click' | 'hover' | 'none';
|
4
|
+
export declare type PopoverScrollStrategy = 'noop' | 'close' | 'block' | 'reposition';
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
import { MatRadioChange } from '@angular/material';
|
4
|
+
export declare class GIPIRadioGroupComponent implements ControlValueAccessor, OnInit {
|
5
|
+
private _changeDetectorRef;
|
6
|
+
private _name;
|
7
|
+
_enumList: any[];
|
8
|
+
id: string;
|
9
|
+
name: string;
|
10
|
+
ariaLabel: string;
|
11
|
+
label: string;
|
12
|
+
disabled: boolean;
|
13
|
+
required: boolean;
|
14
|
+
fieldset: boolean;
|
15
|
+
direction: 'row' | 'column';
|
16
|
+
enum: any;
|
17
|
+
sort: (a: any, b: any) => number;
|
18
|
+
valuesExclud: string[];
|
19
|
+
valuesOmit: string[];
|
20
|
+
val: any;
|
21
|
+
get value(): any;
|
22
|
+
set value(val: any);
|
23
|
+
selectionChange: EventEmitter<string>;
|
24
|
+
constructor(_changeDetectorRef: ChangeDetectorRef);
|
25
|
+
ngOnInit(): void;
|
26
|
+
onChange: any;
|
27
|
+
onTouch: any;
|
28
|
+
registerOnChange(fn: any): void;
|
29
|
+
registerOnTouched(fn: any): void;
|
30
|
+
writeValue(value: any): void;
|
31
|
+
changeRadioGroup({ value }: MatRadioChange): void;
|
32
|
+
validateOmitByKey(key: string): boolean;
|
33
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
export declare class RangePage {
|
4
|
+
start: number;
|
5
|
+
end: number;
|
6
|
+
getTotalCount(): number;
|
7
|
+
getRange(): number[];
|
8
|
+
constructor(start?: number, end?: number);
|
9
|
+
}
|
10
|
+
export declare class GIPIRangePageComponent implements OnInit, ControlValueAccessor {
|
11
|
+
elementRef: ElementRef;
|
12
|
+
private _changeDetectorRef;
|
13
|
+
private _name;
|
14
|
+
_startPage: number;
|
15
|
+
_endPage: number;
|
16
|
+
id: string;
|
17
|
+
name: string;
|
18
|
+
label: string;
|
19
|
+
tooltip: string;
|
20
|
+
placeholderStart: string;
|
21
|
+
placeholderEnd: string;
|
22
|
+
help: string;
|
23
|
+
private _min;
|
24
|
+
get min(): number;
|
25
|
+
set min(value: number);
|
26
|
+
private _max;
|
27
|
+
get max(): number;
|
28
|
+
set max(value: number);
|
29
|
+
private _step;
|
30
|
+
get step(): number;
|
31
|
+
set step(value: number);
|
32
|
+
private _required;
|
33
|
+
get required(): boolean;
|
34
|
+
set required(value: boolean);
|
35
|
+
private _disabled;
|
36
|
+
get disabled(): boolean;
|
37
|
+
set disabled(value: boolean);
|
38
|
+
onChange: Function;
|
39
|
+
onTouched: Function;
|
40
|
+
get formattedValue(): string;
|
41
|
+
constructor(elementRef: ElementRef, _changeDetectorRef: ChangeDetectorRef);
|
42
|
+
ngOnInit(): void;
|
43
|
+
ngOnDestroy(): void;
|
44
|
+
writeValue(value: RangePage): void;
|
45
|
+
registerOnChange(fn: Function): void;
|
46
|
+
registerOnTouched(fn: Function): void;
|
47
|
+
setDisabledState?(isDisabled: boolean): void;
|
48
|
+
private _initPage;
|
49
|
+
updateEndPage(): void;
|
50
|
+
updateStartPage(): void;
|
51
|
+
previous(): void;
|
52
|
+
next(): void;
|
53
|
+
selectText(input: HTMLInputElement): void;
|
54
|
+
private _propagateChange;
|
55
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
export interface RangeSlider {
|
4
|
+
from: number;
|
5
|
+
to: number;
|
6
|
+
}
|
7
|
+
export declare class GIPIRangeSliderComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor {
|
8
|
+
elementRef: ElementRef;
|
9
|
+
private _changeDetectorRef;
|
10
|
+
fromSlider: ElementRef;
|
11
|
+
toSlider: ElementRef;
|
12
|
+
private _name;
|
13
|
+
id: string;
|
14
|
+
name: string;
|
15
|
+
label: string;
|
16
|
+
help: string;
|
17
|
+
min: number;
|
18
|
+
max: number;
|
19
|
+
private _maxRange;
|
20
|
+
get maxRange(): number;
|
21
|
+
set maxRange(value: number);
|
22
|
+
private _fromValue;
|
23
|
+
get fromValue(): number;
|
24
|
+
set fromValue(value: number);
|
25
|
+
private _toValue;
|
26
|
+
get toValue(): number;
|
27
|
+
set toValue(value: number);
|
28
|
+
private _step;
|
29
|
+
get step(): number;
|
30
|
+
set step(value: number);
|
31
|
+
private _disabled;
|
32
|
+
get disabled(): boolean;
|
33
|
+
set disabled(value: boolean);
|
34
|
+
private _required;
|
35
|
+
get required(): boolean;
|
36
|
+
set required(value: boolean);
|
37
|
+
onChange: Function;
|
38
|
+
onTouched: Function;
|
39
|
+
constructor(elementRef: ElementRef, _changeDetectorRef: ChangeDetectorRef);
|
40
|
+
ngOnInit(): void;
|
41
|
+
ngAfterViewInit(): void;
|
42
|
+
ngOnDestroy(): void;
|
43
|
+
writeValue(value: RangeSlider): void;
|
44
|
+
registerOnChange(fn: any): void;
|
45
|
+
registerOnTouched(fn: any): void;
|
46
|
+
setDisabledState?(isDisabled: boolean): void;
|
47
|
+
controlFromInput(isByNgModel: boolean): void;
|
48
|
+
controlToInput(isByNgModel: boolean): void;
|
49
|
+
controlFromSlider(): void;
|
50
|
+
controlToSlider(): void;
|
51
|
+
private _getParsed;
|
52
|
+
private _fillSlider;
|
53
|
+
private _setToggleAccessible;
|
54
|
+
private _roundToStep;
|
55
|
+
private _notifyValueChange;
|
56
|
+
onBlur(): void;
|
57
|
+
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import { EventEmitter, OnInit, TrackByFunction } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
export declare class GIPISelectComponent<T> implements OnInit, ControlValueAccessor {
|
4
|
+
_overlayVisible: boolean;
|
5
|
+
_modelValue: T;
|
6
|
+
id: string;
|
7
|
+
name: string;
|
8
|
+
ariaLabel: string;
|
9
|
+
label: string;
|
10
|
+
placeholder: string;
|
11
|
+
disabled: boolean;
|
12
|
+
required: boolean;
|
13
|
+
iconPrefix: string;
|
14
|
+
iconPrefixWidth: string | number;
|
15
|
+
iconPrefixHeight: string | number;
|
16
|
+
svgIconPrefix: string;
|
17
|
+
iconSuffix: string;
|
18
|
+
iconSuffixWidth: string | number;
|
19
|
+
iconSuffixHeight: string | number;
|
20
|
+
svgIconSuffix: string;
|
21
|
+
property: string;
|
22
|
+
propertyFn: (obj: T) => string;
|
23
|
+
options: T[];
|
24
|
+
trackyBy: string;
|
25
|
+
set model(model: any);
|
26
|
+
get model(): any;
|
27
|
+
onClick: EventEmitter<MouseEvent>;
|
28
|
+
onShowOverlay: EventEmitter<void>;
|
29
|
+
onModelChange: EventEmitter<T>;
|
30
|
+
onSelectionChange: EventEmitter<T>;
|
31
|
+
get optionSelectedText(): string;
|
32
|
+
trackByOption: TrackByFunction<T>;
|
33
|
+
constructor();
|
34
|
+
ngOnInit(): void;
|
35
|
+
onChange: any;
|
36
|
+
onTouch: any;
|
37
|
+
writeValue(value: any): void;
|
38
|
+
registerOnChange(fn: any): void;
|
39
|
+
registerOnTouched(fn: any): void;
|
40
|
+
toggleOverlay(): void;
|
41
|
+
getPropertyValue(entity: T): string;
|
42
|
+
private _getValue;
|
43
|
+
isOptionActive(option: T): boolean;
|
44
|
+
onClickOption(option: T): void;
|
45
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
export declare class GIPISelectButtonComponent implements ControlValueAccessor, OnInit {
|
4
|
+
private _elementRef;
|
5
|
+
private _changeDetectorRef;
|
6
|
+
readonly isButtonPrimary: boolean;
|
7
|
+
readonly isButtonSecondary: boolean;
|
8
|
+
id: string | number;
|
9
|
+
arialLabel: string;
|
10
|
+
dataKey: string;
|
11
|
+
label: string;
|
12
|
+
required: boolean;
|
13
|
+
options: any[];
|
14
|
+
optionLabel: string;
|
15
|
+
optionValue: string;
|
16
|
+
optionDisabled: string;
|
17
|
+
multiple: boolean;
|
18
|
+
disabled: boolean;
|
19
|
+
onOptionClick: EventEmitter<any>;
|
20
|
+
onChange: EventEmitter<any>;
|
21
|
+
value: any;
|
22
|
+
onModelChange: Function;
|
23
|
+
onModelTouched: Function;
|
24
|
+
constructor(_elementRef: ElementRef, _changeDetectorRef: ChangeDetectorRef);
|
25
|
+
ngOnInit(): void;
|
26
|
+
writeValue(obj: any): void;
|
27
|
+
registerOnChange(fn: any): void;
|
28
|
+
registerOnTouched(fn: any): void;
|
29
|
+
setDisabledState?(isDisabled: boolean): void;
|
30
|
+
getOptionLabel(option: any): any;
|
31
|
+
getOptionValue(option: any): any;
|
32
|
+
isOptionDisabled(option: any): any;
|
33
|
+
onItemClick(event: any, option: any, index: number): void;
|
34
|
+
isSelected(option: any): boolean;
|
35
|
+
removeOption(option: any): void;
|
36
|
+
onBlur(): void;
|
37
|
+
private _getHostElement;
|
38
|
+
private _hasHostAttributes;
|
39
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { AfterContentInit, OnInit } from '@angular/core';
|
2
|
+
import { Observable } from 'rxjs';
|
3
|
+
import { BreakpointObserverService } from '../../../../core/services/breakpoint-observer.service';
|
4
|
+
import { NavService } from '../../../../core/services/nav.service';
|
5
|
+
export declare class GIPISidenavContainerComponent implements OnInit, AfterContentInit {
|
6
|
+
private _navService;
|
7
|
+
private _breakpointObserverService;
|
8
|
+
constructor(_navService: NavService, _breakpointObserverService: BreakpointObserverService);
|
9
|
+
ngOnInit(): void;
|
10
|
+
ngAfterContentInit(): void;
|
11
|
+
get isOpened(): Observable<boolean>;
|
12
|
+
get isScreenLarge(): Observable<boolean>;
|
13
|
+
onClickBackdrop(): void;
|
14
|
+
onResize(event: UIEvent): void;
|
15
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
|
2
|
+
import { MatSidenav } from '@angular/material/sidenav';
|
3
|
+
import { Router } from '@angular/router';
|
4
|
+
import { Observable } from 'rxjs';
|
5
|
+
import { MenuDTO } from '../../../../core/models/dto/menu.dto';
|
6
|
+
import { BreakpointObserverService } from '../../../../core/services/breakpoint-observer.service';
|
7
|
+
import { NavService } from '../../../../core/services/nav.service';
|
8
|
+
export declare class GIPISidenavComponent implements OnInit, AfterViewInit {
|
9
|
+
private _navService;
|
10
|
+
private _breakpointObserverService;
|
11
|
+
private _router;
|
12
|
+
sidenav: MatSidenav;
|
13
|
+
_levelOneMenuCollapsableSelected: MenuDTO;
|
14
|
+
_levelTwoMenuCollapsableSelected: MenuDTO;
|
15
|
+
_mouseEnter: boolean;
|
16
|
+
menuItems: MenuDTO[];
|
17
|
+
labelToggle: string;
|
18
|
+
iconConfiguration: string;
|
19
|
+
svgIconConfiguration: string;
|
20
|
+
labelConfiguration: string;
|
21
|
+
showConfiguration: boolean;
|
22
|
+
onClickMenuItem: EventEmitter<MenuDTO | null>;
|
23
|
+
constructor(_navService: NavService, _breakpointObserverService: BreakpointObserverService, _router: Router);
|
24
|
+
ngOnInit(): void;
|
25
|
+
ngAfterViewInit(): void;
|
26
|
+
get isOpened(): Observable<boolean>;
|
27
|
+
get isScreenLarge(): Observable<boolean>;
|
28
|
+
get submenuBackButtonName(): Observable<string>;
|
29
|
+
get levelMenuCollapsableSelected(): Observable<MenuDTO[]>;
|
30
|
+
toggleSidenav(): void;
|
31
|
+
onMenuCollapsableSelected(menu: MenuDTO): void;
|
32
|
+
onMenuCollapsableReset(menuList: MenuDTO[]): void;
|
33
|
+
onMenuCollapsableGoBack(): void;
|
34
|
+
isMenuActive(menu: MenuDTO): boolean;
|
35
|
+
isMenuCollapsableActive(menu: MenuDTO): boolean;
|
36
|
+
onMenuItemSelected(menu?: MenuDTO, closeNav?: boolean): void;
|
37
|
+
getMenuName(name: string): string;
|
38
|
+
onMouseEnter(): void;
|
39
|
+
onMouseLeave(): void;
|
40
|
+
}
|