@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,31 +1,31 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { IgoEntitySelectorModule } from './entity-selector/entity-selector.module';
|
|
4
|
-
import { IgoEntityTableModule } from './entity-table/entity-table.module';
|
|
5
|
-
import { IgoEntityTablePaginatorModule } from './entity-table-paginator/entity-table-paginator.module';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export class IgoEntityModule {
|
|
8
|
-
}
|
|
9
|
-
IgoEntityModule.ɵfac = function IgoEntityModule_Factory(t) { return new (t || IgoEntityModule)(); };
|
|
10
|
-
IgoEntityModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoEntityModule });
|
|
11
|
-
IgoEntityModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, IgoEntitySelectorModule,
|
|
12
|
-
IgoEntityTableModule,
|
|
13
|
-
IgoEntityTablePaginatorModule] });
|
|
14
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoEntityModule, [{
|
|
15
|
-
type: NgModule,
|
|
16
|
-
args: [{
|
|
17
|
-
imports: [
|
|
18
|
-
CommonModule
|
|
19
|
-
],
|
|
20
|
-
exports: [
|
|
21
|
-
IgoEntitySelectorModule,
|
|
22
|
-
IgoEntityTableModule,
|
|
23
|
-
IgoEntityTablePaginatorModule
|
|
24
|
-
],
|
|
25
|
-
declarations: []
|
|
26
|
-
}]
|
|
27
|
-
}], null, null); })();
|
|
28
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoEntityModule, { imports: [CommonModule], exports: [IgoEntitySelectorModule,
|
|
29
|
-
IgoEntityTableModule,
|
|
30
|
-
IgoEntityTablePaginatorModule] }); })();
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { IgoEntitySelectorModule } from './entity-selector/entity-selector.module';
|
|
4
|
+
import { IgoEntityTableModule } from './entity-table/entity-table.module';
|
|
5
|
+
import { IgoEntityTablePaginatorModule } from './entity-table-paginator/entity-table-paginator.module';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export class IgoEntityModule {
|
|
8
|
+
}
|
|
9
|
+
IgoEntityModule.ɵfac = function IgoEntityModule_Factory(t) { return new (t || IgoEntityModule)(); };
|
|
10
|
+
IgoEntityModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: IgoEntityModule });
|
|
11
|
+
IgoEntityModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule, IgoEntitySelectorModule,
|
|
12
|
+
IgoEntityTableModule,
|
|
13
|
+
IgoEntityTablePaginatorModule] });
|
|
14
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IgoEntityModule, [{
|
|
15
|
+
type: NgModule,
|
|
16
|
+
args: [{
|
|
17
|
+
imports: [
|
|
18
|
+
CommonModule
|
|
19
|
+
],
|
|
20
|
+
exports: [
|
|
21
|
+
IgoEntitySelectorModule,
|
|
22
|
+
IgoEntityTableModule,
|
|
23
|
+
IgoEntityTablePaginatorModule
|
|
24
|
+
],
|
|
25
|
+
declarations: []
|
|
26
|
+
}]
|
|
27
|
+
}], null, null); })();
|
|
28
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(IgoEntityModule, { imports: [CommonModule], exports: [IgoEntitySelectorModule,
|
|
29
|
+
IgoEntityTableModule,
|
|
30
|
+
IgoEntityTablePaginatorModule] }); })();
|
|
31
31
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW50aXR5Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbW1vbi9zcmMvbGliL2VudGl0eS9lbnRpdHkubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLDBDQUEwQyxDQUFDO0FBQ25GLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLG9DQUFvQyxDQUFDO0FBQzFFLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDOztBQWF2RyxNQUFNLE9BQU8sZUFBZTs7OEVBQWYsZUFBZTtpRUFBZixlQUFlO3FFQVR4QixZQUFZLEVBR1osdUJBQXVCO1FBQ3ZCLG9CQUFvQjtRQUNwQiw2QkFBNkI7dUZBSXBCLGVBQWU7Y0FYM0IsUUFBUTtlQUFDO2dCQUNSLE9BQU8sRUFBRTtvQkFDUCxZQUFZO2lCQUNiO2dCQUNELE9BQU8sRUFBRTtvQkFDUCx1QkFBdUI7b0JBQ3ZCLG9CQUFvQjtvQkFDcEIsNkJBQTZCO2lCQUM5QjtnQkFDRCxZQUFZLEVBQUUsRUFBRTthQUNqQjs7d0ZBQ1ksZUFBZSxjQVR4QixZQUFZLGFBR1osdUJBQXVCO1FBQ3ZCLG9CQUFvQjtRQUNwQiw2QkFBNkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuaW1wb3J0IHsgSWdvRW50aXR5U2VsZWN0b3JNb2R1bGUgfSBmcm9tICcuL2VudGl0eS1zZWxlY3Rvci9lbnRpdHktc2VsZWN0b3IubW9kdWxlJztcbmltcG9ydCB7IElnb0VudGl0eVRhYmxlTW9kdWxlIH0gZnJvbSAnLi9lbnRpdHktdGFibGUvZW50aXR5LXRhYmxlLm1vZHVsZSc7XG5pbXBvcnQgeyBJZ29FbnRpdHlUYWJsZVBhZ2luYXRvck1vZHVsZSB9IGZyb20gJy4vZW50aXR5LXRhYmxlLXBhZ2luYXRvci9lbnRpdHktdGFibGUtcGFnaW5hdG9yLm1vZHVsZSc7XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGVcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIElnb0VudGl0eVNlbGVjdG9yTW9kdWxlLFxuICAgIElnb0VudGl0eVRhYmxlTW9kdWxlLFxuICAgIElnb0VudGl0eVRhYmxlUGFnaW5hdG9yTW9kdWxlXG4gIF0sXG4gIGRlY2xhcmF0aW9uczogW11cbn0pXG5leHBvcnQgY2xhc3MgSWdvRW50aXR5TW9kdWxlIHt9XG4iXX0=
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './shared';
|
|
2
|
-
export * from './entity-selector/entity-selector.component';
|
|
3
|
-
export * from './entity-table/entity-table.component';
|
|
4
|
-
export * from './entity-table-paginator/entity-table-paginator.component';
|
|
5
|
-
export * from './entity-table-paginator/entity-table-paginator.interface';
|
|
1
|
+
export * from './shared';
|
|
2
|
+
export * from './entity-selector/entity-selector.component';
|
|
3
|
+
export * from './entity-table/entity-table.component';
|
|
4
|
+
export * from './entity-table-paginator/entity-table-paginator.component';
|
|
5
|
+
export * from './entity-table-paginator/entity-table-paginator.interface';
|
|
6
6
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9lbnRpdHkvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyw2Q0FBNkMsQ0FBQztBQUM1RCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsMkRBQTJELENBQUM7QUFDMUUsY0FBYywyREFBMkQsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2hhcmVkJztcbmV4cG9ydCAqIGZyb20gJy4vZW50aXR5LXNlbGVjdG9yL2VudGl0eS1zZWxlY3Rvci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9lbnRpdHktdGFibGUvZW50aXR5LXRhYmxlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2VudGl0eS10YWJsZS1wYWdpbmF0b3IvZW50aXR5LXRhYmxlLXBhZ2luYXRvci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9lbnRpdHktdGFibGUtcGFnaW5hdG9yL2VudGl0eS10YWJsZS1wYWdpbmF0b3IuaW50ZXJmYWNlJztcbiJdfQ==
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export var EntityOperationType;
|
|
2
|
-
(function (EntityOperationType) {
|
|
3
|
-
EntityOperationType["Insert"] = "Insert";
|
|
4
|
-
EntityOperationType["Update"] = "Update";
|
|
5
|
-
EntityOperationType["Delete"] = "Delete";
|
|
6
|
-
})(EntityOperationType || (EntityOperationType = {}));
|
|
7
|
-
export var EntityTableColumnRenderer;
|
|
8
|
-
(function (EntityTableColumnRenderer) {
|
|
9
|
-
EntityTableColumnRenderer["Default"] = "Default";
|
|
10
|
-
EntityTableColumnRenderer["HTML"] = "HTML";
|
|
11
|
-
EntityTableColumnRenderer["UnsanitizedHTML"] = "UnsanitizedHTML";
|
|
12
|
-
EntityTableColumnRenderer["Editable"] = "Editable";
|
|
13
|
-
EntityTableColumnRenderer["Icon"] = "Icon";
|
|
14
|
-
EntityTableColumnRenderer["ButtonGroup"] = "ButtonGroup";
|
|
15
|
-
})(EntityTableColumnRenderer || (EntityTableColumnRenderer = {}));
|
|
16
|
-
export var EntityTableScrollBehavior;
|
|
17
|
-
(function (EntityTableScrollBehavior) {
|
|
18
|
-
EntityTableScrollBehavior["Auto"] = "auto";
|
|
19
|
-
EntityTableScrollBehavior["Instant"] = "instant";
|
|
20
|
-
EntityTableScrollBehavior["Smooth"] = "smooth";
|
|
21
|
-
})(EntityTableScrollBehavior || (EntityTableScrollBehavior = {}));
|
|
22
|
-
export var EntityTableSelectionState;
|
|
23
|
-
(function (EntityTableSelectionState) {
|
|
24
|
-
EntityTableSelectionState["None"] = "None";
|
|
25
|
-
EntityTableSelectionState["All"] = "All";
|
|
26
|
-
EntityTableSelectionState["Some"] = "Some";
|
|
27
|
-
})(EntityTableSelectionState || (EntityTableSelectionState = {}));
|
|
1
|
+
export var EntityOperationType;
|
|
2
|
+
(function (EntityOperationType) {
|
|
3
|
+
EntityOperationType["Insert"] = "Insert";
|
|
4
|
+
EntityOperationType["Update"] = "Update";
|
|
5
|
+
EntityOperationType["Delete"] = "Delete";
|
|
6
|
+
})(EntityOperationType || (EntityOperationType = {}));
|
|
7
|
+
export var EntityTableColumnRenderer;
|
|
8
|
+
(function (EntityTableColumnRenderer) {
|
|
9
|
+
EntityTableColumnRenderer["Default"] = "Default";
|
|
10
|
+
EntityTableColumnRenderer["HTML"] = "HTML";
|
|
11
|
+
EntityTableColumnRenderer["UnsanitizedHTML"] = "UnsanitizedHTML";
|
|
12
|
+
EntityTableColumnRenderer["Editable"] = "Editable";
|
|
13
|
+
EntityTableColumnRenderer["Icon"] = "Icon";
|
|
14
|
+
EntityTableColumnRenderer["ButtonGroup"] = "ButtonGroup";
|
|
15
|
+
})(EntityTableColumnRenderer || (EntityTableColumnRenderer = {}));
|
|
16
|
+
export var EntityTableScrollBehavior;
|
|
17
|
+
(function (EntityTableScrollBehavior) {
|
|
18
|
+
EntityTableScrollBehavior["Auto"] = "auto";
|
|
19
|
+
EntityTableScrollBehavior["Instant"] = "instant";
|
|
20
|
+
EntityTableScrollBehavior["Smooth"] = "smooth";
|
|
21
|
+
})(EntityTableScrollBehavior || (EntityTableScrollBehavior = {}));
|
|
22
|
+
export var EntityTableSelectionState;
|
|
23
|
+
(function (EntityTableSelectionState) {
|
|
24
|
+
EntityTableSelectionState["None"] = "None";
|
|
25
|
+
EntityTableSelectionState["All"] = "All";
|
|
26
|
+
EntityTableSelectionState["Some"] = "Some";
|
|
27
|
+
})(EntityTableSelectionState || (EntityTableSelectionState = {}));
|
|
28
28
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW50aXR5LmVudW1zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvZW50aXR5L3NoYXJlZC9lbnRpdHkuZW51bXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksbUJBSVg7QUFKRCxXQUFZLG1CQUFtQjtJQUM3Qix3Q0FBaUIsQ0FBQTtJQUNqQix3Q0FBaUIsQ0FBQTtJQUNqQix3Q0FBaUIsQ0FBQTtBQUNuQixDQUFDLEVBSlcsbUJBQW1CLEtBQW5CLG1CQUFtQixRQUk5QjtBQUVELE1BQU0sQ0FBTixJQUFZLHlCQU9YO0FBUEQsV0FBWSx5QkFBeUI7SUFDbkMsZ0RBQW1CLENBQUE7SUFDbkIsMENBQWEsQ0FBQTtJQUNiLGdFQUFtQyxDQUFBO0lBQ25DLGtEQUFxQixDQUFBO0lBQ3JCLDBDQUFhLENBQUE7SUFDYix3REFBMkIsQ0FBQTtBQUM3QixDQUFDLEVBUFcseUJBQXlCLEtBQXpCLHlCQUF5QixRQU9wQztBQUVELE1BQU0sQ0FBTixJQUFZLHlCQUlYO0FBSkQsV0FBWSx5QkFBeUI7SUFDbkMsMENBQWEsQ0FBQTtJQUNiLGdEQUFtQixDQUFBO0lBQ25CLDhDQUFpQixDQUFBO0FBQ25CLENBQUMsRUFKVyx5QkFBeUIsS0FBekIseUJBQXlCLFFBSXBDO0FBRUQsTUFBTSxDQUFOLElBQVkseUJBSVg7QUFKRCxXQUFZLHlCQUF5QjtJQUNuQywwQ0FBYSxDQUFBO0lBQ2Isd0NBQVcsQ0FBQTtJQUNYLDBDQUFhLENBQUE7QUFDZixDQUFDLEVBSlcseUJBQXlCLEtBQXpCLHlCQUF5QixRQUlwQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIEVudGl0eU9wZXJhdGlvblR5cGUge1xuICBJbnNlcnQgPSAnSW5zZXJ0JyxcbiAgVXBkYXRlID0gJ1VwZGF0ZScsXG4gIERlbGV0ZSA9ICdEZWxldGUnXG59XG5cbmV4cG9ydCBlbnVtIEVudGl0eVRhYmxlQ29sdW1uUmVuZGVyZXIge1xuICBEZWZhdWx0ID0gJ0RlZmF1bHQnLFxuICBIVE1MID0gJ0hUTUwnLFxuICBVbnNhbml0aXplZEhUTUwgPSAnVW5zYW5pdGl6ZWRIVE1MJyxcbiAgRWRpdGFibGUgPSAnRWRpdGFibGUnLFxuICBJY29uID0gJ0ljb24nLFxuICBCdXR0b25Hcm91cCA9ICdCdXR0b25Hcm91cCdcbn1cblxuZXhwb3J0IGVudW0gRW50aXR5VGFibGVTY3JvbGxCZWhhdmlvciB7XG4gIEF1dG8gPSAnYXV0bycsXG4gIEluc3RhbnQgPSAnaW5zdGFudCcsXG4gIFNtb290aCA9ICdzbW9vdGgnXG59XG5cbmV4cG9ydCBlbnVtIEVudGl0eVRhYmxlU2VsZWN0aW9uU3RhdGUge1xuICBOb25lID0gJ05vbmUnLFxuICBBbGwgPSAnQWxsJyxcbiAgU29tZSA9ICdTb21lJ1xufVxuIl19
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
2
2
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW50aXR5LmludGVyZmFjZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9lbnRpdHkvc2hhcmVkL2VudGl0eS5pbnRlcmZhY2VzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5cbmltcG9ydCB7XG4gIEVudGl0eU9wZXJhdGlvblR5cGUsXG4gIEVudGl0eVRhYmxlQ29sdW1uUmVuZGVyZXJcbn0gZnJvbSAnLi9lbnRpdHkuZW51bXMnO1xuaW1wb3J0IHsgRW50aXR5U3RvcmUgfSBmcm9tICcuL3N0b3JlJztcblxuZXhwb3J0IHR5cGUgRW50aXR5S2V5ID0gc3RyaW5nIHwgbnVtYmVyO1xuXG5leHBvcnQgaW50ZXJmYWNlIEVudGl0eVN0YXRlIHtcbiAgW2tleTogc3RyaW5nXTogYW55O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEVudGl0eVJlY29yZDxFIGV4dGVuZHMgb2JqZWN0LCBTIGV4dGVuZHMgRW50aXR5U3RhdGUgPSBFbnRpdHlTdGF0ZT4ge1xuICBlbnRpdHk6IEU7XG4gIHN0YXRlOiBTO1xuICByZXZpc2lvbjogbnVtYmVyO1xuICByZWY6IHN0cmluZztcbiAgZWRpdGlvbj86IGJvb2xlYW47XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW50aXR5U3RvcmVPcHRpb25zIHtcbiAgZ2V0S2V5PzogKGVudGl0eTogb2JqZWN0KSA9PiBFbnRpdHlLZXk7XG4gIGdldFByb3BlcnR5PzogKGVudGl0eTogb2JqZWN0LCBwcm9wZXJ0eTogc3RyaW5nKSA9PiBhbnk7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW50aXR5U3RhdGVNYW5hZ2VyT3B0aW9ucyB7XG4gIGdldEtleT86IChlbnRpdHk6IG9iamVjdCkgPT4gRW50aXR5S2V5O1xuICBzdG9yZT86IEVudGl0eVN0b3JlPG9iamVjdD47XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW50aXR5U3RvcmVTdHJhdGVneU9wdGlvbnMge31cblxuZXhwb3J0IGludGVyZmFjZSBFbnRpdHlTdG9yZVN0cmF0ZWd5RnVuY09wdGlvbnMgZXh0ZW5kcyBFbnRpdHlTdG9yZVN0cmF0ZWd5T3B0aW9ucyB7XG4gIGZpbHRlckNsYXVzZUZ1bmM6IEVudGl0eUZpbHRlckNsYXVzZTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBFbnRpdHlUcmFuc2FjdGlvbk9wdGlvbnMge1xuICBnZXRLZXk/OiAoZW50aXR5OiBvYmplY3QpID0+IEVudGl0eUtleTtcbn1cblxuZXhwb3J0IHR5cGUgRW50aXR5RmlsdGVyQ2xhdXNlPEUgPSBvYmplY3Q+ID0gKGVudGl0eTogRSkgPT4gYm9vbGVhbjtcblxuZXhwb3J0IGludGVyZmFjZSBFbnRpdHlTb3J0Q2xhdXNlPEUgPSBvYmplY3Q+IHtcbiAgdmFsdWVBY2Nlc3NvcjogKGVudGl0eTogRSkgPT4gc3RyaW5nIHwgbnVtYmVyO1xuICBkaXJlY3Rpb246IHN0cmluZztcblxuICAvLyBJZiB0cnVlLCBudWxsIGFuZCB1bmRlZmluZWQgdmFsdWVzIHdpbGwgYmUgZmlyc3RcbiAgLy8gSWYgZmFsc2UsIG51bGwgYW5kIHVuZGVmaW5lZCB2YWx1ZXMgd2lsbCBiZSBsYXN0XG4gIC8vIElmIHVuZGVmaW5lZCwgZGVmYXVsdCB0byB0cnVlIGFuZCBmYWxzZSB3aGVuIHNvcnRpbmcgaW4gZGVzY2VuZGluZyBhbmRcbiAgLy8gYXNjZW5kaW5nIG9yZGVyLCByZXNwZWN0aXZlbHlcbiAgbnVsbHNGaXJzdD86IGJvb2xlYW47XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW50aXR5Sm9pbkNsYXVzZSB7XG4gIHNvdXJjZTogT2JzZXJ2YWJsZTxhbnkgfCB2b2lkPjtcbiAgcmVkdWNlOiAocGFyYW0xOiBvYmplY3QsIHBhcmFtMjogYW55KSA9PiBvYmplY3Q7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW50aXR5T3BlcmF0aW9uPEUgZXh0ZW5kcyBvYmplY3QgPSBvYmplY3Q+IHtcbiAga2V5OiBFbnRpdHlLZXk7XG4gIHR5cGU6IEVudGl0eU9wZXJhdGlvblR5cGU7XG4gIHByZXZpb3VzOiBFIHwgdW5kZWZpbmVkO1xuICBjdXJyZW50OiBFIHwgdW5kZWZpbmVkO1xuICBzdG9yZT86IEVudGl0eVN0b3JlPEU+O1xuICBtZXRhPzoge1trZXk6IHN0cmluZ106IGFueX07XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW50aXR5T3BlcmF0aW9uU3RhdGUge1xuICBhZGRlZDogYm9vbGVhbjtcbiAgY2FuY2VsZWQ6IGJvb2xlYW47XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRW50aXR5VGFibGVUZW1wbGF0ZSB7XG4gIGNvbHVtbnM6IEVudGl0eVRhYmxlQ29sdW1uW107XG4gIHNlbGVjdGlvbj86IGJvb2xlYW47XG4gIHNlbGVjdGlvbkNoZWNrYm94PzogYm9vbGVhbjtcbiAgc2VsZWN0TWFueT86IGJvb2xlYW47XG4gIHNvcnQ/OiBib29sZWFuO1xuICBmaXhlZEhlYWRlcj86IGJvb2xlYW47XG4gIHRhYmxlSGVpZ2h0PzpzdHJpbmc7XG4gIHZhbHVlQWNjZXNzb3I/OiAoZW50aXR5OiBvYmplY3QsIHByb3BlcnR5OiBzdHJpbmcsIHJlY29yZDogRW50aXR5UmVjb3JkPG9iamVjdD4pID0+IGFueTtcbiAgaGVhZGVyQ2xhc3NGdW5jPzogKCkgPT4ge1xuICAgIFtrZXk6IHN0cmluZ106IGJvb2xlYW47XG4gIH07XG4gIHJvd0NsYXNzRnVuYz86IChlbnRpdHk6IG9iamVjdCwgcmVjb3JkOiBFbnRpdHlSZWNvcmQ8b2JqZWN0PikgPT4ge1xuICAgIFtrZXk6IHN0cmluZ106IGJvb2xlYW47XG4gIH07XG4gIGNlbGxDbGFzc0Z1bmM/OiAoZW50aXR5OiBvYmplY3QsIGNvbHVtbjogRW50aXR5VGFibGVDb2x1bW4sIHJlY29yZDogRW50aXR5UmVjb3JkPG9iamVjdD4pID0+IHtcbiAgICBba2V5OiBzdHJpbmddOiBib29sZWFuO1xuICB9O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEVudGl0eVRhYmxlQ29sdW1uVmFsaWRhdGlvbiB7XG4gIHJlYWRvbmx5PzogYm9vbGVhbjtcbiAgbWFuZGF0b3J5PzogYm9vbGVhbjtcbiAgbWF4bGVuZ3RoPzogbnVtYmVyO1xuICBtaW5sZW5ndGg/OiBudW1iZXI7XG4gIG1pblZhbHVlPzogbnVtYmVyO1xuICBtYXhWYWx1ZT86IG51bWJlcjtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBUYWJsZVJlbGF0aW9uIHtcbiAgdGFibGU6IHN0cmluZztcbn1cblxuZXhwb3J0IGludGVyZmFjZSBFbnRpdHlUYWJsZUNvbHVtbiB7XG4gIHZhbGlkYXRpb24/OiBFbnRpdHlUYWJsZUNvbHVtblZhbGlkYXRpb247XG4gIG5hbWU6IHN0cmluZztcbiAgdGl0bGU6IHN0cmluZztcbiAgcmVuZGVyZXI/OiBFbnRpdHlUYWJsZUNvbHVtblJlbmRlcmVyO1xuICB2YWx1ZUFjY2Vzc29yPzogKGVudGl0eTogb2JqZWN0LCByZWNvcmQ6IEVudGl0eVJlY29yZDxvYmplY3Q+KSA9PiBhbnk7XG4gIHZpc2libGU/OiBib29sZWFuO1xuICBsaW5rQ29sdW1uRm9yY2U/OiBzdHJpbmc7XG4gIHNvcnQ/OiBib29sZWFuO1xuICB0eXBlPzogc3RyaW5nO1xuICBtdWx0aXBsZT86IGJvb2xlYW47XG4gIGRvbWFpblZhbHVlcz86IEFycmF5PFNlbGVjdE9wdGlvbj47XG4gIHJlbGF0aW9uPzogVGFibGVSZWxhdGlvbjtcbiAgdG9vbHRpcD86IHN0cmluZztcbiAgY2VsbENsYXNzRnVuYz86IChlbnRpdHk6IG9iamVjdCwgcmVjb3JkOiBFbnRpdHlSZWNvcmQ8b2JqZWN0PikgPT4ge1xuICAgIFtrZXk6IHN0cmluZ106IGJvb2xlYW47XG4gIH07XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgU2VsZWN0T3B0aW9uIHtcbiAgaWQ6IG51bWJlcjtcbiAgdmFsdWU6IHN0cmluZztcbn1cblxuZXhwb3J0IGludGVyZmFjZSBFbnRpdHlUYWJsZUJ1dHRvbiB7XG4gIGljb246IHN0cmluZztcbiAgY2xpY2s6IChlbnRpdHk6IG9iamVjdCwgcmVjb3JkOiBFbnRpdHlSZWNvcmQ8b2JqZWN0PikgPT4gdm9pZDtcbiAgY29sb3I/OiAncHJpbWFyeScgfMKgJ2FjY2VudCcgfCAnd2Fybic7XG4gIGRpc2FibGVkPzogYm9vbGVhbjtcbiAgc3R5bGU/OiAnbWF0LW1pbmktZmFiJyB8ICdtYXQtaWNvbi1idXR0b24nO1xuICBlZGl0TW9kZT86IGJvb2xlYW47XG59XG4iXX0=
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
import { t } from 'typy';
|
|
2
|
-
/**
|
|
3
|
-
* Get an entity's named property. Nested properties are supported
|
|
4
|
-
* with the dotted notation. (i.e 'author.name')
|
|
5
|
-
*
|
|
6
|
-
* Note: this method is a 'best attempt' at getting an entity's property.
|
|
7
|
-
* It fits the most common cases but you might need to explicitely define
|
|
8
|
-
* a property getter when using an EntityStore, for example.
|
|
9
|
-
* @param entity Entity
|
|
10
|
-
* @param property Property name
|
|
11
|
-
* @returns Property value
|
|
12
|
-
*/
|
|
13
|
-
export function getEntityProperty(entity, property) {
|
|
14
|
-
return t(entity, property).safeObject;
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Get an entity's id. An entity's id can be one of:
|
|
18
|
-
* 'entity.meta.id', 'entity.meta.idProperty' or 'entity.id'.
|
|
19
|
-
*
|
|
20
|
-
* Note: See the note in the 'getEntityProperty' documentation.
|
|
21
|
-
* @param entity Entity
|
|
22
|
-
* @returns Entity id
|
|
23
|
-
*/
|
|
24
|
-
export function getEntityId(entity) {
|
|
25
|
-
const meta = entity.meta || {};
|
|
26
|
-
return meta.id ? meta.id : getEntityProperty(entity, meta.idProperty || 'id');
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Get an entity's title. An entity's title can be one of:
|
|
30
|
-
* 'entity.meta.title', 'entity.meta.titleProperty' or 'entity.title'.
|
|
31
|
-
* @param entity Entity
|
|
32
|
-
* @returns Entity title
|
|
33
|
-
*/
|
|
34
|
-
export function getEntityTitle(entity) {
|
|
35
|
-
const meta = entity.meta || {};
|
|
36
|
-
return meta.title ? meta.title : getEntityProperty(entity, meta.titleProperty || 'title');
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Get an entity's HTML title. An entity's HTML title can be one of:
|
|
40
|
-
* 'entity.meta.titleHtml', 'entity.meta.titleHtmlProperty' or 'entity.titleHtml'.
|
|
41
|
-
* @param entity Entity
|
|
42
|
-
* @returns Entity HTML title
|
|
43
|
-
*/
|
|
44
|
-
export function getEntityTitleHtml(entity) {
|
|
45
|
-
const meta = entity.meta || {};
|
|
46
|
-
return meta.titleHtml ? meta.titleHtml : getEntityProperty(entity, meta.titleHtmlProperty || 'titleHtml');
|
|
47
|
-
}
|
|
48
|
-
/**
|
|
49
|
-
* Get an entity's icon. An entity's icon can be one of:
|
|
50
|
-
* 'entity.meta.icon', 'entity.meta.iconProperty' or 'entity.icon'.
|
|
51
|
-
* @param entity Entity
|
|
52
|
-
* @returns Entity icon
|
|
53
|
-
*/
|
|
54
|
-
export function getEntityIcon(entity) {
|
|
55
|
-
const meta = entity.meta || {};
|
|
56
|
-
return meta.icon ? meta.icon : getEntityProperty(entity, meta.iconProperty || 'icon');
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* Get an entity's revision.
|
|
60
|
-
* @param entity Entity
|
|
61
|
-
* @returns Entity revision
|
|
62
|
-
*/
|
|
63
|
-
export function getEntityRevision(entity) {
|
|
64
|
-
const meta = entity.meta || {};
|
|
65
|
-
return meta.revision || 0;
|
|
66
|
-
}
|
|
1
|
+
import { t } from 'typy';
|
|
2
|
+
/**
|
|
3
|
+
* Get an entity's named property. Nested properties are supported
|
|
4
|
+
* with the dotted notation. (i.e 'author.name')
|
|
5
|
+
*
|
|
6
|
+
* Note: this method is a 'best attempt' at getting an entity's property.
|
|
7
|
+
* It fits the most common cases but you might need to explicitely define
|
|
8
|
+
* a property getter when using an EntityStore, for example.
|
|
9
|
+
* @param entity Entity
|
|
10
|
+
* @param property Property name
|
|
11
|
+
* @returns Property value
|
|
12
|
+
*/
|
|
13
|
+
export function getEntityProperty(entity, property) {
|
|
14
|
+
return t(entity, property).safeObject;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Get an entity's id. An entity's id can be one of:
|
|
18
|
+
* 'entity.meta.id', 'entity.meta.idProperty' or 'entity.id'.
|
|
19
|
+
*
|
|
20
|
+
* Note: See the note in the 'getEntityProperty' documentation.
|
|
21
|
+
* @param entity Entity
|
|
22
|
+
* @returns Entity id
|
|
23
|
+
*/
|
|
24
|
+
export function getEntityId(entity) {
|
|
25
|
+
const meta = entity.meta || {};
|
|
26
|
+
return meta.id ? meta.id : getEntityProperty(entity, meta.idProperty || 'id');
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Get an entity's title. An entity's title can be one of:
|
|
30
|
+
* 'entity.meta.title', 'entity.meta.titleProperty' or 'entity.title'.
|
|
31
|
+
* @param entity Entity
|
|
32
|
+
* @returns Entity title
|
|
33
|
+
*/
|
|
34
|
+
export function getEntityTitle(entity) {
|
|
35
|
+
const meta = entity.meta || {};
|
|
36
|
+
return meta.title ? meta.title : getEntityProperty(entity, meta.titleProperty || 'title');
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Get an entity's HTML title. An entity's HTML title can be one of:
|
|
40
|
+
* 'entity.meta.titleHtml', 'entity.meta.titleHtmlProperty' or 'entity.titleHtml'.
|
|
41
|
+
* @param entity Entity
|
|
42
|
+
* @returns Entity HTML title
|
|
43
|
+
*/
|
|
44
|
+
export function getEntityTitleHtml(entity) {
|
|
45
|
+
const meta = entity.meta || {};
|
|
46
|
+
return meta.titleHtml ? meta.titleHtml : getEntityProperty(entity, meta.titleHtmlProperty || 'titleHtml');
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Get an entity's icon. An entity's icon can be one of:
|
|
50
|
+
* 'entity.meta.icon', 'entity.meta.iconProperty' or 'entity.icon'.
|
|
51
|
+
* @param entity Entity
|
|
52
|
+
* @returns Entity icon
|
|
53
|
+
*/
|
|
54
|
+
export function getEntityIcon(entity) {
|
|
55
|
+
const meta = entity.meta || {};
|
|
56
|
+
return meta.icon ? meta.icon : getEntityProperty(entity, meta.iconProperty || 'icon');
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Get an entity's revision.
|
|
60
|
+
* @param entity Entity
|
|
61
|
+
* @returns Entity revision
|
|
62
|
+
*/
|
|
63
|
+
export function getEntityRevision(entity) {
|
|
64
|
+
const meta = entity.meta || {};
|
|
65
|
+
return meta.revision || 0;
|
|
66
|
+
}
|
|
67
67
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW50aXR5LnV0aWxzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tbW9uL3NyYy9saWIvZW50aXR5L3NoYXJlZC9lbnRpdHkudXRpbHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLENBQUMsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUl6Qjs7Ozs7Ozs7OztHQVVHO0FBQ0gsTUFBTSxVQUFVLGlCQUFpQixDQUFDLE1BQWMsRUFBRSxRQUFnQjtJQUNoRSxPQUFPLENBQUMsQ0FBQyxNQUFNLEVBQUUsUUFBUSxDQUFDLENBQUMsVUFBVSxDQUFDO0FBQ3hDLENBQUM7QUFFRDs7Ozs7OztHQU9HO0FBQ0gsTUFBTSxVQUFVLFdBQVcsQ0FBQyxNQUFjO0lBQ3hDLE1BQU0sSUFBSSxHQUFJLE1BQWMsQ0FBQyxJQUFJLElBQUksRUFBRSxDQUFDO0lBQ3hDLE9BQU8sSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsaUJBQWlCLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxVQUFVLElBQUksSUFBSSxDQUFDLENBQUM7QUFDaEYsQ0FBQztBQUVEOzs7OztHQUtHO0FBQ0gsTUFBTSxVQUFVLGNBQWMsQ0FBQyxNQUFjO0lBQzNDLE1BQU0sSUFBSSxHQUFJLE1BQWMsQ0FBQyxJQUFJLElBQUksRUFBRSxDQUFDO0lBQ3hDLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsaUJBQWlCLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxhQUFhLElBQUksT0FBTyxDQUFDLENBQUM7QUFDNUYsQ0FBQztBQUVEOzs7OztHQUtHO0FBQ0gsTUFBTSxVQUFVLGtCQUFrQixDQUFDLE1BQWM7SUFDL0MsTUFBTSxJQUFJLEdBQUksTUFBYyxDQUFDLElBQUksSUFBSSxFQUFFLENBQUM7SUFDeEMsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxpQkFBaUIsQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixJQUFJLFdBQVcsQ0FBQyxDQUFDO0FBQzVHLENBQUM7QUFFRDs7Ozs7R0FLRztBQUNILE1BQU0sVUFBVSxhQUFhLENBQUMsTUFBYztJQUMxQyxNQUFNLElBQUksR0FBSSxNQUFjLENBQUMsSUFBSSxJQUFJLEVBQUUsQ0FBQztJQUN4QyxPQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLGlCQUFpQixDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsWUFBWSxJQUFJLE1BQU0sQ0FBQyxDQUFDO0FBQ3hGLENBQUM7QUFFRDs7OztHQUlHO0FBQ0gsTUFBTSxVQUFVLGlCQUFpQixDQUFDLE1BQWM7SUFDOUMsTUFBTSxJQUFJLEdBQUksTUFBYyxDQUFDLElBQUksSUFBSSxFQUFFLENBQUM7SUFDeEMsT0FBTyxJQUFJLENBQUMsUUFBUSxJQUFJLENBQUMsQ0FBQztBQUM1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgdCB9IGZyb20gJ3R5cHknO1xuXG5pbXBvcnQgeyBFbnRpdHlLZXkgfSBmcm9tICcuL2VudGl0eS5pbnRlcmZhY2VzJztcblxuLyoqXG4gKiBHZXQgYW4gZW50aXR5J3MgbmFtZWQgcHJvcGVydHkuIE5lc3RlZCBwcm9wZXJ0aWVzIGFyZSBzdXBwb3J0ZWRcbiAqIHdpdGggdGhlIGRvdHRlZCBub3RhdGlvbi4gKGkuZSAnYXV0aG9yLm5hbWUnKVxuICpcbiAqIE5vdGU6IHRoaXMgbWV0aG9kIGlzIGEgJ2Jlc3QgYXR0ZW1wdCcgYXQgZ2V0dGluZyBhbiBlbnRpdHkncyBwcm9wZXJ0eS5cbiAqIEl0IGZpdHMgdGhlIG1vc3QgY29tbW9uIGNhc2VzIGJ1dCB5b3UgbWlnaHQgbmVlZCB0byBleHBsaWNpdGVseSBkZWZpbmVcbiAqIGEgcHJvcGVydHkgZ2V0dGVyIHdoZW4gdXNpbmcgYW4gRW50aXR5U3RvcmUsIGZvciBleGFtcGxlLlxuICogQHBhcmFtIGVudGl0eSBFbnRpdHlcbiAqIEBwYXJhbSBwcm9wZXJ0eSBQcm9wZXJ0eSBuYW1lXG4gKiBAcmV0dXJucyBQcm9wZXJ0eSB2YWx1ZVxuICovXG5leHBvcnQgZnVuY3Rpb24gZ2V0RW50aXR5UHJvcGVydHkoZW50aXR5OiBvYmplY3QsIHByb3BlcnR5OiBzdHJpbmcpOiBhbnkge1xuICByZXR1cm4gdChlbnRpdHksIHByb3BlcnR5KS5zYWZlT2JqZWN0O1xufVxuXG4vKipcbiAqIEdldCBhbiBlbnRpdHkncyBpZC4gQW4gZW50aXR5J3MgaWQgY2FuIGJlIG9uZSBvZjpcbiAqICdlbnRpdHkubWV0YS5pZCcsICdlbnRpdHkubWV0YS5pZFByb3BlcnR5JyBvciAnZW50aXR5LmlkJy5cbiAqXG4gKiBOb3RlOiBTZWUgdGhlIG5vdGUgaW4gdGhlICdnZXRFbnRpdHlQcm9wZXJ0eScgZG9jdW1lbnRhdGlvbi5cbiAqIEBwYXJhbSBlbnRpdHkgRW50aXR5XG4gKiBAcmV0dXJucyBFbnRpdHkgaWRcbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGdldEVudGl0eUlkKGVudGl0eTogb2JqZWN0KTogRW50aXR5S2V5IHtcbiAgY29uc3QgbWV0YSA9IChlbnRpdHkgYXMgYW55KS5tZXRhIHx8IHt9O1xuICByZXR1cm4gbWV0YS5pZCA/IG1ldGEuaWQgOiBnZXRFbnRpdHlQcm9wZXJ0eShlbnRpdHksIG1ldGEuaWRQcm9wZXJ0eSB8fCAnaWQnKTtcbn1cblxuLyoqXG4gKiBHZXQgYW4gZW50aXR5J3MgdGl0bGUuIEFuIGVudGl0eSdzIHRpdGxlIGNhbiBiZSBvbmUgb2Y6XG4gKiAnZW50aXR5Lm1ldGEudGl0bGUnLCAnZW50aXR5Lm1ldGEudGl0bGVQcm9wZXJ0eScgb3IgJ2VudGl0eS50aXRsZScuXG4gKiBAcGFyYW0gZW50aXR5IEVudGl0eVxuICogQHJldHVybnMgRW50aXR5IHRpdGxlXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBnZXRFbnRpdHlUaXRsZShlbnRpdHk6IG9iamVjdCk6IHN0cmluZyB7XG4gIGNvbnN0IG1ldGEgPSAoZW50aXR5IGFzIGFueSkubWV0YSB8fCB7fTtcbiAgcmV0dXJuIG1ldGEudGl0bGUgPyBtZXRhLnRpdGxlIDogZ2V0RW50aXR5UHJvcGVydHkoZW50aXR5LCBtZXRhLnRpdGxlUHJvcGVydHkgfHwgJ3RpdGxlJyk7XG59XG5cbi8qKlxuICogR2V0IGFuIGVudGl0eSdzIEhUTUwgdGl0bGUuIEFuIGVudGl0eSdzIEhUTUwgdGl0bGUgY2FuIGJlIG9uZSBvZjpcbiAqICdlbnRpdHkubWV0YS50aXRsZUh0bWwnLCAnZW50aXR5Lm1ldGEudGl0bGVIdG1sUHJvcGVydHknIG9yICdlbnRpdHkudGl0bGVIdG1sJy5cbiAqIEBwYXJhbSBlbnRpdHkgRW50aXR5XG4gKiBAcmV0dXJucyBFbnRpdHkgSFRNTCB0aXRsZVxuICovXG5leHBvcnQgZnVuY3Rpb24gZ2V0RW50aXR5VGl0bGVIdG1sKGVudGl0eTogb2JqZWN0KTogc3RyaW5nIHtcbiAgY29uc3QgbWV0YSA9IChlbnRpdHkgYXMgYW55KS5tZXRhIHx8IHt9O1xuICByZXR1cm4gbWV0YS50aXRsZUh0bWwgPyBtZXRhLnRpdGxlSHRtbCA6IGdldEVudGl0eVByb3BlcnR5KGVudGl0eSwgbWV0YS50aXRsZUh0bWxQcm9wZXJ0eSB8fCAndGl0bGVIdG1sJyk7XG59XG5cbi8qKlxuICogR2V0IGFuIGVudGl0eSdzIGljb24uIEFuIGVudGl0eSdzIGljb24gY2FuIGJlIG9uZSBvZjpcbiAqICdlbnRpdHkubWV0YS5pY29uJywgJ2VudGl0eS5tZXRhLmljb25Qcm9wZXJ0eScgb3IgJ2VudGl0eS5pY29uJy5cbiAqIEBwYXJhbSBlbnRpdHkgRW50aXR5XG4gKiBAcmV0dXJucyBFbnRpdHkgaWNvblxuICovXG5leHBvcnQgZnVuY3Rpb24gZ2V0RW50aXR5SWNvbihlbnRpdHk6IG9iamVjdCk6IHN0cmluZyB7XG4gIGNvbnN0IG1ldGEgPSAoZW50aXR5IGFzIGFueSkubWV0YSB8fCB7fTtcbiAgcmV0dXJuIG1ldGEuaWNvbiA/IG1ldGEuaWNvbiA6IGdldEVudGl0eVByb3BlcnR5KGVudGl0eSwgbWV0YS5pY29uUHJvcGVydHkgfHwgJ2ljb24nKTtcbn1cblxuLyoqXG4gKiBHZXQgYW4gZW50aXR5J3MgcmV2aXNpb24uXG4gKiBAcGFyYW0gZW50aXR5IEVudGl0eVxuICogQHJldHVybnMgRW50aXR5IHJldmlzaW9uXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBnZXRFbnRpdHlSZXZpc2lvbihlbnRpdHk6IG9iamVjdCk6IG51bWJlciB7XG4gIGNvbnN0IG1ldGEgPSAoZW50aXR5IGFzIGFueSkubWV0YSB8fCB7fTtcbiAgcmV0dXJuIG1ldGEucmV2aXNpb24gfHwgMDtcbn1cbiJdfQ==
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from './entity.enums';
|
|
2
|
-
export * from './entity.interfaces';
|
|
3
|
-
export * from './entity.utils';
|
|
4
|
-
export * from './store';
|
|
5
|
-
export * from './state';
|
|
6
|
-
export * from './watcher';
|
|
7
|
-
export * from './transaction';
|
|
8
|
-
export * from './view';
|
|
9
|
-
export * from './strategies';
|
|
1
|
+
export * from './entity.enums';
|
|
2
|
+
export * from './entity.interfaces';
|
|
3
|
+
export * from './entity.utils';
|
|
4
|
+
export * from './store';
|
|
5
|
+
export * from './state';
|
|
6
|
+
export * from './watcher';
|
|
7
|
+
export * from './transaction';
|
|
8
|
+
export * from './view';
|
|
9
|
+
export * from './strategies';
|
|
10
10
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21tb24vc3JjL2xpYi9lbnRpdHkvc2hhcmVkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsV0FBVyxDQUFDO0FBQzFCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsUUFBUSxDQUFDO0FBRXZCLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lbnRpdHkuZW51bXMnO1xuZXhwb3J0ICogZnJvbSAnLi9lbnRpdHkuaW50ZXJmYWNlcyc7XG5leHBvcnQgKiBmcm9tICcuL2VudGl0eS51dGlscyc7XG5leHBvcnQgKiBmcm9tICcuL3N0b3JlJztcbmV4cG9ydCAqIGZyb20gJy4vc3RhdGUnO1xuZXhwb3J0ICogZnJvbSAnLi93YXRjaGVyJztcbmV4cG9ydCAqIGZyb20gJy4vdHJhbnNhY3Rpb24nO1xuZXhwb3J0ICogZnJvbSAnLi92aWV3JztcblxuZXhwb3J0ICogZnJvbSAnLi9zdHJhdGVnaWVzJztcbiJdfQ==
|