@igo2/common 1.14.1 → 1.14.3
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 +26 -26
- package/esm2020/lib/action/actionbar/actionbar-item.component.mjs +251 -251
- package/esm2020/lib/action/actionbar/actionbar.component.mjs +369 -369
- package/esm2020/lib/action/actionbar/actionbar.module.mjs +56 -56
- package/esm2020/lib/action/index.mjs +2 -2
- package/esm2020/lib/action/shared/action.enums.mjs +6 -6
- package/esm2020/lib/action/shared/action.interfaces.mjs +1 -1
- package/esm2020/lib/action/shared/index.mjs +3 -3
- package/esm2020/lib/action/shared/store.mjs +7 -7
- package/esm2020/lib/backdrop/backdrop.component.mjs +25 -25
- package/esm2020/lib/backdrop/backdrop.module.mjs +24 -24
- package/esm2020/lib/backdrop/index.mjs +1 -1
- package/esm2020/lib/badge-icon/badge-icon.directive.mjs +141 -125
- package/esm2020/lib/badge-icon/badge-icon.module.mjs +25 -25
- package/esm2020/lib/badge-icon/index.mjs +1 -1
- package/esm2020/lib/clickout/clickout.directive.mjs +31 -31
- package/esm2020/lib/clickout/clickout.module.mjs +23 -23
- package/esm2020/lib/clickout/index.mjs +1 -1
- package/esm2020/lib/clone/clone.module.mjs +23 -23
- package/esm2020/lib/clone/clone.pipe.mjs +23 -23
- package/esm2020/lib/clone/index.mjs +1 -1
- package/esm2020/lib/collapsible/collapse.directive.mjs +54 -54
- package/esm2020/lib/collapsible/collapsible.component.mjs +56 -56
- package/esm2020/lib/collapsible/collapsible.module.mjs +26 -26
- package/esm2020/lib/collapsible/index.mjs +2 -2
- package/esm2020/lib/confirm-dialog/confirm-dialog.component.mjs +43 -43
- package/esm2020/lib/confirm-dialog/confirm-dialog.module.mjs +28 -28
- package/esm2020/lib/confirm-dialog/confirm-dialog.service.mjs +21 -21
- package/esm2020/lib/confirm-dialog/index.mjs +2 -2
- package/esm2020/lib/context-menu/context-menu.directive.mjs +102 -102
- package/esm2020/lib/context-menu/context-menu.module.mjs +24 -24
- package/esm2020/lib/context-menu/index.mjs +2 -2
- package/esm2020/lib/context-menu/long-press.directive.mjs +62 -62
- package/esm2020/lib/custom-html/custom-html.component.mjs +27 -27
- package/esm2020/lib/custom-html/custom-html.module.mjs +46 -46
- package/esm2020/lib/custom-html/custom-html.pipe.mjs +17 -17
- package/esm2020/lib/custom-html/index.mjs +2 -2
- package/esm2020/lib/dom/dom.interfaces.mjs +1 -1
- package/esm2020/lib/dom/dom.module.mjs +22 -22
- package/esm2020/lib/dom/dom.service.mjs +29 -29
- package/esm2020/lib/dom/index.mjs +2 -2
- package/esm2020/lib/drag-drop/drag-drop.directive.mjs +87 -87
- package/esm2020/lib/drag-drop/drag-drop.module.mjs +23 -23
- package/esm2020/lib/drag-drop/index.mjs +1 -1
- package/esm2020/lib/dynamic-component/dynamic-component.module.mjs +30 -30
- package/esm2020/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +121 -121
- package/esm2020/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +27 -27
- package/esm2020/lib/dynamic-component/index.mjs +2 -2
- package/esm2020/lib/dynamic-component/shared/dynamic-component.interfaces.mjs +1 -1
- package/esm2020/lib/dynamic-component/shared/dynamic-component.mjs +173 -173
- package/esm2020/lib/dynamic-component/shared/dynamic-component.service.mjs +28 -28
- package/esm2020/lib/dynamic-component/shared/index.mjs +3 -3
- package/esm2020/lib/entity/entity-selector/entity-selector.component.mjs +193 -193
- package/esm2020/lib/entity/entity-selector/entity-selector.module.mjs +31 -31
- package/esm2020/lib/entity/entity-table/entity-table-row.directive.mjs +136 -136
- package/esm2020/lib/entity/entity-table/entity-table.component.mjs +1368 -1368
- package/esm2020/lib/entity/entity-table/entity-table.module.mjs +101 -101
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +131 -131
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +1 -1
- package/esm2020/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +27 -27
- package/esm2020/lib/entity/entity.module.mjs +30 -30
- package/esm2020/lib/entity/index.mjs +5 -5
- package/esm2020/lib/entity/shared/entity.enums.mjs +27 -27
- package/esm2020/lib/entity/shared/entity.interfaces.mjs +1 -1
- package/esm2020/lib/entity/shared/entity.utils.mjs +66 -66
- package/esm2020/lib/entity/shared/index.mjs +9 -9
- package/esm2020/lib/entity/shared/state.mjs +190 -190
- package/esm2020/lib/entity/shared/store.mjs +287 -287
- package/esm2020/lib/entity/shared/strategies/filter-custom-function.mjs +78 -78
- package/esm2020/lib/entity/shared/strategies/filter-selection.mjs +83 -83
- package/esm2020/lib/entity/shared/strategies/index.mjs +3 -3
- package/esm2020/lib/entity/shared/strategies/strategy.mjs +74 -74
- package/esm2020/lib/entity/shared/transaction.mjs +315 -315
- package/esm2020/lib/entity/shared/view.mjs +314 -314
- package/esm2020/lib/entity/shared/watcher.mjs +119 -119
- package/esm2020/lib/flexible/flexible.component.mjs +147 -147
- package/esm2020/lib/flexible/flexible.module.mjs +23 -23
- package/esm2020/lib/flexible/flexible.type.mjs +1 -1
- package/esm2020/lib/flexible/index.mjs +2 -2
- package/esm2020/lib/form/form/form.component.mjs +116 -116
- package/esm2020/lib/form/form/form.module.mjs +39 -39
- package/esm2020/lib/form/form-field/form-field-select.component.mjs +126 -126
- package/esm2020/lib/form/form-field/form-field-text.component.mjs +103 -103
- package/esm2020/lib/form/form-field/form-field-textarea.component.mjs +104 -104
- package/esm2020/lib/form/form-field/form-field.component.mjs +71 -71
- package/esm2020/lib/form/form-field/form-field.module.mjs +73 -73
- package/esm2020/lib/form/form-field/index.mjs +4 -4
- package/esm2020/lib/form/form-group/form-group.component.mjs +104 -104
- package/esm2020/lib/form/form-group/form-group.module.mjs +39 -39
- package/esm2020/lib/form/form.module.mjs +48 -48
- package/esm2020/lib/form/index.mjs +4 -4
- package/esm2020/lib/form/shared/form-field-component.mjs +6 -6
- package/esm2020/lib/form/shared/form-field.service.mjs +28 -28
- package/esm2020/lib/form/shared/form.interfaces.mjs +1 -1
- package/esm2020/lib/form/shared/form.service.mjs +80 -80
- package/esm2020/lib/form/shared/form.utils.mjs +39 -39
- package/esm2020/lib/form/shared/index.mjs +5 -5
- package/esm2020/lib/home-button/home-button.component.mjs +30 -30
- package/esm2020/lib/home-button/home-button.module.mjs +40 -40
- package/esm2020/lib/home-button/index.mjs +1 -1
- package/esm2020/lib/image/image-error.directive.mjs +34 -34
- package/esm2020/lib/image/image.module.mjs +24 -24
- package/esm2020/lib/image/index.mjs +2 -2
- package/esm2020/lib/image/secure-image.pipe.mjs +58 -58
- package/esm2020/lib/interactive-tour/index.mjs +4 -4
- package/esm2020/lib/interactive-tour/interactive-tour.component.mjs +134 -134
- package/esm2020/lib/interactive-tour/interactive-tour.interface.mjs +1 -1
- package/esm2020/lib/interactive-tour/interactive-tour.loader.mjs +43 -43
- package/esm2020/lib/interactive-tour/interactive-tour.module.mjs +39 -39
- package/esm2020/lib/interactive-tour/interactive-tour.service.mjs +284 -284
- package/esm2020/lib/json-dialog/index.mjs +2 -2
- package/esm2020/lib/json-dialog/json-dialog.component.mjs +108 -108
- package/esm2020/lib/json-dialog/json-dialog.module.mjs +28 -28
- package/esm2020/lib/json-dialog/json-dialog.service.mjs +23 -23
- package/esm2020/lib/keyvalue/index.mjs +1 -1
- package/esm2020/lib/keyvalue/keyvalue.module.mjs +23 -23
- package/esm2020/lib/keyvalue/keyvalue.pipe.mjs +17 -17
- package/esm2020/lib/list/index.mjs +2 -2
- package/esm2020/lib/list/list-item.directive.mjs +164 -164
- package/esm2020/lib/list/list.component.mjs +261 -261
- package/esm2020/lib/list/list.module.mjs +28 -28
- package/esm2020/lib/panel/index.mjs +1 -1
- package/esm2020/lib/panel/panel.component.mjs +58 -58
- package/esm2020/lib/panel/panel.module.mjs +18 -18
- package/esm2020/lib/sidenav/index.mjs +1 -1
- package/esm2020/lib/sidenav/sidenav-shim.directive.mjs +54 -54
- package/esm2020/lib/sidenav/sidenav.module.mjs +23 -23
- package/esm2020/lib/spinner/index.mjs +2 -2
- package/esm2020/lib/spinner/spinner-activity.directive.mjs +46 -46
- package/esm2020/lib/spinner/spinner.component.mjs +34 -34
- package/esm2020/lib/spinner/spinner.module.mjs +20 -20
- package/esm2020/lib/stop-propagation/index.mjs +2 -2
- package/esm2020/lib/stop-propagation/stop-drop-propagation.directive.mjs +21 -21
- package/esm2020/lib/stop-propagation/stop-propagation.directive.mjs +20 -20
- package/esm2020/lib/stop-propagation/stop-propagation.module.mjs +24 -24
- package/esm2020/lib/table/index.mjs +5 -5
- package/esm2020/lib/table/table-action-color.enum.mjs +6 -6
- package/esm2020/lib/table/table-database.mjs +27 -27
- package/esm2020/lib/table/table-datasource.mjs +60 -60
- package/esm2020/lib/table/table-model.interface.mjs +1 -1
- package/esm2020/lib/table/table.component.mjs +296 -296
- package/esm2020/lib/table/table.module.mjs +66 -66
- package/esm2020/lib/tool/index.mjs +2 -2
- package/esm2020/lib/tool/shared/index.mjs +5 -5
- package/esm2020/lib/tool/shared/tool-component.mjs +8 -8
- package/esm2020/lib/tool/shared/tool.interface.mjs +1 -1
- package/esm2020/lib/tool/shared/tool.service.mjs +42 -42
- package/esm2020/lib/tool/shared/toolbox.enums.mjs +6 -6
- package/esm2020/lib/tool/shared/toolbox.mjs +178 -178
- package/esm2020/lib/tool/tool.module.mjs +31 -31
- package/esm2020/lib/tool/toolbox/toolbox.animation.mjs +9 -9
- package/esm2020/lib/tool/toolbox/toolbox.component.mjs +254 -254
- package/esm2020/lib/tool/toolbox/toolbox.module.mjs +35 -35
- package/esm2020/lib/widget/index.mjs +2 -2
- package/esm2020/lib/widget/shared/index.mjs +3 -3
- package/esm2020/lib/widget/shared/widget.interfaces.mjs +1 -1
- package/esm2020/lib/widget/shared/widget.mjs +3 -3
- package/esm2020/lib/widget/shared/widget.service.mjs +19 -19
- package/esm2020/lib/widget/widget-outlet/widget-outlet.component.mjs +115 -115
- package/esm2020/lib/widget/widget-outlet/widget-outlet.module.mjs +31 -31
- package/esm2020/lib/widget/widget.module.mjs +31 -31
- package/esm2020/lib/workspace/index.mjs +3 -3
- package/esm2020/lib/workspace/shared/index.mjs +3 -3
- package/esm2020/lib/workspace/shared/store.mjs +39 -39
- package/esm2020/lib/workspace/shared/workspace.interfaces.mjs +1 -1
- package/esm2020/lib/workspace/shared/workspace.mjs +116 -116
- package/esm2020/lib/workspace/workspace-selector/workspace-selector.component.mjs +50 -50
- package/esm2020/lib/workspace/workspace-selector/workspace-selector.module.mjs +31 -31
- package/esm2020/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +87 -87
- package/esm2020/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +31 -31
- package/esm2020/lib/workspace/workspace.module.mjs +26 -26
- package/esm2020/public_api.mjs +73 -73
- package/fesm2015/igo2-common.mjs +10003 -9987
- package/fesm2015/igo2-common.mjs.map +1 -1
- package/fesm2020/igo2-common.mjs +9306 -9290
- 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 -32
- 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 +10 -10
- 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 +327 -327
- 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
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
import { Component, Input, ChangeDetectionStrategy, HostBinding } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
const _c0 = function (a0) { return { "igo-cursor-pointer": a0 }; };
|
|
5
|
-
function PanelComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
6
|
-
i0.ɵɵelementStart(0, "div", 2)(1, "h3");
|
|
7
|
-
i0.ɵɵprojection(2, 1);
|
|
8
|
-
i0.ɵɵelementStart(3, "div", 3);
|
|
9
|
-
i0.ɵɵtext(4);
|
|
10
|
-
i0.ɵɵprojection(5, 2);
|
|
11
|
-
i0.ɵɵelementEnd();
|
|
12
|
-
i0.ɵɵprojection(6, 3);
|
|
13
|
-
i0.ɵɵelementEnd()();
|
|
14
|
-
} if (rf & 2) {
|
|
15
|
-
const ctx_r0 = i0.ɵɵnextContext();
|
|
16
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(2, _c0, ctx_r0.cursorPointer === true));
|
|
17
|
-
i0.ɵɵadvance(4);
|
|
18
|
-
i0.ɵɵtextInterpolate1(" ", ctx_r0.title, " ");
|
|
19
|
-
} }
|
|
20
|
-
const _c1 = ["*", [["", "panelLeftButton", ""]], [["", "panelHeader", ""]], [["", "panelRightButton", ""]]];
|
|
21
|
-
const _c2 = ["*", "[panelLeftButton]", "[panelHeader]", "[panelRightButton]"];
|
|
22
|
-
export class PanelComponent {
|
|
23
|
-
constructor() {
|
|
24
|
-
this._withHeader = true;
|
|
25
|
-
this.cursorPointer = false;
|
|
26
|
-
}
|
|
27
|
-
get withHeader() {
|
|
28
|
-
return this._withHeader;
|
|
29
|
-
}
|
|
30
|
-
set withHeader(value) {
|
|
31
|
-
this._withHeader = value;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
PanelComponent.ɵfac = function PanelComponent_Factory(t) { return new (t || PanelComponent)(); };
|
|
35
|
-
PanelComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PanelComponent, selectors: [["igo-panel"]], hostVars: 2, hostBindings: function PanelComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
36
|
-
i0.ɵɵclassProp("igo-panel-with-header", ctx.withHeader);
|
|
37
|
-
} }, inputs: { title: "title", withHeader: "withHeader", cursorPointer: "cursorPointer" }, ngContentSelectors: _c2, decls: 3, vars: 1, consts: [["class", "igo-panel-header mat-typography", "title", "", 3, "ngClass", 4, "ngIf"], ["title", "", 1, "igo-panel-content"], ["title", "", 1, "igo-panel-header", "mat-typography", 3, "ngClass"], [1, "igo-panel-title"]], template: function PanelComponent_Template(rf, ctx) { if (rf & 1) {
|
|
38
|
-
i0.ɵɵprojectionDef(_c1);
|
|
39
|
-
i0.ɵɵtemplate(0, PanelComponent_div_0_Template, 7, 4, "div", 0);
|
|
40
|
-
i0.ɵɵelementStart(1, "div", 1);
|
|
41
|
-
i0.ɵɵprojection(2);
|
|
42
|
-
i0.ɵɵelementEnd();
|
|
43
|
-
} if (rf & 2) {
|
|
44
|
-
i0.ɵɵproperty("ngIf", ctx.withHeader);
|
|
45
|
-
} }, dependencies: [i1.NgClass, i1.NgIf], styles: ["[_nghost-%COMP%]{display:block}.igo-panel-header[_ngcontent-%COMP%]{height:46px;padding:3px;text-align:center}.igo-panel-header[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{margin:0;height:40px}.igo-panel-header[_ngcontent-%COMP%] [panelleftbutton]{float:left;margin-right:-40px}.igo-panel-header[_ngcontent-%COMP%] [panelrightbutton]{float:right}.igo-panel-content[_ngcontent-%COMP%]{overflow:auto}.igo-cursor-pointer[_ngcontent-%COMP%]{cursor:pointer}.igo-panel-with-header[_nghost-%COMP%] .igo-panel-content[_ngcontent-%COMP%]{height:calc(100% - 46px)}[_nghost-%COMP%]:not(.igo-panel-with-header) .igo-panel-content[_ngcontent-%COMP%]{height:100%}.igo-panel-title[_ngcontent-%COMP%]{display:block;width:calc(100% - 80px);margin-left:40px;height:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:40px;float:left;font-weight:700;font-size:1.17em}"], changeDetection: 0 });
|
|
46
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PanelComponent, [{
|
|
47
|
-
type: Component,
|
|
48
|
-
args: [{ selector: 'igo-panel', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"withHeader\" class=\"igo-panel-header mat-typography\" title=\"\" [ngClass]=\"{'igo-cursor-pointer': cursorPointer === true}\">\n <h3>\n <ng-content select=\"[panelLeftButton]\"></ng-content>\n <div class=\"igo-panel-title\">\n {{ title }}\n <ng-content select=\"[panelHeader]\"></ng-content>\n </div>\n <ng-content select=\"[panelRightButton]\"></ng-content>\n </h3>\n</div>\n<div class=\"igo-panel-content\" title=\"\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:block}.igo-panel-header{height:46px;padding:3px;text-align:center}.igo-panel-header h3{margin:0;height:40px}.igo-panel-header ::ng-deep [panelleftbutton]{float:left;margin-right:-40px}.igo-panel-header ::ng-deep [panelrightbutton]{float:right}.igo-panel-content{overflow:auto}.igo-cursor-pointer{cursor:pointer}:host.igo-panel-with-header .igo-panel-content{height:calc(100% - 46px)}:host:not(.igo-panel-with-header) .igo-panel-content{height:100%}.igo-panel-title{display:block;width:calc(100% - 80px);margin-left:40px;height:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:40px;float:left;font-weight:700;font-size:1.17em}\n"] }]
|
|
49
|
-
}], null, { title: [{
|
|
50
|
-
type: Input
|
|
51
|
-
}], withHeader: [{
|
|
52
|
-
type: Input
|
|
53
|
-
}, {
|
|
54
|
-
type: HostBinding,
|
|
55
|
-
args: ['class.igo-panel-with-header']
|
|
56
|
-
}], cursorPointer: [{
|
|
57
|
-
type: Input
|
|
58
|
-
}] }); })();
|
|
1
|
+
import { Component, Input, ChangeDetectionStrategy, HostBinding } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
const _c0 = function (a0) { return { "igo-cursor-pointer": a0 }; };
|
|
5
|
+
function PanelComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
6
|
+
i0.ɵɵelementStart(0, "div", 2)(1, "h3");
|
|
7
|
+
i0.ɵɵprojection(2, 1);
|
|
8
|
+
i0.ɵɵelementStart(3, "div", 3);
|
|
9
|
+
i0.ɵɵtext(4);
|
|
10
|
+
i0.ɵɵprojection(5, 2);
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
i0.ɵɵprojection(6, 3);
|
|
13
|
+
i0.ɵɵelementEnd()();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
16
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(2, _c0, ctx_r0.cursorPointer === true));
|
|
17
|
+
i0.ɵɵadvance(4);
|
|
18
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.title, " ");
|
|
19
|
+
} }
|
|
20
|
+
const _c1 = ["*", [["", "panelLeftButton", ""]], [["", "panelHeader", ""]], [["", "panelRightButton", ""]]];
|
|
21
|
+
const _c2 = ["*", "[panelLeftButton]", "[panelHeader]", "[panelRightButton]"];
|
|
22
|
+
export class PanelComponent {
|
|
23
|
+
constructor() {
|
|
24
|
+
this._withHeader = true;
|
|
25
|
+
this.cursorPointer = false;
|
|
26
|
+
}
|
|
27
|
+
get withHeader() {
|
|
28
|
+
return this._withHeader;
|
|
29
|
+
}
|
|
30
|
+
set withHeader(value) {
|
|
31
|
+
this._withHeader = value;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
PanelComponent.ɵfac = function PanelComponent_Factory(t) { return new (t || PanelComponent)(); };
|
|
35
|
+
PanelComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PanelComponent, selectors: [["igo-panel"]], hostVars: 2, hostBindings: function PanelComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
36
|
+
i0.ɵɵclassProp("igo-panel-with-header", ctx.withHeader);
|
|
37
|
+
} }, inputs: { title: "title", withHeader: "withHeader", cursorPointer: "cursorPointer" }, ngContentSelectors: _c2, decls: 3, vars: 1, consts: [["class", "igo-panel-header mat-typography", "title", "", 3, "ngClass", 4, "ngIf"], ["title", "", 1, "igo-panel-content"], ["title", "", 1, "igo-panel-header", "mat-typography", 3, "ngClass"], [1, "igo-panel-title"]], template: function PanelComponent_Template(rf, ctx) { if (rf & 1) {
|
|
38
|
+
i0.ɵɵprojectionDef(_c1);
|
|
39
|
+
i0.ɵɵtemplate(0, PanelComponent_div_0_Template, 7, 4, "div", 0);
|
|
40
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
41
|
+
i0.ɵɵprojection(2);
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
} if (rf & 2) {
|
|
44
|
+
i0.ɵɵproperty("ngIf", ctx.withHeader);
|
|
45
|
+
} }, dependencies: [i1.NgClass, i1.NgIf], styles: ["[_nghost-%COMP%]{display:block}.igo-panel-header[_ngcontent-%COMP%]{height:46px;padding:3px;text-align:center}.igo-panel-header[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{margin:0;height:40px}.igo-panel-header[_ngcontent-%COMP%] [panelleftbutton]{float:left;margin-right:-40px}.igo-panel-header[_ngcontent-%COMP%] [panelrightbutton]{float:right}.igo-panel-content[_ngcontent-%COMP%]{overflow:auto}.igo-cursor-pointer[_ngcontent-%COMP%]{cursor:pointer}.igo-panel-with-header[_nghost-%COMP%] .igo-panel-content[_ngcontent-%COMP%]{height:calc(100% - 46px)}[_nghost-%COMP%]:not(.igo-panel-with-header) .igo-panel-content[_ngcontent-%COMP%]{height:100%}.igo-panel-title[_ngcontent-%COMP%]{display:block;width:calc(100% - 80px);margin-left:40px;height:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:40px;float:left;font-weight:700;font-size:1.17em}"], changeDetection: 0 });
|
|
46
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PanelComponent, [{
|
|
47
|
+
type: Component,
|
|
48
|
+
args: [{ selector: 'igo-panel', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"withHeader\" class=\"igo-panel-header mat-typography\" title=\"\" [ngClass]=\"{'igo-cursor-pointer': cursorPointer === true}\">\n <h3>\n <ng-content select=\"[panelLeftButton]\"></ng-content>\n <div class=\"igo-panel-title\">\n {{ title }}\n <ng-content select=\"[panelHeader]\"></ng-content>\n </div>\n <ng-content select=\"[panelRightButton]\"></ng-content>\n </h3>\n</div>\n<div class=\"igo-panel-content\" title=\"\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:block}.igo-panel-header{height:46px;padding:3px;text-align:center}.igo-panel-header h3{margin:0;height:40px}.igo-panel-header ::ng-deep [panelleftbutton]{float:left;margin-right:-40px}.igo-panel-header ::ng-deep [panelrightbutton]{float:right}.igo-panel-content{overflow:auto}.igo-cursor-pointer{cursor:pointer}:host.igo-panel-with-header .igo-panel-content{height:calc(100% - 46px)}:host:not(.igo-panel-with-header) .igo-panel-content{height:100%}.igo-panel-title{display:block;width:calc(100% - 80px);margin-left:40px;height:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:40px;float:left;font-weight:700;font-size:1.17em}\n"] }]
|
|
49
|
+
}], null, { title: [{
|
|
50
|
+
type: Input
|
|
51
|
+
}], withHeader: [{
|
|
52
|
+
type: Input
|
|
53
|
+
}, {
|
|
54
|
+
type: HostBinding,
|
|
55
|
+
args: ['class.igo-panel-with-header']
|
|
56
|
+
}], cursorPointer: [{
|
|
57
|
+
type: Input
|
|
58
|
+
}] }); })();
|
|
59
59
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFuZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvcGFuZWwvcGFuZWwuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvcGFuZWwvcGFuZWwuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFDVCxLQUFLLEVBQ0wsdUJBQXVCLEVBQ3ZCLFdBQVcsRUFDWixNQUFNLGVBQWUsQ0FBQzs7Ozs7SUNMdkIsOEJBQW9JLFNBQUE7SUFFaEkscUJBQW9EO0lBQ3BELDhCQUE2QjtJQUMzQixZQUNBO0lBQUEscUJBQWdEO0lBQ2xELGlCQUFNO0lBQ04scUJBQXFEO0lBQ3ZELGlCQUFLLEVBQUE7OztJQVJrRSxtRkFBMEQ7SUFJN0gsZUFDQTtJQURBLDZDQUNBOzs7O0FEUU4sTUFBTSxPQUFPLGNBQWM7SUFOM0I7UUFpQlUsZ0JBQVcsR0FBRyxJQUFJLENBQUM7UUFFbEIsa0JBQWEsR0FBWSxLQUFLLENBQUM7S0FDekM7SUFYQyxJQUVJLFVBQVU7UUFDWixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUM7SUFDMUIsQ0FBQztJQUNELElBQUksVUFBVSxDQUFDLEtBQWM7UUFDM0IsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7SUFDM0IsQ0FBQzs7NEVBVlUsY0FBYztpRUFBZCxjQUFjOzs7O1FDYjNCLCtEQVNNO1FBQ04sOEJBQXdDO1FBQ3RDLGtCQUF5QjtRQUMzQixpQkFBTTs7UUFaQSxxQ0FBZ0I7O3VGRGFULGNBQWM7Y0FOMUIsU0FBUzsyQkFDRSxXQUFXLG1CQUdKLHVCQUF1QixDQUFDLE1BQU07Z0JBR3RDLEtBQUs7a0JBQWIsS0FBSztZQUlGLFVBQVU7a0JBRmIsS0FBSzs7a0JBQ0wsV0FBVzttQkFBQyw2QkFBNkI7WUFTakMsYUFBYTtrQkFBckIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENvbXBvbmVudCxcbiAgSW5wdXQsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBIb3N0QmluZGluZ1xufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaWdvLXBhbmVsJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3BhbmVsLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFuZWwuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgUGFuZWxDb21wb25lbnQge1xuICBASW5wdXQoKSB0aXRsZTogc3RyaW5nO1xuXG4gIEBJbnB1dCgpXG4gIEBIb3N0QmluZGluZygnY2xhc3MuaWdvLXBhbmVsLXdpdGgtaGVhZGVyJylcbiAgZ2V0IHdpdGhIZWFkZXIoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX3dpdGhIZWFkZXI7XG4gIH1cbiAgc2V0IHdpdGhIZWFkZXIodmFsdWU6IGJvb2xlYW4pIHtcbiAgICB0aGlzLl93aXRoSGVhZGVyID0gdmFsdWU7XG4gIH1cbiAgcHJpdmF0ZSBfd2l0aEhlYWRlciA9IHRydWU7XG5cbiAgQElucHV0KCkgY3Vyc29yUG9pbnRlcjogYm9vbGVhbiA9IGZhbHNlO1xufVxuIiwiPGRpdiAqbmdJZj1cIndpdGhIZWFkZXJcIiBjbGFzcz1cImlnby1wYW5lbC1oZWFkZXIgbWF0LXR5cG9ncmFwaHlcIiB0aXRsZT1cIlwiIFtuZ0NsYXNzXT1cInsnaWdvLWN1cnNvci1wb2ludGVyJzogY3Vyc29yUG9pbnRlciA9PT0gdHJ1ZX1cIj5cbiAgPGgzPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltwYW5lbExlZnRCdXR0b25dXCI+PC9uZy1jb250ZW50PlxuICAgIDxkaXYgY2xhc3M9XCJpZ28tcGFuZWwtdGl0bGVcIj5cbiAgICAgIHt7IHRpdGxlIH19XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbcGFuZWxIZWFkZXJdXCI+PC9uZy1jb250ZW50PlxuICAgIDwvZGl2PlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltwYW5lbFJpZ2h0QnV0dG9uXVwiPjwvbmctY29udGVudD5cbiAgPC9oMz5cbjwvZGl2PlxuPGRpdiBjbGFzcz1cImlnby1wYW5lbC1jb250ZW50XCIgdGl0bGU9XCJcIj5cbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9kaXY+XG4iXX0=
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { PanelComponent } from './panel.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class IgoPanelModule {
|
|
6
|
-
}
|
|
7
|
-
IgoPanelModule.ɵfac = function IgoPanelModule_Factory(t) { return new (t || IgoPanelModule)(); };
|
|
8
|
-
IgoPanelModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoPanelModule });
|
|
9
|
-
IgoPanelModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule] });
|
|
10
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoPanelModule, [{
|
|
11
|
-
type: NgModule,
|
|
12
|
-
args: [{
|
|
13
|
-
imports: [CommonModule],
|
|
14
|
-
exports: [PanelComponent],
|
|
15
|
-
declarations: [PanelComponent]
|
|
16
|
-
}]
|
|
17
|
-
}], null, null); })();
|
|
18
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoPanelModule, { declarations: [PanelComponent], imports: [CommonModule], exports: [PanelComponent] }); })();
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { PanelComponent } from './panel.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class IgoPanelModule {
|
|
6
|
+
}
|
|
7
|
+
IgoPanelModule.ɵfac = function IgoPanelModule_Factory(t) { return new (t || IgoPanelModule)(); };
|
|
8
|
+
IgoPanelModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoPanelModule });
|
|
9
|
+
IgoPanelModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule] });
|
|
10
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoPanelModule, [{
|
|
11
|
+
type: NgModule,
|
|
12
|
+
args: [{
|
|
13
|
+
imports: [CommonModule],
|
|
14
|
+
exports: [PanelComponent],
|
|
15
|
+
declarations: [PanelComponent]
|
|
16
|
+
}]
|
|
17
|
+
}], null, null); })();
|
|
18
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoPanelModule, { declarations: [PanelComponent], imports: [CommonModule], exports: [PanelComponent] }); })();
|
|
19
19
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFuZWwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvcGFuZWwvcGFuZWwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7QUFPbkQsTUFBTSxPQUFPLGNBQWM7OzRFQUFkLGNBQWM7Z0VBQWQsY0FBYztvRUFKZixZQUFZO3VGQUlYLGNBQWM7Y0FMMUIsUUFBUTtlQUFDO2dCQUNSLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztnQkFDdkIsT0FBTyxFQUFFLENBQUMsY0FBYyxDQUFDO2dCQUN6QixZQUFZLEVBQUUsQ0FBQyxjQUFjLENBQUM7YUFDL0I7O3dGQUNZLGNBQWMsbUJBRlYsY0FBYyxhQUZuQixZQUFZLGFBQ1osY0FBYyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgUGFuZWxDb21wb25lbnQgfSBmcm9tICcuL3BhbmVsLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBleHBvcnRzOiBbUGFuZWxDb21wb25lbnRdLFxuICBkZWNsYXJhdGlvbnM6IFtQYW5lbENvbXBvbmVudF1cbn0pXG5leHBvcnQgY2xhc3MgSWdvUGFuZWxNb2R1bGUge31cbiJdfQ==
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './sidenav-shim.directive';
|
|
1
|
+
export * from './sidenav-shim.directive';
|
|
2
2
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9zaWRlbmF2L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NpZGVuYXYtc2hpbS5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import { Directive, Self, HostListener } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/material/sidenav";
|
|
4
|
-
/**
|
|
5
|
-
* <igoSidenavShim> directive.
|
|
6
|
-
*
|
|
7
|
-
* This directive prevents a material sidenav with mode="side"
|
|
8
|
-
* from focusing an element after it's closed
|
|
9
|
-
*/
|
|
10
|
-
export class SidenavShimDirective {
|
|
11
|
-
constructor(component, renderer) {
|
|
12
|
-
this.renderer = renderer;
|
|
13
|
-
}
|
|
14
|
-
onOpen() {
|
|
15
|
-
this.focusedElement = document.activeElement;
|
|
16
|
-
}
|
|
17
|
-
onCloseStart() {
|
|
18
|
-
const focusedElement = document.activeElement;
|
|
19
|
-
if (focusedElement !== this.focusedElement) {
|
|
20
|
-
this.blurElement = this.focusedElement;
|
|
21
|
-
}
|
|
22
|
-
else {
|
|
23
|
-
this.blurElement = undefined;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
onClose() {
|
|
27
|
-
if (this.blurElement) {
|
|
28
|
-
this.renderer.selectRootElement(this.blurElement).blur();
|
|
29
|
-
}
|
|
30
|
-
this.blurElement = undefined;
|
|
31
|
-
this.focusedElement = undefined;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
SidenavShimDirective.ɵfac = function SidenavShimDirective_Factory(t) { return new (t || SidenavShimDirective)(i0.ɵɵdirectiveInject(i1.MatSidenav, 2), i0.ɵɵdirectiveInject(i0.Renderer2)); };
|
|
35
|
-
SidenavShimDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: SidenavShimDirective, selectors: [["", "igoSidenavShim", ""]], hostBindings: function SidenavShimDirective_HostBindings(rf, ctx) { if (rf & 1) {
|
|
36
|
-
i0.ɵɵlistener("open", function SidenavShimDirective_open_HostBindingHandler($event) { return ctx.onOpen($event); })("close-start", function SidenavShimDirective_close_start_HostBindingHandler($event) { return ctx.onCloseStart($event); })("close", function SidenavShimDirective_close_HostBindingHandler($event) { return ctx.onClose($event); });
|
|
37
|
-
} } });
|
|
38
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SidenavShimDirective, [{
|
|
39
|
-
type: Directive,
|
|
40
|
-
args: [{
|
|
41
|
-
selector: '[igoSidenavShim]'
|
|
42
|
-
}]
|
|
43
|
-
}], function () { return [{ type: i1.MatSidenav, decorators: [{
|
|
44
|
-
type: Self
|
|
45
|
-
}] }, { type: i0.Renderer2 }]; }, { onOpen: [{
|
|
46
|
-
type: HostListener,
|
|
47
|
-
args: ['open', ['$event']]
|
|
48
|
-
}], onCloseStart: [{
|
|
49
|
-
type: HostListener,
|
|
50
|
-
args: ['close-start', ['$event']]
|
|
51
|
-
}], onClose: [{
|
|
52
|
-
type: HostListener,
|
|
53
|
-
args: ['close', ['$event']]
|
|
54
|
-
}] }); })();
|
|
1
|
+
import { Directive, Self, HostListener } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/material/sidenav";
|
|
4
|
+
/**
|
|
5
|
+
* <igoSidenavShim> directive.
|
|
6
|
+
*
|
|
7
|
+
* This directive prevents a material sidenav with mode="side"
|
|
8
|
+
* from focusing an element after it's closed
|
|
9
|
+
*/
|
|
10
|
+
export class SidenavShimDirective {
|
|
11
|
+
constructor(component, renderer) {
|
|
12
|
+
this.renderer = renderer;
|
|
13
|
+
}
|
|
14
|
+
onOpen() {
|
|
15
|
+
this.focusedElement = document.activeElement;
|
|
16
|
+
}
|
|
17
|
+
onCloseStart() {
|
|
18
|
+
const focusedElement = document.activeElement;
|
|
19
|
+
if (focusedElement !== this.focusedElement) {
|
|
20
|
+
this.blurElement = this.focusedElement;
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
this.blurElement = undefined;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
onClose() {
|
|
27
|
+
if (this.blurElement) {
|
|
28
|
+
this.renderer.selectRootElement(this.blurElement).blur();
|
|
29
|
+
}
|
|
30
|
+
this.blurElement = undefined;
|
|
31
|
+
this.focusedElement = undefined;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
SidenavShimDirective.ɵfac = function SidenavShimDirective_Factory(t) { return new (t || SidenavShimDirective)(i0.ɵɵdirectiveInject(i1.MatSidenav, 2), i0.ɵɵdirectiveInject(i0.Renderer2)); };
|
|
35
|
+
SidenavShimDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: SidenavShimDirective, selectors: [["", "igoSidenavShim", ""]], hostBindings: function SidenavShimDirective_HostBindings(rf, ctx) { if (rf & 1) {
|
|
36
|
+
i0.ɵɵlistener("open", function SidenavShimDirective_open_HostBindingHandler($event) { return ctx.onOpen($event); })("close-start", function SidenavShimDirective_close_start_HostBindingHandler($event) { return ctx.onCloseStart($event); })("close", function SidenavShimDirective_close_HostBindingHandler($event) { return ctx.onClose($event); });
|
|
37
|
+
} } });
|
|
38
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SidenavShimDirective, [{
|
|
39
|
+
type: Directive,
|
|
40
|
+
args: [{
|
|
41
|
+
selector: '[igoSidenavShim]'
|
|
42
|
+
}]
|
|
43
|
+
}], function () { return [{ type: i1.MatSidenav, decorators: [{
|
|
44
|
+
type: Self
|
|
45
|
+
}] }, { type: i0.Renderer2 }]; }, { onOpen: [{
|
|
46
|
+
type: HostListener,
|
|
47
|
+
args: ['open', ['$event']]
|
|
48
|
+
}], onCloseStart: [{
|
|
49
|
+
type: HostListener,
|
|
50
|
+
args: ['close-start', ['$event']]
|
|
51
|
+
}], onClose: [{
|
|
52
|
+
type: HostListener,
|
|
53
|
+
args: ['close', ['$event']]
|
|
54
|
+
}] }); })();
|
|
55
55
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZW5hdi1zaGltLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbW1vbi9zcmMvbGliL3NpZGVuYXYvc2lkZW5hdi1zaGltLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxZQUFZLEVBQWEsTUFBTSxlQUFlLENBQUM7OztBQUd6RTs7Ozs7R0FLRztBQUlILE1BQU0sT0FBTyxvQkFBb0I7SUE2Qi9CLFlBQW9CLFNBQXFCLEVBQVUsUUFBbUI7UUFBbkIsYUFBUSxHQUFSLFFBQVEsQ0FBVztJQUFHLENBQUM7SUF4QjFFLE1BQU07UUFDSixJQUFJLENBQUMsY0FBYyxHQUFHLFFBQVEsQ0FBQyxhQUE0QixDQUFDO0lBQzlELENBQUM7SUFHRCxZQUFZO1FBQ1YsTUFBTSxjQUFjLEdBQUcsUUFBUSxDQUFDLGFBQTRCLENBQUM7UUFDN0QsSUFBSSxjQUFjLEtBQUssSUFBSSxDQUFDLGNBQWMsRUFBRTtZQUMxQyxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUM7U0FDeEM7YUFBTTtZQUNMLElBQUksQ0FBQyxXQUFXLEdBQUcsU0FBUyxDQUFDO1NBQzlCO0lBQ0gsQ0FBQztJQUdELE9BQU87UUFDTCxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUU7WUFDcEIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUM7U0FDMUQ7UUFFRCxJQUFJLENBQUMsV0FBVyxHQUFHLFNBQVMsQ0FBQztRQUM3QixJQUFJLENBQUMsY0FBYyxHQUFHLFNBQVMsQ0FBQztJQUNsQyxDQUFDOzt3RkEzQlUsb0JBQW9CO3VFQUFwQixvQkFBb0I7cUdBQXBCLGtCQUFjLGtHQUFkLHdCQUFvQixzRkFBcEIsbUJBQWU7O3VGQUFmLG9CQUFvQjtjQUhoQyxTQUFTO2VBQUM7Z0JBQ1QsUUFBUSxFQUFFLGtCQUFrQjthQUM3Qjs7c0JBOEJjLElBQUk7Z0RBeEJqQixNQUFNO2tCQURMLFlBQVk7bUJBQUMsTUFBTSxFQUFFLENBQUMsUUFBUSxDQUFDO1lBTWhDLFlBQVk7a0JBRFgsWUFBWTttQkFBQyxhQUFhLEVBQUUsQ0FBQyxRQUFRLENBQUM7WUFXdkMsT0FBTztrQkFETixZQUFZO21CQUFDLE9BQU8sRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgU2VsZiwgSG9zdExpc3RlbmVyLCBSZW5kZXJlcjIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE1hdFNpZGVuYXYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zaWRlbmF2JztcblxuLyoqXG4gKiA8aWdvU2lkZW5hdlNoaW0+IGRpcmVjdGl2ZS5cbiAqXG4gKiBUaGlzIGRpcmVjdGl2ZSBwcmV2ZW50cyBhIG1hdGVyaWFsIHNpZGVuYXYgd2l0aCBtb2RlPVwic2lkZVwiXG4gKiBmcm9tIGZvY3VzaW5nIGFuIGVsZW1lbnQgYWZ0ZXIgaXQncyBjbG9zZWRcbiAqL1xuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2lnb1NpZGVuYXZTaGltXSdcbn0pXG5leHBvcnQgY2xhc3MgU2lkZW5hdlNoaW1EaXJlY3RpdmUge1xuICBwcml2YXRlIGZvY3VzZWRFbGVtZW50OiBIVE1MRWxlbWVudDtcbiAgcHJpdmF0ZSBibHVyRWxlbWVudDogSFRNTEVsZW1lbnQ7XG5cbiAgQEhvc3RMaXN0ZW5lcignb3BlbicsIFsnJGV2ZW50J10pXG4gIG9uT3BlbigpIHtcbiAgICB0aGlzLmZvY3VzZWRFbGVtZW50ID0gZG9jdW1lbnQuYWN0aXZlRWxlbWVudCBhcyBIVE1MRWxlbWVudDtcbiAgfVxuXG4gIEBIb3N0TGlzdGVuZXIoJ2Nsb3NlLXN0YXJ0JywgWyckZXZlbnQnXSlcbiAgb25DbG9zZVN0YXJ0KCkge1xuICAgIGNvbnN0IGZvY3VzZWRFbGVtZW50ID0gZG9jdW1lbnQuYWN0aXZlRWxlbWVudCBhcyBIVE1MRWxlbWVudDtcbiAgICBpZiAoZm9jdXNlZEVsZW1lbnQgIT09IHRoaXMuZm9jdXNlZEVsZW1lbnQpIHtcbiAgICAgIHRoaXMuYmx1ckVsZW1lbnQgPSB0aGlzLmZvY3VzZWRFbGVtZW50O1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmJsdXJFbGVtZW50ID0gdW5kZWZpbmVkO1xuICAgIH1cbiAgfVxuXG4gIEBIb3N0TGlzdGVuZXIoJ2Nsb3NlJywgWyckZXZlbnQnXSlcbiAgb25DbG9zZSgpIHtcbiAgICBpZiAodGhpcy5ibHVyRWxlbWVudCkge1xuICAgICAgdGhpcy5yZW5kZXJlci5zZWxlY3RSb290RWxlbWVudCh0aGlzLmJsdXJFbGVtZW50KS5ibHVyKCk7XG4gICAgfVxuXG4gICAgdGhpcy5ibHVyRWxlbWVudCA9IHVuZGVmaW5lZDtcbiAgICB0aGlzLmZvY3VzZWRFbGVtZW50ID0gdW5kZWZpbmVkO1xuICB9XG5cbiAgY29uc3RydWN0b3IoQFNlbGYoKSBjb21wb25lbnQ6IE1hdFNpZGVuYXYsIHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMikge31cbn1cbiJdfQ==
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { SidenavShimDirective } from './sidenav-shim.directive';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class IgoSidenavModule {
|
|
5
|
-
static forRoot() {
|
|
6
|
-
return {
|
|
7
|
-
ngModule: IgoSidenavModule,
|
|
8
|
-
providers: []
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
IgoSidenavModule.ɵfac = function IgoSidenavModule_Factory(t) { return new (t || IgoSidenavModule)(); };
|
|
13
|
-
IgoSidenavModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoSidenavModule });
|
|
14
|
-
IgoSidenavModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
|
|
15
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoSidenavModule, [{
|
|
16
|
-
type: NgModule,
|
|
17
|
-
args: [{
|
|
18
|
-
imports: [],
|
|
19
|
-
declarations: [SidenavShimDirective],
|
|
20
|
-
exports: [SidenavShimDirective]
|
|
21
|
-
}]
|
|
22
|
-
}], null, null); })();
|
|
23
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoSidenavModule, { declarations: [SidenavShimDirective], exports: [SidenavShimDirective] }); })();
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { SidenavShimDirective } from './sidenav-shim.directive';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class IgoSidenavModule {
|
|
5
|
+
static forRoot() {
|
|
6
|
+
return {
|
|
7
|
+
ngModule: IgoSidenavModule,
|
|
8
|
+
providers: []
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
IgoSidenavModule.ɵfac = function IgoSidenavModule_Factory(t) { return new (t || IgoSidenavModule)(); };
|
|
13
|
+
IgoSidenavModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoSidenavModule });
|
|
14
|
+
IgoSidenavModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
|
|
15
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoSidenavModule, [{
|
|
16
|
+
type: NgModule,
|
|
17
|
+
args: [{
|
|
18
|
+
imports: [],
|
|
19
|
+
declarations: [SidenavShimDirective],
|
|
20
|
+
exports: [SidenavShimDirective]
|
|
21
|
+
}]
|
|
22
|
+
}], null, null); })();
|
|
23
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoSidenavModule, { declarations: [SidenavShimDirective], exports: [SidenavShimDirective] }); })();
|
|
24
24
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZW5hdi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9zaWRlbmF2L3NpZGVuYXYubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQXVCLE1BQU0sZUFBZSxDQUFDO0FBQzlELE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDOztBQU9oRSxNQUFNLE9BQU8sZ0JBQWdCO0lBQzNCLE1BQU0sQ0FBQyxPQUFPO1FBQ1osT0FBTztZQUNMLFFBQVEsRUFBRSxnQkFBZ0I7WUFDMUIsU0FBUyxFQUFFLEVBQUU7U0FDZCxDQUFDO0lBQ0osQ0FBQzs7Z0ZBTlUsZ0JBQWdCO2tFQUFoQixnQkFBZ0I7O3VGQUFoQixnQkFBZ0I7Y0FMNUIsUUFBUTtlQUFDO2dCQUNSLE9BQU8sRUFBRSxFQUFFO2dCQUNYLFlBQVksRUFBRSxDQUFDLG9CQUFvQixDQUFDO2dCQUNwQyxPQUFPLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQzthQUNoQzs7d0ZBQ1ksZ0JBQWdCLG1CQUhaLG9CQUFvQixhQUN6QixvQkFBb0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgTW9kdWxlV2l0aFByb3ZpZGVycyB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU2lkZW5hdlNoaW1EaXJlY3RpdmUgfSBmcm9tICcuL3NpZGVuYXYtc2hpbS5kaXJlY3RpdmUnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXSxcbiAgZGVjbGFyYXRpb25zOiBbU2lkZW5hdlNoaW1EaXJlY3RpdmVdLFxuICBleHBvcnRzOiBbU2lkZW5hdlNoaW1EaXJlY3RpdmVdXG59KVxuZXhwb3J0IGNsYXNzIElnb1NpZGVuYXZNb2R1bGUge1xuICBzdGF0aWMgZm9yUm9vdCgpOiBNb2R1bGVXaXRoUHJvdmlkZXJzPElnb1NpZGVuYXZNb2R1bGU+IHtcbiAgICByZXR1cm4ge1xuICAgICAgbmdNb2R1bGU6IElnb1NpZGVuYXZNb2R1bGUsXG4gICAgICBwcm92aWRlcnM6IFtdXG4gICAgfTtcbiAgfVxufVxuIl19
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './spinner.component';
|
|
2
|
-
export * from './spinner-activity.directive';
|
|
1
|
+
export * from './spinner.component';
|
|
2
|
+
export * from './spinner-activity.directive';
|
|
3
3
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9zcGlubmVyL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyw4QkFBOEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc3Bpbm5lci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9zcGlubmVyLWFjdGl2aXR5LmRpcmVjdGl2ZSc7XG4iXX0=
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
import { Directive, Self } from '@angular/core';
|
|
2
|
-
import { debounceTime } from 'rxjs/operators';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./spinner.component";
|
|
5
|
-
import * as i2 from "@igo2/core";
|
|
6
|
-
/**
|
|
7
|
-
* A directive to bind a SpinnerComponent to the activity service.
|
|
8
|
-
* The activity service tracks any HTTP request and this directive
|
|
9
|
-
* will display the spinner it's attached to when the activity counter
|
|
10
|
-
* is greater than 0.
|
|
11
|
-
*/
|
|
12
|
-
export class SpinnerActivityDirective {
|
|
13
|
-
constructor(spinner, activityService) {
|
|
14
|
-
this.spinner = spinner;
|
|
15
|
-
this.activityService = activityService;
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* Subscribe to the activity service counter and display the spinner
|
|
19
|
-
* when it's is greater than 0.
|
|
20
|
-
* @internal
|
|
21
|
-
*/
|
|
22
|
-
ngOnInit() {
|
|
23
|
-
this.counter$$ = this.activityService.counter$
|
|
24
|
-
.pipe(debounceTime(50))
|
|
25
|
-
.subscribe((count) => {
|
|
26
|
-
count > 0 ? this.spinner.show() : this.spinner.hide();
|
|
27
|
-
});
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Unsubcribe to the activity service counter.
|
|
31
|
-
* @internal
|
|
32
|
-
*/
|
|
33
|
-
ngOnDestroy() {
|
|
34
|
-
this.counter$$.unsubscribe();
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
SpinnerActivityDirective.ɵfac = function SpinnerActivityDirective_Factory(t) { return new (t || SpinnerActivityDirective)(i0.ɵɵdirectiveInject(i1.SpinnerComponent, 2), i0.ɵɵdirectiveInject(i2.ActivityService)); };
|
|
38
|
-
SpinnerActivityDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: SpinnerActivityDirective, selectors: [["", "igoSpinnerActivity", ""]] });
|
|
39
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SpinnerActivityDirective, [{
|
|
40
|
-
type: Directive,
|
|
41
|
-
args: [{
|
|
42
|
-
selector: '[igoSpinnerActivity]'
|
|
43
|
-
}]
|
|
44
|
-
}], function () { return [{ type: i1.SpinnerComponent, decorators: [{
|
|
45
|
-
type: Self
|
|
46
|
-
}] }, { type: i2.ActivityService }]; }, null); })();
|
|
1
|
+
import { Directive, Self } from '@angular/core';
|
|
2
|
+
import { debounceTime } from 'rxjs/operators';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./spinner.component";
|
|
5
|
+
import * as i2 from "@igo2/core";
|
|
6
|
+
/**
|
|
7
|
+
* A directive to bind a SpinnerComponent to the activity service.
|
|
8
|
+
* The activity service tracks any HTTP request and this directive
|
|
9
|
+
* will display the spinner it's attached to when the activity counter
|
|
10
|
+
* is greater than 0.
|
|
11
|
+
*/
|
|
12
|
+
export class SpinnerActivityDirective {
|
|
13
|
+
constructor(spinner, activityService) {
|
|
14
|
+
this.spinner = spinner;
|
|
15
|
+
this.activityService = activityService;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Subscribe to the activity service counter and display the spinner
|
|
19
|
+
* when it's is greater than 0.
|
|
20
|
+
* @internal
|
|
21
|
+
*/
|
|
22
|
+
ngOnInit() {
|
|
23
|
+
this.counter$$ = this.activityService.counter$
|
|
24
|
+
.pipe(debounceTime(50))
|
|
25
|
+
.subscribe((count) => {
|
|
26
|
+
count > 0 ? this.spinner.show() : this.spinner.hide();
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Unsubcribe to the activity service counter.
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
33
|
+
ngOnDestroy() {
|
|
34
|
+
this.counter$$.unsubscribe();
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
SpinnerActivityDirective.ɵfac = function SpinnerActivityDirective_Factory(t) { return new (t || SpinnerActivityDirective)(i0.ɵɵdirectiveInject(i1.SpinnerComponent, 2), i0.ɵɵdirectiveInject(i2.ActivityService)); };
|
|
38
|
+
SpinnerActivityDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: SpinnerActivityDirective, selectors: [["", "igoSpinnerActivity", ""]] });
|
|
39
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SpinnerActivityDirective, [{
|
|
40
|
+
type: Directive,
|
|
41
|
+
args: [{
|
|
42
|
+
selector: '[igoSpinnerActivity]'
|
|
43
|
+
}]
|
|
44
|
+
}], function () { return [{ type: i1.SpinnerComponent, decorators: [{
|
|
45
|
+
type: Self
|
|
46
|
+
}] }, { type: i2.ActivityService }]; }, null); })();
|
|
47
47
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Bpbm5lci1hY3Rpdml0eS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9zcGlubmVyL3NwaW5uZXItYWN0aXZpdHkuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsSUFBSSxFQUFxQixNQUFNLGVBQWUsQ0FBQztBQUVuRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7QUFLOUM7Ozs7O0dBS0c7QUFJSCxNQUFNLE9BQU8sd0JBQXdCO0lBTW5DLFlBQ2tCLE9BQXlCLEVBQ2pDLGVBQWdDO1FBRHhCLFlBQU8sR0FBUCxPQUFPLENBQWtCO1FBQ2pDLG9CQUFlLEdBQWYsZUFBZSxDQUFpQjtJQUN2QyxDQUFDO0lBRUo7Ozs7T0FJRztJQUNILFFBQVE7UUFDTixJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsUUFBUTthQUMzQyxJQUFJLENBQUMsWUFBWSxDQUFDLEVBQUUsQ0FBQyxDQUFDO2FBQ3RCLFNBQVMsQ0FBQyxDQUFDLEtBQWEsRUFBRSxFQUFFO1lBQzNCLEtBQUssR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDeEQsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsV0FBVztRQUNULElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVyxFQUFFLENBQUM7SUFDL0IsQ0FBQzs7Z0dBOUJVLHdCQUF3QjsyRUFBeEIsd0JBQXdCO3VGQUF4Qix3QkFBd0I7Y0FIcEMsU0FBUztlQUFDO2dCQUNULFFBQVEsRUFBRSxzQkFBc0I7YUFDakM7O3NCQVFJLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIFNlbGYsIE9uSW5pdCwgT25EZXN0cm95IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdWJzY3JpcHRpb24gfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IGRlYm91bmNlVGltZSB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcblxuaW1wb3J0IHsgQWN0aXZpdHlTZXJ2aWNlIH0gZnJvbSAnQGlnbzIvY29yZSc7XG5pbXBvcnQgeyBTcGlubmVyQ29tcG9uZW50IH0gZnJvbSAnLi9zcGlubmVyLmNvbXBvbmVudCc7XG5cbi8qKlxuICogQSBkaXJlY3RpdmUgdG8gYmluZCBhIFNwaW5uZXJDb21wb25lbnQgdG8gdGhlIGFjdGl2aXR5IHNlcnZpY2UuXG4gKiBUaGUgYWN0aXZpdHkgc2VydmljZSB0cmFja3MgYW55IEhUVFAgcmVxdWVzdCBhbmQgdGhpcyBkaXJlY3RpdmVcbiAqIHdpbGwgZGlzcGxheSB0aGUgc3Bpbm5lciBpdCdzIGF0dGFjaGVkIHRvIHdoZW4gdGhlIGFjdGl2aXR5IGNvdW50ZXJcbiAqIGlzIGdyZWF0ZXIgdGhhbiAwLlxuICovXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbaWdvU3Bpbm5lckFjdGl2aXR5XSdcbn0pXG5leHBvcnQgY2xhc3MgU3Bpbm5lckFjdGl2aXR5RGlyZWN0aXZlIGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICAvKipcbiAgICogU3Vic2NyaXB0aW9uIHRvIHRoZSBhY3Rpdml0eSBzZXJ2aWNlIGNvdW50ZXJcbiAgICovXG4gIHByaXZhdGUgY291bnRlciQkOiBTdWJzY3JpcHRpb247XG5cbiAgY29uc3RydWN0b3IoXG4gICAgQFNlbGYoKSBwcml2YXRlIHNwaW5uZXI6IFNwaW5uZXJDb21wb25lbnQsXG4gICAgcHJpdmF0ZSBhY3Rpdml0eVNlcnZpY2U6IEFjdGl2aXR5U2VydmljZVxuICApIHt9XG5cbiAgLyoqXG4gICAqIFN1YnNjcmliZSB0byB0aGUgYWN0aXZpdHkgc2VydmljZSBjb3VudGVyIGFuZCBkaXNwbGF5IHRoZSBzcGlubmVyXG4gICAqIHdoZW4gaXQncyBpcyBncmVhdGVyIHRoYW4gMC5cbiAgICogQGludGVybmFsXG4gICAqL1xuICBuZ09uSW5pdCgpIHtcbiAgICB0aGlzLmNvdW50ZXIkJCA9IHRoaXMuYWN0aXZpdHlTZXJ2aWNlLmNvdW50ZXIkXG4gICAgICAucGlwZShkZWJvdW5jZVRpbWUoNTApKVxuICAgICAgLnN1YnNjcmliZSgoY291bnQ6IG51bWJlcikgPT4ge1xuICAgICAgICBjb3VudCA+IDAgPyB0aGlzLnNwaW5uZXIuc2hvdygpIDogdGhpcy5zcGlubmVyLmhpZGUoKTtcbiAgICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqIFVuc3ViY3JpYmUgdG8gdGhlIGFjdGl2aXR5IHNlcnZpY2UgY291bnRlci5cbiAgICogQGludGVybmFsXG4gICAqL1xuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLmNvdW50ZXIkJC51bnN1YnNjcmliZSgpO1xuICB9XG59XG4iXX0=
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
import { Component, Input } from '@angular/core';
|
|
2
|
-
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@angular/common";
|
|
5
|
-
import * as i2 from "@angular/material/progress-spinner";
|
|
6
|
-
const _c0 = function (a1) { return { "igo-spinner-container": true, "igo-spinner-shown": a1 }; };
|
|
7
|
-
export class SpinnerComponent {
|
|
8
|
-
constructor() {
|
|
9
|
-
this.shown$ = new BehaviorSubject(false);
|
|
10
|
-
}
|
|
11
|
-
set shown(value) { this.shown$.next(value); }
|
|
12
|
-
get shown() { return this.shown$.value; }
|
|
13
|
-
show() {
|
|
14
|
-
this.shown = true;
|
|
15
|
-
}
|
|
16
|
-
hide() {
|
|
17
|
-
this.shown = false;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
SpinnerComponent.ɵfac = function SpinnerComponent_Factory(t) { return new (t || SpinnerComponent)(); };
|
|
21
|
-
SpinnerComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SpinnerComponent, selectors: [["igo-spinner"]], inputs: { shown: "shown" }, decls: 4, vars: 5, consts: [[3, "ngClass"], [1, "igo-spinner-background"], ["diameter", "40", "mode", "indeterminate"]], template: function SpinnerComponent_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
-
i0.ɵɵelementStart(0, "div", 0);
|
|
23
|
-
i0.ɵɵpipe(1, "async");
|
|
24
|
-
i0.ɵɵelement(2, "div", 1)(3, "mat-progress-spinner", 2);
|
|
25
|
-
i0.ɵɵelementEnd();
|
|
26
|
-
} if (rf & 2) {
|
|
27
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(3, _c0, i0.ɵɵpipeBind1(1, 1, ctx.shown$)));
|
|
28
|
-
} }, dependencies: [i1.NgClass, i2.MatProgressSpinner, i1.AsyncPipe], styles: [".igo-spinner-container[_ngcontent-%COMP%]{display:none;pointer-events:none}.igo-spinner-container.igo-spinner-shown[_ngcontent-%COMP%]{display:block}mat-progress-spinner[_ngcontent-%COMP%]{height:40px;width:40px;border-radius:50%}.igo-spinner-background[_ngcontent-%COMP%]{height:36px;width:36px;border-radius:50%;border:4px solid #ffffff;position:absolute;top:2px;left:2px}"] });
|
|
29
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SpinnerComponent, [{
|
|
30
|
-
type: Component,
|
|
31
|
-
args: [{ selector: 'igo-spinner', template: "<div\n [ngClass]=\"{'igo-spinner-container': true, 'igo-spinner-shown': (shown$ | async)}\">\n <div class=\"igo-spinner-background\"></div>\n <mat-progress-spinner diameter=\"40\" mode=\"indeterminate\"></mat-progress-spinner>\n</div>\n", styles: [".igo-spinner-container{display:none;pointer-events:none}.igo-spinner-container.igo-spinner-shown{display:block}mat-progress-spinner{height:40px;width:40px;border-radius:50%}.igo-spinner-background{height:36px;width:36px;border-radius:50%;border:4px solid #ffffff;position:absolute;top:2px;left:2px}\n"] }]
|
|
32
|
-
}], function () { return []; }, { shown: [{
|
|
33
|
-
type: Input
|
|
34
|
-
}] }); })();
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@angular/material/progress-spinner";
|
|
6
|
+
const _c0 = function (a1) { return { "igo-spinner-container": true, "igo-spinner-shown": a1 }; };
|
|
7
|
+
export class SpinnerComponent {
|
|
8
|
+
constructor() {
|
|
9
|
+
this.shown$ = new BehaviorSubject(false);
|
|
10
|
+
}
|
|
11
|
+
set shown(value) { this.shown$.next(value); }
|
|
12
|
+
get shown() { return this.shown$.value; }
|
|
13
|
+
show() {
|
|
14
|
+
this.shown = true;
|
|
15
|
+
}
|
|
16
|
+
hide() {
|
|
17
|
+
this.shown = false;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
SpinnerComponent.ɵfac = function SpinnerComponent_Factory(t) { return new (t || SpinnerComponent)(); };
|
|
21
|
+
SpinnerComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SpinnerComponent, selectors: [["igo-spinner"]], inputs: { shown: "shown" }, decls: 4, vars: 5, consts: [[3, "ngClass"], [1, "igo-spinner-background"], ["diameter", "40", "mode", "indeterminate"]], template: function SpinnerComponent_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
23
|
+
i0.ɵɵpipe(1, "async");
|
|
24
|
+
i0.ɵɵelement(2, "div", 1)(3, "mat-progress-spinner", 2);
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
} if (rf & 2) {
|
|
27
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(3, _c0, i0.ɵɵpipeBind1(1, 1, ctx.shown$)));
|
|
28
|
+
} }, dependencies: [i1.NgClass, i2.MatProgressSpinner, i1.AsyncPipe], styles: [".igo-spinner-container[_ngcontent-%COMP%]{display:none;pointer-events:none}.igo-spinner-container.igo-spinner-shown[_ngcontent-%COMP%]{display:block}mat-progress-spinner[_ngcontent-%COMP%]{height:40px;width:40px;border-radius:50%}.igo-spinner-background[_ngcontent-%COMP%]{height:36px;width:36px;border-radius:50%;border:4px solid #ffffff;position:absolute;top:2px;left:2px}"] });
|
|
29
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SpinnerComponent, [{
|
|
30
|
+
type: Component,
|
|
31
|
+
args: [{ selector: 'igo-spinner', template: "<div\n [ngClass]=\"{'igo-spinner-container': true, 'igo-spinner-shown': (shown$ | async)}\">\n <div class=\"igo-spinner-background\"></div>\n <mat-progress-spinner diameter=\"40\" mode=\"indeterminate\"></mat-progress-spinner>\n</div>\n", styles: [".igo-spinner-container{display:none;pointer-events:none}.igo-spinner-container.igo-spinner-shown{display:block}mat-progress-spinner{height:40px;width:40px;border-radius:50%}.igo-spinner-background{height:36px;width:36px;border-radius:50%;border:4px solid #ffffff;position:absolute;top:2px;left:2px}\n"] }]
|
|
32
|
+
}], function () { return []; }, { shown: [{
|
|
33
|
+
type: Input
|
|
34
|
+
}] }); })();
|
|
35
35
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Bpbm5lci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9zcGlubmVyL3NwaW5uZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvc3Bpbm5lci9zcGlubmVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRWpELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7O0FBT3ZDLE1BQU0sT0FBTyxnQkFBZ0I7SUFRM0I7UUFOTyxXQUFNLEdBQTZCLElBQUksZUFBZSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBTXRELENBQUM7SUFKaEIsSUFDSSxLQUFLLENBQUMsS0FBYyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUN0RCxJQUFJLEtBQUssS0FBYyxPQUFPLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztJQUlsRCxJQUFJO1FBQ0YsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7SUFDcEIsQ0FBQztJQUVELElBQUk7UUFDRixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDOztnRkFoQlUsZ0JBQWdCO21FQUFoQixnQkFBZ0I7UUNUN0IsOEJBQ3FGOztRQUNuRix5QkFBMEMsOEJBQUE7UUFFNUMsaUJBQU07O1FBSEosc0ZBQWtGOzt1RkRRdkUsZ0JBQWdCO2NBTDVCLFNBQVM7MkJBQ0UsYUFBYTtzQ0FTbkIsS0FBSztrQkFEUixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QgfSBmcm9tICdyeGpzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnaWdvLXNwaW5uZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vc3Bpbm5lci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NwaW5uZXIuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBTcGlubmVyQ29tcG9uZW50IHtcblxuICBwdWJsaWMgc2hvd24kOiBCZWhhdmlvclN1YmplY3Q8Ym9vbGVhbj4gPSBuZXcgQmVoYXZpb3JTdWJqZWN0KGZhbHNlKTtcblxuICBASW5wdXQoKVxuICBzZXQgc2hvd24odmFsdWU6IGJvb2xlYW4pIHsgdGhpcy5zaG93biQubmV4dCh2YWx1ZSk7IH1cbiAgZ2V0IHNob3duKCk6IGJvb2xlYW4geyByZXR1cm4gdGhpcy5zaG93biQudmFsdWU7IH1cblxuICBjb25zdHJ1Y3RvcigpIHt9XG5cbiAgc2hvdygpIHtcbiAgICB0aGlzLnNob3duID0gdHJ1ZTtcbiAgfVxuXG4gIGhpZGUoKSB7XG4gICAgdGhpcy5zaG93biA9IGZhbHNlO1xuICB9XG59XG4iLCI8ZGl2XG4gIFtuZ0NsYXNzXT1cInsnaWdvLXNwaW5uZXItY29udGFpbmVyJzogdHJ1ZSwgJ2lnby1zcGlubmVyLXNob3duJzogKHNob3duJCB8IGFzeW5jKX1cIj5cbiAgPGRpdiBjbGFzcz1cImlnby1zcGlubmVyLWJhY2tncm91bmRcIj48L2Rpdj5cbiAgPG1hdC1wcm9ncmVzcy1zcGlubmVyIGRpYW1ldGVyPVwiNDBcIiBtb2RlPVwiaW5kZXRlcm1pbmF0ZVwiPjwvbWF0LXByb2dyZXNzLXNwaW5uZXI+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
4
|
-
import { SpinnerActivityDirective } from './spinner-activity.directive';
|
|
5
|
-
import { SpinnerComponent } from './spinner.component';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export class IgoSpinnerModule {
|
|
8
|
-
}
|
|
9
|
-
IgoSpinnerModule.ɵfac = function IgoSpinnerModule_Factory(t) { return new (t || IgoSpinnerModule)(); };
|
|
10
|
-
IgoSpinnerModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoSpinnerModule });
|
|
11
|
-
IgoSpinnerModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, MatProgressSpinnerModule] });
|
|
12
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoSpinnerModule, [{
|
|
13
|
-
type: NgModule,
|
|
14
|
-
args: [{
|
|
15
|
-
imports: [CommonModule, MatProgressSpinnerModule],
|
|
16
|
-
declarations: [SpinnerActivityDirective, SpinnerComponent],
|
|
17
|
-
exports: [SpinnerActivityDirective, SpinnerComponent]
|
|
18
|
-
}]
|
|
19
|
-
}], null, null); })();
|
|
20
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoSpinnerModule, { declarations: [SpinnerActivityDirective, SpinnerComponent], imports: [CommonModule, MatProgressSpinnerModule], exports: [SpinnerActivityDirective, SpinnerComponent] }); })();
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
4
|
+
import { SpinnerActivityDirective } from './spinner-activity.directive';
|
|
5
|
+
import { SpinnerComponent } from './spinner.component';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export class IgoSpinnerModule {
|
|
8
|
+
}
|
|
9
|
+
IgoSpinnerModule.ɵfac = function IgoSpinnerModule_Factory(t) { return new (t || IgoSpinnerModule)(); };
|
|
10
|
+
IgoSpinnerModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoSpinnerModule });
|
|
11
|
+
IgoSpinnerModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, MatProgressSpinnerModule] });
|
|
12
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoSpinnerModule, [{
|
|
13
|
+
type: NgModule,
|
|
14
|
+
args: [{
|
|
15
|
+
imports: [CommonModule, MatProgressSpinnerModule],
|
|
16
|
+
declarations: [SpinnerActivityDirective, SpinnerComponent],
|
|
17
|
+
exports: [SpinnerActivityDirective, SpinnerComponent]
|
|
18
|
+
}]
|
|
19
|
+
}], null, null); })();
|
|
20
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoSpinnerModule, { declarations: [SpinnerActivityDirective, SpinnerComponent], imports: [CommonModule, MatProgressSpinnerModule], exports: [SpinnerActivityDirective, SpinnerComponent] }); })();
|
|
21
21
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Bpbm5lci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9zcGlubmVyL3NwaW5uZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLG9DQUFvQyxDQUFDO0FBRTlFLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ3hFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDOztBQU92RCxNQUFNLE9BQU8sZ0JBQWdCOztnRkFBaEIsZ0JBQWdCO2tFQUFoQixnQkFBZ0I7c0VBSmpCLFlBQVksRUFBRSx3QkFBd0I7dUZBSXJDLGdCQUFnQjtjQUw1QixRQUFRO2VBQUM7Z0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLHdCQUF3QixDQUFDO2dCQUNqRCxZQUFZLEVBQUUsQ0FBQyx3QkFBd0IsRUFBRSxnQkFBZ0IsQ0FBQztnQkFDMUQsT0FBTyxFQUFFLENBQUMsd0JBQXdCLEVBQUUsZ0JBQWdCLENBQUM7YUFDdEQ7O3dGQUNZLGdCQUFnQixtQkFIWix3QkFBd0IsRUFBRSxnQkFBZ0IsYUFEL0MsWUFBWSxFQUFFLHdCQUF3QixhQUV0Qyx3QkFBd0IsRUFBRSxnQkFBZ0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE1hdFByb2dyZXNzU3Bpbm5lck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3Byb2dyZXNzLXNwaW5uZXInO1xuXG5pbXBvcnQgeyBTcGlubmVyQWN0aXZpdHlEaXJlY3RpdmUgfSBmcm9tICcuL3NwaW5uZXItYWN0aXZpdHkuZGlyZWN0aXZlJztcbmltcG9ydCB7IFNwaW5uZXJDb21wb25lbnQgfSBmcm9tICcuL3NwaW5uZXIuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgTWF0UHJvZ3Jlc3NTcGlubmVyTW9kdWxlXSxcbiAgZGVjbGFyYXRpb25zOiBbU3Bpbm5lckFjdGl2aXR5RGlyZWN0aXZlLCBTcGlubmVyQ29tcG9uZW50XSxcbiAgZXhwb3J0czogW1NwaW5uZXJBY3Rpdml0eURpcmVjdGl2ZSwgU3Bpbm5lckNvbXBvbmVudF1cbn0pXG5leHBvcnQgY2xhc3MgSWdvU3Bpbm5lck1vZHVsZSB7fVxuIl19
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './stop-propagation.directive';
|
|
2
|
-
export * from './stop-drop-propagation.directive';
|
|
1
|
+
export * from './stop-propagation.directive';
|
|
2
|
+
export * from './stop-drop-propagation.directive';
|
|
3
3
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9zdG9wLXByb3BhZ2F0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyxtQ0FBbUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc3RvcC1wcm9wYWdhdGlvbi5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9zdG9wLWRyb3AtcHJvcGFnYXRpb24uZGlyZWN0aXZlJztcbiJdfQ==
|