@igo2/common 1.15.3 → 16.0.0-rc.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/common-theme.scss +19 -0
- package/{esm2020 → esm2022}/igo2-common.mjs +4 -4
- package/esm2022/lib/action/action.module.mjs +20 -0
- package/esm2022/lib/action/actionbar/actionbar-item.component.mjs +270 -0
- package/esm2022/lib/action/actionbar/actionbar.component.mjs +389 -0
- package/{esm2020 → esm2022}/lib/action/actionbar/actionbar.module.mjs +57 -57
- package/{esm2020 → esm2022}/lib/action/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/action/shared/action.enums.mjs +7 -7
- package/{esm2020 → esm2022}/lib/action/shared/action.interfaces.mjs +2 -2
- package/{esm2020 → esm2022}/lib/action/shared/index.mjs +4 -4
- package/{esm2020 → esm2022}/lib/action/shared/store.mjs +8 -8
- package/esm2022/lib/backdrop/backdrop.component.mjs +27 -0
- package/{esm2020 → esm2022}/lib/backdrop/backdrop.module.mjs +25 -25
- package/{esm2020 → esm2022}/lib/backdrop/index.mjs +2 -2
- package/esm2022/lib/badge-icon/badge-icon.directive.mjs +150 -0
- package/{esm2020 → esm2022}/lib/badge-icon/badge-icon.module.mjs +26 -26
- package/{esm2020 → esm2022}/lib/badge-icon/index.mjs +2 -2
- package/esm2022/lib/clickout/clickout.directive.mjs +33 -0
- package/{esm2020 → esm2022}/lib/clickout/clickout.module.mjs +24 -24
- package/{esm2020 → esm2022}/lib/clickout/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/clone/clone.module.mjs +24 -24
- package/esm2022/lib/clone/clone.pipe.mjs +24 -0
- package/{esm2020 → esm2022}/lib/clone/index.mjs +2 -2
- package/esm2022/lib/collapsible/collapse.directive.mjs +58 -0
- package/esm2022/lib/collapsible/collapsible.component.mjs +54 -0
- package/{esm2020 → esm2022}/lib/collapsible/collapsible.module.mjs +27 -27
- package/{esm2020 → esm2022}/lib/collapsible/index.mjs +3 -3
- package/esm2022/lib/color-picker-form-field/color-picker-form-field.component.mjs +121 -0
- package/esm2022/lib/color-picker-form-field/color-picker-form-field.module.mjs +32 -0
- package/esm2022/lib/color-picker-form-field/index.mjs +2 -0
- package/esm2022/lib/confirm-dialog/confirm-dialog.component.mjs +47 -0
- package/{esm2020 → esm2022}/lib/confirm-dialog/confirm-dialog.module.mjs +29 -29
- package/esm2022/lib/confirm-dialog/confirm-dialog.service.mjs +29 -0
- package/{esm2020 → esm2022}/lib/confirm-dialog/index.mjs +3 -3
- package/esm2022/lib/context-menu/context-menu.directive.mjs +110 -0
- package/{esm2020 → esm2022}/lib/context-menu/context-menu.module.mjs +25 -25
- package/{esm2020 → esm2022}/lib/context-menu/index.mjs +3 -3
- package/esm2022/lib/context-menu/long-press.directive.mjs +67 -0
- package/esm2022/lib/custom-html/custom-html.component.mjs +27 -0
- package/{esm2020 → esm2022}/lib/custom-html/custom-html.module.mjs +47 -47
- package/{esm2020 → esm2022}/lib/custom-html/custom-html.pipe.mjs +20 -18
- package/{esm2020 → esm2022}/lib/custom-html/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/dom/dom.interfaces.mjs +2 -2
- package/{esm2020 → esm2022}/lib/dom/dom.module.mjs +21 -23
- package/esm2022/lib/dom/dom.service.mjs +35 -0
- package/{esm2020 → esm2022}/lib/dom/index.mjs +3 -3
- package/esm2022/lib/drag-drop/drag-drop.directive.mjs +85 -0
- package/{esm2020 → esm2022}/lib/drag-drop/drag-drop.module.mjs +24 -24
- package/{esm2020 → esm2022}/lib/drag-drop/index.mjs +2 -2
- package/esm2022/lib/dynamic-component/dynamic-component.module.mjs +20 -0
- package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +138 -0
- package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +22 -0
- package/{esm2020 → esm2022}/lib/dynamic-component/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/dynamic-component/shared/dynamic-component.interfaces.mjs +2 -2
- package/esm2022/lib/dynamic-component/shared/dynamic-component.mjs +183 -0
- package/{esm2020 → esm2022}/lib/dynamic-component/shared/dynamic-component.service.mjs +30 -29
- package/{esm2020 → esm2022}/lib/dynamic-component/shared/index.mjs +4 -4
- package/esm2022/lib/entity/entity-selector/entity-selector.component.mjs +214 -0
- package/esm2022/lib/entity/entity-selector/entity-selector.module.mjs +24 -0
- package/esm2022/lib/entity/entity-table/entity-table-row.directive.mjs +139 -0
- package/esm2022/lib/entity/entity-table/entity-table.component.mjs +1455 -0
- package/esm2022/lib/entity/entity-table/entity-table.module.mjs +96 -0
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +167 -0
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +2 -0
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +22 -0
- package/{esm2020 → esm2022}/lib/entity/entity.module.mjs +29 -31
- package/{esm2020 → esm2022}/lib/entity/index.mjs +6 -6
- package/{esm2020 → esm2022}/lib/entity/shared/entity.enums.mjs +28 -28
- package/esm2022/lib/entity/shared/entity.interfaces.mjs +2 -0
- package/esm2022/lib/entity/shared/entity.utils.mjs +73 -0
- package/esm2022/lib/entity/shared/index.mjs +11 -0
- package/esm2022/lib/entity/shared/state.mjs +194 -0
- package/esm2022/lib/entity/shared/store-strategy.mjs +73 -0
- package/esm2022/lib/entity/shared/store.mjs +256 -0
- package/esm2022/lib/entity/shared/strategies/filter-custom-function.mjs +80 -0
- package/esm2022/lib/entity/shared/strategies/filter-selection.mjs +81 -0
- package/{esm2020 → esm2022}/lib/entity/shared/strategies/index.mjs +4 -4
- package/esm2022/lib/entity/shared/strategies/strategy.mjs +78 -0
- package/esm2022/lib/entity/shared/transaction.mjs +329 -0
- package/esm2022/lib/entity/shared/view.mjs +330 -0
- package/esm2022/lib/entity/shared/watcher.mjs +135 -0
- package/esm2022/lib/flexible/flexible.component.mjs +153 -0
- package/{esm2020 → esm2022}/lib/flexible/flexible.module.mjs +24 -24
- package/{esm2020 → esm2022}/lib/flexible/flexible.type.mjs +2 -2
- package/{esm2020 → esm2022}/lib/flexible/index.mjs +3 -3
- package/esm2022/lib/form/form/form.component.mjs +125 -0
- package/esm2022/lib/form/form/form.module.mjs +23 -0
- package/esm2022/lib/form/form-field/form-field-select.component.mjs +140 -0
- package/esm2022/lib/form/form-field/form-field-text.component.mjs +113 -0
- package/esm2022/lib/form/form-field/form-field-textarea.component.mjs +114 -0
- package/esm2022/lib/form/form-field/form-field.component.mjs +78 -0
- package/{esm2020 → esm2022}/lib/form/form-field/form-field.module.mjs +74 -74
- package/{esm2020 → esm2022}/lib/form/form-field/index.mjs +5 -5
- package/esm2022/lib/form/form-group/form-group.component.mjs +115 -0
- package/esm2022/lib/form/form-group/form-group.module.mjs +36 -0
- package/esm2022/lib/form/form.module.mjs +27 -0
- package/{esm2020 → esm2022}/lib/form/index.mjs +5 -5
- package/{esm2020 → esm2022}/lib/form/shared/form-field-component.mjs +7 -7
- package/esm2022/lib/form/shared/form-field.service.mjs +29 -0
- package/esm2022/lib/form/shared/form.interfaces.mjs +2 -0
- package/esm2022/lib/form/shared/form.service.mjs +82 -0
- package/esm2022/lib/form/shared/form.utils.mjs +40 -0
- package/{esm2020 → esm2022}/lib/form/shared/index.mjs +6 -6
- package/esm2022/lib/home-button/home-button.component.mjs +30 -0
- package/{esm2020 → esm2022}/lib/home-button/home-button.module.mjs +41 -41
- package/{esm2020 → esm2022}/lib/home-button/index.mjs +2 -2
- package/esm2022/lib/image/image-error.directive.mjs +36 -0
- package/{esm2020 → esm2022}/lib/image/image.module.mjs +25 -25
- package/{esm2020 → esm2022}/lib/image/index.mjs +3 -3
- package/esm2022/lib/image/secure-image.pipe.mjs +65 -0
- package/{esm2020 → esm2022}/lib/interactive-tour/index.mjs +5 -5
- package/esm2022/lib/interactive-tour/interactive-tour.component.mjs +161 -0
- package/esm2022/lib/interactive-tour/interactive-tour.interface.mjs +2 -0
- package/esm2022/lib/interactive-tour/interactive-tour.loader.mjs +49 -0
- package/{esm2020 → esm2022}/lib/interactive-tour/interactive-tour.module.mjs +40 -40
- package/esm2022/lib/interactive-tour/interactive-tour.service.mjs +297 -0
- package/{esm2020 → esm2022}/lib/json-dialog/index.mjs +3 -3
- package/esm2022/lib/json-dialog/json-dialog.component.mjs +114 -0
- package/{esm2020 → esm2022}/lib/json-dialog/json-dialog.module.mjs +29 -29
- package/{esm2020 → esm2022}/lib/json-dialog/json-dialog.service.mjs +26 -24
- package/{esm2020 → esm2022}/lib/keyvalue/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/keyvalue/keyvalue.module.mjs +24 -24
- package/{esm2020 → esm2022}/lib/keyvalue/keyvalue.pipe.mjs +18 -18
- package/{esm2020 → esm2022}/lib/list/index.mjs +3 -3
- package/esm2022/lib/list/list-item.directive.mjs +167 -0
- package/esm2022/lib/list/list.component.mjs +268 -0
- package/{esm2020 → esm2022}/lib/list/list.module.mjs +29 -29
- package/{esm2020 → esm2022}/lib/panel/index.mjs +2 -2
- package/esm2022/lib/panel/panel.component.mjs +60 -0
- package/{esm2020 → esm2022}/lib/panel/panel.module.mjs +19 -19
- package/{esm2020 → esm2022}/lib/sidenav/index.mjs +2 -2
- package/esm2022/lib/sidenav/sidenav-shim.directive.mjs +59 -0
- package/{esm2020 → esm2022}/lib/sidenav/sidenav.module.mjs +24 -24
- package/{esm2020 → esm2022}/lib/spinner/index.mjs +3 -3
- package/esm2022/lib/spinner/spinner-activity.directive.mjs +55 -0
- package/esm2022/lib/spinner/spinner.component.mjs +38 -0
- package/{esm2020 → esm2022}/lib/spinner/spinner.module.mjs +21 -21
- package/{esm2020 → esm2022}/lib/stop-propagation/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/stop-propagation/stop-drop-propagation.directive.mjs +22 -22
- package/{esm2020 → esm2022}/lib/stop-propagation/stop-propagation.directive.mjs +21 -21
- package/{esm2020 → esm2022}/lib/stop-propagation/stop-propagation.module.mjs +25 -25
- package/{esm2020 → esm2022}/lib/table/index.mjs +6 -6
- package/{esm2020 → esm2022}/lib/table/table-action-color.enum.mjs +7 -7
- package/esm2022/lib/table/table-database.mjs +28 -0
- package/esm2022/lib/table/table-datasource.mjs +64 -0
- package/esm2022/lib/table/table-model.interface.mjs +2 -0
- package/esm2022/lib/table/table.component.mjs +302 -0
- package/{esm2020 → esm2022}/lib/table/table.module.mjs +67 -67
- package/{esm2020 → esm2022}/lib/tool/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/tool/shared/index.mjs +6 -6
- package/esm2022/lib/tool/shared/tool-component.mjs +9 -0
- package/esm2022/lib/tool/shared/tool.interface.mjs +2 -0
- package/esm2022/lib/tool/shared/tool.service.mjs +43 -0
- package/{esm2020 → esm2022}/lib/tool/shared/toolbox.enums.mjs +7 -7
- package/esm2022/lib/tool/shared/toolbox.mjs +184 -0
- package/esm2022/lib/tool/tool.module.mjs +26 -0
- package/{esm2020 → esm2022}/lib/tool/toolbox/toolbox.animation.mjs +10 -10
- package/esm2022/lib/tool/toolbox/toolbox.component.mjs +273 -0
- package/esm2022/lib/tool/toolbox/toolbox.module.mjs +24 -0
- package/{esm2020 → esm2022}/lib/widget/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/widget/shared/index.mjs +4 -4
- package/esm2022/lib/widget/shared/widget.interfaces.mjs +2 -0
- package/{esm2020 → esm2022}/lib/widget/shared/widget.mjs +4 -4
- package/esm2022/lib/widget/shared/widget.service.mjs +22 -0
- package/esm2022/lib/widget/widget-outlet/widget-outlet.component.mjs +124 -0
- package/esm2022/lib/widget/widget-outlet/widget-outlet.module.mjs +23 -0
- package/esm2022/lib/widget/widget.module.mjs +21 -0
- package/{esm2020 → esm2022}/lib/workspace/index.mjs +4 -4
- package/{esm2020 → esm2022}/lib/workspace/shared/index.mjs +4 -4
- package/esm2022/lib/workspace/shared/store.mjs +37 -0
- package/{esm2020 → esm2022}/lib/workspace/shared/workspace.interfaces.mjs +2 -2
- package/esm2022/lib/workspace/shared/workspace.mjs +143 -0
- package/esm2022/lib/workspace/workspace-selector/workspace-selector.component.mjs +58 -0
- package/esm2022/lib/workspace/workspace-selector/workspace-selector.module.mjs +23 -0
- package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +94 -0
- package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +23 -0
- package/esm2022/lib/workspace/workspace.module.mjs +20 -0
- package/esm2022/public_api.mjs +76 -0
- package/{fesm2020 → fesm2022}/igo2-common.mjs +9837 -9345
- package/fesm2022/igo2-common.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/action/action.module.d.ts +8 -8
- package/lib/action/action.theming.scss +5 -0
- package/lib/action/actionbar/actionbar-item.component.d.ts +78 -78
- package/lib/action/actionbar/actionbar-item.theming.scss +32 -0
- package/lib/action/actionbar/actionbar.component.d.ts +147 -146
- package/lib/action/actionbar/actionbar.module.d.ts +20 -20
- package/lib/action/actionbar/actionbar.theming.scss +22 -0
- package/lib/action/index.d.ts +2 -2
- package/lib/action/shared/action.enums.d.ts +5 -5
- package/lib/action/shared/action.interfaces.d.ts +17 -17
- package/lib/action/shared/index.d.ts +3 -3
- package/lib/action/shared/store.d.ts +8 -8
- package/lib/backdrop/backdrop.component.d.ts +9 -9
- package/lib/backdrop/backdrop.module.d.ts +10 -10
- package/lib/backdrop/index.d.ts +1 -1
- package/lib/badge-icon/badge-icon.directive.d.ts +36 -36
- package/lib/badge-icon/badge-icon.module.d.ts +11 -11
- package/lib/badge-icon/index.d.ts +1 -1
- package/lib/clickout/clickout.directive.d.ts +10 -10
- package/lib/clickout/clickout.module.d.ts +9 -9
- package/lib/clickout/index.d.ts +1 -1
- package/lib/clone/clone.module.d.ts +9 -9
- package/lib/clone/clone.pipe.d.ts +7 -7
- package/lib/clone/index.d.ts +1 -1
- package/lib/collapsible/collapse.directive.d.ts +19 -19
- package/lib/collapsible/collapsible.component.d.ts +13 -13
- package/lib/collapsible/collapsible.module.d.ts +12 -12
- package/lib/collapsible/collapsible.theming.scss +22 -0
- package/lib/collapsible/index.d.ts +2 -2
- package/lib/color-picker-form-field/color-picker-form-field.component.d.ts +26 -0
- package/lib/color-picker-form-field/color-picker-form-field.module.d.ts +10 -0
- package/lib/color-picker-form-field/index.d.ts +1 -0
- package/lib/confirm-dialog/confirm-dialog.component.d.ts +9 -9
- package/lib/confirm-dialog/confirm-dialog.module.d.ts +12 -12
- package/lib/confirm-dialog/confirm-dialog.service.d.ts +12 -12
- package/lib/confirm-dialog/index.d.ts +2 -2
- package/lib/context-menu/context-menu.directive.d.ts +21 -21
- package/lib/context-menu/context-menu.module.d.ts +10 -10
- package/lib/context-menu/index.d.ts +2 -2
- package/lib/context-menu/long-press.directive.d.ts +20 -20
- package/lib/custom-html/custom-html.component.d.ts +9 -9
- package/lib/custom-html/custom-html.module.d.ts +16 -16
- package/lib/custom-html/custom-html.pipe.d.ts +10 -10
- package/lib/custom-html/index.d.ts +2 -2
- package/lib/dom/dom.interfaces.d.ts +10 -10
- package/lib/dom/dom.module.d.ts +8 -8
- package/lib/dom/dom.service.d.ts +10 -10
- package/lib/dom/index.d.ts +2 -2
- package/lib/drag-drop/drag-drop.directive.d.ts +14 -14
- package/lib/drag-drop/drag-drop.module.d.ts +9 -9
- package/lib/drag-drop/index.d.ts +1 -1
- package/lib/dynamic-component/dynamic-component.module.d.ts +8 -8
- package/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.d.ts +70 -70
- package/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.d.ts +11 -11
- package/lib/dynamic-component/index.d.ts +2 -2
- package/lib/dynamic-component/shared/dynamic-component.d.ts +88 -88
- package/lib/dynamic-component/shared/dynamic-component.interfaces.d.ts +3 -3
- package/lib/dynamic-component/shared/dynamic-component.service.d.ts +18 -18
- package/lib/dynamic-component/shared/index.d.ts +3 -3
- package/lib/entity/entity-selector/entity-selector.component.d.ts +92 -92
- package/lib/entity/entity-selector/entity-selector.module.d.ts +13 -13
- package/lib/entity/entity-selector/entity-selector.theming.scss +21 -0
- package/lib/entity/entity-table/entity-table-row.directive.d.ts +69 -69
- package/lib/entity/entity-table/entity-table.component.d.ts +327 -333
- package/lib/entity/entity-table/entity-table.module.d.ts +29 -29
- package/lib/entity/entity-table/entity-table.theming.scss +34 -0
- package/lib/entity/entity-table-paginator/entity-table-paginator.component.d.ts +49 -49
- package/lib/entity/entity-table-paginator/entity-table-paginator.interface.d.ts +8 -8
- package/lib/entity/entity-table-paginator/entity-table-paginator.module.d.ts +11 -11
- package/lib/entity/entity-table-paginator/entity-table-paginator.theming.scss +21 -0
- package/lib/entity/entity.module.d.ts +10 -10
- package/lib/entity/entity.theming.scss +10 -0
- package/lib/entity/index.d.ts +5 -5
- package/lib/entity/shared/entity.enums.d.ts +23 -23
- package/lib/entity/shared/entity.interfaces.d.ts +95 -114
- package/lib/entity/shared/entity.utils.d.ts +49 -49
- package/lib/entity/shared/index.d.ts +10 -9
- package/lib/entity/shared/state.d.ts +108 -103
- package/lib/entity/shared/store-strategy.d.ts +38 -0
- package/lib/entity/shared/store.d.ts +147 -176
- package/lib/entity/shared/strategies/filter-custom-function.d.ts +51 -51
- package/lib/entity/shared/strategies/filter-selection.d.ts +48 -48
- package/lib/entity/shared/strategies/index.d.ts +3 -3
- package/lib/entity/shared/strategies/strategy.d.ts +56 -56
- package/lib/entity/shared/transaction.d.ts +180 -168
- package/lib/entity/shared/view.d.ts +193 -193
- package/lib/entity/shared/watcher.d.ts +72 -72
- package/lib/flexible/flexible.component.d.ts +41 -41
- package/lib/flexible/flexible.module.d.ts +9 -9
- package/lib/flexible/flexible.type.d.ts +2 -2
- package/lib/flexible/index.d.ts +2 -2
- package/lib/form/form/form.component.d.ts +53 -53
- package/lib/form/form/form.module.d.ts +12 -12
- package/lib/form/form-field/form-field-select.component.d.ts +48 -48
- package/lib/form/form-field/form-field-text.component.d.ts +41 -41
- package/lib/form/form-field/form-field-textarea.component.d.ts +41 -41
- package/lib/form/form-field/form-field.component.d.ts +29 -34
- package/lib/form/form-field/form-field.module.d.ts +21 -21
- package/lib/form/form-field/index.d.ts +4 -4
- package/lib/form/form-group/form-group.component.d.ts +49 -49
- package/lib/form/form-group/form-group.module.d.ts +14 -14
- package/lib/form/form.module.d.ts +13 -13
- package/lib/form/index.d.ts +4 -4
- package/lib/form/shared/form-field-component.d.ts +1 -1
- package/lib/form/shared/form-field.service.d.ts +19 -19
- package/lib/form/shared/form.interfaces.d.ts +61 -57
- package/lib/form/shared/form.service.d.ts +15 -15
- package/lib/form/shared/form.utils.d.ts +11 -11
- package/lib/form/shared/index.d.ts +5 -5
- package/lib/home-button/home-button.component.d.ts +9 -9
- package/lib/home-button/home-button.module.d.ts +15 -15
- package/lib/home-button/home-button.theming.scss +18 -0
- package/lib/home-button/index.d.ts +1 -1
- package/lib/image/image-error.directive.d.ts +11 -11
- package/lib/image/image.module.d.ts +10 -10
- package/lib/image/index.d.ts +2 -2
- package/lib/image/secure-image.pipe.d.ts +13 -13
- package/lib/interactive-tour/index.d.ts +4 -4
- package/lib/interactive-tour/interactive-tour.component.d.ts +30 -30
- package/lib/interactive-tour/interactive-tour.interface.d.ts +32 -32
- package/lib/interactive-tour/interactive-tour.loader.d.ts +18 -18
- package/lib/interactive-tour/interactive-tour.module.d.ts +12 -12
- package/lib/interactive-tour/interactive-tour.service.d.ts +29 -29
- package/lib/interactive-tour/interactive-tour.theming.scss +32 -0
- package/lib/json-dialog/index.d.ts +2 -2
- package/lib/json-dialog/json-dialog.component.d.ts +13 -13
- package/lib/json-dialog/json-dialog.module.d.ts +13 -13
- package/lib/json-dialog/json-dialog.service.d.ts +10 -10
- package/lib/keyvalue/index.d.ts +1 -1
- package/lib/keyvalue/keyvalue.module.d.ts +9 -9
- package/lib/keyvalue/keyvalue.pipe.d.ts +7 -7
- package/lib/list/index.d.ts +2 -2
- package/lib/list/list-item.directive.d.ts +43 -43
- package/lib/list/list.component.d.ts +51 -51
- package/lib/list/list.module.d.ts +14 -14
- package/lib/list/list.theming.scss +40 -0
- package/lib/panel/index.d.ts +1 -1
- package/lib/panel/panel.component.d.ts +10 -10
- package/lib/panel/panel.module.d.ts +8 -8
- package/lib/panel/panel.theming.scss +30 -0
- package/lib/sidenav/index.d.ts +1 -1
- package/lib/sidenav/sidenav-shim.directive.d.ts +20 -20
- package/lib/sidenav/sidenav.module.d.ts +9 -9
- package/lib/spinner/index.d.ts +2 -2
- package/lib/spinner/spinner-activity.directive.d.ts +32 -32
- package/lib/spinner/spinner.component.d.ts +12 -12
- package/lib/spinner/spinner.module.d.ts +10 -10
- package/lib/stop-propagation/index.d.ts +2 -2
- package/lib/stop-propagation/stop-drop-propagation.directive.d.ts +6 -6
- package/lib/stop-propagation/stop-propagation.directive.d.ts +6 -6
- package/lib/stop-propagation/stop-propagation.module.d.ts +10 -10
- package/lib/table/index.d.ts +5 -5
- package/lib/table/table-action-color.enum.d.ts +5 -5
- package/lib/table/table-database.d.ts +10 -10
- package/lib/table/table-datasource.d.ts +18 -17
- package/lib/table/table-model.interface.d.ts +28 -28
- package/lib/table/table.component.d.ts +40 -40
- package/lib/table/table.module.d.ts +20 -20
- package/lib/tool/index.d.ts +2 -2
- package/lib/tool/shared/index.d.ts +5 -5
- package/lib/tool/shared/tool-component.d.ts +2 -2
- package/lib/tool/shared/tool.interface.d.ts +18 -18
- package/lib/tool/shared/tool.service.d.ts +30 -30
- package/lib/tool/shared/toolbox.d.ts +95 -95
- package/lib/tool/shared/toolbox.enums.d.ts +5 -5
- package/lib/tool/tool.module.d.ts +10 -10
- package/lib/tool/tool.theming.scss +5 -0
- package/lib/tool/toolbox/toolbox.animation.d.ts +2 -2
- package/lib/tool/toolbox/toolbox.component.d.ts +128 -127
- package/lib/tool/toolbox/toolbox.module.d.ts +13 -13
- package/lib/tool/toolbox/toolbox.theming.scss +105 -0
- package/lib/widget/index.d.ts +2 -2
- package/lib/widget/shared/index.d.ts +3 -3
- package/lib/widget/shared/widget.d.ts +4 -4
- package/lib/widget/shared/widget.interfaces.d.ts +12 -12
- package/lib/widget/shared/widget.service.d.ts +10 -10
- package/lib/widget/widget-outlet/widget-outlet.component.d.ts +71 -71
- package/lib/widget/widget-outlet/widget-outlet.module.d.ts +12 -12
- package/lib/widget/widget.module.d.ts +8 -8
- package/lib/workspace/index.d.ts +3 -3
- package/lib/workspace/shared/index.d.ts +3 -3
- package/lib/workspace/shared/store.d.ts +20 -20
- package/lib/workspace/shared/workspace.d.ts +108 -108
- package/lib/workspace/shared/workspace.interfaces.d.ts +11 -11
- package/lib/workspace/workspace-selector/workspace-selector.component.d.ts +39 -39
- package/lib/workspace/workspace-selector/workspace-selector.module.d.ts +12 -12
- package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +57 -57
- package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.d.ts +12 -12
- package/lib/workspace/workspace.module.d.ts +9 -9
- package/locale/en.common.json +43 -0
- package/locale/fr.common.json +43 -0
- package/package.json +30 -28
- package/public_api.d.ts +72 -70
- package/style/partial/common-utils.scss +9 -0
- package/style/partial/common.variables.scss +8 -8
- package/style/style.css +204 -0
- package/esm2020/lib/action/action.module.mjs +0 -27
- package/esm2020/lib/action/actionbar/actionbar-item.component.mjs +0 -252
- package/esm2020/lib/action/actionbar/actionbar.component.mjs +0 -370
- package/esm2020/lib/backdrop/backdrop.component.mjs +0 -26
- package/esm2020/lib/badge-icon/badge-icon.directive.mjs +0 -141
- package/esm2020/lib/clickout/clickout.directive.mjs +0 -32
- package/esm2020/lib/clone/clone.pipe.mjs +0 -24
- package/esm2020/lib/collapsible/collapse.directive.mjs +0 -55
- package/esm2020/lib/collapsible/collapsible.component.mjs +0 -57
- package/esm2020/lib/confirm-dialog/confirm-dialog.component.mjs +0 -44
- package/esm2020/lib/confirm-dialog/confirm-dialog.service.mjs +0 -24
- package/esm2020/lib/context-menu/context-menu.directive.mjs +0 -103
- package/esm2020/lib/context-menu/long-press.directive.mjs +0 -67
- package/esm2020/lib/custom-html/custom-html.component.mjs +0 -28
- package/esm2020/lib/dom/dom.service.mjs +0 -30
- package/esm2020/lib/drag-drop/drag-drop.directive.mjs +0 -88
- package/esm2020/lib/dynamic-component/dynamic-component.module.mjs +0 -31
- package/esm2020/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +0 -122
- package/esm2020/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +0 -28
- package/esm2020/lib/dynamic-component/shared/dynamic-component.mjs +0 -174
- package/esm2020/lib/entity/entity-selector/entity-selector.component.mjs +0 -194
- package/esm2020/lib/entity/entity-selector/entity-selector.module.mjs +0 -32
- package/esm2020/lib/entity/entity-table/entity-table-row.directive.mjs +0 -137
- package/esm2020/lib/entity/entity-table/entity-table.component.mjs +0 -1376
- package/esm2020/lib/entity/entity-table/entity-table.module.mjs +0 -102
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +0 -132
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +0 -2
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +0 -28
- package/esm2020/lib/entity/shared/entity.interfaces.mjs +0 -2
- package/esm2020/lib/entity/shared/entity.utils.mjs +0 -67
- package/esm2020/lib/entity/shared/index.mjs +0 -10
- package/esm2020/lib/entity/shared/state.mjs +0 -191
- package/esm2020/lib/entity/shared/store.mjs +0 -288
- package/esm2020/lib/entity/shared/strategies/filter-custom-function.mjs +0 -79
- package/esm2020/lib/entity/shared/strategies/filter-selection.mjs +0 -84
- package/esm2020/lib/entity/shared/strategies/strategy.mjs +0 -75
- package/esm2020/lib/entity/shared/transaction.mjs +0 -316
- package/esm2020/lib/entity/shared/view.mjs +0 -315
- package/esm2020/lib/entity/shared/watcher.mjs +0 -120
- package/esm2020/lib/flexible/flexible.component.mjs +0 -148
- package/esm2020/lib/form/form/form.component.mjs +0 -117
- package/esm2020/lib/form/form/form.module.mjs +0 -40
- package/esm2020/lib/form/form-field/form-field-select.component.mjs +0 -127
- package/esm2020/lib/form/form-field/form-field-text.component.mjs +0 -104
- package/esm2020/lib/form/form-field/form-field-textarea.component.mjs +0 -105
- package/esm2020/lib/form/form-field/form-field.component.mjs +0 -72
- package/esm2020/lib/form/form-group/form-group.component.mjs +0 -105
- package/esm2020/lib/form/form-group/form-group.module.mjs +0 -40
- package/esm2020/lib/form/form.module.mjs +0 -49
- package/esm2020/lib/form/shared/form-field.service.mjs +0 -29
- package/esm2020/lib/form/shared/form.interfaces.mjs +0 -2
- package/esm2020/lib/form/shared/form.service.mjs +0 -81
- package/esm2020/lib/form/shared/form.utils.mjs +0 -40
- package/esm2020/lib/home-button/home-button.component.mjs +0 -31
- package/esm2020/lib/image/image-error.directive.mjs +0 -35
- package/esm2020/lib/image/secure-image.pipe.mjs +0 -59
- package/esm2020/lib/interactive-tour/interactive-tour.component.mjs +0 -135
- package/esm2020/lib/interactive-tour/interactive-tour.interface.mjs +0 -2
- package/esm2020/lib/interactive-tour/interactive-tour.loader.mjs +0 -44
- package/esm2020/lib/interactive-tour/interactive-tour.service.mjs +0 -285
- package/esm2020/lib/json-dialog/json-dialog.component.mjs +0 -109
- package/esm2020/lib/list/list-item.directive.mjs +0 -165
- package/esm2020/lib/list/list.component.mjs +0 -262
- package/esm2020/lib/panel/panel.component.mjs +0 -59
- package/esm2020/lib/sidenav/sidenav-shim.directive.mjs +0 -55
- package/esm2020/lib/spinner/spinner-activity.directive.mjs +0 -47
- package/esm2020/lib/spinner/spinner.component.mjs +0 -35
- package/esm2020/lib/table/table-database.mjs +0 -28
- package/esm2020/lib/table/table-datasource.mjs +0 -61
- package/esm2020/lib/table/table-model.interface.mjs +0 -2
- package/esm2020/lib/table/table.component.mjs +0 -297
- package/esm2020/lib/tool/shared/tool-component.mjs +0 -9
- package/esm2020/lib/tool/shared/tool.interface.mjs +0 -2
- package/esm2020/lib/tool/shared/tool.service.mjs +0 -43
- package/esm2020/lib/tool/shared/toolbox.mjs +0 -179
- package/esm2020/lib/tool/tool.module.mjs +0 -32
- package/esm2020/lib/tool/toolbox/toolbox.component.mjs +0 -255
- package/esm2020/lib/tool/toolbox/toolbox.module.mjs +0 -36
- package/esm2020/lib/widget/shared/widget.interfaces.mjs +0 -2
- package/esm2020/lib/widget/shared/widget.service.mjs +0 -20
- package/esm2020/lib/widget/widget-outlet/widget-outlet.component.mjs +0 -116
- package/esm2020/lib/widget/widget-outlet/widget-outlet.module.mjs +0 -32
- package/esm2020/lib/widget/widget.module.mjs +0 -32
- package/esm2020/lib/workspace/shared/store.mjs +0 -40
- package/esm2020/lib/workspace/shared/workspace.mjs +0 -117
- package/esm2020/lib/workspace/workspace-selector/workspace-selector.component.mjs +0 -51
- package/esm2020/lib/workspace/workspace-selector/workspace-selector.module.mjs +0 -32
- package/esm2020/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +0 -88
- package/esm2020/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +0 -32
- package/esm2020/lib/workspace/workspace.module.mjs +0 -27
- package/esm2020/public_api.mjs +0 -74
- package/fesm2015/igo2-common.mjs +0 -10329
- package/fesm2015/igo2-common.mjs.map +0 -1
- package/fesm2020/igo2-common.mjs.map +0 -1
- package/style/common.theming.scss +0 -12
- package/style/partial/action.scss +0 -18
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
/**
|
|
3
|
-
* This is the interface a widget component needs to implement. A widget
|
|
4
|
-
* component is component that can be created dynamically. It needs
|
|
5
|
-
* to emit the 'complete' and 'cancel' event at some time in it's lifecycle.
|
|
6
|
-
* Since a widget's inputs are set manually, you may want to implement the 'onUpdateInputs'
|
|
7
|
-
* method. This method could, for example, trigger the change detection.
|
|
8
|
-
*/
|
|
9
|
-
export interface WidgetComponent {
|
|
10
|
-
complete: EventEmitter<any>;
|
|
11
|
-
cancel: EventEmitter<any>;
|
|
12
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
/**
|
|
3
|
+
* This is the interface a widget component needs to implement. A widget
|
|
4
|
+
* component is component that can be created dynamically. It needs
|
|
5
|
+
* to emit the 'complete' and 'cancel' event at some time in it's lifecycle.
|
|
6
|
+
* Since a widget's inputs are set manually, you may want to implement the 'onUpdateInputs'
|
|
7
|
+
* method. This method could, for example, trigger the change detection.
|
|
8
|
+
*/
|
|
9
|
+
export interface WidgetComponent {
|
|
10
|
+
complete: EventEmitter<any>;
|
|
11
|
+
cancel: EventEmitter<any>;
|
|
12
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { DynamicComponentService } from '../../dynamic-component/shared/dynamic-component.service';
|
|
2
|
-
import { Widget } from './widget';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class WidgetService {
|
|
5
|
-
private dynamicComponentService;
|
|
6
|
-
constructor(dynamicComponentService: DynamicComponentService);
|
|
7
|
-
create(widgetCls: any): Widget;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetService, never>;
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetService>;
|
|
10
|
-
}
|
|
1
|
+
import { DynamicComponentService } from '../../dynamic-component/shared/dynamic-component.service';
|
|
2
|
+
import { Widget } from './widget';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class WidgetService {
|
|
5
|
+
private dynamicComponentService;
|
|
6
|
+
constructor(dynamicComponentService: DynamicComponentService);
|
|
7
|
+
create(widgetCls: any): Widget;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetService>;
|
|
10
|
+
}
|
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { DynamicComponent } from '../../dynamic-component';
|
|
3
|
-
import { WidgetComponent } from '../shared/widget.interfaces';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
/**
|
|
6
|
-
* This component dynamically renders a widget. It also subscribes
|
|
7
|
-
* to the widget's 'cancel' and 'complete' events and destroys it
|
|
8
|
-
* when any of those event is emitted.
|
|
9
|
-
*/
|
|
10
|
-
export declare class WidgetOutletComponent implements OnDestroy {
|
|
11
|
-
/**
|
|
12
|
-
* Widget subscribers to 'cancel' and 'complete'
|
|
13
|
-
* @internal
|
|
14
|
-
*/
|
|
15
|
-
private baseSubscribers;
|
|
16
|
-
/**
|
|
17
|
-
* Widget
|
|
18
|
-
*/
|
|
19
|
-
widget: DynamicComponent<WidgetComponent>;
|
|
20
|
-
/**
|
|
21
|
-
* Widget inputs
|
|
22
|
-
*/
|
|
23
|
-
inputs: {
|
|
24
|
-
[key: string]: any;
|
|
25
|
-
};
|
|
26
|
-
/**
|
|
27
|
-
* Widget subscribers
|
|
28
|
-
*/
|
|
29
|
-
subscribers: {
|
|
30
|
-
[key: string]: (event: any) => void;
|
|
31
|
-
};
|
|
32
|
-
/**
|
|
33
|
-
* Event emitted when the widget emits 'complete'
|
|
34
|
-
*/
|
|
35
|
-
complete: EventEmitter<any>;
|
|
36
|
-
/**
|
|
37
|
-
* Event emitted when the widget emits 'cancel'
|
|
38
|
-
*/
|
|
39
|
-
cancel: EventEmitter<any>;
|
|
40
|
-
constructor();
|
|
41
|
-
/**
|
|
42
|
-
* Destroy the current widget and all it's inner subscriptions
|
|
43
|
-
* @internal
|
|
44
|
-
*/
|
|
45
|
-
ngOnDestroy(): void;
|
|
46
|
-
/**
|
|
47
|
-
* Get the effective subscribers. That means a combination of the base
|
|
48
|
-
* subscribers and any subscriber given as input.
|
|
49
|
-
* @returns Combined subscribers
|
|
50
|
-
* @internal
|
|
51
|
-
*/
|
|
52
|
-
getEffectiveSubscribers(): {
|
|
53
|
-
[key: string]: (event: any) => void;
|
|
54
|
-
};
|
|
55
|
-
/**
|
|
56
|
-
* When the widget emits 'cancel', propagate that event and destroy
|
|
57
|
-
* the widget
|
|
58
|
-
*/
|
|
59
|
-
private onCancel;
|
|
60
|
-
/**
|
|
61
|
-
* When the widget emits 'complete', propagate that event and destroy
|
|
62
|
-
* the widget
|
|
63
|
-
*/
|
|
64
|
-
private onComplete;
|
|
65
|
-
/**
|
|
66
|
-
* Destroy the current widget
|
|
67
|
-
*/
|
|
68
|
-
private destroyWidget;
|
|
69
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetOutletComponent, never>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetOutletComponent, "igo-widget-outlet", never, { "widget": "widget"; "inputs": "inputs"; "subscribers": "subscribers"; }, { "complete": "complete"; "cancel": "cancel"; }, never, never, false>;
|
|
71
|
-
}
|
|
1
|
+
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import { DynamicComponent } from '../../dynamic-component';
|
|
3
|
+
import { WidgetComponent } from '../shared/widget.interfaces';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* This component dynamically renders a widget. It also subscribes
|
|
7
|
+
* to the widget's 'cancel' and 'complete' events and destroys it
|
|
8
|
+
* when any of those event is emitted.
|
|
9
|
+
*/
|
|
10
|
+
export declare class WidgetOutletComponent implements OnDestroy {
|
|
11
|
+
/**
|
|
12
|
+
* Widget subscribers to 'cancel' and 'complete'
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
private baseSubscribers;
|
|
16
|
+
/**
|
|
17
|
+
* Widget
|
|
18
|
+
*/
|
|
19
|
+
widget: DynamicComponent<WidgetComponent>;
|
|
20
|
+
/**
|
|
21
|
+
* Widget inputs
|
|
22
|
+
*/
|
|
23
|
+
inputs: {
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Widget subscribers
|
|
28
|
+
*/
|
|
29
|
+
subscribers: {
|
|
30
|
+
[key: string]: (event: any) => void;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* Event emitted when the widget emits 'complete'
|
|
34
|
+
*/
|
|
35
|
+
complete: EventEmitter<any>;
|
|
36
|
+
/**
|
|
37
|
+
* Event emitted when the widget emits 'cancel'
|
|
38
|
+
*/
|
|
39
|
+
cancel: EventEmitter<any>;
|
|
40
|
+
constructor();
|
|
41
|
+
/**
|
|
42
|
+
* Destroy the current widget and all it's inner subscriptions
|
|
43
|
+
* @internal
|
|
44
|
+
*/
|
|
45
|
+
ngOnDestroy(): void;
|
|
46
|
+
/**
|
|
47
|
+
* Get the effective subscribers. That means a combination of the base
|
|
48
|
+
* subscribers and any subscriber given as input.
|
|
49
|
+
* @returns Combined subscribers
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
getEffectiveSubscribers(): {
|
|
53
|
+
[key: string]: (event: any) => void;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* When the widget emits 'cancel', propagate that event and destroy
|
|
57
|
+
* the widget
|
|
58
|
+
*/
|
|
59
|
+
private onCancel;
|
|
60
|
+
/**
|
|
61
|
+
* When the widget emits 'complete', propagate that event and destroy
|
|
62
|
+
* the widget
|
|
63
|
+
*/
|
|
64
|
+
private onComplete;
|
|
65
|
+
/**
|
|
66
|
+
* Destroy the current widget
|
|
67
|
+
*/
|
|
68
|
+
private destroyWidget;
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetOutletComponent, never>;
|
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetOutletComponent, "igo-widget-outlet", never, { "widget": { "alias": "widget"; "required": false; }; "inputs": { "alias": "inputs"; "required": false; }; "subscribers": { "alias": "subscribers"; "required": false; }; }, { "complete": "complete"; "cancel": "cancel"; }, never, never, false, never>;
|
|
71
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./widget-outlet.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../../dynamic-component/dynamic-component.module";
|
|
5
|
-
/**
|
|
6
|
-
* @ignore
|
|
7
|
-
*/
|
|
8
|
-
export declare class IgoWidgetOutletModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgoWidgetOutletModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoWidgetOutletModule, [typeof i1.WidgetOutletComponent], [typeof i2.CommonModule, typeof i3.IgoDynamicComponentModule], [typeof i1.WidgetOutletComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<IgoWidgetOutletModule>;
|
|
12
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./widget-outlet.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../dynamic-component/dynamic-component.module";
|
|
5
|
+
/**
|
|
6
|
+
* @ignore
|
|
7
|
+
*/
|
|
8
|
+
export declare class IgoWidgetOutletModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgoWidgetOutletModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoWidgetOutletModule, [typeof i1.WidgetOutletComponent], [typeof i2.CommonModule, typeof i3.IgoDynamicComponentModule], [typeof i1.WidgetOutletComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IgoWidgetOutletModule>;
|
|
12
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/common";
|
|
3
|
-
import * as i2 from "./widget-outlet/widget-outlet.module";
|
|
4
|
-
export declare class IgoWidgetModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgoWidgetModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoWidgetModule, never, [typeof i1.CommonModule, typeof i2.IgoWidgetOutletModule], [typeof i2.IgoWidgetOutletModule]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<IgoWidgetModule>;
|
|
8
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./widget-outlet/widget-outlet.module";
|
|
4
|
+
export declare class IgoWidgetModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgoWidgetModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoWidgetModule, never, [typeof i1.CommonModule, typeof i2.IgoWidgetOutletModule], [typeof i2.IgoWidgetOutletModule]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IgoWidgetModule>;
|
|
8
|
+
}
|
package/lib/workspace/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './shared';
|
|
2
|
-
export * from './workspace-selector/workspace-selector.component';
|
|
3
|
-
export * from './workspace-widget-outlet/workspace-widget-outlet.component';
|
|
1
|
+
export * from './shared';
|
|
2
|
+
export * from './workspace-selector/workspace-selector.component';
|
|
3
|
+
export * from './workspace-widget-outlet/workspace-widget-outlet.component';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './store';
|
|
2
|
-
export * from './workspace';
|
|
3
|
-
export * from './workspace.interfaces';
|
|
1
|
+
export * from './store';
|
|
2
|
+
export * from './workspace';
|
|
3
|
+
export * from './workspace.interfaces';
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { EntityStore } from '../../entity';
|
|
2
|
-
import { Workspace } from './workspace';
|
|
3
|
-
import { BehaviorSubject } from 'rxjs';
|
|
4
|
-
/**
|
|
5
|
-
* The class is a specialized version of an EntityStore that stores
|
|
6
|
-
* workspaces.
|
|
7
|
-
*/
|
|
8
|
-
export declare class WorkspaceStore extends EntityStore<Workspace> {
|
|
9
|
-
activeWorkspace$: BehaviorSubject<Workspace>;
|
|
10
|
-
/**
|
|
11
|
-
* Activate the an workspace workspace and deactivate the one currently active
|
|
12
|
-
* @param workspace Workspace
|
|
13
|
-
*/
|
|
14
|
-
activateWorkspace(workspace: Workspace): void;
|
|
15
|
-
/**
|
|
16
|
-
* Deactivate the current workspace
|
|
17
|
-
* @param workspace Workspace
|
|
18
|
-
*/
|
|
19
|
-
deactivateWorkspace(): void;
|
|
20
|
-
}
|
|
1
|
+
import { EntityStore } from '../../entity';
|
|
2
|
+
import { Workspace } from './workspace';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
/**
|
|
5
|
+
* The class is a specialized version of an EntityStore that stores
|
|
6
|
+
* workspaces.
|
|
7
|
+
*/
|
|
8
|
+
export declare class WorkspaceStore extends EntityStore<Workspace> {
|
|
9
|
+
activeWorkspace$: BehaviorSubject<Workspace>;
|
|
10
|
+
/**
|
|
11
|
+
* Activate the an workspace workspace and deactivate the one currently active
|
|
12
|
+
* @param workspace Workspace
|
|
13
|
+
*/
|
|
14
|
+
activateWorkspace(workspace: Workspace): void;
|
|
15
|
+
/**
|
|
16
|
+
* Deactivate the current workspace
|
|
17
|
+
* @param workspace Workspace
|
|
18
|
+
*/
|
|
19
|
+
deactivateWorkspace(): void;
|
|
20
|
+
}
|
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
import { BehaviorSubject } from 'rxjs';
|
|
2
|
-
import { ActionStore } from '../../action';
|
|
3
|
-
import { Widget } from '../../widget';
|
|
4
|
-
import {
|
|
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():
|
|
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
|
-
}
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { ActionStore } from '../../action';
|
|
3
|
+
import { Widget } from '../../widget';
|
|
4
|
+
import { EntityStoreWithStrategy } from '../../entity';
|
|
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(): EntityStoreWithStrategy<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
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ActionStore } from '../../action';
|
|
2
|
-
import { EntityStore } from '../../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
|
-
}
|
|
1
|
+
import { ActionStore } from '../../action';
|
|
2
|
+
import { EntityStore } from '../../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
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { Workspace } from '../shared/workspace';
|
|
3
|
-
import { WorkspaceStore } from '../shared/store';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
/**
|
|
6
|
-
* Drop list that activates the selected workspace emit an event.
|
|
7
|
-
*/
|
|
8
|
-
export declare class WorkspaceSelectorComponent {
|
|
9
|
-
/**
|
|
10
|
-
* Store that holds the available workspaces.
|
|
11
|
-
*/
|
|
12
|
-
store: WorkspaceStore;
|
|
13
|
-
/**
|
|
14
|
-
* Wheither the selector must be disabled or not.
|
|
15
|
-
*/
|
|
16
|
-
disabled: boolean;
|
|
17
|
-
/**
|
|
18
|
-
* Event emitted when an workspace is selected or unselected
|
|
19
|
-
*/
|
|
20
|
-
selectedChange: EventEmitter<{
|
|
21
|
-
selected: boolean;
|
|
22
|
-
value: Workspace;
|
|
23
|
-
}>;
|
|
24
|
-
/**
|
|
25
|
-
* @internal
|
|
26
|
-
*/
|
|
27
|
-
getWorkspaceTitle(workspace: Workspace): string;
|
|
28
|
-
/**
|
|
29
|
-
* When an workspace is manually selected, select it into the
|
|
30
|
-
* store and emit an event.
|
|
31
|
-
* @internal
|
|
32
|
-
* @param event The selection change event
|
|
33
|
-
*/
|
|
34
|
-
onSelectedChange(event: {
|
|
35
|
-
value: Workspace;
|
|
36
|
-
}): void;
|
|
37
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceSelectorComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceSelectorComponent, "igo-workspace-selector", never, { "store": "store"; "disabled": "disabled"; }, { "selectedChange": "selectedChange"; }, never, never, false>;
|
|
39
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Workspace } from '../shared/workspace';
|
|
3
|
+
import { WorkspaceStore } from '../shared/store';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Drop list that activates the selected workspace emit an event.
|
|
7
|
+
*/
|
|
8
|
+
export declare class WorkspaceSelectorComponent {
|
|
9
|
+
/**
|
|
10
|
+
* Store that holds the available workspaces.
|
|
11
|
+
*/
|
|
12
|
+
store: WorkspaceStore;
|
|
13
|
+
/**
|
|
14
|
+
* Wheither the selector must be disabled or not.
|
|
15
|
+
*/
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Event emitted when an workspace is selected or unselected
|
|
19
|
+
*/
|
|
20
|
+
selectedChange: EventEmitter<{
|
|
21
|
+
selected: boolean;
|
|
22
|
+
value: Workspace;
|
|
23
|
+
}>;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
getWorkspaceTitle(workspace: Workspace): string;
|
|
28
|
+
/**
|
|
29
|
+
* When an workspace is manually selected, select it into the
|
|
30
|
+
* store and emit an event.
|
|
31
|
+
* @internal
|
|
32
|
+
* @param event The selection change event
|
|
33
|
+
*/
|
|
34
|
+
onSelectedChange(event: {
|
|
35
|
+
value: Workspace;
|
|
36
|
+
}): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceSelectorComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceSelectorComponent, "igo-workspace-selector", never, { "store": { "alias": "store"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectedChange": "selectedChange"; }, never, never, false, never>;
|
|
39
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./workspace-selector.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../../entity/entity-selector/entity-selector.module";
|
|
5
|
-
/**
|
|
6
|
-
* @ignore
|
|
7
|
-
*/
|
|
8
|
-
export declare class IgoWorkspaceSelectorModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgoWorkspaceSelectorModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoWorkspaceSelectorModule, [typeof i1.WorkspaceSelectorComponent], [typeof i2.CommonModule, typeof i3.IgoEntitySelectorModule], [typeof i1.WorkspaceSelectorComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<IgoWorkspaceSelectorModule>;
|
|
12
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./workspace-selector.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../entity/entity-selector/entity-selector.module";
|
|
5
|
+
/**
|
|
6
|
+
* @ignore
|
|
7
|
+
*/
|
|
8
|
+
export declare class IgoWorkspaceSelectorModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgoWorkspaceSelectorModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoWorkspaceSelectorModule, [typeof i1.WorkspaceSelectorComponent], [typeof i2.CommonModule, typeof i3.IgoEntitySelectorModule], [typeof i1.WorkspaceSelectorComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IgoWorkspaceSelectorModule>;
|
|
12
|
+
}
|