@energycap/components 0.31.5 → 0.32.0
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/energycap-components.min.css +2 -2
- package/energycap-email.min.css +1 -1
- package/esm2020/energycap-components.mjs +5 -0
- package/esm2020/lib/components.module.mjs +386 -0
- package/esm2020/lib/controls/banner/banner.component.mjs +106 -0
- package/esm2020/lib/controls/button/button.component.mjs +106 -0
- package/esm2020/lib/controls/button/copy-button.directive.mjs +65 -0
- package/esm2020/lib/controls/checkbox/checkbox.component.mjs +139 -0
- package/esm2020/lib/controls/collapsible-toggle/collapsible-toggle.component.mjs +38 -0
- package/esm2020/lib/controls/combobox/combobox.component.mjs +841 -0
- package/esm2020/lib/controls/dropdown/dropdown.component.mjs +237 -0
- package/esm2020/lib/controls/file-upload/file-upload.component.mjs +169 -0
- package/esm2020/lib/controls/form-control/form-control.component.mjs +86 -0
- package/esm2020/lib/controls/form-control-base.mjs +143 -0
- package/esm2020/lib/controls/form-control-label/form-control-label.component.mjs +136 -0
- package/esm2020/lib/controls/form-group/form-group.component.mjs +252 -0
- package/esm2020/lib/controls/help-popover/help-popover.component.mjs +28 -0
- package/esm2020/lib/controls/item-picker/item-picker.component.mjs +233 -0
- package/esm2020/lib/controls/link-button/link-button.component.mjs +11 -0
- package/esm2020/lib/controls/menu/menu.component.mjs +443 -0
- package/{esm2015/lib/controls/navigation/link-item.js → esm2020/lib/controls/navigation/link-item.mjs} +0 -0
- package/{esm2015/lib/controls/navigation/nav-group.js → esm2020/lib/controls/navigation/nav-group.mjs} +0 -0
- package/esm2020/lib/controls/navigation/nav-item-active.directive.mjs +92 -0
- package/{esm2015/lib/controls/navigation/nav-item.js → esm2020/lib/controls/navigation/nav-item.mjs} +0 -0
- package/esm2020/lib/controls/numericbox/numericbox.component.mjs +371 -0
- package/esm2020/lib/controls/popover/popover.component.mjs +84 -0
- package/{esm2015/lib/controls/radio-button/radio-button-option.js → esm2020/lib/controls/radio-button/radio-button-option.mjs} +0 -0
- package/esm2020/lib/controls/radio-button/radio-button.component.mjs +81 -0
- package/esm2020/lib/controls/select/select.component.mjs +87 -0
- package/esm2020/lib/controls/tabs/tabs.component.mjs +47 -0
- package/esm2020/lib/controls/textbox/textbox.component.mjs +154 -0
- package/{esm2015/lib/core/cache.service.js → esm2020/lib/core/cache.service.mjs} +9 -8
- package/{esm2015/lib/core/custom-validators.js → esm2020/lib/core/custom-validators.mjs} +0 -0
- package/{esm2015/lib/core/date-time-helper.js → esm2020/lib/core/date-time-helper.mjs} +0 -0
- package/esm2020/lib/core/error.service.mjs +57 -0
- package/esm2020/lib/core/scroll.service.mjs +89 -0
- package/esm2020/lib/core/telemetry-tracker.service.mjs +16 -0
- package/esm2020/lib/core/telemetry.service.mjs +38 -0
- package/esm2020/lib/core/validation-message.service.mjs +181 -0
- package/{esm2015/lib/core/validation-patterns.js → esm2020/lib/core/validation-patterns.mjs} +0 -0
- package/esm2020/lib/core/window.service.mjs +182 -0
- package/esm2020/lib/display/app-bar/app-bar.component.mjs +46 -0
- package/esm2020/lib/display/avatar/avatar.component.mjs +67 -0
- package/{esm2015/lib/display/avatar/avatar.service.js → esm2020/lib/display/avatar/avatar.service.mjs} +9 -7
- package/esm2020/lib/display/confirm/confirm.component.mjs +131 -0
- package/{esm2015/lib/display/dialog/dialog-content.js → esm2020/lib/display/dialog/dialog-content.mjs} +0 -0
- package/esm2020/lib/display/dialog/dialog-group/dialog-group.component.mjs +63 -0
- package/{esm2015/lib/display/dialog/dialog-types.js → esm2020/lib/display/dialog/dialog-types.mjs} +0 -0
- package/esm2020/lib/display/dialog/dialog.component.mjs +242 -0
- package/esm2020/lib/display/dialog/dialog.service.mjs +71 -0
- package/{esm2015/lib/display/help/help-types.js → esm2020/lib/display/help/help-types.mjs} +0 -0
- package/esm2020/lib/display/hierarchy/hierarchy-base.mjs +106 -0
- package/{esm2015/lib/display/hierarchy/hierarchy-mocks.spec.js → esm2020/lib/display/hierarchy/hierarchy-mocks.spec.mjs} +5 -9
- package/esm2020/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.mjs +59 -0
- package/esm2020/lib/display/item-display/item-display.component.mjs +67 -0
- package/esm2020/lib/display/json-display/json-display.component.mjs +47 -0
- package/esm2020/lib/display/resizable/resizable-base.mjs +120 -0
- package/esm2020/lib/display/resizable/resizable.component.mjs +57 -0
- package/esm2020/lib/display/spinner/spinner.component.mjs +12 -0
- package/esm2020/lib/display/splash/splash.component.mjs +42 -0
- package/esm2020/lib/display/splash/splash.service.mjs +35 -0
- package/esm2020/lib/display/table/resizable-column.component.mjs +20 -0
- package/esm2020/lib/display/table/resizable-table.directive.mjs +227 -0
- package/esm2020/lib/display/table/searchable-table.component.mjs +338 -0
- package/esm2020/lib/display/table/table-detail-row.component.mjs +27 -0
- package/esm2020/lib/display/table/table-locked-column.component.mjs +58 -0
- package/esm2020/lib/display/table/table-master-header-row.component.mjs +11 -0
- package/esm2020/lib/display/table/table-master-row.component.mjs +150 -0
- package/esm2020/lib/display/table/table-pagination.component.mjs +150 -0
- package/esm2020/lib/display/table/table-selectable-row.component.mjs +235 -0
- package/esm2020/lib/display/table/table.component.mjs +244 -0
- package/esm2020/lib/display/tags/tag.mjs +15 -0
- package/esm2020/lib/display/tags/tags.component.mjs +77 -0
- package/esm2020/lib/display/toast/toast/toast.component.mjs +77 -0
- package/{esm2015/lib/display/toast/toast-types.js → esm2020/lib/display/toast/toast-types.mjs} +0 -0
- package/esm2020/lib/display/toast/toast.service.mjs +35 -0
- package/esm2020/lib/display/toast/toaster/toaster.component.mjs +114 -0
- package/esm2020/lib/display/tooltip/tooltip.component.mjs +25 -0
- package/esm2020/lib/display/tooltip/tooltip.service.mjs +63 -0
- package/esm2020/lib/display/tree/tree.component.mjs +125 -0
- package/esm2020/lib/display/view-overlay/view-overlay.component.mjs +58 -0
- package/esm2020/lib/shared/directives/click-area-for/click-area-for.directive.mjs +32 -0
- package/esm2020/lib/shared/directives/if-viewport-width/if-viewport-width.directive.mjs +111 -0
- package/esm2020/lib/shared/directives/popup/popup-container.directive.mjs +163 -0
- package/esm2020/lib/shared/display/pipes/date-display.pipe.mjs +50 -0
- package/esm2020/lib/shared/display/pipes/highlight-text.pipe.mjs +30 -0
- package/esm2020/lib/shared/display/pipes/relative-date.pipe.mjs +48 -0
- package/esm2020/lib/shared/display/pipes/row-count.pipe.mjs +48 -0
- package/esm2020/lib/shared/display/pipes/time-display.pipe.mjs +41 -0
- package/{esm2015/lib/shared/display.js → esm2020/lib/shared/display.mjs} +0 -0
- package/esm2020/lib/shared/form-group.helper.mjs +67 -0
- package/{esm2015/lib/shared/json-helper.js → esm2020/lib/shared/json-helper.mjs} +0 -0
- package/{esm2015/lib/shared/lodash-helper.js → esm2020/lib/shared/lodash-helper.mjs} +0 -0
- package/esm2020/lib/shared/page/page-base/page-base.component.mjs +339 -0
- package/{esm2015/lib/shared/page/page-statuses.js → esm2020/lib/shared/page/page-statuses.mjs} +0 -0
- package/esm2020/lib/shared/page/page-title/page-title.component.mjs +23 -0
- package/esm2020/lib/shared/page/page-view/page-view.component.mjs +121 -0
- package/{esm2015/lib/shared/testing/hierarchy-base-test-injector-factory.spec.js → esm2020/lib/shared/testing/hierarchy-base-test-injector-factory.spec.mjs} +0 -0
- package/esm2020/lib/shared/testing/page-base-component-test-helper.spec.mjs +30 -0
- package/{esm2015/lib/shared/testing/page-base-component-test-injector-factory.spec.js → esm2020/lib/shared/testing/page-base-component-test-injector-factory.spec.mjs} +0 -0
- package/esm2020/lib/shared/testing/public-mocks.spec.mjs +132 -0
- package/{esm2015/lib/shared/testing/spy-factory.spec.js → esm2020/lib/shared/testing/spy-factory.spec.mjs} +0 -0
- package/{esm2015/lib/shared/testing/translation-mocks.spec.js → esm2020/lib/shared/testing/translation-mocks.spec.mjs} +0 -0
- package/esm2020/lib/shared/user-preference.service.mjs +17 -0
- package/esm2020/lib/shared/wizard/wizard-base/wizard-base.component.mjs +246 -0
- package/esm2020/lib/shared/wizard/wizard-buttons/wizard-buttons.component.mjs +68 -0
- package/esm2020/lib/shared/wizard/wizard-progress/wizard-progress.component.mjs +18 -0
- package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
- package/fesm2015/energycap-components.mjs +10090 -0
- package/fesm2015/energycap-components.mjs.map +1 -0
- package/fesm2020/energycap-components.mjs +9999 -0
- package/fesm2020/energycap-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components.module.d.ts +72 -0
- package/lib/controls/banner/banner.component.d.ts +3 -0
- package/lib/controls/button/button.component.d.ts +3 -0
- package/lib/controls/button/copy-button.directive.d.ts +3 -0
- package/lib/controls/checkbox/checkbox.component.d.ts +3 -0
- package/lib/controls/collapsible-toggle/collapsible-toggle.component.d.ts +3 -0
- package/lib/controls/combobox/combobox.component.d.ts +5 -2
- package/lib/controls/dropdown/dropdown.component.d.ts +3 -0
- package/lib/controls/file-upload/file-upload.component.d.ts +5 -2
- package/lib/controls/form-control/form-control.component.d.ts +3 -0
- package/lib/controls/form-control-base.d.ts +3 -0
- package/lib/controls/form-control-label/form-control-label.component.d.ts +3 -0
- package/lib/controls/form-group/form-group.component.d.ts +6 -3
- package/lib/controls/help-popover/help-popover.component.d.ts +3 -0
- package/lib/controls/item-picker/item-picker.component.d.ts +5 -2
- package/lib/controls/link-button/link-button.component.d.ts +3 -0
- package/lib/controls/menu/menu.component.d.ts +3 -0
- package/lib/controls/navigation/nav-item-active.directive.d.ts +3 -0
- package/lib/controls/numericbox/numericbox.component.d.ts +5 -2
- package/lib/controls/popover/popover.component.d.ts +3 -0
- package/lib/controls/radio-button/radio-button.component.d.ts +3 -0
- package/lib/controls/select/select.component.d.ts +3 -0
- package/lib/controls/tabs/tabs.component.d.ts +3 -0
- package/lib/controls/textbox/textbox.component.d.ts +3 -0
- package/lib/core/cache.service.d.ts +3 -0
- package/lib/core/error.service.d.ts +3 -0
- package/lib/core/scroll.service.d.ts +3 -0
- package/lib/core/telemetry-tracker.service.d.ts +3 -0
- package/lib/core/telemetry.service.d.ts +3 -0
- package/lib/core/validation-message.service.d.ts +3 -0
- package/lib/core/window.service.d.ts +3 -0
- package/lib/display/app-bar/app-bar.component.d.ts +3 -0
- package/lib/display/avatar/avatar.component.d.ts +3 -0
- package/lib/display/avatar/avatar.service.d.ts +3 -0
- package/lib/display/confirm/confirm.component.d.ts +5 -2
- package/lib/display/dialog/dialog-group/dialog-group.component.d.ts +3 -0
- package/lib/display/dialog/dialog.component.d.ts +3 -0
- package/lib/display/dialog/dialog.service.d.ts +3 -0
- package/lib/display/hierarchy/hierarchy-base.d.ts +3 -0
- package/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.d.ts +3 -0
- package/lib/display/item-display/item-display.component.d.ts +3 -0
- package/lib/display/json-display/json-display.component.d.ts +5 -2
- package/lib/display/resizable/resizable-base.d.ts +3 -0
- package/lib/display/resizable/resizable.component.d.ts +3 -0
- package/lib/display/spinner/spinner.component.d.ts +3 -0
- package/lib/display/splash/splash.component.d.ts +3 -0
- package/lib/display/splash/splash.service.d.ts +3 -0
- package/lib/display/table/resizable-column.component.d.ts +3 -0
- package/lib/display/table/resizable-table.directive.d.ts +3 -0
- package/lib/display/table/searchable-table.component.d.ts +6 -3
- package/lib/display/table/table-detail-row.component.d.ts +3 -0
- package/lib/display/table/table-locked-column.component.d.ts +3 -0
- package/lib/display/table/table-master-header-row.component.d.ts +3 -0
- package/lib/display/table/table-master-row.component.d.ts +3 -0
- package/lib/display/table/table-pagination.component.d.ts +3 -0
- package/lib/display/table/table-selectable-row.component.d.ts +5 -2
- package/lib/display/table/table.component.d.ts +3 -0
- package/lib/display/tags/tags.component.d.ts +3 -0
- package/lib/display/toast/toast/toast.component.d.ts +3 -0
- package/lib/display/toast/toast.service.d.ts +3 -0
- package/lib/display/toast/toaster/toaster.component.d.ts +3 -0
- package/lib/display/tooltip/tooltip.component.d.ts +3 -0
- package/lib/display/tooltip/tooltip.service.d.ts +3 -0
- package/lib/display/tree/tree.component.d.ts +3 -0
- package/lib/display/view-overlay/view-overlay.component.d.ts +3 -0
- package/lib/shared/directives/click-area-for/click-area-for.directive.d.ts +3 -0
- package/lib/shared/directives/if-viewport-width/if-viewport-width.directive.d.ts +3 -0
- package/lib/shared/directives/popup/popup-container.directive.d.ts +3 -0
- package/lib/shared/display/pipes/date-display.pipe.d.ts +3 -0
- package/lib/shared/display/pipes/highlight-text.pipe.d.ts +3 -0
- package/lib/shared/display/pipes/relative-date.pipe.d.ts +3 -0
- package/lib/shared/display/pipes/row-count.pipe.d.ts +3 -0
- package/lib/shared/display/pipes/time-display.pipe.d.ts +3 -0
- package/lib/shared/form-group.helper.d.ts +5 -2
- package/lib/shared/page/page-base/page-base.component.d.ts +5 -2
- package/lib/shared/page/page-title/page-title.component.d.ts +3 -0
- package/lib/shared/page/page-view/page-view.component.d.ts +3 -0
- package/lib/shared/testing/public-mocks.spec.d.ts +7 -0
- package/lib/shared/user-preference.service.d.ts +3 -0
- package/lib/shared/wizard/wizard-base/wizard-base.component.d.ts +3 -0
- package/lib/shared/wizard/wizard-buttons/wizard-buttons.component.d.ts +3 -0
- package/lib/shared/wizard/wizard-progress/wizard-progress.component.d.ts +3 -0
- package/package.json +27 -15
- package/src/styles/_functions.scss +6 -4
- package/src/styles/_icons.scss +1 -1
- package/src/styles/mixins/_control-base.scss +2 -2
- package/src/styles/mixins/_form-control-base.scss +3 -1
- package/src/styles/mixins/_spinner-base.scss +3 -1
- package/bundles/energycap-components.umd.js +0 -10646
- package/bundles/energycap-components.umd.js.map +0 -1
- package/bundles/energycap-components.umd.min.js +0 -17
- package/bundles/energycap-components.umd.min.js.map +0 -1
- package/energycap-components.d.ts +0 -7
- package/energycap-components.metadata.json +0 -1
- package/esm2015/energycap-components.js +0 -8
- package/esm2015/lib/components.module.js +0 -238
- package/esm2015/lib/controls/banner/banner.component.js +0 -94
- package/esm2015/lib/controls/button/button.component.js +0 -89
- package/esm2015/lib/controls/button/copy-button.directive.js +0 -63
- package/esm2015/lib/controls/checkbox/checkbox.component.js +0 -137
- package/esm2015/lib/controls/collapsible-toggle/collapsible-toggle.component.js +0 -35
- package/esm2015/lib/controls/combobox/combobox.component.js +0 -819
- package/esm2015/lib/controls/dropdown/dropdown.component.js +0 -207
- package/esm2015/lib/controls/file-upload/file-upload.component.js +0 -172
- package/esm2015/lib/controls/form-control/form-control.component.js +0 -65
- package/esm2015/lib/controls/form-control-base.js +0 -140
- package/esm2015/lib/controls/form-control-label/form-control-label.component.js +0 -139
- package/esm2015/lib/controls/form-group/form-group.component.js +0 -254
- package/esm2015/lib/controls/help-popover/help-popover.component.js +0 -22
- package/esm2015/lib/controls/item-picker/item-picker.component.js +0 -216
- package/esm2015/lib/controls/link-button/link-button.component.js +0 -12
- package/esm2015/lib/controls/menu/menu.component.js +0 -424
- package/esm2015/lib/controls/navigation/nav-item-active.directive.js +0 -86
- package/esm2015/lib/controls/numericbox/numericbox.component.js +0 -362
- package/esm2015/lib/controls/popover/popover.component.js +0 -85
- package/esm2015/lib/controls/radio-button/radio-button.component.js +0 -78
- package/esm2015/lib/controls/select/select.component.js +0 -89
- package/esm2015/lib/controls/tabs/tabs.component.js +0 -42
- package/esm2015/lib/controls/textbox/textbox.component.js +0 -149
- package/esm2015/lib/core/error.service.js +0 -56
- package/esm2015/lib/core/scroll.service.js +0 -88
- package/esm2015/lib/core/telemetry-tracker.service.js +0 -14
- package/esm2015/lib/core/telemetry.service.js +0 -40
- package/esm2015/lib/core/validation-message.service.js +0 -185
- package/esm2015/lib/core/window.service.js +0 -191
- package/esm2015/lib/display/app-bar/app-bar.component.js +0 -42
- package/esm2015/lib/display/avatar/avatar.component.js +0 -73
- package/esm2015/lib/display/confirm/confirm.component.js +0 -127
- package/esm2015/lib/display/dialog/dialog-group/dialog-group.component.js +0 -65
- package/esm2015/lib/display/dialog/dialog.component.js +0 -229
- package/esm2015/lib/display/dialog/dialog.service.js +0 -69
- package/esm2015/lib/display/hierarchy/hierarchy-base.js +0 -106
- package/esm2015/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.js +0 -58
- package/esm2015/lib/display/item-display/item-display.component.js +0 -57
- package/esm2015/lib/display/json-display/json-display.component.js +0 -44
- package/esm2015/lib/display/resizable/resizable-base.js +0 -119
- package/esm2015/lib/display/resizable/resizable.component.js +0 -57
- package/esm2015/lib/display/spinner/spinner.component.js +0 -12
- package/esm2015/lib/display/splash/splash.component.js +0 -45
- package/esm2015/lib/display/splash/splash.service.js +0 -34
- package/esm2015/lib/display/table/resizable-column.component.js +0 -23
- package/esm2015/lib/display/table/resizable-table.directive.js +0 -223
- package/esm2015/lib/display/table/searchable-table.component.js +0 -303
- package/esm2015/lib/display/table/table-detail-row.component.js +0 -21
- package/esm2015/lib/display/table/table-locked-column.component.js +0 -53
- package/esm2015/lib/display/table/table-master-header-row.component.js +0 -11
- package/esm2015/lib/display/table/table-master-row.component.js +0 -141
- package/esm2015/lib/display/table/table-pagination.component.js +0 -146
- package/esm2015/lib/display/table/table-selectable-row.component.js +0 -216
- package/esm2015/lib/display/table/table.component.js +0 -210
- package/esm2015/lib/display/tags/tag.js +0 -15
- package/esm2015/lib/display/tags/tags.component.js +0 -73
- package/esm2015/lib/display/toast/toast/toast.component.js +0 -70
- package/esm2015/lib/display/toast/toast.service.js +0 -34
- package/esm2015/lib/display/toast/toaster/toaster.component.js +0 -117
- package/esm2015/lib/display/tooltip/tooltip.component.js +0 -24
- package/esm2015/lib/display/tooltip/tooltip.service.js +0 -64
- package/esm2015/lib/display/tree/tree.component.js +0 -100
- package/esm2015/lib/display/view-overlay/view-overlay.component.js +0 -50
- package/esm2015/lib/shared/directives/click-area-for/click-area-for.directive.js +0 -25
- package/esm2015/lib/shared/directives/if-viewport-width/if-viewport-width.directive.js +0 -112
- package/esm2015/lib/shared/directives/popup/popup-container.directive.js +0 -160
- package/esm2015/lib/shared/display/pipes/date-display.pipe.js +0 -49
- package/esm2015/lib/shared/display/pipes/highlight-text.pipe.js +0 -26
- package/esm2015/lib/shared/display/pipes/relative-date.pipe.js +0 -49
- package/esm2015/lib/shared/display/pipes/row-count.pipe.js +0 -47
- package/esm2015/lib/shared/display/pipes/time-display.pipe.js +0 -40
- package/esm2015/lib/shared/form-group.helper.js +0 -65
- package/esm2015/lib/shared/page/page-base/page-base.component.js +0 -356
- package/esm2015/lib/shared/page/page-title/page-title.component.js +0 -19
- package/esm2015/lib/shared/page/page-view/page-view.component.js +0 -94
- package/esm2015/lib/shared/testing/page-base-component-test-helper.spec.js +0 -35
- package/esm2015/lib/shared/testing/public-mocks.spec.js +0 -126
- package/esm2015/lib/shared/user-preference.service.js +0 -15
- package/esm2015/lib/shared/wizard/wizard-base/wizard-base.component.js +0 -260
- package/esm2015/lib/shared/wizard/wizard-buttons/wizard-buttons.component.js +0 -54
- package/esm2015/lib/shared/wizard/wizard-progress/wizard-progress.component.js +0 -18
- package/fesm2015/energycap-components.js +0 -9638
- package/fesm2015/energycap-components.js.map +0 -1
|
@@ -2,6 +2,7 @@ import { OnChanges } from '@angular/core';
|
|
|
2
2
|
import { MenuItem } from '../../controls/menu/menu.component';
|
|
3
3
|
import { AvatarUser } from '../avatar/avatar.component';
|
|
4
4
|
import { AvatarService } from '../avatar/avatar.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class AppBarComponent implements OnChanges {
|
|
6
7
|
private avatarService;
|
|
7
8
|
user?: AvatarUser;
|
|
@@ -14,4 +15,6 @@ export declare class AppBarComponent implements OnChanges {
|
|
|
14
15
|
private userItem;
|
|
15
16
|
constructor(avatarService: AvatarService);
|
|
16
17
|
ngOnChanges(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBarComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppBarComponent, "ec-app-bar", never, { "user": "user"; "userMenuItems": "userMenuItems"; "userMenuWidth": "userMenuWidth"; "userMenuMinWidth": "userMenuMinWidth"; "userMenuTabindex": "userMenuTabindex"; "iconPath": "iconPath"; }, {}, never, [".app-bar-title", ".app-bar-actions"], false>;
|
|
17
20
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, Renderer2, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { AvatarService } from './avatar.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export interface AvatarUser {
|
|
4
5
|
firstName?: string;
|
|
5
6
|
lastName?: string;
|
|
@@ -29,4 +30,6 @@ export declare class AvatarComponent implements OnChanges {
|
|
|
29
30
|
* a letter, default to gray.
|
|
30
31
|
*/
|
|
31
32
|
private updateColor;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ec-avatar", never, { "user": "user"; }, {}, never, never, false>;
|
|
32
35
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AvatarUser } from './avatar.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare type AvatarLabels = {
|
|
3
4
|
abbreviation: string;
|
|
4
5
|
full: string | undefined;
|
|
@@ -18,4 +19,6 @@ export declare class AvatarService {
|
|
|
18
19
|
* with any null, undefined, or whitespace values removed
|
|
19
20
|
*/
|
|
20
21
|
private trimUser;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarService, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AvatarService>;
|
|
21
24
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { UntypedFormGroup, ValidatorFn } from '@angular/forms';
|
|
3
3
|
import { ButtonType } from '../../controls/button/button.component';
|
|
4
4
|
import { TextboxType } from '../../controls/textbox/textbox.component';
|
|
5
5
|
import { DialogContent } from '../dialog/dialog-content';
|
|
6
6
|
import { Overlay } from '../view-overlay/view-overlay.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
declare type SaveSource = 'primary' | 'alternate';
|
|
8
9
|
export declare type CustomActionResult = {
|
|
9
10
|
message: string;
|
|
@@ -74,7 +75,7 @@ export declare class ConfirmDialogContext {
|
|
|
74
75
|
export declare class ConfirmComponent implements OnInit, DialogContent<ConfirmDialogContext> {
|
|
75
76
|
dialogId: string;
|
|
76
77
|
/** Form Group to hold any form controls needed */
|
|
77
|
-
formGroup:
|
|
78
|
+
formGroup: UntypedFormGroup;
|
|
78
79
|
status: Overlay;
|
|
79
80
|
/**
|
|
80
81
|
* Provided by the calling component to tell the confirm what to show
|
|
@@ -96,5 +97,7 @@ export declare class ConfirmComponent implements OnInit, DialogContent<ConfirmDi
|
|
|
96
97
|
*/
|
|
97
98
|
private addFormControls;
|
|
98
99
|
private doInlineConfirmAction;
|
|
100
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmComponent, never>;
|
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmComponent, "ec-confirm", never, { "context": "context"; }, { "onDialogSave": "onDialogSave"; "onDialogCancel": "onDialogCancel"; }, never, never, false>;
|
|
99
102
|
}
|
|
100
103
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { DialogOpenStartEvent } from '../dialog-types';
|
|
3
3
|
import { DialogService } from '../dialog.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DialogGroupComponent implements OnInit, OnDestroy {
|
|
5
6
|
private dialogService;
|
|
6
7
|
activeDialogEvents: DialogOpenStartEvent<any>[];
|
|
@@ -26,4 +27,6 @@ export declare class DialogGroupComponent implements OnInit, OnDestroy {
|
|
|
26
27
|
* active dialogs which pulls it out of the DOM too
|
|
27
28
|
*/
|
|
28
29
|
dialogClosed(dialogOpenEvent: DialogOpenStartEvent<any>): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogGroupComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogGroupComponent, "ec-dialog-group", never, {}, {}, never, never, false>;
|
|
29
32
|
}
|
|
@@ -3,6 +3,7 @@ import { WindowService } from '../../core/window.service';
|
|
|
3
3
|
import { DialogContent } from './dialog-content';
|
|
4
4
|
import { DialogSize, DialogOptions, DialogResult } from './dialog-types';
|
|
5
5
|
import { DialogService } from './dialog.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/** These values need to be kept in sync with dialog-base.scss */
|
|
7
8
|
export declare const DialogOpenDuration: number;
|
|
8
9
|
export declare const DialogCloseDuration: number;
|
|
@@ -102,4 +103,6 @@ export declare class DialogComponent {
|
|
|
102
103
|
* the dialog itself does not say what the name is.
|
|
103
104
|
*/
|
|
104
105
|
private getDialogId;
|
|
106
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
107
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ec-dialog", never, { "size": "size"; "content": "content"; "context": "context"; "options": "options"; "dialogOpenStartEventId": "dialogOpenStartEventId"; }, { "opened": "opened"; "closed": "closed"; }, never, never, false>;
|
|
105
108
|
}
|
|
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { ConfirmDialogContext } from '../confirm/confirm.component';
|
|
4
4
|
import { DialogContent } from './dialog-content';
|
|
5
5
|
import { DialogEvent, DialogOptions, DialogResult, DialogSize } from './dialog-types';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Service used to communcate with ng5 dialogs from an ng1 view. Any dialogs that
|
|
8
9
|
* have been added to ng1 views must be added to the DialogCatalog in order
|
|
@@ -42,4 +43,6 @@ export declare class DialogService {
|
|
|
42
43
|
*/
|
|
43
44
|
confirm(context: ConfirmDialogContext): Observable<DialogResult<ConfirmDialogContext>>;
|
|
44
45
|
triggerEvent(event: DialogEvent): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
47
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
45
48
|
}
|
|
@@ -4,6 +4,7 @@ import { Subject } from 'rxjs';
|
|
|
4
4
|
import { LinkItem } from '../../controls/navigation/link-item';
|
|
5
5
|
import { TelemetryService } from '../../core/telemetry.service';
|
|
6
6
|
import { ViewStatus } from '../../shared/display';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class HierarchyItem implements LinkItem {
|
|
8
9
|
id: string;
|
|
9
10
|
/** Label to display for the item */
|
|
@@ -74,4 +75,6 @@ export declare abstract class HierarchyBase implements OnChanges, OnDestroy {
|
|
|
74
75
|
* item that caused an error, could be retrieving children
|
|
75
76
|
*/
|
|
76
77
|
setItemError(parentItem: HierarchyItem): void;
|
|
78
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HierarchyBase, never>;
|
|
79
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HierarchyBase, never, never, { "rootNode": "rootNode"; }, { "getItemChildren": "getItemChildren"; }, never, never, false>;
|
|
77
80
|
}
|
|
@@ -2,6 +2,7 @@ import { Injector, OnInit } from '@angular/core';
|
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { ScrollService } from '../../../core/scroll.service';
|
|
4
4
|
import { HierarchyBase, HierarchyItem } from '../hierarchy-base';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class HierarchyTreeComponent extends HierarchyBase implements OnInit {
|
|
6
7
|
private scrollService;
|
|
7
8
|
/** The value of the id attribute of the tree's root HTMLUListElement, suffixed with '_root' */
|
|
@@ -26,4 +27,6 @@ export declare class HierarchyTreeComponent extends HierarchyBase implements OnI
|
|
|
26
27
|
* of that item's url property and emit the item to any subscribers.
|
|
27
28
|
*/
|
|
28
29
|
selectItem(item: HierarchyItem): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HierarchyTreeComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HierarchyTreeComponent, "ec-hierarchy-tree", never, { "id": "id"; "hideRootNode": "hideRootNode"; }, { "itemSelected": "itemSelected"; }, never, never, false>;
|
|
29
32
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare type DisplayValue = {
|
|
2
3
|
value: string;
|
|
3
4
|
classnames?: string;
|
|
@@ -27,4 +28,6 @@ export declare class ItemDisplayComponent {
|
|
|
27
28
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
|
|
28
29
|
*/
|
|
29
30
|
target: '_self' | '_blank' | '_parent' | '_top';
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ItemDisplayComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ItemDisplayComponent, "ec-item-display", never, { "id": "id"; "label": "label"; "value": "value"; "url": "url"; "condensed": "condensed"; "target": "target"; }, {}, never, ["*"], false>;
|
|
30
33
|
}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { OnChanges } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { UntypedFormControl } from '@angular/forms';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class JsonDisplayComponent implements OnChanges {
|
|
5
6
|
private translate;
|
|
6
7
|
id?: string;
|
|
7
8
|
attrId?: string;
|
|
8
9
|
jsonString?: string;
|
|
9
10
|
maxLength: number;
|
|
10
|
-
jsonDisplay:
|
|
11
|
+
jsonDisplay: UntypedFormControl;
|
|
11
12
|
constructor(translate: TranslateService);
|
|
12
13
|
ngOnChanges(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JsonDisplayComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JsonDisplayComponent, "ec-json-display", never, { "id": "id"; "jsonString": "jsonString"; "maxLength": "maxLength"; }, {}, never, never, false>;
|
|
13
16
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Renderer2, AfterViewInit } from '@angular/core';
|
|
2
2
|
import { CacheService } from '../../core/cache.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare type ResizeCacheEntry = {
|
|
4
5
|
widths: number[];
|
|
5
6
|
};
|
|
@@ -61,4 +62,6 @@ export declare abstract class ResizableBase implements AfterViewInit {
|
|
|
61
62
|
protected restoreWidths(widths: number[]): void;
|
|
62
63
|
/** Store the provided widths in cache so they can be retrieved later */
|
|
63
64
|
protected saveWidths(widths: number[]): void;
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizableBase, never>;
|
|
66
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizableBase, never, never, { "rememberWidth": "rememberWidth"; "id": "id"; }, {}, never, never, false>;
|
|
64
67
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
2
|
import { CacheService } from '../../core/cache.service';
|
|
3
3
|
import { ResizableBase } from './resizable-base';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* Make an element resizable horizontally by wrapping it in the ResizableComponent.
|
|
6
7
|
* Default widths / limits are applied but you can optionally override them
|
|
@@ -25,4 +26,6 @@ export declare class ResizableComponent extends ResizableBase implements OnInit
|
|
|
25
26
|
* width is enabled. We only care about the first one because we only have one width
|
|
26
27
|
*/
|
|
27
28
|
protected restoreWidths(widths: number[]): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizableComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResizableComponent, "ec-resizable", never, {}, {}, never, ["*"], false>;
|
|
28
31
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { SplashService } from './splash.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SplashComponent implements OnInit, OnDestroy {
|
|
4
5
|
private splashService;
|
|
5
6
|
/** Sets the visibility of the splash display */
|
|
@@ -10,4 +11,6 @@ export declare class SplashComponent implements OnInit, OnDestroy {
|
|
|
10
11
|
constructor(splashService: SplashService);
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
ngOnDestroy(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplashComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SplashComponent, "ec-splash", never, {}, {}, never, never, false>;
|
|
13
16
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class SplashService {
|
|
3
4
|
/** Used to interact with the splash component
|
|
4
5
|
* The splash component will subscribe to this and any components
|
|
@@ -16,4 +17,6 @@ export declare class SplashService {
|
|
|
16
17
|
* Hides the splash screen
|
|
17
18
|
*/
|
|
18
19
|
hideSplash(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplashService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SplashService>;
|
|
19
22
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ResizableColumnComponent {
|
|
3
4
|
el: ElementRef;
|
|
4
5
|
onResize: EventEmitter<number>;
|
|
5
6
|
constructor(el: ElementRef);
|
|
6
7
|
emitWidth(width: number): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizableColumnComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResizableColumnComponent, "th.is-resizable", never, {}, { "onResize": "onResize"; }, never, ["*"], false>;
|
|
7
10
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, OnInit, Renderer2, OnDestroy, QueryList } from '@angular/co
|
|
|
2
2
|
import { ResizableBase } from '../resizable/resizable-base';
|
|
3
3
|
import { CacheService } from '../../core/cache.service';
|
|
4
4
|
import { ResizableColumnComponent } from './resizable-column.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* Add the ability to resize columns to a standard HTML table.
|
|
7
8
|
* Specify a column as resizable by adding the .is-resizable class to a <th>.
|
|
@@ -87,4 +88,6 @@ export declare class ResizableTableDirective extends ResizableBase implements On
|
|
|
87
88
|
* @param headers
|
|
88
89
|
*/
|
|
89
90
|
private setInitialWidths;
|
|
91
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizableTableDirective, never>;
|
|
92
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizableTableDirective, "[ecResizableTable]", never, { "isResizable": "ecResizableTable"; "containerEl": "containerEl"; "sortableTable": "sortableTable"; "resizableColumns": "resizableColumns"; }, {}, never, never, false>;
|
|
90
93
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { UntypedFormControl, UntypedFormGroup } from '@angular/forms';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { ErrorService } from '../../core/error.service';
|
|
@@ -9,6 +9,7 @@ import { ResizableColumnComponent } from './resizable-column.component';
|
|
|
9
9
|
import { PagingInfo } from './table-pagination.component';
|
|
10
10
|
import { TableSelectableRowContext } from './table-selectable-row.component';
|
|
11
11
|
import { TableSort } from './table.component';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
12
13
|
export declare type TableSearchResults = {
|
|
13
14
|
items: unknown[];
|
|
14
15
|
totalItems: number;
|
|
@@ -41,7 +42,7 @@ export declare class SearchableTableComponent implements OnInit, OnDestroy, OnCh
|
|
|
41
42
|
*
|
|
42
43
|
* The referenced FormGroup **must** contain a FormControl called 'searchModel'.
|
|
43
44
|
*/
|
|
44
|
-
formModel:
|
|
45
|
+
formModel: UntypedFormGroup;
|
|
45
46
|
/**
|
|
46
47
|
* Displayed in overlay when no data is returned (without searching).
|
|
47
48
|
*
|
|
@@ -156,7 +157,7 @@ export declare class SearchableTableComponent implements OnInit, OnDestroy, OnCh
|
|
|
156
157
|
*/
|
|
157
158
|
pageInfo?: PagingInfo;
|
|
158
159
|
/** Reference to the searchModel */
|
|
159
|
-
get searchModel():
|
|
160
|
+
get searchModel(): UntypedFormControl;
|
|
160
161
|
/**
|
|
161
162
|
* Text displayed in the footer.
|
|
162
163
|
* Sometimes `noDataMessage`, sometimes `noSearchResultsMessage`
|
|
@@ -198,4 +199,6 @@ export declare class SearchableTableComponent implements OnInit, OnDestroy, OnCh
|
|
|
198
199
|
private setUpRefreshTrigger;
|
|
199
200
|
/** Get text to display in the footer. */
|
|
200
201
|
private getCaption;
|
|
202
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchableTableComponent, never>;
|
|
203
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchableTableComponent, "ec-searchable-table", never, { "id": "id"; "resizable": "resizable"; "sortable": "sortable"; "sort": "sort"; "autofocus": "autofocus"; "tableClasses": "tableClasses"; "searchboxPlaceholder": "searchboxPlaceholder"; "formModel": "formModel"; "noDataMessage": "noDataMessage"; "noSearchResultsMessage": "noSearchResultsMessage"; "ready": "ready"; "getItems": "getItems"; "refresh": "refresh"; "status": "status"; "tableLayoutFixed": "tableLayoutFixed"; "searchboxTabIndex": "searchboxTabIndex"; "maxItemCount": "maxItemCount"; "hideSearchControl": "hideSearchControl"; "hideHeader": "hideHeader"; "objectType": "objectType"; "hideFooter": "hideFooter"; "pageable": "pageable"; "pageSize": "pageSize"; "maxTabs": "maxTabs"; "searchboxReadonly": "searchboxReadonly"; "selectionContext": "selectionContext"; "selectionToolbarTemplate": "selectionToolbarTemplate"; "additionalCountText": "additionalCountText"; "selectable": "selectable"; "customContentTemplate": "customContentTemplate"; "removeCard": "removeCard"; "overlayClasses": "overlayClasses"; "fillParentHeight": "fillParentHeight"; }, { "sortChange": "sortChange"; "pageChangeEmitter": "pageChange"; "itemsChange": "itemsChange"; }, ["resizableColumns"], [".searchable-table-controls", ".card-header", "*", ".searchable-table-footer"], false>;
|
|
201
204
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class TableDetailRowComponent {
|
|
2
3
|
contentClass?: string;
|
|
3
4
|
contentColSpan: number;
|
|
4
5
|
maxHeight?: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableDetailRowComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableDetailRowComponent, "[ecTableDetailRow]", never, { "contentClass": "contentClass"; "contentColSpan": "contentColSpan"; "maxHeight": "maxHeight"; }, {}, never, ["*"], false>;
|
|
5
8
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit, ElementRef, OnChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class TableLockedColumnComponent implements OnInit, OnChanges {
|
|
3
4
|
private el;
|
|
4
5
|
options: {
|
|
@@ -14,4 +15,6 @@ export declare class TableLockedColumnComponent implements OnInit, OnChanges {
|
|
|
14
15
|
ngOnInit(): void;
|
|
15
16
|
ngOnChanges(): void;
|
|
16
17
|
private updatePositionAndBorder;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableLockedColumnComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableLockedColumnComponent, "[ecTableLockedColumn]", never, { "options": "ecTableLockedColumn"; }, {}, never, ["*"], false>;
|
|
17
20
|
}
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class TableMasterHeaderRowComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableMasterHeaderRowComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableMasterHeaderRowComponent, "[ecTableMasterHeaderRow]", never, {}, {}, never, ["*"], false>;
|
|
2
5
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, TemplateRef, ElementRef, Renderer2, SimpleChanges, OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class TableMasterRowComponent implements OnChanges, OnInit, OnDestroy {
|
|
3
4
|
private renderer;
|
|
4
5
|
private el;
|
|
@@ -98,4 +99,6 @@ export declare class TableMasterRowComponent implements OnChanges, OnInit, OnDes
|
|
|
98
99
|
* Remove the generated html of the detail row from the DOM
|
|
99
100
|
*/
|
|
100
101
|
private removeDetailNodes;
|
|
102
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableMasterRowComponent, never>;
|
|
103
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableMasterRowComponent, "[ecTableMasterRow]", never, { "id": "id"; "hasDetails": "hasDetails"; "showDetails": "showDetails"; "detailTemplate": "detailTemplate"; "detailContext": "detailContext"; "detailRowColSpan": "detailRowColSpan"; "detailRowClass": "detailRowClass"; "detailRowContentClass": "detailRowContentClass"; "detailRowMaxHeight": "detailRowMaxHeight"; }, { "showDetailsChanged": "showDetailsChanged"; }, never, ["*"], false>;
|
|
101
104
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, ElementRef, OnChanges } from '@angular/core';
|
|
2
2
|
import { MenuItem } from '../../controls/menu/menu.component';
|
|
3
3
|
import { NavGroup } from '../../controls/navigation/nav-group';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export interface PagingInfo {
|
|
5
6
|
/**Number of items to skip to get to this page*/
|
|
6
7
|
skip: number;
|
|
@@ -82,5 +83,7 @@ export declare class TablePaginationComponent implements OnChanges {
|
|
|
82
83
|
* A single dropdown item can represent a range of up to 10 pages (the last item could have less than 10).
|
|
83
84
|
*/
|
|
84
85
|
private setDropdownItems;
|
|
86
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TablePaginationComponent, never>;
|
|
87
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TablePaginationComponent, "ec-table-pagination", never, { "id": "id"; "totalItems": "totalItems"; "pageSize": "pageSize"; "pageNumber": "pageNumber"; "maxTabs": "maxTabs"; }, { "pageChanged": "pageChanged"; }, never, never, false>;
|
|
85
88
|
}
|
|
86
89
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { AbstractControl,
|
|
2
|
+
import { AbstractControl, UntypedFormArray } from '@angular/forms';
|
|
3
3
|
import { Subject } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class TableSelectableRowContext {
|
|
5
6
|
/**specify the form control to use for the selectAll checkbox or provide your own.
|
|
6
7
|
* This can be useful if you want to subscribe to changes to change button states as the selection changes
|
|
@@ -13,7 +14,7 @@ export declare class TableSelectableRowContext {
|
|
|
13
14
|
* This can be useful if you want to subscribe to changes to change button states as the selection changes
|
|
14
15
|
* or if you want to add it to an already-existing form group
|
|
15
16
|
*/
|
|
16
|
-
rowCheckboxes:
|
|
17
|
+
rowCheckboxes: UntypedFormArray;
|
|
17
18
|
/**The index of the last row the user clicked. This allows multiple directives on a screen to coordinate
|
|
18
19
|
* for reacting to shift+click actions that should automatically select multiple rows between the clicked rows
|
|
19
20
|
* defaults to -1 to indicate that no user click has been captured
|
|
@@ -96,4 +97,6 @@ export declare class TableSelectableRowComponent implements OnInit, OnDestroy, O
|
|
|
96
97
|
*/
|
|
97
98
|
private handleShiftSelect;
|
|
98
99
|
private clearAllRows;
|
|
100
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableSelectableRowComponent, never>;
|
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableSelectableRowComponent, "[ecTableSelectableRow]", never, { "id": "id"; "isSelectionEnabled": "ecTableSelectableRow"; "context": "selectionContext"; "rowIndex": "rowIndex"; "lockedColOptions": "lockedColOptions"; "isSelected": "isSelected"; "isCheckboxDisabled": "isCheckboxDisabled"; }, {}, never, [".before-checkbox", "*"], false>;
|
|
99
102
|
}
|
|
@@ -2,6 +2,7 @@ import { AfterContentInit, AfterViewInit, ElementRef, EventEmitter, OnChanges, O
|
|
|
2
2
|
import { ResizableColumnComponent } from './resizable-column.component';
|
|
3
3
|
import { TableMasterRowComponent } from './table-master-row.component';
|
|
4
4
|
import { TableSelectableRowContext } from './table-selectable-row.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare type TableSortDirection = 'desc' | 'asc';
|
|
6
7
|
export interface TableSort {
|
|
7
8
|
field: string;
|
|
@@ -113,4 +114,6 @@ export declare class TableComponent implements AfterViewInit, OnDestroy, OnChang
|
|
|
113
114
|
*/
|
|
114
115
|
private onSort;
|
|
115
116
|
private initSelectable;
|
|
117
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
118
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ec-table", never, { "id": "id"; "scrollable": "scrollable"; "resizable": "resizable"; "condensed": "condensed"; "sortable": "sortable"; "selectionContext": "selectionContext"; "selectionToolbarTemplate": "selectionToolbarTemplate"; "selectable": "selectable"; "isForm": "isForm"; "sort": "sort"; "searchableTableResizableColumns": "resizableColumns"; }, { "sortChange": "sortChange"; }, ["masterRows", "_resizableColumns"], ["*"], false>;
|
|
116
119
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnChanges, SimpleChanges, EventEmitter } from '@angular/core';
|
|
2
2
|
import { Tag } from './tag';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TagsComponent implements OnChanges {
|
|
4
5
|
/**The ID of this set of tags */
|
|
5
6
|
id: string;
|
|
@@ -42,4 +43,6 @@ export declare class TagsComponent implements OnChanges {
|
|
|
42
43
|
*/
|
|
43
44
|
ngOnChanges(changes: SimpleChanges): void;
|
|
44
45
|
closeTag(tag: Tag): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagsComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "ec-tags", never, { "id": "id"; "tags": "tags"; "wrap": "wrap"; "isCondensed": "isCondensed"; }, { "tagClosed": "tagClosed"; }, never, never, false>;
|
|
45
48
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ToastEvent, ToastItem } from '../toast-types';
|
|
3
3
|
import { ToastService } from '../toast.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ToastComponent implements OnChanges, OnInit, OnDestroy {
|
|
5
6
|
private toastService;
|
|
6
7
|
toastItem?: ToastItem;
|
|
@@ -17,4 +18,6 @@ export declare class ToastComponent implements OnChanges, OnInit, OnDestroy {
|
|
|
17
18
|
closeClicked(): void;
|
|
18
19
|
private close;
|
|
19
20
|
private closeAfterTimer;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "ec-toast", never, { "toastItem": "toastItem"; }, { "closed": "closed"; }, never, never, false>;
|
|
20
23
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { ToastEvent, ToastItem, ToastSource } from './toast-types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ToastService {
|
|
4
5
|
private _events;
|
|
5
6
|
events: Observable<ToastEvent>;
|
|
@@ -14,4 +15,6 @@ export declare class ToastService {
|
|
|
14
15
|
* This will also remove the toast from the queue if it has not already been displayed.
|
|
15
16
|
*/
|
|
16
17
|
dismissToast(toast: ToastItem, source?: ToastSource): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
17
20
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { TelemetryService } from '../../../core/telemetry.service';
|
|
3
3
|
import { ToastEvent, ToastItem } from '../toast-types';
|
|
4
4
|
import { ToastService } from '../toast.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ToasterComponent implements OnInit, OnDestroy {
|
|
6
7
|
private toastService;
|
|
7
8
|
private telemetryService;
|
|
@@ -29,4 +30,6 @@ export declare class ToasterComponent implements OnInit, OnDestroy {
|
|
|
29
30
|
*/
|
|
30
31
|
private updateDismissibleToastBottom;
|
|
31
32
|
private trackEvent;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterComponent, "ec-toaster", never, {}, {}, never, never, false>;
|
|
32
35
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OverlayRef } from '@angular/cdk/overlay';
|
|
2
2
|
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* The position of the tooltip relative to its anchor. For example, if position is 'top-left' the the tooltip will appear above the anchor and expand to the left of the anchor.
|
|
5
6
|
*/
|
|
@@ -50,4 +51,6 @@ export declare class TooltipComponent implements TooltipOptions {
|
|
|
50
51
|
backgroundColor?: string;
|
|
51
52
|
onHide: EventEmitter<void>;
|
|
52
53
|
hide(): void;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ec-tooltip", never, {}, {}, never, never, false>;
|
|
53
56
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Overlay } from "@angular/cdk/overlay";
|
|
2
2
|
import { TooltipComponent, TooltipOptions, TooltipPosition } from "./tooltip.component";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TooltipService {
|
|
4
5
|
private overlay;
|
|
5
6
|
private positions;
|
|
@@ -9,4 +10,6 @@ export declare class TooltipService {
|
|
|
9
10
|
*/
|
|
10
11
|
show(anchor: HTMLElement, position?: TooltipPosition, options?: TooltipOptions): TooltipComponent;
|
|
11
12
|
private getOverlayConfig;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TooltipService>;
|
|
12
15
|
}
|
|
@@ -3,6 +3,7 @@ import { MenuComponent, MenuItem, MenuTemplateType } from '../../controls/menu/m
|
|
|
3
3
|
import { HierarchyItem } from '../hierarchy/hierarchy-base';
|
|
4
4
|
import { HierarchyTreeComponent } from '../hierarchy/hierarchy-tree/hierarchy-tree.component';
|
|
5
5
|
import { Overlay } from '../view-overlay/view-overlay.component';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare type TreeType = 'hierarchy' | 'menu';
|
|
7
8
|
export declare class TreeComponent {
|
|
8
9
|
/** The value of the host elements id attribute */
|
|
@@ -63,4 +64,6 @@ export declare class TreeComponent {
|
|
|
63
64
|
onHierarchyGetItemChildren(item: HierarchyItem): void;
|
|
64
65
|
/** Scroll to the tree item that is currently selected. */
|
|
65
66
|
scrollToSelectedItem(): void;
|
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeComponent, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeComponent, "ec-tree", never, { "id": "id"; "treeTitle": "treeTitle"; "hideTreeHeader": "hideTreeHeader"; "treeItems": "treeItems"; "treeHierarchyHideRootNode": "treeHierarchyHideRootNode"; "treeHierarchy": "treeHierarchy"; "treeMenuMaintainSelectedItem": "treeMenuMaintainSelectedItem"; "customTreeMenuTemplate": "customTreeMenuTemplate"; "status": "status"; "type": "type"; "menuItems": "menuItems"; "menuStatus": "menuStatus"; "menuTemplateType": "menuTemplateType"; "preserveIconSpace": "preserveIconSpace"; "templateType": "templateType"; }, { "treeSelection": "treeSelection"; "getTreeItemChildren": "getTreeItemChildren"; }, never, never, false>;
|
|
66
69
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
2
|
import { NavItem } from '../../controls/navigation/nav-item';
|
|
3
3
|
import { DisplayStatus, ViewStatus } from '../../shared/display';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class Overlay implements DisplayStatus {
|
|
5
6
|
/** @deprecated Deprecated due to noDataTemplate being prefered */
|
|
6
7
|
action?: NavItem;
|
|
@@ -32,4 +33,6 @@ export declare class ViewOverlayComponent implements Overlay {
|
|
|
32
33
|
overlayClassList?: string;
|
|
33
34
|
setStatus(status: ViewStatus, message?: string, action?: NavItem, noDataTemplate?: TemplateRef<any>): void;
|
|
34
35
|
actionClicked(event: any): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewOverlayComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewOverlayComponent, "[ecOverlay]", never, { "status": "status"; "message": "message"; "action": "action"; "noDataTemplate": "noDataTemplate"; "displayAsMask": "displayAsMask"; "overlayClassList": "overlayClassList"; }, {}, never, ["*"], false>;
|
|
35
38
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface ClickableElement {
|
|
3
4
|
dispatchEvent(event: Event): void;
|
|
4
5
|
}
|
|
@@ -8,4 +9,6 @@ export declare class ClickAreaForDirective implements OnInit {
|
|
|
8
9
|
constructor();
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
onClick(event: Event): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClickAreaForDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickAreaForDirective, "[ecClickAreaFor]", never, { "targetEl": "ecClickAreaFor"; }, {}, never, never, false>;
|
|
11
14
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit, ViewContainerRef, TemplateRef } from '@angular/core';
|
|
2
2
|
import { WindowService } from '../../../core/window.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Conditionally include content in the DOM based on the width of the viewport. Use to programmatically implement reponsive layouts and prevent duplicate markup and listeners.
|
|
5
6
|
* In most scenarios CSS media queries is sufficient to hide/show elements responsively. However, in some cases media queries would result in duplicate markup and listeners
|
|
@@ -54,4 +55,6 @@ export declare class IfViewportWidthDirective implements OnInit {
|
|
|
54
55
|
* Remove the directive's content from the DOM
|
|
55
56
|
*/
|
|
56
57
|
private hide;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IfViewportWidthDirective, never>;
|
|
59
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IfViewportWidthDirective, "[ecIfViewportWidth]", never, { "width": "ecIfViewportWidth"; }, {}, never, never, false>;
|
|
57
60
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TemplateRef, ViewContainerRef, OnInit, OnDestroy, Renderer2, EventEmitter } from '@angular/core';
|
|
2
2
|
import Popper from 'popper.js';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare type PopupPlacement = 'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end';
|
|
4
5
|
export declare type PopupStatus = 'visible' | 'hidden';
|
|
5
6
|
/**
|
|
@@ -95,4 +96,6 @@ export declare class PopupContainerDirective implements OnInit, OnDestroy, OnIni
|
|
|
95
96
|
*/
|
|
96
97
|
update(): void;
|
|
97
98
|
fixPosition(minWidthNone?: boolean, appendToBody?: boolean): void;
|
|
99
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PopupContainerDirective, never>;
|
|
100
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PopupContainerDirective, "[ecPopup]", never, { "popup": "ecPopup"; "popperOptions": "options"; }, {}, never, never, false>;
|
|
98
101
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import { UserPreferenceService } from '../../user-preference.service';
|
|
3
3
|
import moment from 'moment';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare type DateDisplay = Date | moment.Moment | string | null;
|
|
5
6
|
/**
|
|
6
7
|
* Format a date to the user's preference for display
|
|
@@ -15,4 +16,6 @@ export declare class DateDisplayPipe implements PipeTransform {
|
|
|
15
16
|
* If {@see date} is null or undefined, or the end of time, returns empty string
|
|
16
17
|
*/
|
|
17
18
|
transform(date?: DateDisplay, showEndOfTime?: boolean, showTime?: boolean, showSeconds?: boolean): string;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateDisplayPipe, never>;
|
|
20
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DateDisplayPipe, "dateDisplay", false>;
|
|
18
21
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class HighlightTextPipe implements PipeTransform {
|
|
3
4
|
transform(value: string, searchText: string): string;
|
|
4
5
|
private strongWrap;
|
|
5
6
|
private escapeRegex;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HighlightTextPipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<HighlightTextPipe, "highlightText", false>;
|
|
6
9
|
}
|