@gipisistemas/ng-core 1.0.67 → 1.0.68
Sign up to get free protection for your applications and to get access to all the features.
- package/assets/styles/colors.scss +261 -0
- package/assets/styles/layout-grid.scss +146 -0
- package/assets/styles/styles.scss +149 -0
- package/assets/styles/theme.scss +22 -0
- package/assets/styles/typography.scss +54 -0
- package/assets/styles/variable.scss +41 -0
- package/bundles/gipisistemas-ng-core.umd.js +28311 -0
- package/bundles/gipisistemas-ng-core.umd.js.map +1 -0
- package/bundles/gipisistemas-ng-core.umd.min.js +66 -0
- package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -0
- package/core/app-messages.d.ts +9 -0
- package/core/app.messages.d.ts +4 -0
- package/core/components/abstract-crud.component.d.ts +27 -0
- package/core/components/abstract-find.component.d.ts +43 -0
- package/core/components/abstract.component.d.ts +23 -0
- package/core/components/alert/alert.component.d.ts +7 -0
- package/core/core.module.d.ts +17 -0
- package/core/custom-breakpoints.d.ts +7 -0
- package/core/enums/local-time.enum.d.ts +5 -0
- package/core/extensions/string.extension.d.ts +3 -0
- package/core/gipi-components/components/abstract-crud.component.d.ts +25 -0
- package/core/gipi-components/components/abstract-find.component.d.ts +73 -0
- package/core/gipi-components/components/abstract.component.d.ts +38 -0
- package/core/gipi-components/decorators/autowired.decorator.d.ts +7 -0
- package/core/gipi-components/enums/sort-direction.enum.d.ts +5 -0
- package/core/gipi-components/interface/abstract-crud.interface.d.ts +5 -0
- package/core/gipi-components/interface/abstract-find.interface.d.ts +12 -0
- package/core/gipi-components/interface/abstract.interface.d.ts +11 -0
- package/core/gipi-components/interface/base-permission.interface.d.ts +9 -0
- package/core/gipi-components/models/abstract-filter.model.d.ts +9 -0
- package/core/gipi-components/models/abstract.model.d.ts +7 -0
- package/core/gipi-components/models/applied-filter.model.d.ts +9 -0
- package/core/gipi-components/models/dto/abstract.dto.d.ts +7 -0
- package/core/gipi-components/models/page-event.model.d.ts +18 -0
- package/core/gipi-components/models/page.model.d.ts +7 -0
- package/core/gipi-components/models/sort.model.d.ts +6 -0
- package/core/gipi-components/services/abstract-crud.service.d.ts +83 -0
- package/core/gipi-components/services/abstract.service.d.ts +19 -0
- package/core/gipi-components/services/base.service.d.ts +35 -0
- package/core/gipi-components/services/file.service.d.ts +6 -0
- package/core/gipi-components/services/session-storage.service.d.ts +8 -0
- package/core/gipi-components/types/generic.type.d.ts +1 -0
- package/core/gipi-components/types/uuid.type.d.ts +1 -0
- package/core/guards/auth.guard.d.ts +11 -0
- package/core/guards/permission.guard.d.ts +14 -0
- package/core/guards/public.guard.d.ts +11 -0
- package/core/interceptors/auth.interceptor.d.ts +9 -0
- package/core/interceptors/error.interceptor.d.ts +11 -0
- package/core/models/abstract.model.d.ts +3 -0
- package/core/models/archive.model.d.ts +4 -0
- package/core/models/authority.model.d.ts +3 -0
- package/core/models/base-user.model.d.ts +12 -0
- package/core/models/dto/abstract.dto.d.ts +2 -0
- package/core/models/dto/api-error.dto.d.ts +9 -0
- package/core/models/dto/api-sub-error.dto.d.ts +7 -0
- package/core/models/dto/chart.dto.d.ts +5 -0
- package/core/models/dto/confirmation.dto.d.ts +10 -0
- package/core/models/dto/dialog.dto.d.ts +36 -0
- package/core/models/dto/filter.dto.d.ts +8 -0
- package/core/models/dto/input-listbox.dto.d.ts +6 -0
- package/core/models/dto/menu.dto.d.ts +15 -0
- package/core/models/dto/message.dto.d.ts +7 -0
- package/core/models/dto/page.dto.d.ts +8 -0
- package/core/models/dto/sort.dto.d.ts +7 -0
- package/core/models/dto/tab.dto.d.ts +12 -0
- package/core/models/dto/table-column.dto.d.ts +21 -0
- package/core/models/dto/table-group-header.dto.d.ts +7 -0
- package/core/models/dto/table-page-event.dto.d.ts +6 -0
- package/core/models/dto/token.dto.d.ts +8 -0
- package/core/models/enums/criteria-operation.enum.d.ts +13 -0
- package/core/models/enums/criteria-sort-direction.enum.d.ts +4 -0
- package/core/models/enums/menu-type.enum.d.ts +6 -0
- package/core/models/enums/radio-button.enum.d.ts +6 -0
- package/core/models/enums/sort-direction.enum.d.ts +4 -0
- package/core/models/multitenant.model.d.ts +4 -0
- package/core/models/permission.model.d.ts +8 -0
- package/core/models/role.model.d.ts +7 -0
- package/core/pipes/local-time.pipe.d.ts +6 -0
- package/core/services/abstract-crud.service.d.ts +15 -0
- package/core/services/abstract-find.service.d.ts +30 -0
- package/core/services/abstract.service.d.ts +13 -0
- package/core/services/authentication.service.d.ts +23 -0
- package/core/services/breakpoint-observer.service.d.ts +9 -0
- package/core/services/confirmation.service.d.ts +8 -0
- package/core/services/dialog.service.d.ts +8 -0
- package/core/services/message.service.d.ts +8 -0
- package/core/services/nav.service.d.ts +16 -0
- package/core/services/svg-register.service.d.ts +22 -0
- package/core/types/local-time.type.d.ts +5 -0
- package/core/types/ng-class.type.d.ts +10 -0
- package/core/utils/array.util.d.ts +14 -0
- package/core/utils/browser.util.d.ts +4 -0
- package/core/utils/currency.util.d.ts +6 -0
- package/core/utils/date.util.d.ts +39 -0
- package/core/utils/document.util.d.ts +11 -0
- package/core/utils/email.util.d.ts +4 -0
- package/core/utils/number.util.d.ts +8 -0
- package/core/utils/object.util.d.ts +20 -0
- package/core/utils/password.util.d.ts +11 -0
- package/core/utils/phone.util.d.ts +13 -0
- package/core/utils/string.util.d.ts +9 -0
- package/core/utils/table-column-builder.d.ts +40 -0
- package/core/utils/time.util.d.ts +9 -0
- package/core/utils/url-params.util.d.ts +7 -0
- package/core/utils/uuid.util.d.ts +5 -0
- package/core/utils/zindex.util.d.ts +7 -0
- package/core.d.ts +88 -0
- package/esm2015/core/app-messages.js +1 -0
- package/esm2015/core/app.messages.js +12 -0
- package/esm2015/core/components/abstract-crud.component.js +97 -0
- package/esm2015/core/components/abstract-find.component.js +189 -0
- package/esm2015/core/components/abstract.component.js +110 -0
- package/esm2015/core/components/alert/alert.component.js +24 -0
- package/esm2015/core/core.module.js +103 -0
- package/esm2015/core/custom-breakpoints.js +87 -0
- package/esm2015/core/enums/local-time.enum.js +6 -0
- package/esm2015/core/extensions/string.extension.js +37 -0
- package/esm2015/core/gipi-components/components/abstract-crud.component.js +110 -0
- package/esm2015/core/gipi-components/components/abstract-find.component.js +471 -0
- package/esm2015/core/gipi-components/components/abstract.component.js +140 -0
- package/esm2015/core/gipi-components/decorators/autowired.decorator.js +47 -0
- package/esm2015/core/gipi-components/enums/sort-direction.enum.js +6 -0
- package/esm2015/core/gipi-components/interface/abstract-crud.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/abstract-find.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/abstract.interface.js +1 -0
- package/esm2015/core/gipi-components/interface/base-permission.interface.js +1 -0
- package/esm2015/core/gipi-components/models/abstract-filter.model.js +3 -0
- package/esm2015/core/gipi-components/models/abstract.model.js +3 -0
- package/esm2015/core/gipi-components/models/applied-filter.model.js +19 -0
- package/esm2015/core/gipi-components/models/dto/abstract.dto.js +3 -0
- package/esm2015/core/gipi-components/models/page-event.model.js +35 -0
- package/esm2015/core/gipi-components/models/page.model.js +7 -0
- package/esm2015/core/gipi-components/models/sort.model.js +7 -0
- package/esm2015/core/gipi-components/services/abstract-crud.service.js +109 -0
- package/esm2015/core/gipi-components/services/abstract.service.js +47 -0
- package/esm2015/core/gipi-components/services/base.service.js +102 -0
- package/esm2015/core/gipi-components/services/file.service.js +51 -0
- package/esm2015/core/gipi-components/services/session-storage.service.js +44 -0
- package/esm2015/core/gipi-components/types/generic.type.js +1 -0
- package/esm2015/core/gipi-components/types/uuid.type.js +1 -0
- package/esm2015/core/guards/auth.guard.js +48 -0
- package/esm2015/core/guards/permission.guard.js +61 -0
- package/esm2015/core/guards/public.guard.js +45 -0
- package/esm2015/core/interceptors/auth.interceptor.js +28 -0
- package/esm2015/core/interceptors/error.interceptor.js +110 -0
- package/esm2015/core/models/abstract.model.js +3 -0
- package/esm2015/core/models/archive.model.js +3 -0
- package/esm2015/core/models/authority.model.js +3 -0
- package/esm2015/core/models/base-user.model.js +8 -0
- package/esm2015/core/models/dto/abstract.dto.js +3 -0
- package/esm2015/core/models/dto/api-error.dto.js +8 -0
- package/esm2015/core/models/dto/api-sub-error.dto.js +4 -0
- package/esm2015/core/models/dto/chart.dto.js +4 -0
- package/esm2015/core/models/dto/confirmation.dto.js +8 -0
- package/esm2015/core/models/dto/dialog.dto.js +4 -0
- package/esm2015/core/models/dto/filter.dto.js +4 -0
- package/esm2015/core/models/dto/input-listbox.dto.js +7 -0
- package/esm2015/core/models/dto/menu.dto.js +9 -0
- package/esm2015/core/models/dto/message.dto.js +4 -0
- package/esm2015/core/models/dto/page.dto.js +9 -0
- package/esm2015/core/models/dto/sort.dto.js +9 -0
- package/esm2015/core/models/dto/tab.dto.js +10 -0
- package/esm2015/core/models/dto/table-column.dto.js +24 -0
- package/esm2015/core/models/dto/table-group-header.dto.js +10 -0
- package/esm2015/core/models/dto/table-page-event.dto.js +7 -0
- package/esm2015/core/models/dto/token.dto.js +4 -0
- package/esm2015/core/models/enums/criteria-operation.enum.js +15 -0
- package/esm2015/core/models/enums/criteria-sort-direction.enum.js +6 -0
- package/esm2015/core/models/enums/menu-type.enum.js +7 -0
- package/esm2015/core/models/enums/radio-button.enum.js +8 -0
- package/esm2015/core/models/enums/sort-direction.enum.js +6 -0
- package/esm2015/core/models/multitenant.model.js +4 -0
- package/esm2015/core/models/permission.model.js +11 -0
- package/esm2015/core/models/role.model.js +8 -0
- package/esm2015/core/pipes/local-time.pipe.js +21 -0
- package/esm2015/core/services/abstract-crud.service.js +24 -0
- package/esm2015/core/services/abstract-find.service.js +65 -0
- package/esm2015/core/services/abstract.service.js +30 -0
- package/esm2015/core/services/authentication.service.js +100 -0
- package/esm2015/core/services/breakpoint-observer.service.js +42 -0
- package/esm2015/core/services/confirmation.service.js +55 -0
- package/esm2015/core/services/dialog.service.js +41 -0
- package/esm2015/core/services/message.service.js +33 -0
- package/esm2015/core/services/nav.service.js +48 -0
- package/esm2015/core/services/svg-register.service.js +55 -0
- package/esm2015/core/types/local-time.type.js +1 -0
- package/esm2015/core/types/ng-class.type.js +1 -0
- package/esm2015/core/utils/array.util.js +110 -0
- package/esm2015/core/utils/browser.util.js +13 -0
- package/esm2015/core/utils/currency.util.js +21 -0
- package/esm2015/core/utils/date.util.js +257 -0
- package/esm2015/core/utils/document.util.js +153 -0
- package/esm2015/core/utils/email.util.js +25 -0
- package/esm2015/core/utils/number.util.js +28 -0
- package/esm2015/core/utils/object.util.js +199 -0
- package/esm2015/core/utils/password.util.js +38 -0
- package/esm2015/core/utils/phone.util.js +125 -0
- package/esm2015/core/utils/string.util.js +40 -0
- package/esm2015/core/utils/table-column-builder.js +85 -0
- package/esm2015/core/utils/time.util.js +59 -0
- package/esm2015/core/utils/url-params.util.js +12 -0
- package/esm2015/core/utils/uuid.util.js +17 -0
- package/esm2015/core/utils/zindex.util.js +35 -0
- package/esm2015/core.js +89 -0
- package/esm2015/gipi-components.js +105 -0
- package/esm2015/gipisistemas-ng-core.js +21 -0
- package/esm2015/public_api.js +4 -0
- package/esm2015/shared/api/generate-id-component.js +12 -0
- package/esm2015/shared/api/gipi-ng-config.js +76 -0
- package/esm2015/shared/api/overlay-message.js +1 -0
- package/esm2015/shared/api/throttle.js +60 -0
- package/esm2015/shared/api/translation.js +1 -0
- package/esm2015/shared/components/button/button.component.js +110 -0
- package/esm2015/shared/components/card/card.component.js +44 -0
- package/esm2015/shared/components/checkbox/checkbox.component.js +79 -0
- package/esm2015/shared/components/dom/connected-overlay-scroll-handler.js +27 -0
- package/esm2015/shared/components/dom/dom-handler.js +538 -0
- package/esm2015/shared/components/icon/icon.component.js +35 -0
- package/esm2015/shared/components/input/input.component.js +235 -0
- package/esm2015/shared/components/input-currency/input-currency.component.js +115 -0
- package/esm2015/shared/components/input-file/input-file.component.js +161 -0
- package/esm2015/shared/components/loading/loading.component.js +15 -0
- package/esm2015/shared/components/loading-overlay/loading-overlay.component.js +21 -0
- package/esm2015/shared/components/overlay-panel/overlay-panel.component.js +361 -0
- package/esm2015/shared/components/popover/popover-ref.js +25 -0
- package/esm2015/shared/components/popover/popover.component.js +34 -0
- package/esm2015/shared/components/popover/popover.service.js +85 -0
- package/esm2015/shared/components/radio-group-entity/radio-group-entity.component.js +74 -0
- package/esm2015/shared/components/radio-group-enum/radio-group-enum.component.js +126 -0
- package/esm2015/shared/components/select-button/select-button.component.js +181 -0
- package/esm2015/shared/components/select-entity/select-entity.component.js +262 -0
- package/esm2015/shared/components/select-entity-paged/select-entity-paged.component.js +419 -0
- package/esm2015/shared/components/select-entity-paged/shared/default-options.js +35 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.js +69 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.js +59 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-no-entries-found.directive.js +20 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-search/select-search.component.js +547 -0
- package/esm2015/shared/components/select-entity-paged/shared/select-search-clear.directive.js +18 -0
- package/esm2015/shared/components/select-enum/select-enum.component.js +117 -0
- package/esm2015/shared/components/select-month-period/select-month-period.component.js +87 -0
- package/esm2015/shared/components/slide-toggle/slide-toggle.component.js +75 -0
- package/esm2015/shared/components/stepper/stepper.component.js +32 -0
- package/esm2015/shared/components/tab/tab.component.js +57 -0
- package/esm2015/shared/components/tab-group/tab-group.component.js +117 -0
- package/esm2015/shared/components/table/table.component.js +523 -0
- package/esm2015/shared/components/table-scrolled/table-scrolled.component.js +105 -0
- package/esm2015/shared/components/textarea/textarea.component.js +156 -0
- package/esm2015/shared/directives/dynamic-tab.directive.js +18 -0
- package/esm2015/shared/directives/generic-template.directive.js +30 -0
- package/esm2015/shared/directives/input-select-infinite-scroll.directive.js +109 -0
- package/esm2015/shared/directives/lower-case.directive.js +47 -0
- package/esm2015/shared/directives/phone-mask.directive.js +60 -0
- package/esm2015/shared/directives/space-drop.directive.js +47 -0
- package/esm2015/shared/directives/upper-case.directive.js +47 -0
- package/esm2015/shared/gipi-components/abstract-form/abstract-form.component.js +119 -0
- package/esm2015/shared/gipi-components/action-row/action-row.component.js +30 -0
- package/esm2015/shared/gipi-components/badge/badge.component.js +44 -0
- package/esm2015/shared/gipi-components/button/button.component.js +251 -0
- package/esm2015/shared/gipi-components/chips/chips.component.js +149 -0
- package/esm2015/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.js +44 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.js +324 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.js +41 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.js +35 -0
- package/esm2015/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.js +259 -0
- package/esm2015/shared/gipi-components/datepicker/datepicker/datepicker.component.js +218 -0
- package/esm2015/shared/gipi-components/datepicker/datepicker.module.js +130 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/calendar-body.js +341 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/calendar.js +397 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.js +325 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-input.js +329 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.js +41 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.js +61 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.js +159 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.js +35 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.js +555 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.js +14 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.js +303 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.js +179 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.js +51 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.js +124 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/datepicker.js +29 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/month-view.js +365 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.js +305 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.js +116 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.js +10 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.js +294 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.js +19 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.js +81 -0
- package/esm2015/shared/gipi-components/datepicker/mat-datepicker/year-view.js +294 -0
- package/esm2015/shared/gipi-components/dom/connected-overlay-scroll-handler.js +27 -0
- package/esm2015/shared/gipi-components/dom/dom-handler.js +645 -0
- package/esm2015/shared/gipi-components/dropdown-menu/dropdown-menu.component.js +185 -0
- package/esm2015/shared/gipi-components/expansion-panel/expansion-panel.component.js +81 -0
- package/esm2015/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.js +240 -0
- package/esm2015/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.js +92 -0
- package/esm2015/shared/gipi-components/footer/footer.component.js +29 -0
- package/esm2015/shared/gipi-components/form-field/form-field.component.js +262 -0
- package/esm2015/shared/gipi-components/helpful-tip/helpful-tip.component.js +62 -0
- package/esm2015/shared/gipi-components/infinite-scroll/infinite-scroll.directive.js +103 -0
- package/esm2015/shared/gipi-components/input-checkbox/input-checkbox.component.js +112 -0
- package/esm2015/shared/gipi-components/input-currency/input-currency.component.js +197 -0
- package/esm2015/shared/gipi-components/input-monthpicker/input-monthpicker.component.js +408 -0
- package/esm2015/shared/gipi-components/input-select/input-select.component.js +655 -0
- package/esm2015/shared/gipi-components/input-select-enum/input-select-enum.component.js +311 -0
- package/esm2015/shared/gipi-components/input-select-listbox/input-select-listbox.component.js +422 -0
- package/esm2015/shared/gipi-components/input-select-paged/input-search/input-search.component.js +374 -0
- package/esm2015/shared/gipi-components/input-select-paged/input-select-paged.component.js +350 -0
- package/esm2015/shared/gipi-components/input-select-radio/input-select-radio.component.js +269 -0
- package/esm2015/shared/gipi-components/layout-grid/col.directive.js +161 -0
- package/esm2015/shared/gipi-components/layout-grid/row.directive.js +124 -0
- package/esm2015/shared/gipi-components/layout-grid/services/breakpoint.service.js +87 -0
- package/esm2015/shared/gipi-components/layout-grid/services/resize.service.js +64 -0
- package/esm2015/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.js +193 -0
- package/esm2015/shared/gipi-components/month-year-picker/mont-year-picker.module.js +47 -0
- package/esm2015/shared/gipi-components/month-year-picker/month-year-picker.component.js +460 -0
- package/esm2015/shared/gipi-components/notification/notification.component.js +104 -0
- package/esm2015/shared/gipi-components/novelties/novelties.component.js +109 -0
- package/esm2015/shared/gipi-components/overlay/overlay.component.js +565 -0
- package/esm2015/shared/gipi-components/overlay/shared/overlay-service.js +21 -0
- package/esm2015/shared/gipi-components/overlay/shared/overlay_options.js +1 -0
- package/esm2015/shared/gipi-components/password-requeriments/password-requeriments.component.js +127 -0
- package/esm2015/shared/gipi-components/popover/popover.component.js +397 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-animations.js +29 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-errors.js +27 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-interfaces.js +1 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-target.js +19 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-trigger.js +514 -0
- package/esm2015/shared/gipi-components/popover/shared/popover-types.js +1 -0
- package/esm2015/shared/gipi-components/radio-group/radio-group.component.js +143 -0
- package/esm2015/shared/gipi-components/range-page/range-page.component.js +254 -0
- package/esm2015/shared/gipi-components/range-slider/range-slider.component.js +345 -0
- package/esm2015/shared/gipi-components/select/select.component.js +211 -0
- package/esm2015/shared/gipi-components/select-button/select-button.component.js +187 -0
- package/esm2015/shared/gipi-components/sidebar/container/container.component.js +83 -0
- package/esm2015/shared/gipi-components/sidebar/sidenav/sidenav.component.js +240 -0
- package/esm2015/shared/gipi-components/stepper/stepper.component.js +37 -0
- package/esm2015/shared/gipi-components/table/components/table-body/table-body.component.js +203 -0
- package/esm2015/shared/gipi-components/table/components/table-footer/table-footer.component.js +30 -0
- package/esm2015/shared/gipi-components/table/components/table-header/table-header.component.js +152 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.js +122 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.js +225 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.js +1 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/shared/pagination.service.js +105 -0
- package/esm2015/shared/gipi-components/table/components/table-pagination/table-pagination.component.js +102 -0
- package/esm2015/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.js +30 -0
- package/esm2015/shared/gipi-components/table/models/pipe-transform.model.js +1 -0
- package/esm2015/shared/gipi-components/table/models/sort.model.js +19 -0
- package/esm2015/shared/gipi-components/table/models/sorted-column.model.js +2 -0
- package/esm2015/shared/gipi-components/table/models/table-column-builder.model.js +104 -0
- package/esm2015/shared/gipi-components/table/models/table-column.model.js +162 -0
- package/esm2015/shared/gipi-components/table/table.component.js +159 -0
- package/esm2015/shared/gipi-components/table/types/sort-direction.type.js +1 -0
- package/esm2015/shared/gipi-components/table/types/sort.type.js +1 -0
- package/esm2015/shared/gipi-components/template/template.directive.js +33 -0
- package/esm2015/shared/gipi-components/toolbar/toolbar.component.js +53 -0
- package/esm2015/shared/gipi-components/top-nav/top-nav.component.js +38 -0
- package/esm2015/shared/gipi-components/user-profile/user-profile.component.js +109 -0
- package/esm2015/shared/material.module.js +102 -0
- package/esm2015/shared/shared.module.js +339 -0
- package/esm2015/shared.js +36 -0
- package/esm5/core/app-messages.js +1 -0
- package/esm5/core/app.messages.js +12 -0
- package/esm5/core/components/abstract-crud.component.js +108 -0
- package/esm5/core/components/abstract-find.component.js +201 -0
- package/esm5/core/components/abstract.component.js +112 -0
- package/esm5/core/components/alert/alert.component.js +25 -0
- package/esm5/core/core.module.js +107 -0
- package/esm5/core/custom-breakpoints.js +87 -0
- package/esm5/core/enums/local-time.enum.js +6 -0
- package/esm5/core/extensions/string.extension.js +37 -0
- package/esm5/core/gipi-components/components/abstract-crud.component.js +122 -0
- package/esm5/core/gipi-components/components/abstract-find.component.js +507 -0
- package/esm5/core/gipi-components/components/abstract.component.js +152 -0
- package/esm5/core/gipi-components/decorators/autowired.decorator.js +52 -0
- package/esm5/core/gipi-components/enums/sort-direction.enum.js +6 -0
- package/esm5/core/gipi-components/interface/abstract-crud.interface.js +1 -0
- package/esm5/core/gipi-components/interface/abstract-find.interface.js +1 -0
- package/esm5/core/gipi-components/interface/abstract.interface.js +1 -0
- package/esm5/core/gipi-components/interface/base-permission.interface.js +1 -0
- package/esm5/core/gipi-components/models/abstract-filter.model.js +7 -0
- package/esm5/core/gipi-components/models/abstract.model.js +7 -0
- package/esm5/core/gipi-components/models/applied-filter.model.js +29 -0
- package/esm5/core/gipi-components/models/dto/abstract.dto.js +7 -0
- package/esm5/core/gipi-components/models/page-event.model.js +49 -0
- package/esm5/core/gipi-components/models/page.model.js +9 -0
- package/esm5/core/gipi-components/models/sort.model.js +9 -0
- package/esm5/core/gipi-components/services/abstract-crud.service.js +114 -0
- package/esm5/core/gipi-components/services/abstract.service.js +49 -0
- package/esm5/core/gipi-components/services/base.service.js +143 -0
- package/esm5/core/gipi-components/services/file.service.js +53 -0
- package/esm5/core/gipi-components/services/session-storage.service.js +45 -0
- package/esm5/core/gipi-components/types/generic.type.js +1 -0
- package/esm5/core/gipi-components/types/uuid.type.js +1 -0
- package/esm5/core/guards/auth.guard.js +50 -0
- package/esm5/core/guards/permission.guard.js +74 -0
- package/esm5/core/guards/public.guard.js +47 -0
- package/esm5/core/interceptors/auth.interceptor.js +29 -0
- package/esm5/core/interceptors/error.interceptor.js +129 -0
- package/esm5/core/models/abstract.model.js +7 -0
- package/esm5/core/models/archive.model.js +7 -0
- package/esm5/core/models/authority.model.js +7 -0
- package/esm5/core/models/base-user.model.js +13 -0
- package/esm5/core/models/dto/abstract.dto.js +7 -0
- package/esm5/core/models/dto/api-error.dto.js +13 -0
- package/esm5/core/models/dto/api-sub-error.dto.js +11 -0
- package/esm5/core/models/dto/chart.dto.js +11 -0
- package/esm5/core/models/dto/confirmation.dto.js +13 -0
- package/esm5/core/models/dto/dialog.dto.js +11 -0
- package/esm5/core/models/dto/filter.dto.js +11 -0
- package/esm5/core/models/dto/input-listbox.dto.js +11 -0
- package/esm5/core/models/dto/menu.dto.js +14 -0
- package/esm5/core/models/dto/message.dto.js +11 -0
- package/esm5/core/models/dto/page.dto.js +14 -0
- package/esm5/core/models/dto/sort.dto.js +14 -0
- package/esm5/core/models/dto/tab.dto.js +15 -0
- package/esm5/core/models/dto/table-column.dto.js +29 -0
- package/esm5/core/models/dto/table-group-header.dto.js +15 -0
- package/esm5/core/models/dto/table-page-event.dto.js +11 -0
- package/esm5/core/models/dto/token.dto.js +11 -0
- package/esm5/core/models/enums/criteria-operation.enum.js +15 -0
- package/esm5/core/models/enums/criteria-sort-direction.enum.js +6 -0
- package/esm5/core/models/enums/menu-type.enum.js +7 -0
- package/esm5/core/models/enums/radio-button.enum.js +8 -0
- package/esm5/core/models/enums/sort-direction.enum.js +6 -0
- package/esm5/core/models/multitenant.model.js +11 -0
- package/esm5/core/models/permission.model.js +16 -0
- package/esm5/core/models/role.model.js +13 -0
- package/esm5/core/pipes/local-time.pipe.js +26 -0
- package/esm5/core/services/abstract-crud.service.js +30 -0
- package/esm5/core/services/abstract-find.service.js +71 -0
- package/esm5/core/services/abstract.service.js +32 -0
- package/esm5/core/services/authentication.service.js +121 -0
- package/esm5/core/services/breakpoint-observer.service.js +52 -0
- package/esm5/core/services/confirmation.service.js +66 -0
- package/esm5/core/services/dialog.service.js +44 -0
- package/esm5/core/services/message.service.js +36 -0
- package/esm5/core/services/nav.service.js +51 -0
- package/esm5/core/services/svg-register.service.js +67 -0
- package/esm5/core/types/local-time.type.js +1 -0
- package/esm5/core/types/ng-class.type.js +1 -0
- package/esm5/core/utils/array.util.js +120 -0
- package/esm5/core/utils/browser.util.js +17 -0
- package/esm5/core/utils/currency.util.js +26 -0
- package/esm5/core/utils/date.util.js +269 -0
- package/esm5/core/utils/document.util.js +157 -0
- package/esm5/core/utils/email.util.js +29 -0
- package/esm5/core/utils/number.util.js +32 -0
- package/esm5/core/utils/object.util.js +204 -0
- package/esm5/core/utils/password.util.js +42 -0
- package/esm5/core/utils/phone.util.js +135 -0
- package/esm5/core/utils/string.util.js +44 -0
- package/esm5/core/utils/table-column-builder.js +87 -0
- package/esm5/core/utils/time.util.js +65 -0
- package/esm5/core/utils/url-params.util.js +16 -0
- package/esm5/core/utils/uuid.util.js +21 -0
- package/esm5/core/utils/zindex.util.js +35 -0
- package/esm5/core.js +89 -0
- package/esm5/gipi-components.js +105 -0
- package/esm5/gipisistemas-ng-core.js +21 -0
- package/esm5/public_api.js +4 -0
- package/esm5/shared/api/generate-id-component.js +16 -0
- package/esm5/shared/api/gipi-ng-config.js +77 -0
- package/esm5/shared/api/overlay-message.js +1 -0
- package/esm5/shared/api/throttle.js +60 -0
- package/esm5/shared/api/translation.js +1 -0
- package/esm5/shared/components/button/button.component.js +111 -0
- package/esm5/shared/components/card/card.component.js +45 -0
- package/esm5/shared/components/checkbox/checkbox.component.js +85 -0
- package/esm5/shared/components/dom/connected-overlay-scroll-handler.js +30 -0
- package/esm5/shared/components/dom/dom-handler.js +573 -0
- package/esm5/shared/components/icon/icon.component.js +38 -0
- package/esm5/shared/components/input/input.component.js +242 -0
- package/esm5/shared/components/input-currency/input-currency.component.js +121 -0
- package/esm5/shared/components/input-file/input-file.component.js +165 -0
- package/esm5/shared/components/loading/loading.component.js +18 -0
- package/esm5/shared/components/loading-overlay/loading-overlay.component.js +23 -0
- package/esm5/shared/components/overlay-panel/overlay-panel.component.js +366 -0
- package/esm5/shared/components/popover/popover-ref.js +28 -0
- package/esm5/shared/components/popover/popover.component.js +35 -0
- package/esm5/shared/components/popover/popover.service.js +88 -0
- package/esm5/shared/components/radio-group-entity/radio-group-entity.component.js +80 -0
- package/esm5/shared/components/radio-group-enum/radio-group-enum.component.js +138 -0
- package/esm5/shared/components/select-button/select-button.component.js +195 -0
- package/esm5/shared/components/select-entity/select-entity.component.js +269 -0
- package/esm5/shared/components/select-entity-paged/select-entity-paged.component.js +453 -0
- package/esm5/shared/components/select-entity-paged/shared/default-options.js +35 -0
- package/esm5/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.js +72 -0
- package/esm5/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.js +62 -0
- package/esm5/shared/components/select-entity-paged/shared/select-no-entries-found.directive.js +23 -0
- package/esm5/shared/components/select-entity-paged/shared/select-search/select-search.component.js +590 -0
- package/esm5/shared/components/select-entity-paged/shared/select-search-clear.directive.js +21 -0
- package/esm5/shared/components/select-enum/select-enum.component.js +124 -0
- package/esm5/shared/components/select-month-period/select-month-period.component.js +91 -0
- package/esm5/shared/components/slide-toggle/slide-toggle.component.js +81 -0
- package/esm5/shared/components/stepper/stepper.component.js +36 -0
- package/esm5/shared/components/tab/tab.component.js +58 -0
- package/esm5/shared/components/tab-group/tab-group.component.js +125 -0
- package/esm5/shared/components/table/table.component.js +538 -0
- package/esm5/shared/components/table-scrolled/table-scrolled.component.js +107 -0
- package/esm5/shared/components/textarea/textarea.component.js +174 -0
- package/esm5/shared/directives/dynamic-tab.directive.js +19 -0
- package/esm5/shared/directives/generic-template.directive.js +31 -0
- package/esm5/shared/directives/input-select-infinite-scroll.directive.js +113 -0
- package/esm5/shared/directives/lower-case.directive.js +48 -0
- package/esm5/shared/directives/phone-mask.directive.js +61 -0
- package/esm5/shared/directives/space-drop.directive.js +48 -0
- package/esm5/shared/directives/upper-case.directive.js +48 -0
- package/esm5/shared/gipi-components/abstract-form/abstract-form.component.js +141 -0
- package/esm5/shared/gipi-components/action-row/action-row.component.js +33 -0
- package/esm5/shared/gipi-components/badge/badge.component.js +46 -0
- package/esm5/shared/gipi-components/button/button.component.js +257 -0
- package/esm5/shared/gipi-components/chips/chips.component.js +159 -0
- package/esm5/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.js +46 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.js +378 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.js +42 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.js +40 -0
- package/esm5/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.js +291 -0
- package/esm5/shared/gipi-components/datepicker/datepicker/datepicker.component.js +252 -0
- package/esm5/shared/gipi-components/datepicker/datepicker.module.js +133 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/calendar-body.js +349 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/calendar.js +441 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.js +339 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-input.js +376 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.js +46 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.js +62 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.js +167 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.js +35 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.js +586 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.js +14 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.js +327 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.js +199 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.js +52 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.js +133 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/datepicker.js +34 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/month-view.js +384 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.js +324 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.js +118 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.js +10 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.js +300 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.js +19 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.js +82 -0
- package/esm5/shared/gipi-components/datepicker/mat-datepicker/year-view.js +313 -0
- package/esm5/shared/gipi-components/dom/connected-overlay-scroll-handler.js +30 -0
- package/esm5/shared/gipi-components/dom/dom-handler.js +681 -0
- package/esm5/shared/gipi-components/dropdown-menu/dropdown-menu.component.js +191 -0
- package/esm5/shared/gipi-components/expansion-panel/expansion-panel.component.js +83 -0
- package/esm5/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.js +255 -0
- package/esm5/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.js +93 -0
- package/esm5/shared/gipi-components/footer/footer.component.js +32 -0
- package/esm5/shared/gipi-components/form-field/form-field.component.js +276 -0
- package/esm5/shared/gipi-components/helpful-tip/helpful-tip.component.js +68 -0
- package/esm5/shared/gipi-components/infinite-scroll/infinite-scroll.directive.js +106 -0
- package/esm5/shared/gipi-components/input-checkbox/input-checkbox.component.js +118 -0
- package/esm5/shared/gipi-components/input-currency/input-currency.component.js +207 -0
- package/esm5/shared/gipi-components/input-monthpicker/input-monthpicker.component.js +426 -0
- package/esm5/shared/gipi-components/input-select/input-select.component.js +698 -0
- package/esm5/shared/gipi-components/input-select-enum/input-select-enum.component.js +351 -0
- package/esm5/shared/gipi-components/input-select-listbox/input-select-listbox.component.js +437 -0
- package/esm5/shared/gipi-components/input-select-paged/input-search/input-search.component.js +397 -0
- package/esm5/shared/gipi-components/input-select-paged/input-select-paged.component.js +384 -0
- package/esm5/shared/gipi-components/input-select-radio/input-select-radio.component.js +286 -0
- package/esm5/shared/gipi-components/layout-grid/col.directive.js +164 -0
- package/esm5/shared/gipi-components/layout-grid/row.directive.js +127 -0
- package/esm5/shared/gipi-components/layout-grid/services/breakpoint.service.js +90 -0
- package/esm5/shared/gipi-components/layout-grid/services/resize.service.js +68 -0
- package/esm5/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.js +200 -0
- package/esm5/shared/gipi-components/month-year-picker/mont-year-picker.module.js +50 -0
- package/esm5/shared/gipi-components/month-year-picker/month-year-picker.component.js +505 -0
- package/esm5/shared/gipi-components/notification/notification.component.js +106 -0
- package/esm5/shared/gipi-components/novelties/novelties.component.js +111 -0
- package/esm5/shared/gipi-components/overlay/overlay.component.js +670 -0
- package/esm5/shared/gipi-components/overlay/shared/overlay-service.js +22 -0
- package/esm5/shared/gipi-components/overlay/shared/overlay_options.js +1 -0
- package/esm5/shared/gipi-components/password-requeriments/password-requeriments.component.js +157 -0
- package/esm5/shared/gipi-components/popover/popover.component.js +473 -0
- package/esm5/shared/gipi-components/popover/shared/popover-animations.js +29 -0
- package/esm5/shared/gipi-components/popover/shared/popover-errors.js +21 -0
- package/esm5/shared/gipi-components/popover/shared/popover-interfaces.js +1 -0
- package/esm5/shared/gipi-components/popover/shared/popover-target.js +20 -0
- package/esm5/shared/gipi-components/popover/shared/popover-trigger.js +529 -0
- package/esm5/shared/gipi-components/popover/shared/popover-types.js +1 -0
- package/esm5/shared/gipi-components/radio-group/radio-group.component.js +155 -0
- package/esm5/shared/gipi-components/range-page/range-page.component.js +283 -0
- package/esm5/shared/gipi-components/range-slider/range-slider.component.js +364 -0
- package/esm5/shared/gipi-components/select/select.component.js +222 -0
- package/esm5/shared/gipi-components/select-button/select-button.component.js +206 -0
- package/esm5/shared/gipi-components/sidebar/container/container.component.js +96 -0
- package/esm5/shared/gipi-components/sidebar/sidenav/sidenav.component.js +267 -0
- package/esm5/shared/gipi-components/stepper/stepper.component.js +43 -0
- package/esm5/shared/gipi-components/table/components/table-body/table-body.component.js +209 -0
- package/esm5/shared/gipi-components/table/components/table-footer/table-footer.component.js +33 -0
- package/esm5/shared/gipi-components/table/components/table-header/table-header.component.js +155 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.js +123 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.js +228 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.js +1 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/shared/pagination.service.js +108 -0
- package/esm5/shared/gipi-components/table/components/table-pagination/table-pagination.component.js +116 -0
- package/esm5/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.js +33 -0
- package/esm5/shared/gipi-components/table/models/pipe-transform.model.js +1 -0
- package/esm5/shared/gipi-components/table/models/sort.model.js +29 -0
- package/esm5/shared/gipi-components/table/models/sorted-column.model.js +2 -0
- package/esm5/shared/gipi-components/table/models/table-column-builder.model.js +106 -0
- package/esm5/shared/gipi-components/table/models/table-column.model.js +252 -0
- package/esm5/shared/gipi-components/table/table.component.js +161 -0
- package/esm5/shared/gipi-components/table/types/sort-direction.type.js +1 -0
- package/esm5/shared/gipi-components/table/types/sort.type.js +1 -0
- package/esm5/shared/gipi-components/template/template.directive.js +34 -0
- package/esm5/shared/gipi-components/toolbar/toolbar.component.js +56 -0
- package/esm5/shared/gipi-components/top-nav/top-nav.component.js +40 -0
- package/esm5/shared/gipi-components/user-profile/user-profile.component.js +115 -0
- package/esm5/shared/material.module.js +101 -0
- package/esm5/shared/shared.module.js +340 -0
- package/esm5/shared.js +36 -0
- package/fesm2015/gipisistemas-ng-core.js +25879 -0
- package/fesm2015/gipisistemas-ng-core.js.map +1 -0
- package/fesm5/gipisistemas-ng-core.js +27905 -0
- package/fesm5/gipisistemas-ng-core.js.map +1 -0
- package/gipi-components.d.ts +97 -0
- package/gipisistemas-ng-core.d.ts +20 -0
- package/gipisistemas-ng-core.metadata.json +1 -0
- package/package.json +31 -83
- package/public_api.d.ts +3 -0
- package/shared/api/generate-id-component.d.ts +3 -0
- package/shared/api/gipi-ng-config.d.ts +18 -0
- package/shared/api/overlay-message.d.ts +14 -0
- package/shared/api/throttle.d.ts +17 -0
- package/shared/api/translation.d.ts +45 -0
- package/shared/components/button/button.component.d.ts +26 -0
- package/shared/components/card/card.component.d.ts +10 -0
- package/shared/components/checkbox/checkbox.component.d.ts +20 -0
- package/shared/components/dom/connected-overlay-scroll-handler.d.ts +9 -0
- package/shared/components/dom/dom-handler.d.ts +74 -0
- package/shared/components/icon/icon.component.d.ts +9 -0
- package/shared/components/input/input.component.d.ts +52 -0
- package/shared/components/input-currency/input-currency.component.d.ts +29 -0
- package/shared/components/input-file/input-file.component.d.ts +28 -0
- package/shared/components/loading/loading.component.d.ts +4 -0
- package/shared/components/loading-overlay/loading-overlay.component.d.ts +6 -0
- package/shared/components/overlay-panel/overlay-panel.component.d.ts +67 -0
- package/shared/components/popover/popover-ref.d.ts +17 -0
- package/shared/components/popover/popover.component.d.ts +10 -0
- package/shared/components/popover/popover.service.d.ts +23 -0
- package/shared/components/radio-group-entity/radio-group-entity.component.d.ts +19 -0
- package/shared/components/radio-group-enum/radio-group-enum.component.d.ts +30 -0
- package/shared/components/select-button/select-button.component.d.ts +35 -0
- package/shared/components/select-entity/select-entity.component.d.ts +52 -0
- package/shared/components/select-entity-paged/select-entity-paged.component.d.ts +78 -0
- package/shared/components/select-entity-paged/shared/default-options.d.ts +25 -0
- package/shared/components/select-entity-paged/shared/select-button-add/select-button-add.component.d.ts +18 -0
- package/shared/components/select-entity-paged/shared/select-button-next-batch/select-button-next-batch.component.d.ts +16 -0
- package/shared/components/select-entity-paged/shared/select-no-entries-found.directive.d.ts +11 -0
- package/shared/components/select-entity-paged/shared/select-search/select-search.component.d.ts +119 -0
- package/shared/components/select-entity-paged/shared/select-search-clear.directive.d.ts +9 -0
- package/shared/components/select-enum/select-enum.component.d.ts +29 -0
- package/shared/components/select-month-period/select-month-period.component.d.ts +20 -0
- package/shared/components/slide-toggle/slide-toggle.component.d.ts +19 -0
- package/shared/components/stepper/stepper.component.d.ts +7 -0
- package/shared/components/tab/tab.component.d.ts +14 -0
- package/shared/components/tab-group/tab-group.component.d.ts +22 -0
- package/shared/components/table/table.component.d.ts +86 -0
- package/shared/components/table-scrolled/table-scrolled.component.d.ts +31 -0
- package/shared/components/textarea/textarea.component.d.ts +35 -0
- package/shared/directives/dynamic-tab.directive.d.ts +5 -0
- package/shared/directives/generic-template.directive.d.ts +8 -0
- package/shared/directives/input-select-infinite-scroll.directive.d.ts +35 -0
- package/shared/directives/lower-case.directive.d.ts +9 -0
- package/shared/directives/phone-mask.directive.d.ts +8 -0
- package/shared/directives/space-drop.directive.d.ts +9 -0
- package/shared/directives/upper-case.directive.d.ts +9 -0
- package/shared/gipi-components/abstract-form/abstract-form.component.d.ts +21 -0
- package/shared/gipi-components/action-row/action-row.component.d.ts +5 -0
- package/shared/gipi-components/badge/badge.component.d.ts +8 -0
- package/shared/gipi-components/button/button.component.d.ts +56 -0
- package/shared/gipi-components/chips/chips.component.d.ts +37 -0
- package/shared/gipi-components/confirmation-dialog/confirmation-dialog.component.d.ts +11 -0
- package/shared/gipi-components/datepicker/date-range-picker/date-range-picker.component.d.ts +71 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range-selection-startegy.d.ts +11 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/max-range/max-range.directive.d.ts +6 -0
- package/shared/gipi-components/datepicker/date-range-picker/shared/preset-range/preset-range.component.d.ts +40 -0
- package/shared/gipi-components/datepicker/datepicker/datepicker.component.d.ts +49 -0
- package/shared/gipi-components/datepicker/datepicker.module.d.ts +2 -0
- package/shared/gipi-components/datepicker/mat-datepicker/calendar-body.d.ts +143 -0
- package/shared/gipi-components/datepicker/mat-datepicker/calendar.d.ts +152 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-input-parts.d.ts +102 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-input.d.ts +124 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-picker.d.ts +21 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-range-selection-strategy.d.ts +45 -0
- package/shared/gipi-components/datepicker/mat-datepicker/date-selection-model.d.ts +106 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-animations.d.ts +16 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-base.d.ts +209 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-errors.d.ts +9 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-input-base.d.ts +136 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-input.d.ts +68 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-intl.d.ts +38 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker-toggle.d.ts +39 -0
- package/shared/gipi-components/datepicker/mat-datepicker/datepicker.d.ts +11 -0
- package/shared/gipi-components/datepicker/mat-datepicker/month-view.d.ts +120 -0
- package/shared/gipi-components/datepicker/mat-datepicker/multi-year-view.d.ts +85 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-adapter.d.ts +225 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/date-formats.d.ts +20 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-adapter.d.ts +76 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/native-date-formats.d.ts +9 -0
- package/shared/gipi-components/datepicker/mat-datepicker/shared/adapter/platform.d.ts +33 -0
- package/shared/gipi-components/datepicker/mat-datepicker/year-view.d.ts +97 -0
- package/shared/gipi-components/dom/connected-overlay-scroll-handler.d.ts +9 -0
- package/shared/gipi-components/dom/dom-handler.d.ts +85 -0
- package/shared/gipi-components/dropdown-menu/dropdown-menu.component.d.ts +36 -0
- package/shared/gipi-components/expansion-panel/expansion-panel.component.d.ts +16 -0
- package/shared/gipi-components/file-drag-and-drop/file-drag-and-drop.component.d.ts +43 -0
- package/shared/gipi-components/file-drag-and-drop/shared/file-drag-and-drop.directive.d.ts +13 -0
- package/shared/gipi-components/footer/footer.component.d.ts +5 -0
- package/shared/gipi-components/form-field/form-field.component.d.ts +61 -0
- package/shared/gipi-components/helpful-tip/helpful-tip.component.d.ts +13 -0
- package/shared/gipi-components/infinite-scroll/infinite-scroll.directive.d.ts +27 -0
- package/shared/gipi-components/input-checkbox/input-checkbox.component.d.ts +28 -0
- package/shared/gipi-components/input-currency/input-currency.component.d.ts +48 -0
- package/shared/gipi-components/input-monthpicker/input-monthpicker.component.d.ts +89 -0
- package/shared/gipi-components/input-select/input-select.component.d.ts +120 -0
- package/shared/gipi-components/input-select-enum/input-select-enum.component.d.ts +65 -0
- package/shared/gipi-components/input-select-listbox/input-select-listbox.component.d.ts +85 -0
- package/shared/gipi-components/input-select-paged/input-search/input-search.component.d.ts +77 -0
- package/shared/gipi-components/input-select-paged/input-select-paged.component.d.ts +66 -0
- package/shared/gipi-components/input-select-radio/input-select-radio.component.d.ts +53 -0
- package/shared/gipi-components/layout-grid/col.directive.d.ts +38 -0
- package/shared/gipi-components/layout-grid/row.directive.d.ts +28 -0
- package/shared/gipi-components/layout-grid/services/breakpoint.service.d.ts +30 -0
- package/shared/gipi-components/layout-grid/services/resize.service.d.ts +17 -0
- package/shared/gipi-components/month-year-picker/calendar-month-year/calendar-month-year.component.d.ts +37 -0
- package/shared/gipi-components/month-year-picker/mont-year-picker.module.d.ts +2 -0
- package/shared/gipi-components/month-year-picker/month-year-picker.component.d.ts +104 -0
- package/shared/gipi-components/notification/notification.component.d.ts +21 -0
- package/shared/gipi-components/novelties/novelties.component.d.ts +22 -0
- package/shared/gipi-components/overlay/overlay.component.d.ts +113 -0
- package/shared/gipi-components/overlay/shared/overlay-service.d.ts +6 -0
- package/shared/gipi-components/overlay/shared/overlay_options.d.ts +50 -0
- package/shared/gipi-components/password-requeriments/password-requeriments.component.d.ts +27 -0
- package/shared/gipi-components/popover/popover.component.d.ts +133 -0
- package/shared/gipi-components/popover/shared/popover-animations.d.ts +13 -0
- package/shared/gipi-components/popover/shared/popover-errors.d.ts +14 -0
- package/shared/gipi-components/popover/shared/popover-interfaces.d.ts +43 -0
- package/shared/gipi-components/popover/shared/popover-target.d.ts +5 -0
- package/shared/gipi-components/popover/shared/popover-trigger.d.ts +140 -0
- package/shared/gipi-components/popover/shared/popover-types.d.ts +4 -0
- package/shared/gipi-components/radio-group/radio-group.component.d.ts +33 -0
- package/shared/gipi-components/range-page/range-page.component.d.ts +55 -0
- package/shared/gipi-components/range-slider/range-slider.component.d.ts +57 -0
- package/shared/gipi-components/select/select.component.d.ts +45 -0
- package/shared/gipi-components/select-button/select-button.component.d.ts +39 -0
- package/shared/gipi-components/sidebar/container/container.component.d.ts +15 -0
- package/shared/gipi-components/sidebar/sidenav/sidenav.component.d.ts +40 -0
- package/shared/gipi-components/stepper/stepper.component.d.ts +8 -0
- package/shared/gipi-components/table/components/table-body/table-body.component.d.ts +36 -0
- package/shared/gipi-components/table/components/table-footer/table-footer.component.d.ts +5 -0
- package/shared/gipi-components/table/components/table-header/table-header.component.d.ts +28 -0
- package/shared/gipi-components/table/components/table-pagination/shared/paginate.pipe.d.ts +40 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination-controls.directive.d.ts +81 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination-instance.d.ts +24 -0
- package/shared/gipi-components/table/components/table-pagination/shared/pagination.service.d.ts +45 -0
- package/shared/gipi-components/table/components/table-pagination/table-pagination.component.d.ts +21 -0
- package/shared/gipi-components/table/components/table-progress-bar/table-progress-bar.component.d.ts +5 -0
- package/shared/gipi-components/table/models/pipe-transform.model.d.ts +3 -0
- package/shared/gipi-components/table/models/sort.model.d.ts +10 -0
- package/shared/gipi-components/table/models/sorted-column.model.d.ts +6 -0
- package/shared/gipi-components/table/models/table-column-builder.model.d.ts +52 -0
- package/shared/gipi-components/table/models/table-column.model.d.ts +74 -0
- package/shared/gipi-components/table/table.component.d.ts +37 -0
- package/shared/gipi-components/table/types/sort-direction.type.d.ts +1 -0
- package/shared/gipi-components/table/types/sort.type.d.ts +1 -0
- package/shared/gipi-components/template/template.directive.d.ts +8 -0
- package/shared/gipi-components/toolbar/toolbar.component.d.ts +11 -0
- package/shared/gipi-components/top-nav/top-nav.component.d.ts +8 -0
- package/shared/gipi-components/user-profile/user-profile.component.d.ts +24 -0
- package/shared/material.module.d.ts +2 -0
- package/shared/shared.module.d.ts +6 -0
- package/shared.d.ts +35 -0
- package/README.md +0 -38
- package/_ITSS-NG-CI-CD.yml +0 -53
- package/_ITSS-NG-CI-PR.yml +0 -53
- package/angular-cli.json +0 -42
- package/azure-pipelines.yml +0 -35
- package/projects/itss-ng/ng-package.json +0 -7
- package/projects/itss-ng/package.json +0 -25
@@ -0,0 +1,209 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
7
|
+
*/
|
8
|
+
import { Directionality } from '@angular/cdk/bidi';
|
9
|
+
import { Overlay, ScrollStrategy } from '@angular/cdk/overlay';
|
10
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, InjectionToken, NgZone, OnChanges, OnDestroy, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
|
11
|
+
import { CanColor, CanColorCtor, ThemePalette } from '@angular/material/core';
|
12
|
+
import { MatDialog } from '@angular/material/dialog';
|
13
|
+
import { Observable, Subject } from 'rxjs';
|
14
|
+
import { MatCalendar } from './calendar';
|
15
|
+
import { MatCalendarCellClassFunction, MatCalendarUserEvent } from './calendar-body';
|
16
|
+
import { MatDateRangeSelectionStrategy } from './date-range-selection-strategy';
|
17
|
+
import { DateRange, ExtractDateTypeFromSelection, MatDateSelectionModel } from './date-selection-model';
|
18
|
+
import { DateFilterFn } from './datepicker-input-base';
|
19
|
+
import { DateAdapter } from './shared/adapter/date-adapter';
|
20
|
+
/** Injection token that determines the scroll handling while the calendar is open. */
|
21
|
+
export declare const MAT_DATEPICKER_SCROLL_STRATEGY: InjectionToken<() => ScrollStrategy>;
|
22
|
+
/** @docs-private */
|
23
|
+
export declare function MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY(overlay: Overlay): () => ScrollStrategy;
|
24
|
+
/** Possible positions for the datepicker dropdown along the X axis. */
|
25
|
+
export declare type DatepickerDropdownPositionX = 'start' | 'end';
|
26
|
+
/** Possible positions for the datepicker dropdown along the Y axis. */
|
27
|
+
export declare type DatepickerDropdownPositionY = 'above' | 'below';
|
28
|
+
/** @docs-private */
|
29
|
+
export declare const MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY_PROVIDER: {
|
30
|
+
provide: InjectionToken<() => ScrollStrategy>;
|
31
|
+
deps: (typeof Overlay)[];
|
32
|
+
useFactory: typeof MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY;
|
33
|
+
};
|
34
|
+
/** @docs-private */
|
35
|
+
declare class MatDatepickerContentBase {
|
36
|
+
_elementRef: ElementRef;
|
37
|
+
constructor(_elementRef: ElementRef);
|
38
|
+
}
|
39
|
+
declare const _MatDatepickerContentMixinBase: CanColorCtor & typeof MatDatepickerContentBase;
|
40
|
+
/**
|
41
|
+
* Component used as the content for the datepicker dialog and popup. We use this instead of using
|
42
|
+
* MatCalendar directly as the content so we can control the initial focus. This also gives us a
|
43
|
+
* place to put additional features of the popup that are not part of the calendar itself in the
|
44
|
+
* future. (e.g. confirmation buttons).
|
45
|
+
* @docs-private
|
46
|
+
*/
|
47
|
+
export declare class MatDatepickerContent<S, D = ExtractDateTypeFromSelection<S>> extends _MatDatepickerContentMixinBase implements AfterViewInit, OnDestroy, CanColor {
|
48
|
+
/**
|
49
|
+
* @deprecated `_changeDetectorRef`, `_model` and `_rangeSelectionStrategy`
|
50
|
+
* parameters to become required.
|
51
|
+
* @breaking-change 11.0.0
|
52
|
+
*/
|
53
|
+
private _changeDetectorRef?;
|
54
|
+
private _model?;
|
55
|
+
private _dateAdapter?;
|
56
|
+
private _rangeSelectionStrategy?;
|
57
|
+
private _subscriptions;
|
58
|
+
/** Reference to the internal calendar component. */
|
59
|
+
_calendar: MatCalendar<D>;
|
60
|
+
/** Reference to the datepicker that created the overlay. */
|
61
|
+
datepicker: MatDatepickerBase<any, S, D>;
|
62
|
+
/** Start of the comparison range. */
|
63
|
+
comparisonStart: D | null;
|
64
|
+
/** End of the comparison range. */
|
65
|
+
comparisonEnd: D | null;
|
66
|
+
/** Whether the datepicker is above or below the input. */
|
67
|
+
_isAbove: boolean;
|
68
|
+
/** Current state of the animation. */
|
69
|
+
_animationState: 'enter' | 'void';
|
70
|
+
/** Emits when an animation has finished. */
|
71
|
+
_animationDone: Subject<void>;
|
72
|
+
constructor(elementRef: ElementRef,
|
73
|
+
/**
|
74
|
+
* @deprecated `_changeDetectorRef`, `_model` and `_rangeSelectionStrategy`
|
75
|
+
* parameters to become required.
|
76
|
+
* @breaking-change 11.0.0
|
77
|
+
*/
|
78
|
+
_changeDetectorRef?: ChangeDetectorRef, _model?: MatDateSelectionModel<S, D>, _dateAdapter?: DateAdapter<D>, _rangeSelectionStrategy?: MatDateRangeSelectionStrategy<D>);
|
79
|
+
ngAfterViewInit(): void;
|
80
|
+
ngOnDestroy(): void;
|
81
|
+
_handleUserSelection(event: MatCalendarUserEvent<D | null>): void;
|
82
|
+
_startExitAnimation(): void;
|
83
|
+
_getSelected(): D | DateRange<D>;
|
84
|
+
}
|
85
|
+
/** Form control that can be associated with a datepicker. */
|
86
|
+
export interface MatDatepickerControl<D> {
|
87
|
+
getStartValue(): D | null;
|
88
|
+
getThemePalette(): ThemePalette;
|
89
|
+
min: D | null;
|
90
|
+
max: D | null;
|
91
|
+
disabled: boolean;
|
92
|
+
dateFilter: DateFilterFn<D>;
|
93
|
+
getConnectedOverlayOrigin(): ElementRef;
|
94
|
+
stateChanges: Observable<void>;
|
95
|
+
}
|
96
|
+
/** Base class for a datepicker. */
|
97
|
+
export declare abstract class MatDatepickerBase<C extends MatDatepickerControl<D>, S, D = any> implements OnDestroy, OnChanges {
|
98
|
+
private _dialog;
|
99
|
+
private _overlay;
|
100
|
+
private _ngZone;
|
101
|
+
private _viewContainerRef;
|
102
|
+
private _dateAdapter;
|
103
|
+
private _dir;
|
104
|
+
private _document;
|
105
|
+
private _model;
|
106
|
+
private _scrollStrategy;
|
107
|
+
private _inputStateChanges;
|
108
|
+
templatePresetRange: TemplateRef<any>;
|
109
|
+
/** The date to open the calendar to initially. */
|
110
|
+
get startAt(): D | null;
|
111
|
+
set startAt(value: D | null);
|
112
|
+
private _startAt;
|
113
|
+
/** The view that the calendar should start in. */
|
114
|
+
startView: 'month' | 'year' | 'multi-year';
|
115
|
+
/** Color palette to use on the datepicker's calendar. */
|
116
|
+
get color(): ThemePalette;
|
117
|
+
set color(value: ThemePalette);
|
118
|
+
_color: ThemePalette;
|
119
|
+
/**
|
120
|
+
* Whether the calendar UI is in touch mode. In touch mode the calendar opens in a dialog rather
|
121
|
+
* than a popup and elements have more padding to allow for bigger touch targets.
|
122
|
+
*/
|
123
|
+
get touchUi(): boolean;
|
124
|
+
set touchUi(value: boolean);
|
125
|
+
private _touchUi;
|
126
|
+
/** Whether the datepicker pop-up should be disabled. */
|
127
|
+
get disabled(): boolean;
|
128
|
+
set disabled(value: boolean);
|
129
|
+
private _disabled;
|
130
|
+
/** Preferred position of the datepicker in the X axis. */
|
131
|
+
xPosition: DatepickerDropdownPositionX;
|
132
|
+
/** Preferred position of the datepicker in the Y axis. */
|
133
|
+
yPosition: DatepickerDropdownPositionY;
|
134
|
+
/**
|
135
|
+
* Emits selected year in multiyear view.
|
136
|
+
* This doesn't imply a change on the selected date.
|
137
|
+
*/
|
138
|
+
readonly yearSelected: EventEmitter<D>;
|
139
|
+
/**
|
140
|
+
* Emits selected month in year view.
|
141
|
+
* This doesn't imply a change on the selected date.
|
142
|
+
*/
|
143
|
+
readonly monthSelected: EventEmitter<D>;
|
144
|
+
/** Classes to be passed to the date picker panel. Supports the same syntax as `ngClass`. */
|
145
|
+
panelClass: string | string[];
|
146
|
+
/** Function that can be used to add custom CSS classes to dates. */
|
147
|
+
dateClass: MatCalendarCellClassFunction<D>;
|
148
|
+
/** Emits when the datepicker has been opened. */
|
149
|
+
openedStream: EventEmitter<void>;
|
150
|
+
/** Emits when the datepicker has been closed. */
|
151
|
+
closedStream: EventEmitter<void>;
|
152
|
+
/** Whether the calendar is open. */
|
153
|
+
get opened(): boolean;
|
154
|
+
set opened(value: boolean);
|
155
|
+
private _opened;
|
156
|
+
/** The id for the datepicker calendar. */
|
157
|
+
id: string;
|
158
|
+
/** The minimum selectable date. */
|
159
|
+
_getMinDate(): D | null;
|
160
|
+
/** The maximum selectable date. */
|
161
|
+
_getMaxDate(): D | null;
|
162
|
+
_getDateFilter(): DateFilterFn<D>;
|
163
|
+
/** A reference to the overlay when the calendar is opened as a popup. */
|
164
|
+
private _popupRef;
|
165
|
+
/** A reference to the dialog when the calendar is opened as a dialog. */
|
166
|
+
private _dialogRef;
|
167
|
+
/** Reference to the component instantiated in popup mode. */
|
168
|
+
private _popupComponentRef;
|
169
|
+
/** The element that was focused before the datepicker was opened. */
|
170
|
+
private _focusedElementBeforeOpen;
|
171
|
+
/** Unique class that will be added to the backdrop so that the test harnesses can look it up. */
|
172
|
+
private _backdropHarnessClass;
|
173
|
+
/** The input element this datepicker is associated with. */
|
174
|
+
_datepickerInput: C;
|
175
|
+
/** Emits when the datepicker's state changes. */
|
176
|
+
readonly _stateChanges: Subject<void>;
|
177
|
+
constructor(_dialog: MatDialog, _overlay: Overlay, _ngZone: NgZone, _viewContainerRef: ViewContainerRef, scrollStrategy: any, _dateAdapter: DateAdapter<D>, _dir: Directionality, _document: any, _model: MatDateSelectionModel<S, D>);
|
178
|
+
ngOnChanges(changes: SimpleChanges): void;
|
179
|
+
ngOnDestroy(): void;
|
180
|
+
/** Selects the given date */
|
181
|
+
select(date: D): void;
|
182
|
+
/** Emits the selected year in multiyear view */
|
183
|
+
_selectYear(normalizedYear: D): void;
|
184
|
+
/** Emits selected month in year view */
|
185
|
+
_selectMonth(normalizedMonth: D): void;
|
186
|
+
/**
|
187
|
+
* Register an input with this datepicker.
|
188
|
+
* @param input The datepicker input to register with this datepicker.
|
189
|
+
* @returns Selection model that the input should hook itself up to.
|
190
|
+
*/
|
191
|
+
_registerInput(input: C): MatDateSelectionModel<S, D>;
|
192
|
+
/** Open the calendar. */
|
193
|
+
open(): void;
|
194
|
+
/** Close the calendar. */
|
195
|
+
close(): void;
|
196
|
+
/** Open the calendar as a dialog. */
|
197
|
+
private _openAsDialog;
|
198
|
+
/** Open the calendar as a popup. */
|
199
|
+
private _openAsPopup;
|
200
|
+
/** Forwards relevant values from the datepicker to the datepicker content inside the overlay. */
|
201
|
+
protected _forwardContentValues(instance: MatDatepickerContent<S, D>): void;
|
202
|
+
/** Create the popup. */
|
203
|
+
private _createPopup;
|
204
|
+
/** Destroys the current popup overlay. */
|
205
|
+
private _destroyPopup;
|
206
|
+
/** Sets the positions of the datepicker in dropdown mode based on the current configuration. */
|
207
|
+
private _setConnectedPositions;
|
208
|
+
}
|
209
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
7
|
+
*/
|
8
|
+
/** @docs-private */
|
9
|
+
export declare function createMissingDateImplError(provider: string): Error;
|
@@ -0,0 +1,136 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
7
|
+
*/
|
8
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
9
|
+
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator, ValidatorFn } from '@angular/forms';
|
10
|
+
import { Subject } from 'rxjs';
|
11
|
+
import { DateSelectionModelChange, ExtractDateTypeFromSelection, MatDateSelectionModel } from './date-selection-model';
|
12
|
+
import { DateAdapter } from './shared/adapter/date-adapter';
|
13
|
+
import { MatDateFormats } from './shared/adapter/date-formats';
|
14
|
+
/**
|
15
|
+
* An event used for datepicker input and change events. We don't always have access to a native
|
16
|
+
* input or change event because the event may have been triggered by the user clicking on the
|
17
|
+
* calendar popup. For consistency, we always use MatDatepickerInputEvent instead.
|
18
|
+
*/
|
19
|
+
export declare class MatDatepickerInputEvent<D, S = unknown> {
|
20
|
+
/** Reference to the datepicker input component that emitted the event. */
|
21
|
+
target: MatDatepickerInputBase<S, D>;
|
22
|
+
/** Reference to the native input element associated with the datepicker input. */
|
23
|
+
targetElement: HTMLElement;
|
24
|
+
/** The new value for the target datepicker input. */
|
25
|
+
value: D | null;
|
26
|
+
constructor(
|
27
|
+
/** Reference to the datepicker input component that emitted the event. */
|
28
|
+
target: MatDatepickerInputBase<S, D>,
|
29
|
+
/** Reference to the native input element associated with the datepicker input. */
|
30
|
+
targetElement: HTMLElement);
|
31
|
+
}
|
32
|
+
/** Function that can be used to filter out dates from a calendar. */
|
33
|
+
export declare type DateFilterFn<D> = (date: D | null) => boolean;
|
34
|
+
/** Base class for datepicker inputs. */
|
35
|
+
export declare abstract class MatDatepickerInputBase<S, D = ExtractDateTypeFromSelection<S>> implements ControlValueAccessor, AfterViewInit, OnChanges, OnDestroy, Validator {
|
36
|
+
protected _elementRef: ElementRef<HTMLInputElement>;
|
37
|
+
_dateAdapter: DateAdapter<D>;
|
38
|
+
private _dateFormats;
|
39
|
+
/** Whether the component has been initialized. */
|
40
|
+
private _isInitialized;
|
41
|
+
/** The value of the input. */
|
42
|
+
get value(): D | null;
|
43
|
+
set value(value: D | null);
|
44
|
+
protected _model: MatDateSelectionModel<S, D> | undefined;
|
45
|
+
/** Whether the datepicker-input is disabled. */
|
46
|
+
get disabled(): boolean;
|
47
|
+
set disabled(value: boolean);
|
48
|
+
private _disabled;
|
49
|
+
/** Emits when a `change` event is fired on this `<input>`. */
|
50
|
+
readonly dateChange: EventEmitter<MatDatepickerInputEvent<D, S>>;
|
51
|
+
/** Emits when an `input` event is fired on this `<input>`. */
|
52
|
+
readonly dateInput: EventEmitter<MatDatepickerInputEvent<D, S>>;
|
53
|
+
/** Emits when the value changes (either due to user input or programmatic change). */
|
54
|
+
_valueChange: EventEmitter<D>;
|
55
|
+
/** Emits when the internal state has changed */
|
56
|
+
stateChanges: Subject<void>;
|
57
|
+
_onTouched: () => void;
|
58
|
+
_validatorOnChange: () => void;
|
59
|
+
protected _cvaOnChange: (value: any) => void;
|
60
|
+
private _valueChangesSubscription;
|
61
|
+
private _localeSubscription;
|
62
|
+
/**
|
63
|
+
* Since the value is kept on the model which is assigned in an Input,
|
64
|
+
* we might get a value before we have a model. This property keeps track
|
65
|
+
* of the value until we have somewhere to assign it.
|
66
|
+
*/
|
67
|
+
private _pendingValue;
|
68
|
+
/** The form control validator for whether the input parses. */
|
69
|
+
private _parseValidator;
|
70
|
+
/** The form control validator for the date filter. */
|
71
|
+
private _filterValidator;
|
72
|
+
/** The form control validator for the min date. */
|
73
|
+
private _minValidator;
|
74
|
+
/** The form control validator for the max date. */
|
75
|
+
private _maxValidator;
|
76
|
+
/** Gets the base validator functions. */
|
77
|
+
protected _getValidators(): ValidatorFn[];
|
78
|
+
/** Gets the minimum date for the input. Used for validation. */
|
79
|
+
abstract _getMinDate(): D | null;
|
80
|
+
/** Gets the maximum date for the input. Used for validation. */
|
81
|
+
abstract _getMaxDate(): D | null;
|
82
|
+
/** Gets the date filter function. Used for validation. */
|
83
|
+
protected abstract _getDateFilter(): DateFilterFn<D> | undefined;
|
84
|
+
/** Registers a date selection model with the input. */
|
85
|
+
_registerModel(model: MatDateSelectionModel<S, D>): void;
|
86
|
+
/** Opens the popup associated with the input. */
|
87
|
+
protected abstract _openPopup(): void;
|
88
|
+
/** Assigns a value to the input's model. */
|
89
|
+
protected abstract _assignValueToModel(model: D | null): void;
|
90
|
+
/** Converts a value from the model into a native value for the input. */
|
91
|
+
protected abstract _getValueFromModel(modelValue: S): D | null;
|
92
|
+
/** Combined form control validator for this input. */
|
93
|
+
protected abstract _validator: ValidatorFn | null;
|
94
|
+
/**
|
95
|
+
* Callback that'll be invoked when the selection model is changed
|
96
|
+
* from somewhere that's not the current datepicker input.
|
97
|
+
*/
|
98
|
+
protected abstract _outsideValueChanged?: () => void;
|
99
|
+
/** Predicate that determines whether we're allowed to emit a particular change event. */
|
100
|
+
protected abstract _canEmitChangeEvent(event: DateSelectionModelChange<S>): boolean;
|
101
|
+
/** Whether the last value set on the input was valid. */
|
102
|
+
protected _lastValueValid: boolean;
|
103
|
+
constructor(_elementRef: ElementRef<HTMLInputElement>, _dateAdapter: DateAdapter<D>, _dateFormats: MatDateFormats);
|
104
|
+
ngAfterViewInit(): void;
|
105
|
+
ngOnChanges(changes: SimpleChanges): void;
|
106
|
+
ngOnDestroy(): void;
|
107
|
+
/** @docs-private */
|
108
|
+
registerOnValidatorChange(fn: () => void): void;
|
109
|
+
/** @docs-private */
|
110
|
+
validate(c: AbstractControl): ValidationErrors | null;
|
111
|
+
writeValue(value: D): void;
|
112
|
+
registerOnChange(fn: (value: any) => void): void;
|
113
|
+
registerOnTouched(fn: () => void): void;
|
114
|
+
setDisabledState(isDisabled: boolean): void;
|
115
|
+
_onKeydown(event: KeyboardEvent): void;
|
116
|
+
_onInput(value: string): void;
|
117
|
+
_onChange(): void;
|
118
|
+
/** Handles blur events on the input. */
|
119
|
+
_onBlur(): void;
|
120
|
+
/** Formats a value and sets it on the input element. */
|
121
|
+
protected _formatValue(value: D | null): void;
|
122
|
+
/** Assigns a value to the model. */
|
123
|
+
private _assignValue;
|
124
|
+
/** Whether a value is considered valid. */
|
125
|
+
private _isValidValue;
|
126
|
+
/**
|
127
|
+
* Checks whether a parent control is disabled. This is in place so that it can be overridden
|
128
|
+
* by inputs extending this one which can be placed inside of a group that can be disabled.
|
129
|
+
*/
|
130
|
+
protected _parentDisabled(): boolean;
|
131
|
+
}
|
132
|
+
/**
|
133
|
+
* Checks whether the `SimpleChanges` object from an `ngOnChanges`
|
134
|
+
* callback has any changes, accounting for date objects.
|
135
|
+
*/
|
136
|
+
export declare function dateInputsHaveChanged(changes: SimpleChanges, adapter: DateAdapter<unknown>): boolean;
|
@@ -0,0 +1,68 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
7
|
+
*/
|
8
|
+
import { ElementRef, InjectionToken } from '@angular/core';
|
9
|
+
import { ValidatorFn } from '@angular/forms';
|
10
|
+
import { MatDateFormats, ThemePalette } from '@angular/material/core';
|
11
|
+
import { MatFormField } from '@angular/material/form-field';
|
12
|
+
import { MatDatepicker } from './datepicker';
|
13
|
+
import { MatDatepickerControl } from './datepicker-base';
|
14
|
+
import { DateFilterFn, MatDatepickerInputBase } from './datepicker-input-base';
|
15
|
+
import { DateAdapter } from './shared/adapter/date-adapter';
|
16
|
+
/** @docs-private */
|
17
|
+
export declare const MAT_DATEPICKER_VALUE_ACCESSOR: any;
|
18
|
+
/** @docs-private */
|
19
|
+
export declare const MAT_DATEPICKER_VALIDATORS: any;
|
20
|
+
export declare const MAT_FORM_FIELD: InjectionToken<MatFormField>;
|
21
|
+
/** Directive used to connect an input to a MatDatepicker. */
|
22
|
+
export declare class MatDatepickerInput<D> extends MatDatepickerInputBase<D | null, D> implements MatDatepickerControl<D | null> {
|
23
|
+
private _formField;
|
24
|
+
/** The datepicker that this input is associated with. */
|
25
|
+
set gipiMatDatepicker(datepicker: MatDatepicker<D>);
|
26
|
+
_datepicker: MatDatepicker<D>;
|
27
|
+
/** The minimum valid date. */
|
28
|
+
get min(): D | null;
|
29
|
+
set min(value: D | null);
|
30
|
+
private _min;
|
31
|
+
/** The maximum valid date. */
|
32
|
+
get max(): D | null;
|
33
|
+
set max(value: D | null);
|
34
|
+
private _max;
|
35
|
+
/** Function that can be used to filter out dates within the datepicker. */
|
36
|
+
get dateFilter(): DateFilterFn<D | null>;
|
37
|
+
set dateFilter(value: DateFilterFn<D | null>);
|
38
|
+
private _dateFilter;
|
39
|
+
/** The combined form control validator for this input. */
|
40
|
+
protected _validator: ValidatorFn | null;
|
41
|
+
constructor(elementRef: ElementRef<HTMLInputElement>, dateAdapter: DateAdapter<D>, dateFormats: MatDateFormats, _formField: MatFormField);
|
42
|
+
/**
|
43
|
+
* Gets the element that the datepicker popup should be connected to.
|
44
|
+
* @return The element to connect the popup to.
|
45
|
+
*/
|
46
|
+
getConnectedOverlayOrigin(): ElementRef;
|
47
|
+
/** Returns the palette used by the input's form field, if any. */
|
48
|
+
getThemePalette(): ThemePalette;
|
49
|
+
/** Gets the value at which the calendar should start. */
|
50
|
+
getStartValue(): D | null;
|
51
|
+
/**
|
52
|
+
* @deprecated
|
53
|
+
* @breaking-change 8.0.0 Use `getConnectedOverlayOrigin` instead
|
54
|
+
*/
|
55
|
+
getPopupConnectionElementRef(): ElementRef;
|
56
|
+
/** Opens the associated datepicker. */
|
57
|
+
protected _openPopup(): void;
|
58
|
+
protected _getValueFromModel(modelValue: D | null): D | null;
|
59
|
+
protected _assignValueToModel(value: D | null): void;
|
60
|
+
/** Gets the input's minimum date. */
|
61
|
+
_getMinDate(): D;
|
62
|
+
/** Gets the input's maximum date. */
|
63
|
+
_getMaxDate(): D;
|
64
|
+
/** Gets the input's date filtering function. */
|
65
|
+
protected _getDateFilter(): DateFilterFn<D>;
|
66
|
+
protected _canEmitChangeEvent(): boolean;
|
67
|
+
protected _outsideValueChanged: undefined;
|
68
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
7
|
+
*/
|
8
|
+
import { Subject } from 'rxjs';
|
9
|
+
/** Datepicker data that requires internationalization. */
|
10
|
+
export declare class MatDatepickerIntl {
|
11
|
+
/**
|
12
|
+
* Stream that emits whenever the labels here are changed. Use this to notify
|
13
|
+
* components if the labels have changed after initialization.
|
14
|
+
*/
|
15
|
+
readonly changes: Subject<void>;
|
16
|
+
/** A label for the calendar popup (used by screen readers). */
|
17
|
+
calendarLabel: string;
|
18
|
+
/** A label for the button used to open the calendar popup (used by screen readers). */
|
19
|
+
openCalendarLabel: string;
|
20
|
+
/** A label for the previous month button (used by screen readers). */
|
21
|
+
prevMonthLabel: string;
|
22
|
+
/** A label for the next month button (used by screen readers). */
|
23
|
+
nextMonthLabel: string;
|
24
|
+
/** A label for the previous year button (used by screen readers). */
|
25
|
+
prevYearLabel: string;
|
26
|
+
/** A label for the next year button (used by screen readers). */
|
27
|
+
nextYearLabel: string;
|
28
|
+
/** A label for the previous multi-year button (used by screen readers). */
|
29
|
+
prevMultiYearLabel: string;
|
30
|
+
/** A label for the next multi-year button (used by screen readers). */
|
31
|
+
nextMultiYearLabel: string;
|
32
|
+
/** A label for the 'switch to month view' button (used by screen readers). */
|
33
|
+
switchToMonthViewLabel: string;
|
34
|
+
/** A label for the 'switch to year view' button (used by screen readers). */
|
35
|
+
switchToMultiYearViewLabel: string;
|
36
|
+
/** Formats a range of years. */
|
37
|
+
formatYearRange(start: string, end: string): string;
|
38
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
7
|
+
*/
|
8
|
+
import { AfterContentInit, ChangeDetectorRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
9
|
+
import { MatButton } from '@angular/material/button';
|
10
|
+
import { MatDatepickerBase, MatDatepickerControl } from './datepicker-base';
|
11
|
+
import { MatDatepickerIntl } from './datepicker-intl';
|
12
|
+
/** Can be used to override the icon of a `matDatepickerToggle`. */
|
13
|
+
export declare class MatDatepickerToggleIcon {
|
14
|
+
}
|
15
|
+
export declare class MatDatepickerToggle<D> implements AfterContentInit, OnChanges, OnDestroy {
|
16
|
+
_intl: MatDatepickerIntl;
|
17
|
+
private _changeDetectorRef;
|
18
|
+
private _stateChanges;
|
19
|
+
/** Datepicker instance that the button will toggle. */
|
20
|
+
datepicker: MatDatepickerBase<MatDatepickerControl<any>, D>;
|
21
|
+
/** Tabindex for the toggle. */
|
22
|
+
tabIndex: number | null;
|
23
|
+
/** Whether the toggle button is disabled. */
|
24
|
+
get disabled(): boolean;
|
25
|
+
set disabled(value: boolean);
|
26
|
+
private _disabled;
|
27
|
+
/** Whether ripples on the toggle should be disabled. */
|
28
|
+
disableRipple: boolean;
|
29
|
+
/** Custom icon set by the consumer. */
|
30
|
+
_customIcon: MatDatepickerToggleIcon;
|
31
|
+
/** Underlying button element. */
|
32
|
+
_button: MatButton;
|
33
|
+
constructor(_intl: MatDatepickerIntl, _changeDetectorRef: ChangeDetectorRef, defaultTabIndex: string);
|
34
|
+
ngOnChanges(changes: SimpleChanges): void;
|
35
|
+
ngOnDestroy(): void;
|
36
|
+
ngAfterContentInit(): void;
|
37
|
+
_open(event: Event): void;
|
38
|
+
private _watchStateChanges;
|
39
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
7
|
+
*/
|
8
|
+
import { MatDatepickerBase, MatDatepickerControl } from './datepicker-base';
|
9
|
+
/** Component responsible for managing the datepicker popup/dialog. */
|
10
|
+
export declare class MatDatepicker<D> extends MatDatepickerBase<MatDatepickerControl<D>, D | null, D> {
|
11
|
+
}
|
@@ -0,0 +1,120 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
4
|
+
*
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
7
|
+
*/
|
8
|
+
import { Directionality } from '@angular/cdk/bidi';
|
9
|
+
import { AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
10
|
+
import { MatDateFormats } from '@angular/material/core';
|
11
|
+
import { MatCalendarBody, MatCalendarCell, MatCalendarCellClassFunction, MatCalendarUserEvent } from './calendar-body';
|
12
|
+
import { MatDateRangeSelectionStrategy } from './date-range-selection-strategy';
|
13
|
+
import { DateRange } from './date-selection-model';
|
14
|
+
import { DateAdapter } from './shared/adapter/date-adapter';
|
15
|
+
/**
|
16
|
+
* An internal component used to display a single month in the datepicker.
|
17
|
+
* @docs-private
|
18
|
+
*/
|
19
|
+
export declare class MatMonthView<D> implements AfterContentInit, OnChanges, OnDestroy {
|
20
|
+
private _changeDetectorRef;
|
21
|
+
private _dateFormats;
|
22
|
+
_dateAdapter: DateAdapter<D>;
|
23
|
+
private _dir?;
|
24
|
+
private _rangeStrategy?;
|
25
|
+
private _rerenderSubscription;
|
26
|
+
/**
|
27
|
+
* The date to display in this month view (everything other than the month and year is ignored).
|
28
|
+
*/
|
29
|
+
get activeDate(): D;
|
30
|
+
set activeDate(value: D);
|
31
|
+
private _activeDate;
|
32
|
+
/** The currently selected date. */
|
33
|
+
get selected(): DateRange<D> | D | null;
|
34
|
+
set selected(value: DateRange<D> | D | null);
|
35
|
+
private _selected;
|
36
|
+
/** The minimum selectable date. */
|
37
|
+
get minDate(): D | null;
|
38
|
+
set minDate(value: D | null);
|
39
|
+
private _minDate;
|
40
|
+
/** The maximum selectable date. */
|
41
|
+
get maxDate(): D | null;
|
42
|
+
set maxDate(value: D | null);
|
43
|
+
private _maxDate;
|
44
|
+
/** Function used to filter which dates are selectable. */
|
45
|
+
dateFilter: (date: D) => boolean;
|
46
|
+
/** Function that can be used to add custom CSS classes to dates. */
|
47
|
+
dateClass: MatCalendarCellClassFunction<D>;
|
48
|
+
/** Start of the comparison range. */
|
49
|
+
comparisonStart: D | null;
|
50
|
+
/** End of the comparison range. */
|
51
|
+
comparisonEnd: D | null;
|
52
|
+
/** Emits when a new date is selected. */
|
53
|
+
readonly selectedChange: EventEmitter<D | null>;
|
54
|
+
/** Emits when any date is selected. */
|
55
|
+
readonly _userSelection: EventEmitter<MatCalendarUserEvent<D | null>>;
|
56
|
+
/** Emits when any date is activated. */
|
57
|
+
readonly activeDateChange: EventEmitter<D>;
|
58
|
+
/** The body of calendar table */
|
59
|
+
_matCalendarBody: MatCalendarBody;
|
60
|
+
/** The label for this month (e.g. "January 2017"). */
|
61
|
+
_monthLabel: string;
|
62
|
+
/** Grid of calendar cells representing the dates of the month. */
|
63
|
+
_weeks: MatCalendarCell[][];
|
64
|
+
/** The number of blank cells in the first row before the 1st of the month. */
|
65
|
+
_firstWeekOffset: number;
|
66
|
+
/** Start value of the currently-shown date range. */
|
67
|
+
_rangeStart: number | null;
|
68
|
+
/** End value of the currently-shown date range. */
|
69
|
+
_rangeEnd: number | null;
|
70
|
+
/** Start value of the currently-shown comparison date range. */
|
71
|
+
_comparisonRangeStart: number | null;
|
72
|
+
/** End value of the currently-shown comparison date range. */
|
73
|
+
_comparisonRangeEnd: number | null;
|
74
|
+
/** Start of the preview range. */
|
75
|
+
_previewStart: number | null;
|
76
|
+
/** End of the preview range. */
|
77
|
+
_previewEnd: number | null;
|
78
|
+
/** Whether the user is currently selecting a range of dates. */
|
79
|
+
_isRange: boolean;
|
80
|
+
/** The date of the month that today falls on. Null if today is in another month. */
|
81
|
+
_todayDate: number | null;
|
82
|
+
/** The names of the weekdays. */
|
83
|
+
_weekdays: {
|
84
|
+
long: string;
|
85
|
+
narrow: string;
|
86
|
+
}[];
|
87
|
+
constructor(_changeDetectorRef: ChangeDetectorRef, _dateFormats: MatDateFormats, _dateAdapter: DateAdapter<D>, _dir?: Directionality, _rangeStrategy?: MatDateRangeSelectionStrategy<D>);
|
88
|
+
ngAfterContentInit(): void;
|
89
|
+
ngOnChanges(changes: SimpleChanges): void;
|
90
|
+
ngOnDestroy(): void;
|
91
|
+
/** Handles when a new date is selected. */
|
92
|
+
_dateSelected(event: MatCalendarUserEvent<number>): void;
|
93
|
+
/** Handles keydown events on the calendar body when calendar is in month view. */
|
94
|
+
_handleCalendarBodyKeydown(event: KeyboardEvent): void;
|
95
|
+
/** Initializes this month view. */
|
96
|
+
_init(): void;
|
97
|
+
/** Focuses the active cell after the microtask queue is empty. */
|
98
|
+
_focusActiveCell(movePreview?: boolean): void;
|
99
|
+
/** Called when the user has activated a new cell and the preview needs to be updated. */
|
100
|
+
_previewChanged({ event, value: cell }: MatCalendarUserEvent<MatCalendarCell<D> | null>): void;
|
101
|
+
/** Initializes the weekdays. */
|
102
|
+
private _initWeekdays;
|
103
|
+
/** Creates MatCalendarCells for the dates in this month. */
|
104
|
+
private _createWeekCells;
|
105
|
+
/** Date filter for the month */
|
106
|
+
private _shouldEnableDate;
|
107
|
+
/**
|
108
|
+
* Gets the date in this month that the given Date falls on.
|
109
|
+
* Returns null if the given Date is in another month.
|
110
|
+
*/
|
111
|
+
private _getDateInCurrentMonth;
|
112
|
+
/** Checks whether the 2 dates are non-null and fall within the same month of the same year. */
|
113
|
+
private _hasSameMonthAndYear;
|
114
|
+
/** Gets the value that will be used to one cell to another. */
|
115
|
+
private _getCellCompareValue;
|
116
|
+
/** Determines whether the user has the RTL layout direction. */
|
117
|
+
private _isRtl;
|
118
|
+
/** Sets the current range based on a model value. */
|
119
|
+
private _setRanges;
|
120
|
+
}
|