@igo2/common 17.0.0-next.0 → 17.0.0-next.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/action/actionbar/actionbar-item.component.d.ts +75 -0
- package/action/actionbar/actionbar.component.d.ts +148 -0
- package/action/index.d.ts +5 -0
- package/action/public_api.d.ts +4 -0
- package/action/shared/action.interfaces.d.ts +18 -0
- package/action/shared/store.d.ts +8 -0
- package/action/src/action.theming.scss +5 -0
- package/action/src/actionbar/actionbar-item.theming.scss +32 -0
- package/action/src/actionbar/actionbar.theming.scss +22 -0
- package/backdrop/index.d.ts +5 -0
- package/backdrop/public_api.d.ts +2 -0
- package/badge/badge-icon.directive.d.ts +34 -0
- package/badge/index.d.ts +5 -0
- package/badge/public_api.d.ts +2 -0
- package/clickout/index.d.ts +5 -0
- package/clickout/public_api.d.ts +2 -0
- package/clone/index.d.ts +5 -0
- package/clone/public_api.d.ts +2 -0
- package/collapsible/index.d.ts +5 -0
- package/collapsible/public_api.d.ts +6 -0
- package/collapsible/src/collapsible.theming.scss +22 -0
- package/color/color-picker-form-field/index.d.ts +2 -0
- package/color/index.d.ts +5 -0
- package/color/public_api.d.ts +1 -0
- package/confirm-dialog/index.d.ts +5 -0
- package/confirm-dialog/public_api.d.ts +4 -0
- package/context-menu/index.d.ts +5 -0
- package/context-menu/public_api.d.ts +6 -0
- package/custom-html/index.d.ts +5 -0
- package/custom-html/public_api.d.ts +6 -0
- package/dom/index.d.ts +5 -0
- package/dom/public_api.d.ts +3 -0
- package/drag-drop/index.d.ts +5 -0
- package/drag-drop/public_api.d.ts +2 -0
- package/dynamic-component/index.d.ts +5 -0
- package/dynamic-component/public_api.d.ts +4 -0
- package/entity/entity-selector/index.d.ts +2 -0
- package/entity/entity-table/index.d.ts +2 -0
- package/entity/entity-table-paginator/entity-table-paginator.component.d.ts +50 -0
- package/entity/entity-table-paginator/index.d.ts +3 -0
- package/entity/entity.module.d.ts +16 -0
- package/entity/index.d.ts +5 -0
- package/entity/public_api.d.ts +5 -0
- package/entity/shared/transaction.d.ts +179 -0
- package/entity/src/entity-selector/entity-selector.theming.scss +21 -0
- package/entity/src/entity-table/entity-table.theming.scss +37 -0
- package/entity/src/entity.theming.scss +7 -0
- package/environment/index.d.ts +5 -0
- package/esm2022/action/action.module.mjs +19 -0
- package/esm2022/action/actionbar/actionbar-item.component.mjs +192 -0
- package/esm2022/action/actionbar/actionbar.component.mjs +277 -0
- package/esm2022/action/actionbar/actionbar.module.mjs +19 -0
- package/esm2022/action/igo2-common-action.mjs +5 -0
- package/esm2022/action/public_api.mjs +5 -0
- package/esm2022/action/shared/action.enums.mjs +7 -0
- package/esm2022/action/shared/action.interfaces.mjs +2 -0
- package/esm2022/action/shared/index.mjs +4 -0
- package/esm2022/action/shared/store.mjs +8 -0
- package/esm2022/backdrop/backdrop.component.mjs +22 -0
- package/esm2022/backdrop/backdrop.module.mjs +25 -0
- package/esm2022/backdrop/igo2-common-backdrop.mjs +5 -0
- package/esm2022/backdrop/public_api.mjs +3 -0
- package/esm2022/badge/badge-icon.directive.mjs +149 -0
- package/esm2022/badge/badge-icon.module.mjs +25 -0
- package/esm2022/badge/igo2-common-badge.mjs +5 -0
- package/esm2022/badge/public_api.mjs +3 -0
- package/esm2022/clickout/clickout.directive.mjs +32 -0
- package/esm2022/clickout/clickout.module.mjs +25 -0
- package/esm2022/clickout/igo2-common-clickout.mjs +5 -0
- package/esm2022/clickout/public_api.mjs +3 -0
- package/esm2022/clone/clone.module.mjs +25 -0
- package/esm2022/clone/clone.pipe.mjs +25 -0
- package/esm2022/clone/igo2-common-clone.mjs +5 -0
- package/esm2022/clone/public_api.mjs +3 -0
- package/esm2022/collapsible/collapse.directive.mjs +57 -0
- package/esm2022/collapsible/collapsible.component.mjs +38 -0
- package/esm2022/collapsible/collapsible.module.mjs +26 -0
- package/esm2022/collapsible/igo2-common-collapsible.mjs +5 -0
- package/esm2022/collapsible/public_api.mjs +10 -0
- package/esm2022/color/color-picker-form-field/color-picker-form-field.component.mjs +104 -0
- package/esm2022/color/color-picker-form-field/color-picker-form-field.module.mjs +19 -0
- package/esm2022/color/color-picker-form-field/index.mjs +3 -0
- package/esm2022/color/igo2-common-color.mjs +5 -0
- package/esm2022/color/public_api.mjs +2 -0
- package/esm2022/confirm-dialog/confirm-dialog.component.mjs +31 -0
- package/esm2022/confirm-dialog/confirm-dialog.interface.mjs +2 -0
- package/esm2022/confirm-dialog/confirm-dialog.module.mjs +27 -0
- package/esm2022/confirm-dialog/confirm-dialog.service.mjs +35 -0
- package/esm2022/confirm-dialog/igo2-common-confirm-dialog.mjs +5 -0
- package/esm2022/confirm-dialog/public_api.mjs +5 -0
- package/esm2022/context-menu/context-menu.directive.mjs +109 -0
- package/esm2022/context-menu/context-menu.module.mjs +26 -0
- package/esm2022/context-menu/igo2-common-context-menu.mjs +5 -0
- package/esm2022/context-menu/long-press.directive.mjs +66 -0
- package/esm2022/context-menu/public_api.mjs +10 -0
- package/esm2022/custom-html/custom-html.component.mjs +22 -0
- package/esm2022/custom-html/custom-html.module.mjs +25 -0
- package/esm2022/custom-html/custom-html.pipe.mjs +23 -0
- package/esm2022/custom-html/igo2-common-custom-html.mjs +5 -0
- package/esm2022/custom-html/public_api.mjs +10 -0
- package/esm2022/dom/dom.interfaces.mjs +2 -0
- package/esm2022/dom/dom.module.mjs +27 -0
- package/esm2022/dom/dom.service.mjs +35 -0
- package/esm2022/dom/igo2-common-dom.mjs +5 -0
- package/esm2022/dom/public_api.mjs +4 -0
- package/esm2022/drag-drop/drag-drop.directive.mjs +82 -0
- package/esm2022/drag-drop/drag-drop.module.mjs +25 -0
- package/esm2022/drag-drop/igo2-common-drag-drop.mjs +5 -0
- package/esm2022/drag-drop/public_api.mjs +3 -0
- package/esm2022/dynamic-component/dynamic-component.module.mjs +19 -0
- package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +129 -0
- package/esm2022/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +19 -0
- package/esm2022/dynamic-component/igo2-common-dynamic-component.mjs +5 -0
- package/esm2022/dynamic-component/public_api.mjs +5 -0
- package/esm2022/dynamic-component/shared/dynamic-component.interfaces.mjs +2 -0
- package/esm2022/dynamic-component/shared/dynamic-component.mjs +183 -0
- package/esm2022/dynamic-component/shared/dynamic-component.service.mjs +30 -0
- package/esm2022/dynamic-component/shared/index.mjs +4 -0
- package/esm2022/entity/entity-selector/entity-selector.component.mjs +174 -0
- package/esm2022/entity/entity-selector/entity-selector.module.mjs +19 -0
- package/esm2022/entity/entity-selector/index.mjs +3 -0
- package/esm2022/entity/entity-table/entity-table-row.directive.mjs +138 -0
- package/esm2022/entity/entity-table/entity-table.component.mjs +883 -0
- package/esm2022/entity/entity-table/entity-table.module.mjs +19 -0
- package/esm2022/entity/entity-table/index.mjs +3 -0
- package/esm2022/entity/entity-table-paginator/entity-table-paginator.component.mjs +158 -0
- package/esm2022/entity/entity-table-paginator/entity-table-paginator.interface.mjs +2 -0
- package/esm2022/entity/entity-table-paginator/entity-table-paginator.module.mjs +19 -0
- package/esm2022/entity/entity-table-paginator/index.mjs +4 -0
- package/esm2022/entity/entity.module.mjs +30 -0
- package/esm2022/entity/igo2-common-entity.mjs +5 -0
- package/esm2022/entity/public_api.mjs +6 -0
- package/esm2022/entity/shared/entity.enums.mjs +28 -0
- package/esm2022/entity/shared/entity.interfaces.mjs +2 -0
- package/esm2022/entity/shared/entity.utils.mjs +73 -0
- package/esm2022/entity/shared/index.mjs +10 -0
- package/esm2022/entity/shared/state.mjs +194 -0
- package/esm2022/entity/shared/store.mjs +322 -0
- package/esm2022/entity/shared/strategies/filter-custom-function.mjs +80 -0
- package/esm2022/entity/shared/strategies/filter-selection.mjs +81 -0
- package/esm2022/entity/shared/strategies/index.mjs +4 -0
- package/esm2022/entity/shared/strategies/strategy.mjs +78 -0
- package/esm2022/entity/shared/transaction.mjs +329 -0
- package/esm2022/entity/shared/view.mjs +330 -0
- package/esm2022/entity/shared/watcher.mjs +135 -0
- package/esm2022/environment/environment.interface.mjs +2 -0
- package/esm2022/environment/igo2-common-environment.mjs +5 -0
- package/esm2022/environment/public_api.mjs +2 -0
- package/esm2022/flexible/flexible.component.mjs +135 -0
- package/esm2022/flexible/flexible.module.mjs +25 -0
- package/esm2022/flexible/flexible.type.mjs +2 -0
- package/esm2022/flexible/igo2-common-flexible.mjs +5 -0
- package/esm2022/flexible/public_api.mjs +4 -0
- package/esm2022/form/form/form.component.mjs +103 -0
- package/esm2022/form/form/form.module.mjs +19 -0
- package/esm2022/form/form/index.mjs +3 -0
- package/esm2022/form/form-dialog/form-dialog.component.mjs +94 -0
- package/esm2022/form/form-dialog/form-dialog.interface.mjs +2 -0
- package/esm2022/form/form-dialog/form-dialog.module.mjs +31 -0
- package/esm2022/form/form-dialog/form-dialog.service.mjs +30 -0
- package/esm2022/form/form-dialog/index.mjs +5 -0
- package/esm2022/form/form-field/form-field-select.component.mjs +117 -0
- package/esm2022/form/form-field/form-field-text.component.mjs +126 -0
- package/esm2022/form/form-field/form-field-textarea.component.mjs +95 -0
- package/esm2022/form/form-field/form-field.component.mjs +65 -0
- package/esm2022/form/form-field/form-field.directive.mjs +11 -0
- package/esm2022/form/form-field/form-field.module.mjs +23 -0
- package/esm2022/form/form-field/index.mjs +7 -0
- package/esm2022/form/form-group/form-group.component.mjs +82 -0
- package/esm2022/form/form-group/form-group.module.mjs +19 -0
- package/esm2022/form/form-group/index.mjs +3 -0
- package/esm2022/form/form.module.mjs +32 -0
- package/esm2022/form/igo2-common-form.mjs +5 -0
- package/esm2022/form/public_api.mjs +7 -0
- package/esm2022/form/shared/form-field-component.mjs +7 -0
- package/esm2022/form/shared/form-field.service.mjs +29 -0
- package/esm2022/form/shared/form.interfaces.mjs +2 -0
- package/esm2022/form/shared/form.service.mjs +82 -0
- package/esm2022/form/shared/form.utils.mjs +41 -0
- package/esm2022/form/shared/index.mjs +6 -0
- package/esm2022/home-button/home-button.component.mjs +26 -0
- package/esm2022/home-button/home-button.module.mjs +19 -0
- package/esm2022/home-button/igo2-common-home-button.mjs +5 -0
- package/esm2022/home-button/public_api.mjs +3 -0
- package/esm2022/icon/icon/icon.component.mjs +38 -0
- package/esm2022/icon/icon.provider.mjs +14 -0
- package/esm2022/icon/igo2-common-icon.mjs +5 -0
- package/esm2022/icon/public_api.mjs +4 -0
- package/esm2022/icon/shared/icon.interface.mjs +2 -0
- package/esm2022/icon/shared/icon.service.mjs +26 -0
- package/esm2022/icon/shared/icons.mjs +32 -0
- package/esm2022/icon/shared/index.mjs +4 -0
- package/esm2022/image/igo2-common-image.mjs +5 -0
- package/esm2022/image/image-error.directive.mjs +35 -0
- package/esm2022/image/image.module.mjs +26 -0
- package/esm2022/image/public_api.mjs +7 -0
- package/esm2022/image/secure-image.pipe.mjs +66 -0
- package/esm2022/interactive-tour/igo2-common-interactive-tour.mjs +5 -0
- package/esm2022/interactive-tour/interactive-tour.component.mjs +133 -0
- package/esm2022/interactive-tour/interactive-tour.interface.mjs +2 -0
- package/esm2022/interactive-tour/interactive-tour.loader.mjs +49 -0
- package/esm2022/interactive-tour/interactive-tour.module.mjs +19 -0
- package/esm2022/interactive-tour/interactive-tour.service.mjs +303 -0
- package/esm2022/interactive-tour/public_api.mjs +6 -0
- package/esm2022/json-dialog/igo2-common-json-dialog.mjs +5 -0
- package/esm2022/json-dialog/json-dialog.component.mjs +38 -0
- package/esm2022/json-dialog/json-dialog.module.mjs +26 -0
- package/esm2022/json-dialog/json-dialog.service.mjs +26 -0
- package/esm2022/json-dialog/public_api.mjs +4 -0
- package/esm2022/keyvalue/igo2-common-keyvalue.mjs +5 -0
- package/esm2022/keyvalue/keyvalue.module.mjs +25 -0
- package/esm2022/keyvalue/keyvalue.pipe.mjs +19 -0
- package/esm2022/keyvalue/public_api.mjs +3 -0
- package/esm2022/list/igo2-common-list.mjs +5 -0
- package/esm2022/list/list-item.directive.mjs +166 -0
- package/esm2022/list/list.component.mjs +252 -0
- package/esm2022/list/list.module.mjs +26 -0
- package/esm2022/list/public_api.mjs +7 -0
- package/esm2022/panel/igo2-common-panel.mjs +5 -0
- package/esm2022/panel/panel.component.mjs +30 -0
- package/esm2022/panel/panel.module.mjs +19 -0
- package/esm2022/panel/public_api.mjs +3 -0
- package/esm2022/public_api.mjs +17 -78
- package/esm2022/select-value-dialog/igo2-common-select-value-dialog.mjs +5 -0
- package/esm2022/select-value-dialog/public_api.mjs +6 -0
- package/esm2022/select-value-dialog/select-value-check-radio-dialog.component.mjs +103 -0
- package/esm2022/select-value-dialog/select-value-dialog.enums.mjs +6 -0
- package/esm2022/select-value-dialog/select-value-dialog.interface.mjs +2 -0
- package/esm2022/select-value-dialog/select-value-dialog.module.mjs +27 -0
- package/esm2022/select-value-dialog/select-value-dialog.service.mjs +29 -0
- package/esm2022/sidenav/igo2-common-sidenav.mjs +5 -0
- package/esm2022/sidenav/public_api.mjs +3 -0
- package/esm2022/sidenav/sidenav-shim.directive.mjs +58 -0
- package/esm2022/sidenav/sidenav.module.mjs +25 -0
- package/esm2022/spinner/igo2-common-spinner.mjs +5 -0
- package/esm2022/spinner/public_api.mjs +4 -0
- package/esm2022/spinner/spinner-activity.directive.mjs +56 -0
- package/esm2022/spinner/spinner.component.mjs +30 -0
- package/esm2022/spinner/spinner.module.mjs +26 -0
- package/esm2022/stop-propagation/igo2-common-stop-propagation.mjs +5 -0
- package/esm2022/stop-propagation/public_api.mjs +10 -0
- package/esm2022/stop-propagation/stop-drop-propagation.directive.mjs +21 -0
- package/esm2022/stop-propagation/stop-propagation.directive.mjs +20 -0
- package/esm2022/stop-propagation/stop-propagation.module.mjs +26 -0
- package/esm2022/table/igo2-common-table.mjs +5 -0
- package/esm2022/table/public_api.mjs +7 -0
- package/esm2022/table/table-action-color.enum.mjs +7 -0
- package/esm2022/table/table-database.mjs +28 -0
- package/esm2022/table/table-datasource.mjs +64 -0
- package/esm2022/table/table-model.interface.mjs +2 -0
- package/esm2022/table/table.component.mjs +143 -0
- package/esm2022/table/table.module.mjs +25 -0
- package/esm2022/tool/igo2-common-tool.mjs +5 -0
- package/esm2022/tool/public_api.mjs +4 -0
- package/esm2022/tool/shared/index.mjs +6 -0
- package/esm2022/tool/shared/tool-component.mjs +9 -0
- package/esm2022/tool/shared/tool.interface.mjs +2 -0
- package/esm2022/tool/shared/tool.service.mjs +43 -0
- package/esm2022/tool/shared/toolbox.enums.mjs +2 -0
- package/esm2022/tool/shared/toolbox.mjs +192 -0
- package/esm2022/tool/tool.module.mjs +28 -0
- package/esm2022/tool/toolbox/index.mjs +3 -0
- package/esm2022/tool/toolbox/toolbox.animation.mjs +10 -0
- package/esm2022/tool/toolbox/toolbox.component.mjs +241 -0
- package/esm2022/tool/toolbox/toolbox.module.mjs +19 -0
- package/esm2022/widget/igo2-common-widget.mjs +5 -0
- package/esm2022/widget/public_api.mjs +4 -0
- package/esm2022/widget/shared/index.mjs +4 -0
- package/esm2022/widget/shared/widget.interfaces.mjs +2 -0
- package/esm2022/widget/shared/widget.mjs +4 -0
- package/esm2022/widget/shared/widget.service.mjs +22 -0
- package/esm2022/widget/widget-outlet/index.mjs +3 -0
- package/esm2022/widget/widget-outlet/widget-outlet.component.mjs +113 -0
- package/esm2022/widget/widget-outlet/widget-outlet.module.mjs +19 -0
- package/esm2022/widget/widget.module.mjs +22 -0
- package/esm2022/workspace/igo2-common-workspace.mjs +5 -0
- package/esm2022/workspace/public_api.mjs +5 -0
- package/esm2022/workspace/shared/index.mjs +4 -0
- package/esm2022/workspace/shared/store.mjs +37 -0
- package/esm2022/workspace/shared/workspace.interfaces.mjs +2 -0
- package/esm2022/workspace/shared/workspace.mjs +143 -0
- package/esm2022/workspace/workspace-selector/index.mjs +3 -0
- package/esm2022/workspace/workspace-selector/workspace-selector.component.mjs +51 -0
- package/esm2022/workspace/workspace-selector/workspace-selector.module.mjs +19 -0
- package/esm2022/workspace/workspace-widget-outlet/index.mjs +3 -0
- package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +74 -0
- package/esm2022/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +19 -0
- package/esm2022/workspace/workspace.module.mjs +27 -0
- package/fesm2022/igo2-common-action.mjs +505 -0
- package/fesm2022/igo2-common-action.mjs.map +1 -0
- package/fesm2022/igo2-common-backdrop.mjs +51 -0
- package/fesm2022/igo2-common-backdrop.mjs.map +1 -0
- package/fesm2022/igo2-common-badge.mjs +178 -0
- package/fesm2022/igo2-common-badge.mjs.map +1 -0
- package/fesm2022/igo2-common-clickout.mjs +61 -0
- package/fesm2022/igo2-common-clickout.mjs.map +1 -0
- package/fesm2022/igo2-common-clone.mjs +54 -0
- package/fesm2022/igo2-common-clone.mjs.map +1 -0
- package/fesm2022/igo2-common-collapsible.mjs +126 -0
- package/fesm2022/igo2-common-collapsible.mjs.map +1 -0
- package/fesm2022/igo2-common-color.mjs +127 -0
- package/fesm2022/igo2-common-color.mjs.map +1 -0
- package/fesm2022/igo2-common-confirm-dialog.mjs +91 -0
- package/fesm2022/igo2-common-confirm-dialog.mjs.map +1 -0
- package/fesm2022/igo2-common-context-menu.mjs +206 -0
- package/fesm2022/igo2-common-context-menu.mjs.map +1 -0
- package/fesm2022/igo2-common-custom-html.mjs +74 -0
- package/fesm2022/igo2-common-custom-html.mjs.map +1 -0
- package/fesm2022/igo2-common-dom.mjs +65 -0
- package/fesm2022/igo2-common-dom.mjs.map +1 -0
- package/fesm2022/igo2-common-drag-drop.mjs +111 -0
- package/fesm2022/igo2-common-drag-drop.mjs.map +1 -0
- package/fesm2022/igo2-common-dynamic-component.mjs +375 -0
- package/fesm2022/igo2-common-dynamic-component.mjs.map +1 -0
- package/fesm2022/igo2-common-entity.mjs +3036 -0
- package/fesm2022/igo2-common-entity.mjs.map +1 -0
- package/fesm2022/igo2-common-environment.mjs +4 -0
- package/fesm2022/igo2-common-environment.mjs.map +1 -0
- package/fesm2022/igo2-common-flexible.mjs +163 -0
- package/fesm2022/igo2-common-flexible.mjs.map +1 -0
- package/fesm2022/igo2-common-form.mjs +898 -0
- package/fesm2022/igo2-common-form.mjs.map +1 -0
- package/fesm2022/igo2-common-home-button.mjs +49 -0
- package/fesm2022/igo2-common-home-button.mjs.map +1 -0
- package/fesm2022/igo2-common-icon.mjs +108 -0
- package/fesm2022/igo2-common-icon.mjs.map +1 -0
- package/fesm2022/igo2-common-image.mjs +129 -0
- package/fesm2022/igo2-common-image.mjs.map +1 -0
- package/fesm2022/igo2-common-interactive-tour.mjs +490 -0
- package/fesm2022/igo2-common-interactive-tour.mjs.map +1 -0
- package/fesm2022/igo2-common-json-dialog.mjs +88 -0
- package/fesm2022/igo2-common-json-dialog.mjs.map +1 -0
- package/fesm2022/igo2-common-keyvalue.mjs +48 -0
- package/fesm2022/igo2-common-keyvalue.mjs.map +1 -0
- package/fesm2022/igo2-common-list.mjs +446 -0
- package/fesm2022/igo2-common-list.mjs.map +1 -0
- package/fesm2022/igo2-common-panel.mjs +53 -0
- package/fesm2022/igo2-common-panel.mjs.map +1 -0
- package/fesm2022/igo2-common-select-value-dialog.mjs +161 -0
- package/fesm2022/igo2-common-select-value-dialog.mjs.map +1 -0
- package/fesm2022/igo2-common-sidenav.mjs +86 -0
- package/fesm2022/igo2-common-sidenav.mjs.map +1 -0
- package/fesm2022/igo2-common-spinner.mjs +110 -0
- package/fesm2022/igo2-common-spinner.mjs.map +1 -0
- package/fesm2022/igo2-common-stop-propagation.mjs +73 -0
- package/fesm2022/igo2-common-stop-propagation.mjs.map +1 -0
- package/fesm2022/igo2-common-table.mjs +264 -0
- package/fesm2022/igo2-common-table.mjs.map +1 -0
- package/fesm2022/igo2-common-tool.mjs +535 -0
- package/fesm2022/igo2-common-tool.mjs.map +1 -0
- package/fesm2022/igo2-common-widget.mjs +176 -0
- package/fesm2022/igo2-common-widget.mjs.map +1 -0
- package/fesm2022/igo2-common-workspace.mjs +361 -0
- package/fesm2022/igo2-common-workspace.mjs.map +1 -0
- package/fesm2022/igo2-common.mjs +16 -8751
- package/fesm2022/igo2-common.mjs.map +1 -1
- package/flexible/flexible.component.d.ts +41 -0
- package/flexible/index.d.ts +5 -0
- package/flexible/public_api.d.ts +3 -0
- package/form/form/index.d.ts +2 -0
- package/form/form-dialog/form-dialog.component.d.ts +23 -0
- package/form/form-dialog/form-dialog.interface.d.ts +18 -0
- package/form/form-dialog/index.d.ts +4 -0
- package/form/form-field/form-field.directive.d.ts +5 -0
- package/form/form-field/index.d.ts +6 -0
- package/form/form-group/index.d.ts +2 -0
- package/form/form.module.d.ts +18 -0
- package/form/index.d.ts +5 -0
- package/form/public_api.d.ts +6 -0
- package/home-button/index.d.ts +5 -0
- package/home-button/public_api.d.ts +2 -0
- package/home-button/src/home-button.theming.scss +18 -0
- package/icon/icon/icon.component.d.ts +14 -0
- package/icon/icon.provider.d.ts +4 -0
- package/icon/index.d.ts +5 -0
- package/icon/public_api.d.ts +3 -0
- package/icon/shared/icon.interface.d.ts +4 -0
- package/icon/shared/icon.service.d.ts +12 -0
- package/icon/shared/icons.d.ts +9 -0
- package/icon/shared/index.d.ts +3 -0
- package/image/index.d.ts +5 -0
- package/image/public_api.d.ts +6 -0
- package/image/secure-image.pipe.d.ts +13 -0
- package/interactive-tour/index.d.ts +5 -0
- package/interactive-tour/interactive-tour.component.d.ts +33 -0
- package/interactive-tour/interactive-tour.loader.d.ts +18 -0
- package/interactive-tour/interactive-tour.service.d.ts +31 -0
- package/interactive-tour/public_api.d.ts +5 -0
- package/interactive-tour/src/interactive-tour.theming.scss +32 -0
- package/json-dialog/index.d.ts +5 -0
- package/json-dialog/public_api.d.ts +3 -0
- package/keyvalue/index.d.ts +5 -0
- package/keyvalue/public_api.d.ts +2 -0
- package/list/index.d.ts +5 -0
- package/list/public_api.d.ts +6 -0
- package/list/src/list.theming.scss +58 -0
- package/package.json +201 -3
- package/panel/index.d.ts +5 -0
- package/panel/public_api.d.ts +2 -0
- package/panel/src/panel.theming.scss +30 -0
- package/public_api.d.ts +16 -77
- package/select-value-dialog/index.d.ts +5 -0
- package/select-value-dialog/public_api.d.ts +5 -0
- package/select-value-dialog/select-value-check-radio-dialog.component.d.ts +25 -0
- package/sidenav/index.d.ts +5 -0
- package/sidenav/public_api.d.ts +2 -0
- package/spinner/index.d.ts +5 -0
- package/spinner/public_api.d.ts +3 -0
- package/spinner/spinner-activity.directive.d.ts +32 -0
- package/spinner/spinner.module.d.ts +14 -0
- package/src/common-theme.scss +19 -19
- package/stop-propagation/index.d.ts +5 -0
- package/stop-propagation/public_api.d.ts +6 -0
- package/table/index.d.ts +5 -0
- package/table/public_api.d.ts +6 -0
- package/tool/index.d.ts +5 -0
- package/tool/public_api.d.ts +3 -0
- package/tool/shared/tool.interface.d.ts +18 -0
- package/tool/shared/toolbox.d.ts +98 -0
- package/tool/src/tool.theming.scss +5 -0
- package/tool/src/toolbox/toolbox.theming.scss +105 -0
- package/tool/toolbox/index.d.ts +2 -0
- package/tool/toolbox/toolbox.component.d.ts +128 -0
- package/widget/index.d.ts +5 -0
- package/widget/public_api.d.ts +3 -0
- package/widget/shared/widget.d.ts +4 -0
- package/widget/shared/widget.service.d.ts +10 -0
- package/widget/widget-outlet/index.d.ts +2 -0
- package/widget/widget-outlet/widget-outlet.component.d.ts +71 -0
- package/workspace/index.d.ts +5 -0
- package/workspace/public_api.d.ts +4 -0
- package/workspace/shared/store.d.ts +20 -0
- package/workspace/shared/workspace.d.ts +108 -0
- package/workspace/shared/workspace.interfaces.d.ts +11 -0
- package/workspace/workspace-selector/index.d.ts +2 -0
- package/workspace/workspace-selector/workspace-selector.component.d.ts +38 -0
- package/workspace/workspace-widget-outlet/index.d.ts +2 -0
- package/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +57 -0
- package/workspace/workspace.module.d.ts +14 -0
- package/esm2022/lib/action/action.module.mjs +0 -19
- package/esm2022/lib/action/actionbar/actionbar-item.component.mjs +0 -206
- package/esm2022/lib/action/actionbar/actionbar.component.mjs +0 -277
- package/esm2022/lib/action/actionbar/actionbar.module.mjs +0 -19
- package/esm2022/lib/action/index.mjs +0 -3
- package/esm2022/lib/action/shared/action.enums.mjs +0 -7
- package/esm2022/lib/action/shared/action.interfaces.mjs +0 -2
- package/esm2022/lib/action/shared/index.mjs +0 -4
- package/esm2022/lib/action/shared/store.mjs +0 -8
- package/esm2022/lib/backdrop/backdrop.component.mjs +0 -22
- package/esm2022/lib/backdrop/backdrop.module.mjs +0 -25
- package/esm2022/lib/backdrop/index.mjs +0 -2
- package/esm2022/lib/badge-icon/badge-icon.directive.mjs +0 -152
- package/esm2022/lib/badge-icon/badge-icon.module.mjs +0 -25
- package/esm2022/lib/badge-icon/index.mjs +0 -2
- package/esm2022/lib/clickout/clickout.directive.mjs +0 -32
- package/esm2022/lib/clickout/clickout.module.mjs +0 -25
- package/esm2022/lib/clickout/index.mjs +0 -2
- package/esm2022/lib/clone/clone.module.mjs +0 -25
- package/esm2022/lib/clone/clone.pipe.mjs +0 -25
- package/esm2022/lib/clone/index.mjs +0 -2
- package/esm2022/lib/collapsible/collapse.directive.mjs +0 -57
- package/esm2022/lib/collapsible/collapsible.component.mjs +0 -38
- package/esm2022/lib/collapsible/collapsible.module.mjs +0 -26
- package/esm2022/lib/collapsible/index.mjs +0 -9
- package/esm2022/lib/color-picker-form-field/color-picker-form-field.component.mjs +0 -104
- package/esm2022/lib/color-picker-form-field/color-picker-form-field.module.mjs +0 -19
- package/esm2022/lib/color-picker-form-field/index.mjs +0 -2
- package/esm2022/lib/confirm-dialog/confirm-dialog.component.mjs +0 -31
- package/esm2022/lib/confirm-dialog/confirm-dialog.interface.mjs +0 -2
- package/esm2022/lib/confirm-dialog/confirm-dialog.module.mjs +0 -27
- package/esm2022/lib/confirm-dialog/confirm-dialog.service.mjs +0 -35
- package/esm2022/lib/confirm-dialog/index.mjs +0 -4
- package/esm2022/lib/context-menu/context-menu.directive.mjs +0 -109
- package/esm2022/lib/context-menu/context-menu.module.mjs +0 -26
- package/esm2022/lib/context-menu/index.mjs +0 -9
- package/esm2022/lib/context-menu/long-press.directive.mjs +0 -66
- package/esm2022/lib/custom-html/custom-html.component.mjs +0 -22
- package/esm2022/lib/custom-html/custom-html.module.mjs +0 -25
- package/esm2022/lib/custom-html/custom-html.pipe.mjs +0 -23
- package/esm2022/lib/custom-html/index.mjs +0 -9
- package/esm2022/lib/dom/dom.interfaces.mjs +0 -2
- package/esm2022/lib/dom/dom.module.mjs +0 -27
- package/esm2022/lib/dom/dom.service.mjs +0 -35
- package/esm2022/lib/dom/index.mjs +0 -3
- package/esm2022/lib/drag-drop/drag-drop.directive.mjs +0 -82
- package/esm2022/lib/drag-drop/drag-drop.module.mjs +0 -25
- package/esm2022/lib/drag-drop/index.mjs +0 -2
- package/esm2022/lib/dynamic-component/dynamic-component.module.mjs +0 -19
- package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.mjs +0 -129
- package/esm2022/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.mjs +0 -19
- package/esm2022/lib/dynamic-component/index.mjs +0 -3
- package/esm2022/lib/dynamic-component/shared/dynamic-component.interfaces.mjs +0 -2
- package/esm2022/lib/dynamic-component/shared/dynamic-component.mjs +0 -183
- package/esm2022/lib/dynamic-component/shared/dynamic-component.service.mjs +0 -30
- package/esm2022/lib/dynamic-component/shared/index.mjs +0 -4
- package/esm2022/lib/entity/entity-selector/entity-selector.component.mjs +0 -174
- package/esm2022/lib/entity/entity-selector/entity-selector.module.mjs +0 -19
- package/esm2022/lib/entity/entity-table/entity-table-row.directive.mjs +0 -138
- package/esm2022/lib/entity/entity-table/entity-table.component.mjs +0 -884
- package/esm2022/lib/entity/entity-table/entity-table.module.mjs +0 -19
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.component.mjs +0 -156
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.interface.mjs +0 -2
- package/esm2022/lib/entity/entity-table-paginator/entity-table-paginator.module.mjs +0 -19
- package/esm2022/lib/entity/entity-table-paginator/index.mjs +0 -3
- package/esm2022/lib/entity/entity.module.mjs +0 -22
- package/esm2022/lib/entity/index.mjs +0 -14
- package/esm2022/lib/entity/shared/entity.enums.mjs +0 -28
- package/esm2022/lib/entity/shared/entity.interfaces.mjs +0 -2
- package/esm2022/lib/entity/shared/entity.utils.mjs +0 -73
- package/esm2022/lib/entity/shared/index.mjs +0 -10
- package/esm2022/lib/entity/shared/state.mjs +0 -194
- package/esm2022/lib/entity/shared/store.mjs +0 -322
- package/esm2022/lib/entity/shared/strategies/filter-custom-function.mjs +0 -80
- package/esm2022/lib/entity/shared/strategies/filter-selection.mjs +0 -81
- package/esm2022/lib/entity/shared/strategies/index.mjs +0 -4
- package/esm2022/lib/entity/shared/strategies/strategy.mjs +0 -78
- package/esm2022/lib/entity/shared/transaction.mjs +0 -329
- package/esm2022/lib/entity/shared/view.mjs +0 -330
- package/esm2022/lib/entity/shared/watcher.mjs +0 -135
- package/esm2022/lib/environment/environment.interface.mjs +0 -2
- package/esm2022/lib/environment/index.mjs +0 -2
- package/esm2022/lib/flexible/flexible.component.mjs +0 -135
- package/esm2022/lib/flexible/flexible.module.mjs +0 -25
- package/esm2022/lib/flexible/flexible.type.mjs +0 -2
- package/esm2022/lib/flexible/index.mjs +0 -3
- package/esm2022/lib/form/form/form.component.mjs +0 -103
- package/esm2022/lib/form/form/form.module.mjs +0 -19
- package/esm2022/lib/form/form-field/form-field-select.component.mjs +0 -117
- package/esm2022/lib/form/form-field/form-field-text.component.mjs +0 -126
- package/esm2022/lib/form/form-field/form-field-textarea.component.mjs +0 -95
- package/esm2022/lib/form/form-field/form-field.component.mjs +0 -65
- package/esm2022/lib/form/form-field/form-field.module.mjs +0 -23
- package/esm2022/lib/form/form-field/index.mjs +0 -15
- package/esm2022/lib/form/form-group/form-group.component.mjs +0 -82
- package/esm2022/lib/form/form-group/form-group.module.mjs +0 -19
- package/esm2022/lib/form/form.module.mjs +0 -25
- package/esm2022/lib/form/index.mjs +0 -13
- package/esm2022/lib/form/shared/form-field-component.mjs +0 -7
- package/esm2022/lib/form/shared/form-field.service.mjs +0 -29
- package/esm2022/lib/form/shared/form.interfaces.mjs +0 -2
- package/esm2022/lib/form/shared/form.service.mjs +0 -82
- package/esm2022/lib/form/shared/form.utils.mjs +0 -41
- package/esm2022/lib/form/shared/index.mjs +0 -6
- package/esm2022/lib/form-dialog/form-dialog.component.mjs +0 -94
- package/esm2022/lib/form-dialog/form-dialog.interface.mjs +0 -2
- package/esm2022/lib/form-dialog/form-dialog.module.mjs +0 -31
- package/esm2022/lib/form-dialog/form-dialog.service.mjs +0 -30
- package/esm2022/lib/form-dialog/index.mjs +0 -4
- package/esm2022/lib/home-button/home-button.component.mjs +0 -26
- package/esm2022/lib/home-button/home-button.module.mjs +0 -19
- package/esm2022/lib/home-button/index.mjs +0 -2
- package/esm2022/lib/image/image-error.directive.mjs +0 -35
- package/esm2022/lib/image/image.module.mjs +0 -26
- package/esm2022/lib/image/index.mjs +0 -6
- package/esm2022/lib/image/secure-image.pipe.mjs +0 -66
- package/esm2022/lib/interactive-tour/index.mjs +0 -5
- package/esm2022/lib/interactive-tour/interactive-tour.component.mjs +0 -126
- package/esm2022/lib/interactive-tour/interactive-tour.interface.mjs +0 -2
- package/esm2022/lib/interactive-tour/interactive-tour.loader.mjs +0 -49
- package/esm2022/lib/interactive-tour/interactive-tour.module.mjs +0 -19
- package/esm2022/lib/interactive-tour/interactive-tour.service.mjs +0 -299
- package/esm2022/lib/json-dialog/index.mjs +0 -3
- package/esm2022/lib/json-dialog/json-dialog.component.mjs +0 -38
- package/esm2022/lib/json-dialog/json-dialog.module.mjs +0 -26
- package/esm2022/lib/json-dialog/json-dialog.service.mjs +0 -26
- package/esm2022/lib/keyvalue/index.mjs +0 -2
- package/esm2022/lib/keyvalue/keyvalue.module.mjs +0 -25
- package/esm2022/lib/keyvalue/keyvalue.pipe.mjs +0 -19
- package/esm2022/lib/list/index.mjs +0 -6
- package/esm2022/lib/list/list-item.directive.mjs +0 -166
- package/esm2022/lib/list/list.component.mjs +0 -252
- package/esm2022/lib/list/list.module.mjs +0 -26
- package/esm2022/lib/panel/index.mjs +0 -2
- package/esm2022/lib/panel/panel.component.mjs +0 -30
- package/esm2022/lib/panel/panel.module.mjs +0 -19
- package/esm2022/lib/select-value-dialog/index.mjs +0 -5
- package/esm2022/lib/select-value-dialog/select-value-check-radio-dialog.component.mjs +0 -103
- package/esm2022/lib/select-value-dialog/select-value-dialog.enums.mjs +0 -6
- package/esm2022/lib/select-value-dialog/select-value-dialog.interface.mjs +0 -2
- package/esm2022/lib/select-value-dialog/select-value-dialog.module.mjs +0 -27
- package/esm2022/lib/select-value-dialog/select-value-dialog.service.mjs +0 -29
- package/esm2022/lib/sidenav/index.mjs +0 -2
- package/esm2022/lib/sidenav/sidenav-shim.directive.mjs +0 -58
- package/esm2022/lib/sidenav/sidenav.module.mjs +0 -25
- package/esm2022/lib/spinner/index.mjs +0 -9
- package/esm2022/lib/spinner/spinner-activity.directive.mjs +0 -56
- package/esm2022/lib/spinner/spinner.component.mjs +0 -30
- package/esm2022/lib/spinner/spinner.module.mjs +0 -21
- package/esm2022/lib/stop-propagation/index.mjs +0 -9
- package/esm2022/lib/stop-propagation/stop-drop-propagation.directive.mjs +0 -21
- package/esm2022/lib/stop-propagation/stop-propagation.directive.mjs +0 -20
- package/esm2022/lib/stop-propagation/stop-propagation.module.mjs +0 -26
- package/esm2022/lib/table/index.mjs +0 -6
- package/esm2022/lib/table/table-action-color.enum.mjs +0 -7
- package/esm2022/lib/table/table-database.mjs +0 -28
- package/esm2022/lib/table/table-datasource.mjs +0 -64
- package/esm2022/lib/table/table-model.interface.mjs +0 -2
- package/esm2022/lib/table/table.component.mjs +0 -143
- package/esm2022/lib/table/table.module.mjs +0 -25
- package/esm2022/lib/tool/index.mjs +0 -3
- package/esm2022/lib/tool/shared/index.mjs +0 -6
- package/esm2022/lib/tool/shared/tool-component.mjs +0 -9
- package/esm2022/lib/tool/shared/tool.interface.mjs +0 -2
- package/esm2022/lib/tool/shared/tool.service.mjs +0 -43
- package/esm2022/lib/tool/shared/toolbox.enums.mjs +0 -2
- package/esm2022/lib/tool/shared/toolbox.mjs +0 -184
- package/esm2022/lib/tool/tool.module.mjs +0 -28
- package/esm2022/lib/tool/toolbox/toolbox.animation.mjs +0 -10
- package/esm2022/lib/tool/toolbox/toolbox.component.mjs +0 -243
- package/esm2022/lib/tool/toolbox/toolbox.module.mjs +0 -19
- package/esm2022/lib/widget/index.mjs +0 -3
- package/esm2022/lib/widget/shared/index.mjs +0 -4
- package/esm2022/lib/widget/shared/widget.interfaces.mjs +0 -2
- package/esm2022/lib/widget/shared/widget.mjs +0 -4
- package/esm2022/lib/widget/shared/widget.service.mjs +0 -22
- package/esm2022/lib/widget/widget-outlet/widget-outlet.component.mjs +0 -114
- package/esm2022/lib/widget/widget-outlet/widget-outlet.module.mjs +0 -19
- package/esm2022/lib/widget/widget.module.mjs +0 -22
- package/esm2022/lib/workspace/index.mjs +0 -10
- package/esm2022/lib/workspace/shared/index.mjs +0 -4
- package/esm2022/lib/workspace/shared/store.mjs +0 -37
- package/esm2022/lib/workspace/shared/workspace.interfaces.mjs +0 -2
- package/esm2022/lib/workspace/shared/workspace.mjs +0 -143
- package/esm2022/lib/workspace/workspace-selector/workspace-selector.component.mjs +0 -52
- package/esm2022/lib/workspace/workspace-selector/workspace-selector.module.mjs +0 -19
- package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.mjs +0 -74
- package/esm2022/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.mjs +0 -19
- package/esm2022/lib/workspace/workspace.module.mjs +0 -22
- package/lib/action/actionbar/actionbar-item.component.d.ts +0 -78
- package/lib/action/actionbar/actionbar.component.d.ts +0 -148
- package/lib/action/index.d.ts +0 -2
- package/lib/action/shared/action.interfaces.d.ts +0 -17
- package/lib/action/shared/store.d.ts +0 -8
- package/lib/backdrop/index.d.ts +0 -1
- package/lib/badge-icon/badge-icon.directive.d.ts +0 -36
- package/lib/badge-icon/index.d.ts +0 -1
- package/lib/clickout/index.d.ts +0 -1
- package/lib/clone/index.d.ts +0 -1
- package/lib/collapsible/index.d.ts +0 -5
- package/lib/color-picker-form-field/index.d.ts +0 -1
- package/lib/confirm-dialog/index.d.ts +0 -3
- package/lib/context-menu/index.d.ts +0 -5
- package/lib/custom-html/index.d.ts +0 -5
- package/lib/dom/index.d.ts +0 -2
- package/lib/drag-drop/index.d.ts +0 -1
- package/lib/dynamic-component/index.d.ts +0 -2
- package/lib/entity/entity-table-paginator/entity-table-paginator.component.d.ts +0 -49
- package/lib/entity/entity-table-paginator/index.d.ts +0 -2
- package/lib/entity/entity.module.d.ts +0 -12
- package/lib/entity/index.d.ts +0 -9
- package/lib/entity/shared/transaction.d.ts +0 -180
- package/lib/flexible/flexible.component.d.ts +0 -41
- package/lib/flexible/index.d.ts +0 -2
- package/lib/form/form-field/index.d.ts +0 -9
- package/lib/form/form.module.d.ts +0 -15
- package/lib/form/index.d.ts +0 -7
- package/lib/form-dialog/form-dialog.component.d.ts +0 -24
- package/lib/form-dialog/form-dialog.interface.d.ts +0 -18
- package/lib/form-dialog/index.d.ts +0 -3
- package/lib/home-button/index.d.ts +0 -1
- package/lib/image/index.d.ts +0 -5
- package/lib/image/secure-image.pipe.d.ts +0 -13
- package/lib/interactive-tour/index.d.ts +0 -4
- package/lib/interactive-tour/interactive-tour.component.d.ts +0 -30
- package/lib/interactive-tour/interactive-tour.loader.d.ts +0 -18
- package/lib/interactive-tour/interactive-tour.service.d.ts +0 -29
- package/lib/json-dialog/index.d.ts +0 -2
- package/lib/keyvalue/index.d.ts +0 -1
- package/lib/list/index.d.ts +0 -5
- package/lib/panel/index.d.ts +0 -1
- package/lib/select-value-dialog/index.d.ts +0 -4
- package/lib/select-value-dialog/select-value-check-radio-dialog.component.d.ts +0 -25
- package/lib/sidenav/index.d.ts +0 -1
- package/lib/spinner/index.d.ts +0 -5
- package/lib/spinner/spinner-activity.directive.d.ts +0 -32
- package/lib/spinner/spinner.module.d.ts +0 -11
- package/lib/stop-propagation/index.d.ts +0 -5
- package/lib/table/index.d.ts +0 -5
- package/lib/tool/index.d.ts +0 -2
- package/lib/tool/shared/tool.interface.d.ts +0 -18
- package/lib/tool/shared/toolbox.d.ts +0 -95
- package/lib/tool/toolbox/toolbox.component.d.ts +0 -128
- package/lib/widget/index.d.ts +0 -2
- package/lib/widget/shared/widget.d.ts +0 -4
- package/lib/widget/shared/widget.service.d.ts +0 -10
- package/lib/widget/widget-outlet/widget-outlet.component.d.ts +0 -71
- package/lib/workspace/index.d.ts +0 -6
- package/lib/workspace/shared/store.d.ts +0 -20
- package/lib/workspace/shared/workspace.d.ts +0 -108
- package/lib/workspace/shared/workspace.interfaces.d.ts +0 -11
- package/lib/workspace/workspace-selector/workspace-selector.component.d.ts +0 -38
- package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +0 -57
- package/lib/workspace/workspace.module.d.ts +0 -11
- package/src/lib/action/action.theming.scss +0 -5
- package/src/lib/action/actionbar/actionbar-item.theming.scss +0 -32
- package/src/lib/action/actionbar/actionbar.theming.scss +0 -22
- package/src/lib/collapsible/collapsible.theming.scss +0 -22
- package/src/lib/entity/entity-selector/entity-selector.theming.scss +0 -21
- package/src/lib/entity/entity-table/entity-table.theming.scss +0 -37
- package/src/lib/entity/entity.theming.scss +0 -7
- package/src/lib/home-button/home-button.theming.scss +0 -18
- package/src/lib/interactive-tour/interactive-tour.theming.scss +0 -32
- package/src/lib/list/list.theming.scss +0 -58
- package/src/lib/panel/panel.theming.scss +0 -30
- package/src/lib/tool/tool.theming.scss +0 -5
- package/src/lib/tool/toolbox/toolbox.theming.scss +0 -105
- /package/{lib/action → action}/action.module.d.ts +0 -0
- /package/{lib/action → action}/actionbar/actionbar.module.d.ts +0 -0
- /package/{lib/action → action}/shared/action.enums.d.ts +0 -0
- /package/{lib/action → action}/shared/index.d.ts +0 -0
- /package/{lib/backdrop → backdrop}/backdrop.component.d.ts +0 -0
- /package/{lib/backdrop → backdrop}/backdrop.module.d.ts +0 -0
- /package/{lib/badge-icon → badge}/badge-icon.module.d.ts +0 -0
- /package/{lib/clickout → clickout}/clickout.directive.d.ts +0 -0
- /package/{lib/clickout → clickout}/clickout.module.d.ts +0 -0
- /package/{lib/clone → clone}/clone.module.d.ts +0 -0
- /package/{lib/clone → clone}/clone.pipe.d.ts +0 -0
- /package/{lib/collapsible → collapsible}/collapse.directive.d.ts +0 -0
- /package/{lib/collapsible → collapsible}/collapsible.component.d.ts +0 -0
- /package/{lib/collapsible → collapsible}/collapsible.module.d.ts +0 -0
- /package/{lib → color}/color-picker-form-field/color-picker-form-field.component.d.ts +0 -0
- /package/{lib → color}/color-picker-form-field/color-picker-form-field.module.d.ts +0 -0
- /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.component.d.ts +0 -0
- /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.interface.d.ts +0 -0
- /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.module.d.ts +0 -0
- /package/{lib/confirm-dialog → confirm-dialog}/confirm-dialog.service.d.ts +0 -0
- /package/{lib/context-menu → context-menu}/context-menu.directive.d.ts +0 -0
- /package/{lib/context-menu → context-menu}/context-menu.module.d.ts +0 -0
- /package/{lib/context-menu → context-menu}/long-press.directive.d.ts +0 -0
- /package/{lib/custom-html → custom-html}/custom-html.component.d.ts +0 -0
- /package/{lib/custom-html → custom-html}/custom-html.module.d.ts +0 -0
- /package/{lib/custom-html → custom-html}/custom-html.pipe.d.ts +0 -0
- /package/{lib/dom → dom}/dom.interfaces.d.ts +0 -0
- /package/{lib/dom → dom}/dom.module.d.ts +0 -0
- /package/{lib/dom → dom}/dom.service.d.ts +0 -0
- /package/{lib/drag-drop → drag-drop}/drag-drop.directive.d.ts +0 -0
- /package/{lib/drag-drop → drag-drop}/drag-drop.module.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/dynamic-component.module.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/dynamic-outlet/dynamic-outlet.component.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/dynamic-outlet/dynamic-outlet.module.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.interfaces.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/shared/dynamic-component.service.d.ts +0 -0
- /package/{lib/dynamic-component → dynamic-component}/shared/index.d.ts +0 -0
- /package/{lib/entity → entity}/entity-selector/entity-selector.component.d.ts +0 -0
- /package/{lib/entity → entity}/entity-selector/entity-selector.module.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table/entity-table-row.directive.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table/entity-table.component.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table/entity-table.module.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.interface.d.ts +0 -0
- /package/{lib/entity → entity}/entity-table-paginator/entity-table-paginator.module.d.ts +0 -0
- /package/{lib/entity → entity}/shared/entity.enums.d.ts +0 -0
- /package/{lib/entity → entity}/shared/entity.interfaces.d.ts +0 -0
- /package/{lib/entity → entity}/shared/entity.utils.d.ts +0 -0
- /package/{lib/entity → entity}/shared/index.d.ts +0 -0
- /package/{lib/entity → entity}/shared/state.d.ts +0 -0
- /package/{lib/entity → entity}/shared/store.d.ts +0 -0
- /package/{lib/entity → entity}/shared/strategies/filter-custom-function.d.ts +0 -0
- /package/{lib/entity → entity}/shared/strategies/filter-selection.d.ts +0 -0
- /package/{lib/entity → entity}/shared/strategies/index.d.ts +0 -0
- /package/{lib/entity → entity}/shared/strategies/strategy.d.ts +0 -0
- /package/{lib/entity → entity}/shared/view.d.ts +0 -0
- /package/{lib/entity → entity}/shared/watcher.d.ts +0 -0
- /package/{lib/environment → environment}/environment.interface.d.ts +0 -0
- /package/{lib/environment/index.d.ts → environment/public_api.d.ts} +0 -0
- /package/{lib/flexible → flexible}/flexible.module.d.ts +0 -0
- /package/{lib/flexible → flexible}/flexible.type.d.ts +0 -0
- /package/{lib/form → form}/form/form.component.d.ts +0 -0
- /package/{lib/form → form}/form/form.module.d.ts +0 -0
- /package/{lib → form}/form-dialog/form-dialog.module.d.ts +0 -0
- /package/{lib → form}/form-dialog/form-dialog.service.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field-select.component.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field-text.component.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field-textarea.component.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field.component.d.ts +0 -0
- /package/{lib/form → form}/form-field/form-field.module.d.ts +0 -0
- /package/{lib/form → form}/form-group/form-group.component.d.ts +0 -0
- /package/{lib/form → form}/form-group/form-group.module.d.ts +0 -0
- /package/{lib/form → form}/shared/form-field-component.d.ts +0 -0
- /package/{lib/form → form}/shared/form-field.service.d.ts +0 -0
- /package/{lib/form → form}/shared/form.interfaces.d.ts +0 -0
- /package/{lib/form → form}/shared/form.service.d.ts +0 -0
- /package/{lib/form → form}/shared/form.utils.d.ts +0 -0
- /package/{lib/form → form}/shared/index.d.ts +0 -0
- /package/{lib/home-button → home-button}/home-button.component.d.ts +0 -0
- /package/{lib/home-button → home-button}/home-button.module.d.ts +0 -0
- /package/{lib/image → image}/image-error.directive.d.ts +0 -0
- /package/{lib/image → image}/image.module.d.ts +0 -0
- /package/{lib/interactive-tour → interactive-tour}/interactive-tour.interface.d.ts +0 -0
- /package/{lib/interactive-tour → interactive-tour}/interactive-tour.module.d.ts +0 -0
- /package/{lib/json-dialog → json-dialog}/json-dialog.component.d.ts +0 -0
- /package/{lib/json-dialog → json-dialog}/json-dialog.module.d.ts +0 -0
- /package/{lib/json-dialog → json-dialog}/json-dialog.service.d.ts +0 -0
- /package/{lib/keyvalue → keyvalue}/keyvalue.module.d.ts +0 -0
- /package/{lib/keyvalue → keyvalue}/keyvalue.pipe.d.ts +0 -0
- /package/{lib/list → list}/list-item.directive.d.ts +0 -0
- /package/{lib/list → list}/list.component.d.ts +0 -0
- /package/{lib/list → list}/list.module.d.ts +0 -0
- /package/{lib/panel → panel}/panel.component.d.ts +0 -0
- /package/{lib/panel → panel}/panel.module.d.ts +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.enums.d.ts +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.interface.d.ts +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.module.d.ts +0 -0
- /package/{lib/select-value-dialog → select-value-dialog}/select-value-dialog.service.d.ts +0 -0
- /package/{lib/sidenav → sidenav}/sidenav-shim.directive.d.ts +0 -0
- /package/{lib/sidenav → sidenav}/sidenav.module.d.ts +0 -0
- /package/{lib/spinner → spinner}/spinner.component.d.ts +0 -0
- /package/{lib/stop-propagation → stop-propagation}/stop-drop-propagation.directive.d.ts +0 -0
- /package/{lib/stop-propagation → stop-propagation}/stop-propagation.directive.d.ts +0 -0
- /package/{lib/stop-propagation → stop-propagation}/stop-propagation.module.d.ts +0 -0
- /package/{lib/table → table}/table-action-color.enum.d.ts +0 -0
- /package/{lib/table → table}/table-database.d.ts +0 -0
- /package/{lib/table → table}/table-datasource.d.ts +0 -0
- /package/{lib/table → table}/table-model.interface.d.ts +0 -0
- /package/{lib/table → table}/table.component.d.ts +0 -0
- /package/{lib/table → table}/table.module.d.ts +0 -0
- /package/{lib/tool → tool}/shared/index.d.ts +0 -0
- /package/{lib/tool → tool}/shared/tool-component.d.ts +0 -0
- /package/{lib/tool → tool}/shared/tool.service.d.ts +0 -0
- /package/{lib/tool → tool}/shared/toolbox.enums.d.ts +0 -0
- /package/{lib/tool → tool}/tool.module.d.ts +0 -0
- /package/{lib/tool → tool}/toolbox/toolbox.animation.d.ts +0 -0
- /package/{lib/tool → tool}/toolbox/toolbox.module.d.ts +0 -0
- /package/{lib/widget → widget}/shared/index.d.ts +0 -0
- /package/{lib/widget → widget}/shared/widget.interfaces.d.ts +0 -0
- /package/{lib/widget → widget}/widget-outlet/widget-outlet.module.d.ts +0 -0
- /package/{lib/widget → widget}/widget.module.d.ts +0 -0
- /package/{lib/workspace → workspace}/shared/index.d.ts +0 -0
- /package/{lib/workspace → workspace}/workspace-selector/workspace-selector.module.d.ts +0 -0
- /package/{lib/workspace → workspace}/workspace-widget-outlet/workspace-widget-outlet.module.d.ts +0 -0
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
-
import { MatIconRegistry } from '@angular/material/icon';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* This directive allow to add an icon inside a matBadge.
|
|
6
|
-
* A value must be set into the matBadge directive ex: matBadge="icon".
|
|
7
|
-
* The badge content will be overrided by this current directive.
|
|
8
|
-
*/
|
|
9
|
-
export declare class IgoBadgeIconDirective implements OnInit {
|
|
10
|
-
private el;
|
|
11
|
-
private matIconRegistry;
|
|
12
|
-
set igoMatBadgeIcon(value: string);
|
|
13
|
-
private svg;
|
|
14
|
-
set matBadgeHidden(value: boolean);
|
|
15
|
-
private hidden;
|
|
16
|
-
set matBadgeDisabled(value: boolean);
|
|
17
|
-
private disabled;
|
|
18
|
-
set igoMatBadgeInverseColor(value: boolean);
|
|
19
|
-
private inverseColor;
|
|
20
|
-
set igoMatBadgeInheritColor(value: boolean);
|
|
21
|
-
private inheritColor;
|
|
22
|
-
set igoMatBadgeColor(value: string);
|
|
23
|
-
private color;
|
|
24
|
-
set igoMatBadgeBackgroundColor(value: string);
|
|
25
|
-
private backgroundColor;
|
|
26
|
-
get badge(): any;
|
|
27
|
-
private originalColor;
|
|
28
|
-
constructor(el: ElementRef, matIconRegistry: MatIconRegistry);
|
|
29
|
-
ngOnInit(): void;
|
|
30
|
-
private updateSvg;
|
|
31
|
-
private updateColor;
|
|
32
|
-
private updateHidden;
|
|
33
|
-
private updateDisabled;
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgoBadgeIconDirective, never>;
|
|
35
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<IgoBadgeIconDirective, "[igoMatBadgeIcon]", never, { "igoMatBadgeIcon": { "alias": "igoMatBadgeIcon"; "required": false; }; "matBadgeHidden": { "alias": "matBadgeHidden"; "required": false; }; "matBadgeDisabled": { "alias": "matBadgeDisabled"; "required": false; }; "igoMatBadgeInverseColor": { "alias": "igoMatBadgeInverseColor"; "required": false; }; "igoMatBadgeInheritColor": { "alias": "igoMatBadgeInheritColor"; "required": false; }; "igoMatBadgeColor": { "alias": "igoMatBadgeColor"; "required": false; }; "igoMatBadgeBackgroundColor": { "alias": "igoMatBadgeBackgroundColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
36
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './badge-icon.directive';
|
package/lib/clickout/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './clickout.directive';
|
package/lib/clone/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './clone.pipe';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { CollapseDirective } from './collapse.directive';
|
|
2
|
-
import { CollapsibleComponent } from './collapsible.component';
|
|
3
|
-
export * from './collapsible.component';
|
|
4
|
-
export * from './collapse.directive';
|
|
5
|
-
export declare const COLLAPSIBLE_DIRECTIVES: readonly [typeof CollapsibleComponent, typeof CollapseDirective];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './color-picker-form-field.component';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ContextMenuDirective } from './context-menu.directive';
|
|
2
|
-
import { LongPressDirective } from './long-press.directive';
|
|
3
|
-
export * from './context-menu.directive';
|
|
4
|
-
export * from './long-press.directive';
|
|
5
|
-
export declare const CONTEXT_MENU_DIRECTIVES: readonly [typeof ContextMenuDirective, typeof LongPressDirective];
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { CustomHtmlComponent } from './custom-html.component';
|
|
2
|
-
import { SanitizeHtmlPipe } from './custom-html.pipe';
|
|
3
|
-
export * from './custom-html.component';
|
|
4
|
-
export * from './custom-html.pipe';
|
|
5
|
-
export declare const CUSTOM_HTML_DIRECTIVES: readonly [typeof SanitizeHtmlPipe, typeof CustomHtmlComponent];
|
package/lib/dom/index.d.ts
DELETED
package/lib/drag-drop/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './drag-drop.directive';
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, OnDestroy } from '@angular/core';
|
|
2
|
-
import { MatPaginator, PageEvent } from '@angular/material/paginator';
|
|
3
|
-
import { LanguageService, MediaService } from '@igo2/core';
|
|
4
|
-
import { BehaviorSubject } from 'rxjs';
|
|
5
|
-
import { EntityStore } from '../shared';
|
|
6
|
-
import { EntityTablePaginatorOptions } from './entity-table-paginator.interface';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class EntityTablePaginatorComponent implements OnChanges, OnDestroy {
|
|
9
|
-
private languageService;
|
|
10
|
-
private mediaService;
|
|
11
|
-
disabled: boolean;
|
|
12
|
-
hidePageSize: boolean;
|
|
13
|
-
pageIndex: number;
|
|
14
|
-
pageSize: number;
|
|
15
|
-
pageSizeOptions: number[];
|
|
16
|
-
showFirstLastButtons: boolean;
|
|
17
|
-
private count$$;
|
|
18
|
-
private entitySortChange$$;
|
|
19
|
-
private paginationLabelTranslation$$;
|
|
20
|
-
entitySortChange$: BehaviorSubject<boolean>;
|
|
21
|
-
/**
|
|
22
|
-
* Entity store
|
|
23
|
-
*/
|
|
24
|
-
store: EntityStore<object>;
|
|
25
|
-
/**
|
|
26
|
-
* Paginator options
|
|
27
|
-
*/
|
|
28
|
-
paginatorOptions: EntityTablePaginatorOptions;
|
|
29
|
-
/**
|
|
30
|
-
* Event emitted when the paginator changes the page size or page index.
|
|
31
|
-
*/
|
|
32
|
-
page: EventEmitter<PageEvent>;
|
|
33
|
-
length: number;
|
|
34
|
-
/**
|
|
35
|
-
* Paginator emitted.
|
|
36
|
-
*/
|
|
37
|
-
paginatorChange: EventEmitter<MatPaginator>;
|
|
38
|
-
constructor(languageService: LanguageService, mediaService: MediaService);
|
|
39
|
-
paginator: MatPaginator;
|
|
40
|
-
ngOnChanges(): void;
|
|
41
|
-
initPaginatorOptions(): void;
|
|
42
|
-
translateLabels(): void;
|
|
43
|
-
rangeLabel: (page: number, pageSize: number, length: number) => string;
|
|
44
|
-
private unsubscribeAll;
|
|
45
|
-
ngOnDestroy(): void;
|
|
46
|
-
emitPaginator(): void;
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EntityTablePaginatorComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EntityTablePaginatorComponent, "igo-entity-table-paginator", never, { "entitySortChange$": { "alias": "entitySortChange$"; "required": false; }; "store": { "alias": "store"; "required": false; }; "paginatorOptions": { "alias": "paginatorOptions"; "required": false; }; }, { "page": "page"; "paginatorChange": "paginatorChange"; }, never, never, true, never>;
|
|
49
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./entity-selector/entity-selector.component";
|
|
3
|
-
import * as i2 from "./entity-table/entity-table.component";
|
|
4
|
-
import * as i3 from "./entity-table-paginator/entity-table-paginator.component";
|
|
5
|
-
/**
|
|
6
|
-
* @deprecated import the components directly or ENTITY_DIRECTIVES for every components/directives
|
|
7
|
-
*/
|
|
8
|
-
export declare class IgoEntityModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgoEntityModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoEntityModule, never, [typeof i1.EntitySelectorComponent, typeof i2.EntityTableComponent, typeof i3.EntityTablePaginatorComponent], [typeof i1.EntitySelectorComponent, typeof i2.EntityTableComponent, typeof i3.EntityTablePaginatorComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<IgoEntityModule>;
|
|
12
|
-
}
|
package/lib/entity/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { EntitySelectorComponent } from './entity-selector/entity-selector.component';
|
|
2
|
-
import { EntityTablePaginatorComponent } from './entity-table-paginator';
|
|
3
|
-
import { EntityTableComponent } from './entity-table/entity-table.component';
|
|
4
|
-
export * from './shared';
|
|
5
|
-
export * from './entity-selector/entity-selector.component';
|
|
6
|
-
export * from './entity-table/entity-table.component';
|
|
7
|
-
export * from './entity-table-paginator/entity-table-paginator.component';
|
|
8
|
-
export * from './entity-table-paginator/entity-table-paginator.interface';
|
|
9
|
-
export declare const ENTITY_DIRECTIVES: readonly [typeof EntitySelectorComponent, typeof EntityTableComponent, typeof EntityTablePaginatorComponent];
|
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import { EntityOperationType } from './entity.enums';
|
|
4
|
-
import { EntityKey, EntityOperationState, EntityTransactionOptions } from './entity.interfaces';
|
|
5
|
-
import { EntityStore } from './store';
|
|
6
|
-
interface EntityOperation<E extends object = object> {
|
|
7
|
-
key: EntityKey;
|
|
8
|
-
type: EntityOperationType;
|
|
9
|
-
previous: E | undefined;
|
|
10
|
-
current: E | undefined;
|
|
11
|
-
store?: EntityStore<E>;
|
|
12
|
-
meta?: {
|
|
13
|
-
[key: string]: any;
|
|
14
|
-
};
|
|
15
|
-
}
|
|
16
|
-
export type EntityTransactionCommitHandler = (transaction: EntityTransaction, operations: EntityOperation[]) => Observable<any>;
|
|
17
|
-
/**
|
|
18
|
-
* This class holds a reference to the insert, update and delete
|
|
19
|
-
* operations performed on a store. This is useful to commit
|
|
20
|
-
* these operations in a single pass or to cancel them.
|
|
21
|
-
*/
|
|
22
|
-
export declare class EntityTransaction {
|
|
23
|
-
/**
|
|
24
|
-
* Store holding the operations on another store
|
|
25
|
-
*/
|
|
26
|
-
readonly operations: EntityStore<EntityOperation, EntityOperationState>;
|
|
27
|
-
/**
|
|
28
|
-
* Method to get an entity's id
|
|
29
|
-
*/
|
|
30
|
-
readonly getKey: (E: any) => EntityKey;
|
|
31
|
-
/**
|
|
32
|
-
* Whether there are pending operations
|
|
33
|
-
*/
|
|
34
|
-
get empty$(): BehaviorSubject<boolean>;
|
|
35
|
-
/**
|
|
36
|
-
* Whether there are pending operations
|
|
37
|
-
*/
|
|
38
|
-
get empty(): boolean;
|
|
39
|
-
/**
|
|
40
|
-
* Whether thise store is in commit phase
|
|
41
|
-
*/
|
|
42
|
-
get inCommitPhase(): boolean;
|
|
43
|
-
readonly inCommitPhase$: BehaviorSubject<boolean>;
|
|
44
|
-
constructor(options?: EntityTransactionOptions);
|
|
45
|
-
destroy(): void;
|
|
46
|
-
/**
|
|
47
|
-
* Insert an entity into a store. If no store is specified, an insert
|
|
48
|
-
* operation is still created but the transaction won't add the new
|
|
49
|
-
* entity to the store.
|
|
50
|
-
* @param current The entity to insert
|
|
51
|
-
* @param store Optional: The store to insert the entity into
|
|
52
|
-
* @param meta Optional: Any metadata on the operation
|
|
53
|
-
*/
|
|
54
|
-
insert(current: object, store?: EntityStore<object>, meta?: {
|
|
55
|
-
[key: string]: any;
|
|
56
|
-
}): void;
|
|
57
|
-
/**
|
|
58
|
-
* Update an entity in a store. If no store is specified, an update
|
|
59
|
-
* operation is still created but the transaction won't update the
|
|
60
|
-
* entity into the store.
|
|
61
|
-
* @param previous The entity before update
|
|
62
|
-
* @param current The entity after update
|
|
63
|
-
* @param store Optional: The store to update the entity into
|
|
64
|
-
* @param meta Optional: Any metadata on the operation
|
|
65
|
-
*/
|
|
66
|
-
update(previous: object, current: object, store?: EntityStore<object>, meta?: {
|
|
67
|
-
[key: string]: any;
|
|
68
|
-
}): void;
|
|
69
|
-
/**
|
|
70
|
-
* Delete an entity from a store. If no store is specified, a delete
|
|
71
|
-
* operation is still created but the transaction won't remove the
|
|
72
|
-
* entity from the store.
|
|
73
|
-
* @param previous The entity before delete
|
|
74
|
-
* @param store Optional: The store to delete the entity from
|
|
75
|
-
* @param meta Optional: Any metadata on the operation
|
|
76
|
-
*/
|
|
77
|
-
delete(previous: object, store?: EntityStore<object>, meta?: {
|
|
78
|
-
[key: string]: any;
|
|
79
|
-
}): void;
|
|
80
|
-
/**
|
|
81
|
-
* Commit operations the transaction. This method doesn't do much
|
|
82
|
-
* in itself. The handler it receives does the hard work and it's
|
|
83
|
-
* implementation is left to the caller. This method simply wraps
|
|
84
|
-
* the handler into an error catching mechanism to update
|
|
85
|
-
* the transaction afterward. The caller needs to subscribe to this
|
|
86
|
-
* method's output (observable) for the commit to be performed.
|
|
87
|
-
* @param operations Operations to commit
|
|
88
|
-
* @param handler Function that handles the commit operation
|
|
89
|
-
* @returns The handler output (observable)
|
|
90
|
-
*/
|
|
91
|
-
commit(operations: EntityOperation[], handler: EntityTransactionCommitHandler): Observable<any>;
|
|
92
|
-
/**
|
|
93
|
-
* Commit all the operations of the transaction.
|
|
94
|
-
* @param handler Function that handles the commit operation
|
|
95
|
-
* @returns The handler output (observable)
|
|
96
|
-
*/
|
|
97
|
-
commitAll(handler: EntityTransactionCommitHandler): Observable<any>;
|
|
98
|
-
/**
|
|
99
|
-
* Rollback this transaction
|
|
100
|
-
*/
|
|
101
|
-
rollback(): void;
|
|
102
|
-
/**
|
|
103
|
-
* Rollback specific operations
|
|
104
|
-
*/
|
|
105
|
-
rollbackOperations(operations: EntityOperation[]): void;
|
|
106
|
-
/**
|
|
107
|
-
* Clear this transaction
|
|
108
|
-
* @todo Raise event and synchronize stores?
|
|
109
|
-
*/
|
|
110
|
-
clear(): void;
|
|
111
|
-
/**
|
|
112
|
-
* Get any existing operation on an entity
|
|
113
|
-
* @param entity Entity
|
|
114
|
-
* @returns Either an insert, update or delete operation
|
|
115
|
-
*/
|
|
116
|
-
getOperationByEntity(entity: object): EntityOperation;
|
|
117
|
-
/**
|
|
118
|
-
* Merge another transaction in this one
|
|
119
|
-
* @param transaction Another transaction
|
|
120
|
-
*/
|
|
121
|
-
mergeTransaction(transaction: EntityTransaction): void;
|
|
122
|
-
/**
|
|
123
|
-
* Create an insert operation and add an entity to the store
|
|
124
|
-
* @param current The entity to insert
|
|
125
|
-
* @param store Optional: The store to insert the entity into
|
|
126
|
-
* @param meta Optional: Any metadata on the operation
|
|
127
|
-
*/
|
|
128
|
-
private doInsert;
|
|
129
|
-
/**
|
|
130
|
-
* Create an update operation and update an entity into the store
|
|
131
|
-
* @param previous The entity before update
|
|
132
|
-
* @param current The entity after update
|
|
133
|
-
* @param store Optional: The store to update the entity into
|
|
134
|
-
* @param meta Optional: Any metadata on the operation
|
|
135
|
-
*/
|
|
136
|
-
private doUpdate;
|
|
137
|
-
/**
|
|
138
|
-
* Create a delete operation and delete an entity from the store
|
|
139
|
-
* @param previous The entity before delete
|
|
140
|
-
* @param store Optional: The store to delete the entity from
|
|
141
|
-
* @param meta Optional: Any metadata on the operation
|
|
142
|
-
*/
|
|
143
|
-
private doDelete;
|
|
144
|
-
/**
|
|
145
|
-
* Remove committed operations from store
|
|
146
|
-
* @param operations Commited operations
|
|
147
|
-
* @todo Raise event and synchronize stores?
|
|
148
|
-
*/
|
|
149
|
-
private resolveOperations;
|
|
150
|
-
/**
|
|
151
|
-
* On commit success, resolve commited operations and exit commit phase
|
|
152
|
-
* @param operations Commited operations
|
|
153
|
-
*/
|
|
154
|
-
private onCommitSuccess;
|
|
155
|
-
/**
|
|
156
|
-
* On commit error, abort transaction
|
|
157
|
-
* @param operations Commited operations
|
|
158
|
-
*/
|
|
159
|
-
private onCommitError;
|
|
160
|
-
/**
|
|
161
|
-
* Add an operation to the operations store
|
|
162
|
-
* @param operation Operation to add
|
|
163
|
-
*/
|
|
164
|
-
private addOperation;
|
|
165
|
-
/**
|
|
166
|
-
* Remove an operation from the operations store
|
|
167
|
-
* @param operation Operation to remove
|
|
168
|
-
*/
|
|
169
|
-
private removeOperation;
|
|
170
|
-
/**
|
|
171
|
-
* Get all the operations to commit
|
|
172
|
-
* @returns Operations to commit
|
|
173
|
-
*/
|
|
174
|
-
private getOperationsInCommit;
|
|
175
|
-
/**
|
|
176
|
-
* Check if the transaction is in the commit phase and throw an error if it is
|
|
177
|
-
*/
|
|
178
|
-
private checkInCommitPhase;
|
|
179
|
-
}
|
|
180
|
-
export {};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { MediaService } from '@igo2/core';
|
|
3
|
-
import { FlexibleDirection, FlexibleState } from './flexible.type';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FlexibleComponent implements OnInit, OnDestroy {
|
|
6
|
-
private el;
|
|
7
|
-
private mediaService;
|
|
8
|
-
static transitionTime: number;
|
|
9
|
-
main: any;
|
|
10
|
-
get initial(): string;
|
|
11
|
-
set initial(value: string);
|
|
12
|
-
private _initial;
|
|
13
|
-
get collapsed(): string;
|
|
14
|
-
set collapsed(value: string);
|
|
15
|
-
private _collapsed;
|
|
16
|
-
get expanded(): string;
|
|
17
|
-
set expanded(value: string);
|
|
18
|
-
private _expanded;
|
|
19
|
-
get initialMobile(): string;
|
|
20
|
-
set initialMobile(value: string);
|
|
21
|
-
private _initialMobile;
|
|
22
|
-
get collapsedMobile(): string;
|
|
23
|
-
set collapsedMobile(value: string);
|
|
24
|
-
private _collapsedMobile;
|
|
25
|
-
get expandedMobile(): string;
|
|
26
|
-
set expandedMobile(value: string);
|
|
27
|
-
private _expandedMobile;
|
|
28
|
-
get direction(): FlexibleDirection;
|
|
29
|
-
set direction(value: FlexibleDirection);
|
|
30
|
-
private _direction;
|
|
31
|
-
get state(): FlexibleState;
|
|
32
|
-
set state(value: FlexibleState);
|
|
33
|
-
private _state;
|
|
34
|
-
private mediaService$$;
|
|
35
|
-
constructor(el: ElementRef, mediaService: MediaService);
|
|
36
|
-
ngOnInit(): void;
|
|
37
|
-
ngOnDestroy(): void;
|
|
38
|
-
private setSize;
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FlexibleComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlexibleComponent, "igo-flexible", never, { "initial": { "alias": "initial"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "initialMobile": { "alias": "initialMobile"; "required": false; }; "collapsedMobile": { "alias": "collapsedMobile"; "required": false; }; "expandedMobile": { "alias": "expandedMobile"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "state": { "alias": "state"; "required": false; }; }, {}, never, ["*", "[igoFlexibleFill]"], true, never>;
|
|
41
|
-
}
|
package/lib/flexible/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { FormFieldSelectComponent } from './form-field-select.component';
|
|
2
|
-
import { FormFieldTextComponent } from './form-field-text.component';
|
|
3
|
-
import { FormFieldTextareaComponent } from './form-field-textarea.component';
|
|
4
|
-
import { FormFieldComponent } from './form-field.component';
|
|
5
|
-
export * from './form-field.component';
|
|
6
|
-
export * from './form-field-text.component';
|
|
7
|
-
export * from './form-field-select.component';
|
|
8
|
-
export * from './form-field-textarea.component';
|
|
9
|
-
export declare const FORM_FIELD_DIRECTIVES: readonly [typeof FormFieldComponent, typeof FormFieldSelectComponent, typeof FormFieldTextComponent, typeof FormFieldTextareaComponent];
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./form-field/form-field.component";
|
|
3
|
-
import * as i2 from "./form-field/form-field-select.component";
|
|
4
|
-
import * as i3 from "./form-field/form-field-text.component";
|
|
5
|
-
import * as i4 from "./form-field/form-field-textarea.component";
|
|
6
|
-
import * as i5 from "./form-group/form-group.component";
|
|
7
|
-
import * as i6 from "./form/form.component";
|
|
8
|
-
/**
|
|
9
|
-
* @deprecated import the components directly or FORM_DIRECTIVES for every components/directives
|
|
10
|
-
*/
|
|
11
|
-
export declare class IgoFormModule {
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgoFormModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoFormModule, never, [typeof i1.FormFieldComponent, typeof i2.FormFieldSelectComponent, typeof i3.FormFieldTextComponent, typeof i4.FormFieldTextareaComponent, typeof i5.FormGroupComponent, typeof i6.FormComponent], [typeof i1.FormFieldComponent, typeof i2.FormFieldSelectComponent, typeof i3.FormFieldTextComponent, typeof i4.FormFieldTextareaComponent, typeof i5.FormGroupComponent, typeof i6.FormComponent]>;
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<IgoFormModule>;
|
|
15
|
-
}
|
package/lib/form/index.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { FormGroupComponent } from './form-group/form-group.component';
|
|
2
|
-
import { FormComponent } from './form/form.component';
|
|
3
|
-
export * from './shared';
|
|
4
|
-
export * from './form-group/form-group.component';
|
|
5
|
-
export * from './form-field';
|
|
6
|
-
export * from './form/form.component';
|
|
7
|
-
export declare const FORM_DIRECTIVES: readonly [typeof import("./form-field").FormFieldComponent, typeof import("./form-field").FormFieldSelectComponent, typeof import("./form-field").FormFieldTextComponent, typeof import("./form-field").FormFieldTextareaComponent, typeof FormGroupComponent, typeof FormComponent];
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
-
import { LanguageService } from '@igo2/core';
|
|
3
|
-
import { BehaviorSubject } from 'rxjs';
|
|
4
|
-
import { Form } from '../form/shared/form.interfaces';
|
|
5
|
-
import { FormService } from '../form/shared/form.service';
|
|
6
|
-
import { FormDialogData } from './form-dialog.interface';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class FormDialogComponent {
|
|
9
|
-
languageService: LanguageService;
|
|
10
|
-
dialogRef: MatDialogRef<FormDialogComponent>;
|
|
11
|
-
private formService;
|
|
12
|
-
data: FormDialogData;
|
|
13
|
-
form$: BehaviorSubject<Form>;
|
|
14
|
-
data$: BehaviorSubject<{
|
|
15
|
-
[key: string]: any;
|
|
16
|
-
}>;
|
|
17
|
-
constructor(languageService: LanguageService, dialogRef: MatDialogRef<FormDialogComponent>, formService: FormService, data: FormDialogData);
|
|
18
|
-
onSubmit(data: {
|
|
19
|
-
[key: string]: any;
|
|
20
|
-
}): void;
|
|
21
|
-
cancel(): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormDialogComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormDialogComponent, "igo-form-dialog", never, {}, {}, never, never, true, never>;
|
|
24
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { MatDialogConfig } from '@angular/material/dialog';
|
|
2
|
-
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import { FormFieldConfig, FormGroupsConfig } from '../form/shared/form.interfaces';
|
|
4
|
-
export interface FormDialogFormConfig {
|
|
5
|
-
formFieldConfigs?: FormFieldConfig[];
|
|
6
|
-
formGroupsConfigs?: FormGroupsConfig[];
|
|
7
|
-
}
|
|
8
|
-
export interface FormDialogData extends FormDialogOptions, FormDialogFormConfig {
|
|
9
|
-
}
|
|
10
|
-
export interface FormDialogOptions extends MatDialogConfig {
|
|
11
|
-
data$?: BehaviorSubject<{
|
|
12
|
-
[key: string]: any;
|
|
13
|
-
}>;
|
|
14
|
-
title?: string;
|
|
15
|
-
processButtonText?: string;
|
|
16
|
-
cancelButtonText?: string;
|
|
17
|
-
notice?: string;
|
|
18
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './home-button.component';
|
package/lib/image/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ImageErrorDirective } from './image-error.directive';
|
|
2
|
-
import { SecureImagePipe } from './secure-image.pipe';
|
|
3
|
-
export * from './image-error.directive';
|
|
4
|
-
export * from './secure-image.pipe';
|
|
5
|
-
export declare const IMAGE_DIRECTIVES: readonly [typeof SecureImagePipe, typeof ImageErrorDirective];
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { PipeTransform } from '@angular/core';
|
|
3
|
-
import { ConfigService } from '@igo2/core';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SecureImagePipe implements PipeTransform {
|
|
7
|
-
private http;
|
|
8
|
-
private configService?;
|
|
9
|
-
constructor(http: HttpClient, configService?: ConfigService);
|
|
10
|
-
transform(url: string): Observable<string>;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SecureImagePipe, never>;
|
|
12
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<SecureImagePipe, "secureImage", true>;
|
|
13
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import { ToolService } from '../tool/shared/tool.service';
|
|
3
|
-
import { InteractiveTourService } from './interactive-tour.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InteractiveTourComponent {
|
|
6
|
-
private interactiveTourService;
|
|
7
|
-
private toolService;
|
|
8
|
-
/**
|
|
9
|
-
* Toolbox that holds main tools
|
|
10
|
-
*/
|
|
11
|
-
tourToStart: string;
|
|
12
|
-
styleButton: 'icon' | 'raised';
|
|
13
|
-
discoverTitleInLocale$: Observable<string>;
|
|
14
|
-
getClass(): {
|
|
15
|
-
'tour-button-tool-icon': boolean;
|
|
16
|
-
'tour-button-tool': boolean;
|
|
17
|
-
};
|
|
18
|
-
get toolbox(): import("@igo2/common").Toolbox;
|
|
19
|
-
getTourToStart(): string;
|
|
20
|
-
get activeToolName(): string;
|
|
21
|
-
get isActiveTool(): boolean;
|
|
22
|
-
get isToolHaveTour(): boolean;
|
|
23
|
-
get showTourButton(): boolean;
|
|
24
|
-
get isTourDisplayInMobile(): boolean;
|
|
25
|
-
get disabledTourButton(): boolean;
|
|
26
|
-
constructor(interactiveTourService: InteractiveTourService, toolService: ToolService);
|
|
27
|
-
startInteractiveTour(): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTourComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTourComponent, "igo-interactive-tour", never, { "tourToStart": { "alias": "tourToStart"; "required": false; }; "styleButton": { "alias": "styleButton"; "required": false; }; "discoverTitleInLocale$": { "alias": "discoverTitleInLocale$"; "required": false; }; }, {}, never, never, true, never>;
|
|
30
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { ConfigService } from '@igo2/core';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import { InteractiveTourOptions } from './interactive-tour.interface';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InteractiveTourLoader {
|
|
7
|
-
private http;
|
|
8
|
-
private configService;
|
|
9
|
-
private jsonURL;
|
|
10
|
-
private allToursOptions;
|
|
11
|
-
constructor(http: HttpClient, configService: ConfigService);
|
|
12
|
-
loadConfigTour(): void;
|
|
13
|
-
getPathToConfigFile(): string;
|
|
14
|
-
getJSON(): Observable<any>;
|
|
15
|
-
getTourOptionData(toolName: any): InteractiveTourOptions;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTourLoader, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<InteractiveTourLoader>;
|
|
18
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { ConfigService, LanguageService, MediaService } from '@igo2/core';
|
|
2
|
-
import { ShepherdService } from 'angular-shepherd';
|
|
3
|
-
import { InteractiveTourLoader } from './interactive-tour.loader';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InteractiveTourService {
|
|
6
|
-
private configService;
|
|
7
|
-
private mediaService;
|
|
8
|
-
private languageService;
|
|
9
|
-
private interactiveTourLoader;
|
|
10
|
-
private shepherdService;
|
|
11
|
-
private previousStep;
|
|
12
|
-
private nextIndex;
|
|
13
|
-
constructor(configService: ConfigService, mediaService: MediaService, languageService: LanguageService, interactiveTourLoader: InteractiveTourLoader, shepherdService: ShepherdService);
|
|
14
|
-
isAppHaveTour(): any;
|
|
15
|
-
isToolHaveTourConfig(toolName: string): boolean;
|
|
16
|
-
disabledTourButton(toolName: string): boolean;
|
|
17
|
-
isMobile(): boolean;
|
|
18
|
-
isTourDisplayInMobile(): boolean;
|
|
19
|
-
private getButtons;
|
|
20
|
-
private getAction;
|
|
21
|
-
private addProgress;
|
|
22
|
-
private checkNext;
|
|
23
|
-
private executeAction;
|
|
24
|
-
private executeActionPromise;
|
|
25
|
-
private getShepherdSteps;
|
|
26
|
-
startTour(toolName: string): void;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTourService, never>;
|
|
28
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<InteractiveTourService>;
|
|
29
|
-
}
|
package/lib/keyvalue/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './keyvalue.pipe';
|
package/lib/list/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ListItemDirective } from './list-item.directive';
|
|
2
|
-
import { ListComponent } from './list.component';
|
|
3
|
-
export * from './list.component';
|
|
4
|
-
export * from './list-item.directive';
|
|
5
|
-
export declare const LIST_DIRECTIVES: readonly [typeof ListItemDirective, typeof ListComponent];
|
package/lib/panel/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './panel.component';
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
|
-
import { MatRadioChange } from '@angular/material/radio';
|
|
5
|
-
import { LanguageService } from '@igo2/core';
|
|
6
|
-
import { BehaviorSubject } from 'rxjs';
|
|
7
|
-
import { SelectValueData } from './select-value-dialog.interface';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SelectValueCheckRadioDialogComponent implements OnInit {
|
|
10
|
-
private formBuilder;
|
|
11
|
-
languageService: LanguageService;
|
|
12
|
-
dialogRef: MatDialogRef<SelectValueCheckRadioDialogComponent>;
|
|
13
|
-
data: SelectValueData;
|
|
14
|
-
formGroup: UntypedFormGroup;
|
|
15
|
-
isDisabled$: BehaviorSubject<boolean>;
|
|
16
|
-
constructor(formBuilder: UntypedFormBuilder, languageService: LanguageService, dialogRef: MatDialogRef<SelectValueCheckRadioDialogComponent>, data: SelectValueData);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
getFg(): {};
|
|
19
|
-
canProcess(): void;
|
|
20
|
-
save(): void;
|
|
21
|
-
cancel(): void;
|
|
22
|
-
onChange(e: MatRadioChange): void;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectValueCheckRadioDialogComponent, [null, null, null, { optional: true; }]>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectValueCheckRadioDialogComponent, "igo-select-value-check-radio-dialog", never, {}, {}, never, never, true, never>;
|
|
25
|
-
}
|