@igo2/common 1.15.3 → 1.15.5
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/esm2020/igo2-common.mjs +4 -4
- package/esm2020/lib/action/action.module.mjs +27 -27
- package/esm2020/lib/action/actionbar/actionbar-item.component.mjs +252 -252
- package/esm2020/lib/action/actionbar/actionbar.component.mjs +370 -370
- package/esm2020/lib/action/actionbar/actionbar.module.mjs +57 -57
- package/esm2020/lib/action/index.mjs +3 -3
- package/esm2020/lib/action/shared/action.enums.mjs +7 -7
- package/esm2020/lib/action/shared/action.interfaces.mjs +2 -2
- package/esm2020/lib/action/shared/index.mjs +4 -4
- package/esm2020/lib/action/shared/store.mjs +8 -8
- package/esm2020/lib/backdrop/backdrop.component.mjs +26 -26
- package/esm2020/lib/backdrop/backdrop.module.mjs +25 -25
- package/esm2020/lib/backdrop/index.mjs +2 -2
- package/esm2020/lib/badge-icon/badge-icon.directive.mjs +141 -141
- package/esm2020/lib/badge-icon/badge-icon.module.mjs +26 -26
- package/esm2020/lib/badge-icon/index.mjs +2 -2
- package/esm2020/lib/clickout/clickout.directive.mjs +32 -32
- package/esm2020/lib/clickout/clickout.module.mjs +24 -24
- package/esm2020/lib/clickout/index.mjs +2 -2
- package/esm2020/lib/clone/clone.module.mjs +24 -24
- package/esm2020/lib/clone/clone.pipe.mjs +24 -24
- package/esm2020/lib/clone/index.mjs +2 -2
- package/esm2020/lib/collapsible/collapse.directive.mjs +55 -55
- package/esm2020/lib/collapsible/collapsible.component.mjs +57 -57
- package/esm2020/lib/collapsible/collapsible.module.mjs +27 -27
- package/esm2020/lib/collapsible/index.mjs +3 -3
- package/esm2020/lib/confirm-dialog/confirm-dialog.component.mjs +44 -44
- package/esm2020/lib/confirm-dialog/confirm-dialog.module.mjs +29 -29
- package/esm2020/lib/confirm-dialog/confirm-dialog.service.mjs +24 -24
- package/esm2020/lib/confirm-dialog/index.mjs +3 -3
- package/esm2020/lib/context-menu/context-menu.directive.mjs +103 -103
- package/esm2020/lib/context-menu/context-menu.module.mjs +25 -25
- package/esm2020/lib/context-menu/index.mjs +3 -3
- package/esm2020/lib/context-menu/long-press.directive.mjs +67 -67
- package/esm2020/lib/custom-html/custom-html.component.mjs +28 -28
- package/esm2020/lib/custom-html/custom-html.module.mjs +47 -47
- package/esm2020/lib/custom-html/custom-html.pipe.mjs +18 -18
- package/esm2020/lib/custom-html/index.mjs +3 -3
- package/esm2020/lib/dom/dom.interfaces.mjs +2 -2
- package/esm2020/lib/dom/dom.module.mjs +23 -23
- package/esm2020/lib/dom/dom.service.mjs +30 -30
- package/esm2020/lib/dom/index.mjs +3 -3
- package/esm2020/lib/drag-drop/drag-drop.directive.mjs +87 -87
- package/esm2020/lib/drag-drop/drag-drop.module.mjs +24 -24
- package/esm2020/lib/drag-drop/index.mjs +2 -2
- package/esm2020/lib/dynamic-component/dynamic-component.module.mjs +31 -31
- package/esm2020/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +122 -122
- package/esm2020/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +28 -28
- package/esm2020/lib/dynamic-component/index.mjs +3 -3
- package/esm2020/lib/dynamic-component/shared/dynamic-component.interfaces.mjs +2 -2
- package/esm2020/lib/dynamic-component/shared/dynamic-component.mjs +174 -174
- package/esm2020/lib/dynamic-component/shared/dynamic-component.service.mjs +29 -29
- package/esm2020/lib/dynamic-component/shared/index.mjs +4 -4
- package/esm2020/lib/entity/entity-selector/entity-selector.component.mjs +194 -194
- package/esm2020/lib/entity/entity-selector/entity-selector.module.mjs +32 -32
- package/esm2020/lib/entity/entity-table/entity-table-row.directive.mjs +137 -137
- package/esm2020/lib/entity/entity-table/entity-table.component.mjs +1376 -1376
- package/esm2020/lib/entity/entity-table/entity-table.module.mjs +102 -102
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +132 -132
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +2 -2
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +28 -28
- package/esm2020/lib/entity/entity.module.mjs +31 -31
- package/esm2020/lib/entity/index.mjs +6 -6
- package/esm2020/lib/entity/shared/entity.enums.mjs +28 -28
- package/esm2020/lib/entity/shared/entity.interfaces.mjs +2 -2
- package/esm2020/lib/entity/shared/entity.utils.mjs +67 -67
- package/esm2020/lib/entity/shared/index.mjs +10 -10
- package/esm2020/lib/entity/shared/state.mjs +191 -191
- package/esm2020/lib/entity/shared/store.mjs +288 -288
- package/esm2020/lib/entity/shared/strategies/filter-custom-function.mjs +79 -79
- package/esm2020/lib/entity/shared/strategies/filter-selection.mjs +84 -84
- package/esm2020/lib/entity/shared/strategies/index.mjs +4 -4
- package/esm2020/lib/entity/shared/strategies/strategy.mjs +75 -75
- package/esm2020/lib/entity/shared/transaction.mjs +316 -316
- package/esm2020/lib/entity/shared/view.mjs +315 -315
- package/esm2020/lib/entity/shared/watcher.mjs +120 -120
- package/esm2020/lib/flexible/flexible.component.mjs +148 -148
- package/esm2020/lib/flexible/flexible.module.mjs +24 -24
- package/esm2020/lib/flexible/flexible.type.mjs +2 -2
- package/esm2020/lib/flexible/index.mjs +3 -3
- package/esm2020/lib/form/form/form.component.mjs +117 -117
- package/esm2020/lib/form/form/form.module.mjs +40 -40
- package/esm2020/lib/form/form-field/form-field-select.component.mjs +127 -127
- package/esm2020/lib/form/form-field/form-field-text.component.mjs +104 -104
- package/esm2020/lib/form/form-field/form-field-textarea.component.mjs +105 -105
- package/esm2020/lib/form/form-field/form-field.component.mjs +72 -72
- package/esm2020/lib/form/form-field/form-field.module.mjs +74 -74
- package/esm2020/lib/form/form-field/index.mjs +5 -5
- package/esm2020/lib/form/form-group/form-group.component.mjs +105 -105
- package/esm2020/lib/form/form-group/form-group.module.mjs +40 -40
- package/esm2020/lib/form/form.module.mjs +49 -49
- package/esm2020/lib/form/index.mjs +5 -5
- package/esm2020/lib/form/shared/form-field-component.mjs +7 -7
- package/esm2020/lib/form/shared/form-field.service.mjs +29 -29
- package/esm2020/lib/form/shared/form.interfaces.mjs +2 -2
- package/esm2020/lib/form/shared/form.service.mjs +81 -81
- package/esm2020/lib/form/shared/form.utils.mjs +40 -40
- package/esm2020/lib/form/shared/index.mjs +6 -6
- package/esm2020/lib/home-button/home-button.component.mjs +31 -31
- package/esm2020/lib/home-button/home-button.module.mjs +41 -41
- package/esm2020/lib/home-button/index.mjs +2 -2
- package/esm2020/lib/image/image-error.directive.mjs +35 -35
- package/esm2020/lib/image/image.module.mjs +25 -25
- package/esm2020/lib/image/index.mjs +3 -3
- package/esm2020/lib/image/secure-image.pipe.mjs +59 -59
- package/esm2020/lib/interactive-tour/index.mjs +5 -5
- package/esm2020/lib/interactive-tour/interactive-tour.component.mjs +135 -135
- package/esm2020/lib/interactive-tour/interactive-tour.interface.mjs +2 -2
- package/esm2020/lib/interactive-tour/interactive-tour.loader.mjs +44 -44
- package/esm2020/lib/interactive-tour/interactive-tour.module.mjs +40 -40
- package/esm2020/lib/interactive-tour/interactive-tour.service.mjs +285 -285
- package/esm2020/lib/json-dialog/index.mjs +3 -3
- package/esm2020/lib/json-dialog/json-dialog.component.mjs +109 -109
- package/esm2020/lib/json-dialog/json-dialog.module.mjs +29 -29
- package/esm2020/lib/json-dialog/json-dialog.service.mjs +24 -24
- package/esm2020/lib/keyvalue/index.mjs +2 -2
- package/esm2020/lib/keyvalue/keyvalue.module.mjs +24 -24
- package/esm2020/lib/keyvalue/keyvalue.pipe.mjs +18 -18
- package/esm2020/lib/list/index.mjs +3 -3
- package/esm2020/lib/list/list-item.directive.mjs +165 -165
- package/esm2020/lib/list/list.component.mjs +262 -262
- package/esm2020/lib/list/list.module.mjs +29 -29
- package/esm2020/lib/panel/index.mjs +2 -2
- package/esm2020/lib/panel/panel.component.mjs +59 -59
- package/esm2020/lib/panel/panel.module.mjs +19 -19
- package/esm2020/lib/sidenav/index.mjs +2 -2
- package/esm2020/lib/sidenav/sidenav-shim.directive.mjs +55 -55
- package/esm2020/lib/sidenav/sidenav.module.mjs +24 -24
- package/esm2020/lib/spinner/index.mjs +3 -3
- package/esm2020/lib/spinner/spinner-activity.directive.mjs +47 -47
- package/esm2020/lib/spinner/spinner.component.mjs +35 -35
- package/esm2020/lib/spinner/spinner.module.mjs +21 -21
- package/esm2020/lib/stop-propagation/index.mjs +3 -3
- package/esm2020/lib/stop-propagation/stop-drop-propagation.directive.mjs +22 -22
- package/esm2020/lib/stop-propagation/stop-propagation.directive.mjs +21 -21
- package/esm2020/lib/stop-propagation/stop-propagation.module.mjs +25 -25
- package/esm2020/lib/table/index.mjs +6 -6
- package/esm2020/lib/table/table-action-color.enum.mjs +7 -7
- package/esm2020/lib/table/table-database.mjs +28 -28
- package/esm2020/lib/table/table-datasource.mjs +61 -61
- package/esm2020/lib/table/table-model.interface.mjs +2 -2
- package/esm2020/lib/table/table.component.mjs +297 -297
- package/esm2020/lib/table/table.module.mjs +67 -67
- package/esm2020/lib/tool/index.mjs +3 -3
- package/esm2020/lib/tool/shared/index.mjs +6 -6
- package/esm2020/lib/tool/shared/tool-component.mjs +9 -9
- package/esm2020/lib/tool/shared/tool.interface.mjs +2 -2
- package/esm2020/lib/tool/shared/tool.service.mjs +43 -43
- package/esm2020/lib/tool/shared/toolbox.enums.mjs +7 -7
- package/esm2020/lib/tool/shared/toolbox.mjs +179 -179
- package/esm2020/lib/tool/tool.module.mjs +32 -32
- package/esm2020/lib/tool/toolbox/toolbox.animation.mjs +10 -10
- package/esm2020/lib/tool/toolbox/toolbox.component.mjs +255 -255
- package/esm2020/lib/tool/toolbox/toolbox.module.mjs +36 -36
- package/esm2020/lib/widget/index.mjs +3 -3
- package/esm2020/lib/widget/shared/index.mjs +4 -4
- package/esm2020/lib/widget/shared/widget.interfaces.mjs +2 -2
- package/esm2020/lib/widget/shared/widget.mjs +4 -4
- package/esm2020/lib/widget/shared/widget.service.mjs +20 -20
- package/esm2020/lib/widget/widget-outlet/widget-outlet.component.mjs +116 -116
- package/esm2020/lib/widget/widget-outlet/widget-outlet.module.mjs +32 -32
- package/esm2020/lib/widget/widget.module.mjs +32 -32
- package/esm2020/lib/workspace/index.mjs +4 -4
- package/esm2020/lib/workspace/shared/index.mjs +4 -4
- package/esm2020/lib/workspace/shared/store.mjs +40 -40
- package/esm2020/lib/workspace/shared/workspace.interfaces.mjs +2 -2
- package/esm2020/lib/workspace/shared/workspace.mjs +117 -117
- package/esm2020/lib/workspace/workspace-selector/workspace-selector.component.mjs +51 -51
- package/esm2020/lib/workspace/workspace-selector/workspace-selector.module.mjs +32 -32
- package/esm2020/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +88 -88
- package/esm2020/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +32 -32
- package/esm2020/lib/workspace/workspace.module.mjs +27 -27
- package/esm2020/public_api.mjs +74 -74
- package/fesm2015/igo2-common.mjs +10016 -10016
- package/fesm2015/igo2-common.mjs.map +1 -1
- package/fesm2020/igo2-common.mjs +9319 -9319
- package/fesm2020/igo2-common.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/action/action.module.d.ts +8 -8
- package/lib/action/actionbar/actionbar-item.component.d.ts +78 -78
- package/lib/action/actionbar/actionbar.component.d.ts +146 -146
- package/lib/action/actionbar/actionbar.module.d.ts +20 -20
- 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/index.d.ts +2 -2
- 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-table/entity-table-row.directive.d.ts +69 -69
- package/lib/entity/entity-table/entity-table.component.d.ts +333 -333
- package/lib/entity/entity-table/entity-table.module.d.ts +29 -29
- 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.module.d.ts +10 -10
- 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 +114 -114
- package/lib/entity/shared/entity.utils.d.ts +49 -49
- package/lib/entity/shared/index.d.ts +9 -9
- package/lib/entity/shared/state.d.ts +103 -103
- package/lib/entity/shared/store.d.ts +176 -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 +168 -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 +34 -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 +57 -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/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/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/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/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 +17 -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/toolbox/toolbox.animation.d.ts +2 -2
- package/lib/tool/toolbox/toolbox.component.d.ts +127 -127
- package/lib/tool/toolbox/toolbox.module.d.ts +13 -13
- 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/package.json +3 -3
- package/public_api.d.ts +70 -70
- package/style/common.theming.scss +12 -12
- package/style/partial/action.scss +18 -18
- package/style/partial/common.variables.scss +8 -8
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
import { Component, Input, Output, EventEmitter, ChangeDetectionStrategy } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
import * as i2 from "../../widget/widget-outlet/widget-outlet.component";
|
|
5
|
-
function WorkspaceWidgetOutletComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
6
|
-
const _r3 = i0.ɵɵgetCurrentView();
|
|
7
|
-
i0.ɵɵelementContainerStart(0);
|
|
8
|
-
i0.ɵɵelementStart(1, "igo-widget-outlet", 1);
|
|
9
|
-
i0.ɵɵlistener("cancel", function WorkspaceWidgetOutletComponent_ng_container_0_Template_igo_widget_outlet_cancel_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const widget_r1 = restoredCtx.ngIf; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onWidgetCancel(widget_r1)); })("complete", function WorkspaceWidgetOutletComponent_ng_container_0_Template_igo_widget_outlet_complete_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const widget_r1 = restoredCtx.ngIf; const ctx_r4 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r4.onWidgetComplete(widget_r1)); });
|
|
10
|
-
i0.ɵɵpipe(2, "async");
|
|
11
|
-
i0.ɵɵpipe(3, "async");
|
|
12
|
-
i0.ɵɵelementEnd();
|
|
13
|
-
i0.ɵɵelementContainerEnd();
|
|
14
|
-
} if (rf & 2) {
|
|
15
|
-
const widget_r1 = ctx.ngIf;
|
|
16
|
-
const ctx_r0 = i0.ɵɵnextContext();
|
|
17
|
-
i0.ɵɵadvance(1);
|
|
18
|
-
i0.ɵɵproperty("widget", widget_r1)("inputs", i0.ɵɵpipeBind1(2, 3, ctx_r0.widgetInputs$))("subscribers", i0.ɵɵpipeBind1(3, 5, ctx_r0.widgetSubscribers$));
|
|
19
|
-
} }
|
|
20
|
-
/**
|
|
21
|
-
* This component dynamically render an Workspace's active widget.
|
|
22
|
-
* It also deactivate that widget whenever the widget's component
|
|
23
|
-
* emit the 'cancel' or 'complete' event.
|
|
24
|
-
*/
|
|
25
|
-
export class WorkspaceWidgetOutletComponent {
|
|
26
|
-
constructor() {
|
|
27
|
-
/**
|
|
28
|
-
* Event emitted when a widget is deactivate which happens
|
|
29
|
-
* when the widget's component emits the 'cancel' or 'complete' event.
|
|
30
|
-
*/
|
|
31
|
-
this.deactivateWidget = new EventEmitter();
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Observable of the workspace's active widget
|
|
35
|
-
* @internal
|
|
36
|
-
*/
|
|
37
|
-
get widget$() { return this.workspace.widget$; }
|
|
38
|
-
/**
|
|
39
|
-
* Observable of the workspace's widget inputs
|
|
40
|
-
* @internal
|
|
41
|
-
*/
|
|
42
|
-
get widgetInputs$() {
|
|
43
|
-
return this.workspace.widgetInputs$;
|
|
44
|
-
}
|
|
45
|
-
/**
|
|
46
|
-
* Observable of the workspace's widget inputs
|
|
47
|
-
* @internal
|
|
48
|
-
*/
|
|
49
|
-
get widgetSubscribers$() {
|
|
50
|
-
return this.workspace.widgetSubscribers$;
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* When a widget's component emit the 'cancel' event,
|
|
54
|
-
* deactivate that widget and emit the 'deactivateWidget' event.
|
|
55
|
-
* @param widget Widget
|
|
56
|
-
* @internal
|
|
57
|
-
*/
|
|
58
|
-
onWidgetCancel(widget) {
|
|
59
|
-
this.workspace.deactivateWidget();
|
|
60
|
-
this.deactivateWidget.emit(widget);
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* When a widget's component emit the 'cancel' event,
|
|
64
|
-
* deactivate that widget and emit the 'deactivateWidget' event.
|
|
65
|
-
* @param widget Widget
|
|
66
|
-
* @internal
|
|
67
|
-
*/
|
|
68
|
-
onWidgetComplete(widget) {
|
|
69
|
-
this.workspace.deactivateWidget();
|
|
70
|
-
this.deactivateWidget.emit(widget);
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
WorkspaceWidgetOutletComponent.ɵfac = function WorkspaceWidgetOutletComponent_Factory(t) { return new (t || WorkspaceWidgetOutletComponent)(); };
|
|
74
|
-
WorkspaceWidgetOutletComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WorkspaceWidgetOutletComponent, selectors: [["igo-workspace-widget-outlet"]], inputs: { workspace: "workspace" }, outputs: { deactivateWidget: "deactivateWidget" }, decls: 2, vars: 3, consts: [[4, "ngIf"], [3, "widget", "inputs", "subscribers", "cancel", "complete"]], template: function WorkspaceWidgetOutletComponent_Template(rf, ctx) { if (rf & 1) {
|
|
75
|
-
i0.ɵɵtemplate(0, WorkspaceWidgetOutletComponent_ng_container_0_Template, 4, 7, "ng-container", 0);
|
|
76
|
-
i0.ɵɵpipe(1, "async");
|
|
77
|
-
} if (rf & 2) {
|
|
78
|
-
i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(1, 1, ctx.widget$));
|
|
79
|
-
} }, dependencies: [i1.NgIf, i2.WidgetOutletComponent, i1.AsyncPipe], styles: ["igo-widget-outlet[_ngcontent-%COMP%]{height:100%}"], changeDetection: 0 });
|
|
80
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WorkspaceWidgetOutletComponent, [{
|
|
81
|
-
type: Component,
|
|
82
|
-
args: [{ selector: 'igo-workspace-widget-outlet', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"widget$ | async as widget\">\
|
|
83
|
-
}], function () { return []; }, { workspace: [{
|
|
84
|
-
type: Input
|
|
85
|
-
}], deactivateWidget: [{
|
|
86
|
-
type: Output
|
|
87
|
-
}] }); })();
|
|
88
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
import { Component, Input, Output, EventEmitter, ChangeDetectionStrategy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "../../widget/widget-outlet/widget-outlet.component";
|
|
5
|
+
function WorkspaceWidgetOutletComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
6
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
7
|
+
i0.ɵɵelementContainerStart(0);
|
|
8
|
+
i0.ɵɵelementStart(1, "igo-widget-outlet", 1);
|
|
9
|
+
i0.ɵɵlistener("cancel", function WorkspaceWidgetOutletComponent_ng_container_0_Template_igo_widget_outlet_cancel_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const widget_r1 = restoredCtx.ngIf; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onWidgetCancel(widget_r1)); })("complete", function WorkspaceWidgetOutletComponent_ng_container_0_Template_igo_widget_outlet_complete_1_listener() { const restoredCtx = i0.ɵɵrestoreView(_r3); const widget_r1 = restoredCtx.ngIf; const ctx_r4 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r4.onWidgetComplete(widget_r1)); });
|
|
10
|
+
i0.ɵɵpipe(2, "async");
|
|
11
|
+
i0.ɵɵpipe(3, "async");
|
|
12
|
+
i0.ɵɵelementEnd();
|
|
13
|
+
i0.ɵɵelementContainerEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const widget_r1 = ctx.ngIf;
|
|
16
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
17
|
+
i0.ɵɵadvance(1);
|
|
18
|
+
i0.ɵɵproperty("widget", widget_r1)("inputs", i0.ɵɵpipeBind1(2, 3, ctx_r0.widgetInputs$))("subscribers", i0.ɵɵpipeBind1(3, 5, ctx_r0.widgetSubscribers$));
|
|
19
|
+
} }
|
|
20
|
+
/**
|
|
21
|
+
* This component dynamically render an Workspace's active widget.
|
|
22
|
+
* It also deactivate that widget whenever the widget's component
|
|
23
|
+
* emit the 'cancel' or 'complete' event.
|
|
24
|
+
*/
|
|
25
|
+
export class WorkspaceWidgetOutletComponent {
|
|
26
|
+
constructor() {
|
|
27
|
+
/**
|
|
28
|
+
* Event emitted when a widget is deactivate which happens
|
|
29
|
+
* when the widget's component emits the 'cancel' or 'complete' event.
|
|
30
|
+
*/
|
|
31
|
+
this.deactivateWidget = new EventEmitter();
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Observable of the workspace's active widget
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
get widget$() { return this.workspace.widget$; }
|
|
38
|
+
/**
|
|
39
|
+
* Observable of the workspace's widget inputs
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
get widgetInputs$() {
|
|
43
|
+
return this.workspace.widgetInputs$;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Observable of the workspace's widget inputs
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
get widgetSubscribers$() {
|
|
50
|
+
return this.workspace.widgetSubscribers$;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* When a widget's component emit the 'cancel' event,
|
|
54
|
+
* deactivate that widget and emit the 'deactivateWidget' event.
|
|
55
|
+
* @param widget Widget
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
58
|
+
onWidgetCancel(widget) {
|
|
59
|
+
this.workspace.deactivateWidget();
|
|
60
|
+
this.deactivateWidget.emit(widget);
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* When a widget's component emit the 'cancel' event,
|
|
64
|
+
* deactivate that widget and emit the 'deactivateWidget' event.
|
|
65
|
+
* @param widget Widget
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
onWidgetComplete(widget) {
|
|
69
|
+
this.workspace.deactivateWidget();
|
|
70
|
+
this.deactivateWidget.emit(widget);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
WorkspaceWidgetOutletComponent.ɵfac = function WorkspaceWidgetOutletComponent_Factory(t) { return new (t || WorkspaceWidgetOutletComponent)(); };
|
|
74
|
+
WorkspaceWidgetOutletComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WorkspaceWidgetOutletComponent, selectors: [["igo-workspace-widget-outlet"]], inputs: { workspace: "workspace" }, outputs: { deactivateWidget: "deactivateWidget" }, decls: 2, vars: 3, consts: [[4, "ngIf"], [3, "widget", "inputs", "subscribers", "cancel", "complete"]], template: function WorkspaceWidgetOutletComponent_Template(rf, ctx) { if (rf & 1) {
|
|
75
|
+
i0.ɵɵtemplate(0, WorkspaceWidgetOutletComponent_ng_container_0_Template, 4, 7, "ng-container", 0);
|
|
76
|
+
i0.ɵɵpipe(1, "async");
|
|
77
|
+
} if (rf & 2) {
|
|
78
|
+
i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(1, 1, ctx.widget$));
|
|
79
|
+
} }, dependencies: [i1.NgIf, i2.WidgetOutletComponent, i1.AsyncPipe], styles: ["igo-widget-outlet[_ngcontent-%COMP%]{height:100%}"], changeDetection: 0 });
|
|
80
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WorkspaceWidgetOutletComponent, [{
|
|
81
|
+
type: Component,
|
|
82
|
+
args: [{ selector: 'igo-workspace-widget-outlet', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"widget$ | async as widget\">\n <igo-widget-outlet\n [widget]=\"widget\"\n [inputs]=\"widgetInputs$ | async\"\n [subscribers]=\"widgetSubscribers$ | async\"\n (cancel)=\"onWidgetCancel(widget)\"\n (complete)=\"onWidgetComplete(widget)\">\n </igo-widget-outlet>\n</ng-container>\n", styles: ["igo-widget-outlet{height:100%}\n"] }]
|
|
83
|
+
}], function () { return []; }, { workspace: [{
|
|
84
|
+
type: Input
|
|
85
|
+
}], deactivateWidget: [{
|
|
86
|
+
type: Output
|
|
87
|
+
}] }); })();
|
|
88
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29ya3NwYWNlLXdpZGdldC1vdXRsZXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvd29ya3NwYWNlL3dvcmtzcGFjZS13aWRnZXQtb3V0bGV0L3dvcmtzcGFjZS13aWRnZXQtb3V0bGV0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbW1vbi9zcmMvbGliL3dvcmtzcGFjZS93b3Jrc3BhY2Utd2lkZ2V0LW91dGxldC93b3Jrc3BhY2Utd2lkZ2V0LW91dGxldC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUNULEtBQUssRUFDTCxNQUFNLEVBQ04sWUFBWSxFQUNaLHVCQUF1QixFQUN4QixNQUFNLGVBQWUsQ0FBQzs7Ozs7O0lDTnZCLDZCQUFnRDtJQUM5Qyw0Q0FLd0M7SUFEdEMseVBBQVUsZUFBQSxnQ0FBc0IsQ0FBQSxJQUFDLGdQQUNyQixlQUFBLGtDQUF3QixDQUFBLElBREg7OztJQUVuQyxpQkFBb0I7SUFDdEIsMEJBQWU7Ozs7SUFOWCxlQUFpQjtJQUFqQixrQ0FBaUIsc0RBQUEsZ0VBQUE7O0FEV3JCOzs7O0dBSUc7QUFPSCxNQUFNLE9BQU8sOEJBQThCO0lBbUN6QztRQTVCQTs7O1dBR0c7UUFDTyxxQkFBZ0IsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO0lBd0J6QyxDQUFDO0lBdEJoQjs7O09BR0c7SUFDSCxJQUFJLE9BQU8sS0FBOEIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7SUFFekU7OztPQUdHO0lBQ0gsSUFBSSxhQUFhO1FBQ2YsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLGFBQWEsQ0FBQztJQUN0QyxDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsSUFBSSxrQkFBa0I7UUFDcEIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLGtCQUFrQixDQUFDO0lBQzNDLENBQUM7SUFJRDs7Ozs7T0FLRztJQUNILGNBQWMsQ0FBQyxNQUFjO1FBQzNCLElBQUksQ0FBQyxTQUFTLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQztRQUNsQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ3JDLENBQUM7SUFFRDs7Ozs7T0FLRztJQUNILGdCQUFnQixDQUFDLE1BQWM7UUFDN0IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO1FBQ2xDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDckMsQ0FBQzs7NEdBekRVLDhCQUE4QjtpRkFBOUIsOEJBQThCO1FDeEIzQyxpR0FRZTs7O1FBUkEsd0RBQXNCOzt1RkR3QnhCLDhCQUE4QjtjQU4xQyxTQUFTOzJCQUNFLDZCQUE2QixtQkFHdEIsdUJBQXVCLENBQUMsTUFBTTtzQ0FPdEMsU0FBUztrQkFBakIsS0FBSztZQU1JLGdCQUFnQjtrQkFBekIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENvbXBvbmVudCxcbiAgSW5wdXQsXG4gIE91dHB1dCxcbiAgRXZlbnRFbWl0dGVyLFxuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneVxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0IH0gZnJvbSAncnhqcyc7XG5cbmltcG9ydCB7IFdpZGdldCB9IGZyb20gJy4uLy4uL3dpZGdldCc7XG5pbXBvcnQgeyBXb3Jrc3BhY2UgfSBmcm9tICcuLi9zaGFyZWQvd29ya3NwYWNlJztcblxuLyoqXG4gKiBUaGlzIGNvbXBvbmVudCBkeW5hbWljYWxseSByZW5kZXIgYW4gV29ya3NwYWNlJ3MgYWN0aXZlIHdpZGdldC5cbiAqIEl0IGFsc28gZGVhY3RpdmF0ZSB0aGF0IHdpZGdldCB3aGVuZXZlciB0aGUgd2lkZ2V0J3MgY29tcG9uZW50XG4gKiBlbWl0IHRoZSAnY2FuY2VsJyBvciAnY29tcGxldGUnIGV2ZW50LlxuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdpZ28td29ya3NwYWNlLXdpZGdldC1vdXRsZXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vd29ya3NwYWNlLXdpZGdldC1vdXRsZXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi93b3Jrc3BhY2Utd2lkZ2V0LW91dGxldC5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxufSlcbmV4cG9ydCBjbGFzcyBXb3Jrc3BhY2VXaWRnZXRPdXRsZXRDb21wb25lbnQge1xuXG4gIC8qKlxuICAgKiBXb3Jrc3BhY2VcbiAgICovXG4gIEBJbnB1dCgpIHdvcmtzcGFjZTogV29ya3NwYWNlO1xuXG4gIC8qKlxuICAgKiBFdmVudCBlbWl0dGVkIHdoZW4gYSB3aWRnZXQgaXMgZGVhY3RpdmF0ZSB3aGljaCBoYXBwZW5zXG4gICAqIHdoZW4gdGhlIHdpZGdldCdzIGNvbXBvbmVudCBlbWl0cyB0aGUgJ2NhbmNlbCcgb3IgJ2NvbXBsZXRlJyBldmVudC5cbiAgICovXG4gIEBPdXRwdXQoKSBkZWFjdGl2YXRlV2lkZ2V0ID0gbmV3IEV2ZW50RW1pdHRlcjxXaWRnZXQ+KCk7XG5cbiAgLyoqXG4gICAqIE9ic2VydmFibGUgb2YgdGhlIHdvcmtzcGFjZSdzIGFjdGl2ZSB3aWRnZXRcbiAgICogQGludGVybmFsXG4gICAqL1xuICBnZXQgd2lkZ2V0JCgpOiBCZWhhdmlvclN1YmplY3Q8V2lkZ2V0PiB7IHJldHVybiB0aGlzLndvcmtzcGFjZS53aWRnZXQkOyB9XG5cbiAgLyoqXG4gICAqIE9ic2VydmFibGUgb2YgdGhlIHdvcmtzcGFjZSdzIHdpZGdldCBpbnB1dHNcbiAgICogQGludGVybmFsXG4gICAqL1xuICBnZXQgd2lkZ2V0SW5wdXRzJCgpOiBCZWhhdmlvclN1YmplY3Q8e1trZXk6IHN0cmluZ106IGFueX0+IHtcbiAgICByZXR1cm4gdGhpcy53b3Jrc3BhY2Uud2lkZ2V0SW5wdXRzJDtcbiAgfVxuXG4gIC8qKlxuICAgKiBPYnNlcnZhYmxlIG9mIHRoZSB3b3Jrc3BhY2UncyB3aWRnZXQgaW5wdXRzXG4gICAqIEBpbnRlcm5hbFxuICAgKi9cbiAgZ2V0IHdpZGdldFN1YnNjcmliZXJzJCgpOiBCZWhhdmlvclN1YmplY3Q8e1trZXk6IHN0cmluZ106IChldmVudDogYW55KSA9PiB2b2lkfT4ge1xuICAgIHJldHVybiB0aGlzLndvcmtzcGFjZS53aWRnZXRTdWJzY3JpYmVycyQ7XG4gIH1cblxuICBjb25zdHJ1Y3RvcigpIHt9XG5cbiAgLyoqXG4gICAqIFdoZW4gYSB3aWRnZXQncyBjb21wb25lbnQgZW1pdCB0aGUgJ2NhbmNlbCcgZXZlbnQsXG4gICAqIGRlYWN0aXZhdGUgdGhhdCB3aWRnZXQgYW5kIGVtaXQgdGhlICdkZWFjdGl2YXRlV2lkZ2V0JyBldmVudC5cbiAgICogQHBhcmFtIHdpZGdldCBXaWRnZXRcbiAgICogQGludGVybmFsXG4gICAqL1xuICBvbldpZGdldENhbmNlbCh3aWRnZXQ6IFdpZGdldCkge1xuICAgIHRoaXMud29ya3NwYWNlLmRlYWN0aXZhdGVXaWRnZXQoKTtcbiAgICB0aGlzLmRlYWN0aXZhdGVXaWRnZXQuZW1pdCh3aWRnZXQpO1xuICB9XG5cbiAgLyoqXG4gICAqIFdoZW4gYSB3aWRnZXQncyBjb21wb25lbnQgZW1pdCB0aGUgJ2NhbmNlbCcgZXZlbnQsXG4gICAqIGRlYWN0aXZhdGUgdGhhdCB3aWRnZXQgYW5kIGVtaXQgdGhlICdkZWFjdGl2YXRlV2lkZ2V0JyBldmVudC5cbiAgICogQHBhcmFtIHdpZGdldCBXaWRnZXRcbiAgICogQGludGVybmFsXG4gICAqL1xuICBvbldpZGdldENvbXBsZXRlKHdpZGdldDogV2lkZ2V0KSB7XG4gICAgdGhpcy53b3Jrc3BhY2UuZGVhY3RpdmF0ZVdpZGdldCgpO1xuICAgIHRoaXMuZGVhY3RpdmF0ZVdpZGdldC5lbWl0KHdpZGdldCk7XG4gIH1cblxufVxuIiwiPG5nLWNvbnRhaW5lciAqbmdJZj1cIndpZGdldCQgfCBhc3luYyBhcyB3aWRnZXRcIj5cbiAgPGlnby13aWRnZXQtb3V0bGV0XG4gICAgW3dpZGdldF09XCJ3aWRnZXRcIlxuICAgIFtpbnB1dHNdPVwid2lkZ2V0SW5wdXRzJCB8IGFzeW5jXCJcbiAgICBbc3Vic2NyaWJlcnNdPVwid2lkZ2V0U3Vic2NyaWJlcnMkIHwgYXN5bmNcIlxuICAgIChjYW5jZWwpPVwib25XaWRnZXRDYW5jZWwod2lkZ2V0KVwiXG4gICAgKGNvbXBsZXRlKT1cIm9uV2lkZ2V0Q29tcGxldGUod2lkZ2V0KVwiPlxuICA8L2lnby13aWRnZXQtb3V0bGV0PlxuPC9uZy1jb250YWluZXI+XG4iXX0=
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { IgoWidgetOutletModule } from '../../widget/widget-outlet/widget-outlet.module';
|
|
4
|
-
import { WorkspaceWidgetOutletComponent } from './workspace-widget-outlet.component';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
/**
|
|
7
|
-
* @ignore
|
|
8
|
-
*/
|
|
9
|
-
export class IgoWorkspaceWidgetOutletModule {
|
|
10
|
-
}
|
|
11
|
-
IgoWorkspaceWidgetOutletModule.ɵfac = function IgoWorkspaceWidgetOutletModule_Factory(t) { return new (t || IgoWorkspaceWidgetOutletModule)(); };
|
|
12
|
-
IgoWorkspaceWidgetOutletModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWorkspaceWidgetOutletModule });
|
|
13
|
-
IgoWorkspaceWidgetOutletModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
|
|
14
|
-
IgoWidgetOutletModule] });
|
|
15
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWorkspaceWidgetOutletModule, [{
|
|
16
|
-
type: NgModule,
|
|
17
|
-
args: [{
|
|
18
|
-
imports: [
|
|
19
|
-
CommonModule,
|
|
20
|
-
IgoWidgetOutletModule
|
|
21
|
-
],
|
|
22
|
-
exports: [
|
|
23
|
-
WorkspaceWidgetOutletComponent
|
|
24
|
-
],
|
|
25
|
-
declarations: [
|
|
26
|
-
WorkspaceWidgetOutletComponent
|
|
27
|
-
]
|
|
28
|
-
}]
|
|
29
|
-
}], null, null); })();
|
|
30
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoWorkspaceWidgetOutletModule, { declarations: [WorkspaceWidgetOutletComponent], imports: [CommonModule,
|
|
31
|
-
IgoWidgetOutletModule], exports: [WorkspaceWidgetOutletComponent] }); })();
|
|
32
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { IgoWidgetOutletModule } from '../../widget/widget-outlet/widget-outlet.module';
|
|
4
|
+
import { WorkspaceWidgetOutletComponent } from './workspace-widget-outlet.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* @ignore
|
|
8
|
+
*/
|
|
9
|
+
export class IgoWorkspaceWidgetOutletModule {
|
|
10
|
+
}
|
|
11
|
+
IgoWorkspaceWidgetOutletModule.ɵfac = function IgoWorkspaceWidgetOutletModule_Factory(t) { return new (t || IgoWorkspaceWidgetOutletModule)(); };
|
|
12
|
+
IgoWorkspaceWidgetOutletModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWorkspaceWidgetOutletModule });
|
|
13
|
+
IgoWorkspaceWidgetOutletModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
|
|
14
|
+
IgoWidgetOutletModule] });
|
|
15
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWorkspaceWidgetOutletModule, [{
|
|
16
|
+
type: NgModule,
|
|
17
|
+
args: [{
|
|
18
|
+
imports: [
|
|
19
|
+
CommonModule,
|
|
20
|
+
IgoWidgetOutletModule
|
|
21
|
+
],
|
|
22
|
+
exports: [
|
|
23
|
+
WorkspaceWidgetOutletComponent
|
|
24
|
+
],
|
|
25
|
+
declarations: [
|
|
26
|
+
WorkspaceWidgetOutletComponent
|
|
27
|
+
]
|
|
28
|
+
}]
|
|
29
|
+
}], null, null); })();
|
|
30
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoWorkspaceWidgetOutletModule, { declarations: [WorkspaceWidgetOutletComponent], imports: [CommonModule,
|
|
31
|
+
IgoWidgetOutletModule], exports: [WorkspaceWidgetOutletComponent] }); })();
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29ya3NwYWNlLXdpZGdldC1vdXRsZXQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvd29ya3NwYWNlL3dvcmtzcGFjZS13aWRnZXQtb3V0bGV0L3dvcmtzcGFjZS13aWRnZXQtb3V0bGV0Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUV4RixPQUFPLEVBQUUsOEJBQThCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQzs7QUFFckY7O0dBRUc7QUFhSCxNQUFNLE9BQU8sOEJBQThCOzs0R0FBOUIsOEJBQThCO2dGQUE5Qiw4QkFBOEI7b0ZBVnZDLFlBQVk7UUFDWixxQkFBcUI7dUZBU1osOEJBQThCO2NBWjFDLFFBQVE7ZUFBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixxQkFBcUI7aUJBQ3RCO2dCQUNELE9BQU8sRUFBRTtvQkFDUCw4QkFBOEI7aUJBQy9CO2dCQUNELFlBQVksRUFBRTtvQkFDWiw4QkFBOEI7aUJBQy9CO2FBQ0Y7O3dGQUNZLDhCQUE4QixtQkFIdkMsOEJBQThCLGFBUDlCLFlBQVk7UUFDWixxQkFBcUIsYUFHckIsOEJBQThCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5cbmltcG9ydCB7IElnb1dpZGdldE91dGxldE1vZHVsZSB9IGZyb20gJy4uLy4uL3dpZGdldC93aWRnZXQtb3V0bGV0L3dpZGdldC1vdXRsZXQubW9kdWxlJztcblxuaW1wb3J0IHsgV29ya3NwYWNlV2lkZ2V0T3V0bGV0Q29tcG9uZW50IH0gZnJvbSAnLi93b3Jrc3BhY2Utd2lkZ2V0LW91dGxldC5jb21wb25lbnQnO1xuXG4vKipcbiAqIEBpZ25vcmVcbiAqL1xuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBJZ29XaWRnZXRPdXRsZXRNb2R1bGVcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIFdvcmtzcGFjZVdpZGdldE91dGxldENvbXBvbmVudFxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBXb3Jrc3BhY2VXaWRnZXRPdXRsZXRDb21wb25lbnRcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBJZ29Xb3Jrc3BhY2VXaWRnZXRPdXRsZXRNb2R1bGUge31cbiJdfQ==
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { IgoWorkspaceSelectorModule } from './workspace-selector/workspace-selector.module';
|
|
4
|
-
import { IgoWorkspaceWidgetOutletModule } from './workspace-widget-outlet/workspace-widget-outlet.module';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class IgoWorkspaceModule {
|
|
7
|
-
}
|
|
8
|
-
IgoWorkspaceModule.ɵfac = function IgoWorkspaceModule_Factory(t) { return new (t || IgoWorkspaceModule)(); };
|
|
9
|
-
IgoWorkspaceModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWorkspaceModule });
|
|
10
|
-
IgoWorkspaceModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, IgoWorkspaceSelectorModule,
|
|
11
|
-
IgoWorkspaceWidgetOutletModule] });
|
|
12
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWorkspaceModule, [{
|
|
13
|
-
type: NgModule,
|
|
14
|
-
args: [{
|
|
15
|
-
imports: [
|
|
16
|
-
CommonModule
|
|
17
|
-
],
|
|
18
|
-
exports: [
|
|
19
|
-
IgoWorkspaceSelectorModule,
|
|
20
|
-
IgoWorkspaceWidgetOutletModule
|
|
21
|
-
],
|
|
22
|
-
declarations: []
|
|
23
|
-
}]
|
|
24
|
-
}], null, null); })();
|
|
25
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoWorkspaceModule, { imports: [CommonModule], exports: [IgoWorkspaceSelectorModule,
|
|
26
|
-
IgoWorkspaceWidgetOutletModule] }); })();
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { IgoWorkspaceSelectorModule } from './workspace-selector/workspace-selector.module';
|
|
4
|
+
import { IgoWorkspaceWidgetOutletModule } from './workspace-widget-outlet/workspace-widget-outlet.module';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export class IgoWorkspaceModule {
|
|
7
|
+
}
|
|
8
|
+
IgoWorkspaceModule.ɵfac = function IgoWorkspaceModule_Factory(t) { return new (t || IgoWorkspaceModule)(); };
|
|
9
|
+
IgoWorkspaceModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoWorkspaceModule });
|
|
10
|
+
IgoWorkspaceModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, IgoWorkspaceSelectorModule,
|
|
11
|
+
IgoWorkspaceWidgetOutletModule] });
|
|
12
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoWorkspaceModule, [{
|
|
13
|
+
type: NgModule,
|
|
14
|
+
args: [{
|
|
15
|
+
imports: [
|
|
16
|
+
CommonModule
|
|
17
|
+
],
|
|
18
|
+
exports: [
|
|
19
|
+
IgoWorkspaceSelectorModule,
|
|
20
|
+
IgoWorkspaceWidgetOutletModule
|
|
21
|
+
],
|
|
22
|
+
declarations: []
|
|
23
|
+
}]
|
|
24
|
+
}], null, null); })();
|
|
25
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoWorkspaceModule, { imports: [CommonModule], exports: [IgoWorkspaceSelectorModule,
|
|
26
|
+
IgoWorkspaceWidgetOutletModule] }); })();
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29ya3NwYWNlLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbW1vbi9zcmMvbGliL3dvcmtzcGFjZS93b3Jrc3BhY2UubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLGdEQUFnRCxDQUFDO0FBQzVGLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLDBEQUEwRCxDQUFDOztBQVkxRyxNQUFNLE9BQU8sa0JBQWtCOztvRkFBbEIsa0JBQWtCO29FQUFsQixrQkFBa0I7d0VBUjNCLFlBQVksRUFHWiwwQkFBMEI7UUFDMUIsOEJBQThCO3VGQUlyQixrQkFBa0I7Y0FWOUIsUUFBUTtlQUFDO2dCQUNSLE9BQU8sRUFBRTtvQkFDUCxZQUFZO2lCQUNiO2dCQUNELE9BQU8sRUFBRTtvQkFDUCwwQkFBMEI7b0JBQzFCLDhCQUE4QjtpQkFDL0I7Z0JBQ0QsWUFBWSxFQUFFLEVBQUU7YUFDakI7O3dGQUNZLGtCQUFrQixjQVIzQixZQUFZLGFBR1osMEJBQTBCO1FBQzFCLDhCQUE4QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuXG5pbXBvcnQgeyBJZ29Xb3Jrc3BhY2VTZWxlY3Rvck1vZHVsZSB9IGZyb20gJy4vd29ya3NwYWNlLXNlbGVjdG9yL3dvcmtzcGFjZS1zZWxlY3Rvci5tb2R1bGUnO1xuaW1wb3J0IHsgSWdvV29ya3NwYWNlV2lkZ2V0T3V0bGV0TW9kdWxlIH0gZnJvbSAnLi93b3Jrc3BhY2Utd2lkZ2V0LW91dGxldC93b3Jrc3BhY2Utd2lkZ2V0LW91dGxldC5tb2R1bGUnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBJZ29Xb3Jrc3BhY2VTZWxlY3Rvck1vZHVsZSxcbiAgICBJZ29Xb3Jrc3BhY2VXaWRnZXRPdXRsZXRNb2R1bGVcbiAgXSxcbiAgZGVjbGFyYXRpb25zOiBbXVxufSlcbmV4cG9ydCBjbGFzcyBJZ29Xb3Jrc3BhY2VNb2R1bGUge31cbiJdfQ==
|
package/esm2020/public_api.mjs
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of common
|
|
3
|
-
*/
|
|
4
|
-
export * from './lib/action/action.module';
|
|
5
|
-
export * from './lib/action/actionbar/actionbar.module';
|
|
6
|
-
export * from './lib/backdrop/backdrop.module';
|
|
7
|
-
export * from './lib/badge-icon/badge-icon.module';
|
|
8
|
-
export * from './lib/clickout/clickout.module';
|
|
9
|
-
export * from './lib/clone/clone.module';
|
|
10
|
-
export * from './lib/collapsible/collapsible.module';
|
|
11
|
-
export * from './lib/confirm-dialog/confirm-dialog.module';
|
|
12
|
-
export * from './lib/context-menu/context-menu.module';
|
|
13
|
-
export * from './lib/custom-html/custom-html.module';
|
|
14
|
-
export * from './lib/dom/dom.module';
|
|
15
|
-
export * from './lib/drag-drop/drag-drop.module';
|
|
16
|
-
export * from './lib/dynamic-component/dynamic-component.module';
|
|
17
|
-
export * from './lib/dynamic-component/dynamic-outlet/dynamic-outlet.module';
|
|
18
|
-
export * from './lib/flexible/flexible.module';
|
|
19
|
-
export * from './lib/form/form.module';
|
|
20
|
-
export * from './lib/form/form/form.module';
|
|
21
|
-
export * from './lib/home-button/home-button.module';
|
|
22
|
-
export * from './lib/form/form-field/form-field.module';
|
|
23
|
-
export * from './lib/form/form-group/form-group.module';
|
|
24
|
-
export * from './lib/entity/entity.module';
|
|
25
|
-
export * from './lib/entity/entity-selector/entity-selector.module';
|
|
26
|
-
export * from './lib/entity/entity-table/entity-table.module';
|
|
27
|
-
export * from './lib/entity/entity-table-paginator/entity-table-paginator.module';
|
|
28
|
-
export * from './lib/image/image.module';
|
|
29
|
-
export * from './lib/interactive-tour/interactive-tour.module';
|
|
30
|
-
export * from './lib/json-dialog/json-dialog.module';
|
|
31
|
-
export * from './lib/keyvalue/keyvalue.module';
|
|
32
|
-
export * from './lib/list/list.module';
|
|
33
|
-
export * from './lib/panel/panel.module';
|
|
34
|
-
export * from './lib/sidenav/sidenav.module';
|
|
35
|
-
export * from './lib/spinner/spinner.module';
|
|
36
|
-
export * from './lib/stop-propagation/stop-propagation.module';
|
|
37
|
-
export * from './lib/table/table.module';
|
|
38
|
-
export * from './lib/tool/tool.module';
|
|
39
|
-
export * from './lib/tool/toolbox/toolbox.module';
|
|
40
|
-
export * from './lib/widget/widget.module';
|
|
41
|
-
export * from './lib/widget/widget-outlet/widget-outlet.module';
|
|
42
|
-
export * from './lib/workspace/workspace.module';
|
|
43
|
-
export * from './lib/workspace/workspace-selector/workspace-selector.module';
|
|
44
|
-
export * from './lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module';
|
|
45
|
-
export * from './lib/action';
|
|
46
|
-
export * from './lib/backdrop';
|
|
47
|
-
export * from './lib/badge-icon';
|
|
48
|
-
export * from './lib/clickout';
|
|
49
|
-
export * from './lib/clone';
|
|
50
|
-
export * from './lib/collapsible';
|
|
51
|
-
export * from './lib/confirm-dialog';
|
|
52
|
-
export * from './lib/context-menu';
|
|
53
|
-
export * from './lib/custom-html';
|
|
54
|
-
export * from './lib/drag-drop';
|
|
55
|
-
export * from './lib/dom';
|
|
56
|
-
export * from './lib/dynamic-component';
|
|
57
|
-
export * from './lib/form';
|
|
58
|
-
export * from './lib/home-button';
|
|
59
|
-
export * from './lib/entity';
|
|
60
|
-
export * from './lib/flexible';
|
|
61
|
-
export * from './lib/image';
|
|
62
|
-
export * from './lib/interactive-tour';
|
|
63
|
-
export * from './lib/json-dialog';
|
|
64
|
-
export * from './lib/keyvalue';
|
|
65
|
-
export * from './lib/list';
|
|
66
|
-
export * from './lib/panel';
|
|
67
|
-
export * from './lib/sidenav';
|
|
68
|
-
export * from './lib/spinner';
|
|
69
|
-
export * from './lib/stop-propagation';
|
|
70
|
-
export * from './lib/table';
|
|
71
|
-
export * from './lib/tool';
|
|
72
|
-
export * from './lib/widget';
|
|
73
|
-
export * from './lib/workspace';
|
|
74
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of common
|
|
3
|
+
*/
|
|
4
|
+
export * from './lib/action/action.module';
|
|
5
|
+
export * from './lib/action/actionbar/actionbar.module';
|
|
6
|
+
export * from './lib/backdrop/backdrop.module';
|
|
7
|
+
export * from './lib/badge-icon/badge-icon.module';
|
|
8
|
+
export * from './lib/clickout/clickout.module';
|
|
9
|
+
export * from './lib/clone/clone.module';
|
|
10
|
+
export * from './lib/collapsible/collapsible.module';
|
|
11
|
+
export * from './lib/confirm-dialog/confirm-dialog.module';
|
|
12
|
+
export * from './lib/context-menu/context-menu.module';
|
|
13
|
+
export * from './lib/custom-html/custom-html.module';
|
|
14
|
+
export * from './lib/dom/dom.module';
|
|
15
|
+
export * from './lib/drag-drop/drag-drop.module';
|
|
16
|
+
export * from './lib/dynamic-component/dynamic-component.module';
|
|
17
|
+
export * from './lib/dynamic-component/dynamic-outlet/dynamic-outlet.module';
|
|
18
|
+
export * from './lib/flexible/flexible.module';
|
|
19
|
+
export * from './lib/form/form.module';
|
|
20
|
+
export * from './lib/form/form/form.module';
|
|
21
|
+
export * from './lib/home-button/home-button.module';
|
|
22
|
+
export * from './lib/form/form-field/form-field.module';
|
|
23
|
+
export * from './lib/form/form-group/form-group.module';
|
|
24
|
+
export * from './lib/entity/entity.module';
|
|
25
|
+
export * from './lib/entity/entity-selector/entity-selector.module';
|
|
26
|
+
export * from './lib/entity/entity-table/entity-table.module';
|
|
27
|
+
export * from './lib/entity/entity-table-paginator/entity-table-paginator.module';
|
|
28
|
+
export * from './lib/image/image.module';
|
|
29
|
+
export * from './lib/interactive-tour/interactive-tour.module';
|
|
30
|
+
export * from './lib/json-dialog/json-dialog.module';
|
|
31
|
+
export * from './lib/keyvalue/keyvalue.module';
|
|
32
|
+
export * from './lib/list/list.module';
|
|
33
|
+
export * from './lib/panel/panel.module';
|
|
34
|
+
export * from './lib/sidenav/sidenav.module';
|
|
35
|
+
export * from './lib/spinner/spinner.module';
|
|
36
|
+
export * from './lib/stop-propagation/stop-propagation.module';
|
|
37
|
+
export * from './lib/table/table.module';
|
|
38
|
+
export * from './lib/tool/tool.module';
|
|
39
|
+
export * from './lib/tool/toolbox/toolbox.module';
|
|
40
|
+
export * from './lib/widget/widget.module';
|
|
41
|
+
export * from './lib/widget/widget-outlet/widget-outlet.module';
|
|
42
|
+
export * from './lib/workspace/workspace.module';
|
|
43
|
+
export * from './lib/workspace/workspace-selector/workspace-selector.module';
|
|
44
|
+
export * from './lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module';
|
|
45
|
+
export * from './lib/action';
|
|
46
|
+
export * from './lib/backdrop';
|
|
47
|
+
export * from './lib/badge-icon';
|
|
48
|
+
export * from './lib/clickout';
|
|
49
|
+
export * from './lib/clone';
|
|
50
|
+
export * from './lib/collapsible';
|
|
51
|
+
export * from './lib/confirm-dialog';
|
|
52
|
+
export * from './lib/context-menu';
|
|
53
|
+
export * from './lib/custom-html';
|
|
54
|
+
export * from './lib/drag-drop';
|
|
55
|
+
export * from './lib/dom';
|
|
56
|
+
export * from './lib/dynamic-component';
|
|
57
|
+
export * from './lib/form';
|
|
58
|
+
export * from './lib/home-button';
|
|
59
|
+
export * from './lib/entity';
|
|
60
|
+
export * from './lib/flexible';
|
|
61
|
+
export * from './lib/image';
|
|
62
|
+
export * from './lib/interactive-tour';
|
|
63
|
+
export * from './lib/json-dialog';
|
|
64
|
+
export * from './lib/keyvalue';
|
|
65
|
+
export * from './lib/list';
|
|
66
|
+
export * from './lib/panel';
|
|
67
|
+
export * from './lib/sidenav';
|
|
68
|
+
export * from './lib/spinner';
|
|
69
|
+
export * from './lib/stop-propagation';
|
|
70
|
+
export * from './lib/table';
|
|
71
|
+
export * from './lib/tool';
|
|
72
|
+
export * from './lib/widget';
|
|
73
|
+
export * from './lib/workspace';
|
|
74
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3BhY2thZ2VzL2NvbW1vbi9zcmMvcHVibGljX2FwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyx5Q0FBeUMsQ0FBQztBQUN4RCxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYyw0Q0FBNEMsQ0FBQztBQUMzRCxjQUFjLHdDQUF3QyxDQUFDO0FBQ3ZELGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsa0RBQWtELENBQUM7QUFDakUsY0FBYyw4REFBOEQsQ0FBQztBQUM3RSxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyx5Q0FBeUMsQ0FBQztBQUN4RCxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMscURBQXFELENBQUM7QUFDcEUsY0FBYywrQ0FBK0MsQ0FBQztBQUM5RCxjQUFjLG1FQUFtRSxDQUFDO0FBQ2xGLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxnREFBZ0QsQ0FBQztBQUMvRCxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLGdEQUFnRCxDQUFDO0FBQy9ELGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxpREFBaUQsQ0FBQztBQUNoRSxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsOERBQThELENBQUM7QUFDN0UsY0FBYyx3RUFBd0UsQ0FBQztBQUV2RixjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxXQUFXLENBQUM7QUFDMUIsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGlCQUFpQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBjb21tb25cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2xpYi9hY3Rpb24vYWN0aW9uLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9hY3Rpb24vYWN0aW9uYmFyL2FjdGlvbmJhci5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvYmFja2Ryb3AvYmFja2Ryb3AubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2JhZGdlLWljb24vYmFkZ2UtaWNvbi5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY2xpY2tvdXQvY2xpY2tvdXQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Nsb25lL2Nsb25lLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb2xsYXBzaWJsZS9jb2xsYXBzaWJsZS5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29uZmlybS1kaWFsb2cvY29uZmlybS1kaWFsb2cubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbnRleHQtbWVudS9jb250ZXh0LW1lbnUubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2N1c3RvbS1odG1sL2N1c3RvbS1odG1sLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kb20vZG9tLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kcmFnLWRyb3AvZHJhZy1kcm9wLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9keW5hbWljLWNvbXBvbmVudC9keW5hbWljLWNvbXBvbmVudC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZHluYW1pYy1jb21wb25lbnQvZHluYW1pYy1vdXRsZXQvZHluYW1pYy1vdXRsZXQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ZsZXhpYmxlL2ZsZXhpYmxlLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9mb3JtL2Zvcm0ubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Zvcm0vZm9ybS9mb3JtLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ob21lLWJ1dHRvbi9ob21lLWJ1dHRvbi5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZm9ybS9mb3JtLWZpZWxkL2Zvcm0tZmllbGQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Zvcm0vZm9ybS1ncm91cC9mb3JtLWdyb3VwLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9lbnRpdHkvZW50aXR5Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9lbnRpdHkvZW50aXR5LXNlbGVjdG9yL2VudGl0eS1zZWxlY3Rvci5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZW50aXR5L2VudGl0eS10YWJsZS9lbnRpdHktdGFibGUubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2VudGl0eS9lbnRpdHktdGFibGUtcGFnaW5hdG9yL2VudGl0eS10YWJsZS1wYWdpbmF0b3IubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ltYWdlL2ltYWdlLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnRlcmFjdGl2ZS10b3VyL2ludGVyYWN0aXZlLXRvdXIubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2pzb24tZGlhbG9nL2pzb24tZGlhbG9nLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9rZXl2YWx1ZS9rZXl2YWx1ZS5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbGlzdC9saXN0Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9wYW5lbC9wYW5lbC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2lkZW5hdi9zaWRlbmF2Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zcGlubmVyL3NwaW5uZXIubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3N0b3AtcHJvcGFnYXRpb24vc3RvcC1wcm9wYWdhdGlvbi5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdGFibGUvdGFibGUubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3Rvb2wvdG9vbC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdG9vbC90b29sYm94L3Rvb2xib3gubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3dpZGdldC93aWRnZXQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3dpZGdldC93aWRnZXQtb3V0bGV0L3dpZGdldC1vdXRsZXQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3dvcmtzcGFjZS93b3Jrc3BhY2UubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3dvcmtzcGFjZS93b3Jrc3BhY2Utc2VsZWN0b3Ivd29ya3NwYWNlLXNlbGVjdG9yLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi93b3Jrc3BhY2Uvd29ya3NwYWNlLXdpZGdldC1vdXRsZXQvd29ya3NwYWNlLXdpZGdldC1vdXRsZXQubW9kdWxlJztcblxuZXhwb3J0ICogZnJvbSAnLi9saWIvYWN0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2JhY2tkcm9wJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2JhZGdlLWljb24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY2xpY2tvdXQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY2xvbmUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29sbGFwc2libGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29uZmlybS1kaWFsb2cnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29udGV4dC1tZW51JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2N1c3RvbS1odG1sJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RyYWctZHJvcCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kb20nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZHluYW1pYy1jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZm9ybSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9ob21lLWJ1dHRvbic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9lbnRpdHknO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZmxleGlibGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaW1hZ2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaW50ZXJhY3RpdmUtdG91cic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9qc29uLWRpYWxvZyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9rZXl2YWx1ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9saXN0JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3BhbmVsJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NpZGVuYXYnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc3Bpbm5lcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zdG9wLXByb3BhZ2F0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3RhYmxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3Rvb2wnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvd2lkZ2V0JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3dvcmtzcGFjZSc7XG4iXX0=
|