@energycap/components 0.42.4-esbuild.20250131-1219 → 0.42.4-esbuild.20250131-1256
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/energycap-components.mjs +5 -0
- package/esm2022/lib/components.module.mjs +423 -0
- package/esm2022/lib/controls/banner/banner.component.mjs +109 -0
- package/esm2022/lib/controls/button/button.component.mjs +106 -0
- package/esm2022/lib/controls/button/copy-button-base.directive.mjs +67 -0
- package/esm2022/lib/controls/button/copy-button.directive.mjs +28 -0
- package/esm2022/lib/controls/button/copy-table-button.directive.mjs +43 -0
- package/esm2022/lib/controls/calendar/calendar-item.component.mjs +91 -0
- package/esm2022/lib/controls/calendar/calendar.component.mjs +248 -0
- package/esm2022/lib/controls/calendar/calendar.types.mjs +2 -0
- package/esm2022/lib/controls/checkbox/checkbox.component.mjs +140 -0
- package/esm2022/lib/controls/collapsible-toggle/collapsible-toggle.component.mjs +38 -0
- package/esm2022/lib/controls/combobox/combobox.component.mjs +879 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/date-input-selection-strategy-base.mjs +57 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/day-selection-strategy.mjs +62 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/last-28-days-selection-strategy.mjs +100 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/last-7-days-selection-strategy.mjs +101 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/month-selection-strategy.mjs +76 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/quarter-selection-strategy.mjs +79 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/range-selection-strategy.mjs +210 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/year-selection-strategy.mjs +81 -0
- package/esm2022/lib/controls/date-input/date-input.component.mjs +464 -0
- package/esm2022/lib/controls/date-input/date-input.types.mjs +44 -0
- package/esm2022/lib/controls/dropdown/dropdown.component.mjs +243 -0
- package/esm2022/lib/controls/file-upload/file-upload.component.mjs +261 -0
- package/esm2022/lib/controls/form-control/form-control.component.mjs +98 -0
- package/esm2022/lib/controls/form-control-base.mjs +151 -0
- package/esm2022/lib/controls/form-control-label/form-control-label.component.mjs +136 -0
- package/esm2022/lib/controls/form-group/form-group.component.mjs +261 -0
- package/esm2022/lib/controls/help-popover/help-popover.component.mjs +31 -0
- package/esm2022/lib/controls/item-picker/item-picker.component.mjs +329 -0
- package/esm2022/lib/controls/link-button/link-button.component.mjs +11 -0
- package/esm2022/lib/controls/menu/menu.component.mjs +485 -0
- package/esm2022/lib/controls/navigation/link-item.mjs +2 -0
- package/esm2022/lib/controls/navigation/nav-group.mjs +39 -0
- package/esm2022/lib/controls/navigation/nav-item-active.directive.mjs +92 -0
- package/esm2022/lib/controls/navigation/nav-item.mjs +2 -0
- package/esm2022/lib/controls/numericbox/numericbox.component.mjs +372 -0
- package/esm2022/lib/controls/popover/popover.component.mjs +117 -0
- package/esm2022/lib/controls/radio-button/radio-button-option.mjs +3 -0
- package/esm2022/lib/controls/radio-button/radio-button.component.mjs +82 -0
- package/esm2022/lib/controls/select/select.component.mjs +88 -0
- package/esm2022/lib/controls/tabs/tabs.component.mjs +47 -0
- package/esm2022/lib/controls/textbox/textbox.component.mjs +155 -0
- package/esm2022/lib/core/cache.service.mjs +105 -0
- package/esm2022/lib/core/custom-validators.mjs +29 -0
- package/esm2022/lib/core/date-time-helper.mjs +228 -0
- package/esm2022/lib/core/error.service.mjs +61 -0
- package/esm2022/lib/core/router-helper.service.mjs +111 -0
- package/esm2022/lib/core/scroll.service.mjs +89 -0
- package/esm2022/lib/core/telemetry-tracker.service.mjs +16 -0
- package/esm2022/lib/core/telemetry.service.mjs +38 -0
- package/esm2022/lib/core/validation-message.service.mjs +185 -0
- package/esm2022/lib/core/validation-patterns.mjs +31 -0
- package/esm2022/lib/core/window.service.mjs +186 -0
- package/esm2022/lib/display/app-bar/app-bar.component.mjs +46 -0
- package/esm2022/lib/display/avatar/avatar.component.mjs +67 -0
- package/esm2022/lib/display/avatar/avatar.service.mjs +64 -0
- package/esm2022/lib/display/confirm/confirm.component.mjs +168 -0
- package/esm2022/lib/display/dialog/dialog-content.mjs +2 -0
- package/esm2022/lib/display/dialog/dialog-group/dialog-group.component.mjs +63 -0
- package/esm2022/lib/display/dialog/dialog-types.mjs +77 -0
- package/esm2022/lib/display/dialog/dialog.component.mjs +281 -0
- package/esm2022/lib/display/dialog/dialog.service.mjs +71 -0
- package/esm2022/lib/display/help/help-types.mjs +2 -0
- package/esm2022/lib/display/hierarchy/hierarchy-base.mjs +111 -0
- package/esm2022/lib/display/hierarchy/hierarchy-mocks.spec.mjs +54 -0
- package/esm2022/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.mjs +61 -0
- package/esm2022/lib/display/item-display/item-display.component.mjs +81 -0
- package/esm2022/lib/display/json-display/json-display.component.mjs +47 -0
- package/esm2022/lib/display/resizable/resizable-base.mjs +120 -0
- package/esm2022/lib/display/resizable/resizable.component.mjs +57 -0
- package/esm2022/lib/display/spinner/spinner.component.mjs +12 -0
- package/esm2022/lib/display/splash/splash.component.mjs +42 -0
- package/esm2022/lib/display/splash/splash.service.mjs +35 -0
- package/esm2022/lib/display/table/resizable-column.component.mjs +20 -0
- package/esm2022/lib/display/table/resizable-table.directive.mjs +227 -0
- package/esm2022/lib/display/table/searchable-table.component.mjs +342 -0
- package/esm2022/lib/display/table/table-detail-row.component.mjs +28 -0
- package/esm2022/lib/display/table/table-locked-column.component.mjs +58 -0
- package/esm2022/lib/display/table/table-master-header-row.component.mjs +14 -0
- package/esm2022/lib/display/table/table-master-row.component.mjs +163 -0
- package/esm2022/lib/display/table/table-pagination.component.mjs +155 -0
- package/esm2022/lib/display/table/table-selectable-row.component.mjs +235 -0
- package/esm2022/lib/display/table/table.component.mjs +249 -0
- package/esm2022/lib/display/tags/tag.mjs +18 -0
- package/esm2022/lib/display/tags/tags.component.mjs +77 -0
- package/esm2022/lib/display/toast/toast/toast.component.mjs +77 -0
- package/esm2022/lib/display/toast/toast-types.mjs +8 -0
- package/esm2022/lib/display/toast/toast.service.mjs +35 -0
- package/esm2022/lib/display/toast/toaster/toaster.component.mjs +114 -0
- package/esm2022/lib/display/tooltip/tooltip.component.mjs +28 -0
- package/esm2022/lib/display/tooltip/tooltip.service.mjs +78 -0
- package/esm2022/lib/display/tooltip-directive/tooltip.directive.mjs +173 -0
- package/esm2022/lib/display/tour/tour-types.mjs +34 -0
- package/esm2022/lib/display/tour/tour.component.mjs +398 -0
- package/esm2022/lib/display/tour/tour.service.mjs +75 -0
- package/esm2022/lib/display/tree/tree.component.mjs +135 -0
- package/esm2022/lib/display/view-overlay/view-overlay.component.mjs +58 -0
- package/esm2022/lib/shared/directives/click-area-for/click-area-for.directive.mjs +32 -0
- package/esm2022/lib/shared/directives/if-viewport-width/if-viewport-width.directive.mjs +111 -0
- package/esm2022/lib/shared/directives/keyboard-nav-container/keyboard-nav-container.directive.mjs +100 -0
- package/esm2022/lib/shared/directives/popup/popup-container.directive.mjs +166 -0
- package/esm2022/lib/shared/display/pipes/date-display.pipe.mjs +50 -0
- package/esm2022/lib/shared/display/pipes/highlight-text.pipe.mjs +30 -0
- package/esm2022/lib/shared/display/pipes/relative-date.pipe.mjs +62 -0
- package/esm2022/lib/shared/display/pipes/row-count.pipe.mjs +48 -0
- package/esm2022/lib/shared/display/pipes/time-display.pipe.mjs +41 -0
- package/esm2022/lib/shared/display.mjs +6 -0
- package/esm2022/lib/shared/form-group.helper.mjs +67 -0
- package/esm2022/lib/shared/json-helper.mjs +19 -0
- package/esm2022/lib/shared/lodash-helper.mjs +52 -0
- package/esm2022/lib/shared/page/page-base/page-base.component.mjs +387 -0
- package/esm2022/lib/shared/page/page-statuses.mjs +23 -0
- package/esm2022/lib/shared/page/page-title/page-title.component.mjs +23 -0
- package/esm2022/lib/shared/page/page-view/page-view.component.mjs +147 -0
- package/esm2022/lib/shared/testing/copy-button-base-test-injector-factory.spec.mjs +17 -0
- package/esm2022/lib/shared/testing/hierarchy-base-test-injector-factory.spec.mjs +17 -0
- package/esm2022/lib/shared/testing/page-base-component-test-helper.spec.mjs +38 -0
- package/esm2022/lib/shared/testing/page-base-component-test-injector-factory.spec.mjs +98 -0
- package/esm2022/lib/shared/testing/public-mocks.spec.mjs +148 -0
- package/esm2022/lib/shared/testing/spy-factory.spec.mjs +40 -0
- package/esm2022/lib/shared/testing/translation-mocks.spec.mjs +57 -0
- package/esm2022/lib/shared/user-preference.service.mjs +17 -0
- package/esm2022/lib/shared/wizard/wizard-base/wizard-base.component.mjs +246 -0
- package/esm2022/lib/shared/wizard/wizard-buttons/wizard-buttons.component.mjs +68 -0
- package/esm2022/lib/shared/wizard/wizard-progress/wizard-progress.component.mjs +18 -0
- package/esm2022/public-api.mjs +117 -0
- package/fesm2022/energycap-components.mjs +13219 -0
- package/fesm2022/energycap-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components.module.d.ts +92 -0
- package/lib/controls/banner/banner.component.d.ts +50 -0
- package/lib/controls/button/button.component.d.ts +78 -0
- package/lib/controls/button/copy-button-base.directive.d.ts +20 -0
- package/lib/controls/button/copy-button.directive.d.ts +14 -0
- package/lib/controls/button/copy-table-button.directive.d.ts +19 -0
- package/lib/controls/calendar/calendar-item.component.d.ts +22 -0
- package/lib/controls/calendar/calendar.component.d.ts +52 -0
- package/lib/controls/calendar/calendar.types.d.ts +11 -0
- package/lib/controls/checkbox/checkbox.component.d.ts +65 -0
- package/lib/controls/collapsible-toggle/collapsible-toggle.component.d.ts +25 -0
- package/lib/controls/combobox/combobox.component.d.ts +418 -0
- package/lib/controls/date-input/date-input-selection-strategies/date-input-selection-strategy-base.d.ts +42 -0
- package/lib/controls/date-input/date-input-selection-strategies/day-selection-strategy.d.ts +21 -0
- package/lib/controls/date-input/date-input-selection-strategies/last-28-days-selection-strategy.d.ts +21 -0
- package/lib/controls/date-input/date-input-selection-strategies/last-7-days-selection-strategy.d.ts +21 -0
- package/lib/controls/date-input/date-input-selection-strategies/month-selection-strategy.d.ts +18 -0
- package/lib/controls/date-input/date-input-selection-strategies/quarter-selection-strategy.d.ts +18 -0
- package/lib/controls/date-input/date-input-selection-strategies/range-selection-strategy.d.ts +21 -0
- package/lib/controls/date-input/date-input-selection-strategies/year-selection-strategy.d.ts +20 -0
- package/lib/controls/date-input/date-input.component.d.ts +115 -0
- package/lib/controls/date-input/date-input.types.d.ts +62 -0
- package/lib/controls/dropdown/dropdown.component.d.ts +161 -0
- package/lib/controls/file-upload/file-upload.component.d.ts +124 -0
- package/lib/controls/form-control/form-control.component.d.ts +28 -0
- package/lib/controls/form-control-base.d.ts +110 -0
- package/lib/controls/form-control-label/form-control-label.component.d.ts +73 -0
- package/lib/controls/form-group/form-group.component.d.ts +105 -0
- package/lib/controls/help-popover/help-popover.component.d.ts +11 -0
- package/lib/controls/item-picker/item-picker.component.d.ts +164 -0
- package/lib/controls/link-button/link-button.component.d.ts +5 -0
- package/lib/controls/menu/menu.component.d.ts +255 -0
- package/lib/controls/navigation/link-item.d.ts +32 -0
- package/lib/controls/navigation/nav-group.d.ts +18 -0
- package/lib/controls/navigation/nav-item-active.directive.d.ts +42 -0
- package/lib/controls/navigation/nav-item.d.ts +31 -0
- package/lib/controls/numericbox/numericbox.component.d.ts +148 -0
- package/lib/controls/popover/popover.component.d.ts +51 -0
- package/lib/controls/radio-button/radio-button-option.d.ts +19 -0
- package/lib/controls/radio-button/radio-button.component.d.ts +53 -0
- package/lib/controls/select/select.component.d.ts +44 -0
- package/lib/controls/tabs/tabs.component.d.ts +30 -0
- package/lib/controls/textbox/textbox.component.d.ts +107 -0
- package/lib/core/cache.service.d.ts +33 -0
- package/lib/core/custom-validators.d.ts +20 -0
- package/lib/core/date-time-helper.d.ts +101 -0
- package/lib/core/error.service.d.ts +20 -0
- package/lib/core/router-helper.service.d.ts +48 -0
- package/lib/core/scroll.service.d.ts +36 -0
- package/lib/core/telemetry-tracker.service.d.ts +13 -0
- package/lib/core/telemetry.service.d.ts +31 -0
- package/lib/core/validation-message.service.d.ts +26 -0
- package/lib/core/validation-patterns.d.ts +22 -0
- package/lib/core/window.service.d.ts +116 -0
- package/lib/display/app-bar/app-bar.component.d.ts +20 -0
- package/lib/display/avatar/avatar.component.d.ts +35 -0
- package/lib/display/avatar/avatar.service.d.ts +24 -0
- package/lib/display/confirm/confirm.component.d.ts +123 -0
- package/lib/display/dialog/dialog-content.d.ts +19 -0
- package/lib/display/dialog/dialog-group/dialog-group.component.d.ts +32 -0
- package/lib/display/dialog/dialog-types.d.ts +130 -0
- package/lib/display/dialog/dialog.component.d.ts +120 -0
- package/lib/display/dialog/dialog.service.d.ts +48 -0
- package/lib/display/help/help-types.d.ts +33 -0
- package/lib/display/hierarchy/hierarchy-base.d.ts +97 -0
- package/lib/display/hierarchy/hierarchy-mocks.spec.d.ts +53 -0
- package/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.d.ts +34 -0
- package/lib/display/item-display/item-display.component.d.ts +43 -0
- package/lib/display/json-display/json-display.component.d.ts +16 -0
- package/lib/display/resizable/resizable-base.d.ts +67 -0
- package/lib/display/resizable/resizable.component.d.ts +31 -0
- package/lib/display/spinner/spinner.component.d.ts +5 -0
- package/lib/display/splash/splash.component.d.ts +16 -0
- package/lib/display/splash/splash.service.d.ts +22 -0
- package/lib/display/table/resizable-column.component.d.ts +10 -0
- package/lib/display/table/resizable-table.directive.d.ts +93 -0
- package/lib/display/table/searchable-table.component.d.ts +206 -0
- package/lib/display/table/table-detail-row.component.d.ts +8 -0
- package/lib/display/table/table-locked-column.component.d.ts +20 -0
- package/lib/display/table/table-master-header-row.component.d.ts +9 -0
- package/lib/display/table/table-master-row.component.d.ts +113 -0
- package/lib/display/table/table-pagination.component.d.ts +91 -0
- package/lib/display/table/table-selectable-row.component.d.ts +102 -0
- package/lib/display/table/table.component.d.ts +121 -0
- package/lib/display/tags/tag.d.ts +18 -0
- package/lib/display/tags/tags.component.d.ts +48 -0
- package/lib/display/toast/toast/toast.component.d.ts +23 -0
- package/lib/display/toast/toast-types.d.ts +24 -0
- package/lib/display/toast/toast.service.d.ts +20 -0
- package/lib/display/toast/toaster/toaster.component.d.ts +35 -0
- package/lib/display/tooltip/tooltip.component.d.ts +70 -0
- package/lib/display/tooltip/tooltip.service.d.ts +16 -0
- package/lib/display/tooltip-directive/tooltip.directive.d.ts +44 -0
- package/lib/display/tour/tour-types.d.ts +70 -0
- package/lib/display/tour/tour.component.d.ts +147 -0
- package/lib/display/tour/tour.service.d.ts +38 -0
- package/lib/display/tree/tree.component.d.ts +75 -0
- package/lib/display/view-overlay/view-overlay.component.d.ts +38 -0
- package/lib/shared/directives/click-area-for/click-area-for.directive.d.ts +14 -0
- package/lib/shared/directives/if-viewport-width/if-viewport-width.directive.d.ts +60 -0
- package/lib/shared/directives/keyboard-nav-container/keyboard-nav-container.directive.d.ts +23 -0
- package/lib/shared/directives/popup/popup-container.directive.d.ts +101 -0
- package/lib/shared/display/pipes/date-display.pipe.d.ts +21 -0
- package/lib/shared/display/pipes/highlight-text.pipe.d.ts +9 -0
- package/lib/shared/display/pipes/relative-date.pipe.d.ts +36 -0
- package/lib/shared/display/pipes/row-count.pipe.d.ts +23 -0
- package/lib/shared/display/pipes/time-display.pipe.d.ts +18 -0
- package/lib/shared/display.d.ts +42 -0
- package/lib/shared/form-group.helper.d.ts +31 -0
- package/lib/shared/json-helper.d.ts +7 -0
- package/lib/shared/lodash-helper.d.ts +18 -0
- package/lib/shared/page/page-base/page-base.component.d.ts +259 -0
- package/lib/shared/page/page-statuses.d.ts +13 -0
- package/lib/shared/page/page-title/page-title.component.d.ts +9 -0
- package/lib/shared/page/page-view/page-view.component.d.ts +102 -0
- package/lib/shared/testing/copy-button-base-test-injector-factory.spec.d.ts +4 -0
- package/lib/shared/testing/hierarchy-base-test-injector-factory.spec.d.ts +4 -0
- package/lib/shared/testing/page-base-component-test-helper.spec.d.ts +30 -0
- package/lib/shared/testing/page-base-component-test-injector-factory.spec.d.ts +28 -0
- package/lib/shared/testing/public-mocks.spec.d.ts +90 -0
- package/lib/shared/testing/spy-factory.spec.d.ts +27 -0
- package/lib/shared/testing/translation-mocks.spec.d.ts +30 -0
- package/lib/shared/user-preference.service.d.ts +13 -0
- package/lib/shared/wizard/wizard-base/wizard-base.component.d.ts +134 -0
- package/lib/shared/wizard/wizard-buttons/wizard-buttons.component.d.ts +27 -0
- package/lib/shared/wizard/wizard-progress/wizard-progress.component.d.ts +10 -0
- package/package.json +1 -5
- package/public-api.d.ts +113 -0
- package/schematics/collection.json +10 -0
- package/schematics/rxjs-7-upgrade/index.d.ts +3 -0
- package/schematics/rxjs-7-upgrade/index.js +68 -0
- package/schematics/rxjs-7-upgrade/index.js.map +1 -0
- package/schematics/rxjs-7-upgrade/schema.d.ts +4 -0
- package/schematics/rxjs-7-upgrade/schema.js +3 -0
- package/schematics/rxjs-7-upgrade/schema.js.map +1 -0
- package/schematics/rxjs-7-upgrade/schema.json +14 -0
- package/schematics/utilities/typescript.d.ts +7 -0
- package/schematics/utilities/typescript.js +42 -0
- package/schematics/utilities/typescript.js.map +1 -0
- package/schematics/utilities/workspace.d.ts +8 -0
- package/schematics/utilities/workspace.js +72 -0
- package/schematics/utilities/workspace.js.map +1 -0
- package/src/assets/images/email-icon.png +0 -0
- package/src/assets/images/email-logo.png +0 -0
- package/src/assets/images/favicon-ech.svg +7 -0
- package/src/assets/images/favicon-esa.svg +6 -0
- package/src/assets/images/favicon-eum.svg +6 -0
- package/src/assets/images/favicon.svg +5 -0
- package/src/assets/images/icon-carbonhub.svg +10 -0
- package/src/assets/images/icon-eum.svg +5 -0
- package/src/assets/images/icon-ucp.svg +5 -0
- package/src/assets/images/icon-wattics.svg +5 -0
- package/src/assets/images/icon.svg +4 -0
- package/src/assets/images/logo.svg +3 -0
- package/src/assets/images/splash.gif +0 -0
- package/src/assets/locales/en_US.json +59 -0
- package/src/assets/scripts/unsupported-browser.js +17 -0
- package/src/styles/_base.scss +38 -0
- package/src/styles/_colors.scss +96 -0
- package/src/styles/_core.scss +4 -0
- package/src/styles/_functions.scss +114 -0
- package/src/styles/_global-variables.scss +232 -0
- package/src/styles/_icons.scss +24 -0
- package/src/styles/bootstrap/_grid.scss +34 -0
- package/src/styles/bootstrap/_reboot.scss +323 -0
- package/src/styles/components/_card.scss +21 -0
- package/src/styles/components/_link-icons.scss +38 -0
- package/src/styles/components/_splash.scss +57 -0
- package/src/styles/components/_unsupported-browsers.scss +24 -0
- package/src/styles/email/_email-base.scss +228 -0
- package/src/styles/email/email.scss +43 -0
- package/src/styles/index.scss +27 -0
- package/src/styles/mixins/_animations.scss +18 -0
- package/src/styles/mixins/_button-base.scss +185 -0
- package/src/styles/mixins/_card-base.scss +40 -0
- package/src/styles/mixins/_common.scss +52 -0
- package/src/styles/mixins/_dialog-base.scss +96 -0
- package/src/styles/mixins/_form-control-base.scss +641 -0
- package/src/styles/mixins/_login.scss +74 -0
- package/src/styles/mixins/_menu-base.scss +153 -0
- package/src/styles/mixins/_overlay-base.scss +33 -0
- package/src/styles/mixins/_resizable-base.scss +57 -0
- package/src/styles/mixins/_spinner-base.scss +34 -0
- package/src/styles/mixins/_table-base.scss +298 -0
- package/src/styles/mixins/_tabs-base.scss +110 -0
- package/src/styles/mixins/_tags-base.scss +116 -0
- package/src/styles/mixins/_text.scss +89 -0
- package/src/styles/mixins.scss +15 -0
- package/src/styles/utilities/_borders.scss +30 -0
- package/src/styles/utilities/_common.scss +49 -0
- package/src/styles/utilities/_layout.scss +116 -0
- package/src/styles/utilities/_spacing.scss +65 -0
- package/src/styles/utilities/_text.scss +139 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
import { ElementRef, Renderer2, OnInit, OnDestroy, EventEmitter } from '@angular/core';
|
2
|
+
import { Router, ActivatedRoute, Params } from '@angular/router';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class NavItemActiveDirective implements OnInit, OnDestroy {
|
5
|
+
private router;
|
6
|
+
private el;
|
7
|
+
private renderer;
|
8
|
+
private route;
|
9
|
+
/** The CSS class to apply to the host element when the url is active */
|
10
|
+
classValue?: string;
|
11
|
+
/**
|
12
|
+
* Determines whether the directive will try to make an exact match on the url or not
|
13
|
+
* If false, the directive will add the active class if the first part of the url matches
|
14
|
+
* the active route.
|
15
|
+
* see: https://angular.io/api/router/Router#isactive
|
16
|
+
*/
|
17
|
+
set exact(value: boolean | undefined);
|
18
|
+
private _exact;
|
19
|
+
/** Router link query params */
|
20
|
+
queryParams?: Params | null;
|
21
|
+
/**
|
22
|
+
* The url of the NavItem to check for activeness. Convert the item url into a
|
23
|
+
* UrlTree relative to the ActivatedRoute so router#isActive works even with relative urls.
|
24
|
+
* See Angular's [routerLink](https://github.com/angular/angular/blob/8282e15c2becbe42a49befa07d6407247e8243d8/packages/router/src/directives/router_link.ts#L249)
|
25
|
+
* and [routerLinkActive](https://github.com/angular/angular/blob/8282e15c2becbe42a49befa07d6407247e8243d8/packages/router/src/directives/router_link_active.ts#L139)
|
26
|
+
* for a similiar implementation.
|
27
|
+
*/
|
28
|
+
set url(value: string | undefined);
|
29
|
+
private _url?;
|
30
|
+
/** Emits when the url becomes active */
|
31
|
+
routerLinkActivated: EventEmitter<Event>;
|
32
|
+
/** Subject that emits when component is destroyed to unsubscribe from any subscriptions */
|
33
|
+
private destroyed;
|
34
|
+
constructor(router: Router, el: ElementRef, renderer: Renderer2, route: ActivatedRoute);
|
35
|
+
/** Check if url is active on NavigationEnd events */
|
36
|
+
ngOnInit(): void;
|
37
|
+
ngOnDestroy(): void;
|
38
|
+
/** If url is active apply the defined class to the element, otherwise remove it */
|
39
|
+
private update;
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavItemActiveDirective, never>;
|
41
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NavItemActiveDirective, "[ecNavItemActive]", never, { "classValue": { "alias": "ecNavItemActive"; "required": false; }; "exact": { "alias": "ecNavItemActiveExactMatch"; "required": false; }; "queryParams": { "alias": "ecNavItemActiveQueryParams"; "required": false; }; "url": { "alias": "ecNavItemActiveUrl"; "required": false; }; }, { "routerLinkActivated": "routerLinkActivated"; }, never, never, false, never>;
|
42
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
2
|
+
import { LinkItem } from './link-item';
|
3
|
+
/**
|
4
|
+
* The common properties of a navigation control
|
5
|
+
*/
|
6
|
+
export interface NavItem extends LinkItem {
|
7
|
+
/**
|
8
|
+
* @deprecated
|
9
|
+
*/
|
10
|
+
clicked?: EventEmitter<any>;
|
11
|
+
/**
|
12
|
+
* Function to execute when tab is clicked.
|
13
|
+
* * Will be ignored if @see link is defined
|
14
|
+
*/
|
15
|
+
onClick?: Function;
|
16
|
+
/**
|
17
|
+
* Show a dot indicator next to the tab. Default color is $ec-color-accent
|
18
|
+
* when set to true. Set the indicator to a different color setting to a
|
19
|
+
* hex color string
|
20
|
+
*/
|
21
|
+
indicator?: boolean | string;
|
22
|
+
/**
|
23
|
+
* Used to carry query params across routes. Vaild options are
|
24
|
+
* merge, preserve or empty.
|
25
|
+
*/
|
26
|
+
queryParamsHandling?: 'merge' | 'preserve' | '';
|
27
|
+
/**
|
28
|
+
* Tracks if the NavItem has been disabled and can be used to alter default styling and behavior
|
29
|
+
*/
|
30
|
+
disabled?: boolean;
|
31
|
+
}
|
@@ -0,0 +1,148 @@
|
|
1
|
+
import { AfterViewChecked, AfterViewInit, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core';
|
2
|
+
import { UntypedFormControl, ValidatorFn } from "@angular/forms";
|
3
|
+
import { ValidationMessageService } from '../../core/validation-message.service';
|
4
|
+
import { FormGroupHelper } from '../../shared/form-group.helper';
|
5
|
+
import { FormControlBase } from "../form-control-base";
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
/**
|
8
|
+
* Custom validator to check that min/max and pattern validation is met on the numericbox
|
9
|
+
* component
|
10
|
+
*/
|
11
|
+
export declare const numericboxValidation: (min: number | undefined, max: number | undefined, decimals: number | undefined, maxPrecisionDigits: number | undefined) => ValidatorFn;
|
12
|
+
export declare class NumericboxComponent extends FormControlBase implements OnInit, OnDestroy, OnChanges, AfterViewChecked, AfterViewInit {
|
13
|
+
protected validationMessageService: ValidationMessageService;
|
14
|
+
protected formGroupHelper: FormGroupHelper;
|
15
|
+
protected renderer: Renderer2;
|
16
|
+
/**
|
17
|
+
* The value of the textbox input's placeholder
|
18
|
+
*/
|
19
|
+
placeholder?: string;
|
20
|
+
/**
|
21
|
+
* The number of decimals allowed. If not supplied the input value will be validated as a
|
22
|
+
* whole number
|
23
|
+
*/
|
24
|
+
decimals?: number;
|
25
|
+
/**
|
26
|
+
* Show trailing zeros after the decimal point.
|
27
|
+
* Do not use with maxPrecisionDigits.
|
28
|
+
*/
|
29
|
+
showPrecision?: boolean;
|
30
|
+
/**
|
31
|
+
* The maximum total digits a number can have left or right of the decimal point.
|
32
|
+
* Due to limitations with how JS handles numbers, the max value for this is 15.
|
33
|
+
* Numbers longer than 15 digits may cause rounding errors.
|
34
|
+
* Do not use with showPrecision = true
|
35
|
+
*/
|
36
|
+
maxPrecisionDigits?: number;
|
37
|
+
/**
|
38
|
+
* The maximum value allowed in the input
|
39
|
+
*
|
40
|
+
* This is for adding the attribute on the element to get the browser functionality
|
41
|
+
* from the input. If you need the form to be validated before submission, apply the
|
42
|
+
* max validator to the form conrol.
|
43
|
+
*/
|
44
|
+
max?: number;
|
45
|
+
/**
|
46
|
+
* The minimum value allowed in the input
|
47
|
+
*
|
48
|
+
* This is for adding the attribute on the element to get the browser functionality
|
49
|
+
* from the input. If you need the form to be validated before submission, apply the
|
50
|
+
* min validator to the form conrol.
|
51
|
+
*/
|
52
|
+
min?: number;
|
53
|
+
/**
|
54
|
+
* Text to display on the left side of the input
|
55
|
+
*/
|
56
|
+
leftUnits?: string;
|
57
|
+
/**
|
58
|
+
* Text to display on the right side of the input
|
59
|
+
*/
|
60
|
+
rightUnits?: string;
|
61
|
+
/**
|
62
|
+
* If set to true this will update the form model after a debounce as the user
|
63
|
+
* interacts with the component
|
64
|
+
*/
|
65
|
+
autoUpdateFormModel: boolean;
|
66
|
+
/**
|
67
|
+
* A reference to the textbox element
|
68
|
+
*/
|
69
|
+
private textboxEl;
|
70
|
+
/**
|
71
|
+
* The internal form model we use to display the value with formatting
|
72
|
+
*/
|
73
|
+
textboxFormModel: UntypedFormControl;
|
74
|
+
/** Flag to tell the page we finally computed a greater than zero
|
75
|
+
* width for units (if applicable)
|
76
|
+
*/
|
77
|
+
private unitsWidthCalculated;
|
78
|
+
/** Flag used to filter the form models value changes subscription
|
79
|
+
* to prevent the textbox model from being formatted as the form model is updated
|
80
|
+
* programmatically when the textbox model updates
|
81
|
+
*/
|
82
|
+
private autoUpdatingFormModel;
|
83
|
+
/**
|
84
|
+
* Reference to the textbox input control
|
85
|
+
*/
|
86
|
+
private textboxInput;
|
87
|
+
constructor(validationMessageService: ValidationMessageService, formGroupHelper: FormGroupHelper, renderer: Renderer2);
|
88
|
+
/**
|
89
|
+
* Angular AfterViewInit life-cycle hook
|
90
|
+
* Subscribe to textbox model value changes if the hosting
|
91
|
+
* page has opted in for this component
|
92
|
+
*/
|
93
|
+
ngAfterViewInit(): void;
|
94
|
+
/**
|
95
|
+
* Angular onChanges life-cycle hook
|
96
|
+
* @see {@link https://angular.io/guide/lifecycle-hooks | Life-cycle hooks}
|
97
|
+
*/
|
98
|
+
ngOnChanges(changes: SimpleChanges): void;
|
99
|
+
/**
|
100
|
+
* Angular onInit lifecycle hook
|
101
|
+
* If units is defined, set the position and listen for status changes so we
|
102
|
+
* can update the positioning of the units element
|
103
|
+
*/
|
104
|
+
ngOnInit(): void;
|
105
|
+
/**
|
106
|
+
* Angular afterViewChecked lifecycle hook
|
107
|
+
* Show the units element if units is defined. Runs after every ngOnChanges
|
108
|
+
*/
|
109
|
+
ngAfterViewChecked(): void;
|
110
|
+
/**
|
111
|
+
* Function that builds and returns a ValidatorFn array to set on the form control
|
112
|
+
*/
|
113
|
+
private getValidators;
|
114
|
+
/**
|
115
|
+
* Focus out event handler for the Textbox component
|
116
|
+
*/
|
117
|
+
onFocusOut(): void;
|
118
|
+
/**
|
119
|
+
* Function to set focus on an input programatically after the page
|
120
|
+
* had been rendered. The highlight text flag will select the text
|
121
|
+
* within the input if passed in and true
|
122
|
+
*/
|
123
|
+
setFocus(highlightText?: boolean): void;
|
124
|
+
/**
|
125
|
+
* When the textbox model updates we need to add some display formatting for
|
126
|
+
* display in the textbox and cast the textbox model to a number. Avoid updating
|
127
|
+
* the form model when the value doesn't change because listeners will fire for no reason
|
128
|
+
*/
|
129
|
+
private updateFormModelValue;
|
130
|
+
/**
|
131
|
+
* Convert a number value to the formmated display string. If there is no value
|
132
|
+
* return null
|
133
|
+
*/
|
134
|
+
private formatDisplayNumber;
|
135
|
+
/**
|
136
|
+
* Position the units element and set the padding in the textbox input based
|
137
|
+
* on the width of the units element
|
138
|
+
*/
|
139
|
+
private positionRightUnits;
|
140
|
+
private positionLeftUnits;
|
141
|
+
/**
|
142
|
+
* Create and append the units element to the textbox element
|
143
|
+
*/
|
144
|
+
private showUnits;
|
145
|
+
private makeUnitElement;
|
146
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericboxComponent, never>;
|
147
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericboxComponent, "ec-numericbox", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "decimals": { "alias": "decimals"; "required": false; }; "showPrecision": { "alias": "showPrecision"; "required": false; }; "maxPrecisionDigits": { "alias": "maxPrecisionDigits"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "leftUnits": { "alias": "leftUnits"; "required": false; }; "rightUnits": { "alias": "rightUnits"; "required": false; }; "autoUpdateFormModel": { "alias": "autoUpdateFormModel"; "required": false; }; }, {}, never, never, false, never>;
|
148
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import { Overlay } from '@angular/cdk/overlay';
|
2
|
+
import { ElementRef, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
|
3
|
+
import { Tag, TagType } from '../../display/tags/tag';
|
4
|
+
import { TooltipService } from '../../display/tooltip/tooltip.service';
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export type PopoverContentPosition = 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left';
|
7
|
+
export declare class PopoverComponent implements OnDestroy {
|
8
|
+
private overlay;
|
9
|
+
private viewContainerRef;
|
10
|
+
private elementRef;
|
11
|
+
private tooltipService;
|
12
|
+
/** An optional icon that, if provided, enables the popover to use it as the anchor element */
|
13
|
+
icon?: string;
|
14
|
+
/** An optional tag that, if provided, enables the popover to use it as the anchor element */
|
15
|
+
tag?: Tag;
|
16
|
+
/** Used to denote the hover tag's type (and thus background-color) */
|
17
|
+
tagHoverType?: TagType;
|
18
|
+
contentPosition: PopoverContentPosition;
|
19
|
+
iconHoverClass: string;
|
20
|
+
content: TemplateRef<any>;
|
21
|
+
/** In the template, we use an ec-tags element for the pre-hover state and an entirely
|
22
|
+
* separate ec-tags element for our hover state, resulting in two components. To achieve a change
|
23
|
+
* in the background-color for our anchor tag, on hover, a different tag.tagType must be provided on the
|
24
|
+
* second ec-tag element
|
25
|
+
*/
|
26
|
+
hoverTag?: Tag;
|
27
|
+
private overlayRef?;
|
28
|
+
private contentViewRef?;
|
29
|
+
private contentRect;
|
30
|
+
private isVisible;
|
31
|
+
private mouseOver;
|
32
|
+
private interrupt;
|
33
|
+
constructor(overlay: Overlay, viewContainerRef: ViewContainerRef, elementRef: ElementRef, tooltipService: TooltipService);
|
34
|
+
/** When the popover initializes, if a new tagType is provided for the hover state of the popover,
|
35
|
+
* we use it to update the type of our "hoverTag" (which controls background-color of tag)
|
36
|
+
*/
|
37
|
+
ngOnInit(): void;
|
38
|
+
ngOnDestroy(): void;
|
39
|
+
private show;
|
40
|
+
onMouseOver(): void;
|
41
|
+
onLeave(): void;
|
42
|
+
/**
|
43
|
+
* Hides the popover if the mouse moves outside of the popover content
|
44
|
+
*/
|
45
|
+
onMouseMove(event: MouseEvent): void;
|
46
|
+
private hide;
|
47
|
+
private getOverlayConfig;
|
48
|
+
private getPosition;
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "ec-popover", never, { "icon": { "alias": "icon"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "tagHoverType": { "alias": "tagHoverType"; "required": false; }; "contentPosition": { "alias": "contentPosition"; "required": false; }; "iconHoverClass": { "alias": "iconHoverClass"; "required": false; }; }, {}, never, ["*"], false, never>;
|
51
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
export declare class RadioButtonOption<T = any> {
|
2
|
+
/**
|
3
|
+
* The text to display as the radio button label, this can also include html formatting such
|
4
|
+
* as bold and italics to emphasize words in the string
|
5
|
+
*/
|
6
|
+
label?: string;
|
7
|
+
/**
|
8
|
+
* The value of the a selected radio button model
|
9
|
+
*/
|
10
|
+
value?: T;
|
11
|
+
/**
|
12
|
+
* The icon to display with the radio button option
|
13
|
+
*/
|
14
|
+
icon?: string;
|
15
|
+
/**
|
16
|
+
* The tooltip text to show when hovering over an option
|
17
|
+
*/
|
18
|
+
tooltip?: string;
|
19
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
|
2
|
+
import { ValidationMessageService } from '../../core/validation-message.service';
|
3
|
+
import { FormGroupHelper } from '../../shared/form-group.helper';
|
4
|
+
import { FormControlBase } from '../form-control-base';
|
5
|
+
import { RadioButtonOption } from './radio-button-option';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
/**
|
8
|
+
* Row displays options horizontally, column displays options vertically
|
9
|
+
*/
|
10
|
+
export type RadioButtonDirection = "row" | "column";
|
11
|
+
/**
|
12
|
+
* Radio is the default button style, toggle will style as a toggle switch
|
13
|
+
*/
|
14
|
+
export type RadioButtonType = "radio" | "toggle";
|
15
|
+
export declare class RadioButtonComponent extends FormControlBase implements AfterViewInit, OnInit {
|
16
|
+
protected validationMessageService: ValidationMessageService;
|
17
|
+
protected formGroupHelper: FormGroupHelper;
|
18
|
+
/**
|
19
|
+
* Display the radio button options as a default set of radio button inputs or
|
20
|
+
* as a toggle switch
|
21
|
+
* @default 'radio'
|
22
|
+
*/
|
23
|
+
type?: RadioButtonType;
|
24
|
+
/**
|
25
|
+
* One or more options to display
|
26
|
+
*/
|
27
|
+
options: RadioButtonOption[];
|
28
|
+
/**
|
29
|
+
* If there is more than one option, display them in a row or column.
|
30
|
+
* @default 'row'
|
31
|
+
*/
|
32
|
+
direction?: RadioButtonDirection;
|
33
|
+
/**
|
34
|
+
* The name of the radio input element used to group radio elements
|
35
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio
|
36
|
+
*/
|
37
|
+
name: string;
|
38
|
+
/**
|
39
|
+
* An array of classnames that will be passed into ngClass
|
40
|
+
*/
|
41
|
+
currentClasses: string[];
|
42
|
+
/**
|
43
|
+
* Reference to the first input found with the radioInput reference variable. All radio
|
44
|
+
* inputs for this component will be tagged with this ref variable, but only the first found
|
45
|
+
* will be selected as the inputElement for autofocus
|
46
|
+
*/
|
47
|
+
protected inputElement: ElementRef;
|
48
|
+
constructor(validationMessageService: ValidationMessageService, formGroupHelper: FormGroupHelper);
|
49
|
+
ngOnInit(): void;
|
50
|
+
ngAfterViewInit(): void;
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ec-radiobutton", never, { "type": { "alias": "type"; "required": false; }; "options": { "alias": "options"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
|
53
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import { AfterViewInit, ElementRef, SimpleChanges } from '@angular/core';
|
2
|
+
import { ValidationMessageService } from '../../core/validation-message.service';
|
3
|
+
import { FormGroupHelper } from '../../shared/form-group.helper';
|
4
|
+
import { FormControlBase } from '../form-control-base';
|
5
|
+
import { MenuItem } from '../menu/menu.component';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
export declare class SelectComponent extends FormControlBase implements AfterViewInit {
|
8
|
+
protected validationMessageService: ValidationMessageService;
|
9
|
+
protected formGroupHelper: FormGroupHelper;
|
10
|
+
private el;
|
11
|
+
/**
|
12
|
+
* When the component is not required, defines the label for an additional first option that sets the control to null
|
13
|
+
*/
|
14
|
+
placeholder: string;
|
15
|
+
/**
|
16
|
+
* When the component is not required, an additional option is added with a value of null.
|
17
|
+
*/
|
18
|
+
options: MenuItem[];
|
19
|
+
/**
|
20
|
+
* Select a default option automatically during initialization and when options change. Default: `true`.
|
21
|
+
* * If formModel has a value
|
22
|
+
* * Make no change if the current value exists in options
|
23
|
+
* * Otherwise, set value to the first option if control is required, or null if optional and emit event
|
24
|
+
* * If formModel has no value
|
25
|
+
* * Set value to first option if control is required and emit eventSet to false to manually manage form state.
|
26
|
+
*
|
27
|
+
* Set to false to opt out of automatic state management
|
28
|
+
*/
|
29
|
+
autoDefault: boolean;
|
30
|
+
constructor(validationMessageService: ValidationMessageService, formGroupHelper: FormGroupHelper, el: ElementRef);
|
31
|
+
ngOnChanges(changes: SimpleChanges): void;
|
32
|
+
ngAfterViewInit(): void;
|
33
|
+
private focus;
|
34
|
+
/**
|
35
|
+
* If formModel has a value
|
36
|
+
* * Make no change if the current value exists in options
|
37
|
+
* * Otherwise, set value to the first option if control is required, or null if optional and emit event
|
38
|
+
* If formModel has no value
|
39
|
+
* * Set value to first option if control is required and emit event
|
40
|
+
*/
|
41
|
+
private onOptionsChange;
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "ec-select", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "options": { "alias": "options"; "required": false; }; "autoDefault": { "alias": "autoDefault"; "required": false; }; }, {}, never, never, false, never>;
|
44
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { NavItem } from '../navigation/nav-item';
|
2
|
+
import { NavGroup } from '../navigation/nav-group';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export interface Tab extends NavItem {
|
5
|
+
url: string;
|
6
|
+
tabs?: Tab[];
|
7
|
+
hide?: Array<(...args: any[]) => boolean>;
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Component to display navigation tabs
|
11
|
+
*/
|
12
|
+
export declare class TabsComponent {
|
13
|
+
/** The id of the tabs component, will be used as a prefix for each individual tab */
|
14
|
+
id: string;
|
15
|
+
/** The tabindex of the tabs component, will be applied to each individual tab */
|
16
|
+
tabindex: number;
|
17
|
+
/** Display tabs in the default style or as pills */
|
18
|
+
tabStyle: 'tabs' | 'pills';
|
19
|
+
/** The tabs group */
|
20
|
+
tabs: NavGroup;
|
21
|
+
constructor();
|
22
|
+
/**
|
23
|
+
* Set the selected tab to the one the user clicked on pressed enter
|
24
|
+
* when focused. If the event was a keypress.enter and the tab
|
25
|
+
* has a link, navigate to that link.
|
26
|
+
*/
|
27
|
+
selectTab(event: Event, tab: NavItem): void;
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "ec-tabs", never, { "id": { "alias": "id"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabStyle": { "alias": "tabStyle"; "required": false; }; "tabs": { "alias": "tabGroup"; "required": false; }; }, {}, never, never, false, never>;
|
30
|
+
}
|
@@ -0,0 +1,107 @@
|
|
1
|
+
import { FormGroupHelper } from '../../shared/form-group.helper';
|
2
|
+
import { ElementRef, AfterViewInit, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
3
|
+
import { TranslateService } from "@ngx-translate/core";
|
4
|
+
import { FormControlBase } from "../form-control-base";
|
5
|
+
import { ValidationMessageService } from "../../core/validation-message.service";
|
6
|
+
import { ValidatorFn } from '@angular/forms';
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
/**
|
9
|
+
* The type of textbox where text is input[type="text"], multi_line is a
|
10
|
+
* textarea, email is input[type="email"], url is input[type="url"], and password
|
11
|
+
* is an input[type="password"]
|
12
|
+
*
|
13
|
+
* If the type is url or tel a regex pattern is automatically added to the form validators. No other pattern validators
|
14
|
+
* may be used for this input, having more than one will cause issues.
|
15
|
+
*
|
16
|
+
* If the type is email an email validator is automatically added to the form validators.
|
17
|
+
* */
|
18
|
+
export type TextboxType = "text" | "multi_line" | "email" | "url" | "password" | "tel";
|
19
|
+
/** Type for advanced validation of textbox form controls, if in the future
|
20
|
+
* we want more handling we will need to update this type.
|
21
|
+
*/
|
22
|
+
export type TextboxValidatorParameters = {
|
23
|
+
required?: boolean;
|
24
|
+
minLength?: number;
|
25
|
+
maxLength?: number;
|
26
|
+
unique?: boolean;
|
27
|
+
valid?: boolean;
|
28
|
+
pattern?: RegExp;
|
29
|
+
};
|
30
|
+
/** Advanced validation for textbox form controls */
|
31
|
+
export declare const textboxValidation: (validatorParams: TextboxValidatorParameters) => ValidatorFn;
|
32
|
+
export declare const phoneNumberValidationPattern: string;
|
33
|
+
export declare const urlValidationPattern: string;
|
34
|
+
export declare class TextboxComponent extends FormControlBase implements OnInit, AfterViewInit, OnChanges {
|
35
|
+
protected validationMessageService: ValidationMessageService;
|
36
|
+
protected formGroupHelper: FormGroupHelper;
|
37
|
+
protected translate: TranslateService;
|
38
|
+
/**
|
39
|
+
* Set the value of the input's autocomplete attribute
|
40
|
+
*/
|
41
|
+
autocomplete?: string;
|
42
|
+
/**
|
43
|
+
* The textbox type
|
44
|
+
*/
|
45
|
+
type?: TextboxType;
|
46
|
+
/**
|
47
|
+
* The value of the textbox input's placeholder
|
48
|
+
*/
|
49
|
+
placeholder?: string;
|
50
|
+
/**
|
51
|
+
* The maximum number of characters allowed in the input
|
52
|
+
*
|
53
|
+
* This is for adding the attribute on the element to get the browser functionality
|
54
|
+
* from the input. If you need the form to be validated before submission, apply the
|
55
|
+
* maxLength validator to the form control.
|
56
|
+
*/
|
57
|
+
maxlength?: number;
|
58
|
+
/**
|
59
|
+
* The minimum number of characters allowed in the input
|
60
|
+
*
|
61
|
+
* This is for adding the attribute on the element to get the browser functionality
|
62
|
+
* from the input. If you need the form to be validated before submission, apply the
|
63
|
+
* minLength validator to the form control.
|
64
|
+
*/
|
65
|
+
minlength?: number;
|
66
|
+
/**
|
67
|
+
* The value of the rows attribute for a textarea. Only applies to multi-line type
|
68
|
+
*/
|
69
|
+
rows?: number;
|
70
|
+
/**
|
71
|
+
* If set to true, we will select all text within the input if
|
72
|
+
* autofocus is also set to true
|
73
|
+
*/
|
74
|
+
selectOnAutofocus?: boolean;
|
75
|
+
/**
|
76
|
+
* If set to true, we will upper case on focus out
|
77
|
+
*/
|
78
|
+
upperCase: boolean;
|
79
|
+
/**
|
80
|
+
* Validation pattern for the input. This is determined on the input type specified
|
81
|
+
*/
|
82
|
+
validationPattern: string;
|
83
|
+
protected inputElement: ElementRef;
|
84
|
+
constructor(validationMessageService: ValidationMessageService, formGroupHelper: FormGroupHelper, translate: TranslateService);
|
85
|
+
ngOnChanges(changes: SimpleChanges): void;
|
86
|
+
/**
|
87
|
+
* The angular onInit lifecycle hook
|
88
|
+
*/
|
89
|
+
ngOnInit(): void;
|
90
|
+
/**
|
91
|
+
* The angular afterViewInit lifecycle hook
|
92
|
+
*/
|
93
|
+
ngAfterViewInit(): void;
|
94
|
+
/**
|
95
|
+
* Function to set focus on an input programmatically after the page
|
96
|
+
* had been rendered. The highlight text flag will select the text
|
97
|
+
* within the input if passed in and true
|
98
|
+
*/
|
99
|
+
setFocus(highlightText?: boolean): void;
|
100
|
+
/**
|
101
|
+
* Focus out event handler
|
102
|
+
* will upper case and trim value if upperCase is true (this is what we do on the apis)
|
103
|
+
*/
|
104
|
+
focusOutEvent(): void;
|
105
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, never>;
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "ec-textbox", never, { "autocomplete": { "alias": "autocomplete"; "required": false; }; "type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "selectOnAutofocus": { "alias": "selectOnAutofocus"; "required": false; }; "upperCase": { "alias": "upperCase"; "required": false; }; }, {}, never, never, false, never>;
|
107
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class CacheService {
|
3
|
+
private localStorageAvailable;
|
4
|
+
private sessionStorageAvailable;
|
5
|
+
constructor();
|
6
|
+
/**Return true if the requested cache allows the user to round-trip data in the current environment.
|
7
|
+
* Security settings can prevent it and the app may need to know if "not found" means "never set" or "not supported"
|
8
|
+
*/
|
9
|
+
isCacheAvailable(sessionOnly?: boolean): boolean;
|
10
|
+
/**
|
11
|
+
* Retrieve an item from cache
|
12
|
+
*/
|
13
|
+
getItem<T>(key: string, sessionOnly?: boolean): T | null;
|
14
|
+
/**
|
15
|
+
* Retrieves all keys from cache
|
16
|
+
*/
|
17
|
+
keys(sessionOnly?: boolean): Array<string>;
|
18
|
+
/**
|
19
|
+
* Removes an item from the cache
|
20
|
+
*/
|
21
|
+
removeItem(key: string, sessionOnly?: boolean): void;
|
22
|
+
/**
|
23
|
+
* Persists an item to cache
|
24
|
+
*/
|
25
|
+
setItem(key: string, value: object, sessionOnly?: boolean): void;
|
26
|
+
/**Returns the local or session storage to use for backing the given cache request.
|
27
|
+
* If the browser does not support the requested storage the result will be null.
|
28
|
+
* This can happen if the user is in Firefox for example with the setting dom.storage.enabled = false
|
29
|
+
*/
|
30
|
+
private getStorage;
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CacheService, never>;
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CacheService>;
|
33
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { ValidatorFn } from '@angular/forms';
|
2
|
+
export declare class CustomValidators {
|
3
|
+
/**
|
4
|
+
* Tests the control using Angular's required validator, except returns
|
5
|
+
* an error map that triggers the plural 'are required' validation message
|
6
|
+
* instead of 'is required'
|
7
|
+
*
|
8
|
+
* @returns An error map with the `requiredPlural` property
|
9
|
+
* if the validation check fails, otherwise `null`.
|
10
|
+
*/
|
11
|
+
static requiredPlural: ValidatorFn;
|
12
|
+
/**
|
13
|
+
* Returns a validation error if the control's value is not valid JSON.
|
14
|
+
*/
|
15
|
+
static json: ValidatorFn;
|
16
|
+
/**
|
17
|
+
* Returns a validation error if the control's value is not a valid domain.
|
18
|
+
*/
|
19
|
+
static domain: ValidatorFn;
|
20
|
+
}
|