@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,104 @@
|
|
1
|
+
import { TableColumnModel } from './table-column.model';
|
2
|
+
export class TableColumnBuilderModel {
|
3
|
+
constructor() {
|
4
|
+
this._sortable$ = false;
|
5
|
+
this._visible$ = true;
|
6
|
+
this._checkboxable$ = false;
|
7
|
+
this._align$ = 'left';
|
8
|
+
}
|
9
|
+
static instance() {
|
10
|
+
return new TableColumnBuilderModel();
|
11
|
+
}
|
12
|
+
name(name) {
|
13
|
+
this._name$ = name;
|
14
|
+
return this;
|
15
|
+
}
|
16
|
+
property(property) {
|
17
|
+
this._property$ = property;
|
18
|
+
return this;
|
19
|
+
}
|
20
|
+
value(value) {
|
21
|
+
this._value$ = value;
|
22
|
+
return this;
|
23
|
+
}
|
24
|
+
sortable(sortable) {
|
25
|
+
this._sortable$ = sortable;
|
26
|
+
return this;
|
27
|
+
}
|
28
|
+
visible(visible) {
|
29
|
+
this._visible$ = visible;
|
30
|
+
return this;
|
31
|
+
}
|
32
|
+
checkboxable(checkboxable) {
|
33
|
+
this._checkboxable$ = checkboxable;
|
34
|
+
return this;
|
35
|
+
}
|
36
|
+
columnSpan(columnSpan) {
|
37
|
+
this._columnSpan$ = columnSpan;
|
38
|
+
return this;
|
39
|
+
}
|
40
|
+
columnSpanXs(columnSpanXs) {
|
41
|
+
this._columnSpanXs$ = columnSpanXs;
|
42
|
+
return this;
|
43
|
+
}
|
44
|
+
columnSpanSm(columnSpanSm) {
|
45
|
+
this._columnSpanSm$ = columnSpanSm;
|
46
|
+
return this;
|
47
|
+
}
|
48
|
+
columnSpanMd(columnSpanMd) {
|
49
|
+
this._columnSpanMd$ = columnSpanMd;
|
50
|
+
return this;
|
51
|
+
}
|
52
|
+
columnSpanLg(columnSpanLg) {
|
53
|
+
this._columnSpanLg$ = columnSpanLg;
|
54
|
+
return this;
|
55
|
+
}
|
56
|
+
columnSpanXl(columnSpanXl) {
|
57
|
+
this._columnSpanXl$ = columnSpanXl;
|
58
|
+
return this;
|
59
|
+
}
|
60
|
+
minWidth(minWidth) {
|
61
|
+
this._minWidth$ = minWidth;
|
62
|
+
return this;
|
63
|
+
}
|
64
|
+
maxWidth(maxWidth) {
|
65
|
+
this._maxWidth$ = maxWidth;
|
66
|
+
return this;
|
67
|
+
}
|
68
|
+
paddingInline(paddingInline) {
|
69
|
+
this._paddingInline$ = paddingInline;
|
70
|
+
return this;
|
71
|
+
}
|
72
|
+
align(align) {
|
73
|
+
this._align$ = align;
|
74
|
+
return this;
|
75
|
+
}
|
76
|
+
templateCell(templateCell) {
|
77
|
+
this._templateCell$ = templateCell;
|
78
|
+
return this;
|
79
|
+
}
|
80
|
+
templateHeader(templateHeader) {
|
81
|
+
this._templateHeader$ = templateHeader;
|
82
|
+
return this;
|
83
|
+
}
|
84
|
+
sliceLength(sliceLength) {
|
85
|
+
this._sliceLength$ = sliceLength;
|
86
|
+
return this;
|
87
|
+
}
|
88
|
+
comparator(comparator) {
|
89
|
+
this._comparator$ = comparator;
|
90
|
+
return this;
|
91
|
+
}
|
92
|
+
pipe(pipe) {
|
93
|
+
this._pipe$ = pipe;
|
94
|
+
return this;
|
95
|
+
}
|
96
|
+
action(action) {
|
97
|
+
this._action$ = action;
|
98
|
+
return this;
|
99
|
+
}
|
100
|
+
build() {
|
101
|
+
return new TableColumnModel(this._name$, this._property$, this._value$, this._sortable$, this._visible$, this._checkboxable$, this._columnSpan$, this._columnSpanXs$, this._columnSpanSm$, this._columnSpanMd$, this._columnSpanLg$, this._columnSpanXl$, this._minWidth$, this._maxWidth$, this._paddingInline$, this._align$, this._templateCell$, this._templateHeader$, this._sliceLength$, this._comparator$, this._pipe$, this._action$);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY29sdW1uLWJ1aWxkZXIubW9kZWwuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJzaGFyZWQvZ2lwaS1jb21wb25lbnRzL3RhYmxlL21vZGVscy90YWJsZS1jb2x1bW4tYnVpbGRlci5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFHQSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUV4RCxNQUFNLE9BQU8sdUJBQXVCO0lBOENoQztRQXRDUSxlQUFVLEdBQVksS0FBSyxDQUFDO1FBRTVCLGNBQVMsR0FBWSxJQUFJLENBQUM7UUFFMUIsbUJBQWMsR0FBWSxLQUFLLENBQUM7UUFvQmhDLFlBQU8sR0FBZ0MsTUFBTSxDQUFDO0lBY3RDLENBQUM7SUFFVixNQUFNLENBQUMsUUFBUTtRQUNsQixPQUFPLElBQUksdUJBQXVCLEVBQUUsQ0FBQztJQUN6QyxDQUFDO0lBRU0sSUFBSSxDQUFDLElBQVk7UUFDcEIsSUFBSSxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUM7UUFDbkIsT0FBTyxJQUFJLENBQUM7SUFDaEIsQ0FBQztJQUVNLFFBQVEsQ0FBQyxRQUFnQjtRQUM1QixJQUFJLENBQUMsVUFBVSxHQUFHLFFBQVEsQ0FBQztRQUMzQixPQUFPLElBQUksQ0FBQztJQUNoQixDQUFDO0lBRU0sS0FBSyxDQUFDLEtBQWtFO1FBQzNFLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ3JCLE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7SUFFTSxRQUFRLENBQUMsUUFBaUI7UUFDN0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxRQUFRLENBQUM7UUFDM0IsT0FBTyxJQUFJLENBQUM7SUFDaEIsQ0FBQztJQUVNLE9BQU8sQ0FBQyxPQUFnQjtRQUMzQixJQUFJLENBQUMsU0FBUyxHQUFHLE9BQU8sQ0FBQztRQUN6QixPQUFPLElBQUksQ0FBQztJQUNoQixDQUFDO0lB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QUksQ0FBQyxVQUFVLEVBQ2YsSUFBSSxDQUFDLFVBQVUsRUFDZixJQUFJLENBQUMsZUFBZSxFQUNwQixJQUFJLENBQUMsT0FBTyxFQUNaLElBQUksQ0FBQyxjQUFjLEVBQ25CLElBQUksQ0FBQyxnQkFBZ0IsRUFDckIsSUFBSSxDQUFDLGFBQWEsRUFDbEIsSUFBSSxDQUFDLFlBQVksRUFDakIsSUFBSSxDQUFDLE1BQU0sRUFDWCxJQUFJLENBQUMsUUFBUSxDQUNoQixDQUFDO0lBQ04sQ0FBQztDQUVKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgUGlwZVRyYW5zZm9ybU1vZGVsIH0gZnJvbSAnLi9waXBlLXRyYW5zZm9ybS5tb2RlbCc7XG5pbXBvcnQgeyBUYWJsZUNvbHVtbk1vZGVsIH0gZnJvbSAnLi90YWJsZS1jb2x1bW4ubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgVGFibGVDb2x1bW5CdWlsZGVyTW9kZWwge1xuXG4gICAgcHJpdmF0ZSBfbmFtZSQ6IHN0cmluZztcblxuICAgIHByaXZhdGUgX3Byb3BlcnR5JDogc3RyaW5nO1xuXG4gICAgcHJpdmF0ZSBfdmFsdWUkOiBzdHJpbmcgfCBudW1iZXIgfCBEYXRlIHwgKChvYmo6IG9iamVjdCkgPT4gc3RyaW5nIHwgbnVtYmVyKTtcblxuICAgIHByaXZhdGUgX3NvcnRhYmxlJDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gICAgcHJpdmF0ZSBfdmlzaWJsZSQ6IGJvb2xlYW4gPSB0cnVlO1xuXG4gICAgcHJpdmF0ZSBfY2hlY2tib3hhYmxlJDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gICAgcHJpdmF0ZSBfY29sdW1uU3BhbiQ6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX2NvbHVtblNwYW5YcyQ6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX2NvbHVtblNwYW5TbSQ6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX2NvbHVtblNwYW5NZCQ6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX2NvbHVtblNwYW5MZyQ6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX2NvbHVtblNwYW5YbCQ6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX21pbldpZHRoJDogbnVtYmVyO1xuXG4gICAgcHJpdmF0ZSBfbWF4V2lkdGgkOiBudW1iZXI7XG5cbiAgICBwcml2YXRlIF9wYWRkaW5nSW5saW5lJDogbnVtYmVyO1xuXG4gICAgcHJpdmF0ZSBfYWxpZ24kOiAnbGVmdCcgfCAnY2VudGVyJyB8ICdyaWdodCcgPSAnbGVmdCc7XG5cbiAgICBwcml2YXRlIF90ZW1wbGF0ZUNlbGwkOiBUZW1wbGF0ZVJlZjxhbnk+O1xuXG4gICAgcHJpdmF0ZSBfdGVtcGxhdGVIZWFkZXIkOiBUZW1wbGF0ZVJlZjxhbnk+O1xuXG4gICAgcHJpdmF0ZSBfc2xpY2VMZW5ndGgkOiBudW1iZXI7XG5cbiAgICBwcml2YXRlIF9jb21wYXJhdG9yJDogbnVtYmVyO1xuXG4gICAgcHJpdmF0ZSBfcGlwZSQ6IFBpcGVUcmFuc2Zvcm1Nb2RlbDtcblxuICAgIHByaXZhdGUgX2FjdGlvbiQ6IChvYmo6IGFueSkgPT4gdm9pZDtcblxuICAgIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgICBwdWJsaWMgc3RhdGljIGluc3RhbmNlKCk6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgcmV0dXJuIG5ldyBUYWJsZUNvbHVtbkJ1aWxkZXJNb2RlbCgpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuYW1lKG5hbWU6IHN0cmluZyk6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fbmFtZSQgPSBuYW1lO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgcHJvcGVydHkocHJvcGVydHk6IHN0cmluZyk6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fcHJvcGVydHkkID0gcHJvcGVydHk7XG4gICAgICAgIHJldHVybiB0aGlzO1xuICAgIH1cblxuICAgIHB1YmxpYyB2YWx1ZSh2YWx1ZTogc3RyaW5nIHwgbnVtYmVyIHwgRGF0ZSB8ICgob2JqOiBvYmplY3QpID0+IHN0cmluZyB8IG51bWJlcikpOiBUYWJsZUNvbHVtbkJ1aWxkZXJNb2RlbCB7XG4gICAgICAgIHRoaXMuX3ZhbHVlJCA9IHZhbHVlO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgc29ydGFibGUoc29ydGFibGU6IGJvb2xlYW4pOiBUYWJsZUNvbHVtbkJ1aWxkZXJNb2RlbCB7XG4gICAgICAgIHRoaXMuX3NvcnRhYmxlJCA9IHNvcnRhYmxlO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgdmlzaWJsZSh2aXNpYmxlOiBib29sZWFuKTogVGFibGVDb2x1bW5CdWlsZGVyTW9kZWwge1xuICAgICAgICB0aGlzLl92aXNpYmxlJCA9IHZpc2libGU7XG4gICAgICAgIHJldHVybiB0aGlzO1xuICAgIH1cblxuICAgIHB1YmxpYyBjaGVja2JveGFibGUoY2hlY2tib3hhYmxlOiBib29sZWFuKTogVGFibGVDb2x1bW5CdWlsZGVyTW9kZWwge1xuICAgICAgICB0aGlzLl9jaGVja2JveGFibGUkID0gY2hlY2tib3hhYmxlO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgY29sdW1uU3Bhbihjb2x1bW5TcGFuOiBudW1iZXIpOiBUYWJsZUNvbHVtbkJ1aWxkZXJNb2RlbCB7XG4gICAgICAgIHRoaXMuX2NvbHVtblNwYW4kID0gY29sdW1uU3BhbjtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGNvbHVtblNwYW5Ycyhjb2x1bW5TcGFuWHM6IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fY29sdW1uU3BhblhzJCA9IGNvbHVtblNwYW5YcztcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGNvbHVtblNwYW5TbShjb2x1bW5TcGFuU206IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fY29sdW1uU3BhblNtJCA9IGNvbHVtblNwYW5TbTtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGNvbHVtblNwYW5NZChjb2x1bW5TcGFuTWQ6IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fY29sdW1uU3Bhbk1kJCA9IGNvbHVtblNwYW5NZDtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGNvbHVtblNwYW5MZyhjb2x1bW5TcGFuTGc6IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fY29sdW1uU3BhbkxnJCA9IGNvbHVtblNwYW5MZztcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGNvbHVtblNwYW5YbChjb2x1bW5TcGFuWGw6IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fY29sdW1uU3BhblhsJCA9IGNvbHVtblNwYW5YbDtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIG1pbldpZHRoKG1pbldpZHRoOiBudW1iZXIpOiBUYWJsZUNvbHVtbkJ1aWxkZXJNb2RlbCB7XG4gICAgICAgIHRoaXMuX21pbldpZHRoJCA9IG1pbldpZHRoO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgbWF4V2lkdGgobWF4V2lkdGg6IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fbWF4V2lkdGgkID0gbWF4V2lkdGg7XG4gICAgICAgIHJldHVybiB0aGlzO1xuICAgIH1cblxuICAgIHB1YmxpYyBwYWRkaW5nSW5saW5lKHBhZGRpbmdJbmxpbmU6IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fcGFkZGluZ0lubGluZSQgPSBwYWRkaW5nSW5saW5lO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgYWxpZ24oYWxpZ246ICdsZWZ0JyB8ICdjZW50ZXInIHwgJ3JpZ2h0Jyk6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fYWxpZ24kID0gYWxpZ247XG4gICAgICAgIHJldHVybiB0aGlzO1xuICAgIH1cblxuICAgIHB1YmxpYyB0ZW1wbGF0ZUNlbGwodGVtcGxhdGVDZWxsOiBUZW1wbGF0ZVJlZjxhbnk+KTogVGFibGVDb2x1bW5CdWlsZGVyTW9kZWwge1xuICAgICAgICB0aGlzLl90ZW1wbGF0ZUNlbGwkID0gdGVtcGxhdGVDZWxsO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgdGVtcGxhdGVIZWFkZXIodGVtcGxhdGVIZWFkZXI6IFRlbXBsYXRlUmVmPGFueT4pOiBUYWJsZUNvbHVtbkJ1aWxkZXJNb2RlbCB7XG4gICAgICAgIHRoaXMuX3RlbXBsYXRlSGVhZGVyJCA9IHRlbXBsYXRlSGVhZGVyO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgc2xpY2VMZW5ndGgoc2xpY2VMZW5ndGg6IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fc2xpY2VMZW5ndGgkID0gc2xpY2VMZW5ndGg7XG4gICAgICAgIHJldHVybiB0aGlzO1xuICAgIH1cblxuICAgIHB1YmxpYyBjb21wYXJhdG9yKGNvbXBhcmF0b3I6IG51bWJlcik6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fY29tcGFyYXRvciQgPSBjb21wYXJhdG9yO1xuICAgICAgICByZXR1cm4gdGhpcztcbiAgICB9XG5cbiAgICBwdWJsaWMgcGlwZShwaXBlOiBQaXBlVHJhbnNmb3JtTW9kZWwpOiBUYWJsZUNvbHVtbkJ1aWxkZXJNb2RlbCB7XG4gICAgICAgIHRoaXMuX3BpcGUkID0gcGlwZTtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGFjdGlvbihhY3Rpb246IChvYmo6IGFueSkgPT4gdm9pZCk6IFRhYmxlQ29sdW1uQnVpbGRlck1vZGVsIHtcbiAgICAgICAgdGhpcy5fYWN0aW9uJCA9IGFjdGlvbjtcbiAgICAgICAgcmV0dXJuIHRoaXM7XG4gICAgfVxuXG4gICAgcHVibGljIGJ1aWxkKCk6IFRhYmxlQ29sdW1uTW9kZWwge1xuICAgICAgICByZXR1cm4gbmV3IFRhYmxlQ29sdW1uTW9kZWwoXG4gICAgICAgICAgICB0aGlzLl9uYW1lJCxcbiAgICAgICAgICAgIHRoaXMuX3Byb3BlcnR5JCxcbiAgICAgICAgICAgIHRoaXMuX3ZhbHVlJCxcbiAgICAgICAgICAgIHRoaXMuX3NvcnRhYmxlJCxcbiAgICAgICAgICAgIHRoaXMuX3Zpc2libGUkLFxuICAgICAgICAgICAgdGhpcy5fY2hlY2tib3hhYmxlJCxcbiAgICAgICAgICAgIHRoaXMuX2NvbHVtblNwYW4kLFxuICAgICAgICAgICAgdGhpcy5fY29sdW1uU3BhblhzJCxcbiAgICAgICAgICAgIHRoaXMuX2NvbHVtblNwYW5TbSQsXG4gICAgICAgICAgICB0aGlzLl9jb2x1bW5TcGFuTWQkLFxuICAgICAgICAgICAgdGhpcy5fY29sdW1uU3BhbkxnJCxcbiAgICAgICAgICAgIHRoaXMuX2NvbHVtblNwYW5YbCQsXG4gICAgICAgICAgICB0aGlzLl9taW5XaWR0aCQsXG4gICAgICAgICAgICB0aGlzLl9tYXhXaWR0aCQsXG4gICAgICAgICAgICB0aGlzLl9wYWRkaW5nSW5saW5lJCxcbiAgICAgICAgICAgIHRoaXMuX2FsaWduJCxcbiAgICAgICAgICAgIHRoaXMuX3RlbXBsYXRlQ2VsbCQsXG4gICAgICAgICAgICB0aGlzLl90ZW1wbGF0ZUhlYWRlciQsXG4gICAgICAgICAgICB0aGlzLl9zbGljZUxlbmd0aCQsXG4gICAgICAgICAgICB0aGlzLl9jb21wYXJhdG9yJCxcbiAgICAgICAgICAgIHRoaXMuX3BpcGUkLFxuICAgICAgICAgICAgdGhpcy5fYWN0aW9uJCxcbiAgICAgICAgKTtcbiAgICB9XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,162 @@
|
|
1
|
+
export class TableColumnModel {
|
2
|
+
constructor(name, property, value, sortable, visible, checkboxable, columnSpan, columnSpanXs, columnSpanSm, columnSpanMd, columnSpanLg, columnSpanXl, minWidth, maxWidth, paddingInline, align, templateCell, templateHeader, sliceLength, comparator, pipe, action) {
|
3
|
+
this._sortable = false;
|
4
|
+
this._visible = true;
|
5
|
+
this._checkboxable = false;
|
6
|
+
this._name = name;
|
7
|
+
this._property = property;
|
8
|
+
this._value = value;
|
9
|
+
this._sortable = sortable;
|
10
|
+
this._visible = visible;
|
11
|
+
this._checkboxable = checkboxable;
|
12
|
+
this._columnSpan = columnSpan;
|
13
|
+
this._columnSpanXs = columnSpanXs;
|
14
|
+
this._columnSpanSm = columnSpanSm;
|
15
|
+
this._columnSpanMd = columnSpanMd;
|
16
|
+
this._columnSpanLg = columnSpanLg;
|
17
|
+
this._columnSpanXl = columnSpanXl;
|
18
|
+
this._minWidth = minWidth;
|
19
|
+
this._maxWidth = maxWidth;
|
20
|
+
this._paddingInline = paddingInline;
|
21
|
+
this._align = align;
|
22
|
+
this._templateCell = templateCell;
|
23
|
+
this._templateHeader = templateHeader;
|
24
|
+
this._sliceLength = sliceLength;
|
25
|
+
this._comparator = comparator;
|
26
|
+
this._pipe = pipe;
|
27
|
+
this._action = action;
|
28
|
+
}
|
29
|
+
get name() {
|
30
|
+
return this._name;
|
31
|
+
}
|
32
|
+
set name(value) {
|
33
|
+
this._name = value;
|
34
|
+
}
|
35
|
+
get property() {
|
36
|
+
return this._property;
|
37
|
+
}
|
38
|
+
set property(value) {
|
39
|
+
this._property = value;
|
40
|
+
}
|
41
|
+
get value() {
|
42
|
+
return this._value;
|
43
|
+
}
|
44
|
+
set value(value) {
|
45
|
+
this._value = value;
|
46
|
+
}
|
47
|
+
get sortable() {
|
48
|
+
return this._sortable;
|
49
|
+
}
|
50
|
+
set sortable(value) {
|
51
|
+
this._sortable = value;
|
52
|
+
}
|
53
|
+
get visible() {
|
54
|
+
return this._visible;
|
55
|
+
}
|
56
|
+
set visible(value) {
|
57
|
+
this._visible = value;
|
58
|
+
}
|
59
|
+
get checkboxable() {
|
60
|
+
return this._checkboxable;
|
61
|
+
}
|
62
|
+
set checkboxable(value) {
|
63
|
+
this._checkboxable = value;
|
64
|
+
}
|
65
|
+
get columnSpan() {
|
66
|
+
return this._columnSpan;
|
67
|
+
}
|
68
|
+
set columnSpan(value) {
|
69
|
+
this._columnSpan = value;
|
70
|
+
}
|
71
|
+
get columnSpanXs() {
|
72
|
+
return this._columnSpanXs;
|
73
|
+
}
|
74
|
+
set columnSpanXs(value) {
|
75
|
+
this._columnSpanXs = value;
|
76
|
+
}
|
77
|
+
get columnSpanSm() {
|
78
|
+
return this._columnSpanSm;
|
79
|
+
}
|
80
|
+
set columnSpanSm(value) {
|
81
|
+
this._columnSpanSm = value;
|
82
|
+
}
|
83
|
+
get columnSpanMd() {
|
84
|
+
return this._columnSpanMd;
|
85
|
+
}
|
86
|
+
set columnSpanMd(value) {
|
87
|
+
this._columnSpanMd = value;
|
88
|
+
}
|
89
|
+
get columnSpanLg() {
|
90
|
+
return this._columnSpanLg;
|
91
|
+
}
|
92
|
+
set columnSpanLg(value) {
|
93
|
+
this._columnSpanLg = value;
|
94
|
+
}
|
95
|
+
get columnSpanXl() {
|
96
|
+
return this._columnSpanXl;
|
97
|
+
}
|
98
|
+
set columnSpanXl(value) {
|
99
|
+
this._columnSpanXl = value;
|
100
|
+
}
|
101
|
+
get minWidth() {
|
102
|
+
return this._minWidth;
|
103
|
+
}
|
104
|
+
set minWidth(value) {
|
105
|
+
this._minWidth = value;
|
106
|
+
}
|
107
|
+
get maxWidth() {
|
108
|
+
return this._maxWidth;
|
109
|
+
}
|
110
|
+
set maxWidth(value) {
|
111
|
+
this._maxWidth = value;
|
112
|
+
}
|
113
|
+
get paddingInline() {
|
114
|
+
return this._paddingInline;
|
115
|
+
}
|
116
|
+
set paddingInline(value) {
|
117
|
+
this._paddingInline = value;
|
118
|
+
}
|
119
|
+
get align() {
|
120
|
+
return this._align;
|
121
|
+
}
|
122
|
+
set align(value) {
|
123
|
+
this._align = value;
|
124
|
+
}
|
125
|
+
get templateCell() {
|
126
|
+
return this._templateCell;
|
127
|
+
}
|
128
|
+
set templateCell(value) {
|
129
|
+
this._templateCell = value;
|
130
|
+
}
|
131
|
+
get templateHeader() {
|
132
|
+
return this._templateHeader;
|
133
|
+
}
|
134
|
+
set templateHeader(value) {
|
135
|
+
this._templateHeader = value;
|
136
|
+
}
|
137
|
+
get sliceLength() {
|
138
|
+
return this._sliceLength;
|
139
|
+
}
|
140
|
+
set sliceLength(value) {
|
141
|
+
this._sliceLength = value;
|
142
|
+
}
|
143
|
+
get comparator() {
|
144
|
+
return this._comparator;
|
145
|
+
}
|
146
|
+
set comparator(value) {
|
147
|
+
this._comparator = value;
|
148
|
+
}
|
149
|
+
get pipe() {
|
150
|
+
return this._pipe;
|
151
|
+
}
|
152
|
+
set pipe(value) {
|
153
|
+
this._pipe = value;
|
154
|
+
}
|
155
|
+
get action() {
|
156
|
+
return this._action;
|
157
|
+
}
|
158
|
+
set action(value) {
|
159
|
+
this._action = value;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY29sdW1uLm1vZGVsLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsic2hhcmVkL2dpcGktY29tcG9uZW50cy90YWJsZS9tb2RlbHMvdGFibGUtY29sdW1uLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUlBLE1BQU0sT0FBTyxnQkFBZ0I7SUFpRHpCLFlBQ0ksSUFBWSxFQUNaLFFBQWdCLEVBQ2hCLEtBQWtFLEVBQ2xFLFFBQWlCLEVBQ2pCLE9BQWdCLEVBQ2hCLFlBQXFCLEVBQ3JCLFVBQWtCLEVBQ2xCLFlBQW9CLEVBQ3BCLFlBQW9CLEVBQ3BCLFlBQW9CLEVBQ3BCLFlBQW9CLEVBQ3BCLFlBQW9CLEVBQ3BCLFFBQWdCLEVBQ2hCLFFBQWdCLEVBQ2hCLGFBQXFCLEVBQ3JCLEtBQWtDLEVBQ2xDLFlBQThCLEVBQzlCLGNBQWdDLEVBQ2hDLFdBQW1CLEVBQ25CLFVBQWUsRUFDZixJQUF3QixFQUN4QixNQUEwQjtRQS9EdEIsY0FBUyxHQUFZLEtBQUssQ0FBQztRQUUzQixhQUFRLEdBQVksSUFBSSxDQUFDO1FBRXpCLGtCQUFhLEdBQVksS0FBSyxDQUFDO1FBNkRuQyxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQztRQUNsQixJQUFJLENBQUMsU0FBUyxHQUFHLFFBQVEsQ0FBQztRQUMxQixJQUFJLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQztRQUNwQixJQUFJLENBQUMsU0FBUyxHQUFHLFFBQVEsQ0FBQztRQUMxQixJQUFJLENBQUMsUUFBUSxHQUFHLE9BQU8sQ0FBQztRQUN4QixJQUFJLENBQUMsYUFBYSxHQUFHLFlBQVksQ0FBQztRQUNsQyxJQUFJLENBQUMsV0FBVyxHQUFHLFVBQVUsQ0FBQztRQUM5QixJQUFJLENBQUMsYUFBYSxHQUFHLFlBQVksQ0FBQztRQUNsQyxJQUFJLENBQUMsYUFBYSxHQUFHLFlBQVksQ0FBQztRQUNsQyxJQUFJLENBQUMsYUFBYSxHQUFH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QUNELElBQVcsY0FBYyxDQUFDLEtBQXVCO1FBQzdDLElBQUksQ0FBQyxlQUFlLEdBQUcsS0FBSyxDQUFDO0lBQ2pDLENBQUM7SUFFRCxJQUFXLFdBQVc7UUFDbEIsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDO0lBQzdCLENBQUM7SUFDRCxJQUFXLFdBQVcsQ0FBQyxLQUFhO1FBQ2hDLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO0lBQzlCLENBQUM7SUFFRCxJQUFXLFVBQVU7UUFDakIsT0FBTyxJQUFJLENBQUMsV0FBVyxDQUFDO0lBQzVCLENBQUM7SUFDRCxJQUFXLFVBQVUsQ0FBQyxLQUFVO1FBQzVCLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO0lBQzdCLENBQUM7SUFFRCxJQUFXLElBQUk7UUFDWCxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDdEIsQ0FBQztJQUNELElBQVcsSUFBSSxDQUFDLEtBQXlCO1FBQ3JDLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3ZCLENBQUM7SUFFRCxJQUFXLE1BQU07UUFDYixPQUFPLElBQUksQ0FBQyxPQUFPLENBQUM7SUFDeEIsQ0FBQztJQUNELElBQVcsTUFBTSxDQUFDLEtBQXlCO1FBQ3ZDLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO0lBQ3pCLENBQUM7Q0FFSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IFBpcGVUcmFuc2Zvcm1Nb2RlbCB9IGZyb20gJy4vcGlwZS10cmFuc2Zvcm0ubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgVGFibGVDb2x1bW5Nb2RlbCB7XG5cbiAgICBwcml2YXRlIF9uYW1lOiBzdHJpbmc7XG5cbiAgICBwcml2YXRlIF9wcm9wZXJ0eTogc3RyaW5nO1xuXG4gICAgcHJpdmF0ZSBfdmFsdWU6IHN0cmluZyB8IG51bWJlciB8IERhdGUgfCAoKG9iajogb2JqZWN0KSA9PiBzdHJpbmcgfCBudW1iZXIpO1xuXG4gICAgcHJpdmF0ZSBfc29ydGFibGU6IGJvb2xlYW4gPSBmYWxzZTtcblxuICAgIHByaXZhdGUgX3Zpc2libGU6IGJvb2xlYW4gPSB0cnVlO1xuXG4gICAgcHJpdmF0ZSBfY2hlY2tib3hhYmxlOiBib29sZWFuID0gZmFsc2U7XG5cbiAgICBwcml2YXRlIF9jb2x1bW5TcGFuOiBudW1iZXI7XG5cbiAgICBwcml2YXRlIF9jb2x1bW5TcGFuWHM6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX2NvbHVtblNwYW5TbTogbnVtYmVyO1xuXG4gICAgcHJpdmF0ZSBfY29sdW1uU3Bhbk1kOiBudW1iZXI7XG5cbiAgICBwcml2YXRlIF9jb2x1bW5TcGFuTGc6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX2NvbHVtblNwYW5YbDogbnVtYmVyO1xuXG4gICAgcHJpdmF0ZSBfbWluV2lkdGg6IG51bWJlcjtcblxuICAgIHByaXZhdGUgX21heFdpZHRoOiBudW1iZXI7XG5cbiAgICBwcml2YXRlIF9wYWRkaW5nSW5saW5lOiBudW1iZXI7XG5cbiAgICBwcml2YXRlIF9hbGlnbjogJ2xlZnQnIHwgJ2NlbnRlcicgfCAncmlnaHQnO1xuXG4gICAgcHJpdmF0ZSBfdGVtcGxhdGVDZWxsOiBUZW1wbGF0ZVJlZjxhbnk+O1xuXG4gICAgcHJpdmF0ZSBfdGVtcGxhdGVIZWFkZXI6IFRlbXBsYXRlUmVmPGFueT47XG5cbiAgICBwcml2YXRlIF9zbGljZUxlbmd0aDogbnVtYmVyO1xuXG4gICAgLyoqXG4gICAgICogU29ydCBjb21wYXJhdG9yXG4gICAgICovXG4gICAgcHJpdmF0ZSBfY29tcGFyYXRvcjogYW55O1xuXG4gICAgcHJpdmF0ZSBfcGlwZTogUGlwZVRyYW5zZm9ybU1vZGVsO1xuXG4gICAgcHJpdmF0ZSBfYWN0aW9uOiAob2JqOiBhbnkpID0+IHZvaWQ7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgbmFtZTogc3RyaW5nLFxuICAgICAgICBwcm9wZXJ0eTogc3RyaW5nLFxuICAgICAgICB2YWx1ZTogc3RyaW5nIHwgbnVtYmVyIHwgRGF0ZSB8ICgob2JqOiBvYmplY3QpID0+IHN0cmluZyB8IG51bWJlciksXG4gICAgICAgIHNvcnRhYmxlOiBib29sZWFuLFxuICAgICAgICB2aXNpYmxlOiBib29sZWFuLFxuICAgICAgICBjaGVja2JveGFibGU6IGJvb2xlYW4sXG4gICAgICAgIGNvbHVtblNwYW46IG51bWJlcixcbiAgICAgICAgY29sdW1uU3BhblhzOiBudW1iZXIsXG4gICAgICAgIGNvbHVtblNwYW5TbTogbnVtYmVyLFxuICAgICAgICBjb2x1bW5TcGFuTWQ6IG51bWJlcixcbiAgICAgICAgY29sdW1uU3BhbkxnOiBudW1iZXIsXG4gICAgICAgIGNvbHVtblNwYW5YbDogbnVtYmVyLFxuICAgICAgICBtaW5XaWR0aDogbnVtYmVyLFxuICAgICAgICBtYXhXaWR0aDogbnVtYmVyLFxuICAgICAgICBwYWRkaW5nSW5saW5lOiBudW1iZXIsXG4gICAgICAgIGFsaWduOiAnbGVmdCcgfCAnY2VudGVyJyB8ICdyaWdodCcsXG4gICAgICAgIHRlbXBsYXRlQ2VsbDogVGVtcGxhdGVSZWY8YW55PixcbiAgICAgICAgdGVtcGxhdGVIZWFkZXI6IFRlbXBsYXRlUmVmPGFueT4sXG4gICAgICAgIHNsaWNlTGVuZ3RoOiBudW1iZXIsXG4gICAgICAgIGNvbXBhcmF0b3I6IGFueSxcbiAgICAgICAgcGlwZTogUGlwZVRyYW5zZm9ybU1vZGVsLFxuICAgICAgICBhY3Rpb246IChvYmo6IGFueSkgPT4gdm9pZCxcbiAgICApIHtcbiAgICAgICAgdGhpcy5fbmFtZSA9IG5hbWU7XG4gICAgICAgIHRoaXMuX3Byb3BlcnR5ID0gcHJvcGVydHk7XG4gICAgICAgIHRoaXMuX3ZhbHVlID0gdmFsdWU7XG4gICAgICAgIHRoaXMuX3NvcnRhYmxlID0gc29ydGFibGU7XG4gICAgICAgIHRoaXMuX3Zpc2libGUgPSB2aXNpYmxlO1xuICAgICAgICB0aGlzLl9jaGVja2JveGFibGUgPSBjaGVja2JveGFibGU7XG4gICAgICAgIHRoaXMuX2NvbHVtblNwYW4gPSBjb2x1bW5TcGFuO1xuICAgICAgICB0aGlzLl9jb2x1bW5TcGFuWHMgPSBjb2x1bW5TcGFuWHM7XG4gICAgICAgIHRoaXMuX2NvbHVtblNwYW5TbSA9IGNvbHVtblNwYW5TbTtcbiAgICAgICAgdGhpcy5fY29sdW1uU3Bhbk1kID0gY29sdW1uU3Bhbk1kO1xuICAgICAgICB0aGlzLl9jb2x1bW5TcGFuTGcgPSBjb2x1bW5TcGFuTGc7XG4gICAgICAgIHRoaXMuX2NvbHVtblNwYW5YbCA9IGNvbHVtblNwYW5YbDtcbiAgICAgICAgdGhpcy5fbWluV2lkdGggPSBtaW5XaWR0aDtcbiAgICAgICAgdGhpcy5fbWF4V2lkdGggPSBtYXhXaWR0aDtcbiAgICAgICAgdGhpcy5fcGFkZGluZ0lubGluZSA9IHBhZGRpbmdJbmxpbmU7XG4gICAgICAgIHRoaXMuX2FsaWduID0gYWxpZ247XG4gICAgICAgIHRoaXMuX3RlbXBsYXRlQ2VsbCA9IHRlbXBsYXRlQ2VsbDtcbiAgICAgICAgdGhpcy5fdGVtcGxhdGVIZWFkZXIgPSB0ZW1wbGF0ZUhlYWRlcjtcbiAgICAgICAgdGhpcy5fc2xpY2VMZW5ndGggPSBzbGljZUxlbmd0aDtcbiAgICAgICAgdGhpcy5fY29tcGFyYXRvciA9IGNvbXBhcmF0b3I7XG4gICAgICAgIHRoaXMuX3BpcGUgPSBwaXBlO1xuICAgICAgICB0aGlzLl9hY3Rpb24gPSBhY3Rpb247XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBuYW1lKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLl9uYW1lO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IG5hbWUodmFsdWU6IHN0cmluZykge1xuICAgICAgICB0aGlzLl9uYW1lID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBwcm9wZXJ0eSgpOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gdGhpcy5fcHJvcGVydHk7XG4gICAgfVxuICAgIHB1YmxpYyBzZXQgcHJvcGVydHkodmFsdWU6IHN0cmluZykge1xuICAgICAgICB0aGlzLl9wcm9wZXJ0eSA9IHZhbHVlO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgdmFsdWUoKTogc3RyaW5nIHwgbnVtYmVyIHwgRGF0ZSB8ICgob2JqOiBvYmplY3QpID0+IHN0cmluZyB8IG51bWJlcikge1xuICAgICAgICByZXR1cm4gdGhpcy5fdmFsdWU7XG4gICAgfVxuICAgIHB1YmxpYyBzZXQgdmFsdWUodmFsdWU6IHN0cmluZyB8IG51bWJlciB8IERhdGUgfCAoKG9iajogb2JqZWN0KSA9PiBzdHJpbmcgfCBudW1iZXIpKSB7XG4gICAgICAgIHRoaXMuX3ZhbHVlID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBzb3J0YWJsZSgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3NvcnRhYmxlO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IHNvcnRhYmxlKHZhbHVlOiBib29sZWFuKSB7XG4gICAgICAgIHRoaXMuX3NvcnRhYmxlID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCB2aXNpYmxlKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5fdmlzaWJsZTtcbiAgICB9XG4gICAgcHVibGljIHNldCB2aXNpYmxlKHZhbHVlOiBib29sZWFuKSB7XG4gICAgICAgIHRoaXMuX3Zpc2libGUgPSB2YWx1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGNoZWNrYm94YWJsZSgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2NoZWNrYm94YWJsZTtcbiAgICB9XG4gICAgcHVibGljIHNldCBjaGVja2JveGFibGUodmFsdWU6IGJvb2xlYW4pIHtcbiAgICAgICAgdGhpcy5fY2hlY2tib3hhYmxlID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBjb2x1bW5TcGFuKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl9jb2x1bW5TcGFuO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IGNvbHVtblNwYW4odmFsdWU6IG51bWJlcikge1xuICAgICAgICB0aGlzLl9jb2x1bW5TcGFuID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBjb2x1bW5TcGFuWHMoKTogbnVtYmVyIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2NvbHVtblNwYW5YcztcbiAgICB9XG4gICAgcHVibGljIHNldCBjb2x1bW5TcGFuWHModmFsdWU6IG51bWJlcikge1xuICAgICAgICB0aGlzLl9jb2x1bW5TcGFuWHMgPSB2YWx1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGNvbHVtblNwYW5TbSgpOiBudW1iZXIge1xuICAgICAgICByZXR1cm4gdGhpcy5fY29sdW1uU3BhblNtO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IGNvbHVtblNwYW5TbSh2YWx1ZTogbnVtYmVyKSB7XG4gICAgICAgIHRoaXMuX2NvbHVtblNwYW5TbSA9IHZhbHVlO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgY29sdW1uU3Bhbk1kKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl9jb2x1bW5TcGFuTWQ7XG4gICAgfVxuICAgIHB1YmxpYyBzZXQgY29sdW1uU3Bhbk1kKHZhbHVlOiBudW1iZXIpIHtcbiAgICAgICAgdGhpcy5fY29sdW1uU3Bhbk1kID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBjb2x1bW5TcGFuTGcoKTogbnVtYmVyIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2NvbHVtblNwYW5MZztcbiAgICB9XG4gICAgcHVibGljIHNldCBjb2x1bW5TcGFuTGcodmFsdWU6IG51bWJlcikge1xuICAgICAgICB0aGlzLl9jb2x1bW5TcGFuTGcgPSB2YWx1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IGNvbHVtblNwYW5YbCgpOiBudW1iZXIge1xuICAgICAgICByZXR1cm4gdGhpcy5fY29sdW1uU3BhblhsO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IGNvbHVtblNwYW5YbCh2YWx1ZTogbnVtYmVyKSB7XG4gICAgICAgIHRoaXMuX2NvbHVtblNwYW5YbCA9IHZhbHVlO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgbWluV2lkdGgoKTogbnVtYmVyIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX21pbldpZHRoO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IG1pbldpZHRoKHZhbHVlOiBudW1iZXIpIHtcbiAgICAgICAgdGhpcy5fbWluV2lkdGggPSB2YWx1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IG1heFdpZHRoKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl9tYXhXaWR0aDtcbiAgICB9XG4gICAgcHVibGljIHNldCBtYXhXaWR0aCh2YWx1ZTogbnVtYmVyKSB7XG4gICAgICAgIHRoaXMuX21heFdpZHRoID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBwYWRkaW5nSW5saW5lKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl9wYWRkaW5nSW5saW5lO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IHBhZGRpbmdJbmxpbmUodmFsdWU6IG51bWJlcikge1xuICAgICAgICB0aGlzLl9wYWRkaW5nSW5saW5lID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBhbGlnbigpOiAnbGVmdCcgfCAnY2VudGVyJyB8ICdyaWdodCcge1xuICAgICAgICByZXR1cm4gdGhpcy5fYWxpZ247XG4gICAgfVxuICAgIHB1YmxpYyBzZXQgYWxpZ24odmFsdWU6ICdsZWZ0JyB8ICdjZW50ZXInIHwgJ3JpZ2h0Jykge1xuICAgICAgICB0aGlzLl9hbGlnbiA9IHZhbHVlO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgdGVtcGxhdGVDZWxsKCk6IFRlbXBsYXRlUmVmPGFueT4ge1xuICAgICAgICByZXR1cm4gdGhpcy5fdGVtcGxhdGVDZWxsO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IHRlbXBsYXRlQ2VsbCh2YWx1ZTogVGVtcGxhdGVSZWY8YW55Pikge1xuICAgICAgICB0aGlzLl90ZW1wbGF0ZUNlbGwgPSB2YWx1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IHRlbXBsYXRlSGVhZGVyKCk6IFRlbXBsYXRlUmVmPGFueT4ge1xuICAgICAgICByZXR1cm4gdGhpcy5fdGVtcGxhdGVIZWFkZXI7XG4gICAgfVxuICAgIHB1YmxpYyBzZXQgdGVtcGxhdGVIZWFkZXIodmFsdWU6IFRlbXBsYXRlUmVmPGFueT4pIHtcbiAgICAgICAgdGhpcy5fdGVtcGxhdGVIZWFkZXIgPSB2YWx1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IHNsaWNlTGVuZ3RoKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl9zbGljZUxlbmd0aDtcbiAgICB9XG4gICAgcHVibGljIHNldCBzbGljZUxlbmd0aCh2YWx1ZTogbnVtYmVyKSB7XG4gICAgICAgIHRoaXMuX3NsaWNlTGVuZ3RoID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBjb21wYXJhdG9yKCk6IGFueSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9jb21wYXJhdG9yO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IGNvbXBhcmF0b3IodmFsdWU6IGFueSkge1xuICAgICAgICB0aGlzLl9jb21wYXJhdG9yID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBwaXBlKCk6IFBpcGVUcmFuc2Zvcm1Nb2RlbCB7XG4gICAgICAgIHJldHVybiB0aGlzLl9waXBlO1xuICAgIH1cbiAgICBwdWJsaWMgc2V0IHBpcGUodmFsdWU6IFBpcGVUcmFuc2Zvcm1Nb2RlbCkge1xuICAgICAgICB0aGlzLl9waXBlID0gdmFsdWU7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBhY3Rpb24oKTogKG9iajogYW55KSA9PiB2b2lkIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2FjdGlvbjtcbiAgICB9XG4gICAgcHVibGljIHNldCBhY3Rpb24odmFsdWU6IChvYmo6IGFueSkgPT4gdm9pZCkge1xuICAgICAgICB0aGlzLl9hY3Rpb24gPSB2YWx1ZTtcbiAgICB9XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,159 @@
|
|
1
|
+
var GIPITableComponent_1;
|
2
|
+
import { __decorate, __metadata } from "tslib";
|
3
|
+
import { ChangeDetectionStrategy, Component, ContentChild, EventEmitter, Input, Output, TemplateRef, forwardRef } from '@angular/core';
|
4
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
5
|
+
let GIPITableComponent = GIPITableComponent_1 = class GIPITableComponent {
|
6
|
+
// ----------------------------------------------------------------------------
|
7
|
+
constructor() {
|
8
|
+
this.columns = [];
|
9
|
+
this.loading = false;
|
10
|
+
this.disabled = false;
|
11
|
+
this.sortStart = 'asc';
|
12
|
+
this.sortDisableClear = true;
|
13
|
+
this.sortLocked = false;
|
14
|
+
this.sortAscendingIcon = 'keyboard_arrow_up';
|
15
|
+
this.sortDescendingIcon = 'keyboard_arrow_down';
|
16
|
+
this.sortUnsetIcon = 'unfold_more';
|
17
|
+
this.sortChange = new EventEmitter();
|
18
|
+
// ----------------------------------------------------------------------------
|
19
|
+
// Body -----------------------------------------------------------------------
|
20
|
+
this.loadingDetail = false;
|
21
|
+
this.clickOnRow = false;
|
22
|
+
this.expandable = false;
|
23
|
+
this.expandOnlyOneRow = false;
|
24
|
+
this.trackBy = 'id';
|
25
|
+
this.rowsExpandedChange = new EventEmitter();
|
26
|
+
this.rowDetailToggleChange = new EventEmitter();
|
27
|
+
this.tableShowBorder = true;
|
28
|
+
this.hideHeader = false;
|
29
|
+
this.hideFooter = false;
|
30
|
+
}
|
31
|
+
ngOnInit() { }
|
32
|
+
ngOnDestroy() { }
|
33
|
+
};
|
34
|
+
__decorate([
|
35
|
+
Input(),
|
36
|
+
__metadata("design:type", Array)
|
37
|
+
], GIPITableComponent.prototype, "columns", void 0);
|
38
|
+
__decorate([
|
39
|
+
Input(),
|
40
|
+
__metadata("design:type", Boolean)
|
41
|
+
], GIPITableComponent.prototype, "loading", void 0);
|
42
|
+
__decorate([
|
43
|
+
Input(),
|
44
|
+
__metadata("design:type", Boolean)
|
45
|
+
], GIPITableComponent.prototype, "disabled", void 0);
|
46
|
+
__decorate([
|
47
|
+
Input(),
|
48
|
+
__metadata("design:type", String)
|
49
|
+
], GIPITableComponent.prototype, "sortActive", void 0);
|
50
|
+
__decorate([
|
51
|
+
Input(),
|
52
|
+
__metadata("design:type", String)
|
53
|
+
], GIPITableComponent.prototype, "sortStart", void 0);
|
54
|
+
__decorate([
|
55
|
+
Input(),
|
56
|
+
__metadata("design:type", Boolean)
|
57
|
+
], GIPITableComponent.prototype, "sortDisableClear", void 0);
|
58
|
+
__decorate([
|
59
|
+
Input(),
|
60
|
+
__metadata("design:type", Boolean)
|
61
|
+
], GIPITableComponent.prototype, "sortLocked", void 0);
|
62
|
+
__decorate([
|
63
|
+
Input(),
|
64
|
+
__metadata("design:type", String)
|
65
|
+
], GIPITableComponent.prototype, "sortAscendingIcon", void 0);
|
66
|
+
__decorate([
|
67
|
+
Input(),
|
68
|
+
__metadata("design:type", String)
|
69
|
+
], GIPITableComponent.prototype, "sortDescendingIcon", void 0);
|
70
|
+
__decorate([
|
71
|
+
Input(),
|
72
|
+
__metadata("design:type", String)
|
73
|
+
], GIPITableComponent.prototype, "sortUnsetIcon", void 0);
|
74
|
+
__decorate([
|
75
|
+
Output(),
|
76
|
+
__metadata("design:type", EventEmitter)
|
77
|
+
], GIPITableComponent.prototype, "sortChange", void 0);
|
78
|
+
__decorate([
|
79
|
+
Input(),
|
80
|
+
__metadata("design:type", Boolean)
|
81
|
+
], GIPITableComponent.prototype, "loadingDetail", void 0);
|
82
|
+
__decorate([
|
83
|
+
Input(),
|
84
|
+
__metadata("design:type", Boolean)
|
85
|
+
], GIPITableComponent.prototype, "clickOnRow", void 0);
|
86
|
+
__decorate([
|
87
|
+
Input(),
|
88
|
+
__metadata("design:type", Boolean)
|
89
|
+
], GIPITableComponent.prototype, "expandable", void 0);
|
90
|
+
__decorate([
|
91
|
+
Input(),
|
92
|
+
__metadata("design:type", Boolean)
|
93
|
+
], GIPITableComponent.prototype, "expandOnlyOneRow", void 0);
|
94
|
+
__decorate([
|
95
|
+
Input(),
|
96
|
+
__metadata("design:type", Function)
|
97
|
+
], GIPITableComponent.prototype, "rowExpandableFn", void 0);
|
98
|
+
__decorate([
|
99
|
+
Input(),
|
100
|
+
__metadata("design:type", Function)
|
101
|
+
], GIPITableComponent.prototype, "highlightRowFn", void 0);
|
102
|
+
__decorate([
|
103
|
+
Input(),
|
104
|
+
__metadata("design:type", String)
|
105
|
+
], GIPITableComponent.prototype, "trackBy", void 0);
|
106
|
+
__decorate([
|
107
|
+
ContentChild('rowDetail', { static: false }),
|
108
|
+
__metadata("design:type", TemplateRef)
|
109
|
+
], GIPITableComponent.prototype, "rowDetailRef", void 0);
|
110
|
+
__decorate([
|
111
|
+
Input(),
|
112
|
+
__metadata("design:type", Array)
|
113
|
+
], GIPITableComponent.prototype, "rows", void 0);
|
114
|
+
__decorate([
|
115
|
+
Output(),
|
116
|
+
__metadata("design:type", EventEmitter)
|
117
|
+
], GIPITableComponent.prototype, "rowsExpandedChange", void 0);
|
118
|
+
__decorate([
|
119
|
+
Output(),
|
120
|
+
__metadata("design:type", EventEmitter)
|
121
|
+
], GIPITableComponent.prototype, "rowDetailToggleChange", void 0);
|
122
|
+
__decorate([
|
123
|
+
Input(),
|
124
|
+
__metadata("design:type", Object)
|
125
|
+
], GIPITableComponent.prototype, "id", void 0);
|
126
|
+
__decorate([
|
127
|
+
Input(),
|
128
|
+
__metadata("design:type", Boolean)
|
129
|
+
], GIPITableComponent.prototype, "tableShowBorder", void 0);
|
130
|
+
__decorate([
|
131
|
+
Input(),
|
132
|
+
__metadata("design:type", Boolean)
|
133
|
+
], GIPITableComponent.prototype, "hideHeader", void 0);
|
134
|
+
__decorate([
|
135
|
+
Input(),
|
136
|
+
__metadata("design:type", Boolean)
|
137
|
+
], GIPITableComponent.prototype, "hideFooter", void 0);
|
138
|
+
GIPITableComponent = GIPITableComponent_1 = __decorate([
|
139
|
+
Component({
|
140
|
+
selector: `gipi-table`,
|
141
|
+
exportAs: 'gipiTable',
|
142
|
+
template: "<div role=\"table\"\n class=\"table\">\n <gipi-table-header [columns]=\"columns\"\n [loading]=\"loading\"\n [disabled]=\"disabled\"\n [sortActive]=\"sortActive\"\n [sortStart]=\"sortStart\"\n [sortLocked]=\"sortLocked\"\n [sortDisableClear]=\"sortDisableClear\"\n [sortAscendingIcon]=\"sortAscendingIcon\"\n [sortDescendingIcon]=\"sortDescendingIcon\"\n [sortUnsetIcon]=\"sortUnsetIcon\"\n (sortChange)=\"sortChange.emit($event)\">\n </gipi-table-header>\n <gipi-table-body [columns]=\"columns\"\n [loading]=\"loading\"\n [loadingDetail]=\"loadingDetail\"\n [disabled]=\"disabled\"\n [clickOnRow]=\"clickOnRow\"\n [expandable]=\"expandable\"\n [expandOnlyOneRow]=\"expandOnlyOneRow\"\n [rowExpandableFn]=\"rowExpandableFn\"\n [highlightRowFn]=\"highlightRowFn\"\n [trackBy]=\"trackBy\"\n [rowDetailRef]=\"rowDetailRef\"\n [rows]=\"rows\"\n (rowsExpandedChange)=\"rowsExpandedChange.emit($event)\"\n (rowDetailToggleChange)=\"rowDetailToggleChange.emit($event)\">\n </gipi-table-body>\n</div>",
|
143
|
+
providers: [
|
144
|
+
{
|
145
|
+
provide: NG_VALUE_ACCESSOR,
|
146
|
+
useExisting: forwardRef(() => GIPITableComponent_1),
|
147
|
+
multi: true
|
148
|
+
}
|
149
|
+
],
|
150
|
+
host: {
|
151
|
+
'class': 'gipi-table',
|
152
|
+
},
|
153
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
154
|
+
styles: [".table{border:1px solid #e0e1e2;border-radius:4px}"]
|
155
|
+
}),
|
156
|
+
__metadata("design:paramtypes", [])
|
157
|
+
], GIPITableComponent);
|
158
|
+
export { GIPITableComponent };
|
159
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsic2hhcmVkL2dpcGktY29tcG9uZW50cy90YWJsZS90YWJsZS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFxQixNQUFNLEVBQUUsV0FBVyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxSixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQXNCbkQsSUFBYSxrQkFBa0IsMEJBQS9CLE1BQWEsa0JBQWtCO0lBdUMzQiwrRUFBK0U7SUFFL0U7UUF2Q1MsWUFBTyxHQUF1QixFQUFFLENBQUM7UUFDakMsWUFBTyxHQUFZLEtBQUssQ0FBQztRQUN6QixhQUFRLEdBQVksS0FBSyxDQUFDO1FBSTFCLGNBQVMsR0FBbUIsS0FBSyxDQUFDO1FBQ2xDLHFCQUFnQixHQUFZLElBQUksQ0FBQztRQUNqQyxlQUFVLEdBQVksS0FBSyxDQUFDO1FBRTVCLHNCQUFpQixHQUFXLG1CQUFtQixDQUFDO1FBQ2hELHVCQUFrQixHQUFXLHFCQUFxQixDQUFDO1FBQ25ELGtCQUFhLEdBQVcsYUFBYSxDQUFDO1FBRXJDLGVBQVUsR0FBNEIsSUFBSSxZQUFZLEVBQWEsQ0FBQztRQUM5RSwrRUFBK0U7UUFFL0UsK0VBQStFO1FBQ3RFLGtCQUFhLEdBQVksS0FBSyxDQUFDO1FBQy9CLGVBQVUsR0FBWSxLQUFLLENBQUM7UUFDNUIsZUFBVSxHQUFZLEtBQUssQ0FBQztRQUM1QixxQkFBZ0IsR0FBWSxLQUFLLENBQUM7UUFHbEMsWUFBTyxHQUFXLElBQUksQ0FBQztRQUl0Qix1QkFBa0IsR0FBc0IsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUMzRCwwQkFBcUIsR0FBbUQsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUs1RixvQkFBZSxHQUFZLElBQUksQ0FBQztRQUNoQyxlQUFVLEdBQVksS0FBSyxDQUFDO1FBQzVCLGVBQVUsR0FBWSxLQUFLLENBQUM7SUFHckIsQ0FBQztJQUVqQixRQUFRLEtBQUssQ0FBQztJQUVkLFdBQVcsS0FBVyxDQUFDO0NBRTFCLENBQUE7QUE3Q1k7SUFBUixLQUFLLEVBQUU7O21EQUFrQztBQUNqQztJQUFSLEtBQUssRUFBRTs7bURBQTBCO0FBQ3pCO0lBQVIsS0FBSyxFQUFFOztvREFBMkI7QUFHMUI7SUFBUixLQUFLLEVBQUU7O3NEQUFvQjtBQUNuQjtJQUFSLEtBQUssRUFBRTs7cURBQW1DO0FBQ2xDO0lBQVIsS0FBSyxFQUFFOzs0REFBa0M7QUFDakM7SUFBUixLQUFLLEVBQUU7O3NEQUE2QjtBQUU1QjtJQUFSLEtBQUssRUFBRTs7NkRBQWlEO0FBQ2hEO0lBQVIsS0FBSyxFQUFFOzs4REFBb0Q7QUFDbkQ7SUFBUixLQUFLLEVBQUU7O3lEQUF1QztBQUVyQztJQUFULE1BQU0sRUFBRTs4QkFBYSxZQUFZO3NEQUE0QztBQUlyRTtJQUFSLEtBQUssRUFBRTs7eURBQWdDO0FBQy9CO0lBQVIsS0FBSyxFQUFFOztzREFBNkI7QUFDNUI7SUFBUixLQUFLLEVBQUU7O3NEQUE2QjtBQUM1QjtJQUFSLEtBQUssRUFBRTs7NERBQW1DO0FBQ2xDO0lBQVIsS0FBSyxFQUFFOzsyREFBc0M7QUFDckM7SUFBUixLQUFLLEVBQUU7OzBEQUFxQztBQUNwQztJQUFSLEtBQUssRUFBRTs7bURBQXdCO0FBQ2M7SUFBN0MsWUFBWSxDQUFDLFdBQVcsRUFBRSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsQ0FBQzs4QkFBZSxXQUFXO3dEQUFNO0FBQ3BFO0lBQVIsS0FBSyxFQUFFOztnREFBVztBQUVUO0lBQVQsTUFBTSxFQUFFOzhCQUFxQixZQUFZOzhEQUEyQjtBQUMzRDtJQUFULE1BQU0sRUFBRTs4QkFBd0IsWUFBWTtpRUFBd0Q7QUFJNUY7SUFBUixLQUFLLEVBQUU7OzhDQUFxQjtBQUNwQjtJQUFSLEtBQUssRUFBRTs7MkRBQWlDO0FBQ2hDO0lBQVIsS0FBSyxFQUFFOztzREFBNkI7QUFDNUI7SUFBUixLQUFLLEVBQUU7O3NEQUE2QjtBQXRDNUIsa0JBQWtCO0lBakI5QixTQUFTLENBQUM7UUFDUCxRQUFRLEVBQUUsWUFBWTtRQUN0QixRQUFRLEVBQUUsV0FBVztRQUNyQiwyOUNBQXFDO1FBRXJDLFNBQVMsRUFBRTtZQUNQO2dCQUNJLE9BQU8sRUFBRSxpQkFBaUI7Z0JBQzFCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBOEIsRUFBRSxDQUFDLG9CQUFrQixDQUFDO2dCQUM1RSxLQUFLLEVBQUUsSUFBSTthQUNkO1NBQ0o7UUFDRCxJQUFJLEVBQUU7WUFDRixPQUFPLEVBQUUsWUFBWTtTQUN4QjtRQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNOztLQUNsRCxDQUFDOztHQUNXLGtCQUFrQixDQStDOUI7U0EvQ1ksa0JBQWtCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgQ29udGVudENoaWxkLCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkRlc3Ryb3ksIE9uSW5pdCwgT3V0cHV0LCBUZW1wbGF0ZVJlZiwgZm9yd2FyZFJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbmltcG9ydCB7IFNvcnRNb2RlbCB9IGZyb20gJy4vbW9kZWxzL3NvcnQubW9kZWwnO1xuaW1wb3J0IHsgVGFibGVDb2x1bW5Nb2RlbCB9IGZyb20gJy4vbW9kZWxzL3RhYmxlLWNvbHVtbi5tb2RlbCc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiBgZ2lwaS10YWJsZWAsXG4gICAgZXhwb3J0QXM6ICdnaXBpVGFibGUnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi90YWJsZS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vdGFibGUuY29tcG9uZW50LnNjc3MnXSxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAge1xuICAgICAgICAgICAgcHJvdmlkZTogTkdfVkFMVUVfQUNDRVNTT1IsXG4gICAgICAgICAgICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKTogdHlwZW9mIEdJUElUYWJsZUNvbXBvbmVudCA9PiBHSVBJVGFibGVDb21wb25lbnQpLFxuICAgICAgICAgICAgbXVsdGk6IHRydWVcbiAgICAgICAgfVxuICAgIF0sXG4gICAgaG9zdDoge1xuICAgICAgICAnY2xhc3MnOiAnZ2lwaS10YWJsZScsXG4gICAgfSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxufSlcbmV4cG9ydCBjbGFzcyBHSVBJVGFibGVDb21wb25lbnQ8VD4gaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG5cbiAgICBASW5wdXQoKSBjb2x1bW5zOiBUYWJsZUNvbHVtbk1vZGVsW10gPSBbXTtcbiAgICBASW5wdXQoKSBsb2FkaW5nOiBib29sZWFuID0gZmFsc2U7XG4gICAgQElucHV0KCkgZGlzYWJsZWQ6IGJvb2xlYW4gPSBmYWxzZTtcblxuICAgIC8vIEhlYWRlciAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiAgICBASW5wdXQoKSBzb3J0QWN0aXZlOiBzdHJpbmc7XG4gICAgQElucHV0KCkgc29ydFN0YXJ0OiAnYXNjJyB8ICdkZXNjJyA9ICdhc2MnO1xuICAgIEBJbnB1dCgpIHNvcnREaXNhYmxlQ2xlYXI6IGJvb2xlYW4gPSB0cnVlO1xuICAgIEBJbnB1dCgpIHNvcnRMb2NrZWQ6IGJvb2xlYW4gPSBmYWxzZTtcblxuICAgIEBJbnB1dCgpIHNvcnRBc2NlbmRpbmdJY29uOiBzdHJpbmcgPSAna2V5Ym9hcmRfYXJyb3dfdXAnO1xuICAgIEBJbnB1dCgpIHNvcnREZXNjZW5kaW5nSWNvbjogc3RyaW5nID0gJ2tleWJvYXJkX2Fycm93X2Rvd24nO1xuICAgIEBJbnB1dCgpIHNvcnRVbnNldEljb246IHN0cmluZyA9ICd1bmZvbGRfbW9yZSc7XG5cbiAgICBAT3V0cHV0KCkgc29ydENoYW5nZTogRXZlbnRFbWl0dGVyPFNvcnRNb2RlbD4gPSBuZXcgRXZlbnRFbWl0dGVyPFNvcnRNb2RlbD4oKTtcbiAgICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cbiAgICAvLyBCb2R5IC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gICAgQElucHV0KCkgbG9hZGluZ0RldGFpbDogYm9vbGVhbiA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIGNsaWNrT25Sb3c6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBASW5wdXQoKSBleHBhbmRhYmxlOiBib29sZWFuID0gZmFsc2U7XG4gICAgQElucHV0KCkgZXhwYW5kT25seU9uZVJvdzogYm9vbGVhbiA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIHJvd0V4cGFuZGFibGVGbjogKHJvdzogVCkgPT4gYm9vbGVhbjtcbiAgICBASW5wdXQoKSBoaWdobGlnaHRSb3dGbjogKHJvdzogVCkgPT4gYm9vbGVhbjtcbiAgICBASW5wdXQoKSB0cmFja0J5OiBzdHJpbmcgPSAnaWQnO1xuICAgIEBDb250ZW50Q2hpbGQoJ3Jvd0RldGFpbCcsIHsgc3RhdGljOiBmYWxzZSB9KSByb3dEZXRhaWxSZWY6IFRlbXBsYXRlUmVmPGFueT47XG4gICAgQElucHV0KCkgcm93czogVFtdO1xuXG4gICAgQE91dHB1dCgpIHJvd3NFeHBhbmRlZENoYW5nZTogRXZlbnRFbWl0dGVyPFRbXT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG4gICAgQE91dHB1dCgpIHJvd0RldGFpbFRvZ2dsZUNoYW5nZTogRXZlbnRFbWl0dGVyPHsgcm93OiBUOyBpc0V4cGFuZGVkOiBib29sZWFuOyB9PiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcbiAgICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cbiAgICAvLyBUYWJsZSAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG4gICAgQElucHV0KCkgaWQ6IHN0cmluZyB8IG51bWJlcjtcbiAgICBASW5wdXQoKSB0YWJsZVNob3dCb3JkZXI6IGJvb2xlYW4gPSB0cnVlO1xuICAgIEBJbnB1dCgpIGhpZGVIZWFkZXI6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBASW5wdXQoKSBoaWRlRm9vdGVyOiBib29sZWFuID0gZmFsc2U7XG4gICAgLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLVxuXG4gICAgY29uc3RydWN0b3IoKSB7IH1cblxuICAgIG5nT25Jbml0KCkgeyB9XG5cbiAgICBuZ09uRGVzdHJveSgpOiB2b2lkIHsgfVxuXG59XG4iXX0=
|
@@ -0,0 +1 @@
|
|
1
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic29ydC1kaXJlY3Rpb24udHlwZS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbInNoYXJlZC9naXBpLWNvbXBvbmVudHMvdGFibGUvdHlwZXMvc29ydC1kaXJlY3Rpb24udHlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgU29ydERpcmVjdGlvbiA9ICdhc2MnIHwgJ2Rlc2MnIHwgJyc7XG4iXX0=
|
@@ -0,0 +1 @@
|
|
1
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic29ydC50eXBlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsic2hhcmVkL2dpcGktY29tcG9uZW50cy90YWJsZS90eXBlcy9zb3J0LnR5cGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIFNvcnRUeXBlID0gJ3NpbmdsZScgfCAnbXVsdGknO1xuIl19
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
2
|
+
import { Directive, Input, TemplateRef } from '@angular/core';
|
3
|
+
let GIPITemplateDirective = class GIPITemplateDirective {
|
4
|
+
constructor(template) {
|
5
|
+
this.template = template;
|
6
|
+
}
|
7
|
+
getType() {
|
8
|
+
return this.name;
|
9
|
+
}
|
10
|
+
};
|
11
|
+
GIPITemplateDirective.ctorParameters = () => [
|
12
|
+
{ type: TemplateRef }
|
13
|
+
];
|
14
|
+
__decorate([
|
15
|
+
Input(),
|
16
|
+
__metadata("design:type", String)
|
17
|
+
], GIPITemplateDirective.prototype, "type", void 0);
|
18
|
+
__decorate([
|
19
|
+
Input('gipi-template'),
|
20
|
+
__metadata("design:type", String)
|
21
|
+
], GIPITemplateDirective.prototype, "name", void 0);
|
22
|
+
GIPITemplateDirective = __decorate([
|
23
|
+
Directive({
|
24
|
+
selector: '[GIPItemplate]',
|
25
|
+
exportAs: 'GIPITemplate',
|
26
|
+
host: {
|
27
|
+
'class': 'gipi-template',
|
28
|
+
}
|
29
|
+
}),
|
30
|
+
__metadata("design:paramtypes", [TemplateRef])
|
31
|
+
], GIPITemplateDirective);
|
32
|
+
export { GIPITemplateDirective };
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVtcGxhdGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsic2hhcmVkL2dpcGktY29tcG9uZW50cy90ZW1wbGF0ZS90ZW1wbGF0ZS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQVM5RCxJQUFhLHFCQUFxQixHQUFsQyxNQUFhLHFCQUFxQjtJQU05QixZQUFtQixRQUEwQjtRQUExQixhQUFRLEdBQVIsUUFBUSxDQUFrQjtJQUFJLENBQUM7SUFFbEQsT0FBTztRQUNILE9BQU8sSUFBSSxDQUFDLElBQUksQ0FBQztJQUNyQixDQUFDO0NBRUosQ0FBQTs7WUFOZ0MsV0FBVzs7QUFKL0I7SUFBUixLQUFLLEVBQUU7O21EQUFjO0FBRUU7SUFBdkIsS0FBSyxDQUFDLGVBQWUsQ0FBQzs7bURBQWM7QUFKNUIscUJBQXFCO0lBUGpDLFNBQVMsQ0FBQztRQUNQLFFBQVEsRUFBRSxnQkFBZ0I7UUFDMUIsUUFBUSxFQUFFLGNBQWM7UUFDeEIsSUFBSSxFQUFFO1lBQ0YsT0FBTyxFQUFFLGVBQWU7U0FDM0I7S0FDSixDQUFDO3FDQU8rQixXQUFXO0dBTi9CLHFCQUFxQixDQVlqQztTQVpZLHFCQUFxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgSW5wdXQsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW0dJUEl0ZW1wbGF0ZV0nLFxuICAgIGV4cG9ydEFzOiAnR0lQSVRlbXBsYXRlJyxcbiAgICBob3N0OiB7XG4gICAgICAgICdjbGFzcyc6ICdnaXBpLXRlbXBsYXRlJyxcbiAgICB9XG59KVxuZXhwb3J0IGNsYXNzIEdJUElUZW1wbGF0ZURpcmVjdGl2ZSB7XG5cbiAgICBASW5wdXQoKSB0eXBlOiBzdHJpbmc7XG5cbiAgICBASW5wdXQoJ2dpcGktdGVtcGxhdGUnKSBuYW1lOiBzdHJpbmc7XG5cbiAgICBjb25zdHJ1Y3RvcihwdWJsaWMgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT4pIHsgfVxuXG4gICAgZ2V0VHlwZSgpOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gdGhpcy5uYW1lO1xuICAgIH1cblxufVxuIl19
|
@@ -0,0 +1,53 @@
|
|
1
|
+
var GIPIToolbarComponent_1;
|
2
|
+
import { __decorate, __metadata } from "tslib";
|
3
|
+
import { Component, Input, forwardRef } from '@angular/core';
|
4
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
5
|
+
let GIPIToolbarComponent = GIPIToolbarComponent_1 = class GIPIToolbarComponent {
|
6
|
+
constructor() { }
|
7
|
+
ngOnInit() { }
|
8
|
+
};
|
9
|
+
__decorate([
|
10
|
+
Input(),
|
11
|
+
__metadata("design:type", String)
|
12
|
+
], GIPIToolbarComponent.prototype, "id", void 0);
|
13
|
+
__decorate([
|
14
|
+
Input(),
|
15
|
+
__metadata("design:type", String)
|
16
|
+
], GIPIToolbarComponent.prototype, "name", void 0);
|
17
|
+
__decorate([
|
18
|
+
Input(),
|
19
|
+
__metadata("design:type", String)
|
20
|
+
], GIPIToolbarComponent.prototype, "ariaLabel", void 0);
|
21
|
+
__decorate([
|
22
|
+
Input(),
|
23
|
+
__metadata("design:type", String)
|
24
|
+
], GIPIToolbarComponent.prototype, "label", void 0);
|
25
|
+
__decorate([
|
26
|
+
Input(),
|
27
|
+
__metadata("design:type", String)
|
28
|
+
], GIPIToolbarComponent.prototype, "style", void 0);
|
29
|
+
__decorate([
|
30
|
+
Input(),
|
31
|
+
__metadata("design:type", String)
|
32
|
+
], GIPIToolbarComponent.prototype, "class", void 0);
|
33
|
+
GIPIToolbarComponent = GIPIToolbarComponent_1 = __decorate([
|
34
|
+
Component({
|
35
|
+
selector: `gipi-toolbar`,
|
36
|
+
exportAs: 'gipiToolbar',
|
37
|
+
template: "<div [attr.id]=\"id\"\n [attr.aria-label]=\"ariaLabel ? ariaLabel : label\"\n [ngStyle]=\"style\"\n [class]=\"class\">\n <h5 *ngIf=\"label\"> {{ label }} </h5>\n <ng-content> </ng-content>\n</div>\n",
|
38
|
+
providers: [
|
39
|
+
{
|
40
|
+
provide: NG_VALUE_ACCESSOR,
|
41
|
+
useExisting: forwardRef(() => GIPIToolbarComponent_1),
|
42
|
+
multi: true
|
43
|
+
}
|
44
|
+
],
|
45
|
+
host: {
|
46
|
+
'class': 'gipi-toolbar',
|
47
|
+
},
|
48
|
+
styles: [":host>div{width:100%;color:#131313;display:flex;align-items:center}:host>div>h5{font-weight:600;font-size:2rem;line-height:150%}"]
|
49
|
+
}),
|
50
|
+
__metadata("design:paramtypes", [])
|
51
|
+
], GIPIToolbarComponent);
|
52
|
+
export { GIPIToolbarComponent };
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbGJhci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJzaGFyZWQvZ2lwaS1jb21wb25lbnRzL3Rvb2xiYXIvdG9vbGJhci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSxPQUFPLEVBQTJCLFNBQVMsRUFBRSxLQUFLLEVBQVUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzlGLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBa0JuRCxJQUFhLG9CQUFvQiw0QkFBakMsTUFBYSxvQkFBb0I7SUFjN0IsZ0JBQWdCLENBQUM7SUFFakIsUUFBUSxLQUFXLENBQUM7Q0FFdkIsQ0FBQTtBQWhCWTtJQUFSLEtBQUssRUFBRTs7Z0RBQVk7QUFFWDtJQUFSLEtBQUssRUFBRTs7a0RBQWM7QUFFYjtJQUFSLEtBQUssRUFBRTs7dURBQW1CO0FBRWxCO0lBQVIsS0FBSyxFQUFFOzttREFBZTtBQUVkO0lBQVIsS0FBSyxFQUFFOzttREFBZTtBQUVkO0lBQVIsS0FBSyxFQUFFOzttREFBZTtBQVpkLG9CQUFvQjtJQWhCaEMsU0FBUyxDQUFDO1FBQ1AsUUFBUSxFQUFFLGNBQWM7UUFDeEIsUUFBUSxFQUFFLGFBQWE7UUFDdkIsb09BQXVDO1FBRXZDLFNBQVMsRUFBRTtZQUNQO2dCQUNJLE9BQU8sRUFBRSxpQkFBaUI7Z0JBQzFCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBZ0MsRUFBRSxDQUFDLHNCQUFvQixDQUFDO2dCQUNoRixLQUFLLEVBQUUsSUFBSTthQUNkO1NBQ0o7UUFDRCxJQUFJLEVBQUU7WUFDRixPQUFPLEVBQUUsY0FBYztTQUMxQjs7S0FDSixDQUFDOztHQUNXLG9CQUFvQixDQWtCaEM7U0FsQlksb0JBQW9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCwgZm9yd2FyZFJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiBgZ2lwaS10b29sYmFyYCxcbiAgICBleHBvcnRBczogJ2dpcGlUb29sYmFyJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vdG9vbGJhci5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vdG9vbGJhci5jb21wb25lbnQuc2NzcyddLFxuICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7XG4gICAgICAgICAgICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcbiAgICAgICAgICAgIHVzZUV4aXN0aW5nOiBmb3J3YXJkUmVmKCgpOiB0eXBlb2YgR0lQSVRvb2xiYXJDb21wb25lbnQgPT4gR0lQSVRvb2xiYXJDb21wb25lbnQpLFxuICAgICAgICAgICAgbXVsdGk6IHRydWVcbiAgICAgICAgfVxuICAgIF0sXG4gICAgaG9zdDoge1xuICAgICAgICAnY2xhc3MnOiAnZ2lwaS10b29sYmFyJyxcbiAgICB9XG59KVxuZXhwb3J0IGNsYXNzIEdJUElUb29sYmFyQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICAgIEBJbnB1dCgpIGlkOiBzdHJpbmc7XG5cbiAgICBASW5wdXQoKSBuYW1lOiBzdHJpbmc7XG5cbiAgICBASW5wdXQoKSBhcmlhTGFiZWw6IHN0cmluZztcblxuICAgIEBJbnB1dCgpIGxhYmVsOiBzdHJpbmc7XG5cbiAgICBASW5wdXQoKSBzdHlsZTogc3RyaW5nO1xuXG4gICAgQElucHV0KCkgY2xhc3M6IHN0cmluZztcblxuICAgIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHsgfVxuXG59XG4iXX0=
|
@@ -0,0 +1,38 @@
|
|
1
|
+
var GIPITopNavComponent_1;
|
2
|
+
import { __decorate, __metadata } from "tslib";
|
3
|
+
import { Component, forwardRef } from '@angular/core';
|
4
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
5
|
+
import { NavService } from '../../../core/services/nav.service';
|
6
|
+
let GIPITopNavComponent = GIPITopNavComponent_1 = class GIPITopNavComponent {
|
7
|
+
constructor(_navService) {
|
8
|
+
this._navService = _navService;
|
9
|
+
}
|
10
|
+
ngOnInit() { }
|
11
|
+
toggle() {
|
12
|
+
this._navService.toggle();
|
13
|
+
}
|
14
|
+
};
|
15
|
+
GIPITopNavComponent.ctorParameters = () => [
|
16
|
+
{ type: NavService }
|
17
|
+
];
|
18
|
+
GIPITopNavComponent = GIPITopNavComponent_1 = __decorate([
|
19
|
+
Component({
|
20
|
+
selector: '[gipi-top-nav], gipi-top-nav',
|
21
|
+
exportAs: 'gipiTopNav',
|
22
|
+
template: "<ng-content> </ng-content>\n",
|
23
|
+
providers: [
|
24
|
+
{
|
25
|
+
provide: NG_VALUE_ACCESSOR,
|
26
|
+
useExisting: forwardRef(() => GIPITopNavComponent_1),
|
27
|
+
multi: true
|
28
|
+
}
|
29
|
+
],
|
30
|
+
host: {
|
31
|
+
'class': 'gipi-top-nav'
|
32
|
+
},
|
33
|
+
styles: [":host{height:66px;max-height:66px;background-color:#f5f5f6;border-bottom:2px solid #e0313e;display:flex;align-items:center;padding:12px}"]
|
34
|
+
}),
|
35
|
+
__metadata("design:paramtypes", [NavService])
|
36
|
+
], GIPITopNavComponent);
|
37
|
+
export { GIPITopNavComponent };
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9wLW5hdi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJzaGFyZWQvZ2lwaS1jb21wb25lbnRzL3RvcC1uYXYvdG9wLW5hdi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUVuRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFrQmhFLElBQWEsbUJBQW1CLDJCQUFoQyxNQUFhLG1CQUFtQjtJQUU1QixZQUFvQixXQUF1QjtRQUF2QixnQkFBVyxHQUFYLFdBQVcsQ0FBWTtJQUFJLENBQUM7SUFFaEQsUUFBUSxLQUFXLENBQUM7SUFFcEIsTUFBTTtRQUNGLElBQUksQ0FBQyxXQUFXLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDOUIsQ0FBQztDQUVKLENBQUE7O1lBUm9DLFVBQVU7O0FBRmxDLG1CQUFtQjtJQWhCL0IsU0FBUyxDQUFDO1FBQ1AsUUFBUSxFQUFFLDhCQUE4QjtRQUN4QyxRQUFRLEVBQUUsWUFBWTtRQUN0Qix3Q0FBdUM7UUFFdkMsU0FBUyxFQUFFO1lBQ1A7Z0JBQ0ksT0FBTyxFQUFFLGlCQUFpQjtnQkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUErQixFQUFFLENBQUMscUJBQW1CLENBQUM7Z0JBQzlFLEtBQUssRUFBRSxJQUFJO2FBQ2Q7U0FDSjtRQUNELElBQUksRUFBRTtZQUNGLE9BQU8sRUFBRSxjQUFjO1NBQzFCOztLQUNKLENBQUM7cUNBR21DLFVBQVU7R0FGbEMsbUJBQW1CLENBVS9CO1NBVlksbUJBQW1CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIGZvcndhcmRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5pbXBvcnQgeyBOYXZTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vY29yZS9zZXJ2aWNlcy9uYXYuc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnW2dpcGktdG9wLW5hdl0sIGdpcGktdG9wLW5hdicsXG4gICAgZXhwb3J0QXM6ICdnaXBpVG9wTmF2JyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vdG9wLW5hdi5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vdG9wLW5hdi5jb21wb25lbnQuc2NzcyddLFxuICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7XG4gICAgICAgICAgICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcbiAgICAgICAgICAgIHVzZUV4aXN0aW5nOiBmb3J3YXJkUmVmKCgpOiB0eXBlb2YgR0lQSVRvcE5hdkNvbXBvbmVudCA9PiBHSVBJVG9wTmF2Q29tcG9uZW50KSxcbiAgICAgICAgICAgIG11bHRpOiB0cnVlXG4gICAgICAgIH1cbiAgICBdLFxuICAgIGhvc3Q6IHtcbiAgICAgICAgJ2NsYXNzJzogJ2dpcGktdG9wLW5hdidcbiAgICB9XG59KVxuZXhwb3J0IGNsYXNzIEdJUElUb3BOYXZDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gICAgY29uc3RydWN0b3IocHJpdmF0ZSBfbmF2U2VydmljZTogTmF2U2VydmljZSkgeyB9XG5cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHsgfVxuXG4gICAgdG9nZ2xlKCk6IHZvaWQge1xuICAgICAgICB0aGlzLl9uYXZTZXJ2aWNlLnRvZ2dsZSgpO1xuICAgIH1cblxufVxuIl19
|