@igo2/common 17.0.0-next.5 → 17.0.0-next.7
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/action/actionbar/actionbar-item.component.d.ts +75 -0
- package/action/index.d.ts +5 -0
- package/action/public_api.d.ts +4 -0
- package/action/shared/action.interfaces.d.ts +18 -0
- package/action/shared/store.d.ts +8 -0
- package/backdrop/index.d.ts +5 -0
- package/backdrop/public_api.d.ts +2 -0
- package/badge/badge-icon.directive.d.ts +34 -0
- package/badge/index.d.ts +5 -0
- package/badge/public_api.d.ts +2 -0
- package/clickout/index.d.ts +5 -0
- package/clickout/public_api.d.ts +2 -0
- package/clone/index.d.ts +5 -0
- package/clone/public_api.d.ts +2 -0
- package/collapsible/index.d.ts +5 -0
- package/collapsible/public_api.d.ts +6 -0
- package/color/color-picker-form-field/index.d.ts +2 -0
- package/color/index.d.ts +5 -0
- package/color/public_api.d.ts +1 -0
- package/confirm-dialog/index.d.ts +5 -0
- package/confirm-dialog/public_api.d.ts +4 -0
- package/context-menu/index.d.ts +5 -0
- package/context-menu/public_api.d.ts +6 -0
- package/custom-html/index.d.ts +5 -0
- package/custom-html/public_api.d.ts +6 -0
- package/dom/index.d.ts +5 -0
- package/dom/public_api.d.ts +3 -0
- package/drag-drop/index.d.ts +5 -0
- package/drag-drop/public_api.d.ts +2 -0
- package/dynamic-component/index.d.ts +5 -0
- package/dynamic-component/public_api.d.ts +4 -0
- package/entity/entity-selector/index.d.ts +2 -0
- package/entity/entity-table/index.d.ts +2 -0
- package/entity/entity-table-paginator/index.d.ts +3 -0
- package/entity/entity.module.d.ts +16 -0
- package/entity/index.d.ts +5 -0
- package/entity/public_api.d.ts +5 -0
- package/environment/index.d.ts +5 -0
- package/esm2022/action/action.module.mjs +19 -0
- package/esm2022/action/actionbar/actionbar-item.component.mjs +192 -0
- package/esm2022/action/actionbar/actionbar.component.mjs +277 -0
- package/esm2022/action/actionbar/actionbar.module.mjs +19 -0
- package/esm2022/action/igo2-common-action.mjs +5 -0
- package/esm2022/action/public_api.mjs +5 -0
- package/esm2022/action/shared/action.enums.mjs +7 -0
- package/esm2022/action/shared/action.interfaces.mjs +2 -0
- package/esm2022/action/shared/index.mjs +4 -0
- package/esm2022/action/shared/store.mjs +8 -0
- package/esm2022/backdrop/backdrop.component.mjs +22 -0
- package/esm2022/backdrop/backdrop.module.mjs +25 -0
- package/esm2022/backdrop/igo2-common-backdrop.mjs +5 -0
- package/esm2022/backdrop/public_api.mjs +3 -0
- package/esm2022/badge/badge-icon.directive.mjs +149 -0
- package/esm2022/badge/badge-icon.module.mjs +25 -0
- package/esm2022/badge/igo2-common-badge.mjs +5 -0
- package/esm2022/badge/public_api.mjs +3 -0
- package/esm2022/clickout/clickout.directive.mjs +32 -0
- package/esm2022/clickout/clickout.module.mjs +25 -0
- package/esm2022/clickout/igo2-common-clickout.mjs +5 -0
- package/esm2022/clickout/public_api.mjs +3 -0
- package/esm2022/clone/clone.module.mjs +25 -0
- package/esm2022/clone/clone.pipe.mjs +25 -0
- package/esm2022/clone/igo2-common-clone.mjs +5 -0
- package/esm2022/clone/public_api.mjs +3 -0
- package/esm2022/collapsible/collapse.directive.mjs +57 -0
- package/esm2022/collapsible/collapsible.component.mjs +38 -0
- package/esm2022/collapsible/collapsible.module.mjs +26 -0
- package/esm2022/collapsible/igo2-common-collapsible.mjs +5 -0
- package/esm2022/collapsible/public_api.mjs +10 -0
- package/esm2022/color/color-picker-form-field/color-picker-form-field.component.mjs +104 -0
- package/esm2022/color/color-picker-form-field/color-picker-form-field.module.mjs +19 -0
- package/esm2022/color/color-picker-form-field/index.mjs +3 -0
- package/esm2022/color/igo2-common-color.mjs +5 -0
- package/esm2022/color/public_api.mjs +2 -0
- package/esm2022/confirm-dialog/confirm-dialog.component.mjs +31 -0
- package/esm2022/confirm-dialog/confirm-dialog.interface.mjs +2 -0
- package/esm2022/confirm-dialog/confirm-dialog.module.mjs +27 -0
- package/esm2022/confirm-dialog/confirm-dialog.service.mjs +35 -0
- package/esm2022/confirm-dialog/igo2-common-confirm-dialog.mjs +5 -0
- package/esm2022/confirm-dialog/public_api.mjs +5 -0
- package/esm2022/context-menu/context-menu.directive.mjs +109 -0
- package/esm2022/context-menu/context-menu.module.mjs +26 -0
- package/esm2022/context-menu/igo2-common-context-menu.mjs +5 -0
- package/esm2022/context-menu/long-press.directive.mjs +66 -0
- package/esm2022/context-menu/public_api.mjs +10 -0
- package/esm2022/custom-html/custom-html.component.mjs +22 -0
- package/esm2022/custom-html/custom-html.module.mjs +25 -0
- package/esm2022/custom-html/custom-html.pipe.mjs +23 -0
- package/esm2022/custom-html/igo2-common-custom-html.mjs +5 -0
- package/esm2022/custom-html/public_api.mjs +10 -0
- package/esm2022/dom/dom.interfaces.mjs +2 -0
- package/esm2022/dom/dom.module.mjs +27 -0
- package/esm2022/dom/dom.service.mjs +35 -0
- package/esm2022/dom/igo2-common-dom.mjs +5 -0
- package/esm2022/dom/public_api.mjs +4 -0
- package/esm2022/drag-drop/drag-drop.directive.mjs +82 -0
- package/esm2022/drag-drop/drag-drop.module.mjs +25 -0
- package/esm2022/drag-drop/igo2-common-drag-drop.mjs +5 -0
- package/esm2022/drag-drop/public_api.mjs +3 -0
- package/esm2022/dynamic-component/dynamic-component.module.mjs +19 -0
- package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +129 -0
- package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +19 -0
- package/esm2022/dynamic-component/igo2-common-dynamic-component.mjs +5 -0
- package/esm2022/dynamic-component/public_api.mjs +5 -0
- package/esm2022/dynamic-component/shared/dynamic-component.interfaces.mjs +2 -0
- package/esm2022/dynamic-component/shared/dynamic-component.mjs +183 -0
- package/esm2022/dynamic-component/shared/dynamic-component.service.mjs +30 -0
- package/esm2022/dynamic-component/shared/index.mjs +4 -0
- package/esm2022/entity/entity-selector/entity-selector.component.mjs +174 -0
- package/esm2022/entity/entity-selector/entity-selector.module.mjs +19 -0
- package/esm2022/entity/entity-selector/index.mjs +3 -0
- package/esm2022/entity/entity-table/entity-table-row.directive.mjs +138 -0
- package/esm2022/entity/entity-table/entity-table.component.mjs +883 -0
- package/esm2022/entity/entity-table/entity-table.module.mjs +19 -0
- package/esm2022/entity/entity-table/index.mjs +3 -0
- package/esm2022/entity/entity-table-paginator/entity-table-paginator.component.mjs +158 -0
- package/esm2022/entity/entity-table-paginator/entity-table-paginator.interface.mjs +2 -0
- package/esm2022/entity/entity-table-paginator/entity-table-paginator.module.mjs +19 -0
- package/esm2022/entity/entity-table-paginator/index.mjs +4 -0
- package/esm2022/entity/entity.module.mjs +30 -0
- package/esm2022/entity/igo2-common-entity.mjs +5 -0
- package/esm2022/entity/public_api.mjs +6 -0
- package/esm2022/entity/shared/entity.enums.mjs +28 -0
- package/esm2022/entity/shared/entity.interfaces.mjs +2 -0
- package/esm2022/entity/shared/entity.utils.mjs +73 -0
- package/esm2022/entity/shared/index.mjs +10 -0
- package/esm2022/entity/shared/state.mjs +194 -0
- package/esm2022/entity/shared/store.mjs +322 -0
- package/esm2022/entity/shared/strategies/filter-custom-function.mjs +80 -0
- package/esm2022/entity/shared/strategies/filter-selection.mjs +81 -0
- package/esm2022/entity/shared/strategies/index.mjs +4 -0
- package/esm2022/entity/shared/strategies/strategy.mjs +78 -0
- package/esm2022/entity/shared/transaction.mjs +329 -0
- package/esm2022/entity/shared/view.mjs +330 -0
- package/esm2022/entity/shared/watcher.mjs +135 -0
- package/esm2022/environment/environment.interface.mjs +2 -0
- package/esm2022/environment/igo2-common-environment.mjs +5 -0
- package/esm2022/environment/public_api.mjs +2 -0
- package/esm2022/flexible/flexible.component.mjs +135 -0
- package/esm2022/flexible/flexible.module.mjs +25 -0
- package/esm2022/flexible/flexible.type.mjs +2 -0
- package/esm2022/flexible/igo2-common-flexible.mjs +5 -0
- package/esm2022/flexible/public_api.mjs +4 -0
- package/esm2022/form/form/form.component.mjs +103 -0
- package/esm2022/form/form/form.module.mjs +19 -0
- package/esm2022/form/form/index.mjs +3 -0
- package/esm2022/form/form-dialog/form-dialog.component.mjs +94 -0
- package/esm2022/form/form-dialog/form-dialog.interface.mjs +2 -0
- package/esm2022/form/form-dialog/form-dialog.module.mjs +31 -0
- package/esm2022/form/form-dialog/form-dialog.service.mjs +30 -0
- package/esm2022/form/form-dialog/index.mjs +5 -0
- package/esm2022/form/form-field/form-field-select.component.mjs +117 -0
- package/esm2022/form/form-field/form-field-text.component.mjs +126 -0
- package/esm2022/form/form-field/form-field-textarea.component.mjs +95 -0
- package/esm2022/form/form-field/form-field.component.mjs +65 -0
- package/esm2022/form/form-field/form-field.directive.mjs +11 -0
- package/esm2022/form/form-field/form-field.module.mjs +23 -0
- package/esm2022/form/form-field/index.mjs +7 -0
- package/esm2022/form/form-group/form-group.component.mjs +82 -0
- package/esm2022/form/form-group/form-group.module.mjs +19 -0
- package/esm2022/form/form-group/index.mjs +3 -0
- package/esm2022/form/form.module.mjs +32 -0
- package/esm2022/form/igo2-common-form.mjs +5 -0
- package/esm2022/form/public_api.mjs +7 -0
- package/esm2022/form/shared/form-field-component.mjs +7 -0
- package/esm2022/form/shared/form-field.service.mjs +29 -0
- package/esm2022/form/shared/form.interfaces.mjs +2 -0
- package/esm2022/form/shared/form.service.mjs +82 -0
- package/esm2022/form/shared/form.utils.mjs +41 -0
- package/esm2022/form/shared/index.mjs +6 -0
- package/esm2022/home-button/home-button.component.mjs +26 -0
- package/esm2022/home-button/home-button.module.mjs +19 -0
- package/esm2022/home-button/igo2-common-home-button.mjs +5 -0
- package/esm2022/home-button/public_api.mjs +3 -0
- package/esm2022/icon/icon/icon.component.mjs +38 -0
- package/esm2022/icon/icon.provider.mjs +14 -0
- package/esm2022/icon/igo2-common-icon.mjs +5 -0
- package/esm2022/icon/public_api.mjs +4 -0
- package/esm2022/icon/shared/icon.interface.mjs +2 -0
- package/esm2022/icon/shared/icon.service.mjs +26 -0
- package/esm2022/icon/shared/icons.mjs +42 -0
- package/esm2022/icon/shared/index.mjs +4 -0
- package/esm2022/image/igo2-common-image.mjs +5 -0
- package/esm2022/image/image-error.directive.mjs +35 -0
- package/esm2022/image/image.module.mjs +26 -0
- package/esm2022/image/public_api.mjs +7 -0
- package/esm2022/image/secure-image.pipe.mjs +66 -0
- package/esm2022/interactive-tour/igo2-common-interactive-tour.mjs +5 -0
- package/esm2022/interactive-tour/interactive-tour.component.mjs +133 -0
- package/esm2022/interactive-tour/interactive-tour.interface.mjs +2 -0
- package/esm2022/interactive-tour/interactive-tour.loader.mjs +49 -0
- package/esm2022/interactive-tour/interactive-tour.module.mjs +19 -0
- package/esm2022/interactive-tour/interactive-tour.service.mjs +303 -0
- package/esm2022/interactive-tour/public_api.mjs +6 -0
- package/esm2022/json-dialog/igo2-common-json-dialog.mjs +5 -0
- package/esm2022/json-dialog/json-dialog.component.mjs +38 -0
- package/esm2022/json-dialog/json-dialog.module.mjs +26 -0
- package/esm2022/json-dialog/json-dialog.service.mjs +26 -0
- package/esm2022/json-dialog/public_api.mjs +4 -0
- package/esm2022/keyvalue/igo2-common-keyvalue.mjs +5 -0
- package/esm2022/keyvalue/keyvalue.module.mjs +25 -0
- package/esm2022/keyvalue/keyvalue.pipe.mjs +19 -0
- package/esm2022/keyvalue/public_api.mjs +3 -0
- package/esm2022/list/igo2-common-list.mjs +5 -0
- package/esm2022/list/list-item.directive.mjs +166 -0
- package/esm2022/list/list.component.mjs +252 -0
- package/esm2022/list/list.module.mjs +26 -0
- package/esm2022/list/public_api.mjs +7 -0
- package/esm2022/panel/igo2-common-panel.mjs +5 -0
- package/esm2022/panel/panel.component.mjs +30 -0
- package/esm2022/panel/panel.module.mjs +19 -0
- package/esm2022/panel/public_api.mjs +3 -0
- package/esm2022/public_api.mjs +17 -78
- package/esm2022/select-value-dialog/igo2-common-select-value-dialog.mjs +5 -0
- package/esm2022/select-value-dialog/public_api.mjs +6 -0
- package/esm2022/select-value-dialog/select-value-check-radio-dialog.component.mjs +103 -0
- package/esm2022/select-value-dialog/select-value-dialog.enums.mjs +6 -0
- package/esm2022/select-value-dialog/select-value-dialog.interface.mjs +2 -0
- package/esm2022/select-value-dialog/select-value-dialog.module.mjs +27 -0
- package/esm2022/select-value-dialog/select-value-dialog.service.mjs +29 -0
- package/esm2022/sidenav/igo2-common-sidenav.mjs +5 -0
- package/esm2022/sidenav/public_api.mjs +3 -0
- package/esm2022/sidenav/sidenav-shim.directive.mjs +58 -0
- package/esm2022/sidenav/sidenav.module.mjs +25 -0
- package/esm2022/spinner/igo2-common-spinner.mjs +5 -0
- package/esm2022/spinner/public_api.mjs +4 -0
- package/esm2022/spinner/spinner-activity.directive.mjs +56 -0
- package/esm2022/spinner/spinner.component.mjs +30 -0
- package/esm2022/spinner/spinner.module.mjs +26 -0
- package/esm2022/stop-propagation/igo2-common-stop-propagation.mjs +5 -0
- package/esm2022/stop-propagation/public_api.mjs +10 -0
- package/esm2022/stop-propagation/stop-drop-propagation.directive.mjs +21 -0
- package/esm2022/stop-propagation/stop-propagation.directive.mjs +20 -0
- package/esm2022/stop-propagation/stop-propagation.module.mjs +26 -0
- package/esm2022/table/igo2-common-table.mjs +5 -0
- package/esm2022/table/public_api.mjs +7 -0
- package/esm2022/table/table-action-color.enum.mjs +7 -0
- package/esm2022/table/table-database.mjs +28 -0
- package/esm2022/table/table-datasource.mjs +64 -0
- package/esm2022/table/table-model.interface.mjs +2 -0
- package/esm2022/table/table.component.mjs +143 -0
- package/esm2022/table/table.module.mjs +25 -0
- package/esm2022/tool/igo2-common-tool.mjs +5 -0
- package/esm2022/tool/public_api.mjs +4 -0
- package/esm2022/tool/shared/index.mjs +6 -0
- package/esm2022/tool/shared/tool-component.mjs +9 -0
- package/esm2022/tool/shared/tool.interface.mjs +2 -0
- package/esm2022/tool/shared/tool.service.mjs +43 -0
- package/esm2022/tool/shared/toolbox.enums.mjs +2 -0
- package/esm2022/tool/shared/toolbox.mjs +192 -0
- package/esm2022/tool/tool.module.mjs +28 -0
- package/esm2022/tool/toolbox/index.mjs +3 -0
- package/esm2022/tool/toolbox/toolbox.animation.mjs +10 -0
- package/esm2022/tool/toolbox/toolbox.component.mjs +241 -0
- package/esm2022/tool/toolbox/toolbox.module.mjs +19 -0
- package/esm2022/widget/igo2-common-widget.mjs +5 -0
- package/esm2022/widget/public_api.mjs +4 -0
- package/esm2022/widget/shared/index.mjs +4 -0
- package/esm2022/widget/shared/widget.interfaces.mjs +2 -0
- package/esm2022/widget/shared/widget.mjs +4 -0
- package/esm2022/widget/shared/widget.service.mjs +22 -0
- package/esm2022/widget/widget-outlet/index.mjs +3 -0
- package/esm2022/widget/widget-outlet/widget-outlet.component.mjs +113 -0
- package/esm2022/widget/widget-outlet/widget-outlet.module.mjs +19 -0
- package/esm2022/widget/widget.module.mjs +22 -0
- package/esm2022/workspace/igo2-common-workspace.mjs +5 -0
- package/esm2022/workspace/public_api.mjs +5 -0
- package/esm2022/workspace/shared/index.mjs +4 -0
- package/esm2022/workspace/shared/store.mjs +37 -0
- package/esm2022/workspace/shared/workspace.interfaces.mjs +2 -0
- package/esm2022/workspace/shared/workspace.mjs +143 -0
- package/esm2022/workspace/workspace-selector/index.mjs +3 -0
- package/esm2022/workspace/workspace-selector/workspace-selector.component.mjs +51 -0
- package/esm2022/workspace/workspace-selector/workspace-selector.module.mjs +19 -0
- package/esm2022/workspace/workspace-widget-outlet/index.mjs +3 -0
- package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +74 -0
- package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +19 -0
- package/esm2022/workspace/workspace.module.mjs +27 -0
- package/fesm2022/igo2-common-action.mjs +505 -0
- package/fesm2022/igo2-common-action.mjs.map +1 -0
- package/fesm2022/igo2-common-backdrop.mjs +51 -0
- package/fesm2022/igo2-common-backdrop.mjs.map +1 -0
- package/fesm2022/igo2-common-badge.mjs +178 -0
- package/fesm2022/igo2-common-badge.mjs.map +1 -0
- package/fesm2022/igo2-common-clickout.mjs +61 -0
- package/fesm2022/igo2-common-clickout.mjs.map +1 -0
- package/fesm2022/igo2-common-clone.mjs +54 -0
- package/fesm2022/igo2-common-clone.mjs.map +1 -0
- package/fesm2022/igo2-common-collapsible.mjs +126 -0
- package/fesm2022/igo2-common-collapsible.mjs.map +1 -0
- package/fesm2022/igo2-common-color.mjs +127 -0
- package/fesm2022/igo2-common-color.mjs.map +1 -0
- package/fesm2022/igo2-common-confirm-dialog.mjs +91 -0
- package/fesm2022/igo2-common-confirm-dialog.mjs.map +1 -0
- package/fesm2022/igo2-common-context-menu.mjs +206 -0
- package/fesm2022/igo2-common-context-menu.mjs.map +1 -0
- package/fesm2022/igo2-common-custom-html.mjs +74 -0
- package/fesm2022/igo2-common-custom-html.mjs.map +1 -0
- package/fesm2022/igo2-common-dom.mjs +65 -0
- package/fesm2022/igo2-common-dom.mjs.map +1 -0
- package/fesm2022/igo2-common-drag-drop.mjs +111 -0
- package/fesm2022/igo2-common-drag-drop.mjs.map +1 -0
- package/fesm2022/igo2-common-dynamic-component.mjs +375 -0
- package/fesm2022/igo2-common-dynamic-component.mjs.map +1 -0
- package/fesm2022/igo2-common-entity.mjs +3036 -0
- package/fesm2022/igo2-common-entity.mjs.map +1 -0
- package/fesm2022/igo2-common-environment.mjs +4 -0
- package/fesm2022/igo2-common-environment.mjs.map +1 -0
- package/fesm2022/igo2-common-flexible.mjs +163 -0
- package/fesm2022/igo2-common-flexible.mjs.map +1 -0
- package/fesm2022/igo2-common-form.mjs +898 -0
- package/fesm2022/igo2-common-form.mjs.map +1 -0
- package/fesm2022/igo2-common-home-button.mjs +49 -0
- package/fesm2022/igo2-common-home-button.mjs.map +1 -0
- package/fesm2022/igo2-common-icon.mjs +118 -0
- package/fesm2022/igo2-common-icon.mjs.map +1 -0
- package/fesm2022/igo2-common-image.mjs +129 -0
- package/fesm2022/igo2-common-image.mjs.map +1 -0
- package/fesm2022/igo2-common-interactive-tour.mjs +490 -0
- package/fesm2022/igo2-common-interactive-tour.mjs.map +1 -0
- package/fesm2022/igo2-common-json-dialog.mjs +88 -0
- package/fesm2022/igo2-common-json-dialog.mjs.map +1 -0
- package/fesm2022/igo2-common-keyvalue.mjs +48 -0
- package/fesm2022/igo2-common-keyvalue.mjs.map +1 -0
- package/fesm2022/igo2-common-list.mjs +446 -0
- package/fesm2022/igo2-common-list.mjs.map +1 -0
- package/fesm2022/igo2-common-panel.mjs +53 -0
- package/fesm2022/igo2-common-panel.mjs.map +1 -0
- package/fesm2022/igo2-common-select-value-dialog.mjs +161 -0
- package/fesm2022/igo2-common-select-value-dialog.mjs.map +1 -0
- package/fesm2022/igo2-common-sidenav.mjs +86 -0
- package/fesm2022/igo2-common-sidenav.mjs.map +1 -0
- package/fesm2022/igo2-common-spinner.mjs +110 -0
- package/fesm2022/igo2-common-spinner.mjs.map +1 -0
- package/fesm2022/igo2-common-stop-propagation.mjs +73 -0
- package/fesm2022/igo2-common-stop-propagation.mjs.map +1 -0
- package/fesm2022/igo2-common-table.mjs +264 -0
- package/fesm2022/igo2-common-table.mjs.map +1 -0
- package/fesm2022/igo2-common-tool.mjs +535 -0
- package/fesm2022/igo2-common-tool.mjs.map +1 -0
- package/fesm2022/igo2-common-widget.mjs +176 -0
- package/fesm2022/igo2-common-widget.mjs.map +1 -0
- package/fesm2022/igo2-common-workspace.mjs +361 -0
- package/fesm2022/igo2-common-workspace.mjs.map +1 -0
- package/fesm2022/igo2-common.mjs +16 -8754
- package/fesm2022/igo2-common.mjs.map +1 -1
- package/flexible/index.d.ts +5 -0
- package/flexible/public_api.d.ts +3 -0
- package/form/form/index.d.ts +2 -0
- package/form/form-dialog/form-dialog.component.d.ts +23 -0
- package/form/form-dialog/form-dialog.interface.d.ts +18 -0
- package/form/form-dialog/index.d.ts +4 -0
- package/form/form-field/form-field.directive.d.ts +5 -0
- package/form/form-field/index.d.ts +6 -0
- package/form/form-group/index.d.ts +2 -0
- package/form/form.module.d.ts +18 -0
- package/form/index.d.ts +5 -0
- package/form/public_api.d.ts +6 -0
- package/home-button/index.d.ts +5 -0
- package/home-button/public_api.d.ts +2 -0
- package/icon/icon/icon.component.d.ts +14 -0
- package/icon/icon.provider.d.ts +4 -0
- package/icon/index.d.ts +5 -0
- package/icon/public_api.d.ts +3 -0
- package/icon/shared/icon.interface.d.ts +4 -0
- package/icon/shared/icon.service.d.ts +12 -0
- package/icon/shared/icons.d.ts +11 -0
- package/icon/shared/index.d.ts +3 -0
- package/image/index.d.ts +5 -0
- package/image/public_api.d.ts +6 -0
- package/interactive-tour/index.d.ts +5 -0
- package/interactive-tour/interactive-tour.component.d.ts +33 -0
- package/interactive-tour/public_api.d.ts +5 -0
- package/json-dialog/index.d.ts +5 -0
- package/json-dialog/public_api.d.ts +3 -0
- package/keyvalue/index.d.ts +5 -0
- package/keyvalue/public_api.d.ts +2 -0
- package/list/index.d.ts +5 -0
- package/list/public_api.d.ts +6 -0
- package/package.json +201 -3
- package/panel/index.d.ts +5 -0
- package/panel/public_api.d.ts +2 -0
- package/public_api.d.ts +16 -77
- package/select-value-dialog/index.d.ts +5 -0
- package/select-value-dialog/public_api.d.ts +5 -0
- package/sidenav/index.d.ts +5 -0
- package/sidenav/public_api.d.ts +2 -0
- package/spinner/index.d.ts +5 -0
- package/spinner/public_api.d.ts +3 -0
- package/spinner/spinner.module.d.ts +14 -0
- package/src/common-theme.scss +8 -8
- package/stop-propagation/index.d.ts +5 -0
- package/stop-propagation/public_api.d.ts +6 -0
- package/table/index.d.ts +5 -0
- package/table/public_api.d.ts +6 -0
- package/tool/index.d.ts +5 -0
- package/tool/public_api.d.ts +3 -0
- package/tool/shared/tool.interface.d.ts +18 -0
- package/tool/shared/toolbox.d.ts +98 -0
- package/tool/toolbox/index.d.ts +2 -0
- package/tool/toolbox/toolbox.component.d.ts +128 -0
- package/widget/index.d.ts +5 -0
- package/widget/public_api.d.ts +3 -0
- package/widget/shared/widget.d.ts +4 -0
- package/widget/shared/widget.service.d.ts +10 -0
- package/widget/widget-outlet/index.d.ts +2 -0
- package/widget/widget-outlet/widget-outlet.component.d.ts +71 -0
- package/workspace/index.d.ts +5 -0
- package/workspace/public_api.d.ts +4 -0
- package/workspace/shared/store.d.ts +20 -0
- package/workspace/shared/workspace.d.ts +108 -0
- package/workspace/shared/workspace.interfaces.d.ts +11 -0
- package/workspace/workspace-selector/index.d.ts +2 -0
- package/workspace/workspace-selector/workspace-selector.component.d.ts +38 -0
- package/workspace/workspace-widget-outlet/index.d.ts +2 -0
- package/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +57 -0
- package/workspace/workspace.module.d.ts +14 -0
- package/esm2022/lib/action/action.module.mjs +0 -19
- package/esm2022/lib/action/actionbar/actionbar-item.component.mjs +0 -206
- package/esm2022/lib/action/actionbar/actionbar.component.mjs +0 -277
- package/esm2022/lib/action/actionbar/actionbar.module.mjs +0 -19
- package/esm2022/lib/action/index.mjs +0 -3
- package/esm2022/lib/action/shared/action.enums.mjs +0 -7
- package/esm2022/lib/action/shared/action.interfaces.mjs +0 -2
- package/esm2022/lib/action/shared/index.mjs +0 -4
- package/esm2022/lib/action/shared/store.mjs +0 -8
- package/esm2022/lib/backdrop/backdrop.component.mjs +0 -22
- package/esm2022/lib/backdrop/backdrop.module.mjs +0 -25
- package/esm2022/lib/backdrop/index.mjs +0 -2
- package/esm2022/lib/badge-icon/badge-icon.directive.mjs +0 -152
- package/esm2022/lib/badge-icon/badge-icon.module.mjs +0 -25
- package/esm2022/lib/badge-icon/index.mjs +0 -2
- package/esm2022/lib/clickout/clickout.directive.mjs +0 -32
- package/esm2022/lib/clickout/clickout.module.mjs +0 -25
- package/esm2022/lib/clickout/index.mjs +0 -2
- package/esm2022/lib/clone/clone.module.mjs +0 -25
- package/esm2022/lib/clone/clone.pipe.mjs +0 -25
- package/esm2022/lib/clone/index.mjs +0 -2
- package/esm2022/lib/collapsible/collapse.directive.mjs +0 -57
- package/esm2022/lib/collapsible/collapsible.component.mjs +0 -38
- package/esm2022/lib/collapsible/collapsible.module.mjs +0 -26
- package/esm2022/lib/collapsible/index.mjs +0 -9
- package/esm2022/lib/color-picker-form-field/color-picker-form-field.component.mjs +0 -104
- package/esm2022/lib/color-picker-form-field/color-picker-form-field.module.mjs +0 -19
- package/esm2022/lib/color-picker-form-field/index.mjs +0 -2
- package/esm2022/lib/confirm-dialog/confirm-dialog.component.mjs +0 -31
- package/esm2022/lib/confirm-dialog/confirm-dialog.interface.mjs +0 -2
- package/esm2022/lib/confirm-dialog/confirm-dialog.module.mjs +0 -27
- package/esm2022/lib/confirm-dialog/confirm-dialog.service.mjs +0 -35
- package/esm2022/lib/confirm-dialog/index.mjs +0 -4
- package/esm2022/lib/context-menu/context-menu.directive.mjs +0 -109
- package/esm2022/lib/context-menu/context-menu.module.mjs +0 -26
- package/esm2022/lib/context-menu/index.mjs +0 -9
- package/esm2022/lib/context-menu/long-press.directive.mjs +0 -66
- package/esm2022/lib/custom-html/custom-html.component.mjs +0 -22
- package/esm2022/lib/custom-html/custom-html.module.mjs +0 -25
- package/esm2022/lib/custom-html/custom-html.pipe.mjs +0 -23
- package/esm2022/lib/custom-html/index.mjs +0 -9
- package/esm2022/lib/dom/dom.interfaces.mjs +0 -2
- package/esm2022/lib/dom/dom.module.mjs +0 -27
- package/esm2022/lib/dom/dom.service.mjs +0 -35
- package/esm2022/lib/dom/index.mjs +0 -3
- package/esm2022/lib/drag-drop/drag-drop.directive.mjs +0 -82
- package/esm2022/lib/drag-drop/drag-drop.module.mjs +0 -25
- package/esm2022/lib/drag-drop/index.mjs +0 -2
- package/esm2022/lib/dynamic-component/dynamic-component.module.mjs +0 -19
- package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +0 -129
- package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +0 -19
- package/esm2022/lib/dynamic-component/index.mjs +0 -3
- package/esm2022/lib/dynamic-component/shared/dynamic-component.interfaces.mjs +0 -2
- package/esm2022/lib/dynamic-component/shared/dynamic-component.mjs +0 -183
- package/esm2022/lib/dynamic-component/shared/dynamic-component.service.mjs +0 -30
- package/esm2022/lib/dynamic-component/shared/index.mjs +0 -4
- package/esm2022/lib/entity/entity-selector/entity-selector.component.mjs +0 -174
- package/esm2022/lib/entity/entity-selector/entity-selector.module.mjs +0 -19
- package/esm2022/lib/entity/entity-table/entity-table-row.directive.mjs +0 -138
- package/esm2022/lib/entity/entity-table/entity-table.component.mjs +0 -884
- package/esm2022/lib/entity/entity-table/entity-table.module.mjs +0 -19
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +0 -158
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +0 -2
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +0 -19
- package/esm2022/lib/entity/entity-table-paginator/index.mjs +0 -3
- package/esm2022/lib/entity/entity.module.mjs +0 -22
- package/esm2022/lib/entity/index.mjs +0 -14
- package/esm2022/lib/entity/shared/entity.enums.mjs +0 -28
- package/esm2022/lib/entity/shared/entity.interfaces.mjs +0 -2
- package/esm2022/lib/entity/shared/entity.utils.mjs +0 -73
- package/esm2022/lib/entity/shared/index.mjs +0 -10
- package/esm2022/lib/entity/shared/state.mjs +0 -194
- package/esm2022/lib/entity/shared/store.mjs +0 -322
- package/esm2022/lib/entity/shared/strategies/filter-custom-function.mjs +0 -80
- package/esm2022/lib/entity/shared/strategies/filter-selection.mjs +0 -81
- package/esm2022/lib/entity/shared/strategies/index.mjs +0 -4
- package/esm2022/lib/entity/shared/strategies/strategy.mjs +0 -78
- package/esm2022/lib/entity/shared/transaction.mjs +0 -329
- package/esm2022/lib/entity/shared/view.mjs +0 -330
- package/esm2022/lib/entity/shared/watcher.mjs +0 -135
- package/esm2022/lib/environment/environment.interface.mjs +0 -2
- package/esm2022/lib/environment/index.mjs +0 -2
- package/esm2022/lib/flexible/flexible.component.mjs +0 -135
- package/esm2022/lib/flexible/flexible.module.mjs +0 -25
- package/esm2022/lib/flexible/flexible.type.mjs +0 -2
- package/esm2022/lib/flexible/index.mjs +0 -3
- package/esm2022/lib/form/form/form.component.mjs +0 -103
- package/esm2022/lib/form/form/form.module.mjs +0 -19
- package/esm2022/lib/form/form-field/form-field-select.component.mjs +0 -117
- package/esm2022/lib/form/form-field/form-field-text.component.mjs +0 -126
- package/esm2022/lib/form/form-field/form-field-textarea.component.mjs +0 -95
- package/esm2022/lib/form/form-field/form-field.component.mjs +0 -65
- package/esm2022/lib/form/form-field/form-field.module.mjs +0 -23
- package/esm2022/lib/form/form-field/index.mjs +0 -15
- package/esm2022/lib/form/form-group/form-group.component.mjs +0 -82
- package/esm2022/lib/form/form-group/form-group.module.mjs +0 -19
- package/esm2022/lib/form/form.module.mjs +0 -25
- package/esm2022/lib/form/index.mjs +0 -13
- package/esm2022/lib/form/shared/form-field-component.mjs +0 -7
- package/esm2022/lib/form/shared/form-field.service.mjs +0 -29
- package/esm2022/lib/form/shared/form.interfaces.mjs +0 -2
- package/esm2022/lib/form/shared/form.service.mjs +0 -82
- package/esm2022/lib/form/shared/form.utils.mjs +0 -41
- package/esm2022/lib/form/shared/index.mjs +0 -6
- package/esm2022/lib/form-dialog/form-dialog.component.mjs +0 -94
- package/esm2022/lib/form-dialog/form-dialog.interface.mjs +0 -2
- package/esm2022/lib/form-dialog/form-dialog.module.mjs +0 -31
- package/esm2022/lib/form-dialog/form-dialog.service.mjs +0 -30
- package/esm2022/lib/form-dialog/index.mjs +0 -4
- package/esm2022/lib/home-button/home-button.component.mjs +0 -26
- package/esm2022/lib/home-button/home-button.module.mjs +0 -19
- package/esm2022/lib/home-button/index.mjs +0 -2
- package/esm2022/lib/image/image-error.directive.mjs +0 -35
- package/esm2022/lib/image/image.module.mjs +0 -26
- package/esm2022/lib/image/index.mjs +0 -6
- package/esm2022/lib/image/secure-image.pipe.mjs +0 -66
- package/esm2022/lib/interactive-tour/index.mjs +0 -5
- package/esm2022/lib/interactive-tour/interactive-tour.component.mjs +0 -126
- package/esm2022/lib/interactive-tour/interactive-tour.interface.mjs +0 -2
- package/esm2022/lib/interactive-tour/interactive-tour.loader.mjs +0 -49
- package/esm2022/lib/interactive-tour/interactive-tour.module.mjs +0 -19
- package/esm2022/lib/interactive-tour/interactive-tour.service.mjs +0 -303
- package/esm2022/lib/json-dialog/index.mjs +0 -3
- package/esm2022/lib/json-dialog/json-dialog.component.mjs +0 -38
- package/esm2022/lib/json-dialog/json-dialog.module.mjs +0 -26
- package/esm2022/lib/json-dialog/json-dialog.service.mjs +0 -26
- package/esm2022/lib/keyvalue/index.mjs +0 -2
- package/esm2022/lib/keyvalue/keyvalue.module.mjs +0 -25
- package/esm2022/lib/keyvalue/keyvalue.pipe.mjs +0 -19
- package/esm2022/lib/list/index.mjs +0 -6
- package/esm2022/lib/list/list-item.directive.mjs +0 -166
- package/esm2022/lib/list/list.component.mjs +0 -252
- package/esm2022/lib/list/list.module.mjs +0 -26
- package/esm2022/lib/panel/index.mjs +0 -2
- package/esm2022/lib/panel/panel.component.mjs +0 -30
- package/esm2022/lib/panel/panel.module.mjs +0 -19
- package/esm2022/lib/select-value-dialog/index.mjs +0 -5
- package/esm2022/lib/select-value-dialog/select-value-check-radio-dialog.component.mjs +0 -103
- package/esm2022/lib/select-value-dialog/select-value-dialog.enums.mjs +0 -6
- package/esm2022/lib/select-value-dialog/select-value-dialog.interface.mjs +0 -2
- package/esm2022/lib/select-value-dialog/select-value-dialog.module.mjs +0 -27
- package/esm2022/lib/select-value-dialog/select-value-dialog.service.mjs +0 -29
- package/esm2022/lib/sidenav/index.mjs +0 -2
- package/esm2022/lib/sidenav/sidenav-shim.directive.mjs +0 -58
- package/esm2022/lib/sidenav/sidenav.module.mjs +0 -25
- package/esm2022/lib/spinner/index.mjs +0 -9
- package/esm2022/lib/spinner/spinner-activity.directive.mjs +0 -56
- package/esm2022/lib/spinner/spinner.component.mjs +0 -30
- package/esm2022/lib/spinner/spinner.module.mjs +0 -21
- package/esm2022/lib/stop-propagation/index.mjs +0 -9
- package/esm2022/lib/stop-propagation/stop-drop-propagation.directive.mjs +0 -21
- package/esm2022/lib/stop-propagation/stop-propagation.directive.mjs +0 -20
- package/esm2022/lib/stop-propagation/stop-propagation.module.mjs +0 -26
- package/esm2022/lib/table/index.mjs +0 -6
- package/esm2022/lib/table/table-action-color.enum.mjs +0 -7
- package/esm2022/lib/table/table-database.mjs +0 -28
- package/esm2022/lib/table/table-datasource.mjs +0 -64
- package/esm2022/lib/table/table-model.interface.mjs +0 -2
- package/esm2022/lib/table/table.component.mjs +0 -143
- package/esm2022/lib/table/table.module.mjs +0 -25
- package/esm2022/lib/tool/index.mjs +0 -3
- package/esm2022/lib/tool/shared/index.mjs +0 -6
- package/esm2022/lib/tool/shared/tool-component.mjs +0 -9
- package/esm2022/lib/tool/shared/tool.interface.mjs +0 -2
- package/esm2022/lib/tool/shared/tool.service.mjs +0 -43
- package/esm2022/lib/tool/shared/toolbox.enums.mjs +0 -2
- package/esm2022/lib/tool/shared/toolbox.mjs +0 -184
- package/esm2022/lib/tool/tool.module.mjs +0 -28
- package/esm2022/lib/tool/toolbox/toolbox.animation.mjs +0 -10
- package/esm2022/lib/tool/toolbox/toolbox.component.mjs +0 -243
- package/esm2022/lib/tool/toolbox/toolbox.module.mjs +0 -19
- package/esm2022/lib/widget/index.mjs +0 -3
- package/esm2022/lib/widget/shared/index.mjs +0 -4
- package/esm2022/lib/widget/shared/widget.interfaces.mjs +0 -2
- package/esm2022/lib/widget/shared/widget.mjs +0 -4
- package/esm2022/lib/widget/shared/widget.service.mjs +0 -22
- package/esm2022/lib/widget/widget-outlet/widget-outlet.component.mjs +0 -114
- package/esm2022/lib/widget/widget-outlet/widget-outlet.module.mjs +0 -19
- package/esm2022/lib/widget/widget.module.mjs +0 -22
- package/esm2022/lib/workspace/index.mjs +0 -10
- package/esm2022/lib/workspace/shared/index.mjs +0 -4
- package/esm2022/lib/workspace/shared/store.mjs +0 -37
- package/esm2022/lib/workspace/shared/workspace.interfaces.mjs +0 -2
- package/esm2022/lib/workspace/shared/workspace.mjs +0 -143
- package/esm2022/lib/workspace/workspace-selector/workspace-selector.component.mjs +0 -52
- package/esm2022/lib/workspace/workspace-selector/workspace-selector.module.mjs +0 -19
- package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +0 -74
- package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +0 -19
- package/esm2022/lib/workspace/workspace.module.mjs +0 -22
- package/lib/action/actionbar/actionbar-item.component.d.ts +0 -78
- package/lib/action/index.d.ts +0 -2
- package/lib/action/shared/action.interfaces.d.ts +0 -17
- package/lib/action/shared/store.d.ts +0 -8
- package/lib/backdrop/index.d.ts +0 -1
- package/lib/badge-icon/badge-icon.directive.d.ts +0 -36
- package/lib/badge-icon/index.d.ts +0 -1
- package/lib/clickout/index.d.ts +0 -1
- package/lib/clone/index.d.ts +0 -1
- package/lib/collapsible/index.d.ts +0 -5
- package/lib/color-picker-form-field/index.d.ts +0 -1
- package/lib/confirm-dialog/index.d.ts +0 -3
- package/lib/context-menu/index.d.ts +0 -5
- package/lib/custom-html/index.d.ts +0 -5
- package/lib/dom/index.d.ts +0 -2
- package/lib/drag-drop/index.d.ts +0 -1
- package/lib/dynamic-component/index.d.ts +0 -2
- package/lib/entity/entity-table-paginator/index.d.ts +0 -2
- package/lib/entity/entity.module.d.ts +0 -12
- package/lib/entity/index.d.ts +0 -9
- package/lib/flexible/index.d.ts +0 -2
- package/lib/form/form-field/index.d.ts +0 -9
- package/lib/form/form.module.d.ts +0 -15
- package/lib/form/index.d.ts +0 -7
- package/lib/form-dialog/form-dialog.component.d.ts +0 -24
- package/lib/form-dialog/form-dialog.interface.d.ts +0 -18
- package/lib/form-dialog/index.d.ts +0 -3
- package/lib/home-button/index.d.ts +0 -1
- package/lib/image/index.d.ts +0 -5
- package/lib/interactive-tour/index.d.ts +0 -4
- package/lib/interactive-tour/interactive-tour.component.d.ts +0 -30
- package/lib/json-dialog/index.d.ts +0 -2
- package/lib/keyvalue/index.d.ts +0 -1
- package/lib/list/index.d.ts +0 -5
- package/lib/panel/index.d.ts +0 -1
- package/lib/select-value-dialog/index.d.ts +0 -4
- package/lib/sidenav/index.d.ts +0 -1
- package/lib/spinner/index.d.ts +0 -5
- package/lib/spinner/spinner.module.d.ts +0 -11
- package/lib/stop-propagation/index.d.ts +0 -5
- package/lib/table/index.d.ts +0 -5
- package/lib/tool/index.d.ts +0 -2
- package/lib/tool/shared/tool.interface.d.ts +0 -18
- package/lib/tool/shared/toolbox.d.ts +0 -95
- package/lib/tool/toolbox/toolbox.component.d.ts +0 -128
- package/lib/widget/index.d.ts +0 -2
- package/lib/widget/shared/widget.d.ts +0 -4
- package/lib/widget/shared/widget.service.d.ts +0 -10
- package/lib/widget/widget-outlet/widget-outlet.component.d.ts +0 -71
- package/lib/workspace/index.d.ts +0 -6
- package/lib/workspace/shared/store.d.ts +0 -20
- package/lib/workspace/shared/workspace.d.ts +0 -108
- package/lib/workspace/shared/workspace.interfaces.d.ts +0 -11
- package/lib/workspace/workspace-selector/workspace-selector.component.d.ts +0 -38
- package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +0 -57
- package/lib/workspace/workspace.module.d.ts +0 -11
- /package/{lib/action → action}/action.module.d.ts +0 -0
- /package/{lib/action → action}/actionbar/actionbar.component.d.ts +0 -0
- /package/{lib/action → action}/actionbar/actionbar.module.d.ts +0 -0
- /package/{lib/action → action}/shared/action.enums.d.ts +0 -0
- /package/{lib/action → action}/shared/index.d.ts +0 -0
- /package/{src/lib/action → action/src}/action.theming.scss +0 -0
- /package/{src/lib/action → action/src}/actionbar/actionbar-item.theming.scss +0 -0
- /package/{src/lib/action → action/src}/actionbar/actionbar.theming.scss +0 -0
- /package/{lib/backdrop → backdrop}/backdrop.component.d.ts +0 -0
- /package/{lib/backdrop → backdrop}/backdrop.module.d.ts +0 -0
- /package/{lib/badge-icon → badge}/badge-icon.module.d.ts +0 -0
- /package/{lib/clickout → clickout}/clickout.directive.d.ts +0 -0
- /package/{lib/clickout → clickout}/clickout.module.d.ts +0 -0
- /package/{lib/clone → clone}/clone.module.d.ts +0 -0
- /package/{lib/clone → clone}/clone.pipe.d.ts +0 -0
- /package/{lib/collapsible → collapsible}/collapse.directive.d.ts +0 -0
- /package/{lib/collapsible → collapsible}/collapsible.component.d.ts +0 -0
- /package/{lib/collapsible → collapsible}/collapsible.module.d.ts +0 -0
- /package/{src/lib/collapsible → collapsible/src}/collapsible.theming.scss +0 -0
- /package/{lib → color}/color-picker-form-field/color-picker-form-field.component.d.ts +0 -0
- /package/{lib → color}/color-picker-form-field/color-picker-form-field.module.d.ts +0 -0
- /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.component.d.ts +0 -0
- /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.interface.d.ts +0 -0
- /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.module.d.ts +0 -0
- /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.service.d.ts +0 -0
- /package/{lib/context-menu → context-menu}/context-menu.directive.d.ts +0 -0
- /package/{lib/context-menu → context-menu}/context-menu.module.d.ts +0 -0
- /package/{lib/context-menu → context-menu}/long-press.directive.d.ts +0 -0
- /package/{lib/custom-html → custom-html}/custom-html.component.d.ts +0 -0
- /package/{lib/custom-html → custom-html}/custom-html.module.d.ts +0 -0
- /package/{lib/custom-html → custom-html}/custom-html.pipe.d.ts +0 -0
- /package/{lib/dom → dom}/dom.interfaces.d.ts +0 -0
- /package/{lib/dom → dom}/dom.module.d.ts +0 -0
- /package/{lib/dom → dom}/dom.service.d.ts +0 -0
- /package/{lib/drag-drop → drag-drop}/drag-drop.directive.d.ts +0 -0
- /package/{lib/drag-drop → drag-drop}/drag-drop.module.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/dynamic-component.module.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/dynamic-outlet/dynamic-outlet.component.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/dynamic-outlet/dynamic-outlet.module.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.interfaces.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.service.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/shared/index.d.ts +0 -0
- /package/{lib/entity → entity}/entity-selector/entity-selector.component.d.ts +0 -0
- /package/{lib/entity → entity}/entity-selector/entity-selector.module.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table/entity-table-row.directive.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table/entity-table.component.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table/entity-table.module.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.component.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.interface.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.module.d.ts +0 -0
- /package/{lib/entity → entity}/shared/entity.enums.d.ts +0 -0
- /package/{lib/entity → entity}/shared/entity.interfaces.d.ts +0 -0
- /package/{lib/entity → entity}/shared/entity.utils.d.ts +0 -0
- /package/{lib/entity → entity}/shared/index.d.ts +0 -0
- /package/{lib/entity → entity}/shared/state.d.ts +0 -0
- /package/{lib/entity → entity}/shared/store.d.ts +0 -0
- /package/{lib/entity → entity}/shared/strategies/filter-custom-function.d.ts +0 -0
- /package/{lib/entity → entity}/shared/strategies/filter-selection.d.ts +0 -0
- /package/{lib/entity → entity}/shared/strategies/index.d.ts +0 -0
- /package/{lib/entity → entity}/shared/strategies/strategy.d.ts +0 -0
- /package/{lib/entity → entity}/shared/transaction.d.ts +0 -0
- /package/{lib/entity → entity}/shared/view.d.ts +0 -0
- /package/{lib/entity → entity}/shared/watcher.d.ts +0 -0
- /package/{src/lib/entity → entity/src}/entity-selector/entity-selector.theming.scss +0 -0
- /package/{src/lib/entity → entity/src}/entity-table/entity-table.theming.scss +0 -0
- /package/{src/lib/entity → entity/src}/entity.theming.scss +0 -0
- /package/{lib/environment → environment}/environment.interface.d.ts +0 -0
- /package/{lib/environment/index.d.ts → environment/public_api.d.ts} +0 -0
- /package/{lib/flexible → flexible}/flexible.component.d.ts +0 -0
- /package/{lib/flexible → flexible}/flexible.module.d.ts +0 -0
- /package/{lib/flexible → flexible}/flexible.type.d.ts +0 -0
- /package/{lib/form → form}/form/form.component.d.ts +0 -0
- /package/{lib/form → form}/form/form.module.d.ts +0 -0
- /package/{lib → form}/form-dialog/form-dialog.module.d.ts +0 -0
- /package/{lib → form}/form-dialog/form-dialog.service.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field-select.component.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field-text.component.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field-textarea.component.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field.component.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field.module.d.ts +0 -0
- /package/{lib/form → form}/form-group/form-group.component.d.ts +0 -0
- /package/{lib/form → form}/form-group/form-group.module.d.ts +0 -0
- /package/{lib/form → form}/shared/form-field-component.d.ts +0 -0
- /package/{lib/form → form}/shared/form-field.service.d.ts +0 -0
- /package/{lib/form → form}/shared/form.interfaces.d.ts +0 -0
- /package/{lib/form → form}/shared/form.service.d.ts +0 -0
- /package/{lib/form → form}/shared/form.utils.d.ts +0 -0
- /package/{lib/form → form}/shared/index.d.ts +0 -0
- /package/{lib/home-button → home-button}/home-button.component.d.ts +0 -0
- /package/{lib/home-button → home-button}/home-button.module.d.ts +0 -0
- /package/{src/lib/home-button → home-button/src}/home-button.theming.scss +0 -0
- /package/{lib/image → image}/image-error.directive.d.ts +0 -0
- /package/{lib/image → image}/image.module.d.ts +0 -0
- /package/{lib/image → image}/secure-image.pipe.d.ts +0 -0
- /package/{lib/interactive-tour → interactive-tour}/interactive-tour.interface.d.ts +0 -0
- /package/{lib/interactive-tour → interactive-tour}/interactive-tour.loader.d.ts +0 -0
- /package/{lib/interactive-tour → interactive-tour}/interactive-tour.module.d.ts +0 -0
- /package/{lib/interactive-tour → interactive-tour}/interactive-tour.service.d.ts +0 -0
- /package/{src/lib/interactive-tour → interactive-tour/src}/interactive-tour.theming.scss +0 -0
- /package/{lib/json-dialog → json-dialog}/json-dialog.component.d.ts +0 -0
- /package/{lib/json-dialog → json-dialog}/json-dialog.module.d.ts +0 -0
- /package/{lib/json-dialog → json-dialog}/json-dialog.service.d.ts +0 -0
- /package/{lib/keyvalue → keyvalue}/keyvalue.module.d.ts +0 -0
- /package/{lib/keyvalue → keyvalue}/keyvalue.pipe.d.ts +0 -0
- /package/{lib/list → list}/list-item.directive.d.ts +0 -0
- /package/{lib/list → list}/list.component.d.ts +0 -0
- /package/{lib/list → list}/list.module.d.ts +0 -0
- /package/{src/lib/list → list/src}/list.theming.scss +0 -0
- /package/{lib/panel → panel}/panel.component.d.ts +0 -0
- /package/{lib/panel → panel}/panel.module.d.ts +0 -0
- /package/{src/lib/panel → panel/src}/panel.theming.scss +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-check-radio-dialog.component.d.ts +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.enums.d.ts +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.interface.d.ts +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.module.d.ts +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.service.d.ts +0 -0
- /package/{lib/sidenav → sidenav}/sidenav-shim.directive.d.ts +0 -0
- /package/{lib/sidenav → sidenav}/sidenav.module.d.ts +0 -0
- /package/{lib/spinner → spinner}/spinner-activity.directive.d.ts +0 -0
- /package/{lib/spinner → spinner}/spinner.component.d.ts +0 -0
- /package/{lib/stop-propagation → stop-propagation}/stop-drop-propagation.directive.d.ts +0 -0
- /package/{lib/stop-propagation → stop-propagation}/stop-propagation.directive.d.ts +0 -0
- /package/{lib/stop-propagation → stop-propagation}/stop-propagation.module.d.ts +0 -0
- /package/{lib/table → table}/table-action-color.enum.d.ts +0 -0
- /package/{lib/table → table}/table-database.d.ts +0 -0
- /package/{lib/table → table}/table-datasource.d.ts +0 -0
- /package/{lib/table → table}/table-model.interface.d.ts +0 -0
- /package/{lib/table → table}/table.component.d.ts +0 -0
- /package/{lib/table → table}/table.module.d.ts +0 -0
- /package/{lib/tool → tool}/shared/index.d.ts +0 -0
- /package/{lib/tool → tool}/shared/tool-component.d.ts +0 -0
- /package/{lib/tool → tool}/shared/tool.service.d.ts +0 -0
- /package/{lib/tool → tool}/shared/toolbox.enums.d.ts +0 -0
- /package/{src/lib/tool → tool/src}/tool.theming.scss +0 -0
- /package/{src/lib/tool → tool/src}/toolbox/toolbox.theming.scss +0 -0
- /package/{lib/tool → tool}/tool.module.d.ts +0 -0
- /package/{lib/tool → tool}/toolbox/toolbox.animation.d.ts +0 -0
- /package/{lib/tool → tool}/toolbox/toolbox.module.d.ts +0 -0
- /package/{lib/widget → widget}/shared/index.d.ts +0 -0
- /package/{lib/widget → widget}/shared/widget.interfaces.d.ts +0 -0
- /package/{lib/widget → widget}/widget-outlet/widget-outlet.module.d.ts +0 -0
- /package/{lib/widget → widget}/widget.module.d.ts +0 -0
- /package/{lib/workspace → workspace}/shared/index.d.ts +0 -0
- /package/{lib/workspace → workspace}/workspace-selector/workspace-selector.module.d.ts +0 -0
- /package/{lib/workspace → workspace}/workspace-widget-outlet/workspace-widget-outlet.module.d.ts +0 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { ActionStore } from '@igo2/common/action';
|
|
2
|
+
import { EntityStore } from '@igo2/common/entity';
|
|
3
|
+
import { Widget } from '@igo2/common/widget';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { WorkspaceOptions } from './workspace.interfaces';
|
|
6
|
+
/**
|
|
7
|
+
* This class is responsible of managing the relations between
|
|
8
|
+
* entities and the actions that consume them. It also defines an
|
|
9
|
+
* entity table template that may be used by an entity table component.
|
|
10
|
+
*/
|
|
11
|
+
export declare class Workspace<E extends object = object> {
|
|
12
|
+
protected options: WorkspaceOptions;
|
|
13
|
+
/**
|
|
14
|
+
* Observable of the selected widget
|
|
15
|
+
*/
|
|
16
|
+
readonly widget$: BehaviorSubject<Widget>;
|
|
17
|
+
/**
|
|
18
|
+
* Observable of the selected widget's inputs
|
|
19
|
+
*/
|
|
20
|
+
readonly widgetInputs$: BehaviorSubject<{
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
}>;
|
|
23
|
+
/**
|
|
24
|
+
* Observable of the selected widget's subscribers
|
|
25
|
+
*/
|
|
26
|
+
readonly widgetSubscribers$: BehaviorSubject<{
|
|
27
|
+
[key: string]: (event: any) => void;
|
|
28
|
+
}>;
|
|
29
|
+
/**
|
|
30
|
+
* Subscription to the selected entity
|
|
31
|
+
*/
|
|
32
|
+
private entities$$;
|
|
33
|
+
/**
|
|
34
|
+
* State change that trigger an update of the actions availability
|
|
35
|
+
*/
|
|
36
|
+
private change;
|
|
37
|
+
/**
|
|
38
|
+
* Subscription to state changes
|
|
39
|
+
*/
|
|
40
|
+
private change$;
|
|
41
|
+
/**
|
|
42
|
+
* Workspace id
|
|
43
|
+
*/
|
|
44
|
+
get id(): string;
|
|
45
|
+
/**
|
|
46
|
+
* Workspace title
|
|
47
|
+
*/
|
|
48
|
+
get title(): string;
|
|
49
|
+
/**
|
|
50
|
+
* Workspace title
|
|
51
|
+
*/
|
|
52
|
+
get meta(): {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Entities store
|
|
57
|
+
*/
|
|
58
|
+
get entityStore(): EntityStore<E>;
|
|
59
|
+
/**
|
|
60
|
+
* Actions store (some actions activate a widget)
|
|
61
|
+
*/
|
|
62
|
+
get actionStore(): ActionStore;
|
|
63
|
+
/**
|
|
64
|
+
* Selected widget
|
|
65
|
+
*/
|
|
66
|
+
get widget(): Widget;
|
|
67
|
+
/**
|
|
68
|
+
* Whether a widget is selected
|
|
69
|
+
*/
|
|
70
|
+
get hasWidget(): boolean;
|
|
71
|
+
constructor(options: WorkspaceOptions);
|
|
72
|
+
/**
|
|
73
|
+
* Whether this strategy is active
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
76
|
+
get active(): boolean;
|
|
77
|
+
readonly active$: BehaviorSubject<boolean>;
|
|
78
|
+
/**
|
|
79
|
+
* Activate the workspace. By doing that, the workspace will observe
|
|
80
|
+
* the selected entity (from the store) and update the actions availability.
|
|
81
|
+
* For example, some actions require an entity to be selected.
|
|
82
|
+
*/
|
|
83
|
+
activate(): void;
|
|
84
|
+
/**
|
|
85
|
+
* Deactivate the workspace. Unsubcribe to the selected entity.
|
|
86
|
+
*/
|
|
87
|
+
deactivate(): void;
|
|
88
|
+
/**
|
|
89
|
+
* Activate a widget. In itself, activating a widget doesn't render it but,
|
|
90
|
+
* if an WorkspaceWidgetOutlet component is bound to this workspace, the widget will
|
|
91
|
+
* show up.
|
|
92
|
+
* @param widget Widget
|
|
93
|
+
* @param inputs Inputs the widget will receive
|
|
94
|
+
*/
|
|
95
|
+
activateWidget(widget: Widget, inputs?: {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}, subscribers?: {
|
|
98
|
+
[key: string]: (event: any) => void;
|
|
99
|
+
}): void;
|
|
100
|
+
/**
|
|
101
|
+
* Deactivate a widget.
|
|
102
|
+
*/
|
|
103
|
+
deactivateWidget(): void;
|
|
104
|
+
/**
|
|
105
|
+
* When the state changes, update the actions availability.
|
|
106
|
+
*/
|
|
107
|
+
private onStateChange;
|
|
108
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ActionStore } from '@igo2/common/action';
|
|
2
|
+
import { EntityStore } from '@igo2/common/entity';
|
|
3
|
+
export interface WorkspaceOptions {
|
|
4
|
+
id: string;
|
|
5
|
+
title: string;
|
|
6
|
+
entityStore?: EntityStore<object>;
|
|
7
|
+
actionStore?: ActionStore;
|
|
8
|
+
meta?: {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { EntitySelectorChange } from '@igo2/common/entity';
|
|
3
|
+
import { WorkspaceStore } from '../shared/store';
|
|
4
|
+
import { Workspace } from '../shared/workspace';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* Drop list that activates the selected workspace emit an event.
|
|
8
|
+
*/
|
|
9
|
+
export declare class WorkspaceSelectorComponent {
|
|
10
|
+
/**
|
|
11
|
+
* Store that holds the available workspaces.
|
|
12
|
+
*/
|
|
13
|
+
store: WorkspaceStore;
|
|
14
|
+
/**
|
|
15
|
+
* Wheither the selector must be disabled or not.
|
|
16
|
+
*/
|
|
17
|
+
disabled: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Event emitted when an workspace is selected or unselected
|
|
20
|
+
*/
|
|
21
|
+
selectedChange: EventEmitter<{
|
|
22
|
+
selected: boolean;
|
|
23
|
+
value: Workspace;
|
|
24
|
+
}>;
|
|
25
|
+
/**
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
getWorkspaceTitle(workspace: Workspace): string;
|
|
29
|
+
/**
|
|
30
|
+
* When an workspace is manually selected, select it into the
|
|
31
|
+
* store and emit an event.
|
|
32
|
+
* @internal
|
|
33
|
+
* @param event The selection change event
|
|
34
|
+
*/
|
|
35
|
+
onSelectedChange(event: EntitySelectorChange<Workspace>): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceSelectorComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceSelectorComponent, "igo-workspace-selector", never, { "store": { "alias": "store"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectedChange": "selectedChange"; }, never, never, true, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Widget } from '@igo2/common/widget';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { Workspace } from '../shared/workspace';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* This component dynamically render an Workspace's active widget.
|
|
8
|
+
* It also deactivate that widget whenever the widget's component
|
|
9
|
+
* emit the 'cancel' or 'complete' event.
|
|
10
|
+
*/
|
|
11
|
+
export declare class WorkspaceWidgetOutletComponent {
|
|
12
|
+
/**
|
|
13
|
+
* Workspace
|
|
14
|
+
*/
|
|
15
|
+
workspace: Workspace;
|
|
16
|
+
/**
|
|
17
|
+
* Event emitted when a widget is deactivate which happens
|
|
18
|
+
* when the widget's component emits the 'cancel' or 'complete' event.
|
|
19
|
+
*/
|
|
20
|
+
deactivateWidget: EventEmitter<Widget>;
|
|
21
|
+
/**
|
|
22
|
+
* Observable of the workspace's active widget
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
get widget$(): BehaviorSubject<Widget>;
|
|
26
|
+
/**
|
|
27
|
+
* Observable of the workspace's widget inputs
|
|
28
|
+
* @internal
|
|
29
|
+
*/
|
|
30
|
+
get widgetInputs$(): BehaviorSubject<{
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
}>;
|
|
33
|
+
/**
|
|
34
|
+
* Observable of the workspace's widget inputs
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
get widgetSubscribers$(): BehaviorSubject<{
|
|
38
|
+
[key: string]: (event: any) => void;
|
|
39
|
+
}>;
|
|
40
|
+
constructor();
|
|
41
|
+
/**
|
|
42
|
+
* When a widget's component emit the 'cancel' event,
|
|
43
|
+
* deactivate that widget and emit the 'deactivateWidget' event.
|
|
44
|
+
* @param widget Widget
|
|
45
|
+
* @internal
|
|
46
|
+
*/
|
|
47
|
+
onWidgetCancel(widget: Widget): void;
|
|
48
|
+
/**
|
|
49
|
+
* When a widget's component emit the 'cancel' event,
|
|
50
|
+
* deactivate that widget and emit the 'deactivateWidget' event.
|
|
51
|
+
* @param widget Widget
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
onWidgetComplete(widget: Widget): void;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceWidgetOutletComponent, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceWidgetOutletComponent, "igo-workspace-widget-outlet", never, { "workspace": { "alias": "workspace"; "required": false; }; }, { "deactivateWidget": "deactivateWidget"; }, never, never, true, never>;
|
|
57
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WorkspaceSelectorComponent } from './workspace-selector';
|
|
2
|
+
import { WorkspaceWidgetOutletComponent } from './workspace-widget-outlet';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./workspace-selector/workspace-selector.component";
|
|
5
|
+
import * as i2 from "./workspace-widget-outlet/workspace-widget-outlet.component";
|
|
6
|
+
export declare const WORKSPACE_DIRECTIVES: readonly [typeof WorkspaceSelectorComponent, typeof WorkspaceWidgetOutletComponent];
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated import the components directly or WORKSPACE_DIRECTIVES for every components/directives
|
|
9
|
+
*/
|
|
10
|
+
export declare class IgoWorkspaceModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgoWorkspaceModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoWorkspaceModule, never, [typeof i1.WorkspaceSelectorComponent, typeof i2.WorkspaceWidgetOutletComponent], [typeof i1.WorkspaceSelectorComponent, typeof i2.WorkspaceWidgetOutletComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IgoWorkspaceModule>;
|
|
14
|
+
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { ActionbarComponent } from './actionbar/actionbar.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* @deprecated import the ActionbarComponent directly
|
|
6
|
-
*/
|
|
7
|
-
export class IgoActionModule {
|
|
8
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoActionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.4", ngImport: i0, type: IgoActionModule, imports: [ActionbarComponent], exports: [ActionbarComponent] });
|
|
10
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoActionModule, imports: [ActionbarComponent] });
|
|
11
|
-
}
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: IgoActionModule, decorators: [{
|
|
13
|
-
type: NgModule,
|
|
14
|
-
args: [{
|
|
15
|
-
imports: [ActionbarComponent],
|
|
16
|
-
exports: [ActionbarComponent]
|
|
17
|
-
}]
|
|
18
|
-
}] });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbW1vbi9zcmMvbGliL2FjdGlvbi9hY3Rpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0saUNBQWlDLENBQUM7O0FBRXJFOztHQUVHO0FBS0gsTUFBTSxPQUFPLGVBQWU7dUdBQWYsZUFBZTt3R0FBZixlQUFlLFlBSGhCLGtCQUFrQixhQUNsQixrQkFBa0I7d0dBRWpCLGVBQWUsWUFIaEIsa0JBQWtCOzsyRkFHakIsZUFBZTtrQkFKM0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxrQkFBa0IsQ0FBQztvQkFDN0IsT0FBTyxFQUFFLENBQUMsa0JBQWtCLENBQUM7aUJBQzlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgQWN0aW9uYmFyQ29tcG9uZW50IH0gZnJvbSAnLi9hY3Rpb25iYXIvYWN0aW9uYmFyLmNvbXBvbmVudCc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQgaW1wb3J0IHRoZSBBY3Rpb25iYXJDb21wb25lbnQgZGlyZWN0bHlcbiAqL1xuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0FjdGlvbmJhckNvbXBvbmVudF0sXG4gIGV4cG9ydHM6IFtBY3Rpb25iYXJDb21wb25lbnRdXG59KVxuZXhwb3J0IGNsYXNzIElnb0FjdGlvbk1vZHVsZSB7fVxuIl19
|
|
@@ -1,206 +0,0 @@
|
|
|
1
|
-
import { AsyncPipe, NgClass, NgIf } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
3
|
-
import { MatButtonModule } from '@angular/material/button';
|
|
4
|
-
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
5
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
6
|
-
import { MatListModule } from '@angular/material/list';
|
|
7
|
-
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
8
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
9
|
-
import { BehaviorSubject, isObservable } from 'rxjs';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
import * as i1 from "@angular/material/list";
|
|
12
|
-
import * as i2 from "@angular/material/tooltip";
|
|
13
|
-
import * as i3 from "@angular/material/button";
|
|
14
|
-
import * as i4 from "@angular/material/icon";
|
|
15
|
-
import * as i5 from "@angular/material/checkbox";
|
|
16
|
-
import * as i6 from "@ngx-translate/core";
|
|
17
|
-
/**
|
|
18
|
-
* An action button
|
|
19
|
-
*/
|
|
20
|
-
export class ActionbarItemComponent {
|
|
21
|
-
disabled$ = new BehaviorSubject(false);
|
|
22
|
-
checkCondition$ = new BehaviorSubject(undefined);
|
|
23
|
-
icon$ = new BehaviorSubject(undefined);
|
|
24
|
-
tooltip$ = new BehaviorSubject(undefined);
|
|
25
|
-
noDisplay$ = new BehaviorSubject(false);
|
|
26
|
-
ngClass$ = new BehaviorSubject({});
|
|
27
|
-
ngClass$$;
|
|
28
|
-
disabled$$;
|
|
29
|
-
availability$$;
|
|
30
|
-
icon$$;
|
|
31
|
-
checkCondition$$;
|
|
32
|
-
tooltip$$;
|
|
33
|
-
noDisplay$$;
|
|
34
|
-
display$$;
|
|
35
|
-
/**
|
|
36
|
-
* Action
|
|
37
|
-
*/
|
|
38
|
-
action;
|
|
39
|
-
/**
|
|
40
|
-
* Color
|
|
41
|
-
*/
|
|
42
|
-
color = 'default';
|
|
43
|
-
/**
|
|
44
|
-
* Whether the action title is displayed
|
|
45
|
-
*/
|
|
46
|
-
withTitle = true;
|
|
47
|
-
/**
|
|
48
|
-
* Whether the action icon is displayed
|
|
49
|
-
*/
|
|
50
|
-
withIcon = true;
|
|
51
|
-
/**
|
|
52
|
-
* Whether a tooltip should be shown
|
|
53
|
-
*/
|
|
54
|
-
withTooltip = true;
|
|
55
|
-
/**
|
|
56
|
-
* Whether the action is disabled
|
|
57
|
-
*/
|
|
58
|
-
set disabled(value) {
|
|
59
|
-
this.disabled$.next(value);
|
|
60
|
-
}
|
|
61
|
-
get disabled() {
|
|
62
|
-
return this.disabled$.value;
|
|
63
|
-
}
|
|
64
|
-
/**
|
|
65
|
-
* Whether the action is display or not
|
|
66
|
-
*/
|
|
67
|
-
set noDisplay(value) {
|
|
68
|
-
this.noDisplay$.next(value);
|
|
69
|
-
}
|
|
70
|
-
get noDisplay() {
|
|
71
|
-
return this.noDisplay$.value;
|
|
72
|
-
}
|
|
73
|
-
/**
|
|
74
|
-
* Event emitted when the action button is clicked
|
|
75
|
-
*/
|
|
76
|
-
trigger = new EventEmitter();
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
get title() {
|
|
81
|
-
return this.action.title;
|
|
82
|
-
}
|
|
83
|
-
constructor() { }
|
|
84
|
-
ngOnInit() {
|
|
85
|
-
const args = this.action.args || [];
|
|
86
|
-
if (this.action.ngClass !== undefined) {
|
|
87
|
-
this.ngClass$$ = this.action
|
|
88
|
-
.ngClass(...args)
|
|
89
|
-
.subscribe((ngClass) => this.updateNgClass(ngClass));
|
|
90
|
-
}
|
|
91
|
-
if (isObservable(this.action.icon)) {
|
|
92
|
-
this.icon$$ = this.action.icon.subscribe((icon) => this.updateIcon(icon));
|
|
93
|
-
}
|
|
94
|
-
else {
|
|
95
|
-
this.updateIcon(this.action.icon);
|
|
96
|
-
}
|
|
97
|
-
if (isObservable(this.action.checkCondition)) {
|
|
98
|
-
this.checkCondition$$ = this.action.checkCondition.subscribe((checkCondition) => this.updateCheckCondition(checkCondition));
|
|
99
|
-
}
|
|
100
|
-
else {
|
|
101
|
-
this.updateCheckCondition(this.action.checkCondition);
|
|
102
|
-
}
|
|
103
|
-
if (isObservable(this.action.tooltip)) {
|
|
104
|
-
this.tooltip$$ = this.action.tooltip.subscribe((tooltip) => this.updateTooltip(tooltip));
|
|
105
|
-
}
|
|
106
|
-
else {
|
|
107
|
-
this.updateTooltip(this.action.tooltip);
|
|
108
|
-
}
|
|
109
|
-
if (this.action.availability !== undefined) {
|
|
110
|
-
this.availability$$ = this.action
|
|
111
|
-
.availability(...args)
|
|
112
|
-
.subscribe((available) => (this.disabled = !available));
|
|
113
|
-
}
|
|
114
|
-
this.disabled$$ = this.disabled$.subscribe((disabled) => this.updateNgClass({ 'igo-actionbar-item-disabled': disabled }));
|
|
115
|
-
if (this.action.display !== undefined) {
|
|
116
|
-
this.display$$ = this.action
|
|
117
|
-
.display(...args)
|
|
118
|
-
.subscribe((display) => (this.noDisplay = !display));
|
|
119
|
-
}
|
|
120
|
-
this.noDisplay$$ = this.noDisplay$.subscribe((noDisplay) => this.updateNgClass({ 'igo-actionbar-item-no-display': noDisplay }));
|
|
121
|
-
}
|
|
122
|
-
ngOnDestroy() {
|
|
123
|
-
if (this.ngClass$$ !== undefined) {
|
|
124
|
-
this.ngClass$$.unsubscribe();
|
|
125
|
-
this.ngClass$$ = undefined;
|
|
126
|
-
}
|
|
127
|
-
if (this.availability$$ !== undefined) {
|
|
128
|
-
this.availability$$.unsubscribe();
|
|
129
|
-
this.availability$$ = undefined;
|
|
130
|
-
}
|
|
131
|
-
if (this.display$$ !== undefined) {
|
|
132
|
-
this.display$$.unsubscribe();
|
|
133
|
-
this.display$$ = undefined;
|
|
134
|
-
}
|
|
135
|
-
if (this.checkCondition$$ !== undefined) {
|
|
136
|
-
this.checkCondition$$.unsubscribe();
|
|
137
|
-
this.checkCondition$$ = undefined;
|
|
138
|
-
}
|
|
139
|
-
if (this.icon$$ !== undefined) {
|
|
140
|
-
this.icon$$.unsubscribe();
|
|
141
|
-
this.icon$$ = undefined;
|
|
142
|
-
}
|
|
143
|
-
if (this.tooltip$$ !== undefined) {
|
|
144
|
-
this.tooltip$$.unsubscribe();
|
|
145
|
-
this.tooltip$$ = undefined;
|
|
146
|
-
}
|
|
147
|
-
this.disabled$$.unsubscribe();
|
|
148
|
-
this.noDisplay$$.unsubscribe();
|
|
149
|
-
}
|
|
150
|
-
/**
|
|
151
|
-
* When the action button is clicked, emit the 'trigger' event but don't
|
|
152
|
-
* invoke the action handler. This is handled by the parent component.
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
onClick() {
|
|
156
|
-
if (this.disabled === true) {
|
|
157
|
-
return;
|
|
158
|
-
}
|
|
159
|
-
this.trigger.emit(this.action);
|
|
160
|
-
}
|
|
161
|
-
updateNgClass(ngClass) {
|
|
162
|
-
this.ngClass$.next(Object.assign({}, this.ngClass$.value, ngClass));
|
|
163
|
-
}
|
|
164
|
-
updateTooltip(tooltip) {
|
|
165
|
-
this.tooltip$.next(tooltip);
|
|
166
|
-
}
|
|
167
|
-
updateCheckCondition(checkCondition) {
|
|
168
|
-
this.checkCondition$.next(checkCondition);
|
|
169
|
-
}
|
|
170
|
-
updateIcon(icon) {
|
|
171
|
-
this.icon$.next(icon);
|
|
172
|
-
}
|
|
173
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ActionbarItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
174
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.4", type: ActionbarItemComponent, isStandalone: true, selector: "igo-actionbar-item", inputs: { action: "action", color: "color", withTitle: "withTitle", withIcon: "withIcon", withTooltip: "withTooltip", disabled: "disabled", noDisplay: "noDisplay" }, outputs: { trigger: "trigger" }, ngImport: i0, template: "<mat-list-item\n *ngIf=\"!action.checkbox\"\n class=\"actionbar-item\"\n matTooltipClass=\"actionbarItemTooltip\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"withTooltip ? ((tooltip$ | async) || title | translate) : ''\"\n [ngClass]=\"ngClass$ | async\"\n (click)=\"onClick()\"\n>\n <button\n *ngIf=\"withIcon\"\n matListItemAvatar\n mat-icon-button\n [color]=\"color\"\n [disabled]=\"disabled$ | async\"\n [disableRipple]=\"true\"\n >\n <mat-icon *ngIf=\"withIcon\" svgIcon=\"{{ icon$ | async }}\"></mat-icon>\n </button>\n <span *ngIf=\"withTitle\" matLine>{{ title | translate }}</span>\n</mat-list-item>\n\n<mat-list-item\n class=\"item-checkbox\"\n *ngIf=\"action.checkbox\"\n matTooltipClass=\"actionbarItemTooltip\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"withTooltip ? ((tooltip$ | async) || title | translate) : ''\"\n [ngClass]=\"ngClass$ | async\"\n>\n <mat-checkbox\n *ngIf=\"withTitle\"\n (change)=\"action.handler()\"\n [checked]=\"checkCondition$ | async\"\n >\n {{ title | translate }}\n </mat-checkbox>\n</mat-list-item>\n", styles: [":host ::ng-deep mat-list-item:hover{cursor:pointer}:host mat-list-item.igo-actionbar-item-disabled{color:#00000042;cursor:default!important}:host mat-list-item.igo-actionbar-item-no-display{display:none}:host mat-list-item ::ng-deep button[matlistitemavatar]{margin-left:4px}:host mat-list-item ::ng-deep button .mat-mdc-button-persistent-ripple{display:none}:host .item-checkbox ::ng-deep mat-checkbox label{margin-left:28px}:host .actionbar-item [matline]{padding-left:16px}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemAvatar, selector: "[matListItemAvatar]" }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i5.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i6.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
175
|
-
}
|
|
176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImport: i0, type: ActionbarItemComponent, decorators: [{
|
|
177
|
-
type: Component,
|
|
178
|
-
args: [{ selector: 'igo-actionbar-item', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
179
|
-
NgIf,
|
|
180
|
-
MatListModule,
|
|
181
|
-
MatTooltipModule,
|
|
182
|
-
NgClass,
|
|
183
|
-
MatButtonModule,
|
|
184
|
-
MatIconModule,
|
|
185
|
-
MatCheckboxModule,
|
|
186
|
-
AsyncPipe,
|
|
187
|
-
TranslateModule
|
|
188
|
-
], template: "<mat-list-item\n *ngIf=\"!action.checkbox\"\n class=\"actionbar-item\"\n matTooltipClass=\"actionbarItemTooltip\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"withTooltip ? ((tooltip$ | async) || title | translate) : ''\"\n [ngClass]=\"ngClass$ | async\"\n (click)=\"onClick()\"\n>\n <button\n *ngIf=\"withIcon\"\n matListItemAvatar\n mat-icon-button\n [color]=\"color\"\n [disabled]=\"disabled$ | async\"\n [disableRipple]=\"true\"\n >\n <mat-icon *ngIf=\"withIcon\" svgIcon=\"{{ icon$ | async }}\"></mat-icon>\n </button>\n <span *ngIf=\"withTitle\" matLine>{{ title | translate }}</span>\n</mat-list-item>\n\n<mat-list-item\n class=\"item-checkbox\"\n *ngIf=\"action.checkbox\"\n matTooltipClass=\"actionbarItemTooltip\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"withTooltip ? ((tooltip$ | async) || title | translate) : ''\"\n [ngClass]=\"ngClass$ | async\"\n>\n <mat-checkbox\n *ngIf=\"withTitle\"\n (change)=\"action.handler()\"\n [checked]=\"checkCondition$ | async\"\n >\n {{ title | translate }}\n </mat-checkbox>\n</mat-list-item>\n", styles: [":host ::ng-deep mat-list-item:hover{cursor:pointer}:host mat-list-item.igo-actionbar-item-disabled{color:#00000042;cursor:default!important}:host mat-list-item.igo-actionbar-item-no-display{display:none}:host mat-list-item ::ng-deep button[matlistitemavatar]{margin-left:4px}:host mat-list-item ::ng-deep button .mat-mdc-button-persistent-ripple{display:none}:host .item-checkbox ::ng-deep mat-checkbox label{margin-left:28px}:host .actionbar-item [matline]{padding-left:16px}\n"] }]
|
|
189
|
-
}], ctorParameters: () => [], propDecorators: { action: [{
|
|
190
|
-
type: Input
|
|
191
|
-
}], color: [{
|
|
192
|
-
type: Input
|
|
193
|
-
}], withTitle: [{
|
|
194
|
-
type: Input
|
|
195
|
-
}], withIcon: [{
|
|
196
|
-
type: Input
|
|
197
|
-
}], withTooltip: [{
|
|
198
|
-
type: Input
|
|
199
|
-
}], disabled: [{
|
|
200
|
-
type: Input
|
|
201
|
-
}], noDisplay: [{
|
|
202
|
-
type: Input
|
|
203
|
-
}], trigger: [{
|
|
204
|
-
type: Output
|
|
205
|
-
}] } });
|
|
206
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uYmFyLWl0ZW0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvYWN0aW9uL2FjdGlvbmJhci9hY3Rpb25iYXItaXRlbS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9hY3Rpb24vYWN0aW9uYmFyL2FjdGlvbmJhci1pdGVtLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsT0FBTyxFQUFFLElBQUksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzNELE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBR0wsTUFBTSxFQUNQLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUMzRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDdkQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRTdELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN0RCxPQUFPLEVBQUUsZUFBZSxFQUFnQixZQUFZLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7Ozs7O0FBSW5FOztHQUVHO0FBbUJILE1BQU0sT0FBTyxzQkFBc0I7SUFDeEIsU0FBUyxHQUE2QixJQUFJLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUVqRSxlQUFlLEdBQTZCLElBQUksZUFBZSxDQUN0RSxTQUFTLENBQ1YsQ0FBQztJQUVPLEtBQUssR0FBNEIsSUFBSSxl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Q0Usb0JBQW9CLG1CQUdiLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSxXQUNQO3dCQUNQLElBQUk7d0JBQ0osYUFBYTt3QkFDYixnQkFBZ0I7d0JBQ2hCLE9BQU87d0JBQ1AsZUFBZTt3QkFDZixhQUFhO3dCQUNiLGlCQUFpQjt3QkFDakIsU0FBUzt3QkFDVCxlQUFlO3FCQUNoQjt3REFxQ1EsTUFBTTtzQkFBZCxLQUFLO2dCQUtHLEtBQUs7c0JBQWIsS0FBSztnQkFLRyxTQUFTO3NCQUFqQixLQUFLO2dCQUtHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBS0csV0FBVztzQkFBbkIsS0FBSztnQkFNRixRQUFRO3NCQURYLEtBQUs7Z0JBWUYsU0FBUztzQkFEWixLQUFLO2dCQVdJLE9BQU87c0JBQWhCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUsIE5nQ2xhc3MsIE5nSWYgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT25EZXN0cm95LFxuICBPbkluaXQsXG4gIE91dHB1dFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE1hdEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2J1dHRvbic7XG5pbXBvcnQgeyBNYXRDaGVja2JveE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NoZWNrYm94JztcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcbmltcG9ydCB7IE1hdExpc3RNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9saXN0JztcbmltcG9ydCB7IE1hdFRvb2x0aXBNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90b29sdGlwJztcblxuaW1wb3J0IHsgVHJhbnNsYXRlTW9kdWxlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QsIFN1YnNjcmlwdGlvbiwgaXNPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5cbmltcG9ydCB7IEFjdGlvbiB9IGZyb20gJy4uL3NoYXJlZC9hY3Rpb24uaW50ZXJmYWNlcyc7XG5cbi8qKlxuICogQW4gYWN0aW9uIGJ1dHRvblxuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdpZ28tYWN0aW9uYmFyLWl0ZW0nLFxuICB0ZW1wbGF0ZVVybDogJy4vYWN0aW9uYmFyLWl0ZW0uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9hY3Rpb25iYXItaXRlbS5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIE5nSWYsXG4gICAgTWF0TGlzdE1vZHVsZSxcbiAgICBNYXRUb29sdGlwTW9kdWxlLFxuICAgIE5nQ2xhc3MsXG4gICAgTWF0QnV0dG9uTW9kdWxlLFxuICAgIE1hdEljb25Nb2R1bGUsXG4gICAgTWF0Q2hlY2tib3hNb2R1bGUsXG4gICAgQXN5bmNQaXBlLFxuICAgIFRyYW5zbGF0ZU1vZHVsZVxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEFjdGlvbmJhckl0ZW1Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIHJlYWRvbmx5IGRpc2FibGVkJDogQmVoYXZpb3JTdWJqZWN0PGJvb2xlYW4+ID0gbmV3IEJlaGF2aW9yU3ViamVjdChmYWxzZSk7XG5cbiAgcmVhZG9ubHkgY2hlY2tDb25kaXRpb24kOiBCZWhhdmlvclN1YmplY3Q8Ym9vbGVhbj4gPSBuZXcgQmVoYXZpb3JTdWJqZWN0KFxuICAgIHVuZGVmaW5lZFxuICApO1xuXG4gIHJlYWRvbmx5IGljb24kOiBCZWhhdmlvclN1YmplY3Q8c3RyaW5nPiA9IG5ldyBCZWhhdmlvclN1YmplY3QodW5kZWZpbmVkKTtcblxuICByZWFkb25seSB0b29sdGlwJDogQmVoYXZpb3JTdWJqZWN0PHN0cmluZz4gPSBuZXcgQmVoYXZpb3JTdWJqZWN0KHVuZGVmaW5lZCk7XG5cbiAgcmVhZG9ubHkgbm9EaXNwbGF5JDogQmVoYXZpb3JTdWJqZWN0PGJvb2xlYW4+ID0gbmV3IEJlaGF2aW9yU3ViamVjdChmYWxzZSk7XG5cbiAgcmVhZG9ubHkgbmdDbGFzcyQ6IEJlaGF2aW9yU3ViamVjdDx7IFtrZXk6IHN0cmluZ106IGJvb2xlYW4gfT4gPVxuICAgIG5ldyBCZWhhdmlvclN1YmplY3Qoe30pO1xuXG4gIHByaXZhdGUgbmdDbGFzcyQkOiBTdWJzY3JpcHRpb247XG5cbiAgcHJpdmF0ZSBkaXNhYmxlZCQkOiBTdWJzY3JpcHRpb247XG5cbiAgcHJpdmF0ZSBhdmFpbGFiaWxpdHkkJDogU3Vic2NyaXB0aW9uO1xuXG4gIHByaXZhdGUgaWNvbiQkOiBTdWJzY3JpcHRpb247XG5cbiAgcHJpdmF0ZSBjaGVja0NvbmRpdGlvbiQkOiBTdWJzY3JpcHRpb247XG5cbiAgcHJpdmF0ZSB0b29sdGlwJCQ6IFN1YnNjcmlwdGlvbjtcblxuICBwcml2YXRlIG5vRGlzcGxheSQkOiBTdWJzY3JpcHRpb247XG5cbiAgcHJpdmF0ZSBkaXNwbGF5JCQ6IFN1YnNjcmlwdGlvbjtcblxuICAvKipcbiAgICogQWN0aW9uXG4gICAqL1xuICBASW5wdXQoKSBhY3Rpb246IEFjdGlvbjtcblxuICAvKipcbiAgICogQ29sb3JcbiAgICovXG4gIEBJbnB1dCgpIGNvbG9yID0gJ2RlZmF1bHQnO1xuXG4gIC8qKlxuICAgKiBXaGV0aGVyIHRoZSBhY3Rpb24gdGl0bGUgaXMgZGlzcGxheWVkXG4gICAqL1xuICBASW5wdXQoKSB3aXRoVGl0bGUgPSB0cnVlO1xuXG4gIC8qKlxuICAgKiBXaGV0aGVyIHRoZSBhY3Rpb24gaWNvbiBpcyBkaXNwbGF5ZWRcbiAgICovXG4gIEBJbnB1dCgpIHdpdGhJY29uID0gdHJ1ZTtcblxuICAvKipcbiAgICogV2hldGhlciBhIHRvb2x0aXAgc2hvdWxkIGJlIHNob3duXG4gICAqL1xuICBASW5wdXQoKSB3aXRoVG9vbHRpcCA9IHRydWU7XG5cbiAgLyoqXG4gICAqIFdoZXRoZXIgdGhlIGFjdGlvbiBpcyBkaXNhYmxlZFxuICAgKi9cbiAgQElucHV0KClcbiAgc2V0IGRpc2FibGVkKHZhbHVlOiBib29sZWFuKSB7XG4gICAgdGhpcy5kaXNhYmxlZCQubmV4dCh2YWx1ZSk7XG4gIH1cbiAgZ2V0IGRpc2FibGVkKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLmRpc2FibGVkJC52YWx1ZTtcbiAgfVxuXG4gIC8qKlxuICAgKiBXaGV0aGVyIHRoZSBhY3Rpb24gaXMgZGlzcGxheSBvciBub3RcbiAgICovXG4gIEBJbnB1dCgpXG4gIHNldCBub0Rpc3BsYXkodmFsdWU6IGJvb2xlYW4pIHtcbiAgICB0aGlzLm5vRGlzcGxheSQubmV4dCh2YWx1ZSk7XG4gIH1cbiAgZ2V0IG5vRGlzcGxheSgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5ub0Rpc3BsYXkkLnZhbHVlO1xuICB9XG5cbiAgLyoqXG4gICAqIEV2ZW50IGVtaXR0ZWQgd2hlbiB0aGUgYWN0aW9uIGJ1dHRvbiBpcyBjbGlja2VkXG4gICAqL1xuICBAT3V0cHV0KCkgdHJpZ2dlcjogRXZlbnRFbWl0dGVyPEFjdGlvbj4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgLyoqXG4gICAqIEBpbnRlcm5hbFxuICAgKi9cbiAgZ2V0IHRpdGxlKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuYWN0aW9uLnRpdGxlO1xuICB9XG5cbiAgY29uc3RydWN0b3IoKSB7fVxuXG4gIG5nT25Jbml0KCkge1xuICAgIGNvbnN0IGFyZ3MgPSB0aGlzLmFjdGlvbi5hcmdzIHx8IFtdO1xuXG4gICAgaWYgKHRoaXMuYWN0aW9uLm5nQ2xhc3MgIT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhpcy5uZ0NsYXNzJCQgPSB0aGlzLmFjdGlvblxuICAgICAgICAubmdDbGFzcyguLi5hcmdzKVxuICAgICAgICAuc3Vic2NyaWJlKChuZ0NsYXNzOiB7IFtrZXk6IHN0cmluZ106IGJvb2xlYW4gfSkgPT5cbiAgICAgICAgICB0aGlzLnVwZGF0ZU5nQ2xhc3MobmdDbGFzcylcbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICBpZiAoaXNPYnNlcnZhYmxlKHRoaXMuYWN0aW9uLmljb24pKSB7XG4gICAgICB0aGlzLmljb24kJCA9IHRoaXMuYWN0aW9uLmljb24uc3Vic2NyaWJlKChpY29uOiBzdHJpbmcpID0+XG4gICAgICAgIHRoaXMudXBkYXRlSWNvbihpY29uKVxuICAgICAgKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy51cGRhdGVJY29uKHRoaXMuYWN0aW9uLmljb24pO1xuICAgIH1cblxuICAgIGlmIChpc09ic2VydmFibGUodGhpcy5hY3Rpb24uY2hlY2tDb25kaXRpb24pKSB7XG4gICAgICB0aGlzLmNoZWNrQ29uZGl0aW9uJCQgPSB0aGlzLmFjdGlvbi5jaGVja0NvbmRpdGlvbi5zdWJzY3JpYmUoXG4gICAgICAgIChjaGVja0NvbmRpdGlvbjogYm9vbGVhbikgPT4gdGhpcy51cGRhdGVDaGVja0NvbmRpdGlvbihjaGVja0NvbmRpdGlvbilcbiAgICAgICk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMudXBkYXRlQ2hlY2tDb25kaXRpb24odGhpcy5hY3Rpb24uY2hlY2tDb25kaXRpb24pO1xuICAgIH1cblxuICAgIGlmIChpc09ic2VydmFibGUodGhpcy5hY3Rpb24udG9vbHRpcCkpIHtcbiAgICAgIHRoaXMudG9vbHRpcCQkID0gdGhpcy5hY3Rpb24udG9vbHRpcC5zdWJzY3JpYmUoKHRvb2x0aXA6IHN0cmluZykgPT5cbiAgICAgICAgdGhpcy51cGRhdGVUb29sdGlwKHRvb2x0aXApXG4gICAgICApO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLnVwZGF0ZVRvb2x0aXAodGhpcy5hY3Rpb24udG9vbHRpcCk7XG4gICAgfVxuXG4gICAgaWYgKHRoaXMuYWN0aW9uLmF2YWlsYWJpbGl0eSAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aGlzLmF2YWlsYWJpbGl0eSQkID0gdGhpcy5hY3Rpb25cbiAgICAgICAgLmF2YWlsYWJpbGl0eSguLi5hcmdzKVxuICAgICAgICAuc3Vic2NyaWJlKChhdmFpbGFibGU6IGJvb2xlYW4pID0+ICh0aGlzLmRpc2FibGVkID0gIWF2YWlsYWJsZSkpO1xuICAgIH1cblxuICAgIHRoaXMuZGlzYWJsZWQkJCA9IHRoaXMuZGlzYWJsZWQkLnN1YnNjcmliZSgoZGlzYWJsZWQ6IGJvb2xlYW4pID0+XG4gICAgICB0aGlzLnVwZGF0ZU5nQ2xhc3MoeyAnaWdvLWFjdGlvbmJhci1pdGVtLWRpc2FibGVkJzogZGlzYWJsZWQgfSlcbiAgICApO1xuXG4gICAgaWYgKHRoaXMuYWN0aW9uLmRpc3BsYXkgIT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhpcy5kaXNwbGF5JCQgPSB0aGlzLmFjdGlvblxuICAgICAgICAuZGlzcGxheSguLi5hcmdzKVxuICAgICAgICAuc3Vic2NyaWJlKChkaXNwbGF5OiBib29sZWFuKSA9PiAodGhpcy5ub0Rpc3BsYXkgPSAhZGlzcGxheSkpO1xuICAgIH1cblxuICAgIHRoaXMubm9EaXNwbGF5JCQgPSB0aGlzLm5vRGlzcGxheSQuc3Vic2NyaWJlKChub0Rpc3BsYXk6IGJvb2xlYW4pID0+XG4gICAgICB0aGlzLnVwZGF0ZU5nQ2xhc3MoeyAnaWdvLWFjdGlvbmJhci1pdGVtLW5vLWRpc3BsYXknOiBub0Rpc3BsYXkgfSlcbiAgICApO1xuICB9XG5cbiAgbmdPbkRlc3Ryb3koKSB7XG4gICAgaWYgKHRoaXMubmdDbGFzcyQkICE9PSB1bmRlZmluZWQpIHtcbiAgICAgIHRoaXMubmdDbGFzcyQkLnVuc3Vic2NyaWJlKCk7XG4gICAgICB0aGlzLm5nQ2xhc3MkJCA9IHVuZGVmaW5lZDtcbiAgICB9XG5cbiAgICBpZiAodGhpcy5hdmFpbGFiaWxpdHkkJCAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aGlzLmF2YWlsYWJpbGl0eSQkLnVuc3Vic2NyaWJlKCk7XG4gICAgICB0aGlzLmF2YWlsYWJpbGl0eSQkID0gdW5kZWZpbmVkO1xuICAgIH1cblxuICAgIGlmICh0aGlzLmRpc3BsYXkkJCAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aGlzLmRpc3BsYXkkJC51bnN1YnNjcmliZSgpO1xuICAgICAgdGhpcy5kaXNwbGF5JCQgPSB1bmRlZmluZWQ7XG4gICAgfVxuXG4gICAgaWYgKHRoaXMuY2hlY2tDb25kaXRpb24kJCAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aGlzLmNoZWNrQ29uZGl0aW9uJCQudW5zdWJzY3JpYmUoKTtcbiAgICAgIHRoaXMuY2hlY2tDb25kaXRpb24kJCA9IHVuZGVmaW5lZDtcbiAgICB9XG5cbiAgICBpZiAodGhpcy5pY29uJCQgIT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhpcy5pY29uJCQudW5zdWJzY3JpYmUoKTtcbiAgICAgIHRoaXMuaWNvbiQkID0gdW5kZWZpbmVkO1xuICAgIH1cblxuICAgIGlmICh0aGlzLnRvb2x0aXAkJCAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aGlzLnRvb2x0aXAkJC51bnN1YnNjcmliZSgpO1xuICAgICAgdGhpcy50b29sdGlwJCQgPSB1bmRlZmluZWQ7XG4gICAgfVxuXG4gICAgdGhpcy5kaXNhYmxlZCQkLnVuc3Vic2NyaWJlKCk7XG4gICAgdGhpcy5ub0Rpc3BsYXkkJC51bnN1YnNjcmliZSgpO1xuICB9XG5cbiAgLyoqXG4gICAqIFdoZW4gdGhlIGFjdGlvbiBidXR0b24gaXMgY2xpY2tlZCwgZW1pdCB0aGUgJ3RyaWdnZXInIGV2ZW50IGJ1dCBkb24ndFxuICAgKiBpbnZva2UgdGhlIGFjdGlvbiBoYW5kbGVyLiBUaGlzIGlzIGhhbmRsZWQgYnkgdGhlIHBhcmVudCBjb21wb25lbnQuXG4gICAqIEBpbnRlcm5hbFxuICAgKi9cbiAgb25DbGljaygpIHtcbiAgICBpZiAodGhpcy5kaXNhYmxlZCA9PT0gdHJ1ZSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cbiAgICB0aGlzLnRyaWdnZXIuZW1pdCh0aGlzLmFjdGlvbik7XG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZU5nQ2xhc3MobmdDbGFzczogeyBba2V5OiBzdHJpbmddOiBib29sZWFuIH0pIHtcbiAgICB0aGlzLm5nQ2xhc3MkLm5leHQoT2JqZWN0LmFzc2lnbih7fSwgdGhpcy5uZ0NsYXNzJC52YWx1ZSwgbmdDbGFzcykpO1xuICB9XG5cbiAgcHJpdmF0ZSB1cGRhdGVUb29sdGlwKHRvb2x0aXA6IHN0cmluZykge1xuICAgIHRoaXMudG9vbHRpcCQubmV4dCh0b29sdGlwKTtcbiAgfVxuXG4gIHByaXZhdGUgdXBkYXRlQ2hlY2tDb25kaXRpb24oY2hlY2tDb25kaXRpb246IGJvb2xlYW4pIHtcbiAgICB0aGlzLmNoZWNrQ29uZGl0aW9uJC5uZXh0KGNoZWNrQ29uZGl0aW9uKTtcbiAgfVxuXG4gIHByaXZhdGUgdXBkYXRlSWNvbihpY29uOiBzdHJpbmcpIHtcbiAgICB0aGlzLmljb24kLm5leHQoaWNvbik7XG4gIH1cbn1cbiIsIjxtYXQtbGlzdC1pdGVtXG4gICpuZ0lmPVwiIWFjdGlvbi5jaGVja2JveFwiXG4gIGNsYXNzPVwiYWN0aW9uYmFyLWl0ZW1cIlxuICBtYXRUb29sdGlwQ2xhc3M9XCJhY3Rpb25iYXJJdGVtVG9vbHRpcFwiXG4gIG1hdFRvb2x0aXBTaG93RGVsYXk9XCI1MDBcIlxuICBbbWF0VG9vbHRpcF09XCJ3aXRoVG9vbHRpcCA/ICgodG9vbHRpcCQgfCBhc3luYykgfHwgdGl0bGUgfCB0cmFuc2xhdGUpIDogJydcIlxuICBbbmdDbGFzc109XCJuZ0NsYXNzJCB8IGFzeW5jXCJcbiAgKGNsaWNrKT1cIm9uQ2xpY2soKVwiXG4+XG4gIDxidXR0b25cbiAgICAqbmdJZj1cIndpdGhJY29uXCJcbiAgICBtYXRMaXN0SXRlbUF2YXRhclxuICAgIG1hdC1pY29uLWJ1dHRvblxuICAgIFtjb2xvcl09XCJjb2xvclwiXG4gICAgW2Rpc2FibGVkXT1cImRpc2FibGVkJCB8IGFzeW5jXCJcbiAgICBbZGlzYWJsZVJpcHBsZV09XCJ0cnVlXCJcbiAgPlxuICAgIDxtYXQtaWNvbiAqbmdJZj1cIndpdGhJY29uXCIgc3ZnSWNvbj1cInt7IGljb24kIHwgYXN5bmMgfX1cIj48L21hdC1pY29uPlxuICA8L2J1dHRvbj5cbiAgPHNwYW4gKm5nSWY9XCJ3aXRoVGl0bGVcIiBtYXRMaW5lPnt7IHRpdGxlIHwgdHJhbnNsYXRlIH19PC9zcGFuPlxuPC9tYXQtbGlzdC1pdGVtPlxuXG48bWF0LWxpc3QtaXRlbVxuICBjbGFzcz1cIml0ZW0tY2hlY2tib3hcIlxuICAqbmdJZj1cImFjdGlvbi5jaGVja2JveFwiXG4gIG1hdFRvb2x0aXBDbGFzcz1cImFjdGlvbmJhckl0ZW1Ub29sdGlwXCJcbiAgbWF0VG9vbHRpcFNob3dEZWxheT1cIjUwMFwiXG4gIFttYXRUb29sdGlwXT1cIndpdGhUb29sdGlwID8gKCh0b29sdGlwJCB8IGFzeW5jKSB8fCB0aXRsZSB8IHRyYW5zbGF0ZSkgOiAnJ1wiXG4gIFtuZ0NsYXNzXT1cIm5nQ2xhc3MkIHwgYXN5bmNcIlxuPlxuICA8bWF0LWNoZWNrYm94XG4gICAgKm5nSWY9XCJ3aXRoVGl0bGVcIlxuICAgIChjaGFuZ2UpPVwiYWN0aW9uLmhhbmRsZXIoKVwiXG4gICAgW2NoZWNrZWRdPVwiY2hlY2tDb25kaXRpb24kIHwgYXN5bmNcIlxuICA+XG4gICAge3sgdGl0bGUgfCB0cmFuc2xhdGUgfX1cbiAgPC9tYXQtY2hlY2tib3g+XG48L21hdC1saXN0LWl0ZW0+XG4iXX0=
|