@gipisistemas/ng-core 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/assets/styles/colors.scss +261 -0
- package/assets/styles/layout-grid.scss +146 -0
- package/assets/styles/styles.scss +149 -0
- package/assets/styles/theme.scss +22 -0
- package/assets/styles/typography.scss +54 -0
- package/assets/styles/variable.scss +41 -0
- package/bundles/gipisistemas-ng-core.umd.js +28311 -0
- package/bundles/gipisistemas-ng-core.umd.js.map +1 -0
- package/bundles/gipisistemas-ng-core.umd.min.js +66 -0
- package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -0
- package/core/app-messages.d.ts +9 -0
- package/core/app.messages.d.ts +4 -0
- package/core/components/abstract-crud.component.d.ts +27 -0
- package/core/components/abstract-find.component.d.ts +43 -0
- package/core/components/abstract.component.d.ts +23 -0
- package/core/components/alert/alert.component.d.ts +7 -0
- package/core/core.module.d.ts +17 -0
- package/core/custom-breakpoints.d.ts +7 -0
- package/core/enums/local-time.enum.d.ts +5 -0
- package/core/extensions/string.extension.d.ts +3 -0
- package/core/gipi-components/components/abstract-crud.component.d.ts +25 -0
- package/core/gipi-components/components/abstract-find.component.d.ts +73 -0
- package/core/gipi-components/components/abstract.component.d.ts +38 -0
- package/core/gipi-components/decorators/autowired.decorator.d.ts +7 -0
- package/core/gipi-components/enums/sort-direction.enum.d.ts +5 -0
- package/core/gipi-components/interface/abstract-crud.interface.d.ts +5 -0
- package/core/gipi-components/interface/abstract-find.interface.d.ts +12 -0
- package/core/gipi-components/interface/abstract.interface.d.ts +11 -0
- package/core/gipi-components/interface/base-permission.interface.d.ts +9 -0
- package/core/gipi-components/models/abstract-filter.model.d.ts +9 -0
- package/core/gipi-components/models/abstract.model.d.ts +7 -0
- package/core/gipi-components/models/applied-filter.model.d.ts +9 -0
- package/core/gipi-components/models/dto/abstract.dto.d.ts +7 -0
- package/core/gipi-components/models/page-event.model.d.ts +18 -0
- package/core/gipi-components/models/page.model.d.ts +7 -0
- package/core/gipi-components/models/sort.model.d.ts +6 -0
- package/core/gipi-components/services/abstract-crud.service.d.ts +83 -0
- package/core/gipi-components/services/abstract.service.d.ts +19 -0
- package/core/gipi-components/services/base.service.d.ts +35 -0
- package/core/gipi-components/services/file.service.d.ts +6 -0
- package/core/gipi-components/services/session-storage.service.d.ts +8 -0
- package/core/gipi-components/types/generic.type.d.ts +1 -0
- package/core/gipi-components/types/uuid.type.d.ts +1 -0
- package/core/guards/auth.guard.d.ts +11 -0
- package/core/guards/permission.guard.d.ts +14 -0
- package/core/guards/public.guard.d.ts +11 -0
- package/core/interceptors/auth.interceptor.d.ts +9 -0
- package/core/interceptors/error.interceptor.d.ts +11 -0
- package/core/models/abstract.model.d.ts +3 -0
- package/core/models/archive.model.d.ts +4 -0
- package/core/models/authority.model.d.ts +3 -0
- package/core/models/base-user.model.d.ts +12 -0
- package/core/models/dto/abstract.dto.d.ts +2 -0
- package/core/models/dto/api-error.dto.d.ts +9 -0
- package/core/models/dto/api-sub-error.dto.d.ts +7 -0
- package/core/models/dto/chart.dto.d.ts +5 -0
- package/core/models/dto/confirmation.dto.d.ts +10 -0
- package/core/models/dto/dialog.dto.d.ts +36 -0
- package/core/models/dto/filter.dto.d.ts +8 -0
- package/core/models/dto/input-listbox.dto.d.ts +6 -0
- package/core/models/dto/menu.dto.d.ts +15 -0
- package/core/models/dto/message.dto.d.ts +7 -0
- package/core/models/dto/page.dto.d.ts +8 -0
- package/core/models/dto/sort.dto.d.ts +7 -0
- package/core/models/dto/tab.dto.d.ts +12 -0
- package/core/models/dto/table-column.dto.d.ts +21 -0
- package/core/models/dto/table-group-header.dto.d.ts +7 -0
- package/core/models/dto/table-page-event.dto.d.ts +6 -0
- package/core/models/dto/token.dto.d.ts +8 -0
- package/core/models/enums/criteria-operation.enum.d.ts +13 -0
- package/core/models/enums/criteria-sort-direction.enum.d.ts +4 -0
- package/core/models/enums/menu-type.enum.d.ts +6 -0
- package/core/models/enums/radio-button.enum.d.ts +6 -0
- package/core/models/enums/sort-direction.enum.d.ts +4 -0
- package/core/models/multitenant.model.d.ts +4 -0
- package/core/models/permission.model.d.ts +8 -0
- package/core/models/role.model.d.ts +7 -0
- package/core/pipes/local-time.pipe.d.ts +6 -0
- package/core/services/abstract-crud.service.d.ts +15 -0
- package/core/services/abstract-find.service.d.ts +30 -0
- package/core/services/abstract.service.d.ts +13 -0
- package/core/services/authentication.service.d.ts +23 -0
- package/core/services/breakpoint-observer.service.d.ts +9 -0
- package/core/services/confirmation.service.d.ts +8 -0
- package/core/services/dialog.service.d.ts +8 -0
- package/core/services/message.service.d.ts +8 -0
- package/core/services/nav.service.d.ts +16 -0
- package/core/services/svg-register.service.d.ts +22 -0
- package/core/types/local-time.type.d.ts +5 -0
- package/core/types/ng-class.type.d.ts +10 -0
- package/core/utils/array.util.d.ts +14 -0
- package/core/utils/browser.util.d.ts +4 -0
- package/core/utils/currency.util.d.ts +6 -0
- package/core/utils/date.util.d.ts +39 -0
- package/core/utils/document.util.d.ts +11 -0
- package/core/utils/email.util.d.ts +4 -0
- package/core/utils/number.util.d.ts +8 -0
- package/core/utils/object.util.d.ts +20 -0
- package/core/utils/password.util.d.ts +11 -0
- package/core/utils/phone.util.d.ts +13 -0
- package/core/utils/string.util.d.ts +9 -0
- package/core/utils/table-column-builder.d.ts +40 -0
- package/core/utils/time.util.d.ts +9 -0
- package/core/utils/url-params.util.d.ts +7 -0
- package/core/utils/uuid.util.d.ts +5 -0
- package/core/utils/zindex.util.d.ts +7 -0
- package/core.d.ts +88 -0
- package/esm2015/core/app-messages.js +1 -0
- package/esm2015/core/app.messages.js +12 -0
- package/esm2015/core/components/abstract-crud.component.js +97 -0
- package/esm2015/core/components/abstract-find.component.js +189 -0
- package/esm2015/core/components/abstract.component.js +110 -0
- package/esm2015/core/components/alert/alert.component.js +24 -0
- package/esm2015/core/core.module.js +103 -0
- package/esm2015/core/custom-breakpoints.js +87 -0
- package/esm2015/core/enums/local-time.enum.js +6 -0
- package/esm2015/core/extensions/string.extension.js +37 -0
- package/esm2015/core/gipi-components/components/abstract-crud.component.js +110 -0
- package/esm2015/core/gipi-components/components/abstract-find.component.js +471 -0
- package/esm2015/core/gipi-components/components/abstract.component.js +140 -0
- package/esm2015/core/gipi-components/decorators/autowired.decorator.js +47 -0
- package/esm2015/core/gipi-components/enums/sort-direction.enum.js +6 -0
- package/esm2015/core/gipi-components/interface/abstract-crud.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/abstract-find.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/abstract.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/base-permission.interface.js +1 -0
- package/esm2015/core/gipi-components/models/abstract-filter.model.js +3 -0
- package/esm2015/core/gipi-components/models/abstract.model.js +3 -0
- package/esm2015/core/gipi-components/models/applied-filter.model.js +19 -0
- package/esm2015/core/gipi-components/models/dto/abstract.dto.js +3 -0
- package/esm2015/core/gipi-components/models/page-event.model.js +35 -0
- package/esm2015/core/gipi-components/models/page.model.js +7 -0
- package/esm2015/core/gipi-components/models/sort.model.js +7 -0
- package/esm2015/core/gipi-components/services/abstract-crud.service.js +109 -0
- package/esm2015/core/gipi-components/services/abstract.service.js +47 -0
- package/esm2015/core/gipi-components/services/base.service.js +102 -0
- package/esm2015/core/gipi-components/services/file.service.js +51 -0
- package/esm2015/core/gipi-components/services/session-storage.service.js +44 -0
- package/esm2015/core/gipi-components/types/generic.type.js +1 -0
- package/esm2015/core/gipi-components/types/uuid.type.js +1 -0
- package/esm2015/core/guards/auth.guard.js +48 -0
- package/esm2015/core/guards/permission.guard.js +61 -0
- package/esm2015/core/guards/public.guard.js +45 -0
- package/esm2015/core/interceptors/auth.interceptor.js +28 -0
- package/esm2015/core/interceptors/error.interceptor.js +110 -0
- package/esm2015/core/models/abstract.model.js +3 -0
- package/esm2015/core/models/archive.model.js +3 -0
- package/esm2015/core/models/authority.model.js +3 -0
- package/esm2015/core/models/base-user.model.js +8 -0
- package/esm2015/core/models/dto/abstract.dto.js +3 -0
- package/esm2015/core/models/dto/api-error.dto.js +8 -0
- package/esm2015/core/models/dto/api-sub-error.dto.js +4 -0
- package/esm2015/core/models/dto/chart.dto.js +4 -0
- package/esm2015/core/models/dto/confirmation.dto.js +8 -0
- package/esm2015/core/models/dto/dialog.dto.js +4 -0
- package/esm2015/core/models/dto/filter.dto.js +4 -0
- package/esm2015/core/models/dto/input-listbox.dto.js +7 -0
- package/esm2015/core/models/dto/menu.dto.js +9 -0
- package/esm2015/core/models/dto/message.dto.js +4 -0
- package/esm2015/core/models/dto/page.dto.js +9 -0
- package/esm2015/core/models/dto/sort.dto.js +9 -0
- package/esm2015/core/models/dto/tab.dto.js +10 -0
- package/esm2015/core/models/dto/table-column.dto.js +24 -0
- package/esm2015/core/models/dto/table-group-header.dto.js +10 -0
- package/esm2015/core/models/dto/table-page-event.dto.js +7 -0
- package/esm2015/core/models/dto/token.dto.js +4 -0
- package/esm2015/core/models/enums/criteria-operation.enum.js +15 -0
- package/esm2015/core/models/enums/criteria-sort-direction.enum.js +6 -0
- package/esm2015/core/models/enums/menu-type.enum.js +7 -0
- package/esm2015/core/models/enums/radio-button.enum.js +8 -0
- package/esm2015/core/models/enums/sort-direction.enum.js +6 -0
- package/esm2015/core/models/multitenant.model.js +4 -0
- package/esm2015/core/models/permission.model.js +11 -0
- package/esm2015/core/models/role.model.js +8 -0
- package/esm2015/core/pipes/local-time.pipe.js +21 -0
- package/esm2015/core/services/abstract-crud.service.js +24 -0
- package/esm2015/core/services/abstract-find.service.js +65 -0
- package/esm2015/core/services/abstract.service.js +30 -0
- package/esm2015/core/services/authentication.service.js +100 -0
- package/esm2015/core/services/breakpoint-observer.service.js +42 -0
- package/esm2015/core/services/confirmation.service.js +55 -0
- package/esm2015/core/services/dialog.service.js +41 -0
- package/esm2015/core/services/message.service.js +33 -0
- package/esm2015/core/services/nav.service.js +48 -0
- package/esm2015/core/services/svg-register.service.js +55 -0
- package/esm2015/core/types/local-time.type.js +1 -0
- package/esm2015/core/types/ng-class.type.js +1 -0
- package/esm2015/core/utils/array.util.js +110 -0
- package/esm2015/core/utils/browser.util.js +13 -0
- package/esm2015/core/utils/currency.util.js +21 -0
- package/esm2015/core/utils/date.util.js +257 -0
- package/esm2015/core/utils/document.util.js +153 -0
- package/esm2015/core/utils/email.util.js +25 -0
- package/esm2015/core/utils/number.util.js +28 -0
- package/esm2015/core/utils/object.util.js +199 -0
- package/esm2015/core/utils/password.util.js +38 -0
- package/esm2015/core/utils/phone.util.js +125 -0
- package/esm2015/core/utils/string.util.js +40 -0
- package/esm2015/core/utils/table-column-builder.js +85 -0
- package/esm2015/core/utils/time.util.js +59 -0
- package/esm2015/core/utils/url-params.util.js +12 -0
- package/esm2015/core/utils/uuid.util.js +17 -0
- package/esm2015/core/utils/zindex.util.js +35 -0
- package/esm2015/core.js +89 -0
- package/esm2015/gipi-components.js +105 -0
- package/esm2015/gipisistemas-ng-core.js +21 -0
- package/esm2015/public_api.js +4 -0
- package/esm2015/shared/api/generate-id-component.js +12 -0
- package/esm2015/shared/api/gipi-ng-config.js +76 -0
- package/esm2015/shared/api/overlay-message.js +1 -0
- package/esm2015/shared/api/throttle.js +60 -0
- package/esm2015/shared/api/translation.js +1 -0
- package/esm2015/shared/components/button/button.component.js +110 -0
- package/esm2015/shared/components/card/card.component.js +44 -0
- package/esm2015/shared/components/checkbox/checkbox.component.js +79 -0
- package/esm2015/shared/components/dom/connected-overlay-scroll-handler.js +27 -0
- package/esm2015/shared/components/dom/dom-handler.js +538 -0
- package/esm2015/shared/components/icon/icon.component.js +35 -0
- package/esm2015/shared/components/input/input.component.js +235 -0
- package/esm2015/shared/components/input-currency/input-currency.component.js +115 -0
- package/esm2015/shared/components/input-file/input-file.component.js +161 -0
- package/esm2015/shared/components/loading/loading.component.js +15 -0
- package/esm2015/shared/components/loading-overlay/loading-overlay.component.js +21 -0
- package/esm2015/shared/components/overlay-panel/overlay-panel.component.js +361 -0
- package/esm2015/shared/components/popover/popover-ref.js +25 -0
- package/esm2015/shared/components/popover/popover.component.js +34 -0
- package/esm2015/shared/components/popover/popover.service.js +85 -0
- package/esm2015/shared/components/radio-group-entity/radio-group-entity.component.js +74 -0
- package/esm2015/shared/components/radio-group-enum/radio-group-enum.component.js +126 -0
- package/esm2015/shared/components/select-button/select-button.component.js +181 -0
- package/esm2015/shared/components/select-entity/select-entity.component.js +262 -0
- package/esm2015/shared/components/select-entity-paged/select-entity-paged.component.js +419 -0
- package/esm2015/shared/components/select-entity-paged/shared/default-options.js +35 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.js +69 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.js +59 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-no-entries-found.directive.js +20 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-search/select-search.component.js +547 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-search-clear.directive.js +18 -0
- package/esm2015/shared/components/select-enum/select-enum.component.js +117 -0
- package/esm2015/shared/components/select-month-period/select-month-period.component.js +87 -0
- package/esm2015/shared/components/slide-toggle/slide-toggle.component.js +75 -0
- package/esm2015/shared/components/stepper/stepper.component.js +32 -0
- package/esm2015/shared/components/tab/tab.component.js +57 -0
- package/esm2015/shared/components/tab-group/tab-group.component.js +117 -0
- package/esm2015/shared/components/table/table.component.js +523 -0
- package/esm2015/shared/components/table-scrolled/table-scrolled.component.js +105 -0
- package/esm2015/shared/components/textarea/textarea.component.js +156 -0
- package/esm2015/shared/directives/dynamic-tab.directive.js +18 -0
- package/esm2015/shared/directives/generic-template.directive.js +30 -0
- package/esm2015/shared/directives/input-select-infinite-scroll.directive.js +109 -0
- package/esm2015/shared/directives/lower-case.directive.js +47 -0
- package/esm2015/shared/directives/phone-mask.directive.js +60 -0
- package/esm2015/shared/directives/space-drop.directive.js +47 -0
- package/esm2015/shared/directives/upper-case.directive.js +47 -0
- package/esm2015/shared/gipi-components/abstract-form/abstract-form.component.js +119 -0
- package/esm2015/shared/gipi-components/action-row/action-row.component.js +30 -0
- package/esm2015/shared/gipi-components/badge/badge.component.js +44 -0
- package/esm2015/shared/gipi-components/button/button.component.js +251 -0
- package/esm2015/shared/gipi-components/chips/chips.component.js +149 -0
- package/esm2015/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.js +44 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.js +324 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.js +41 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.js +35 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.js +259 -0
- package/esm2015/shared/gipi-components/datepicker/datepicker/datepicker.component.js +218 -0
- package/esm2015/shared/gipi-components/datepicker/datepicker.module.js +130 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/calendar-body.js +341 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/calendar.js +397 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.js +325 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-input.js +329 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.js +41 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.js +61 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.js +159 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.js +35 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.js +555 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.js +14 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.js +303 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.js +179 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.js +51 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.js +124 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker.js +29 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/month-view.js +365 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.js +305 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.js +116 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.js +10 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.js +294 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.js +19 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.js +81 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/year-view.js +294 -0
- package/esm2015/shared/gipi-components/dom/connected-overlay-scroll-handler.js +27 -0
- package/esm2015/shared/gipi-components/dom/dom-handler.js +645 -0
- package/esm2015/shared/gipi-components/dropdown-menu/dropdown-menu.component.js +185 -0
- package/esm2015/shared/gipi-components/expansion-panel/expansion-panel.component.js +81 -0
- package/esm2015/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.js +240 -0
- package/esm2015/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.js +92 -0
- package/esm2015/shared/gipi-components/footer/footer.component.js +29 -0
- package/esm2015/shared/gipi-components/form-field/form-field.component.js +262 -0
- package/esm2015/shared/gipi-components/helpful-tip/helpful-tip.component.js +62 -0
- package/esm2015/shared/gipi-components/infinite-scroll/infinite-scroll.directive.js +103 -0
- package/esm2015/shared/gipi-components/input-checkbox/input-checkbox.component.js +112 -0
- package/esm2015/shared/gipi-components/input-currency/input-currency.component.js +197 -0
- package/esm2015/shared/gipi-components/input-monthpicker/input-monthpicker.component.js +408 -0
- package/esm2015/shared/gipi-components/input-select/input-select.component.js +655 -0
- package/esm2015/shared/gipi-components/input-select-enum/input-select-enum.component.js +311 -0
- package/esm2015/shared/gipi-components/input-select-listbox/input-select-listbox.component.js +422 -0
- package/esm2015/shared/gipi-components/input-select-paged/input-search/input-search.component.js +374 -0
- package/esm2015/shared/gipi-components/input-select-paged/input-select-paged.component.js +350 -0
- package/esm2015/shared/gipi-components/input-select-radio/input-select-radio.component.js +269 -0
- package/esm2015/shared/gipi-components/layout-grid/col.directive.js +161 -0
- package/esm2015/shared/gipi-components/layout-grid/row.directive.js +124 -0
- package/esm2015/shared/gipi-components/layout-grid/services/breakpoint.service.js +87 -0
- package/esm2015/shared/gipi-components/layout-grid/services/resize.service.js +64 -0
- package/esm2015/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.js +193 -0
- package/esm2015/shared/gipi-components/month-year-picker/mont-year-picker.module.js +47 -0
- package/esm2015/shared/gipi-components/month-year-picker/month-year-picker.component.js +460 -0
- package/esm2015/shared/gipi-components/notification/notification.component.js +104 -0
- package/esm2015/shared/gipi-components/novelties/novelties.component.js +109 -0
- package/esm2015/shared/gipi-components/overlay/overlay.component.js +565 -0
- package/esm2015/shared/gipi-components/overlay/shared/overlay-service.js +21 -0
- package/esm2015/shared/gipi-components/overlay/shared/overlay_options.js +1 -0
- package/esm2015/shared/gipi-components/password-requeriments/password-requeriments.component.js +127 -0
- package/esm2015/shared/gipi-components/popover/popover.component.js +397 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-animations.js +29 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-errors.js +27 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-interfaces.js +1 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-target.js +19 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-trigger.js +514 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-types.js +1 -0
- package/esm2015/shared/gipi-components/radio-group/radio-group.component.js +143 -0
- package/esm2015/shared/gipi-components/range-page/range-page.component.js +254 -0
- package/esm2015/shared/gipi-components/range-slider/range-slider.component.js +345 -0
- package/esm2015/shared/gipi-components/select/select.component.js +211 -0
- package/esm2015/shared/gipi-components/select-button/select-button.component.js +187 -0
- package/esm2015/shared/gipi-components/sidebar/container/container.component.js +83 -0
- package/esm2015/shared/gipi-components/sidebar/sidenav/sidenav.component.js +240 -0
- package/esm2015/shared/gipi-components/stepper/stepper.component.js +37 -0
- package/esm2015/shared/gipi-components/table/components/table-body/table-body.component.js +203 -0
- package/esm2015/shared/gipi-components/table/components/table-footer/table-footer.component.js +30 -0
- package/esm2015/shared/gipi-components/table/components/table-header/table-header.component.js +152 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.js +122 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.js +225 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.js +1 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination.service.js +105 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/table-pagination.component.js +102 -0
- package/esm2015/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.js +30 -0
- package/esm2015/shared/gipi-components/table/models/pipe-transform.model.js +1 -0
- package/esm2015/shared/gipi-components/table/models/sort.model.js +19 -0
- package/esm2015/shared/gipi-components/table/models/sorted-column.model.js +2 -0
- package/esm2015/shared/gipi-components/table/models/table-column-builder.model.js +104 -0
- package/esm2015/shared/gipi-components/table/models/table-column.model.js +162 -0
- package/esm2015/shared/gipi-components/table/table.component.js +159 -0
- package/esm2015/shared/gipi-components/table/types/sort-direction.type.js +1 -0
- package/esm2015/shared/gipi-components/table/types/sort.type.js +1 -0
- package/esm2015/shared/gipi-components/template/template.directive.js +33 -0
- package/esm2015/shared/gipi-components/toolbar/toolbar.component.js +53 -0
- package/esm2015/shared/gipi-components/top-nav/top-nav.component.js +38 -0
- package/esm2015/shared/gipi-components/user-profile/user-profile.component.js +109 -0
- package/esm2015/shared/material.module.js +102 -0
- package/esm2015/shared/shared.module.js +339 -0
- package/esm2015/shared.js +36 -0
- package/esm5/core/app-messages.js +1 -0
- package/esm5/core/app.messages.js +12 -0
- package/esm5/core/components/abstract-crud.component.js +108 -0
- package/esm5/core/components/abstract-find.component.js +201 -0
- package/esm5/core/components/abstract.component.js +112 -0
- package/esm5/core/components/alert/alert.component.js +25 -0
- package/esm5/core/core.module.js +107 -0
- package/esm5/core/custom-breakpoints.js +87 -0
- package/esm5/core/enums/local-time.enum.js +6 -0
- package/esm5/core/extensions/string.extension.js +37 -0
- package/esm5/core/gipi-components/components/abstract-crud.component.js +122 -0
- package/esm5/core/gipi-components/components/abstract-find.component.js +507 -0
- package/esm5/core/gipi-components/components/abstract.component.js +152 -0
- package/esm5/core/gipi-components/decorators/autowired.decorator.js +52 -0
- package/esm5/core/gipi-components/enums/sort-direction.enum.js +6 -0
- package/esm5/core/gipi-components/interface/abstract-crud.interface.js +1 -0
- package/esm5/core/gipi-components/interface/abstract-find.interface.js +1 -0
- package/esm5/core/gipi-components/interface/abstract.interface.js +1 -0
- package/esm5/core/gipi-components/interface/base-permission.interface.js +1 -0
- package/esm5/core/gipi-components/models/abstract-filter.model.js +7 -0
- package/esm5/core/gipi-components/models/abstract.model.js +7 -0
- package/esm5/core/gipi-components/models/applied-filter.model.js +29 -0
- package/esm5/core/gipi-components/models/dto/abstract.dto.js +7 -0
- package/esm5/core/gipi-components/models/page-event.model.js +49 -0
- package/esm5/core/gipi-components/models/page.model.js +9 -0
- package/esm5/core/gipi-components/models/sort.model.js +9 -0
- package/esm5/core/gipi-components/services/abstract-crud.service.js +114 -0
- package/esm5/core/gipi-components/services/abstract.service.js +49 -0
- package/esm5/core/gipi-components/services/base.service.js +143 -0
- package/esm5/core/gipi-components/services/file.service.js +53 -0
- package/esm5/core/gipi-components/services/session-storage.service.js +45 -0
- package/esm5/core/gipi-components/types/generic.type.js +1 -0
- package/esm5/core/gipi-components/types/uuid.type.js +1 -0
- package/esm5/core/guards/auth.guard.js +50 -0
- package/esm5/core/guards/permission.guard.js +74 -0
- package/esm5/core/guards/public.guard.js +47 -0
- package/esm5/core/interceptors/auth.interceptor.js +29 -0
- package/esm5/core/interceptors/error.interceptor.js +129 -0
- package/esm5/core/models/abstract.model.js +7 -0
- package/esm5/core/models/archive.model.js +7 -0
- package/esm5/core/models/authority.model.js +7 -0
- package/esm5/core/models/base-user.model.js +13 -0
- package/esm5/core/models/dto/abstract.dto.js +7 -0
- package/esm5/core/models/dto/api-error.dto.js +13 -0
- package/esm5/core/models/dto/api-sub-error.dto.js +11 -0
- package/esm5/core/models/dto/chart.dto.js +11 -0
- package/esm5/core/models/dto/confirmation.dto.js +13 -0
- package/esm5/core/models/dto/dialog.dto.js +11 -0
- package/esm5/core/models/dto/filter.dto.js +11 -0
- package/esm5/core/models/dto/input-listbox.dto.js +11 -0
- package/esm5/core/models/dto/menu.dto.js +14 -0
- package/esm5/core/models/dto/message.dto.js +11 -0
- package/esm5/core/models/dto/page.dto.js +14 -0
- package/esm5/core/models/dto/sort.dto.js +14 -0
- package/esm5/core/models/dto/tab.dto.js +15 -0
- package/esm5/core/models/dto/table-column.dto.js +29 -0
- package/esm5/core/models/dto/table-group-header.dto.js +15 -0
- package/esm5/core/models/dto/table-page-event.dto.js +11 -0
- package/esm5/core/models/dto/token.dto.js +11 -0
- package/esm5/core/models/enums/criteria-operation.enum.js +15 -0
- package/esm5/core/models/enums/criteria-sort-direction.enum.js +6 -0
- package/esm5/core/models/enums/menu-type.enum.js +7 -0
- package/esm5/core/models/enums/radio-button.enum.js +8 -0
- package/esm5/core/models/enums/sort-direction.enum.js +6 -0
- package/esm5/core/models/multitenant.model.js +11 -0
- package/esm5/core/models/permission.model.js +16 -0
- package/esm5/core/models/role.model.js +13 -0
- package/esm5/core/pipes/local-time.pipe.js +26 -0
- package/esm5/core/services/abstract-crud.service.js +30 -0
- package/esm5/core/services/abstract-find.service.js +71 -0
- package/esm5/core/services/abstract.service.js +32 -0
- package/esm5/core/services/authentication.service.js +121 -0
- package/esm5/core/services/breakpoint-observer.service.js +52 -0
- package/esm5/core/services/confirmation.service.js +66 -0
- package/esm5/core/services/dialog.service.js +44 -0
- package/esm5/core/services/message.service.js +36 -0
- package/esm5/core/services/nav.service.js +51 -0
- package/esm5/core/services/svg-register.service.js +67 -0
- package/esm5/core/types/local-time.type.js +1 -0
- package/esm5/core/types/ng-class.type.js +1 -0
- package/esm5/core/utils/array.util.js +120 -0
- package/esm5/core/utils/browser.util.js +17 -0
- package/esm5/core/utils/currency.util.js +26 -0
- package/esm5/core/utils/date.util.js +269 -0
- package/esm5/core/utils/document.util.js +157 -0
- package/esm5/core/utils/email.util.js +29 -0
- package/esm5/core/utils/number.util.js +32 -0
- package/esm5/core/utils/object.util.js +204 -0
- package/esm5/core/utils/password.util.js +42 -0
- package/esm5/core/utils/phone.util.js +135 -0
- package/esm5/core/utils/string.util.js +44 -0
- package/esm5/core/utils/table-column-builder.js +87 -0
- package/esm5/core/utils/time.util.js +65 -0
- package/esm5/core/utils/url-params.util.js +16 -0
- package/esm5/core/utils/uuid.util.js +21 -0
- package/esm5/core/utils/zindex.util.js +35 -0
- package/esm5/core.js +89 -0
- package/esm5/gipi-components.js +105 -0
- package/esm5/gipisistemas-ng-core.js +21 -0
- package/esm5/public_api.js +4 -0
- package/esm5/shared/api/generate-id-component.js +16 -0
- package/esm5/shared/api/gipi-ng-config.js +77 -0
- package/esm5/shared/api/overlay-message.js +1 -0
- package/esm5/shared/api/throttle.js +60 -0
- package/esm5/shared/api/translation.js +1 -0
- package/esm5/shared/components/button/button.component.js +111 -0
- package/esm5/shared/components/card/card.component.js +45 -0
- package/esm5/shared/components/checkbox/checkbox.component.js +85 -0
- package/esm5/shared/components/dom/connected-overlay-scroll-handler.js +30 -0
- package/esm5/shared/components/dom/dom-handler.js +573 -0
- package/esm5/shared/components/icon/icon.component.js +38 -0
- package/esm5/shared/components/input/input.component.js +242 -0
- package/esm5/shared/components/input-currency/input-currency.component.js +121 -0
- package/esm5/shared/components/input-file/input-file.component.js +165 -0
- package/esm5/shared/components/loading/loading.component.js +18 -0
- package/esm5/shared/components/loading-overlay/loading-overlay.component.js +23 -0
- package/esm5/shared/components/overlay-panel/overlay-panel.component.js +366 -0
- package/esm5/shared/components/popover/popover-ref.js +28 -0
- package/esm5/shared/components/popover/popover.component.js +35 -0
- package/esm5/shared/components/popover/popover.service.js +88 -0
- package/esm5/shared/components/radio-group-entity/radio-group-entity.component.js +80 -0
- package/esm5/shared/components/radio-group-enum/radio-group-enum.component.js +138 -0
- package/esm5/shared/components/select-button/select-button.component.js +195 -0
- package/esm5/shared/components/select-entity/select-entity.component.js +269 -0
- package/esm5/shared/components/select-entity-paged/select-entity-paged.component.js +453 -0
- package/esm5/shared/components/select-entity-paged/shared/default-options.js +35 -0
- package/esm5/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.js +72 -0
- package/esm5/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.js +62 -0
- package/esm5/shared/components/select-entity-paged/shared/select-no-entries-found.directive.js +23 -0
- package/esm5/shared/components/select-entity-paged/shared/select-search/select-search.component.js +590 -0
- package/esm5/shared/components/select-entity-paged/shared/select-search-clear.directive.js +21 -0
- package/esm5/shared/components/select-enum/select-enum.component.js +124 -0
- package/esm5/shared/components/select-month-period/select-month-period.component.js +91 -0
- package/esm5/shared/components/slide-toggle/slide-toggle.component.js +81 -0
- package/esm5/shared/components/stepper/stepper.component.js +36 -0
- package/esm5/shared/components/tab/tab.component.js +58 -0
- package/esm5/shared/components/tab-group/tab-group.component.js +125 -0
- package/esm5/shared/components/table/table.component.js +538 -0
- package/esm5/shared/components/table-scrolled/table-scrolled.component.js +107 -0
- package/esm5/shared/components/textarea/textarea.component.js +174 -0
- package/esm5/shared/directives/dynamic-tab.directive.js +19 -0
- package/esm5/shared/directives/generic-template.directive.js +31 -0
- package/esm5/shared/directives/input-select-infinite-scroll.directive.js +113 -0
- package/esm5/shared/directives/lower-case.directive.js +48 -0
- package/esm5/shared/directives/phone-mask.directive.js +61 -0
- package/esm5/shared/directives/space-drop.directive.js +48 -0
- package/esm5/shared/directives/upper-case.directive.js +48 -0
- package/esm5/shared/gipi-components/abstract-form/abstract-form.component.js +141 -0
- package/esm5/shared/gipi-components/action-row/action-row.component.js +33 -0
- package/esm5/shared/gipi-components/badge/badge.component.js +46 -0
- package/esm5/shared/gipi-components/button/button.component.js +257 -0
- package/esm5/shared/gipi-components/chips/chips.component.js +159 -0
- package/esm5/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.js +46 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.js +378 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.js +42 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.js +40 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.js +291 -0
- package/esm5/shared/gipi-components/datepicker/datepicker/datepicker.component.js +252 -0
- package/esm5/shared/gipi-components/datepicker/datepicker.module.js +133 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/calendar-body.js +349 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/calendar.js +441 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.js +339 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-input.js +376 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.js +46 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.js +62 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.js +167 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.js +35 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.js +586 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.js +14 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.js +327 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.js +199 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.js +52 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.js +133 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker.js +34 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/month-view.js +384 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.js +324 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.js +118 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.js +10 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.js +300 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.js +19 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.js +82 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/year-view.js +313 -0
- package/esm5/shared/gipi-components/dom/connected-overlay-scroll-handler.js +30 -0
- package/esm5/shared/gipi-components/dom/dom-handler.js +681 -0
- package/esm5/shared/gipi-components/dropdown-menu/dropdown-menu.component.js +191 -0
- package/esm5/shared/gipi-components/expansion-panel/expansion-panel.component.js +83 -0
- package/esm5/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.js +255 -0
- package/esm5/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.js +93 -0
- package/esm5/shared/gipi-components/footer/footer.component.js +32 -0
- package/esm5/shared/gipi-components/form-field/form-field.component.js +276 -0
- package/esm5/shared/gipi-components/helpful-tip/helpful-tip.component.js +68 -0
- package/esm5/shared/gipi-components/infinite-scroll/infinite-scroll.directive.js +106 -0
- package/esm5/shared/gipi-components/input-checkbox/input-checkbox.component.js +118 -0
- package/esm5/shared/gipi-components/input-currency/input-currency.component.js +207 -0
- package/esm5/shared/gipi-components/input-monthpicker/input-monthpicker.component.js +426 -0
- package/esm5/shared/gipi-components/input-select/input-select.component.js +698 -0
- package/esm5/shared/gipi-components/input-select-enum/input-select-enum.component.js +351 -0
- package/esm5/shared/gipi-components/input-select-listbox/input-select-listbox.component.js +437 -0
- package/esm5/shared/gipi-components/input-select-paged/input-search/input-search.component.js +397 -0
- package/esm5/shared/gipi-components/input-select-paged/input-select-paged.component.js +384 -0
- package/esm5/shared/gipi-components/input-select-radio/input-select-radio.component.js +286 -0
- package/esm5/shared/gipi-components/layout-grid/col.directive.js +164 -0
- package/esm5/shared/gipi-components/layout-grid/row.directive.js +127 -0
- package/esm5/shared/gipi-components/layout-grid/services/breakpoint.service.js +90 -0
- package/esm5/shared/gipi-components/layout-grid/services/resize.service.js +68 -0
- package/esm5/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.js +200 -0
- package/esm5/shared/gipi-components/month-year-picker/mont-year-picker.module.js +50 -0
- package/esm5/shared/gipi-components/month-year-picker/month-year-picker.component.js +505 -0
- package/esm5/shared/gipi-components/notification/notification.component.js +106 -0
- package/esm5/shared/gipi-components/novelties/novelties.component.js +111 -0
- package/esm5/shared/gipi-components/overlay/overlay.component.js +670 -0
- package/esm5/shared/gipi-components/overlay/shared/overlay-service.js +22 -0
- package/esm5/shared/gipi-components/overlay/shared/overlay_options.js +1 -0
- package/esm5/shared/gipi-components/password-requeriments/password-requeriments.component.js +157 -0
- package/esm5/shared/gipi-components/popover/popover.component.js +473 -0
- package/esm5/shared/gipi-components/popover/shared/popover-animations.js +29 -0
- package/esm5/shared/gipi-components/popover/shared/popover-errors.js +21 -0
- package/esm5/shared/gipi-components/popover/shared/popover-interfaces.js +1 -0
- package/esm5/shared/gipi-components/popover/shared/popover-target.js +20 -0
- package/esm5/shared/gipi-components/popover/shared/popover-trigger.js +529 -0
- package/esm5/shared/gipi-components/popover/shared/popover-types.js +1 -0
- package/esm5/shared/gipi-components/radio-group/radio-group.component.js +155 -0
- package/esm5/shared/gipi-components/range-page/range-page.component.js +283 -0
- package/esm5/shared/gipi-components/range-slider/range-slider.component.js +364 -0
- package/esm5/shared/gipi-components/select/select.component.js +222 -0
- package/esm5/shared/gipi-components/select-button/select-button.component.js +206 -0
- package/esm5/shared/gipi-components/sidebar/container/container.component.js +96 -0
- package/esm5/shared/gipi-components/sidebar/sidenav/sidenav.component.js +267 -0
- package/esm5/shared/gipi-components/stepper/stepper.component.js +43 -0
- package/esm5/shared/gipi-components/table/components/table-body/table-body.component.js +209 -0
- package/esm5/shared/gipi-components/table/components/table-footer/table-footer.component.js +33 -0
- package/esm5/shared/gipi-components/table/components/table-header/table-header.component.js +155 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.js +123 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.js +228 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.js +1 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination.service.js +108 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/table-pagination.component.js +116 -0
- package/esm5/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.js +33 -0
- package/esm5/shared/gipi-components/table/models/pipe-transform.model.js +1 -0
- package/esm5/shared/gipi-components/table/models/sort.model.js +29 -0
- package/esm5/shared/gipi-components/table/models/sorted-column.model.js +2 -0
- package/esm5/shared/gipi-components/table/models/table-column-builder.model.js +106 -0
- package/esm5/shared/gipi-components/table/models/table-column.model.js +252 -0
- package/esm5/shared/gipi-components/table/table.component.js +161 -0
- package/esm5/shared/gipi-components/table/types/sort-direction.type.js +1 -0
- package/esm5/shared/gipi-components/table/types/sort.type.js +1 -0
- package/esm5/shared/gipi-components/template/template.directive.js +34 -0
- package/esm5/shared/gipi-components/toolbar/toolbar.component.js +56 -0
- package/esm5/shared/gipi-components/top-nav/top-nav.component.js +40 -0
- package/esm5/shared/gipi-components/user-profile/user-profile.component.js +115 -0
- package/esm5/shared/material.module.js +101 -0
- package/esm5/shared/shared.module.js +340 -0
- package/esm5/shared.js +36 -0
- package/fesm2015/gipisistemas-ng-core.js +25879 -0
- package/fesm2015/gipisistemas-ng-core.js.map +1 -0
- package/fesm5/gipisistemas-ng-core.js +27905 -0
- package/fesm5/gipisistemas-ng-core.js.map +1 -0
- package/gipi-components.d.ts +97 -0
- package/gipisistemas-ng-core.d.ts +20 -0
- package/gipisistemas-ng-core.metadata.json +1 -0
- package/package.json +31 -83
- package/public_api.d.ts +3 -0
- package/shared/api/generate-id-component.d.ts +3 -0
- package/shared/api/gipi-ng-config.d.ts +18 -0
- package/shared/api/overlay-message.d.ts +14 -0
- package/shared/api/throttle.d.ts +17 -0
- package/shared/api/translation.d.ts +45 -0
- package/shared/components/button/button.component.d.ts +26 -0
- package/shared/components/card/card.component.d.ts +10 -0
- package/shared/components/checkbox/checkbox.component.d.ts +20 -0
- package/shared/components/dom/connected-overlay-scroll-handler.d.ts +9 -0
- package/shared/components/dom/dom-handler.d.ts +74 -0
- package/shared/components/icon/icon.component.d.ts +9 -0
- package/shared/components/input/input.component.d.ts +52 -0
- package/shared/components/input-currency/input-currency.component.d.ts +29 -0
- package/shared/components/input-file/input-file.component.d.ts +28 -0
- package/shared/components/loading/loading.component.d.ts +4 -0
- package/shared/components/loading-overlay/loading-overlay.component.d.ts +6 -0
- package/shared/components/overlay-panel/overlay-panel.component.d.ts +67 -0
- package/shared/components/popover/popover-ref.d.ts +17 -0
- package/shared/components/popover/popover.component.d.ts +10 -0
- package/shared/components/popover/popover.service.d.ts +23 -0
- package/shared/components/radio-group-entity/radio-group-entity.component.d.ts +19 -0
- package/shared/components/radio-group-enum/radio-group-enum.component.d.ts +30 -0
- package/shared/components/select-button/select-button.component.d.ts +35 -0
- package/shared/components/select-entity/select-entity.component.d.ts +52 -0
- package/shared/components/select-entity-paged/select-entity-paged.component.d.ts +78 -0
- package/shared/components/select-entity-paged/shared/default-options.d.ts +25 -0
- package/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.d.ts +18 -0
- package/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.d.ts +16 -0
- package/shared/components/select-entity-paged/shared/select-no-entries-found.directive.d.ts +11 -0
- package/shared/components/select-entity-paged/shared/select-search/select-search.component.d.ts +119 -0
- package/shared/components/select-entity-paged/shared/select-search-clear.directive.d.ts +9 -0
- package/shared/components/select-enum/select-enum.component.d.ts +29 -0
- package/shared/components/select-month-period/select-month-period.component.d.ts +20 -0
- package/shared/components/slide-toggle/slide-toggle.component.d.ts +19 -0
- package/shared/components/stepper/stepper.component.d.ts +7 -0
- package/shared/components/tab/tab.component.d.ts +14 -0
- package/shared/components/tab-group/tab-group.component.d.ts +22 -0
- package/shared/components/table/table.component.d.ts +86 -0
- package/shared/components/table-scrolled/table-scrolled.component.d.ts +31 -0
- package/shared/components/textarea/textarea.component.d.ts +35 -0
- package/shared/directives/dynamic-tab.directive.d.ts +5 -0
- package/shared/directives/generic-template.directive.d.ts +8 -0
- package/shared/directives/input-select-infinite-scroll.directive.d.ts +35 -0
- package/shared/directives/lower-case.directive.d.ts +9 -0
- package/shared/directives/phone-mask.directive.d.ts +8 -0
- package/shared/directives/space-drop.directive.d.ts +9 -0
- package/shared/directives/upper-case.directive.d.ts +9 -0
- package/shared/gipi-components/abstract-form/abstract-form.component.d.ts +21 -0
- package/shared/gipi-components/action-row/action-row.component.d.ts +5 -0
- package/shared/gipi-components/badge/badge.component.d.ts +8 -0
- package/shared/gipi-components/button/button.component.d.ts +56 -0
- package/shared/gipi-components/chips/chips.component.d.ts +37 -0
- package/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.d.ts +11 -0
- package/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.d.ts +71 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.d.ts +11 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.d.ts +6 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.d.ts +40 -0
- package/shared/gipi-components/datepicker/datepicker/datepicker.component.d.ts +49 -0
- package/shared/gipi-components/datepicker/datepicker.module.d.ts +2 -0
- package/shared/gipi-components/datepicker/mat-datepicker/calendar-body.d.ts +143 -0
- package/shared/gipi-components/datepicker/mat-datepicker/calendar.d.ts +152 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.d.ts +102 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-input.d.ts +124 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.d.ts +21 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.d.ts +45 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.d.ts +106 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.d.ts +16 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.d.ts +209 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.d.ts +9 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.d.ts +136 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.d.ts +68 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.d.ts +38 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.d.ts +39 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker.d.ts +11 -0
- package/shared/gipi-components/datepicker/mat-datepicker/month-view.d.ts +120 -0
- package/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.d.ts +85 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.d.ts +225 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.d.ts +20 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.d.ts +76 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.d.ts +9 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.d.ts +33 -0
- package/shared/gipi-components/datepicker/mat-datepicker/year-view.d.ts +97 -0
- package/shared/gipi-components/dom/connected-overlay-scroll-handler.d.ts +9 -0
- package/shared/gipi-components/dom/dom-handler.d.ts +85 -0
- package/shared/gipi-components/dropdown-menu/dropdown-menu.component.d.ts +36 -0
- package/shared/gipi-components/expansion-panel/expansion-panel.component.d.ts +16 -0
- package/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.d.ts +43 -0
- package/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.d.ts +13 -0
- package/shared/gipi-components/footer/footer.component.d.ts +5 -0
- package/shared/gipi-components/form-field/form-field.component.d.ts +61 -0
- package/shared/gipi-components/helpful-tip/helpful-tip.component.d.ts +13 -0
- package/shared/gipi-components/infinite-scroll/infinite-scroll.directive.d.ts +27 -0
- package/shared/gipi-components/input-checkbox/input-checkbox.component.d.ts +28 -0
- package/shared/gipi-components/input-currency/input-currency.component.d.ts +48 -0
- package/shared/gipi-components/input-monthpicker/input-monthpicker.component.d.ts +89 -0
- package/shared/gipi-components/input-select/input-select.component.d.ts +120 -0
- package/shared/gipi-components/input-select-enum/input-select-enum.component.d.ts +65 -0
- package/shared/gipi-components/input-select-listbox/input-select-listbox.component.d.ts +85 -0
- package/shared/gipi-components/input-select-paged/input-search/input-search.component.d.ts +77 -0
- package/shared/gipi-components/input-select-paged/input-select-paged.component.d.ts +66 -0
- package/shared/gipi-components/input-select-radio/input-select-radio.component.d.ts +53 -0
- package/shared/gipi-components/layout-grid/col.directive.d.ts +38 -0
- package/shared/gipi-components/layout-grid/row.directive.d.ts +28 -0
- package/shared/gipi-components/layout-grid/services/breakpoint.service.d.ts +30 -0
- package/shared/gipi-components/layout-grid/services/resize.service.d.ts +17 -0
- package/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.d.ts +37 -0
- package/shared/gipi-components/month-year-picker/mont-year-picker.module.d.ts +2 -0
- package/shared/gipi-components/month-year-picker/month-year-picker.component.d.ts +104 -0
- package/shared/gipi-components/notification/notification.component.d.ts +21 -0
- package/shared/gipi-components/novelties/novelties.component.d.ts +22 -0
- package/shared/gipi-components/overlay/overlay.component.d.ts +113 -0
- package/shared/gipi-components/overlay/shared/overlay-service.d.ts +6 -0
- package/shared/gipi-components/overlay/shared/overlay_options.d.ts +50 -0
- package/shared/gipi-components/password-requeriments/password-requeriments.component.d.ts +27 -0
- package/shared/gipi-components/popover/popover.component.d.ts +133 -0
- package/shared/gipi-components/popover/shared/popover-animations.d.ts +13 -0
- package/shared/gipi-components/popover/shared/popover-errors.d.ts +14 -0
- package/shared/gipi-components/popover/shared/popover-interfaces.d.ts +43 -0
- package/shared/gipi-components/popover/shared/popover-target.d.ts +5 -0
- package/shared/gipi-components/popover/shared/popover-trigger.d.ts +140 -0
- package/shared/gipi-components/popover/shared/popover-types.d.ts +4 -0
- package/shared/gipi-components/radio-group/radio-group.component.d.ts +33 -0
- package/shared/gipi-components/range-page/range-page.component.d.ts +55 -0
- package/shared/gipi-components/range-slider/range-slider.component.d.ts +57 -0
- package/shared/gipi-components/select/select.component.d.ts +45 -0
- package/shared/gipi-components/select-button/select-button.component.d.ts +39 -0
- package/shared/gipi-components/sidebar/container/container.component.d.ts +15 -0
- package/shared/gipi-components/sidebar/sidenav/sidenav.component.d.ts +40 -0
- package/shared/gipi-components/stepper/stepper.component.d.ts +8 -0
- package/shared/gipi-components/table/components/table-body/table-body.component.d.ts +36 -0
- package/shared/gipi-components/table/components/table-footer/table-footer.component.d.ts +5 -0
- package/shared/gipi-components/table/components/table-header/table-header.component.d.ts +28 -0
- package/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.d.ts +40 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.d.ts +81 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.d.ts +24 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination.service.d.ts +45 -0
- package/shared/gipi-components/table/components/table-pagination/table-pagination.component.d.ts +21 -0
- package/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.d.ts +5 -0
- package/shared/gipi-components/table/models/pipe-transform.model.d.ts +3 -0
- package/shared/gipi-components/table/models/sort.model.d.ts +10 -0
- package/shared/gipi-components/table/models/sorted-column.model.d.ts +6 -0
- package/shared/gipi-components/table/models/table-column-builder.model.d.ts +52 -0
- package/shared/gipi-components/table/models/table-column.model.d.ts +74 -0
- package/shared/gipi-components/table/table.component.d.ts +37 -0
- package/shared/gipi-components/table/types/sort-direction.type.d.ts +1 -0
- package/shared/gipi-components/table/types/sort.type.d.ts +1 -0
- package/shared/gipi-components/template/template.directive.d.ts +8 -0
- package/shared/gipi-components/toolbar/toolbar.component.d.ts +11 -0
- package/shared/gipi-components/top-nav/top-nav.component.d.ts +8 -0
- package/shared/gipi-components/user-profile/user-profile.component.d.ts +24 -0
- package/shared/material.module.d.ts +2 -0
- package/shared/shared.module.d.ts +6 -0
- package/shared.d.ts +35 -0
- package/README.md +0 -38
- package/_ITSS-NG-CI-CD.yml +0 -53
- package/_ITSS-NG-CI-PR.yml +0 -53
- package/angular-cli.json +0 -42
- package/azure-pipelines.yml +0 -35
- package/projects/itss-ng/ng-package.json +0 -7
- package/projects/itss-ng/package.json +0 -25
@@ -0,0 +1,473 @@
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
2
|
+
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
3
|
+
import { ESCAPE } from '@angular/cdk/keycodes';
|
4
|
+
import { ChangeDetectionStrategy, Component, ElementRef, EventEmitter, HostBinding, Input, NgZone, OnDestroy, OnInit, Output, TemplateRef, ViewChild, ViewEncapsulation, forwardRef } from '@angular/core';
|
5
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
6
|
+
import { transformPopover } from './shared/popover-animations';
|
7
|
+
import { throwPopoverInvalidPositionX, throwPopoverInvalidPositionY } from './shared/popover-errors';
|
8
|
+
var GIPIPopoverComponent = /** @class */ (function () {
|
9
|
+
function GIPIPopoverComponent(_elementRef, zone) {
|
10
|
+
this._elementRef = _elementRef;
|
11
|
+
this.zone = zone;
|
12
|
+
this.role = 'dialog';
|
13
|
+
this._popoverWidth = 'auto';
|
14
|
+
this._positionX = 'after';
|
15
|
+
this._positionY = 'below';
|
16
|
+
this._triggerEvent = 'hover';
|
17
|
+
this._scrollStrategy = 'reposition';
|
18
|
+
this._enterDelay = 200;
|
19
|
+
this._leaveDelay = 200;
|
20
|
+
this._overlapTrigger = true;
|
21
|
+
this._disableAnimation = false;
|
22
|
+
this._targetOffsetX = 0;
|
23
|
+
this._targetOffsetY = 0;
|
24
|
+
this._arrowOffsetX = 20;
|
25
|
+
this._arrowWidth = 8;
|
26
|
+
this._arrowColor = 'rgba(0, 0, 0, 0.12)';
|
27
|
+
this._closeOnClick = true;
|
28
|
+
this._focusTrapEnabled = true;
|
29
|
+
this._focusTrapAutoCaptureEnabled = true;
|
30
|
+
/** Objeto de configuração a ser passado para o ngClass do popover */
|
31
|
+
this._classList = {};
|
32
|
+
/** Posição do popover */
|
33
|
+
this.containerPositioning = false;
|
34
|
+
/** Fechamento desabilitado no popover */
|
35
|
+
this.closeDisabled = false;
|
36
|
+
/** Emite o estado de animação atual sempre que muda. */
|
37
|
+
this._onAnimationStateChange = new EventEmitter();
|
38
|
+
/** Evento emitido quando o popover é fechado. */
|
39
|
+
this.close = new EventEmitter();
|
40
|
+
this.setPositionClasses();
|
41
|
+
}
|
42
|
+
GIPIPopoverComponent_1 = GIPIPopoverComponent;
|
43
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "popoverWidth", {
|
44
|
+
/** Largura do popover */
|
45
|
+
get: function () {
|
46
|
+
return this._popoverWidth;
|
47
|
+
},
|
48
|
+
set: function (value) {
|
49
|
+
this._popoverWidth = value;
|
50
|
+
},
|
51
|
+
enumerable: false,
|
52
|
+
configurable: true
|
53
|
+
});
|
54
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "positionX", {
|
55
|
+
/** Posição do popover no eixo X. */
|
56
|
+
get: function () {
|
57
|
+
return this._positionX;
|
58
|
+
},
|
59
|
+
set: function (value) {
|
60
|
+
if (value !== 'before' && value !== 'after') {
|
61
|
+
throwPopoverInvalidPositionX();
|
62
|
+
}
|
63
|
+
this._positionX = value;
|
64
|
+
this.setPositionClasses();
|
65
|
+
},
|
66
|
+
enumerable: false,
|
67
|
+
configurable: true
|
68
|
+
});
|
69
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "positionY", {
|
70
|
+
/** Posição do popover no eixo Y. */
|
71
|
+
get: function () {
|
72
|
+
return this._positionY;
|
73
|
+
},
|
74
|
+
set: function (value) {
|
75
|
+
if (value !== 'above' && value !== 'below') {
|
76
|
+
throwPopoverInvalidPositionY();
|
77
|
+
}
|
78
|
+
this._positionY = value;
|
79
|
+
this.setPositionClasses();
|
80
|
+
},
|
81
|
+
enumerable: false,
|
82
|
+
configurable: true
|
83
|
+
});
|
84
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "triggerEvent", {
|
85
|
+
/** Evento de gatilho popover */
|
86
|
+
get: function () {
|
87
|
+
return this._triggerEvent;
|
88
|
+
},
|
89
|
+
set: function (value) {
|
90
|
+
this._triggerEvent = value;
|
91
|
+
},
|
92
|
+
enumerable: false,
|
93
|
+
configurable: true
|
94
|
+
});
|
95
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "scrollStrategy", {
|
96
|
+
/** Estratégia de rolagem popover */
|
97
|
+
get: function () {
|
98
|
+
return this._scrollStrategy;
|
99
|
+
},
|
100
|
+
set: function (value) {
|
101
|
+
this._scrollStrategy = value;
|
102
|
+
},
|
103
|
+
enumerable: false,
|
104
|
+
configurable: true
|
105
|
+
});
|
106
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "enterDelay", {
|
107
|
+
/** Atrazo de entrada popover */
|
108
|
+
get: function () {
|
109
|
+
return this._enterDelay;
|
110
|
+
},
|
111
|
+
set: function (value) {
|
112
|
+
this._enterDelay = value;
|
113
|
+
},
|
114
|
+
enumerable: false,
|
115
|
+
configurable: true
|
116
|
+
});
|
117
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "leaveDelay", {
|
118
|
+
/** Atraso de saída popover */
|
119
|
+
get: function () {
|
120
|
+
return this._leaveDelay;
|
121
|
+
},
|
122
|
+
set: function (value) {
|
123
|
+
this._leaveDelay = value;
|
124
|
+
},
|
125
|
+
enumerable: false,
|
126
|
+
configurable: true
|
127
|
+
});
|
128
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "overlapTrigger", {
|
129
|
+
/** Gatilho de sobreposição de popover */
|
130
|
+
get: function () {
|
131
|
+
return this._overlapTrigger;
|
132
|
+
},
|
133
|
+
set: function (value) {
|
134
|
+
this._overlapTrigger = value;
|
135
|
+
},
|
136
|
+
enumerable: false,
|
137
|
+
configurable: true
|
138
|
+
});
|
139
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "targetOffsetX", {
|
140
|
+
/** Deslocamento alvo do popover x */
|
141
|
+
get: function () {
|
142
|
+
return this._targetOffsetX;
|
143
|
+
},
|
144
|
+
set: function (value) {
|
145
|
+
this._targetOffsetX = value;
|
146
|
+
},
|
147
|
+
enumerable: false,
|
148
|
+
configurable: true
|
149
|
+
});
|
150
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "targetOffsetY", {
|
151
|
+
/** Deslocamento do alvo popover y */
|
152
|
+
get: function () {
|
153
|
+
return this._targetOffsetY;
|
154
|
+
},
|
155
|
+
set: function (value) {
|
156
|
+
this._targetOffsetY = value;
|
157
|
+
},
|
158
|
+
enumerable: false,
|
159
|
+
configurable: true
|
160
|
+
});
|
161
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "arrowOffsetX", {
|
162
|
+
/** Deslocamento da seta popover x */
|
163
|
+
get: function () {
|
164
|
+
return this._arrowOffsetX;
|
165
|
+
},
|
166
|
+
set: function (value) {
|
167
|
+
this._arrowOffsetX = value;
|
168
|
+
},
|
169
|
+
enumerable: false,
|
170
|
+
configurable: true
|
171
|
+
});
|
172
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "arrowWidth", {
|
173
|
+
/** Largura da seta popover */
|
174
|
+
get: function () {
|
175
|
+
return this._arrowWidth;
|
176
|
+
},
|
177
|
+
set: function (value) {
|
178
|
+
this._arrowWidth = value;
|
179
|
+
},
|
180
|
+
enumerable: false,
|
181
|
+
configurable: true
|
182
|
+
});
|
183
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "arrowColor", {
|
184
|
+
/** Cor da seta popover */
|
185
|
+
get: function () {
|
186
|
+
return this._arrowColor;
|
187
|
+
},
|
188
|
+
set: function (value) {
|
189
|
+
this._arrowColor = value;
|
190
|
+
},
|
191
|
+
enumerable: false,
|
192
|
+
configurable: true
|
193
|
+
});
|
194
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "closeOnClick", {
|
195
|
+
/**
|
196
|
+
* Contêiner popover fechado ao clicar
|
197
|
+
* default: true
|
198
|
+
*/
|
199
|
+
get: function () {
|
200
|
+
return this._closeOnClick;
|
201
|
+
},
|
202
|
+
set: function (value) {
|
203
|
+
this._closeOnClick = coerceBooleanProperty(value);
|
204
|
+
},
|
205
|
+
enumerable: false,
|
206
|
+
configurable: true
|
207
|
+
});
|
208
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "disableAnimation", {
|
209
|
+
/**
|
210
|
+
* Desativar animações de popover e todos os elementos filhos
|
211
|
+
* default: false
|
212
|
+
*/
|
213
|
+
get: function () {
|
214
|
+
return this._disableAnimation;
|
215
|
+
},
|
216
|
+
set: function (value) {
|
217
|
+
this._disableAnimation = coerceBooleanProperty(value);
|
218
|
+
},
|
219
|
+
enumerable: false,
|
220
|
+
configurable: true
|
221
|
+
});
|
222
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "focusTrapEnabled", {
|
223
|
+
/**
|
224
|
+
* Armadilha de foco popover usando cdkTrapFocus
|
225
|
+
* default: true
|
226
|
+
*/
|
227
|
+
get: function () {
|
228
|
+
return this._focusTrapEnabled;
|
229
|
+
},
|
230
|
+
set: function (value) {
|
231
|
+
this._focusTrapEnabled = coerceBooleanProperty(value);
|
232
|
+
},
|
233
|
+
enumerable: false,
|
234
|
+
configurable: true
|
235
|
+
});
|
236
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "focusTrapAutoCaptureEnabled", {
|
237
|
+
/**
|
238
|
+
* Captura automática da armadilha de foco popover usando cdkTrapFocusAutoCapture
|
239
|
+
* default: true
|
240
|
+
*/
|
241
|
+
get: function () {
|
242
|
+
return this._focusTrapAutoCaptureEnabled;
|
243
|
+
},
|
244
|
+
set: function (value) {
|
245
|
+
this._focusTrapAutoCaptureEnabled = coerceBooleanProperty(value);
|
246
|
+
},
|
247
|
+
enumerable: false,
|
248
|
+
configurable: true
|
249
|
+
});
|
250
|
+
Object.defineProperty(GIPIPopoverComponent.prototype, "panelClass", {
|
251
|
+
/**
|
252
|
+
* Esse método usa classes definidas no elemento popover do host e as aplica no modelo popover
|
253
|
+
* exibido no contêiner de sobreposição. Caso contrário, é difícil estilizar o popover de fora do componente.
|
254
|
+
* @param classes list of class names
|
255
|
+
*/
|
256
|
+
set: function (classes) {
|
257
|
+
if (classes && classes.length) {
|
258
|
+
this._classList = classes.split(' ').reduce(function (obj, className) {
|
259
|
+
obj[className] = true;
|
260
|
+
return obj;
|
261
|
+
}, {});
|
262
|
+
this._elementRef.nativeElement.className = '';
|
263
|
+
this.setPositionClasses();
|
264
|
+
}
|
265
|
+
},
|
266
|
+
enumerable: false,
|
267
|
+
configurable: true
|
268
|
+
});
|
269
|
+
GIPIPopoverComponent.prototype.ngOnInit = function () { };
|
270
|
+
GIPIPopoverComponent.prototype.ngOnDestroy = function () {
|
271
|
+
this._emitCloseEvent();
|
272
|
+
this.close.complete();
|
273
|
+
};
|
274
|
+
/** Manipule um evento de teclado do popover, delegando para a ação apropriada. */
|
275
|
+
GIPIPopoverComponent.prototype._handleKeydown = function (event) {
|
276
|
+
switch (event.keyCode) {
|
277
|
+
case ESCAPE: {
|
278
|
+
this._emitCloseEvent();
|
279
|
+
return;
|
280
|
+
}
|
281
|
+
}
|
282
|
+
};
|
283
|
+
/** Isso emite um evento de fechamento no qual o acionador está inscrito. Quando emitido, o gatilho fechará o popover. */
|
284
|
+
GIPIPopoverComponent.prototype._emitCloseEvent = function () {
|
285
|
+
this.close.emit();
|
286
|
+
};
|
287
|
+
/** Fechar popover ao clicar se closeOnClick for true */
|
288
|
+
GIPIPopoverComponent.prototype.onClick = function () {
|
289
|
+
if (this.closeOnClick) {
|
290
|
+
this._emitCloseEvent();
|
291
|
+
}
|
292
|
+
};
|
293
|
+
/** Desativa o fechamento do popover ao sair do elemento de gatilho e passar o mouse sobre o popover */
|
294
|
+
GIPIPopoverComponent.prototype.onMouseOver = function () {
|
295
|
+
if (this.triggerEvent === 'hover') {
|
296
|
+
this.closeDisabled = true;
|
297
|
+
}
|
298
|
+
};
|
299
|
+
/** Habilita o fechamento do popover quando o mouse sai do elemento popover */
|
300
|
+
GIPIPopoverComponent.prototype.onMouseLeave = function () {
|
301
|
+
if (this.triggerEvent === 'hover') {
|
302
|
+
this.closeDisabled = false;
|
303
|
+
this._emitCloseEvent();
|
304
|
+
}
|
305
|
+
};
|
306
|
+
// TODO: Refatore como os estilos são definidos e atualizados no componente, use as melhores práticas.
|
307
|
+
// TODO: Se o posicionamento da seta para a esquerda e para a direita for solicitado, veja se a direção flexível pode ser usada para trabalhar com a ordem.
|
308
|
+
/** Define os estilos atuais para o popover para permitir a alteração dinâmica das configurações */
|
309
|
+
GIPIPopoverComponent.prototype.setCurrentStyles = function () {
|
310
|
+
// TODO: Veja se a posição da seta pode ser calculada automaticamente e permitir a substituição.
|
311
|
+
// TODO: Veja se a ordem flexível é uma alternativa melhor para posicionar a seta para cima ou para baixo.
|
312
|
+
this.popoverArrowStyles = {
|
313
|
+
'right': this.positionX === 'before' ? (this.arrowOffsetX - this.arrowWidth) + 'px' : '',
|
314
|
+
'left': this.positionX === 'after' ? (this.arrowOffsetX - this.arrowWidth) + 'px' : '',
|
315
|
+
'border-top': this.positionY === 'below' ? this.arrowWidth + 'px solid ' + this.arrowColor : '0px solid transparent',
|
316
|
+
'border-right': 'undefined' === undefined ? this.arrowWidth + 'px solid ' + this.arrowColor : this.arrowWidth + 'px solid transparent',
|
317
|
+
'border-bottom': this.positionY === 'above' ? this.arrowWidth + 'px solid ' + this.arrowColor : this.arrowWidth + 'px solid transparent',
|
318
|
+
'border-left': 'undefined' === undefined ? this.arrowWidth + 'px solid ' + this.arrowColor : this.arrowWidth + 'px solid transparent',
|
319
|
+
};
|
320
|
+
// TODO: Remova se a ordem flexível for adicionada.
|
321
|
+
this.popoverContentStyles = {
|
322
|
+
'padding-top': this.overlapTrigger === true ? '0px' : this.arrowWidth + 'px',
|
323
|
+
'padding-bottom': this.overlapTrigger === true ? '0px' : (this.arrowWidth) + 'px',
|
324
|
+
'margin-top': this.overlapTrigger === false && this.positionY === 'below' && this.containerPositioning === false ? -(this.arrowWidth * 2) + 'px' : '0px'
|
325
|
+
};
|
326
|
+
};
|
327
|
+
/**
|
328
|
+
* É necessário definir classes baseadas em posição para garantir que a animação do painel popover
|
329
|
+
* se expanda na direção correta.
|
330
|
+
*/
|
331
|
+
GIPIPopoverComponent.prototype.setPositionClasses = function (posX, posY) {
|
332
|
+
if (posX === void 0) { posX = this.positionX; }
|
333
|
+
if (posY === void 0) { posY = this.positionY; }
|
334
|
+
this._classList['popover-before'] = posX === 'before';
|
335
|
+
this._classList['popover-after'] = posX === 'after';
|
336
|
+
this._classList['popover-above'] = posY === 'above';
|
337
|
+
this._classList['popover-below'] = posY === 'below';
|
338
|
+
};
|
339
|
+
var GIPIPopoverComponent_1;
|
340
|
+
GIPIPopoverComponent.ctorParameters = function () { return [
|
341
|
+
{ type: ElementRef },
|
342
|
+
{ type: NgZone }
|
343
|
+
]; };
|
344
|
+
__decorate([
|
345
|
+
HostBinding('attr.role'),
|
346
|
+
__metadata("design:type", String)
|
347
|
+
], GIPIPopoverComponent.prototype, "role", void 0);
|
348
|
+
__decorate([
|
349
|
+
Input(),
|
350
|
+
__metadata("design:type", String),
|
351
|
+
__metadata("design:paramtypes", [String])
|
352
|
+
], GIPIPopoverComponent.prototype, "popoverWidth", null);
|
353
|
+
__decorate([
|
354
|
+
Input('popoverPositionX'),
|
355
|
+
__metadata("design:type", String),
|
356
|
+
__metadata("design:paramtypes", [String])
|
357
|
+
], GIPIPopoverComponent.prototype, "positionX", null);
|
358
|
+
__decorate([
|
359
|
+
Input('popoverPositionY'),
|
360
|
+
__metadata("design:type", String),
|
361
|
+
__metadata("design:paramtypes", [String])
|
362
|
+
], GIPIPopoverComponent.prototype, "positionY", null);
|
363
|
+
__decorate([
|
364
|
+
Input('popoverTriggerOn'),
|
365
|
+
__metadata("design:type", String),
|
366
|
+
__metadata("design:paramtypes", [String])
|
367
|
+
], GIPIPopoverComponent.prototype, "triggerEvent", null);
|
368
|
+
__decorate([
|
369
|
+
Input('popoverScrollStrategy'),
|
370
|
+
__metadata("design:type", String),
|
371
|
+
__metadata("design:paramtypes", [String])
|
372
|
+
], GIPIPopoverComponent.prototype, "scrollStrategy", null);
|
373
|
+
__decorate([
|
374
|
+
Input('popoverEnterDelay'),
|
375
|
+
__metadata("design:type", Number),
|
376
|
+
__metadata("design:paramtypes", [Number])
|
377
|
+
], GIPIPopoverComponent.prototype, "enterDelay", null);
|
378
|
+
__decorate([
|
379
|
+
Input('popoverLeaveDelay'),
|
380
|
+
__metadata("design:type", Number),
|
381
|
+
__metadata("design:paramtypes", [Number])
|
382
|
+
], GIPIPopoverComponent.prototype, "leaveDelay", null);
|
383
|
+
__decorate([
|
384
|
+
Input('popoverOverlapTrigger'),
|
385
|
+
__metadata("design:type", Boolean),
|
386
|
+
__metadata("design:paramtypes", [Boolean])
|
387
|
+
], GIPIPopoverComponent.prototype, "overlapTrigger", null);
|
388
|
+
__decorate([
|
389
|
+
Input('popoverOffsetX'),
|
390
|
+
__metadata("design:type", Number),
|
391
|
+
__metadata("design:paramtypes", [Number])
|
392
|
+
], GIPIPopoverComponent.prototype, "targetOffsetX", null);
|
393
|
+
__decorate([
|
394
|
+
Input('popoverOffsetY'),
|
395
|
+
__metadata("design:type", Number),
|
396
|
+
__metadata("design:paramtypes", [Number])
|
397
|
+
], GIPIPopoverComponent.prototype, "targetOffsetY", null);
|
398
|
+
__decorate([
|
399
|
+
Input('popoverArrowOffsetX'),
|
400
|
+
__metadata("design:type", Number),
|
401
|
+
__metadata("design:paramtypes", [Number])
|
402
|
+
], GIPIPopoverComponent.prototype, "arrowOffsetX", null);
|
403
|
+
__decorate([
|
404
|
+
Input('popoverArrowWidth'),
|
405
|
+
__metadata("design:type", Number),
|
406
|
+
__metadata("design:paramtypes", [Number])
|
407
|
+
], GIPIPopoverComponent.prototype, "arrowWidth", null);
|
408
|
+
__decorate([
|
409
|
+
Input('popoverArrowColor'),
|
410
|
+
__metadata("design:type", String),
|
411
|
+
__metadata("design:paramtypes", [String])
|
412
|
+
], GIPIPopoverComponent.prototype, "arrowColor", null);
|
413
|
+
__decorate([
|
414
|
+
Input('popoverCloseOnClick'),
|
415
|
+
__metadata("design:type", Boolean),
|
416
|
+
__metadata("design:paramtypes", [Boolean])
|
417
|
+
], GIPIPopoverComponent.prototype, "closeOnClick", null);
|
418
|
+
__decorate([
|
419
|
+
Input('popoverDisableAnimation'),
|
420
|
+
__metadata("design:type", Boolean),
|
421
|
+
__metadata("design:paramtypes", [Boolean])
|
422
|
+
], GIPIPopoverComponent.prototype, "disableAnimation", null);
|
423
|
+
__decorate([
|
424
|
+
Input('focusTrapEnabled'),
|
425
|
+
__metadata("design:type", Boolean),
|
426
|
+
__metadata("design:paramtypes", [Boolean])
|
427
|
+
], GIPIPopoverComponent.prototype, "focusTrapEnabled", null);
|
428
|
+
__decorate([
|
429
|
+
Input('focusTrapAutoCaptureEnabled'),
|
430
|
+
__metadata("design:type", Boolean),
|
431
|
+
__metadata("design:paramtypes", [Boolean])
|
432
|
+
], GIPIPopoverComponent.prototype, "focusTrapAutoCaptureEnabled", null);
|
433
|
+
__decorate([
|
434
|
+
Input('class'),
|
435
|
+
__metadata("design:type", String),
|
436
|
+
__metadata("design:paramtypes", [String])
|
437
|
+
], GIPIPopoverComponent.prototype, "panelClass", null);
|
438
|
+
__decorate([
|
439
|
+
Output(),
|
440
|
+
__metadata("design:type", EventEmitter)
|
441
|
+
], GIPIPopoverComponent.prototype, "close", void 0);
|
442
|
+
__decorate([
|
443
|
+
ViewChild(TemplateRef, { static: false }),
|
444
|
+
__metadata("design:type", TemplateRef)
|
445
|
+
], GIPIPopoverComponent.prototype, "templateRef", void 0);
|
446
|
+
GIPIPopoverComponent = GIPIPopoverComponent_1 = __decorate([
|
447
|
+
Component({
|
448
|
+
selector: "gipi-popover",
|
449
|
+
exportAs: 'gipiPopover',
|
450
|
+
template: "<ng-template>\n\n <div class=\"popover-panel\"\n role=\"dialog\"\n [class.popover-overlap]=\"overlapTrigger\"\n [ngClass]=\"_classList\"\n [style.min-width]=\"popoverWidth\"\n [ngStyle]=\"popoverPanelStyles\"\n [@.disabled]=\"disableAnimation\"\n [@transformPopover]=\"'enter'\"\n (mouseover)=\"onMouseOver()\"\n (mouseleave)=\"onMouseLeave()\"\n (keydown)=\"_handleKeydown($event)\"\n (click)=\"onClick()\">\n\n <div class=\"popover-direction-arrow\"\n [ngStyle]=\"popoverArrowStyles\"\n *ngIf=\"!overlapTrigger\">\n </div>\n\n <div class=\"popover-content\"\n [ngStyle]=\"popoverContentStyles\"\n [cdkTrapFocus]=\"focusTrapEnabled\"\n [cdkTrapFocusAutoCapture]=\"focusTrapAutoCaptureEnabled\">\n <ng-content> </ng-content>\n </div>\n\n </div>\n\n</ng-template>",
|
451
|
+
providers: [
|
452
|
+
{
|
453
|
+
provide: NG_VALUE_ACCESSOR,
|
454
|
+
useExisting: forwardRef(function () { return GIPIPopoverComponent_1; }),
|
455
|
+
multi: true
|
456
|
+
}
|
457
|
+
],
|
458
|
+
host: {
|
459
|
+
'class': 'gipi-popover',
|
460
|
+
},
|
461
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
462
|
+
encapsulation: ViewEncapsulation.None,
|
463
|
+
animations: [
|
464
|
+
transformPopover
|
465
|
+
],
|
466
|
+
styles: [".popover-panel{display:flex;flex-direction:column;max-height:calc(100vh + 48px)}.popover-ripple{position:absolute;top:0;left:0;bottom:0;right:0}.popover-below .popover-direction-arrow{position:absolute;bottom:0;width:0;height:0;border-bottom-width:0!important;z-index:99999}.popover-above .popover-direction-arrow{position:absolute;top:0;width:0;height:0;border-top-width:0!important;z-index:99999}.popover-after .popover-direction-arrow{left:20px}.popover-before .popover-direction-arrow{right:20px}"]
|
467
|
+
}),
|
468
|
+
__metadata("design:paramtypes", [ElementRef, NgZone])
|
469
|
+
], GIPIPopoverComponent);
|
470
|
+
return GIPIPopoverComponent;
|
471
|
+
}());
|
472
|
+
export { GIPIPopoverComponent };
|
473
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9wb3Zlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJzaGFyZWQvZ2lwaS1jb21wb25lbnRzL3BvcG92ZXIvcG9wb3Zlci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzlELE9BQU8sRUFBRSxNQUFNLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxZQUFZLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUUsV0FBVyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM00sT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFbkQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDL0QsT0FBTyxFQUFFLDRCQUE0QixFQUFFLDRCQUE0QixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUF5QnJHO0lBK09JLDhCQUFvQixXQUF1QixFQUFTLElBQVk7UUFBNUMsZ0JBQVcsR0FBWCxXQUFXLENBQVk7UUFBUyxTQUFJLEdBQUosSUFBSSxDQUFRO1FBN090QyxTQUFJLEdBQVcsUUFBUSxDQUFDO1FBRTFDLGtCQUFhLEdBQVcsTUFBTSxDQUFDO1FBQy9CLGVBQVUsR0FBcUIsT0FBTyxDQUFDO1FBQ3ZDLGVBQVUsR0FBcUIsT0FBTyxDQUFDO1FBQ3ZDLGtCQUFhLEdBQXdCLE9BQU8sQ0FBQztRQUM3QyxvQkFBZSxHQUEwQixZQUFZLENBQUM7UUFDdEQsZ0JBQVcsR0FBVyxHQUFHLENBQUM7UUFDMUIsZ0JBQVcsR0FBVyxHQUFHLENBQUM7UUFDMUIsb0JBQWUsR0FBWSxJQUFJLENBQUM7UUFDaEMsc0JBQWlCLEdBQVksS0FBSyxDQUFDO1FBQ25DLG1CQUFjLEdBQVcsQ0FBQyxDQUFDO1FBQzNCLG1CQUFjLEdBQVcsQ0FBQyxDQUFDO1FBQzNCLGtCQUFhLEdBQVcsRUFBRSxDQUFDO1FBQzNCLGdCQUFXLEdBQVcsQ0FBQyxDQUFDO1FBQ3hCLGdCQUFXLEdBQVcscUJBQXFCLENBQUM7UUFDNUMsa0JBQWEsR0FBWSxJQUFJLENBQUM7UUFDOUIsc0JBQWlCLEdBQVksSUFBSSxDQUFDO1FBQ2xDLGlDQUE0QixHQUFZLElBQUksQ0FBQztRQUVyRCxxRUFBcUU7UUFDckUsZUFBVSxHQUErQixFQUFFLENBQUM7UUFFNUMseUJBQXlCO1FBQ2xCLHlCQUFvQixHQUFZLEtBQUssQ0FBQztRQUU3Qyx5Q0FBeUM7UUFDbEMsa0JBQWEsR0FBWSxLQUFLLENBQUM7UUFXdEMsd0RBQXdEO1FBQ3hELDRCQUF1QixHQUFpQyxJQUFJLFlBQVksRUFBa0IsQ0FBQztRQWlNM0YsaURBQWlEO1FBQ3ZDLFVBQUssR0FBdUIsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUszRCxJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztJQUM5QixDQUFDOzZCQWpQUSxvQkFBb0I7SUE2QzdCLHNCQUFJLDhDQUFZO1FBRmhCLHlCQUF5QjthQUV6QjtZQUNJLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQztRQUM5QixDQUFDO2FBQ0QsVUFBaUIsS0FBYTtZQUMxQixJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQztRQUMvQixDQUFDOzs7T0FIQTtJQU9ELHNCQUFJLDJDQUFTO1FBRmIsb0NBQW9DO2FBRXBDO1lBQ0ksT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDO1FBQzNCLENBQUM7YUFDRCxVQUFjLEtBQXVCO1lBQ2pDLElBQUksS0FBSyxLQUFLLFFBQVEsSUFBSSxLQUFLLEtBQUssT0FBTyxFQUFFO2dCQUN6Qyw0QkFBNEIsRUFBRSxDQUFDO2FBQ2xDO1lBQ0QsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUM7WUFDeEIsSUFBSSxDQUFDLGtCQUFrQixFQUFFLENBQUM7UUFDOUIsQ0FBQzs7O09BUEE7SUFXRCxzQkFBSSwyQ0FBUztRQUZiLG9DQUFvQzthQUVwQztZQUNJLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQztRQUMzQixDQUFDO2FBQ0QsVUFBYyxLQUF1QjtZQUNqQyxJQUFJLEtBQUssS0FBSyxPQUFPLElBQUksS0FBSyxLQUFLLE9BQU8sRUFBRTtnQkFDeEMsNEJBQTRCLEVBQUUsQ0FBQzthQUNsQztZQUNELElBQUksQ0FBQyxVQUFVLEdBQUcsS0FBSyxDQUFDO1lBQ3hCLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxDQUFDO1FBQzlCLENBQUM7OztPQVBBO0lBV0Qsc0JBQUksOENBQVk7UUFGaEIsZ0NBQWdDO2FBRWhDO1lBQ0ksT0FBTyxJQUFJLENBQUMsYUFBYSxDQUFDO1FBQzlCLENBQUM7YUFDRCxVQUFpQixLQUEwQjtZQUN2QyxJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQztRQUMvQixDQUFDOzs7T0FIQTtJQU9ELHNCQUFJLGdEQUFjO1FBRmxCLG9DQUFvQzthQUVwQztZQUNJLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQztRQUNoQyxDQUFDO2FBQ0QsVUFBbUIsS0FBNEI7WUFDM0MsSUFBSSxDQUFDLGVBQWUsR0FBRyxLQUFLLENBQUM7UUFDakMsQ0FBQzs7O09BSEE7SUFPRCxzQkFBSSw0Q0FBVTtRQUZkLGdDQUFnQzthQUVoQztZQUNJLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQztRQUM1QixDQUFDO2FBQ0QsVUFBZSxLQUFhO1lBQ3hCLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1FBQzdCLENBQUM7OztPQUhBO0lBT0Qsc0JBQUksNENBQVU7UUFGZCw4QkFBOEI7YUFFOUI7WUFDSSxPQUFPLElBQUksQ0FBQyxXQUFXLENBQUM7UUFDNUIsQ0FBQzthQUNELFVBQWUsS0FBYTtZQUN4QixJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQztRQUM3QixDQUFDOzs7T0FIQTtJQU9ELHNCQUFJLGdEQUFjO1FBRmxCLHlDQUF5QzthQUV6QztZQUNJLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQztRQUNoQyxDQUFDO2FBQ0QsVUFBbUIsS0FBYztZQUM3QixJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQztRQUNqQyxDQUFDOzs7T0FIQTtJQU9ELHNCQUFJLCtDQUFhO1FBRmpCLHFDQUFxQzthQUVyQztZQUNJLE9BQU8sSUFBSSxDQUFDLGNBQWMsQ0FBQztRQUMvQixDQUFDO2FBQ0QsVUFBa0IsS0FBYTtZQUMzQixJQUFJLENBQUMsY0FBYyxHQUFHLEtBQUssQ0FBQztRQUNoQyxDQUFDOzs7T0FIQTtJQU9ELHNCQUFJLCtDQUFhO1FBRmpCLHFDQUFxQzthQUVyQztZQUNJLE9BQU8sSUFBSSxDQUFDLGNBQWMsQ0FBQztRQUMvQixDQUFDO2FBQ0QsVUFBa0IsS0FBYTtZQUMzQixJQUFJLENBQUMsY0FBYyxHQUFHLEtBQUssQ0FBQztRQUNoQyxDQUFDOzs7T0FIQTtJQU9ELHNCQUFJLDhDQUFZO1FBRmhCLHFDQUFxQzthQUVyQztZQUNJLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQztRQUM5QixDQUFDO2FBQ0QsVUFBaUIsS0FBYTtZQUMxQixJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQztRQUMvQixDQUFDOzs7T0FIQTtJQU9ELHNCQUFJLDRDQUFVO1FBRmQsOEJBQThCO2FBRTlCO1lBQ0ksT0FBTyxJQUFJLENBQUMsV0FBVyxDQUFDO1FBQzVCLENBQUM7YUFDRCxVQUFlLEtBQWE7WUFDeEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDN0IsQ0FBQzs7O09BSEE7SUFPRCxzQkFBSSw0Q0FBVTtRQUZkLDBCQUEwQjthQUUxQjtZQUNJLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQztRQUM1QixDQUFDO2FBQ0QsVUFBZSxLQUFhO1lBQ3hCLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1FBQzdCLENBQUM7OztPQUhBO0lBVUQsc0JBQUksOENBQVk7UUFMaEI7OztXQUdHO2FBRUg7WUFDSSxPQUFPLElBQUksQ0FBQyxhQUFhLENBQUM7UUFDOUIsQ0FBQzthQUNELFVBQWlCLEtBQWM7WUFDM0IsSUFBSSxDQUFDLGFBQWEsR0FBRyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUN0RCxDQUFDOzs7T0FIQTtJQVVELHNCQUFJLGtEQUFnQjtRQUxwQjs7O1dBR0c7YUFFSDtZQUNJLE9BQU8sSUFBSSxDQUFDLGlCQUFpQixDQUFDO1FBQ2xDLENBQUM7YUFDRCxVQUFxQixLQUFjO1lBQy9CLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMxRCxDQUFDOzs7T0FIQTtJQVVELHNCQUFJLGtEQUFnQjtRQUxwQjs7O1dBR0c7YUFFSDtZQUNJLE9BQU8sSUFBSSxDQUFDLGlCQUFpQixDQUFDO1FBQ2xDLENBQUM7YUFDRCxVQUFxQixLQUFjO1lBQy9CLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMxRCxDQUFDOzs7T0FIQTtJQVVELHNCQUFJLDZEQUEyQjtRQUwvQjs7O1dBR0c7YUFFSDtZQUNJLE9BQU8sSUFBSSxDQUFDLDRCQUE0QixDQUFDO1FBQzdDLENBQUM7YUFDRCxVQUFnQyxLQUFjO1lBQzFDLElBQUksQ0FBQyw0QkFBNEIsR0FBRyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNyRSxDQUFDOzs7T0FIQTtJQVdELHNCQUFJLDRDQUFVO1FBTmQ7Ozs7V0FJRzthQUVILFVBQWUsT0FBZTtZQUMxQixJQUFJLE9BQU8sSUFBSSxPQUFPLENBQUMsTUFBTSxFQUFFO2dCQUMzQixJQUFJLENBQUMsVUFBVSxHQUFHLE9BQU8sQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsTUFBTSxDQUFDLFVBQUMsR0FBUSxFQUFFLFNBQWlCO29CQUNwRSxHQUFHLENBQUMsU0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDO29CQUN0QixPQUFPLEdBQUcsQ0FBQztnQkFDZixDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUM7Z0JBRVAsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsU0FBUyxHQUFHLEVBQUUsQ0FBQztnQkFDOUMsSUFBSSxDQUFDLGtCQUFrQixFQUFFLENBQUM7YUFDN0I7UUFDTCxDQUFDOzs7T0FBQTtJQVdELHVDQUFRLEdBQVIsY0FBbUIsQ0FBQztJQUVwQiwwQ0FBVyxHQUFYO1FBQ0ksSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDMUIsQ0FBQztJQUVELGtGQUFrRjtJQUNsRiw2Q0FBYyxHQUFkLFVBQWUsS0FBb0I7UUFDL0IsUUFBUSxLQUFLLENBQUMsT0FBTyxFQUFFO1lBQ25CLEtBQUssTUFBTSxDQUFDLENBQUM7Z0JBQ1QsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO2dCQUN2QixPQUFPO2FBQ1Y7U0FDSjtJQUNMLENBQUM7SUFFRCx5SEFBeUg7SUFDekgsOENBQWUsR0FBZjtRQUNJLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDdEIsQ0FBQztJQUVELHdEQUF3RDtJQUN4RCxzQ0FBTyxHQUFQO1FBQ0ksSUFBSSxJQUFJLENBQUMsWUFBWSxFQUFFO1lBQ25CLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztTQUMxQjtJQUNMLENBQUM7SUFFRCx1R0FBdUc7SUFDdkcsMENBQVcsR0FBWDtRQUNJLElBQUksSUFBSSxDQUFDLFlBQVksS0FBSyxPQUFPLEVBQUU7WUFDL0IsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUM7U0FDN0I7SUFDTCxDQUFDO0lBRUQsOEVBQThFO0lBQzlFLDJDQUFZLEdBQVo7UUFDSSxJQUFJLElBQUksQ0FBQyxZQUFZLEtBQUssT0FBTyxFQUFFO1lBQy9CLElBQUksQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDO1lBQzNCLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztTQUMxQjtJQUNMLENBQUM7SUFFRCxzR0FBc0c7SUFDdEcsMkpBQTJKO0lBQzNKLG1HQUFtRztJQUNuRywrQ0FBZ0IsR0FBaEI7UUFFSSxnR0FBZ0c7UUFDaEcsMEdBQTBHO1FBQzFHLElBQUksQ0FBQyxrQkFBa0IsR0FBRztZQUN0QixPQUFPLEVBQUUsSUFBSSxDQUFDLFNBQVMsS0FBSyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFO1lBQ3hGLE1BQU0sRUFBRSxJQUFJLENBQUMsU0FBUyxLQUFLLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUU7WUFDdEYsWUFBWSxFQUFFLElBQUksQ0FBQyxTQUFTLEtBQUssT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsVUFBVSxHQUFHLFdBQVcsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyx1QkFBdUI7WUFDcEgsY0FBYyxFQUFFLFdBQVcsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLEdBQUcsV0FBVyxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLEdBQUcsc0JBQXNCO1lBQ3RJLGVBQWUsRUFBRSxJQUFJLENBQUMsU0FBUyxLQUFLLE9BQU8sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQVUsR0FBRyxXQUFXLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQVUsR0FBRyxzQkFBc0I7WUFDeEksYUFBYSxFQUFFLFdBQVcsS0FBSyxTQUFTLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLEdBQUcsV0FBVyxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLEdBQUcsc0JBQXNCO1NBQ3hJLENBQUM7UUFFRixtREFBbUQ7UUFDbkQsSUFBSSxDQUFDLG9CQUFvQixHQUFHO1lBQ3hCLGFBQWEsRUFBRSxJQUFJLENBQUMsY0FBYyxLQUFLLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsVUFBVSxHQUFHLElBQUk7WUFDNUUsZ0JBQWdCLEVBQUUsSUFBSSxDQUFDLGNBQWMsS0FBSyxJQUFJLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsSUFBSTtZQUNqRixZQUFZLEVBQUUsSUFBSSxDQUFDLGNBQWMsS0FBSyxLQUFLLElBQUksSUFBSSxDQUFDLFNBQVMsS0FBSyxPQUFPLElBQUksSUFBSSxDQUFDLG9CQUFvQixLQUFLLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLEdBQUcsQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxLQUFLO1NBQzNKLENBQUM7SUFDTixDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsaURBQWtCLEdBQWxCLFVBQW1CLElBQXVDLEVBQUUsSUFBdUM7UUFBaEYscUJBQUEsRUFBQSxPQUF5QixJQUFJLENBQUMsU0FBUztRQUFFLHFCQUFBLEVBQUEsT0FBeUIsSUFBSSxDQUFDLFNBQVM7UUFDL0YsSUFBSSxDQUFDLFVBQVUsQ0FBQyxnQkFBZ0IsQ0FBQyxHQUFHLElBQUksS0FBSyxRQUFRLENBQUM7UUFDdEQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxlQUFlLENBQUMsR0FBRyxJQUFJLEtBQUssT0FBTyxDQUFDO1FBQ3BELElBQUksQ0FBQyxVQUFVLENBQUMsZUFBZSxDQUFDLEdBQUcsSUFBSSxLQUFLLE9BQU8sQ0FBQztRQUNwRCxJQUFJLENBQUMsVUFBVSxDQUFDLGVBQWUsQ0FBQyxHQUFHLElBQUksS0FBSyxPQUFPLENBQUM7SUFDeEQsQ0FBQzs7O2dCQWpGZ0MsVUFBVTtnQkFBZSxNQUFNOztJQTdPdEM7UUFBekIsV0FBVyxDQUFDLFdBQVcsQ0FBQzs7c0RBQXlCO0lBMkNsRDtRQURDLEtBQUssRUFBRTs7OzREQUdQO0lBT0Q7UUFEQyxLQUFLLENBQUMsa0JBQWtCLENBQUM7Ozt5REFHekI7SUFXRDtRQURDLEtBQUssQ0FBQyxrQkFBa0IsQ0FBQzs7O3lEQUd6QjtJQVdEO1FBREMsS0FBSyxDQUFDLGtCQUFrQixDQUFDOzs7NERBR3pCO0lBT0Q7UUFEQyxLQUFLLENBQUMsdUJBQXVCLENBQUM7Ozs4REFHOUI7SUFPRDtRQURDLEtBQUssQ0FBQyxtQkFBbUIsQ0FBQzs7OzBEQUcxQjtJQU9EO1FBREMsS0FBSyxDQUFDLG1CQUFtQixDQUFDOzs7MERBRzFCO0lBT0Q7UUFEQyxLQUFLLENBQUMsdUJBQXVCLENBQUM7Ozs4REFHOUI7SUFPRDtRQURDLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQzs7OzZEQUd2QjtJQU9EO1FBREMsS0FBSyxDQUFDLGdCQUFnQixDQUFDOzs7NkRBR3ZCO0lBT0Q7UUFEQyxLQUFLLENBQUMscUJBQXFCLENBQUM7Ozs0REFHNUI7SUFPRDtRQURDLEtBQUssQ0FBQyxtQkFBbUIsQ0FBQzs7OzBEQUcxQjtJQU9EO1FBREMsS0FBSyxDQUFDLG1CQUFtQixDQUFDOzs7MERBRzFCO0lBVUQ7UUFEQyxLQUFLLENBQUMscUJBQXFCLENBQUM7Ozs0REFHNUI7SUFVRDtRQURDLEtBQUssQ0FBQyx5QkFBeUIsQ0FBQzs7O2dFQUdoQztJQVVEO1FBREMsS0FBSyxDQUFDLGtCQUFrQixDQUFDOzs7Z0VBR3pCO0lBVUQ7UUFEQyxLQUFLLENBQUMsNkJBQTZCLENBQUM7OzsyRUFHcEM7SUFXRDtRQURDLEtBQUssQ0FBQyxPQUFPLENBQUM7OzswREFXZDtJQUdTO1FBQVQsTUFBTSxFQUFFO2tDQUFRLFlBQVk7dURBQWtDO0lBRXBCO1FBQTFDLFNBQVMsQ0FBQyxXQUFXLEVBQUUsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLENBQUM7a0NBQWMsV0FBVzs2REFBTTtJQTdPaEUsb0JBQW9CO1FBckJoQyxTQUFTLENBQUM7WUFDUCxRQUFRLEVBQUUsY0FBYztZQUN4QixRQUFRLEVBQUUsYUFBYTtZQUN2Qix1OEJBQXVDO1lBRXZDLFNBQVMsRUFBRTtnQkFDUDtvQkFDSSxPQUFPLEVBQUUsaUJBQWlCO29CQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLGNBQW1DLE9BQUEsc0JBQW9CLEVBQXBCLENBQW9CLENBQUM7b0JBQ2hGLEtBQUssRUFBRSxJQUFJO2lCQUNkO2FBQ0o7WUFDRCxJQUFJLEVBQUU7Z0JBQ0YsT0FBTyxFQUFFLGNBQWM7YUFDMUI7WUFDRCxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtZQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtZQUNyQyxVQUFVLEVBQUU7Z0JBQ1IsZ0JBQWdCO2FBQ25COztTQUNKLENBQUM7eUNBZ1BtQyxVQUFVLEVBQWUsTUFBTTtPQS9PdkQsb0JBQW9CLENBa1VoQztJQUFELDJCQUFDO0NBQUEsQUFsVUQsSUFrVUM7U0FsVVksb0JBQW9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgY29lcmNlQm9vbGVhblByb3BlcnR5IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2NvZXJjaW9uJztcbmltcG9ydCB7IEVTQ0FQRSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9rZXljb2Rlcyc7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBFdmVudEVtaXR0ZXIsIEhvc3RCaW5kaW5nLCBJbnB1dCwgTmdab25lLCBPbkRlc3Ryb3ksIE9uSW5pdCwgT3V0cHV0LCBUZW1wbGF0ZVJlZiwgVmlld0NoaWxkLCBWaWV3RW5jYXBzdWxhdGlvbiwgZm9yd2FyZFJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbmltcG9ydCB7IHRyYW5zZm9ybVBvcG92ZXIgfSBmcm9tICcuL3NoYXJlZC9wb3BvdmVyLWFuaW1hdGlvbnMnO1xuaW1wb3J0IHsgdGhyb3dQb3BvdmVySW52YWxpZFBvc2l0aW9uWCwgdGhyb3dQb3BvdmVySW52YWxpZFBvc2l0aW9uWSB9IGZyb20gJy4vc2hhcmVkL3BvcG92ZXItZXJyb3JzJztcbmltcG9ydCB7IFBvcG92ZXJQYW5lbCB9IGZyb20gJy4vc2hhcmVkL3BvcG92ZXItaW50ZXJmYWNlcyc7XG5pbXBvcnQgeyBQb3BvdmVyUG9zaXRpb25YLCBQb3BvdmVyUG9zaXRpb25ZLCBQb3BvdmVyU2Nyb2xsU3RyYXRlZ3ksIFBvcG92ZXJUcmlnZ2VyRXZlbnQgfSBmcm9tICcuL3NoYXJlZC9wb3BvdmVyLXR5cGVzJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6IGBnaXBpLXBvcG92ZXJgLFxuICAgIGV4cG9ydEFzOiAnZ2lwaVBvcG92ZXInLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9wb3BvdmVyLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9wb3BvdmVyLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCk6IHR5cGVvZiBHSVBJUG9wb3ZlckNvbXBvbmVudCA9PiBHSVBJUG9wb3ZlckNvbXBvbmVudCksXG4gICAgICAgICAgICBtdWx0aTogdHJ1ZVxuICAgICAgICB9XG4gICAgXSxcbiAgICBob3N0OiB7XG4gICAgICAgICdjbGFzcyc6ICdnaXBpLXBvcG92ZXInLFxuICAgIH0sXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgICBhbmltYXRpb25zOiBbXG4gICAgICAgIHRyYW5zZm9ybVBvcG92ZXJcbiAgICBdLFxufSlcbmV4cG9ydCBjbGFzcyBHSVBJUG9wb3ZlckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgUG9wb3ZlclBhbmVsLCBPbkRlc3Ryb3kge1xuXG4gICAgQEhvc3RCaW5kaW5nKCdhdHRyLnJvbGUnKSByb2xlOiBzdHJpbmcgPSAnZGlhbG9nJztcblxuICAgIHByaXZhdGUgX3BvcG92ZXJXaWR0aDogc3RyaW5nID0gJ2F1dG8nO1xuICAgIHByaXZhdGUgX3Bvc2l0aW9uWDogUG9wb3ZlclBvc2l0aW9uWCA9ICdhZnRlcic7XG4gICAgcHJpdmF0ZSBfcG9zaXRpb25ZOiBQb3BvdmVyUG9zaXRpb25ZID0gJ2JlbG93JztcbiAgICBwcml2YXRlIF90cmlnZ2VyRXZlbnQ6IFBvcG92ZXJUcmlnZ2VyRXZlbnQgPSAnaG92ZXInO1xuICAgIHByaXZhdGUgX3Njcm9sbFN0cmF0ZWd5OiBQb3BvdmVyU2Nyb2xsU3RyYXRlZ3kgPSAncmVwb3NpdGlvbic7XG4gICAgcHJpdmF0ZSBfZW50ZXJEZWxheTogbnVtYmVyID0gMjAwO1xuICAgIHByaXZhdGUgX2xlYXZlRGVsYXk6IG51bWJlciA9IDIwMDtcbiAgICBwcml2YXRlIF9vdmVybGFwVHJpZ2dlcjogYm9vbGVhbiA9IHRydWU7XG4gICAgcHJpdmF0ZSBfZGlzYWJsZUFuaW1hdGlvbjogYm9vbGVhbiA9IGZhbHNlO1xuICAgIHByaXZhdGUgX3RhcmdldE9mZnNldFg6IG51bWJlciA9IDA7XG4gICAgcHJpdmF0ZSBfdGFyZ2V0T2Zmc2V0WTogbnVtYmVyID0gMDtcbiAgICBwcml2YXRlIF9hcnJvd09mZnNldFg6IG51bWJlciA9IDIwO1xuICAgIHByaXZhdGUgX2Fycm93V2lkdGg6IG51bWJlciA9IDg7XG4gICAgcHJpdmF0ZSBfYXJyb3dDb2xvcjogc3RyaW5nID0gJ3JnYmEoMCwgMCwgMCwgMC4xMiknO1xuICAgIHByaXZhdGUgX2Nsb3NlT25DbGljazogYm9vbGVhbiA9IHRydWU7XG4gICAgcHJpdmF0ZSBfZm9jdXNUcmFwRW5hYmxlZDogYm9vbGVhbiA9IHRydWU7XG4gICAgcHJpdmF0ZSBfZm9jdXNUcmFwQXV0b0NhcHR1cmVFbmFibGVkOiBib29sZWFuID0gdHJ1ZTtcblxuICAgIC8qKiBPYmpldG8gZGUgY29uZmlndXJhw6fDo28gYSBzZXIgcGFzc2FkbyBwYXJhIG8gbmdDbGFzcyBkbyBwb3BvdmVyICovXG4gICAgX2NsYXNzTGlzdDogeyBba2V5OiBzdHJpbmddOiBib29sZWFuIH0gPSB7fTtcblxuICAgIC8qKiBQb3Npw6fDo28gZG8gcG9wb3ZlciAqL1xuICAgIHB1YmxpYyBjb250YWluZXJQb3NpdGlvbmluZzogYm9vbGVhbiA9IGZhbHNlO1xuXG4gICAgLyoqIEZlY2hhbWVudG8gZGVzYWJpbGl0YWRvIG5vIHBvcG92ZXIgKi9cbiAgICBwdWJsaWMgY2xvc2VEaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gICAgLyoqIE9iamV0byBkZSBjb25maWd1cmHDp8OjbyBhIHNlciBwYXNzYWRvIHBhcmEgYSBzZXRhIG5nU3R5bGUgZG8gcG9wb3ZlciAqL1xuICAgIHB1YmxpYyBwb3BvdmVyUGFuZWxTdHlsZXM6IHt9O1xuXG4gICAgLyoqIE9iamV0byBkZSBjb25maWd1cmHDp8OjbyBhIHNlciBwYXNzYWRvIHBhcmEgYSBzZXRhIG5nU3R5bGUgZG8gcG9wb3ZlciAqL1xuICAgIHB1YmxpYyBwb3BvdmVyQXJyb3dTdHlsZXM6IHt9O1xuXG4gICAgLyoqIE9iamV0byBkZSBjb25maWd1cmHDp8OjbyBhIHNlciBwYXNzYWRvIHBhcmEgbyBjb250ZcO6ZG8gZG8gcG9wb3ZlciBuZ1N0eWxlICovXG4gICAgcHVibGljIHBvcG92ZXJDb250ZW50U3R5bGVzOiB7fTtcblxuICAgIC8qKiBFbWl0ZSBvIGVzdGFkbyBkZSBhbmltYcOnw6NvIGF0dWFsIHNlbXByZSBxdWUgbXVkYS4gKi9cbiAgICBfb25BbmltYXRpb25TdGF0ZUNoYW5nZTogRXZlbnRFbWl0dGVyPEFuaW1hdGlvbkV2ZW50PiA9IG5ldyBFdmVudEVtaXR0ZXI8QW5pbWF0aW9uRXZlbnQ+KCk7XG5cbiAgICAvKiogTGFyZ3VyYSBkbyBwb3BvdmVyICovXG4gICAgQElucHV0KClcbiAgICBnZXQgcG9wb3ZlcldpZHRoKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLl9wb3BvdmVyV2lkdGg7XG4gICAgfVxuICAgIHNldCBwb3BvdmVyV2lkdGgodmFsdWU6IHN0cmluZykge1xuICAgICAgICB0aGlzLl9wb3BvdmVyV2lkdGggPSB2YWx1ZTtcbiAgICB9XG5cbiAgICAvKiogUG9zacOnw6NvIGRvIHBvcG92ZXIgbm8gZWl4byBYLiAqL1xuICAgIEBJbnB1dCgncG9wb3ZlclBvc2l0aW9uWCcpXG4gICAgZ2V0IHBvc2l0aW9uWCgpOiBQb3BvdmVyUG9zaXRpb25YIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3Bvc2l0aW9uWDtcbiAgICB9XG4gICAgc2V0IHBvc2l0aW9uWCh2YWx1ZTogUG9wb3ZlclBvc2l0aW9uWCkge1xuICAgICAgICBpZiAodmFsdWUgIT09ICdiZWZvcmUnICYmIHZhbHVlICE9PSAnYWZ0ZXInKSB7XG4gICAgICAgICAgICB0aHJvd1BvcG92ZXJJbnZhbGlkUG9zaXRpb25YKCk7XG4gICAgICAgIH1cbiAgICAgICAgdGhpcy5fcG9zaXRpb25YID0gdmFsdWU7XG4gICAgICAgIHRoaXMuc2V0UG9zaXRpb25DbGFzc2VzKCk7XG4gICAgfVxuXG4gICAgLyoqIFBvc2nDp8OjbyBkbyBwb3BvdmVyIG5vIGVpeG8gWS4gKi9cbiAgICBASW5wdXQoJ3BvcG92ZXJQb3NpdGlvblknKVxuICAgIGdldCBwb3NpdGlvblkoKTogUG9wb3ZlclBvc2l0aW9uWSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9wb3NpdGlvblk7XG4gICAgfVxuICAgIHNldCBwb3NpdGlvblkodmFsdWU6IFBvcG92ZXJQb3NpdGlvblkpIHtcbiAgICAgICAgaWYgKHZhbHVlICE9PSAnYWJvdmUnICYmIHZhbHVlICE9PSAnYmVsb3cnKSB7XG4gICAgICAgICAgICB0aHJvd1BvcG92ZXJJbnZhbGlkUG9zaXRpb25ZKCk7XG4gICAgICAgIH1cbiAgICAgICAgdGhpcy5fcG9zaXRpb25ZID0gdmFsdWU7XG4gICAgICAgIHRoaXMuc2V0UG9zaXRpb25DbGFzc2VzKCk7XG4gICAgfVxuXG4gICAgLyoqIEV2ZW50byBkZSBnYXRpbGhvIHBvcG92ZXIgKi9cbiAgICBASW5wdXQoJ3BvcG92ZXJUcmlnZ2VyT24nKVxuICAgIGdldCB0cmlnZ2VyRXZlbnQoKTogUG9wb3ZlclRyaWdnZXJFdmVudCB7XG4gICAgICAgIHJldHVybiB0aGlzLl90cmlnZ2VyRXZlbnQ7XG4gICAgfVxuICAgIHNldCB0cmlnZ2VyRXZlbnQodmFsdWU6IFBvcG92ZXJUcmlnZ2VyRXZlbnQpIHtcbiAgICAgICAgdGhpcy5fdHJpZ2dlckV2ZW50ID0gdmFsdWU7XG4gICAgfVxuXG4gICAgLyoqIEVzdHJhdMOpZ2lhIGRlIHJvbGFnZW0gcG9wb3ZlciAqL1xuICAgIEBJbnB1dCgncG9wb3ZlclNjcm9sbFN0cmF0ZWd5JylcbiAgICBnZXQgc2Nyb2xsU3RyYXRlZ3koKTogUG9wb3ZlclNjcm9sbFN0cmF0ZWd5IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3Njcm9sbFN0cmF0ZWd5O1xuICAgIH1cbiAgICBzZXQgc2Nyb2xsU3RyYXRlZ3kodmFsdWU6IFBvcG92ZXJTY3JvbGxTdHJhdGVneSkge1xuICAgICAgICB0aGlzLl9zY3JvbGxTdHJhdGVneSA9IHZhbHVlO1xuICAgIH1cblxuICAgIC8qKiBBdHJhem8gZGUgZW50cmFkYSBwb3BvdmVyICovXG4gICAgQElucHV0KCdwb3BvdmVyRW50ZXJEZWxheScpXG4gICAgZ2V0IGVudGVyRGVsYXkoKTogbnVtYmVyIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2VudGVyRGVsYXk7XG4gICAgfVxuICAgIHNldCBlbnRlckRlbGF5KHZhbHVlOiBudW1iZXIpIHtcbiAgICAgICAgdGhpcy5fZW50ZXJEZWxheSA9IHZhbHVlO1xuICAgIH1cblxuICAgIC8qKiBBdHJhc28gZGUgc2HDrWRhIHBvcG92ZXIgKi9cbiAgICBASW5wdXQoJ3BvcG92ZXJMZWF2ZURlbGF5JylcbiAgICBnZXQgbGVhdmVEZWxheSgpOiBudW1iZXIge1xuICAgICAgICByZXR1cm4gdGhpcy5fbGVhdmVEZWxheTtcbiAgICB9XG4gICAgc2V0IGxlYXZlRGVsYXkodmFsdWU6IG51bWJlcikge1xuICAgICAgICB0aGlzLl9sZWF2ZURlbGF5ID0gdmFsdWU7XG4gICAgfVxuXG4gICAgLyoqIEdhdGlsaG8gZGUgc29icmVwb3Npw6fDo28gZGUgcG9wb3ZlciAqL1xuICAgIEBJbnB1dCgncG9wb3Zlck92ZXJsYXBUcmlnZ2VyJylcbiAgICBnZXQgb3ZlcmxhcFRyaWdnZXIoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLl9vdmVybGFwVHJpZ2dlcjtcbiAgICB9XG4gICAgc2V0IG92ZXJsYXBUcmlnZ2VyKHZhbHVlOiBib29sZWFuKSB7XG4gICAgICAgIHRoaXMuX292ZXJsYXBUcmlnZ2VyID0gdmFsdWU7XG4gICAgfVxuXG4gICAgLyoqIERlc2xvY2FtZW50byBhbHZvIGRvIHBvcG92ZXIgeCAqL1xuICAgIEBJbnB1dCgncG9wb3Zlck9mZnNldFgnKVxuICAgIGdldCB0YXJnZXRPZmZzZXRYKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl90YXJnZXRPZmZzZXRYO1xuICAgIH1cbiAgICBzZXQgdGFyZ2V0T2Zmc2V0WCh2YWx1ZTogbnVtYmVyKSB7XG4gICAgICAgIHRoaXMuX3RhcmdldE9mZnNldFggPSB2YWx1ZTtcbiAgICB9XG5cbiAgICAvKiogRGVzbG9jYW1lbnRvIGRvIGFsdm8gcG9wb3ZlciB5ICovXG4gICAgQElucHV0KCdwb3BvdmVyT2Zmc2V0WScpXG4gICAgZ2V0IHRhcmdldE9mZnNldFkoKTogbnVtYmVyIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3RhcmdldE9mZnNldFk7XG4gICAgfVxuICAgIHNldCB0YXJnZXRPZmZzZXRZKHZhbHVlOiBudW1iZXIpIHtcbiAgICAgICAgdGhpcy5fdGFyZ2V0T2Zmc2V0WSA9IHZhbHVlO1xuICAgIH1cblxuICAgIC8qKiBEZXNsb2NhbWVudG8gZGEgc2V0YSBwb3BvdmVyIHggKi9cbiAgICBASW5wdXQoJ3BvcG92ZXJBcnJvd09mZnNldFgnKVxuICAgIGdldCBhcnJvd09mZnNldFgoKTogbnVtYmVyIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2Fycm93T2Zmc2V0WDtcbiAgICB9XG4gICAgc2V0IGFycm93T2Zmc2V0WCh2YWx1ZTogbnVtYmVyKSB7XG4gICAgICAgIHRoaXMuX2Fycm93T2Zmc2V0WCA9IHZhbHVlO1xuICAgIH1cblxuICAgIC8qKiBMYXJndXJhIGRhIHNldGEgcG9wb3ZlciAqL1xuICAgIEBJbnB1dCgncG9wb3ZlckFycm93V2lkdGgnKVxuICAgIGdldCBhcnJvd1dpZHRoKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl9hcnJvd1dpZHRoO1xuICAgIH1cbiAgICBzZXQgYXJyb3dXaWR0aCh2YWx1ZTogbnVtYmVyKSB7XG4gICAgICAgIHRoaXMuX2Fycm93V2lkdGggPSB2YWx1ZTtcbiAgICB9XG5cbiAgICAvKiogQ29yIGRhIHNldGEgcG9wb3ZlciAqL1xuICAgIEBJbnB1dCgncG9wb3ZlckFycm93Q29sb3InKVxuICAgIGdldCBhcnJvd0NvbG9yKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLl9hcnJvd0NvbG9yO1xuICAgIH1cbiAgICBzZXQgYXJyb3dDb2xvcih2YWx1ZTogc3RyaW5nKSB7XG4gICAgICAgIHRoaXMuX2Fycm93Q29sb3IgPSB2YWx1ZTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBDb250w6ppbmVyIHBvcG92ZXIgZmVjaGFkbyBhbyBjbGljYXJcbiAgICAgKiBkZWZhdWx0OiB0cnVlXG4gICAgICovXG4gICAgQElucHV0KCdwb3BvdmVyQ2xvc2VPbkNsaWNrJylcbiAgICBnZXQgY2xvc2VPbkNsaWNrKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5fY2xvc2VPbkNsaWNrO1xuICAgIH1cbiAgICBzZXQgY2xvc2VPbkNsaWNrKHZhbHVlOiBib29sZWFuKSB7XG4gICAgICAgIHRoaXMuX2Nsb3NlT25DbGljayA9IGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSh2YWx1ZSk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogRGVzYXRpdmFyIGFuaW1hw6fDtWVzIGRlIHBvcG92ZXIgZSB0b2RvcyBvcyBlbGVtZW50b3MgZmlsaG9zXG4gICAgICogZGVmYXVsdDogZmFsc2VcbiAgICAgKi9cbiAgICBASW5wdXQoJ3BvcG92ZXJEaXNhYmxlQW5pbWF0aW9uJylcbiAgICBnZXQgZGlzYWJsZUFuaW1hdGlvbigpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2Rpc2FibGVBbmltYXRpb247XG4gICAgfVxuICAgIHNldCBkaXNhYmxlQW5pbWF0aW9uKHZhbHVlOiBib29sZWFuKSB7XG4gICAgICAgIHRoaXMuX2Rpc2FibGVBbmltYXRpb24gPSBjb2VyY2VCb29sZWFuUHJvcGVydHkodmFsdWUpO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIEFybWFkaWxoYSBkZSBmb2NvIHBvcG92ZXIgdXNhbmRvIGNka1RyYXBGb2N1c1xuICAgICAqIGRlZmF1bHQ6IHRydWVcbiAgICAgKi9cbiAgICBASW5wdXQoJ2ZvY3VzVHJhcEVuYWJsZWQnKVxuICAgIGdldCBmb2N1c1RyYXBFbmFibGVkKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy5fZm9jdXNUcmFwRW5hYmxlZDtcbiAgICB9XG4gICAgc2V0IGZvY3VzVHJhcEVuYWJsZWQodmFsdWU6IGJvb2xlYW4pIHtcbiAgICAgICAgdGhpcy5fZm9jdXNUcmFwRW5hYmxlZCA9IGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSh2YWx1ZSk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogQ2FwdHVyYSBhdXRvbcOhdGljYSBkYSBhcm1hZGlsaGEgZGUgZm9jbyBwb3BvdmVyIHVzYW5kbyBjZGtUcmFwRm9jdXNBdXRvQ2FwdHVyZVxuICAgICAqIGRlZmF1bHQ6IHRydWVcbiAgICAgKi9cbiAgICBASW5wdXQoJ2ZvY3VzVHJhcEF1dG9DYXB0dXJlRW5hYmxlZCcpXG4gICAgZ2V0IGZvY3VzVHJhcEF1dG9DYXB0dXJlRW5hYmxlZCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2ZvY3VzVHJhcEF1dG9DYXB0dXJlRW5hYmxlZDtcbiAgICB9XG4gICAgc2V0IGZvY3VzVHJhcEF1dG9DYXB0dXJlRW5hYmxlZCh2YWx1ZTogYm9vbGVhbikge1xuICAgICAgICB0aGlzLl9mb2N1c1RyYXBBdXRvQ2FwdHVyZUVuYWJsZWQgPSBjb2VyY2VCb29sZWFuUHJvcGVydHkodmFsdWUpO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIEVzc2UgbcOpdG9kbyB1c2EgY2xhc3NlcyBkZWZpbmlkYXMgbm8gZWxlbWVudG8gcG9wb3ZlciBkbyBob3N0IGUgYXMgYXBsaWNhIG5vIG1vZGVsbyBwb3BvdmVyXG4gICAgICogZXhpYmlkbyBubyBjb250w6ppbmVyIGRlIHNvYnJlcG9zacOnw6NvLiBDYXNvIGNvbnRyw6FyaW8sIMOpIGRpZsOtY2lsIGVzdGlsaXphciBvIHBvcG92ZXIgZGUgZm9yYSBkbyBjb21wb25lbnRlLlxuICAgICAqIEBwYXJhbSBjbGFzc2VzIGxpc3Qgb2YgY2xhc3MgbmFtZXNcbiAgICAgKi9cbiAgICBASW5wdXQoJ2NsYXNzJylcbiAgICBzZXQgcGFuZWxDbGFzcyhjbGFzc2VzOiBzdHJpbmcpIHtcbiAgICAgICAgaWYgKGNsYXNzZXMgJiYgY2xhc3Nlcy5sZW5ndGgpIHtcbiAgICAgICAgICAgIHRoaXMuX2NsYXNzTGlzdCA9IGNsYXNzZXMuc3BsaXQoJyAnKS5yZWR1Y2UoKG9iajogYW55LCBjbGFzc05hbWU6IHN0cmluZykgPT4ge1xuICAgICAgICAgICAgICAgIG9ialtjbGFzc05hbWVdID0gdHJ1ZTtcbiAgICAgICAgICAgICAgICByZXR1cm4gb2JqO1xuICAgICAgICAgICAgfSwge30pO1xuXG4gICAgICAgICAgICB0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuY2xhc3NOYW1lID0gJyc7XG4gICAgICAgICAgICB0aGlzLnNldFBvc2l0aW9uQ2xhc3NlcygpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLyoqIEV2ZW50byBlbWl0aWRvIHF1YW5kbyBvIHBvcG92ZXIgw6kgZmVjaGFkby4gKi9cbiAgICBAT3V0cHV0KCkgY2xvc2U6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcblxuICAgIEBWaWV3Q2hpbGQoVGVtcGxhdGVSZWYsIHsgc3RhdGljOiBmYWxzZSB9KSB0ZW1wbGF0ZVJlZjogVGVtcGxhdGVSZWY8YW55PjtcblxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYsIHB1YmxpYyB6b25lOiBOZ1pvbmUpIHtcbiAgICAgICAgdGhpcy5zZXRQb3NpdGlvbkNsYXNzZXMoKTtcbiAgICB9XG5cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHsgfVxuXG4gICAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgICAgIHRoaXMuX2VtaXRDbG9zZUV2ZW50KCk7XG4gICAgICAgIHRoaXMuY2xvc2UuY29tcGxldGUoKTtcbiAgICB9XG5cbiAgICAvKiogTWFuaXB1bGUgdW0gZXZlbnRvIGRlIHRlY2xhZG8gZG8gcG9wb3ZlciwgZGVsZWdhbmRvIHBhcmEgYSBhw6fDo28gYXByb3ByaWFkYS4gKi9cbiAgICBfaGFuZGxlS2V5ZG93bihldmVudDogS2V5Ym9hcmRFdmVudCk6IHZvaWQge1xuICAgICAgICBzd2l0Y2ggKGV2ZW50LmtleUNvZGUpIHtcbiAgICAgICAgICAgIGNhc2UgRVNDQVBFOiB7XG4gICAgICAgICAgICAgICAgdGhpcy5fZW1pdENsb3NlRXZlbnQoKTtcbiAgICAgICAgICAgICAgICByZXR1cm47XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvKiogSXNzbyBlbWl0ZSB1bSBldmVudG8gZGUgZmVjaGFtZW50byBubyBxdWFsIG8gYWNpb25hZG9yIGVzdMOhIGluc2NyaXRvLiBRdWFuZG8gZW1pdGlkbywgbyBnYXRpbGhvIGZlY2hhcsOhIG8gcG9wb3Zlci4gKi9cbiAgICBfZW1pdENsb3NlRXZlbnQoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuY2xvc2UuZW1pdCgpO1xuICAgIH1cblxuICAgIC8qKiBGZWNoYXIgcG9wb3ZlciBhbyBjbGljYXIgc2UgY2xvc2VPbkNsaWNrIGZvciB0cnVlICovXG4gICAgb25DbGljaygpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMuY2xvc2VPbkNsaWNrKSB7XG4gICAgICAgICAgICB0aGlzLl9lbWl0Q2xvc2VFdmVudCgpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLyoqIERlc2F0aXZhIG8gZmVjaGFtZW50byBkbyBwb3BvdmVyIGFvIHNhaXIgZG8gZWxlbWVudG8gZGUgZ2F0aWxobyBlIHBhc3NhciBvIG1vdXNlIHNvYnJlIG8gcG9wb3ZlciAqL1xuICAgIG9uTW91c2VPdmVyKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy50cmlnZ2VyRXZlbnQgPT09ICdob3ZlcicpIHtcbiAgICAgICAgICAgIHRoaXMuY2xvc2VEaXNhYmxlZCA9IHRydWU7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvKiogSGFiaWxpdGEgbyBmZWNoYW1lbnRvIGRvIHBvcG92ZXIgcXVhbmRvIG8gbW91c2Ugc2FpIGRvIGVsZW1lbnRvIHBvcG92ZXIgKi9cbiAgICBvbk1vdXNlTGVhdmUoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLnRyaWdnZXJFdmVudCA9PT0gJ2hvdmVyJykge1xuICAgICAgICAgICAgdGhpcy5jbG9zZURpc2FibGVkID0gZmFsc2U7XG4gICAgICAgICAgICB0aGlzLl9lbWl0Q2xvc2VFdmVudCgpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgLy8gVE9ETzogUmVmYXRvcmUgY29tbyBvcyBlc3RpbG9zIHPDo28gZGVmaW5pZG9zIGUgYXR1YWxpemFkb3Mgbm8gY29tcG9uZW50ZSwgdXNlIGFzIG1lbGhvcmVzIHByw6F0aWNhcy5cbiAgICAvLyBUT0RPOiBTZSBvIHBvc2ljaW9uYW1lbnRvIGRhIHNldGEgcGFyYSBhIGVzcXVlcmRhIGUgcGFyYSBhIGRpcmVpdGEgZm9yIHNvbGljaXRhZG8sIHZlamEgc2UgYSBkaXJlw6fDo28gZmxleMOtdmVsIHBvZGUgc2VyIHVzYWRhIHBhcmEgdHJhYmFsaGFyIGNvbSBhIG9yZGVtLlxuICAgIC8qKiBEZWZpbmUgb3MgZXN0aWxvcyBhdHVhaXMgcGFyYSBvIHBvcG92ZXIgcGFyYSBwZXJtaXRpciBhIGFsdGVyYcOnw6NvIGRpbsOibWljYSBkYXMgY29uZmlndXJhw6fDtWVzICovXG4gICAgc2V0Q3VycmVudFN0eWxlcygpOiB2b2lkIHtcblxuICAgICAgICAvLyBUT0RPOiBWZWphIHNlIGEgcG9zacOnw6NvIGRhIHNldGEgcG9kZSBzZXIgY2FsY3VsYWRhIGF1dG9tYXRpY2FtZW50ZSBlIHBlcm1pdGlyIGEgc3Vic3RpdHVpw6fDo28uXG4gICAgICAgIC8vIFRPRE86IFZlamEgc2UgYSBvcmRlbSBmbGV4w612ZWwgw6kgdW1hIGFsdGVybmF0aXZhIG1lbGhvciBwYXJhIHBvc2ljaW9uYXIgYSBzZXRhIHBhcmEgY2ltYSBvdSBwYXJhIGJhaXhvLlxuICAgICAgICB0aGlzLnBvcG92ZXJBcnJvd1N0eWxlcyA9IHtcbiAgICAgICAgICAgICdyaWdodCc6IHRoaXMucG9zaXRpb25YID09PSAnYmVmb3JlJyA/ICh0aGlzLmFycm93T2Zmc2V0WCAtIHRoaXMuYXJyb3dXaWR0aCkgKyAncHgnIDogJycsXG4gICAgICAgICAgICAnbGVmdCc6IHRoaXMucG9zaXRpb25YID09PSAnYWZ0ZXInID8gKHRoaXMuYXJyb3dPZmZzZXRYIC0gdGhpcy5hcnJvd1dpZHRoKSArICdweCcgOiAnJyxcbiAgICAgICAgICAgICdib3JkZXItdG9wJzogdGhpcy5wb3NpdGlvblkgPT09ICdiZWxvdycgPyB0aGlzLmFycm93V2lkdGggKyAncHggc29saWQgJyArIHRoaXMuYXJyb3dDb2xvciA6ICcwcHggc29saWQgdHJhbnNwYXJlbnQnLFxuICAgICAgICAgICAgJ2JvcmRlci1yaWdodCc6ICd1bmRlZmluZWQnID09PSB1bmRlZmluZWQgPyB0aGlzLmFycm93V2lkdGggKyAncHggc29saWQgJyArIHRoaXMuYXJyb3dDb2xvciA6IHRoaXMuYXJyb3dXaWR0aCArICdweCBzb2xpZCB0cmFuc3BhcmVudCcsXG4gICAgICAgICAgICAnYm9yZGVyLWJvdHRvbSc6IHRoaXMucG9zaXRpb25ZID09PSAnYWJvdmUnID8gdGhpcy5hcnJvd1dpZHRoICsgJ3B4IHNvbGlkICcgKyB0aGlzLmFycm93Q29sb3IgOiB0aGlzLmFycm93V2lkdGggKyAncHggc29saWQgdHJhbnNwYXJlbnQnLFxuICAgICAgICAgICAgJ2JvcmRlci1sZWZ0JzogJ3VuZGVmaW5lZCcgPT09IHVuZGVmaW5lZCA/IHRoaXMuYXJyb3dXaWR0aCArICdweCBzb2xpZCAnICsgdGhpcy5hcnJvd0NvbG9yIDogdGhpcy5hcnJvd1dpZHRoICsgJ3B4IHNvbGlkIHRyYW5zcGFyZW50JyxcbiAgICAgICAgfTtcblxuICAgICAgICAvLyBUT0RPOiBSZW1vdmEgc2UgYSBvcmRlbSBmbGV4w612ZWwgZm9yIGFkaWNpb25hZGEuXG4gICAgICAgIHRoaXMucG9wb3ZlckNvbnRlbnRTdHlsZXMgPSB7XG4gICAgICAgICAgICAncGFkZGluZy10b3AnOiB0aGlzLm92ZXJsYXBUcmlnZ2VyID09PSB0cnVlID8gJzBweCcgOiB0aGlzLmFycm93V2lkdGggKyAncHgnLFxuICAgICAgICAgICAgJ3BhZGRpbmctYm90dG9tJzogdGhpcy5vdmVybGFwVHJpZ2dlciA9PT0gdHJ1ZSA/ICcwcHgnIDogKHRoaXMuYXJyb3dXaWR0aCkgKyAncHgnLFxuICAgICAgICAgICAgJ21hcmdpbi10b3AnOiB0aGlzLm92ZXJsYXBUcmlnZ2VyID09PSBmYWxzZSAmJiB0aGlzLnBvc2l0aW9uWSA9PT0gJ2JlbG93JyAmJiB0aGlzLmNvbnRhaW5lclBvc2l0aW9uaW5nID09PSBmYWxzZSA/IC0odGhpcy5hcnJvd1dpZHRoICogMikgKyAncHgnIDogJzBweCdcbiAgICAgICAgfTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiDDiSBuZWNlc3PDoXJpbyBkZWZpbmlyIGNsYXNzZXMgYmFzZWFkYXMgZW0gcG9zacOnw6NvIHBhcmEgZ2FyYW50aXIgcXVlIGEgYW5pbWHDp8OjbyBkbyBwYWluZWwgcG9wb3ZlclxuICAgICAqIHNlIGV4cGFuZGEgbmEgZGlyZcOnw6NvIGNvcnJldGEuXG4gICAgICovXG4gICAgc2V0UG9zaXRpb25DbGFzc2VzKHBvc1g6IFBvcG92ZXJQb3NpdGlvblggPSB0aGlzLnBvc2l0aW9uWCwgcG9zWTogUG9wb3ZlclBvc2l0aW9uWSA9IHRoaXMucG9zaXRpb25ZKTogdm9pZCB7XG4gICAgICAgIHRoaXMuX2NsYXNzTGlzdFsncG9wb3Zlci1iZWZvcmUnXSA9IHBvc1ggPT09ICdiZWZvcmUnO1xuICAgICAgICB0aGlzLl9jbGFzc0xpc3RbJ3BvcG92ZXItYWZ0ZXInXSA9IHBvc1ggPT09ICdhZnRlcic7XG4gICAgICAgIHRoaXMuX2NsYXNzTGlzdFsncG9wb3Zlci1hYm92ZSddID0gcG9zWSA9PT0gJ2Fib3ZlJztcbiAgICAgICAgdGhpcy5fY2xhc3NMaXN0Wydwb3BvdmVyLWJlbG93J10gPSBwb3NZID09PSAnYmVsb3cnO1xuICAgIH1cblxufVxuIl19
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { trigger, state, style, animate, transition, } from '@angular/animations';
|
2
|
+
/**
|
3
|
+
* Abaixo estão todas as animações para o componente popover.
|
4
|
+
* A duração da animação e os valores de tempo são baseados no Angular Material.
|
5
|
+
*/
|
6
|
+
/**
|
7
|
+
* Esta animação controla a entrada e saída do painel popover da página.
|
8
|
+
*
|
9
|
+
* Quando o painel popover é adicionado ao DOM, ele é dimensionado e esmaecido em sua borda.
|
10
|
+
*
|
11
|
+
* Quando o painel popover é removido do DOM, ele simplesmente desaparece após um breve atraso para exibir a ondulação.
|
12
|
+
*/
|
13
|
+
export var transformPopover = trigger('transformPopover', [
|
14
|
+
state('enter', style({
|
15
|
+
opacity: 1,
|
16
|
+
transform: "scale(1)"
|
17
|
+
})),
|
18
|
+
transition('void => *', [
|
19
|
+
style({
|
20
|
+
opacity: 0,
|
21
|
+
transform: "scale(0)"
|
22
|
+
}),
|
23
|
+
animate("200ms cubic-bezier(0.25, 0.8, 0.25, 1)")
|
24
|
+
]),
|
25
|
+
transition('* => void', [
|
26
|
+
animate('50ms 100ms linear', style({ opacity: 0 }))
|
27
|
+
])
|
28
|
+
]);
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9wb3Zlci1hbmltYXRpb25zLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsic2hhcmVkL2dpcGktY29tcG9uZW50cy9wb3BvdmVyL3NoYXJlZC9wb3BvdmVyLWFuaW1hdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLE9BQU8sRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLE9BQU8sRUFBRSxVQUFVLEdBQTZCLE1BQU0scUJBQXFCLENBQUM7QUFFNUc7OztHQUdHO0FBRUg7Ozs7OztHQU1HO0FBRUgsTUFBTSxDQUFDLElBQU0sZ0JBQWdCLEdBQTZCLE9BQU8sQ0FBQyxrQkFBa0IsRUFBRTtJQUNsRixLQUFLLENBQUMsT0FBTyxFQUFFLEtBQUssQ0FBQztRQUNqQixPQUFPLEVBQUUsQ0FBQztRQUNWLFNBQVMsRUFBRSxVQUFVO0tBQ3hCLENBQUMsQ0FBQztJQUNILFVBQVUsQ0FBQyxXQUFXLEVBQUU7UUFDcEIsS0FBSyxDQUFDO1lBQ0YsT0FBTyxFQUFFLENBQUM7WUFDVixTQUFTLEVBQUUsVUFBVTtTQUN4QixDQUFDO1FBQ0YsT0FBTyxDQUFDLHdDQUF3QyxDQUFDO0tBQ3BELENBQUM7SUFDRixVQUFVLENBQUMsV0FBVyxFQUFFO1FBQ3BCLE9BQU8sQ0FBQyxtQkFBbUIsRUFBRSxLQUFLLENBQUMsRUFBRSxPQUFPLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQztLQUN0RCxDQUFDO0NBQ0wsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgdHJpZ2dlciwgc3RhdGUsIHN0eWxlLCBhbmltYXRlLCB0cmFuc2l0aW9uLCBBbmltYXRpb25UcmlnZ2VyTWV0YWRhdGEsIH0gZnJvbSAnQGFuZ3VsYXIvYW5pbWF0aW9ucyc7XG5cbi8qKlxuICogQWJhaXhvIGVzdMOjbyB0b2RhcyBhcyBhbmltYcOnw7VlcyBwYXJhIG8gY29tcG9uZW50ZSBwb3BvdmVyLlxuICogQSBkdXJhw6fDo28gZGEgYW5pbWHDp8OjbyBlIG9zIHZhbG9yZXMgZGUgdGVtcG8gc8OjbyBiYXNlYWRvcyBubyBBbmd1bGFyIE1hdGVyaWFsLlxuICovXG5cbi8qKlxuICogRXN0YSBhbmltYcOnw6NvIGNvbnRyb2xhIGEgZW50cmFkYSBlIHNhw61kYSBkbyBwYWluZWwgcG9wb3ZlciBkYSBww6FnaW5hLlxuICpcbiAqIFF1YW5kbyBvIHBhaW5lbCBwb3BvdmVyIMOpIGFkaWNpb25hZG8gYW8gRE9NLCBlbGUgw6kgZGltZW5zaW9uYWRvIGUgZXNtYWVjaWRvIGVtIHN1YSBib3JkYS5cbiAqXG4gKiBRdWFuZG8gbyBwYWluZWwgcG9wb3ZlciDDqSByZW1vdmlkbyBkbyBET00sIGVsZSBzaW1wbGVzbWVudGUgZGVzYXBhcmVjZSBhcMOzcyB1bSBicmV2ZSBhdHJhc28gcGFyYSBleGliaXIgYSBvbmR1bGHDp8Ojby5cbiAqL1xuXG5leHBvcnQgY29uc3QgdHJhbnNmb3JtUG9wb3ZlcjogQW5pbWF0aW9uVHJpZ2dlck1ldGFkYXRhID0gdHJpZ2dlcigndHJhbnNmb3JtUG9wb3ZlcicsIFtcbiAgICBzdGF0ZSgnZW50ZXInLCBzdHlsZSh7XG4gICAgICAgIG9wYWNpdHk6IDEsXG4gICAgICAgIHRyYW5zZm9ybTogYHNjYWxlKDEpYFxuICAgIH0pKSxcbiAgICB0cmFuc2l0aW9uKCd2b2lkID0+IConLCBbXG4gICAgICAgIHN0eWxlKHtcbiAgICAgICAgICAgIG9wYWNpdHk6IDAsXG4gICAgICAgICAgICB0cmFuc2Zvcm06IGBzY2FsZSgwKWBcbiAgICAgICAgfSksXG4gICAgICAgIGFuaW1hdGUoYDIwMG1zIGN1YmljLWJlemllcigwLjI1LCAwLjgsIDAuMjUsIDEpYClcbiAgICBdKSxcbiAgICB0cmFuc2l0aW9uKCcqID0+IHZvaWQnLCBbXG4gICAgICAgIGFuaW1hdGUoJzUwbXMgMTAwbXMgbGluZWFyJywgc3R5bGUoeyBvcGFjaXR5OiAwIH0pKVxuICAgIF0pXG5dKTtcbiJdfQ==
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/**
|
2
|
+
* Lança uma exceção para o caso em que o gatilho popover não possui uma instância popover válida
|
3
|
+
*/
|
4
|
+
export function throwPopoverMissingError() {
|
5
|
+
throw Error("popover-trigger: deve passar em uma inst\u00E2ncia popover.\n\n Example:\n <gipi-popover #popover=\"popover\"> </gipi-popover>\n <button [popoverTriggerFor]=\"popover\"> </button>");
|
6
|
+
}
|
7
|
+
/**
|
8
|
+
* Lança uma exceção para o caso em que o valor popoverPositionX do popover não é válido.
|
9
|
+
* Em outras palavras, não corresponde a 'before' ou 'after'.
|
10
|
+
*/
|
11
|
+
export function throwPopoverInvalidPositionX() {
|
12
|
+
throw Error("O valor popoverPositionX deve ser 'before' ou after'.\n Example: <gipi-popover popoverPositionX=\"before\" #popover=\"popover\"> </gipi-popover>");
|
13
|
+
}
|
14
|
+
/**
|
15
|
+
* Lança uma exceção para o caso em que o valor popoverPositionY do popover não é válido.
|
16
|
+
* Em outras palavras, não corresponde a 'above' ou 'below'.
|
17
|
+
*/
|
18
|
+
export function throwPopoverInvalidPositionY() {
|
19
|
+
throw Error("O valor popoverPositionY deve ser 'above' ou below'.\n Example: <gipi-popover popoverPositionY=\"above\" #popover=\"popover\"> </gipi-popover>");
|
20
|
+
}
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9wb3Zlci1lcnJvcnMuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJzaGFyZWQvZ2lwaS1jb21wb25lbnRzL3BvcG92ZXIvc2hhcmVkL3BvcG92ZXItZXJyb3JzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxVQUFVLHdCQUF3QjtJQUNwQyxNQUFNLEtBQUssQ0FBQyxrTUFJdUMsQ0FBQyxDQUFDO0FBQ3pELENBQUM7QUFFRDs7O0dBR0c7QUFDSCxNQUFNLFVBQVUsNEJBQTRCO0lBQ3hDLE1BQU0sS0FBSyxDQUFDLHVKQUMyRSxDQUFDLENBQUM7QUFDN0YsQ0FBQztBQUVEOzs7R0FHRztBQUNILE1BQU0sVUFBVSw0QkFBNEI7SUFDeEMsTUFBTSxLQUFLLENBQUMscUpBQzBFLENBQUMsQ0FBQztBQUM1RixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBMYW7Dp2EgdW1hIGV4Y2XDp8OjbyBwYXJhIG8gY2FzbyBlbSBxdWUgbyBnYXRpbGhvIHBvcG92ZXIgbsOjbyBwb3NzdWkgdW1hIGluc3TDom5jaWEgcG9wb3ZlciB2w6FsaWRhXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiB0aHJvd1BvcG92ZXJNaXNzaW5nRXJyb3IoKSB7XG4gICAgdGhyb3cgRXJyb3IoYHBvcG92ZXItdHJpZ2dlcjogZGV2ZSBwYXNzYXIgZW0gdW1hIGluc3TDom5jaWEgcG9wb3Zlci5cblxuICAgIEV4YW1wbGU6XG4gICAgICA8Z2lwaS1wb3BvdmVyICNwb3BvdmVyPVwicG9wb3ZlclwiPiA8L2dpcGktcG9wb3Zlcj5cbiAgICAgIDxidXR0b24gW3BvcG92ZXJUcmlnZ2VyRm9yXT1cInBvcG92ZXJcIj4gPC9idXR0b24+YCk7XG59XG5cbi8qKlxuICogTGFuw6dhIHVtYSBleGNlw6fDo28gcGFyYSBvIGNhc28gZW0gcXVlIG8gdmFsb3IgcG9wb3ZlclBvc2l0aW9uWCBkbyBwb3BvdmVyIG7Do28gw6kgdsOhbGlkby5cbiAqIEVtIG91dHJhcyBwYWxhdnJhcywgbsOjbyBjb3JyZXNwb25kZSBhICdiZWZvcmUnIG91ICdhZnRlcicuXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiB0aHJvd1BvcG92ZXJJbnZhbGlkUG9zaXRpb25YKCkge1xuICAgIHRocm93IEVycm9yKGBPIHZhbG9yIHBvcG92ZXJQb3NpdGlvblggZGV2ZSBzZXIgJ2JlZm9yZScgb3UgYWZ0ZXInLlxuICAgICAgRXhhbXBsZTogPGdpcGktcG9wb3ZlciBwb3BvdmVyUG9zaXRpb25YPVwiYmVmb3JlXCIgI3BvcG92ZXI9XCJwb3BvdmVyXCI+IDwvZ2lwaS1wb3BvdmVyPmApO1xufVxuXG4vKipcbiAqIExhbsOnYSB1bWEgZXhjZcOnw6NvIHBhcmEgbyBjYXNvIGVtIHF1ZSBvIHZhbG9yIHBvcG92ZXJQb3NpdGlvblkgZG8gcG9wb3ZlciBuw6NvIMOpIHbDoWxpZG8uXG4gKiBFbSBvdXRyYXMgcGFsYXZyYXMsIG7Do28gY29ycmVzcG9uZGUgYSAnYWJvdmUnIG91ICdiZWxvdycuXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiB0aHJvd1BvcG92ZXJJbnZhbGlkUG9zaXRpb25ZKCkge1xuICAgIHRocm93IEVycm9yKGBPIHZhbG9yIHBvcG92ZXJQb3NpdGlvblkgZGV2ZSBzZXIgJ2Fib3ZlJyBvdSBiZWxvdycuXG4gICAgICBFeGFtcGxlOiA8Z2lwaS1wb3BvdmVyIHBvcG92ZXJQb3NpdGlvblk9XCJhYm92ZVwiICNwb3BvdmVyPVwicG9wb3ZlclwiPiA8L2dpcGktcG9wb3Zlcj5gKTtcbn1cbiJdfQ==
|
@@ -0,0 +1 @@
|
|
1
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9wb3Zlci1pbnRlcmZhY2VzLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGdpcGlzaXN0ZW1hcy9uZy1jb3JlLyIsInNvdXJjZXMiOlsic2hhcmVkL2dpcGktY29tcG9uZW50cy9wb3BvdmVyL3NoYXJlZC9wb3BvdmVyLWludGVyZmFjZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgTmdab25lLCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUG9wb3ZlclBvc2l0aW9uWCwgUG9wb3ZlclBvc2l0aW9uWSwgUG9wb3ZlclNjcm9sbFN0cmF0ZWd5LCBQb3BvdmVyVHJpZ2dlckV2ZW50IH0gZnJvbSAnLi9wb3BvdmVyLXR5cGVzJztcblxuZXhwb3J0IGludGVyZmFjZSBQb3BvdmVyUGFuZWwge1xuICAgIHBvcG92ZXJXaWR0aDogc3RyaW5nO1xuICAgIHBvc2l0aW9uWDogUG9wb3ZlclBvc2l0aW9uWDtcbiAgICBwb3NpdGlvblk6IFBvcG92ZXJQb3NpdGlvblk7XG4gICAgY29udGFpbmVyUG9zaXRpb25pbmc6IGJvb2xlYW47XG4gICAgb3ZlcmxhcFRyaWdnZXI6IGJvb2xlYW47XG4gICAgdHJpZ2dlckV2ZW50OiBQb3BvdmVyVHJpZ2dlckV2ZW50O1xuICAgIHNjcm9sbFN0cmF0ZWd5OiBQb3BvdmVyU2Nyb2xsU3RyYXRlZ3k7XG4gICAgZW50ZXJEZWxheTogbnVtYmVyO1xuICAgIGxlYXZlRGVsYXk6IG51bWJlcjtcbiAgICB0YXJnZXRPZmZzZXRYOiBudW1iZXI7XG4gICAgdGFyZ2V0T2Zmc2V0WTogbnVtYmVyO1xuICAgIGFycm93T2Zmc2V0WDogbnVtYmVyO1xuICAgIGFycm93V2lkdGg6IG51bWJlcjtcbiAgICBhcnJvd0NvbG9yOiBzdHJpbmc7XG4gICAgY2xvc2VPbkNsaWNrOiBib29sZWFuO1xuICAgIGNsb3NlRGlzYWJsZWQ6IGJvb2xlYW47XG4gICAgc2V0Q3VycmVudFN0eWxlczogKCkgPT4gdm9pZDtcbiAgICB0ZW1wbGF0ZVJlZjogVGVtcGxhdGVSZWY8YW55PjtcbiAgICBjbG9zZTogRXZlbnRFbWl0dGVyPHZvaWQ+O1xuICAgIHpvbmU6IE5nWm9uZTtcbiAgICBzZXRQb3NpdGlvbkNsYXNzZXM6ICh4OiBQb3BvdmVyUG9zaXRpb25YLCB5OiBQb3BvdmVyUG9zaXRpb25ZKSA9PiB2b2lkO1xuICAgIF9lbWl0Q2xvc2VFdmVudDogKCkgPT4gdm9pZDtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBQb3BvdmVyQ29uZmlnIHtcbiAgICBwb3BvdmVyV2lkdGg6IHN0cmluZztcbiAgICBwb3NpdGlvblg6IFBvcG92ZXJQb3NpdGlvblg7XG4gICAgcG9zaXRpb25ZOiBQb3BvdmVyUG9zaXRpb25ZO1xuICAgIG92ZXJsYXBUcmlnZ2VyOiBib29sZWFuO1xuICAgIHRyaWdnZXJFdmVudDogUG9wb3ZlclRyaWdnZXJFdmVudDtcbiAgICB0cmlnZ2VyRGVsYXk6IG51bWJlcjtcbiAgICB0YXJnZXRPZmZzZXRYOiBudW1iZXI7XG4gICAgdGFyZ2V0T2Zmc2V0WTogbnVtYmVyO1xuICAgIGFycm93T2Zmc2V0WDogbnVtYmVyO1xuICAgIGFycm93V2lkdGg6IG51bWJlcjtcbiAgICBhcnJvd0NvbG9yOiBzdHJpbmc7XG4gICAgY2xvc2VPbkNsaWNrOiBib29sZWFuO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFRhcmdldCB7XG4gICAgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWY7XG59XG4iXX0=
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
2
|
+
import { Directive, ElementRef } from '@angular/core';
|
3
|
+
var GIPIPopoverTarget = /** @class */ (function () {
|
4
|
+
function GIPIPopoverTarget(_elementRef) {
|
5
|
+
this._elementRef = _elementRef;
|
6
|
+
}
|
7
|
+
GIPIPopoverTarget.ctorParameters = function () { return [
|
8
|
+
{ type: ElementRef }
|
9
|
+
]; };
|
10
|
+
GIPIPopoverTarget = __decorate([
|
11
|
+
Directive({
|
12
|
+
selector: 'popover-target, [popoverTarget]',
|
13
|
+
exportAs: 'popoverTarget'
|
14
|
+
}),
|
15
|
+
__metadata("design:paramtypes", [ElementRef])
|
16
|
+
], GIPIPopoverTarget);
|
17
|
+
return GIPIPopoverTarget;
|
18
|
+
}());
|
19
|
+
export { GIPIPopoverTarget };
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9wb3Zlci10YXJnZXQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZ2lwaXNpc3RlbWFzL25nLWNvcmUvIiwic291cmNlcyI6WyJzaGFyZWQvZ2lwaS1jb21wb25lbnRzL3BvcG92ZXIvc2hhcmVkL3BvcG92ZXItdGFyZ2V0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQU10RDtJQUNJLDJCQUFtQixXQUF1QjtRQUF2QixnQkFBVyxHQUFYLFdBQVcsQ0FBWTtJQUFJLENBQUM7O2dCQUFmLFVBQVU7O0lBRGpDLGlCQUFpQjtRQUo3QixTQUFTLENBQUM7WUFDUCxRQUFRLEVBQUUsaUNBQWlDO1lBQzNDLFFBQVEsRUFBRSxlQUFlO1NBQzVCLENBQUM7eUNBRWtDLFVBQVU7T0FEakMsaUJBQWlCLENBRTdCO0lBQUQsd0JBQUM7Q0FBQSxBQUZELElBRUM7U0FGWSxpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdwb3BvdmVyLXRhcmdldCwgW3BvcG92ZXJUYXJnZXRdJyxcbiAgICBleHBvcnRBczogJ3BvcG92ZXJUYXJnZXQnXG59KVxuZXhwb3J0IGNsYXNzIEdJUElQb3BvdmVyVGFyZ2V0IHtcbiAgICBjb25zdHJ1Y3RvcihwdWJsaWMgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYpIHsgfVxufVxuIl19
|