@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,129 @@
|
|
1
|
+
import { __awaiter, __decorate, __generator, __metadata } from "tslib";
|
2
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
3
|
+
import { Injectable, Injector, NgZone } from '@angular/core';
|
4
|
+
import { Router } from '@angular/router';
|
5
|
+
import { throwError } from 'rxjs';
|
6
|
+
import { catchError } from 'rxjs/operators';
|
7
|
+
import { AuthenticationService } from '../services/authentication.service';
|
8
|
+
import { ArrayUtil } from '../utils/array.util';
|
9
|
+
import { ObjectUtil } from '../utils/object.util';
|
10
|
+
var ErrorInterceptor = /** @class */ (function () {
|
11
|
+
function ErrorInterceptor(_injector) {
|
12
|
+
this._injector = _injector;
|
13
|
+
}
|
14
|
+
ErrorInterceptor.prototype.intercept = function (request, next) {
|
15
|
+
var _this = this;
|
16
|
+
return next.handle(request).pipe(catchError(function (err) { return __awaiter(_this, void 0, void 0, function () {
|
17
|
+
var error;
|
18
|
+
return __generator(this, function (_a) {
|
19
|
+
switch (_a.label) {
|
20
|
+
case 0:
|
21
|
+
this._router = this._injector.get(Router);
|
22
|
+
error = null;
|
23
|
+
if (!(err instanceof HttpErrorResponse && err.error instanceof Blob && err.error.type === 'application/json')) return [3 /*break*/, 2];
|
24
|
+
return [4 /*yield*/, this.blobToJson(err).then(function (httpErrorResponse) {
|
25
|
+
if ((!ObjectUtil.isNull(httpErrorResponse)) && (httpErrorResponse instanceof HttpErrorResponse)) {
|
26
|
+
error = httpErrorResponse;
|
27
|
+
}
|
28
|
+
})];
|
29
|
+
case 1:
|
30
|
+
_a.sent();
|
31
|
+
return [3 /*break*/, 3];
|
32
|
+
case 2:
|
33
|
+
if (err instanceof HttpErrorResponse) {
|
34
|
+
error = err;
|
35
|
+
}
|
36
|
+
_a.label = 3;
|
37
|
+
case 3: return [4 /*yield*/, this.validateErrors(error)];
|
38
|
+
case 4: return [4 /*yield*/, (_a.sent()).toPromise().then(function (e) { return e; })];
|
39
|
+
case 5: return [2 /*return*/, _a.sent()];
|
40
|
+
}
|
41
|
+
});
|
42
|
+
}); }));
|
43
|
+
};
|
44
|
+
ErrorInterceptor.prototype.validateErrors = function (err) {
|
45
|
+
return __awaiter(this, void 0, void 0, function () {
|
46
|
+
var _this = this;
|
47
|
+
return __generator(this, function (_a) {
|
48
|
+
return [2 /*return*/, new Promise(function (resolve, reject) {
|
49
|
+
var error = err.error.message || err.statusText;
|
50
|
+
var apiError = err.error.apierror;
|
51
|
+
if (!ObjectUtil.isNull(apiError)) {
|
52
|
+
if ((apiError.status === 'INTERNAL_SERVER_ERROR')
|
53
|
+
&& (apiError.debugMessage && apiError.debugMessage.toUpperCase().includes('QUERY DID NOT RETURN A UNIQUE RESULT'))) {
|
54
|
+
error = 'A consulta não retornou resultado único';
|
55
|
+
}
|
56
|
+
else if ((apiError.status === 'INTERNAL_SERVER_ERROR')
|
57
|
+
&& (apiError.message && apiError.message.toUpperCase().includes('NENHUM REGISTRO FOI ENCONTRADO'))) {
|
58
|
+
error = 'Nenhum registro foi encontrado';
|
59
|
+
}
|
60
|
+
else if ((apiError.status === 'INTERNAL_SERVER_ERROR')
|
61
|
+
&& (apiError.message && apiError.message.toUpperCase().includes('OCORREU UM PROBLEMA INESPERADO'))) {
|
62
|
+
error = 'Ocorreu um problema inesperado';
|
63
|
+
}
|
64
|
+
else if (apiError.status === 'FORBIDDEN') {
|
65
|
+
_this._injector.get(NgZone).run(function () { return _this._router.navigate(['/errors/403']); });
|
66
|
+
return;
|
67
|
+
}
|
68
|
+
else if (apiError.status === 'UNAUTHORIZED') {
|
69
|
+
error = 'Sua sessão expirou';
|
70
|
+
_this._injector.get(AuthenticationService).logout();
|
71
|
+
}
|
72
|
+
else if (!ArrayUtil.isEmpty(apiError.subErrorList)) {
|
73
|
+
error = apiError.subErrorList[0].rejectedMessage;
|
74
|
+
}
|
75
|
+
else {
|
76
|
+
error = apiError.message;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
else if (!navigator.onLine) {
|
80
|
+
error = 'Sem internet';
|
81
|
+
}
|
82
|
+
else if (err.status === 504) {
|
83
|
+
_this._injector.get(NgZone).run(function () { return _this._router.navigate(['/errors/504']); });
|
84
|
+
return;
|
85
|
+
}
|
86
|
+
return resolve(throwError(error));
|
87
|
+
})];
|
88
|
+
});
|
89
|
+
});
|
90
|
+
};
|
91
|
+
ErrorInterceptor.prototype.blobToJson = function (err) {
|
92
|
+
return __awaiter(this, void 0, void 0, function () {
|
93
|
+
return __generator(this, function (_a) {
|
94
|
+
return [2 /*return*/, new Promise(function (resolve, reject) {
|
95
|
+
try {
|
96
|
+
var httpErrorResponse_1 = null;
|
97
|
+
var reader = new FileReader();
|
98
|
+
reader.onload = function (e) {
|
99
|
+
var errmsg = JSON.parse(e.target.result);
|
100
|
+
httpErrorResponse_1 = new HttpErrorResponse({
|
101
|
+
error: errmsg,
|
102
|
+
headers: err.headers,
|
103
|
+
status: err.status,
|
104
|
+
statusText: err.statusText,
|
105
|
+
url: err.url
|
106
|
+
});
|
107
|
+
resolve(httpErrorResponse_1);
|
108
|
+
};
|
109
|
+
reader.readAsText(err.error);
|
110
|
+
}
|
111
|
+
catch (e) {
|
112
|
+
reject(null);
|
113
|
+
throwError(e);
|
114
|
+
}
|
115
|
+
})];
|
116
|
+
});
|
117
|
+
});
|
118
|
+
};
|
119
|
+
ErrorInterceptor.ctorParameters = function () { return [
|
120
|
+
{ type: Injector }
|
121
|
+
]; };
|
122
|
+
ErrorInterceptor = __decorate([
|
123
|
+
Injectable(),
|
124
|
+
__metadata("design:paramtypes", [Injector])
|
125
|
+
], ErrorInterceptor);
|
126
|
+
return ErrorInterceptor;
|
127
|
+
}());
|
128
|
+
export { ErrorInterceptor };
|
129
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3IuaW50ZXJjZXB0b3IuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL2ludGVyY2VwdG9ycy9lcnJvci5pbnRlcmNlcHRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLGlCQUFpQixFQUF3RCxNQUFNLHNCQUFzQixDQUFDO0FBQy9HLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM3RCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDekMsT0FBTyxFQUFjLFVBQVUsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUM5QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFHNUMsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFDM0UsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ2hELE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUdsRDtJQUlJLDBCQUFvQixTQUFtQjtRQUFuQixjQUFTLEdBQVQsU0FBUyxDQUFVO0lBQUksQ0FBQztJQUU1QyxvQ0FBUyxHQUFULFVBQVUsT0FBeUIsRUFBRSxJQUFpQjtRQUF0RCxpQkFxQkM7UUFwQkcsT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksQ0FDNUIsVUFBVSxDQUFDLFVBQU8sR0FBUTs7Ozs7d0JBQ3RCLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLENBQUM7d0JBQ3RDLEtBQUssR0FBUSxJQUFJLENBQUM7NkJBRWxCLENBQUEsR0FBRyxZQUFZLGlCQUFpQixJQUFJLEdBQUcsQ0FBQyxLQUFLLFlBQVksSUFBSSxJQUFJLEdBQUcsQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLGtCQUFrQixDQUFBLEVBQXRHLHdCQUFzRzt3QkFFdEcscUJBQU0sSUFBSSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLENBQUMsVUFBQSxpQkFBaUI7Z0NBQzdDLElBQUksQ0FBQyxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLFlBQVksaUJBQWlCLENBQUMsRUFBRTtvQ0FDN0YsS0FBSyxHQUFHLGlCQUFpQixDQUFDO2lDQUM3Qjs0QkFDTCxDQUFDLENBQUMsRUFBQTs7d0JBSkYsU0FJRSxDQUFDOzs7d0JBRUEsSUFBSSxHQUFHLFlBQVksaUJBQWlCLEVBQUU7NEJBQ3pDLEtBQUssR0FBRyxHQUFHLENBQUM7eUJBQ2Y7OzRCQUVhLHFCQUFNLElBQUksQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLEVBQUE7NEJBQXZDLHFCQUFNLENBQUMsU0FBZ0MsQ0FBQyxDQUFDLFNBQVMsRUFBRSxDQUFDLElBQUksQ0FBQyxVQUFBLENBQUMsSUFBSSxPQUFBLENBQUMsRUFBRCxDQUFDLENBQUMsRUFBQTs0QkFBeEUsc0JBQU8sU0FBaUUsRUFBQzs7O2FBQzVFLENBQUMsQ0FDeUIsQ0FBQztJQUNwQyxDQUFDO0lBRWEseUNBQWMsR0FBNUIsVUFBNkIsR0FBUTs7OztnQkFDakMsc0JBQU8sSUFBSSxPQUFPLENBQUMsVUFBQyxPQUFPLEVBQUUsTUFBTTt3QkFDL0IsSUFBSSxLQUFLLEdBQVEsR0FBRyxDQUFDLEtBQUssQ0FBQyxPQUFPLElBQUksR0FBRyxDQUFDLFVBQVUsQ0FBQzt3QkFDckQsSUFBTSxRQUFRLEdBQWdCLEdBQUcsQ0FBQyxLQUFLLENBQUMsUUFBdUIsQ0FBQzt3QkFFaEUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLEVBQUU7NEJBQzlCLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxLQUFLLHVCQUF1QixDQUFDO21DQUMxQyxDQUFDLFFBQVEsQ0FBQyxZQUFZLElBQUksUUFBUSxDQUFDLFlBQVksQ0FBQyxXQUFXLEVBQUUsQ0FBQyxRQUFRLENBQUMsc0NBQXNDLENBQUMsQ0FBQyxFQUFFO2dDQUNwSCxLQUFLLEdBQUcseUNBQXlDLENBQUM7NkJBQ3JEO2lDQUFNLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxLQUFLLHVCQUF1QixDQUFDO21DQUNqRCxDQUFDLFFBQVEsQ0FBQyxPQUFPLElBQUksUUFBUSxDQUFDLE9BQU8sQ0FBQyxXQUFXLEVBQUUsQ0FBQyxRQUFRLENBQUMsZ0NBQWdDLENBQUMsQ0FBQyxFQUFFO2dDQUNwRyxLQUFLLEdBQUcsZ0NBQWdDLENBQUM7NkJBQzVDO2lDQUFNLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxLQUFLLHVCQUF1QixDQUFDO21DQUNqRCxDQUFDLFFBQVEsQ0FBQyxPQUFPLElBQUksUUFBUSxDQUFDLE9BQU8sQ0FBQyxXQUFXLEVBQUUsQ0FBQyxRQUFRLENBQUMsZ0NBQWdDLENBQUMsQ0FBQyxFQUFFO2dDQUNwRyxLQUFLLEdBQUcsZ0NBQWdDLENBQUM7NkJBQzVDO2lDQUFNLElBQUksUUFBUSxDQUFDLE1BQU0sS0FBSyxXQUFXLEVBQUU7Z0NBQ3hDLEtBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxjQUFNLE9BQUEsS0FBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQyxhQUFhLENBQUMsQ0FBQyxFQUF0QyxDQUFzQyxDQUFDLENBQUM7Z0NBQzdFLE9BQU87NkJBQ1Y7aUNBQU0sSUFBSSxRQUFRLENBQUMsTUFBTSxLQUFLLGNBQWMsRUFBRTtnQ0FDM0MsS0FBSyxHQUFHLG9CQUFvQixDQUFDO2dDQUM3QixLQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUFDOzZCQUN0RDtpQ0FBTSxJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsWUFBWSxDQUFDLEVBQUU7Z0NBQ2xELEtBQUssR0FBRyxRQUFRLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQzs2QkFDcEQ7aUNBQU07Z0NBQ0gsS0FBSyxHQUFHLFFBQVEsQ0FBQyxPQUFPLENBQUM7NkJBQzVCO3lCQUNKOzZCQUFNLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxFQUFFOzRCQUMxQixLQUFLLEdBQUcsY0FBYyxDQUFDO3lCQUMxQjs2QkFBTSxJQUFJLEdBQUcsQ0FBQyxNQUFNLEtBQUssR0FBRyxFQUFFOzRCQUMzQixLQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLENBQUMsY0FBTSxPQUFBLEtBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMsYUFBYSxDQUFDLENBQUMsRUFBdEMsQ0FBc0MsQ0FBQyxDQUFDOzRCQUM3RSxPQUFPO3lCQUNWO3dCQUVELE9BQU8sT0FBTyxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO29CQUN0QyxDQUFDLENBQUMsRUFBQzs7O0tBQ047SUFFYSxxQ0FBVSxHQUF4QixVQUF5QixHQUFROzs7Z0JBQzdCLHNCQUFPLElBQUksT0FBTyxDQUFDLFVBQUMsT0FBTyxFQUFFLE1BQU07d0JBQy9CLElBQUk7NEJBQ0EsSUFBSSxtQkFBaUIsR0FBc0IsSUFBSSxDQUFDOzRCQUNoRCxJQUFNLE1BQU0sR0FBZSxJQUFJLFVBQVUsRUFBRSxDQUFDOzRCQUM1QyxNQUFNLENBQUMsTUFBTSxHQUFHLFVBQUMsQ0FBUTtnQ0FDckIsSUFBTSxNQUFNLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBTyxDQUFDLENBQUMsTUFBTyxDQUFDLE1BQU0sQ0FBQyxDQUFDO2dDQUNsRCxtQkFBaUIsR0FBRyxJQUFJLGlCQUFpQixDQUFDO29DQUN0QyxLQUFLLEVBQUUsTUFBTTtvQ0FDYixPQUFPLEVBQUUsR0FBRyxDQUFDLE9BQU87b0NBQ3BCLE1BQU0sRUFBRSxHQUFHLENBQUMsTUFBTTtvQ0FDbEIsVUFBVSxFQUFFLEdBQUcsQ0FBQyxVQUFVO29DQUMxQixHQUFHLEVBQUUsR0FBRyxDQUFDLEdBQUc7aUNBQ2YsQ0FBQyxDQUFDO2dDQUNILE9BQU8sQ0FBQyxtQkFBaUIsQ0FBQyxDQUFDOzRCQUMvQixDQUFDLENBQUM7NEJBQ0YsTUFBTSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUM7eUJBQ2hDO3dCQUFDLE9BQU8sQ0FBQyxFQUFFOzRCQUNSLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQzs0QkFDYixVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUM7eUJBQ2pCO29CQUNMLENBQUMsQ0FBQyxFQUFDOzs7S0FDTjs7Z0JBcEY4QixRQUFROztJQUo5QixnQkFBZ0I7UUFENUIsVUFBVSxFQUFFO3lDQUtzQixRQUFRO09BSjlCLGdCQUFnQixDQTBGNUI7SUFBRCx1QkFBQztDQUFBLEFBMUZELElBMEZDO1NBMUZZLGdCQUFnQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBFcnJvclJlc3BvbnNlLCBIdHRwRXZlbnQsIEh0dHBIYW5kbGVyLCBIdHRwSW50ZXJjZXB0b3IsIEh0dHBSZXF1ZXN0IH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uL2h0dHAnO1xuaW1wb3J0IHsgSW5qZWN0YWJsZSwgSW5qZWN0b3IsIE5nWm9uZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IE9ic2VydmFibGUsIHRocm93RXJyb3IgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IGNhdGNoRXJyb3IgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbmltcG9ydCB7IEFwaUVycm9yRFRPIH0gZnJvbSAnLi4vbW9kZWxzL2R0by9hcGktZXJyb3IuZHRvJztcbmltcG9ydCB7IEF1dGhlbnRpY2F0aW9uU2VydmljZSB9IGZyb20gJy4uL3NlcnZpY2VzL2F1dGhlbnRpY2F0aW9uLnNlcnZpY2UnO1xuaW1wb3J0IHsgQXJyYXlVdGlsIH0gZnJvbSAnLi4vdXRpbHMvYXJyYXkudXRpbCc7XG5pbXBvcnQgeyBPYmplY3RVdGlsIH0gZnJvbSAnLi4vdXRpbHMvb2JqZWN0LnV0aWwnO1xuXG5ASW5qZWN0YWJsZSgpXG5leHBvcnQgY2xhc3MgRXJyb3JJbnRlcmNlcHRvciBpbXBsZW1lbnRzIEh0dHBJbnRlcmNlcHRvciB7XG5cbiAgICBwcml2YXRlIF9yb3V0ZXI6IFJvdXRlcjtcblxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgX2luamVjdG9yOiBJbmplY3RvcikgeyB9XG5cbiAgICBpbnRlcmNlcHQocmVxdWVzdDogSHR0cFJlcXVlc3Q8YW55PiwgbmV4dDogSHR0cEhhbmRsZXIpOiBPYnNlcnZhYmxlPEh0dHBFdmVudDxhbnk+PiB7XG4gICAgICAgIHJldHVybiBuZXh0LmhhbmRsZShyZXF1ZXN0KS5waXBlKFxuICAgICAgICAgICAgY2F0Y2hFcnJvcihhc3luYyAoZXJyOiBhbnkpID0+IHtcbiAgICAgICAgICAgICAgICB0aGlzLl9yb3V0ZXIgPSB0aGlzLl9pbmplY3Rvci5nZXQoUm91dGVyKTtcbiAgICAgICAgICAgICAgICBsZXQgZXJyb3I6IGFueSA9IG51bGw7XG5cbiAgICAgICAgICAgICAgICBpZiAoZXJyIGluc3RhbmNlb2YgSHR0cEVycm9yUmVzcG9uc2UgJiYgZXJyLmVycm9yIGluc3RhbmNlb2YgQmxvYiAmJiBlcnIuZXJyb3IudHlwZSA9PT0gJ2FwcGxpY2F0aW9uL2pzb24nKSB7XG5cbiAgICAgICAgICAgICAgICAgICAgYXdhaXQgdGhpcy5ibG9iVG9Kc29uKGVycikudGhlbihodHRwRXJyb3JSZXNwb25zZSA9PiB7XG4gICAgICAgICAgICAgICAgICAgICAgICBpZiAoKCFPYmplY3RVdGlsLmlzTnVsbChodHRwRXJyb3JSZXNwb25zZSkpICYmIChodHRwRXJyb3JSZXNwb25zZSBpbnN0YW5jZW9mIEh0dHBFcnJvclJlc3BvbnNlKSkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGVycm9yID0gaHR0cEVycm9yUmVzcG9uc2U7XG4gICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIH0pO1xuXG4gICAgICAgICAgICAgICAgfSBlbHNlIGlmIChlcnIgaW5zdGFuY2VvZiBIdHRwRXJyb3JSZXNwb25zZSkge1xuICAgICAgICAgICAgICAgICAgICBlcnJvciA9IGVycjtcbiAgICAgICAgICAgICAgICB9XG5cbiAgICAgICAgICAgICAgICByZXR1cm4gYXdhaXQgKGF3YWl0IHRoaXMudmFsaWRhdGVFcnJvcnMoZXJyb3IpKS50b1Byb21pc2UoKS50aGVuKGUgPT4gZSk7XG4gICAgICAgICAgICB9KVxuICAgICAgICApIGFzIE9ic2VydmFibGU8SHR0cEV2ZW50PGFueT4+O1xuICAgIH1cblxuICAgIHByaXZhdGUgYXN5bmMgdmFsaWRhdGVFcnJvcnMoZXJyOiBhbnkpOiBQcm9taXNlPE9ic2VydmFibGU8bmV2ZXI+PiB7XG4gICAgICAgIHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZSwgcmVqZWN0KSA9PiB7XG4gICAgICAgICAgICBsZXQgZXJyb3I6IGFueSA9IGVyci5lcnJvci5tZXNzYWdlIHx8IGVyci5zdGF0dXNUZXh0O1xuICAgICAgICAgICAgY29uc3QgYXBpRXJyb3I6IEFwaUVycm9yRFRPID0gZXJyLmVycm9yLmFwaWVycm9yIGFzIEFwaUVycm9yRFRPO1xuXG4gICAgICAgICAgICBpZiAoIU9iamVjdFV0aWwuaXNOdWxsKGFwaUVycm9yKSkge1xuICAgICAgICAgICAgICAgIGlmICgoYXBpRXJyb3Iuc3RhdHVzID09PSAnSU5URVJOQUxfU0VSVkVSX0VSUk9SJylcbiAgICAgICAgICAgICAgICAgICAgJiYgKGFwaUVycm9yLmRlYnVnTWVzc2FnZSAmJiBhcGlFcnJvci5kZWJ1Z01lc3NhZ2UudG9VcHBlckNhc2UoKS5pbmNsdWRlcygnUVVFUlkgRElEIE5PVCBSRVRVUk4gQSBVTklRVUUgUkVTVUxUJykpKSB7XG4gICAgICAgICAgICAgICAgICAgIGVycm9yID0gJ0EgY29uc3VsdGEgbsOjbyByZXRvcm5vdSByZXN1bHRhZG8gw7puaWNvJztcbiAgICAgICAgICAgICAgICB9IGVsc2UgaWYgKChhcGlFcnJvci5zdGF0dXMgPT09ICdJTlRFUk5BTF9TRVJWRVJfRVJST1InKVxuICAgICAgICAgICAgICAgICAgICAmJiAoYXBpRXJyb3IubWVzc2FnZSAmJiBhcGlFcnJvci5tZXNzYWdlLnRvVXBwZXJDYXNlKCkuaW5jbHVkZXMoJ05FTkhVTSBSRUdJU1RSTyBGT0kgRU5DT05UUkFETycpKSkge1xuICAgICAgICAgICAgICAgICAgICBlcnJvciA9ICdOZW5odW0gcmVnaXN0cm8gZm9pIGVuY29udHJhZG8nO1xuICAgICAgICAgICAgICAgIH0gZWxzZSBpZiAoKGFwaUVycm9yLnN0YXR1cyA9PT0gJ0lOVEVSTkFMX1NFUlZFUl9FUlJPUicpXG4gICAgICAgICAgICAgICAgICAgICYmIChhcGlFcnJvci5tZXNzYWdlICYmIGFwaUVycm9yLm1lc3NhZ2UudG9VcHBlckNhc2UoKS5pbmNsdWRlcygnT0NPUlJFVSBVTSBQUk9CTEVNQSBJTkVTUEVSQURPJykpKSB7XG4gICAgICAgICAgICAgICAgICAgIGVycm9yID0gJ09jb3JyZXUgdW0gcHJvYmxlbWEgaW5lc3BlcmFkbyc7XG4gICAgICAgICAgICAgICAgfSBlbHNlIGlmIChhcGlFcnJvci5zdGF0dXMgPT09ICdGT1JCSURERU4nKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX2luamVjdG9yLmdldChOZ1pvbmUpLnJ1bigoKSA9PiB0aGlzLl9yb3V0ZXIubmF2aWdhdGUoWycvZXJyb3JzLzQwMyddKSk7XG4gICAgICAgICAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgICAgICAgICB9IGVsc2UgaWYgKGFwaUVycm9yLnN0YXR1cyA9PT0gJ1VOQVVUSE9SSVpFRCcpIHtcbiAgICAgICAgICAgICAgICAgICAgZXJyb3IgPSAnU3VhIHNlc3PDo28gZXhwaXJvdSc7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX2luamVjdG9yLmdldChBdXRoZW50aWNhdGlvblNlcnZpY2UpLmxvZ291dCgpO1xuICAgICAgICAgICAgICAgIH0gZWxzZSBpZiAoIUFycmF5VXRpbC5pc0VtcHR5KGFwaUVycm9yLnN1YkVycm9yTGlzdCkpIHtcbiAgICAgICAgICAgICAgICAgICAgZXJyb3IgPSBhcGlFcnJvci5zdWJFcnJvckxpc3RbMF0ucmVqZWN0ZWRNZXNzYWdlO1xuICAgICAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgICAgIGVycm9yID0gYXBpRXJyb3IubWVzc2FnZTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9IGVsc2UgaWYgKCFuYXZpZ2F0b3Iub25MaW5lKSB7XG4gICAgICAgICAgICAgICAgZXJyb3IgPSAnU2VtIGludGVybmV0JztcbiAgICAgICAgICAgIH0gZWxzZSBpZiAoZXJyLnN0YXR1cyA9PT0gNTA0KSB7XG4gICAgICAgICAgICAgICAgdGhpcy5faW5qZWN0b3IuZ2V0KE5nWm9uZSkucnVuKCgpID0+IHRoaXMuX3JvdXRlci5uYXZpZ2F0ZShbJy9lcnJvcnMvNTA0J10pKTtcbiAgICAgICAgICAgICAgICByZXR1cm47XG4gICAgICAgICAgICB9XG5cbiAgICAgICAgICAgIHJldHVybiByZXNvbHZlKHRocm93RXJyb3IoZXJyb3IpKTtcbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBhc3luYyBibG9iVG9Kc29uKGVycjogYW55KTogUHJvbWlzZTxIdHRwRXJyb3JSZXNwb25zZT4ge1xuICAgICAgICByZXR1cm4gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgICAgICAgICAgdHJ5IHtcbiAgICAgICAgICAgICAgICBsZXQgaHR0cEVycm9yUmVzcG9uc2U6IEh0dHBFcnJvclJlc3BvbnNlID0gbnVsbDtcbiAgICAgICAgICAgICAgICBjb25zdCByZWFkZXI6IEZpbGVSZWFkZXIgPSBuZXcgRmlsZVJlYWRlcigpO1xuICAgICAgICAgICAgICAgIHJlYWRlci5vbmxvYWQgPSAoZTogRXZlbnQpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgY29uc3QgZXJybXNnID0gSlNPTi5wYXJzZSgoPGFueT5lLnRhcmdldCkucmVzdWx0KTtcbiAgICAgICAgICAgICAgICAgICAgaHR0cEVycm9yUmVzcG9uc2UgPSBuZXcgSHR0cEVycm9yUmVzcG9uc2Uoe1xuICAgICAgICAgICAgICAgICAgICAgICAgZXJyb3I6IGVycm1zZyxcbiAgICAgICAgICAgICAgICAgICAgICAgIGhlYWRlcnM6IGVyci5oZWFkZXJzLFxuICAgICAgICAgICAgICAgICAgICAgICAgc3RhdHVzOiBlcnIuc3RhdHVzLFxuICAgICAgICAgICAgICAgICAgICAgICAgc3RhdHVzVGV4dDogZXJyLnN0YXR1c1RleHQsXG4gICAgICAgICAgICAgICAgICAgICAgICB1cmw6IGVyci51cmxcbiAgICAgICAgICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICAgICAgICAgIHJlc29sdmUoaHR0cEVycm9yUmVzcG9uc2UpO1xuICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICAgICAgcmVhZGVyLnJlYWRBc1RleHQoZXJyLmVycm9yKTtcbiAgICAgICAgICAgIH0gY2F0Y2ggKGUpIHtcbiAgICAgICAgICAgICAgICByZWplY3QobnVsbCk7XG4gICAgICAgICAgICAgICAgdGhyb3dFcnJvcihlKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSk7XG4gICAgfVxuXG59XG4iXX0=
|
@@ -0,0 +1,7 @@
|
|
1
|
+
var AbstractModel = /** @class */ (function () {
|
2
|
+
function AbstractModel() {
|
3
|
+
}
|
4
|
+
return AbstractModel;
|
5
|
+
}());
|
6
|
+
export { AbstractModel };
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWJzdHJhY3QubW9kZWwuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9hYnN0cmFjdC5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtJQUFBO0lBSUEsQ0FBQztJQUFELG9CQUFDO0FBQUQsQ0FBQyxBQUpELElBSUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgYWJzdHJhY3QgY2xhc3MgQWJzdHJhY3RNb2RlbCB7XG5cbiAgICBpZDogbnVtYmVyIHwgc3RyaW5nO1xuXG59XG4iXX0=
|
@@ -0,0 +1,7 @@
|
|
1
|
+
var Archive = /** @class */ (function () {
|
2
|
+
function Archive() {
|
3
|
+
}
|
4
|
+
return Archive;
|
5
|
+
}());
|
6
|
+
export { Archive };
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJjaGl2ZS5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2FyY2hpdmUubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7SUFBQTtJQU1BLENBQUM7SUFBRCxjQUFDO0FBQUQsQ0FBQyxBQU5ELElBTUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgQXJjaGl2ZSB7XG5cbiAgbmFtZTogc3RyaW5nO1xuXG4gIGNvbnRlbnQ6IGFueTtcblxufVxuIl19
|
@@ -0,0 +1,7 @@
|
|
1
|
+
var Authority = /** @class */ (function () {
|
2
|
+
function Authority() {
|
3
|
+
}
|
4
|
+
return Authority;
|
5
|
+
}());
|
6
|
+
export { Authority };
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aG9yaXR5Lm1vZGVsLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsiY29yZS9tb2RlbHMvYXV0aG9yaXR5Lm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0lBQUE7SUFJQSxDQUFDO0lBQUQsZ0JBQUM7QUFBRCxDQUFDLEFBSkQsSUFJQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBBdXRob3JpdHkge1xuXG4gIGF1dGhvcml0eTogc3RyaW5nO1xuXG59XG4iXX0=
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractModel } from './abstract.model';
|
3
|
+
var BaseUser = /** @class */ (function (_super) {
|
4
|
+
__extends(BaseUser, _super);
|
5
|
+
function BaseUser() {
|
6
|
+
var _this = _super.call(this) || this;
|
7
|
+
_this.menuList = [];
|
8
|
+
return _this;
|
9
|
+
}
|
10
|
+
return BaseUser;
|
11
|
+
}(AbstractModel));
|
12
|
+
export { BaseUser };
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS11c2VyLm1vZGVsLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsiY29yZS9tb2RlbHMvYmFzZS11c2VyLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0sa0JBQWtCLENBQUM7QUFJL0M7SUFBOEIsNEJBQWE7SUFjdkM7UUFBQSxZQUNJLGlCQUFPLFNBRVY7UUFERyxLQUFJLENBQUMsUUFBUSxHQUFHLEVBQUUsQ0FBQzs7SUFDdkIsQ0FBQztJQUVMLGVBQUM7QUFBRCxDQUFDLEFBbkJELENBQThCLGFBQWEsR0FtQjFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtBYnN0cmFjdE1vZGVsfSBmcm9tICcuL2Fic3RyYWN0Lm1vZGVsJztcbmltcG9ydCB7TWVudURUT30gZnJvbSAnLi9kdG8vbWVudS5kdG8nO1xuaW1wb3J0IHtBdXRob3JpdHl9IGZyb20gJy4vYXV0aG9yaXR5Lm1vZGVsJztcblxuZXhwb3J0IGNsYXNzIEJhc2VVc2VyIGV4dGVuZHMgQWJzdHJhY3RNb2RlbCB7XG5cbiAgICBuYW1lOiBzdHJpbmc7XG5cbiAgICB1c2VybmFtZTogc3RyaW5nO1xuXG4gICAgcGFzc3dvcmQ6IHN0cmluZztcblxuICAgIGxhc3RBY2Nlc3M6IERhdGU7XG5cbiAgICBhdXRob3JpdGllczogQXV0aG9yaXR5W107XG5cbiAgICBtZW51TGlzdDogTWVudURUT1tdO1xuXG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgICAgIHRoaXMubWVudUxpc3QgPSBbXTtcbiAgICB9XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,7 @@
|
|
1
|
+
var AbstractDTO = /** @class */ (function () {
|
2
|
+
function AbstractDTO() {
|
3
|
+
}
|
4
|
+
return AbstractDTO;
|
5
|
+
}());
|
6
|
+
export { AbstractDTO };
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWJzdHJhY3QuZHRvLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsiY29yZS9tb2RlbHMvZHRvL2Fic3RyYWN0LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtJQUFBO0lBQ0EsQ0FBQztJQUFELGtCQUFDO0FBQUQsQ0FBQyxBQURELElBQ0MiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgYWJzdHJhY3QgY2xhc3MgQWJzdHJhY3REVE8ge1xufVxuIl19
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var ApiErrorDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(ApiErrorDTO, _super);
|
5
|
+
function ApiErrorDTO() {
|
6
|
+
var _this = _super.call(this) || this;
|
7
|
+
_this.subErrorList = [];
|
8
|
+
return _this;
|
9
|
+
}
|
10
|
+
return ApiErrorDTO;
|
11
|
+
}(AbstractDTO));
|
12
|
+
export { ApiErrorDTO };
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWVycm9yLmR0by5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2R0by9hcGktZXJyb3IuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUMsV0FBVyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFHM0M7SUFBaUMsK0JBQVc7SUFVMUM7UUFBQSxZQUNFLGlCQUFPLFNBRVI7UUFEQyxLQUFJLENBQUMsWUFBWSxHQUFHLEVBQUUsQ0FBQzs7SUFDekIsQ0FBQztJQUVILGtCQUFDO0FBQUQsQ0FBQyxBQWZELENBQWlDLFdBQVcsR0FlM0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0Fic3RyYWN0RFRPfSBmcm9tICcuL2Fic3RyYWN0LmR0byc7XG5pbXBvcnQge0FwaVN1YkVycm9yRFRPfSBmcm9tICcuL2FwaS1zdWItZXJyb3IuZHRvJztcblxuZXhwb3J0IGNsYXNzIEFwaUVycm9yRFRPIGV4dGVuZHMgQWJzdHJhY3REVE8ge1xuXG4gIGRlYnVnTWVzc2FnZTogc3RyaW5nO1xuXG4gIG1lc3NhZ2U6IHN0cmluZztcblxuICBzdGF0dXM6IHN0cmluZztcblxuICBzdWJFcnJvckxpc3Q6IEFwaVN1YkVycm9yRFRPW107XG5cbiAgY29uc3RydWN0b3IoKSB7XG4gICAgc3VwZXIoKTtcbiAgICB0aGlzLnN1YkVycm9yTGlzdCA9IFtdO1xuICB9XG5cbn1cblxuXG4iXX0=
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var ApiSubErrorDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(ApiSubErrorDTO, _super);
|
5
|
+
function ApiSubErrorDTO() {
|
6
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
}
|
8
|
+
return ApiSubErrorDTO;
|
9
|
+
}(AbstractDTO));
|
10
|
+
export { ApiSubErrorDTO };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXN1Yi1lcnJvci5kdG8uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9kdG8vYXBpLXN1Yi1lcnJvci5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUUzQztJQUFvQyxrQ0FBVztJQUEvQzs7SUFVQSxDQUFDO0lBQUQscUJBQUM7QUFBRCxDQUFDLEFBVkQsQ0FBb0MsV0FBVyxHQVU5QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7QWJzdHJhY3REVE99IGZyb20gJy4vYWJzdHJhY3QuZHRvJztcblxuZXhwb3J0IGNsYXNzIEFwaVN1YkVycm9yRFRPIGV4dGVuZHMgQWJzdHJhY3REVE8ge1xuXG4gIG9iamVjdDogc3RyaW5nO1xuXG4gIGZpbGVkOiBzdHJpbmc7XG5cbiAgcmVqZWN0ZWRWYWx1ZTogYW55O1xuXG4gIHJlamVjdGVkTWVzc2FnZTogc3RyaW5nO1xuXG59XG4iXX0=
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var ChartDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(ChartDTO, _super);
|
5
|
+
function ChartDTO() {
|
6
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
}
|
8
|
+
return ChartDTO;
|
9
|
+
}(AbstractDTO));
|
10
|
+
export { ChartDTO };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhcnQuZHRvLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsiY29yZS9tb2RlbHMvZHRvL2NoYXJ0LmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFdBQVcsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBRTNDO0lBQThCLDRCQUFXO0lBQXpDOztJQU1BLENBQUM7SUFBRCxlQUFDO0FBQUQsQ0FBQyxBQU5ELENBQThCLFdBQVcsR0FNeEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0Fic3RyYWN0RFRPfSBmcm9tICcuL2Fic3RyYWN0LmR0byc7XG5cbmV4cG9ydCBjbGFzcyBDaGFydERUTyBleHRlbmRzIEFic3RyYWN0RFRPIHtcblxuICBsYWJlbDogc3RyaW5nO1xuXG4gIHZhbHVlOiBzdHJpbmc7XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var ConfirmationDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(ConfirmationDTO, _super);
|
5
|
+
function ConfirmationDTO() {
|
6
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
_this.isWarningScreen = false;
|
8
|
+
return _this;
|
9
|
+
}
|
10
|
+
return ConfirmationDTO;
|
11
|
+
}(AbstractDTO));
|
12
|
+
export { ConfirmationDTO };
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlybWF0aW9uLmR0by5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2R0by9jb25maXJtYXRpb24uZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFN0M7SUFBcUMsbUNBQVc7SUFBaEQ7UUFBQSxxRUFnQkM7UUFSRyxxQkFBZSxHQUFhLEtBQUssQ0FBQzs7SUFRdEMsQ0FBQztJQUFELHNCQUFDO0FBQUQsQ0FBQyxBQWhCRCxDQUFxQyxXQUFXLEdBZ0IvQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFic3RyYWN0RFRPIH0gZnJvbSAnLi9hYnN0cmFjdC5kdG8nO1xuXG5leHBvcnQgY2xhc3MgQ29uZmlybWF0aW9uRFRPIGV4dGVuZHMgQWJzdHJhY3REVE8ge1xuXG4gICAgdGl0bGU6IHN0cmluZztcblxuICAgIG1lc3NhZ2U6IHN0cmluZztcblxuICAgIGxpc3RNZXNzYWdlPzogc3RyaW5nW107XG5cbiAgICBpc1dhcm5pbmdTY3JlZW4/OiBib29sZWFuID0gZmFsc2U7XG5cbiAgICB3aWR0aD86IHN0cmluZztcblxuICAgIGFjY2VwdD86IEZ1bmN0aW9uO1xuXG4gICAgY2FuY2VsPzogRnVuY3Rpb247XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var DialogDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(DialogDTO, _super);
|
5
|
+
function DialogDTO() {
|
6
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
}
|
8
|
+
return DialogDTO;
|
9
|
+
}(AbstractDTO));
|
10
|
+
export { DialogDTO };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGlhbG9nLmR0by5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2R0by9kaWFsb2cuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFHQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFN0M7SUFBd0MsNkJBQVc7SUFBbkQ7O0lBOENBLENBQUM7SUFBRCxnQkFBQztBQUFELENBQUMsQUE5Q0QsQ0FBd0MsV0FBVyxHQThDbEQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnRUeXBlIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL292ZXJsYXknO1xuaW1wb3J0IHsgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERpYWxvZ1Bvc2l0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwnO1xuaW1wb3J0IHsgQWJzdHJhY3REVE8gfSBmcm9tICcuL2Fic3RyYWN0LmR0byc7XG5cbmV4cG9ydCBjbGFzcyBEaWFsb2dEVE88RCA9IGFueT4gZXh0ZW5kcyBBYnN0cmFjdERUTyB7XG5cbiAgICBjb21wb25lbnRPclRlbXBsYXRlUmVmOiBDb21wb25lbnRUeXBlPGFueT4gfCBUZW1wbGF0ZVJlZjxhbnk+O1xuXG4gICAgLyoqIENsYXNzZSBwZXJzb25hbGl6YWRhIHBhcmEgbyBwYWluZWwgZGUgc29icmVwb3Npw6fDo28uICovXG4gICAgcGFuZWxDbGFzcz86IHN0cmluZyB8IHN0cmluZ1tdO1xuXG4gICAgLyoqIFNlIG8gdXN1w6FyaW8gcG9kZSB1c2FyIGVzY2FwZSBvdSBjbGljYXIgbm8gcGxhbm8gZGUgZnVuZG8gcGFyYSBmZWNoYXIgbyBtb2RhbC4gKi9cbiAgICBkaXNhYmxlQ2xvc2U/OiBib29sZWFuO1xuXG4gICAgLyoqIExhcmd1cmEgZG8gZGlhbG9nLiovXG4gICAgd2lkdGg/OiBzdHJpbmc7XG5cbiAgICAvKiogQWx0dXJhIGRvIGRpYWxvZy4gKi9cbiAgICBoZWlnaHQ/OiBzdHJpbmc7XG5cbiAgICAvKiogTGFyZ3VyYSBtw61uaW1hIGRvIGRpYWxvZy4gU2UgdW0gbsO6bWVybyBmb3IgZm9ybmVjaWRvLCBzZXLDo28gYXNzdW1pZGFzIHVuaWRhZGVzIGRlIHBpeGVscy4gKi9cbiAgICBtaW5XaWR0aD86IG51bWJlciB8IHN0cmluZztcblxuICAgIC8qKiBBbHR1cmEgbcOtbmltYSBkbyBkaWFsb2cuIFNlIHVtIG7Dum1lcm8gZm9yIGZvcm5lY2lkbywgc2Vyw6NvIGFzc3VtaWRhcyB1bmlkYWRlcyBkZSBwaXhlbHMuICovXG4gICAgbWluSGVpZ2h0PzogbnVtYmVyIHwgc3RyaW5nO1xuXG4gICAgLyoqIExhcmd1cmEgbcOheGltYSBkbyBkaWFsb2cuIFNlIHVtIG7Dum1lcm8gZm9yIGZvcm5lY2lkbywgc2Vyw6NvIGFzc3VtaWRhcyB1bmlkYWRlcyBkZSBwaXhlbHMuIE8gcGFkcsOjbyDDqSA4MHZ3ICovXG4gICAgbWF4V2lkdGg/OiBudW1iZXIgfCBzdHJpbmc7XG5cbiAgICAvKiogQWx0dXJhIG3DoXhpbWEgZG8gZGlhbG9nLiBTZSB1bSBuw7ptZXJvIGZvciBmb3JuZWNpZG8sIHNlcsOjbyBhc3N1bWlkYXMgdW5pZGFkZXMgZGUgcGl4ZWxzLiAqL1xuICAgIG1heEhlaWdodD86IG51bWJlciB8IHN0cmluZztcblxuICAgIC8qKiBTdWJzdGl0dWnDp8O1ZXMgZGUgcG9zacOnw6NvLiAqL1xuICAgIHBvc2l0aW9uPzogRGlhbG9nUG9zaXRpb247XG5cbiAgICAvKiogRGFkb3Mgc2VuZG8gaW5qZXRhZG9zIG5vIGRpYWxvZyAqL1xuICAgIGRhdGE/OiBEIHwgbnVsbDtcblxuICAgIC8qKiBTZSBhIGNhaXhhIGRlIGRpw6Fsb2dvIGRldmUgZm9jYXIgbyBwcmltZWlybyBlbGVtZW50byBmb2PDoXZlbCBlbSBhYmVydG8uICovXG4gICAgYXV0b0ZvY3VzPzogYm9vbGVhbjtcblxuICAgIC8qKiBTZSBhIGNhaXhhIGRlIGRpw6Fsb2dvIGRldmUgcmVzdGF1cmFyIG8gZm9jbyBwYXJhIG8gZWxlbWVudG8gcHJldmlhbWVudGUgZm9jYWRvLCBkZXBvaXMgZGUgZmVjaGFkby4gKi9cbiAgICByZXN0b3JlRm9jdXM/OiBib29sZWFuO1xuXG4gICAgLyoqXG4gICAgICogU2UgbyBkaWFsb2cgZGV2ZSBmZWNoYXIgcXVhbmRvIG8gdXN1w6FyaW8gcmV0cm9jZWRlL2F2YW7Dp2Egbm8gaGlzdMOzcmljby5cbiAgICAgKiBPYnNlcnZlIHF1ZSBpc3NvIGdlcmFsbWVudGUgbsOjbyBpbmNsdWkgY2xpY2FyIGVtIGxpbmtzIChhIG1lbm9zIHF1ZSBvIHVzdcOhcmlvIGVzdGVqYSB1c2FuZG8gYSBgSGFzaExvY2F0aW9uU3RyYXRlZ3lgKS5cbiAgICAgKi9cbiAgICBjbG9zZU9uTmF2aWdhdGlvbj86IGJvb2xlYW47XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var FilterDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(FilterDTO, _super);
|
5
|
+
function FilterDTO() {
|
6
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
}
|
8
|
+
return FilterDTO;
|
9
|
+
}(AbstractDTO));
|
10
|
+
export { FilterDTO };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsdGVyLmR0by5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2R0by9maWx0ZXIuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUMsV0FBVyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFHM0M7SUFBK0IsNkJBQVc7SUFBMUM7O0lBVUEsQ0FBQztJQUFELGdCQUFDO0FBQUQsQ0FBQyxBQVZELENBQStCLFdBQVcsR0FVekMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0Fic3RyYWN0RFRPfSBmcm9tICcuL2Fic3RyYWN0LmR0byc7XG5pbXBvcnQge1NvcnREVE99IGZyb20gJy4vc29ydC5kdG8nO1xuXG5leHBvcnQgY2xhc3MgRmlsdGVyRFRPIGV4dGVuZHMgQWJzdHJhY3REVE8ge1xuXG4gICAgc29ydHM6IFNvcnREVE9bXTtcblxuICAgIHBhZ2VOdW1iZXI6IG51bWJlcjtcblxuICAgIHBhZ2VTaXplOiBudW1iZXI7XG5cbiAgICBvZmZzZXQ6IG51bWJlcjtcblxufVxuIl19
|
@@ -0,0 +1,11 @@
|
|
1
|
+
var InputListboxDTO = /** @class */ (function () {
|
2
|
+
function InputListboxDTO(radiobuttonSelected, entitentitiesSelected) {
|
3
|
+
if (radiobuttonSelected === void 0) { radiobuttonSelected = 'ALL'; }
|
4
|
+
if (entitentitiesSelected === void 0) { entitentitiesSelected = []; }
|
5
|
+
this.radiobuttonSelected = radiobuttonSelected;
|
6
|
+
this.entitiesSelected = entitentitiesSelected;
|
7
|
+
}
|
8
|
+
return InputListboxDTO;
|
9
|
+
}());
|
10
|
+
export { InputListboxDTO };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtbGlzdGJveC5kdG8uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9kdG8vaW5wdXQtbGlzdGJveC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUE7SUFNSSx5QkFBWSxtQkFBcUQsRUFBRSxxQkFBaUM7UUFBeEYsb0NBQUEsRUFBQSwyQkFBcUQ7UUFBRSxzQ0FBQSxFQUFBLDBCQUFpQztRQUNoRyxJQUFJLENBQUMsbUJBQW1CLEdBQUcsbUJBQW1CLENBQUM7UUFDL0MsSUFBSSxDQUFDLGdCQUFnQixHQUFHLHFCQUFxQixDQUFDO0lBQ2xELENBQUM7SUFFTCxzQkFBQztBQUFELENBQUMsQUFYRCxJQVdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUmFkaW9CdXR0b25FbnVtIH0gZnJvbSAnLi4vZW51bXMvcmFkaW8tYnV0dG9uLmVudW0nO1xuXG5leHBvcnQgY2xhc3MgSW5wdXRMaXN0Ym94RFRPIHtcblxuICAgIHJhZGlvYnV0dG9uU2VsZWN0ZWQ6IFJhZGlvQnV0dG9uRW51bSB8IHN0cmluZztcblxuICAgIGVudGl0aWVzU2VsZWN0ZWQ6IGFueVtdO1xuXG4gICAgY29uc3RydWN0b3IocmFkaW9idXR0b25TZWxlY3RlZDogUmFkaW9CdXR0b25FbnVtIHwgc3RyaW5nID0gJ0FMTCcsIGVudGl0ZW50aXRpZXNTZWxlY3RlZDogYW55W10gPSBbXSkge1xuICAgICAgICB0aGlzLnJhZGlvYnV0dG9uU2VsZWN0ZWQgPSByYWRpb2J1dHRvblNlbGVjdGVkO1xuICAgICAgICB0aGlzLmVudGl0aWVzU2VsZWN0ZWQgPSBlbnRpdGVudGl0aWVzU2VsZWN0ZWQ7XG4gICAgfVxuXG59XG4iXX0=
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var MenuDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(MenuDTO, _super);
|
5
|
+
function MenuDTO() {
|
6
|
+
var _this = _super.call(this) || this;
|
7
|
+
_this.menuList = [];
|
8
|
+
_this.expanded = false;
|
9
|
+
return _this;
|
10
|
+
}
|
11
|
+
return MenuDTO;
|
12
|
+
}(AbstractDTO));
|
13
|
+
export { MenuDTO };
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS5kdG8uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9kdG8vbWVudS5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUNBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUU3QztJQUE2QiwyQkFBVztJQXVCcEM7UUFBQSxZQUNJLGlCQUFPLFNBR1Y7UUFGRyxLQUFJLENBQUMsUUFBUSxHQUFHLEVBQUUsQ0FBQztRQUNuQixLQUFJLENBQUMsUUFBUSxHQUFHLEtBQUssQ0FBQzs7SUFDMUIsQ0FBQztJQUVMLGNBQUM7QUFBRCxDQUFDLEFBN0JELENBQTZCLFdBQVcsR0E2QnZDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVudVR5cGUsIE1lbnVUeXBlRW51bSB9IGZyb20gJy4uL2VudW1zL21lbnUtdHlwZS5lbnVtJztcbmltcG9ydCB7IEFic3RyYWN0RFRPIH0gZnJvbSAnLi9hYnN0cmFjdC5kdG8nO1xuXG5leHBvcnQgY2xhc3MgTWVudURUTyBleHRlbmRzIEFic3RyYWN0RFRPIHtcblxuICAgIGluZGV4PzogbnVtYmVyO1xuXG4gICAgbmFtZTogc3RyaW5nO1xuXG4gICAgaWNvbj86IHN0cmluZztcblxuICAgIHN2Z0ljb24/OiBzdHJpbmc7XG5cbiAgICByb3V0ZT86IHN0cmluZztcblxuICAgIG1vZHVsZT86IHN0cmluZztcblxuICAgIHR5cGU6IE1lbnVUeXBlRW51bSB8IE1lbnVUeXBlO1xuXG4gICAgbWVudUxpc3Q/OiBNZW51RFRPW107XG5cbiAgICBhY3Rpb24/OiBGdW5jdGlvbjtcblxuICAgIC8vIEBUcmFuc2llbnRcbiAgICBleHBhbmRlZD86IGJvb2xlYW47XG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgc3VwZXIoKTtcbiAgICAgICAgdGhpcy5tZW51TGlzdCA9IFtdO1xuICAgICAgICB0aGlzLmV4cGFuZGVkID0gZmFsc2U7XG4gICAgfVxuXG59XG5cblxuIl19
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var MessageDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(MessageDTO, _super);
|
5
|
+
function MessageDTO() {
|
6
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
}
|
8
|
+
return MessageDTO;
|
9
|
+
}(AbstractDTO));
|
10
|
+
export { MessageDTO };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZS5kdG8uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9kdG8vbWVzc2FnZS5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUU3QztJQUFnQyw4QkFBVztJQUEzQzs7SUFVQSxDQUFDO0lBQUQsaUJBQUM7QUFBRCxDQUFDLEFBVkQsQ0FBZ0MsV0FBVyxHQVUxQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFic3RyYWN0RFRPIH0gZnJvbSAnLi9hYnN0cmFjdC5kdG8nO1xuXG5leHBvcnQgY2xhc3MgTWVzc2FnZURUTyBleHRlbmRzIEFic3RyYWN0RFRPIHtcblxuICAgIHRpdGxlOiBzdHJpbmc7XG5cbiAgICBtZXNzYWdlOiBzdHJpbmc7XG5cbiAgICBpY29uPzogc3RyaW5nO1xuXG4gICAgdHlwZTogJ3N1Y2Nlc3MnIHwgJ2Vycm9yJyB8ICd3YXJuaW5nJyB8ICdpbmZvJztcblxufVxuIl19
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var PageDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(PageDTO, _super);
|
5
|
+
function PageDTO() {
|
6
|
+
var _this = _super.call(this) || this;
|
7
|
+
_this.content = [];
|
8
|
+
_this.number = 0;
|
9
|
+
return _this;
|
10
|
+
}
|
11
|
+
return PageDTO;
|
12
|
+
}(AbstractDTO));
|
13
|
+
export { PageDTO };
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS5kdG8uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9kdG8vcGFnZS5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUUzQztJQUFnQywyQkFBVztJQVV2QztRQUFBLFlBQ0ksaUJBQU8sU0FHVjtRQUZHLEtBQUksQ0FBQyxPQUFPLEdBQUcsRUFBRSxDQUFDO1FBQ2xCLEtBQUksQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDOztJQUNwQixDQUFDO0lBRUwsY0FBQztBQUFELENBQUMsQUFoQkQsQ0FBZ0MsV0FBVyxHQWdCMUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0Fic3RyYWN0RFRPfSBmcm9tICcuL2Fic3RyYWN0LmR0byc7XG5cbmV4cG9ydCBjbGFzcyBQYWdlRFRPPFU+IGV4dGVuZHMgQWJzdHJhY3REVE8ge1xuXG4gICAgY29udGVudDogVVtdO1xuXG4gICAgbnVtYmVyOiBudW1iZXI7XG5cbiAgICB0b3RhbEVsZW1lbnRzOiBudW1iZXI7XG5cbiAgICB0b3RhbFBhZ2VzOiBudW1iZXI7XG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgc3VwZXIoKTtcbiAgICAgICAgdGhpcy5jb250ZW50ID0gW107XG4gICAgICAgIHRoaXMubnVtYmVyID0gMDtcbiAgICB9XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var SortDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(SortDTO, _super);
|
5
|
+
function SortDTO(field, direction) {
|
6
|
+
var _this = _super.call(this) || this;
|
7
|
+
_this.field = field;
|
8
|
+
_this.direction = direction;
|
9
|
+
return _this;
|
10
|
+
}
|
11
|
+
return SortDTO;
|
12
|
+
}(AbstractDTO));
|
13
|
+
export { SortDTO };
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic29ydC5kdG8uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9kdG8vc29ydC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUczQztJQUE2QiwyQkFBVztJQU10QyxpQkFBWSxLQUFhLEVBQUUsU0FBNEI7UUFBdkQsWUFDRSxpQkFBTyxTQUdSO1FBRkMsS0FBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7UUFDbkIsS0FBSSxDQUFDLFNBQVMsR0FBRyxTQUFTLENBQUM7O0lBQzdCLENBQUM7SUFFSCxjQUFDO0FBQUQsQ0FBQyxBQVpELENBQTZCLFdBQVcsR0FZdkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0Fic3RyYWN0RFRPfSBmcm9tICcuL2Fic3RyYWN0LmR0byc7XG5pbXBvcnQge1NvcnREaXJlY3Rpb25FbnVtfSBmcm9tICcuLi9lbnVtcy9zb3J0LWRpcmVjdGlvbi5lbnVtJztcblxuZXhwb3J0IGNsYXNzIFNvcnREVE8gZXh0ZW5kcyBBYnN0cmFjdERUTyB7XG5cbiAgZmllbGQ6IHN0cmluZztcblxuICBkaXJlY3Rpb246IFNvcnREaXJlY3Rpb25FbnVtO1xuXG4gIGNvbnN0cnVjdG9yKGZpZWxkOiBzdHJpbmcsIGRpcmVjdGlvbjogU29ydERpcmVjdGlvbkVudW0pIHtcbiAgICBzdXBlcigpO1xuICAgIHRoaXMuZmllbGQgPSBmaWVsZDtcbiAgICB0aGlzLmRpcmVjdGlvbiA9IGRpcmVjdGlvbjtcbiAgfVxuXG59XG4iXX0=
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var TabDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(TabDTO, _super);
|
5
|
+
function TabDTO() {
|
6
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
_this.active = false;
|
8
|
+
_this.closeable = false;
|
9
|
+
_this.disabled = false;
|
10
|
+
return _this;
|
11
|
+
}
|
12
|
+
return TabDTO;
|
13
|
+
}(AbstractDTO));
|
14
|
+
export { TabDTO };
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFiLmR0by5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2R0by90YWIuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFDQSxPQUFPLEVBQUMsV0FBVyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFHM0M7SUFBNEIsMEJBQVc7SUFBdkM7UUFBQSxxRUFrQkM7UUFkQyxZQUFNLEdBQUcsS0FBSyxDQUFDO1FBSWYsZUFBUyxHQUFHLEtBQUssQ0FBQztRQUVsQixjQUFRLEdBQUcsS0FBSyxDQUFDOztJQVFuQixDQUFDO0lBQUQsYUFBQztBQUFELENBQUMsQUFsQkQsQ0FBNEIsV0FBVyxHQWtCdEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0V2ZW50RW1pdHRlciwgVGVtcGxhdGVSZWZ9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdERUT30gZnJvbSAnLi9hYnN0cmFjdC5kdG8nO1xuaW1wb3J0IHtBYnN0cmFjdE1vZGVsfSBmcm9tICcuLi9hYnN0cmFjdC5tb2RlbCc7XG5cbmV4cG9ydCBjbGFzcyBUYWJEVE8gZXh0ZW5kcyBBYnN0cmFjdERUTyB7XG5cbiAgbGFiZWw6IHN0cmluZztcblxuICBhY3RpdmUgPSBmYWxzZTtcblxuICB0ZW1wbGF0ZTogVGVtcGxhdGVSZWY8YW55PjtcblxuICBjbG9zZWFibGUgPSBmYWxzZTtcblxuICBkaXNhYmxlZCA9IGZhbHNlO1xuXG4gIGRhdGE6IGFueTtcblxuICBpY29uOiBzdHJpbmc7XG5cbiAgYWN0aW9uOiAob2JqOiBhbnkpID0+IHZvaWQ7XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var TableColumnDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(TableColumnDTO, _super);
|
5
|
+
function TableColumnDTO(name, property, value, sortable, hiddenSm, visible, width, marginLeft, marginRight, align, template, templateHeader, sliceLength, action) {
|
6
|
+
var _this = _super.call(this) || this;
|
7
|
+
_this.sortable = false;
|
8
|
+
_this.hiddenSm = false;
|
9
|
+
_this.visible = true;
|
10
|
+
_this.name = name;
|
11
|
+
_this.property = property;
|
12
|
+
_this.value = value;
|
13
|
+
_this.sortable = sortable;
|
14
|
+
_this.hiddenSm = hiddenSm;
|
15
|
+
_this.visible = visible;
|
16
|
+
_this.width = width;
|
17
|
+
_this.marginLeft = marginLeft;
|
18
|
+
_this.marginRight = marginRight;
|
19
|
+
_this.align = align;
|
20
|
+
_this.template = template;
|
21
|
+
_this.templateHeader = templateHeader;
|
22
|
+
_this.sliceLength = sliceLength;
|
23
|
+
_this.action = action;
|
24
|
+
return _this;
|
25
|
+
}
|
26
|
+
return TableColumnDTO;
|
27
|
+
}(AbstractDTO));
|
28
|
+
export { TableColumnDTO };
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY29sdW1uLmR0by5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2R0by90YWJsZS1jb2x1bW4uZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFJQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFN0M7SUFBb0Msa0NBQVc7SUE4QjNDLHdCQUNJLElBQVksRUFDWixRQUFnQixFQUNoQixLQUFVLEVBQ1YsUUFBaUIsRUFDakIsUUFBaUIsRUFDakIsT0FBZ0IsRUFDaEIsS0FBa0MsRUFDbEMsVUFBdUMsRUFDdkMsV0FBd0MsRUFDeEMsS0FBYSxFQUNiLFFBQTBCLEVBQzFCLGNBQWdDLEVBQ2hDLFdBQW1CLEVBQ25CLE1BQW9DO1FBZHhDLFlBZ0JJLGlCQUFPLFNBZVY7UUFyREQsY0FBUSxHQUFHLEtBQUssQ0FBQztRQUVqQixjQUFRLEdBQUcsS0FBSyxDQUFDO1FBRWpCLGFBQU8sR0FBRyxJQUFJLENBQUM7UUFtQ1gsS0FBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUM7UUFDakIsS0FBSSxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7UUFDekIsS0FBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7UUFDbkIsS0FBSSxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7UUFDekIsS0FBSSxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7UUFDekIsS0FBSSxDQUFDLE9BQU8sR0FBRyxPQUFPLENBQUM7UUFDdkIsS0FBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7UUFDbkIsS0FBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUM7UUFDN0IsS0FBSSxDQUFDLFdBQVcsR0FBRyxXQUFXLENBQUM7UUFDL0IsS0FBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7UUFDbkIsS0FBSSxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7UUFDekIsS0FBSSxDQUFDLGNBQWMsR0FBRyxjQUFjLENBQUM7UUFDckMsS0FBSSxDQUFDLFdBQVcsR0FBRyxXQUFXLENBQUM7UUFDL0IsS0FBSSxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUM7O0lBQ3pCLENBQUM7SUFFTCxxQkFBQztBQUFELENBQUMsQUEvREQsQ0FBb0MsV0FBVyxHQStEOUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xuXG5pbXBvcnQgeyBBYnN0cmFjdE1vZGVsIH0gZnJvbSAnLi4vYWJzdHJhY3QubW9kZWwnO1xuaW1wb3J0IHsgQWJzdHJhY3REVE8gfSBmcm9tICcuL2Fic3RyYWN0LmR0byc7XG5cbmV4cG9ydCBjbGFzcyBUYWJsZUNvbHVtbkRUTyBleHRlbmRzIEFic3RyYWN0RFRPIHtcblxuICAgIG5hbWU6IHN0cmluZztcblxuICAgIHByb3BlcnR5OiBzdHJpbmc7XG5cbiAgICB2YWx1ZTogYW55O1xuXG4gICAgc29ydGFibGUgPSBmYWxzZTtcblxuICAgIGhpZGRlblNtID0gZmFsc2U7XG5cbiAgICB2aXNpYmxlID0gdHJ1ZTtcblxuICAgIHdpZHRoOiBPYnNlcnZhYmxlPG51bWJlciB8IHN0cmluZz47XG5cbiAgICBtYXJnaW5MZWZ0OiBPYnNlcnZhYmxlPG51bWJlciB8IHN0cmluZz47XG5cbiAgICBtYXJnaW5SaWdodDogT2JzZXJ2YWJsZTxudW1iZXIgfCBzdHJpbmc+O1xuXG4gICAgYWxpZ246IHN0cmluZztcblxuICAgIHRlbXBsYXRlOiBUZW1wbGF0ZVJlZjxhbnk+O1xuXG4gICAgdGVtcGxhdGVIZWFkZXI6IFRlbXBsYXRlUmVmPGFueT47XG5cbiAgICBzbGljZUxlbmd0aDogbnVtYmVyO1xuXG4gICAgYWN0aW9uOiAob2JqOiBBYnN0cmFjdE1vZGVsKSA9PiB2b2lkO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIG5hbWU6IHN0cmluZyxcbiAgICAgICAgcHJvcGVydHk6IHN0cmluZyxcbiAgICAgICAgdmFsdWU6IGFueSxcbiAgICAgICAgc29ydGFibGU6IGJvb2xlYW4sXG4gICAgICAgIGhpZGRlblNtOiBib29sZWFuLFxuICAgICAgICB2aXNpYmxlOiBib29sZWFuLFxuICAgICAgICB3aWR0aDogT2JzZXJ2YWJsZTxudW1iZXIgfCBzdHJpbmc+LFxuICAgICAgICBtYXJnaW5MZWZ0OiBPYnNlcnZhYmxlPG51bWJlciB8IHN0cmluZz4sXG4gICAgICAgIG1hcmdpblJpZ2h0OiBPYnNlcnZhYmxlPG51bWJlciB8IHN0cmluZz4sXG4gICAgICAgIGFsaWduOiBzdHJpbmcsXG4gICAgICAgIHRlbXBsYXRlOiBUZW1wbGF0ZVJlZjxhbnk+LFxuICAgICAgICB0ZW1wbGF0ZUhlYWRlcjogVGVtcGxhdGVSZWY8YW55PixcbiAgICAgICAgc2xpY2VMZW5ndGg6IG51bWJlcixcbiAgICAgICAgYWN0aW9uOiAob2JqOiBBYnN0cmFjdE1vZGVsKSA9PiB2b2lkXG4gICAgKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgICAgIHRoaXMubmFtZSA9IG5hbWU7XG4gICAgICAgIHRoaXMucHJvcGVydHkgPSBwcm9wZXJ0eTtcbiAgICAgICAgdGhpcy52YWx1ZSA9IHZhbHVlO1xuICAgICAgICB0aGlzLnNvcnRhYmxlID0gc29ydGFibGU7XG4gICAgICAgIHRoaXMuaGlkZGVuU20gPSBoaWRkZW5TbTtcbiAgICAgICAgdGhpcy52aXNpYmxlID0gdmlzaWJsZTtcbiAgICAgICAgdGhpcy53aWR0aCA9IHdpZHRoO1xuICAgICAgICB0aGlzLm1hcmdpbkxlZnQgPSBtYXJnaW5MZWZ0O1xuICAgICAgICB0aGlzLm1hcmdpblJpZ2h0ID0gbWFyZ2luUmlnaHQ7XG4gICAgICAgIHRoaXMuYWxpZ24gPSBhbGlnbjtcbiAgICAgICAgdGhpcy50ZW1wbGF0ZSA9IHRlbXBsYXRlO1xuICAgICAgICB0aGlzLnRlbXBsYXRlSGVhZGVyID0gdGVtcGxhdGVIZWFkZXI7XG4gICAgICAgIHRoaXMuc2xpY2VMZW5ndGggPSBzbGljZUxlbmd0aDtcbiAgICAgICAgdGhpcy5hY3Rpb24gPSBhY3Rpb247XG4gICAgfVxuXG59XG4iXX0=
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var TableGroupHeaderDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(TableGroupHeaderDTO, _super);
|
5
|
+
function TableGroupHeaderDTO(columnData, childrenGroup, totalCount) {
|
6
|
+
var _this = _super.call(this) || this;
|
7
|
+
_this.columnData = columnData;
|
8
|
+
_this.childrenGroup = childrenGroup;
|
9
|
+
_this.totalCount = totalCount;
|
10
|
+
return _this;
|
11
|
+
}
|
12
|
+
return TableGroupHeaderDTO;
|
13
|
+
}(AbstractDTO));
|
14
|
+
export { TableGroupHeaderDTO };
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtZ3JvdXAtaGVhZGVyLmR0by5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2R0by90YWJsZS1ncm91cC1oZWFkZXIuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFN0M7SUFBeUMsdUNBQVc7SUFRaEQsNkJBQVksVUFBZ0IsRUFBRSxhQUFxQixFQUFFLFVBQW1CO1FBQXhFLFlBQ0ksaUJBQU8sU0FJVjtRQUhHLEtBQUksQ0FBQyxVQUFVLEdBQUcsVUFBVSxDQUFDO1FBQzdCLEtBQUksQ0FBQyxhQUFhLEdBQUcsYUFBYSxDQUFDO1FBQ25DLEtBQUksQ0FBQyxVQUFVLEdBQUcsVUFBVSxDQUFDOztJQUNqQyxDQUFDO0lBRUwsMEJBQUM7QUFBRCxDQUFDLEFBZkQsQ0FBeUMsV0FBVyxHQWVuRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFic3RyYWN0RFRPIH0gZnJvbSAnLi9hYnN0cmFjdC5kdG8nO1xuXG5leHBvcnQgY2xhc3MgVGFibGVHcm91cEhlYWRlckRUTyBleHRlbmRzIEFic3RyYWN0RFRPIHtcblxuICAgIGNvbHVtbkRhdGE6IGFueTtcblxuICAgIGNoaWxkcmVuR3JvdXA6IGFueVtdO1xuXG4gICAgdG90YWxDb3VudDogbnVtYmVyO1xuXG4gICAgY29uc3RydWN0b3IoY29sdW1uRGF0YT86IGFueSwgY2hpbGRyZW5Hcm91cD86IGFueVtdLCB0b3RhbENvdW50PzogbnVtYmVyKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgICAgIHRoaXMuY29sdW1uRGF0YSA9IGNvbHVtbkRhdGE7XG4gICAgICAgIHRoaXMuY2hpbGRyZW5Hcm91cCA9IGNoaWxkcmVuR3JvdXA7XG4gICAgICAgIHRoaXMudG90YWxDb3VudCA9IHRvdGFsQ291bnQ7XG4gICAgfVxuXG59XG4iXX0=
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { PageEvent } from '@angular/material';
|
3
|
+
var TablePageEventDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(TablePageEventDTO, _super);
|
5
|
+
function TablePageEventDTO() {
|
6
|
+
return _super.call(this) || this;
|
7
|
+
}
|
8
|
+
return TablePageEventDTO;
|
9
|
+
}(PageEvent));
|
10
|
+
export { TablePageEventDTO };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtcGFnZS1ldmVudC5kdG8uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9kdG8vdGFibGUtcGFnZS1ldmVudC5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVEsTUFBTSxtQkFBbUIsQ0FBQztBQUVwRDtJQUF1QyxxQ0FBUztJQU01QztlQUNJLGlCQUFPO0lBQ1gsQ0FBQztJQUVMLHdCQUFDO0FBQUQsQ0FBQyxBQVZELENBQXVDLFNBQVMsR0FVL0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQYWdlRXZlbnQsIFNvcnQgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbCc7XG5cbmV4cG9ydCBjbGFzcyBUYWJsZVBhZ2VFdmVudERUTyBleHRlbmRzIFBhZ2VFdmVudCB7XG5cbiAgICBzb3J0PzogU29ydDtcblxuICAgIHBhZ2luYXRvclBhZ2VTaXplT3B0aW9ucz86IG51bWJlcltdO1xuXG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgfVxuXG59XG4iXX0=
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractDTO } from './abstract.dto';
|
3
|
+
var TokenDTO = /** @class */ (function (_super) {
|
4
|
+
__extends(TokenDTO, _super);
|
5
|
+
function TokenDTO() {
|
6
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
}
|
8
|
+
return TokenDTO;
|
9
|
+
}(AbstractDTO));
|
10
|
+
export { TokenDTO };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9rZW4uZHRvLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsiY29yZS9tb2RlbHMvZHRvL3Rva2VuLmR0by50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQ0EsT0FBTyxFQUFDLFdBQVcsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBRTNDO0lBQWtELDRCQUFXO0lBQTdEOztJQVVBLENBQUM7SUFBRCxlQUFDO0FBQUQsQ0FBQyxBQVZELENBQWtELFdBQVcsR0FVNUQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0Jhc2VVc2VyfSBmcm9tICcuLi9iYXNlLXVzZXIubW9kZWwnO1xuaW1wb3J0IHtBYnN0cmFjdERUT30gZnJvbSAnLi9hYnN0cmFjdC5kdG8nO1xuXG5leHBvcnQgY2xhc3MgVG9rZW5EVE88VSBleHRlbmRzIEJhc2VVc2VyPiBleHRlbmRzIEFic3RyYWN0RFRPIHtcblxuICAgIHVzZXI6IFU7XG5cbiAgICBhY2Nlc3NUb2tlbjogc3RyaW5nO1xuXG4gICAgcmVmcmVzaFRva2VuOiBzdHJpbmc7XG5cbiAgICBleHBpcmF0aW9uOiBEYXRlO1xuXG59XG4iXX0=
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export var CriteriaOperationEnum;
|
2
|
+
(function (CriteriaOperationEnum) {
|
3
|
+
CriteriaOperationEnum["EQUALITY"] = "EQUALITY";
|
4
|
+
CriteriaOperationEnum["NEGATION"] = "NEGATION";
|
5
|
+
CriteriaOperationEnum["GREATER_THAN"] = "GREATER_THAN";
|
6
|
+
CriteriaOperationEnum["GREATER_THAN_OR_EQUAL"] = "GREATER_THAN_OR_EQUAL";
|
7
|
+
CriteriaOperationEnum["LESS_THAN"] = "LESS_THAN";
|
8
|
+
CriteriaOperationEnum["LESS_THAN_OR_EQUAL"] = "LESS_THAN_OR_EQUAL";
|
9
|
+
CriteriaOperationEnum["LIKE"] = "LIKE";
|
10
|
+
CriteriaOperationEnum["STARTS_WITH"] = "STARTS_WITH";
|
11
|
+
CriteriaOperationEnum["ENDS_WITH"] = "ENDS_WITH";
|
12
|
+
CriteriaOperationEnum["CONTAINS"] = "CONTAINS";
|
13
|
+
CriteriaOperationEnum["IN"] = "IN";
|
14
|
+
})(CriteriaOperationEnum || (CriteriaOperationEnum = {}));
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JpdGVyaWEtb3BlcmF0aW9uLmVudW0uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9lbnVtcy9jcml0ZXJpYS1vcGVyYXRpb24uZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxxQkFjWDtBQWRELFdBQVkscUJBQXFCO0lBRS9CLDhDQUFxQixDQUFBO0lBQ3JCLDhDQUFxQixDQUFBO0lBQ3JCLHNEQUE2QixDQUFBO0lBQzdCLHdFQUErQyxDQUFBO0lBQy9DLGdEQUF1QixDQUFBO0lBQ3ZCLGtFQUF5QyxDQUFBO0lBQ3pDLHNDQUFhLENBQUE7SUFDYixvREFBMkIsQ0FBQTtJQUMzQixnREFBdUIsQ0FBQTtJQUN2Qiw4Q0FBcUIsQ0FBQTtJQUNyQixrQ0FBUyxDQUFBO0FBRVgsQ0FBQyxFQWRXLHFCQUFxQixLQUFyQixxQkFBcUIsUUFjaEMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBDcml0ZXJpYU9wZXJhdGlvbkVudW0ge1xuXG4gIEVRVUFMSVRZID0gJ0VRVUFMSVRZJyxcbiAgTkVHQVRJT04gPSAnTkVHQVRJT04nLFxuICBHUkVBVEVSX1RIQU4gPSAnR1JFQVRFUl9USEFOJyxcbiAgR1JFQVRFUl9USEFOX09SX0VRVUFMID0gJ0dSRUFURVJfVEhBTl9PUl9FUVVBTCcsXG4gIExFU1NfVEhBTiA9ICdMRVNTX1RIQU4nLFxuICBMRVNTX1RIQU5fT1JfRVFVQUwgPSAnTEVTU19USEFOX09SX0VRVUFMJyxcbiAgTElLRSA9ICdMSUtFJyxcbiAgU1RBUlRTX1dJVEggPSAnU1RBUlRTX1dJVEgnLFxuICBFTkRTX1dJVEggPSAnRU5EU19XSVRIJyxcbiAgQ09OVEFJTlMgPSAnQ09OVEFJTlMnLFxuICBJTiA9ICdJTidcblxufVxuIl19
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export var CriteriaSortDirectionEnum;
|
2
|
+
(function (CriteriaSortDirectionEnum) {
|
3
|
+
CriteriaSortDirectionEnum["ASC"] = "ASC";
|
4
|
+
CriteriaSortDirectionEnum["DESC"] = "DESC";
|
5
|
+
})(CriteriaSortDirectionEnum || (CriteriaSortDirectionEnum = {}));
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JpdGVyaWEtc29ydC1kaXJlY3Rpb24uZW51bS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2VudW1zL2NyaXRlcmlhLXNvcnQtZGlyZWN0aW9uLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVkseUJBS1g7QUFMRCxXQUFZLHlCQUF5QjtJQUVuQyx3Q0FBVyxDQUFBO0lBQ1gsMENBQWEsQ0FBQTtBQUVmLENBQUMsRUFMVyx5QkFBeUIsS0FBekIseUJBQXlCLFFBS3BDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gQ3JpdGVyaWFTb3J0RGlyZWN0aW9uRW51bSB7XG5cbiAgQVNDID0gJ0FTQycsXG4gIERFU0MgPSAnREVTQydcblxufVxuIl19
|
@@ -0,0 +1,7 @@
|
|
1
|
+
export var MenuTypeEnum;
|
2
|
+
(function (MenuTypeEnum) {
|
3
|
+
MenuTypeEnum["GROUP"] = "GROUP";
|
4
|
+
MenuTypeEnum["COLLAPSABLE"] = "COLLAPSABLE";
|
5
|
+
MenuTypeEnum["ITEM"] = "ITEM";
|
6
|
+
})(MenuTypeEnum || (MenuTypeEnum = {}));
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS10eXBlLmVudW0uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9lbnVtcy9tZW51LXR5cGUuZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxZQUlYO0FBSkQsV0FBWSxZQUFZO0lBQ3BCLCtCQUFlLENBQUE7SUFDZiwyQ0FBMkIsQ0FBQTtJQUMzQiw2QkFBYSxDQUFBO0FBQ2pCLENBQUMsRUFKVyxZQUFZLEtBQVosWUFBWSxRQUl2QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIE1lbnVUeXBlRW51bSB7XG4gICAgR1JPVVAgPSAnR1JPVVAnLFxuICAgIENPTExBUFNBQkxFID0gJ0NPTExBUFNBQkxFJyxcbiAgICBJVEVNID0gJ0lURU0nXG59XG5cbmV4cG9ydCB0eXBlIE1lbnVUeXBlID0gJ0dST1VQJyB8ICdDT0xMQVBTQUJMRScgfCAnSVRFTSc7XG4iXX0=
|
@@ -0,0 +1,8 @@
|
|
1
|
+
export var RadioButtonEnum;
|
2
|
+
(function (RadioButtonEnum) {
|
3
|
+
RadioButtonEnum["START_AND_END"] = "Inicial/Final";
|
4
|
+
RadioButtonEnum["BY_SELECTION"] = "Por sele\u00E7\u00E3o";
|
5
|
+
RadioButtonEnum["TO_OMIT"] = "Omitir";
|
6
|
+
RadioButtonEnum["ALL"] = "Todos";
|
7
|
+
})(RadioButtonEnum || (RadioButtonEnum = {}));
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tYnV0dG9uLmVudW0uanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9lbnVtcy9yYWRpby1idXR0b24uZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxlQU9YO0FBUEQsV0FBWSxlQUFlO0lBRXZCLGtEQUErQixDQUFBO0lBQy9CLHlEQUE0QixDQUFBO0lBQzVCLHFDQUFrQixDQUFBO0lBQ2xCLGdDQUFhLENBQUE7QUFFakIsQ0FBQyxFQVBXLGVBQWUsS0FBZixlQUFlLFFBTzFCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gUmFkaW9CdXR0b25FbnVtIHtcblxuICAgIFNUQVJUX0FORF9FTkQgPSAnSW5pY2lhbC9GaW5hbCcsXG4gICAgQllfU0VMRUNUSU9OID0gJ1BvciBzZWxlw6fDo28nLFxuICAgIFRPX09NSVQgPSAnT21pdGlyJyxcbiAgICBBTEwgPSAnVG9kb3MnXG5cbn1cbiJdfQ==
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export var SortDirectionEnum;
|
2
|
+
(function (SortDirectionEnum) {
|
3
|
+
SortDirectionEnum["ASC"] = "ASC";
|
4
|
+
SortDirectionEnum["DESC"] = "DESC";
|
5
|
+
})(SortDirectionEnum || (SortDirectionEnum = {}));
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic29ydC1kaXJlY3Rpb24uZW51bS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL2VudW1zL3NvcnQtZGlyZWN0aW9uLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksaUJBS1g7QUFMRCxXQUFZLGlCQUFpQjtJQUUzQixnQ0FBVyxDQUFBO0lBQ1gsa0NBQWEsQ0FBQTtBQUVmLENBQUMsRUFMVyxpQkFBaUIsS0FBakIsaUJBQWlCLFFBSzVCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gU29ydERpcmVjdGlvbkVudW0ge1xuXG4gIEFTQyA9ICdBU0MnLFxuICBERVNDID0gJ0RFU0MnXG5cbn1cbiJdfQ==
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractModel } from './abstract.model';
|
3
|
+
var MultitenantModel = /** @class */ (function (_super) {
|
4
|
+
__extends(MultitenantModel, _super);
|
5
|
+
function MultitenantModel() {
|
6
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
}
|
8
|
+
return MultitenantModel;
|
9
|
+
}(AbstractModel));
|
10
|
+
export { MultitenantModel };
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGl0ZW5hbnQubW9kZWwuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJjb3JlL21vZGVscy9tdWx0aXRlbmFudC5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLGFBQWEsRUFBQyxNQUFNLGtCQUFrQixDQUFDO0FBRS9DO0lBQXNDLG9DQUFhO0lBQW5EOztJQUlBLENBQUM7SUFBRCx1QkFBQztBQUFELENBQUMsQUFKRCxDQUFzQyxhQUFhLEdBSWxEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtBYnN0cmFjdE1vZGVsfSBmcm9tICcuL2Fic3RyYWN0Lm1vZGVsJztcblxuZXhwb3J0IGNsYXNzIE11bHRpdGVuYW50TW9kZWwgZXh0ZW5kcyBBYnN0cmFjdE1vZGVsIHtcblxuICB0ZW5hbnRJZDogbnVtYmVyO1xuXG59XG4iXX0=
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractModel } from './abstract.model';
|
3
|
+
var Permission = /** @class */ (function (_super) {
|
4
|
+
__extends(Permission, _super);
|
5
|
+
function Permission() {
|
6
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
7
|
+
_this.make = true;
|
8
|
+
_this.update = true;
|
9
|
+
_this.read = true;
|
10
|
+
_this.delete = true;
|
11
|
+
return _this;
|
12
|
+
}
|
13
|
+
return Permission;
|
14
|
+
}(AbstractModel));
|
15
|
+
export { Permission };
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVybWlzc2lvbi5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL3Blcm1pc3Npb24ubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSxrQkFBa0IsQ0FBQztBQUUvQztJQUFnQyw4QkFBYTtJQUE3QztRQUFBLHFFQVlDO1FBUkMsVUFBSSxHQUFHLElBQUksQ0FBQztRQUVaLFlBQU0sR0FBRyxJQUFJLENBQUM7UUFFZCxVQUFJLEdBQUcsSUFBSSxDQUFDO1FBRVosWUFBTSxHQUFHLElBQUksQ0FBQzs7SUFFaEIsQ0FBQztJQUFELGlCQUFDO0FBQUQsQ0FBQyxBQVpELENBQWdDLGFBQWEsR0FZNUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0Fic3RyYWN0TW9kZWx9IGZyb20gJy4vYWJzdHJhY3QubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgUGVybWlzc2lvbiBleHRlbmRzIEFic3RyYWN0TW9kZWwge1xuXG4gIG1lbnU6IHN0cmluZztcblxuICBtYWtlID0gdHJ1ZTtcblxuICB1cGRhdGUgPSB0cnVlO1xuXG4gIHJlYWQgPSB0cnVlO1xuXG4gIGRlbGV0ZSA9IHRydWU7XG5cbn1cbiJdfQ==
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { __extends } from "tslib";
|
2
|
+
import { AbstractModel } from './abstract.model';
|
3
|
+
var Role = /** @class */ (function (_super) {
|
4
|
+
__extends(Role, _super);
|
5
|
+
function Role() {
|
6
|
+
var _this = _super.call(this) || this;
|
7
|
+
_this.permissionList = [];
|
8
|
+
return _this;
|
9
|
+
}
|
10
|
+
return Role;
|
11
|
+
}(AbstractModel));
|
12
|
+
export { Role };
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9sZS5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BnaXBpc2lzdGVtYXMvbmctY29yZS8iLCJzb3VyY2VzIjpbImNvcmUvbW9kZWxzL3JvbGUubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSxrQkFBa0IsQ0FBQztBQUcvQztJQUEwQix3QkFBYTtJQU1yQztRQUFBLFlBQ0UsaUJBQU8sU0FFUjtRQURDLEtBQUksQ0FBQyxjQUFjLEdBQUcsRUFBRSxDQUFDOztJQUMzQixDQUFDO0lBRUgsV0FBQztBQUFELENBQUMsQUFYRCxDQUEwQixhQUFhLEdBV3RDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtBYnN0cmFjdE1vZGVsfSBmcm9tICcuL2Fic3RyYWN0Lm1vZGVsJztcbmltcG9ydCB7UGVybWlzc2lvbn0gZnJvbSAnLi9wZXJtaXNzaW9uLm1vZGVsJztcblxuZXhwb3J0IGNsYXNzIFJvbGUgZXh0ZW5kcyBBYnN0cmFjdE1vZGVsIHtcblxuICBuYW1lOiBzdHJpbmc7XG5cbiAgcGVybWlzc2lvbkxpc3Q6IFBlcm1pc3Npb25bXTtcblxuICBjb25zdHJ1Y3RvcigpIHtcbiAgICBzdXBlcigpO1xuICAgIHRoaXMucGVybWlzc2lvbkxpc3QgPSBbXTtcbiAgfVxuXG59XG4iXX0=
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { __decorate } from "tslib";
|
2
|
+
import { Pipe, ɵstringify as stringify } from '@angular/core';
|
3
|
+
import { TimeUtil } from '../utils/time.util';
|
4
|
+
var LocalTimePipe = /** @class */ (function () {
|
5
|
+
function LocalTimePipe() {
|
6
|
+
}
|
7
|
+
LocalTimePipe_1 = LocalTimePipe;
|
8
|
+
LocalTimePipe.prototype.transform = function (time, format, period) {
|
9
|
+
if (period === void 0) { period = false; }
|
10
|
+
try {
|
11
|
+
return TimeUtil.format(time, format, period);
|
12
|
+
}
|
13
|
+
catch (error) {
|
14
|
+
throw new Error("InvalidPipeArgument: '" + LocalTimePipe_1 + "' for pipe '" + stringify(error.message) + "'");
|
15
|
+
}
|
16
|
+
};
|
17
|
+
var LocalTimePipe_1;
|
18
|
+
LocalTimePipe = LocalTimePipe_1 = __decorate([
|
19
|
+
Pipe({
|
20
|
+
name: 'localtime'
|
21
|
+
})
|
22
|
+
], LocalTimePipe);
|
23
|
+
return LocalTimePipe;
|
24
|
+
}());
|
25
|
+
export { LocalTimePipe };
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYWwtdGltZS5waXBlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsiY29yZS9waXBlcy9sb2NhbC10aW1lLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQWlCLFVBQVUsSUFBSSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFJN0UsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBSzlDO0lBQUE7SUFVQSxDQUFDO3NCQVZZLGFBQWE7SUFFdEIsaUNBQVMsR0FBVCxVQUFVLElBQTBCLEVBQUUsTUFBOEIsRUFBRSxNQUF1QjtRQUF2Qix1QkFBQSxFQUFBLGNBQXVCO1FBQ3pGLElBQUk7WUFDQSxPQUFPLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLE1BQU0sRUFBRSxNQUFNLENBQUMsQ0FBQztTQUNoRDtRQUFDLE9BQU8sS0FBSyxFQUFFO1lBQ1osTUFBTSxJQUFJLEtBQUssQ0FBQywyQkFBeUIsZUFBYSxvQkFBZSxTQUFTLENBQUUsS0FBZSxDQUFDLE9BQU8sQ0FBQyxNQUFHLENBQUMsQ0FBQztTQUNoSDtJQUNMLENBQUM7O0lBUlEsYUFBYTtRQUh6QixJQUFJLENBQUM7WUFDRixJQUFJLEVBQUUsV0FBVztTQUNwQixDQUFDO09BQ1csYUFBYSxDQVV6QjtJQUFELG9CQUFDO0NBQUEsQUFWRCxJQVVDO1NBVlksYUFBYSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFBpcGUsIFBpcGVUcmFuc2Zvcm0sIMm1c3RyaW5naWZ5IGFzIHN0cmluZ2lmeSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBMb2NhbFRpbWVUeXBlIH0gZnJvbSAnLi4vZW51bXMvbG9jYWwtdGltZS5lbnVtJztcbmltcG9ydCB7IEdJUElMb2NhbFRpbWUgfSBmcm9tICcuLi90eXBlcy9sb2NhbC10aW1lLnR5cGUnO1xuaW1wb3J0IHsgVGltZVV0aWwgfSBmcm9tICcuLi91dGlscy90aW1lLnV0aWwnO1xuXG5AUGlwZSh7XG4gICAgbmFtZTogJ2xvY2FsdGltZSdcbn0pXG5leHBvcnQgY2xhc3MgTG9jYWxUaW1lUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuXG4gICAgdHJhbnNmb3JtKHRpbWU6IEdJUElMb2NhbFRpbWUgfCBEYXRlLCBmb3JtYXQ6IExvY2FsVGltZVR5cGUgfCBzdHJpbmcsIHBlcmlvZDogYm9vbGVhbiA9IGZhbHNlKTogYW55IHtcbiAgICAgICAgdHJ5IHtcbiAgICAgICAgICAgIHJldHVybiBUaW1lVXRpbC5mb3JtYXQodGltZSwgZm9ybWF0LCBwZXJpb2QpO1xuICAgICAgICB9IGNhdGNoIChlcnJvcikge1xuICAgICAgICAgICAgdGhyb3cgbmV3IEVycm9yKGBJbnZhbGlkUGlwZUFyZ3VtZW50OiAnJHtMb2NhbFRpbWVQaXBlfScgZm9yIHBpcGUgJyR7c3RyaW5naWZ5KChlcnJvciBhcyBFcnJvcikubWVzc2FnZSl9J2ApO1xuICAgICAgICB9XG4gICAgfVxuXG59XG4iXX0=
|