@igo2/common 16.3.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/action.module.d.ts +10 -0
- package/action/actionbar/actionbar-item.component.d.ts +75 -0
- package/action/actionbar/actionbar.component.d.ts +148 -0
- package/action/actionbar/actionbar.module.d.ts +10 -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/backdrop.component.d.ts +9 -0
- package/backdrop/backdrop.module.d.ts +12 -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/badge-icon.module.d.ts +12 -0
- package/badge/index.d.ts +5 -0
- package/badge/public_api.d.ts +2 -0
- package/clickout/clickout.directive.d.ts +10 -0
- package/clickout/clickout.module.d.ts +12 -0
- package/clickout/index.d.ts +5 -0
- package/clickout/public_api.d.ts +2 -0
- package/clone/clone.module.d.ts +12 -0
- package/clone/clone.pipe.d.ts +7 -0
- package/clone/index.d.ts +5 -0
- package/clone/public_api.d.ts +2 -0
- package/collapsible/collapse.directive.d.ts +19 -0
- package/collapsible/collapsible.component.d.ts +13 -0
- package/collapsible/collapsible.module.d.ts +13 -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/color-picker-form-field.component.d.ts +29 -0
- package/color/color-picker-form-field/color-picker-form-field.module.d.ts +10 -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/confirm-dialog.component.d.ts +12 -0
- package/confirm-dialog/confirm-dialog.module.d.ts +12 -0
- package/confirm-dialog/index.d.ts +5 -0
- package/confirm-dialog/public_api.d.ts +4 -0
- package/context-menu/context-menu.directive.d.ts +21 -0
- package/context-menu/context-menu.module.d.ts +13 -0
- package/context-menu/index.d.ts +5 -0
- package/context-menu/long-press.directive.d.ts +20 -0
- package/context-menu/public_api.d.ts +6 -0
- package/custom-html/custom-html.component.d.ts +9 -0
- package/custom-html/custom-html.module.d.ts +13 -0
- package/custom-html/custom-html.pipe.d.ts +10 -0
- package/custom-html/index.d.ts +5 -0
- package/custom-html/public_api.d.ts +6 -0
- package/dom/dom.module.d.ts +14 -0
- package/dom/index.d.ts +5 -0
- package/dom/public_api.d.ts +3 -0
- package/drag-drop/drag-drop.directive.d.ts +14 -0
- package/drag-drop/drag-drop.module.d.ts +12 -0
- package/drag-drop/index.d.ts +5 -0
- package/drag-drop/public_api.d.ts +2 -0
- package/dynamic-component/dynamic-component.module.d.ts +10 -0
- package/dynamic-component/dynamic-outlet/dynamic-outlet.component.d.ts +70 -0
- package/dynamic-component/dynamic-outlet/dynamic-outlet.module.d.ts +10 -0
- package/dynamic-component/index.d.ts +5 -0
- package/dynamic-component/public_api.d.ts +4 -0
- package/entity/entity-selector/entity-selector.component.d.ts +93 -0
- package/entity/entity-selector/entity-selector.module.d.ts +10 -0
- package/entity/entity-selector/index.d.ts +2 -0
- package/entity/entity-table/entity-table-row.directive.d.ts +69 -0
- package/entity/entity-table/entity-table.component.d.ts +342 -0
- package/entity/entity-table/entity-table.module.d.ts +10 -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/entity-table-paginator.module.d.ts +10 -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/entity.interfaces.d.ts +102 -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 -8760
- package/fesm2022/igo2-common.mjs.map +1 -1
- package/flexible/flexible.component.d.ts +41 -0
- package/flexible/flexible.module.d.ts +12 -0
- package/flexible/index.d.ts +5 -0
- package/flexible/public_api.d.ts +3 -0
- package/form/form/form.component.d.ts +53 -0
- package/form/form/form.module.d.ts +10 -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/form-dialog.module.d.ts +16 -0
- package/form/form-dialog/index.d.ts +4 -0
- package/form/form-field/form-field-select.component.d.ts +52 -0
- package/form/form-field/form-field-text.component.d.ts +51 -0
- package/form/form-field/form-field-textarea.component.d.ts +41 -0
- package/form/form-field/form-field.component.d.ts +29 -0
- package/form/form-field/form-field.directive.d.ts +5 -0
- package/form/form-field/form-field.module.d.ts +13 -0
- package/form/form-field/index.d.ts +6 -0
- package/form/form-group/form-group.component.d.ts +49 -0
- package/form/form-group/form-group.module.d.ts +10 -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/home-button.component.d.ts +9 -0
- package/home-button/home-button.module.d.ts +10 -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/image-error.directive.d.ts +11 -0
- package/image/image.module.d.ts +13 -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.module.d.ts +7 -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/json-dialog.component.d.ts +13 -0
- package/json-dialog/json-dialog.module.d.ts +12 -0
- package/json-dialog/public_api.d.ts +3 -0
- package/keyvalue/index.d.ts +5 -0
- package/keyvalue/keyvalue.module.d.ts +12 -0
- package/keyvalue/keyvalue.pipe.d.ts +7 -0
- package/keyvalue/public_api.d.ts +2 -0
- package/list/index.d.ts +5 -0
- package/list/list-item.directive.d.ts +43 -0
- package/list/list.component.d.ts +51 -0
- package/list/list.module.d.ts +13 -0
- package/list/public_api.d.ts +6 -0
- package/list/src/list.theming.scss +58 -0
- package/locale/en.common.json +59 -59
- package/locale/fr.common.json +59 -59
- package/package.json +206 -8
- package/panel/index.d.ts +5 -0
- package/panel/panel.component.d.ts +10 -0
- package/panel/panel.module.d.ts +10 -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/select-value-dialog/select-value-dialog.module.d.ts +12 -0
- package/sidenav/index.d.ts +5 -0
- package/sidenav/public_api.d.ts +2 -0
- package/sidenav/sidenav-shim.directive.d.ts +20 -0
- package/sidenav/sidenav.module.d.ts +12 -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.component.d.ts +12 -0
- package/spinner/spinner.module.d.ts +14 -0
- package/src/common-theme.scss +19 -19
- package/src/style/partial/common-utils.scss +9 -9
- package/src/style/partial/common.variables.scss +8 -8
- package/src/style/style.scss +1 -1
- package/stop-propagation/index.d.ts +5 -0
- package/stop-propagation/public_api.d.ts +6 -0
- package/stop-propagation/stop-drop-propagation.directive.d.ts +6 -0
- package/stop-propagation/stop-propagation.directive.d.ts +6 -0
- package/stop-propagation/stop-propagation.module.d.ts +13 -0
- package/table/index.d.ts +5 -0
- package/table/public_api.d.ts +6 -0
- package/table/table.component.d.ts +40 -0
- package/table/table.module.d.ts +12 -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/shared/toolbox.enums.d.ts +1 -0
- package/tool/src/tool.theming.scss +5 -0
- package/tool/src/toolbox/toolbox.theming.scss +105 -0
- package/tool/tool.module.d.ts +15 -0
- package/tool/toolbox/index.d.ts +2 -0
- package/tool/toolbox/toolbox.component.d.ts +128 -0
- package/tool/toolbox/toolbox.module.d.ts +10 -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/widget/widget-outlet/widget-outlet.module.d.ts +10 -0
- package/widget/widget.module.d.ts +10 -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-selector/workspace-selector.module.d.ts +10 -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-widget-outlet/workspace-widget-outlet.module.d.ts +10 -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 -190
- package/esm2022/lib/action/actionbar/actionbar.component.mjs +0 -258
- package/esm2022/lib/action/actionbar/actionbar.module.mjs +0 -56
- 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 -24
- package/esm2022/lib/backdrop/index.mjs +0 -2
- package/esm2022/lib/badge-icon/badge-icon.directive.mjs +0 -150
- 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 -31
- package/esm2022/lib/clickout/clickout.module.mjs +0 -23
- package/esm2022/lib/clickout/index.mjs +0 -2
- package/esm2022/lib/clone/clone.module.mjs +0 -23
- package/esm2022/lib/clone/clone.pipe.mjs +0 -24
- package/esm2022/lib/clone/index.mjs +0 -2
- package/esm2022/lib/collapsible/collapse.directive.mjs +0 -56
- package/esm2022/lib/collapsible/collapsible.component.mjs +0 -36
- package/esm2022/lib/collapsible/collapsible.module.mjs +0 -26
- package/esm2022/lib/collapsible/index.mjs +0 -3
- package/esm2022/lib/color-picker-form-field/color-picker-form-field.component.mjs +0 -91
- package/esm2022/lib/color-picker-form-field/color-picker-form-field.module.mjs +0 -51
- package/esm2022/lib/color-picker-form-field/index.mjs +0 -2
- package/esm2022/lib/confirm-dialog/confirm-dialog.component.mjs +0 -23
- package/esm2022/lib/confirm-dialog/confirm-dialog.interface.mjs +0 -2
- package/esm2022/lib/confirm-dialog/confirm-dialog.module.mjs +0 -28
- package/esm2022/lib/confirm-dialog/confirm-dialog.service.mjs +0 -34
- package/esm2022/lib/confirm-dialog/index.mjs +0 -4
- package/esm2022/lib/context-menu/context-menu.directive.mjs +0 -108
- package/esm2022/lib/context-menu/context-menu.module.mjs +0 -24
- package/esm2022/lib/context-menu/index.mjs +0 -3
- package/esm2022/lib/context-menu/long-press.directive.mjs +0 -65
- package/esm2022/lib/custom-html/custom-html.component.mjs +0 -22
- package/esm2022/lib/custom-html/custom-html.module.mjs +0 -46
- package/esm2022/lib/custom-html/custom-html.pipe.mjs +0 -20
- package/esm2022/lib/custom-html/index.mjs +0 -3
- package/esm2022/lib/dom/dom.interfaces.mjs +0 -2
- package/esm2022/lib/dom/dom.module.mjs +0 -21
- 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 -81
- package/esm2022/lib/drag-drop/drag-drop.module.mjs +0 -23
- 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 -21
- 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 -164
- package/esm2022/lib/entity/entity-selector/entity-selector.module.mjs +0 -23
- package/esm2022/lib/entity/entity-table/entity-table-row.directive.mjs +0 -137
- package/esm2022/lib/entity/entity-table/entity-table.component.mjs +0 -842
- package/esm2022/lib/entity/entity-table/entity-table.module.mjs +0 -95
- 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 -21
- package/esm2022/lib/entity/entity.module.mjs +0 -28
- package/esm2022/lib/entity/index.mjs +0 -6
- 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 -23
- 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 -102
- package/esm2022/lib/form/form/form.module.mjs +0 -22
- package/esm2022/lib/form/form-field/form-field-select.component.mjs +0 -99
- package/esm2022/lib/form/form-field/form-field-text.component.mjs +0 -109
- package/esm2022/lib/form/form-field/form-field-textarea.component.mjs +0 -80
- package/esm2022/lib/form/form-field/form-field.component.mjs +0 -65
- package/esm2022/lib/form/form-field/form-field.module.mjs +0 -77
- package/esm2022/lib/form/form-field/index.mjs +0 -5
- package/esm2022/lib/form/form-group/form-group.component.mjs +0 -73
- package/esm2022/lib/form/form-group/form-group.module.mjs +0 -35
- package/esm2022/lib/form/form.module.mjs +0 -26
- package/esm2022/lib/form/index.mjs +0 -5
- 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 -80
- package/esm2022/lib/form-dialog/form-dialog.interface.mjs +0 -2
- package/esm2022/lib/form-dialog/form-dialog.module.mjs +0 -52
- 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 -22
- package/esm2022/lib/home-button/home-button.module.mjs +0 -40
- package/esm2022/lib/home-button/index.mjs +0 -2
- package/esm2022/lib/image/image-error.directive.mjs +0 -34
- package/esm2022/lib/image/image.module.mjs +0 -24
- package/esm2022/lib/image/index.mjs +0 -3
- package/esm2022/lib/image/secure-image.pipe.mjs +0 -65
- package/esm2022/lib/interactive-tour/index.mjs +0 -5
- package/esm2022/lib/interactive-tour/interactive-tour.component.mjs +0 -114
- 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 -39
- 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 -29
- package/esm2022/lib/json-dialog/json-dialog.module.mjs +0 -28
- 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 -23
- package/esm2022/lib/keyvalue/keyvalue.pipe.mjs +0 -18
- package/esm2022/lib/list/index.mjs +0 -3
- package/esm2022/lib/list/list-item.directive.mjs +0 -165
- package/esm2022/lib/list/list.component.mjs +0 -251
- package/esm2022/lib/list/list.module.mjs +0 -28
- 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 -18
- package/esm2022/lib/select-value-dialog/index.mjs +0 -5
- package/esm2022/lib/select-value-dialog/select-value-check-radio-dialog.component.mjs +0 -87
- 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 -59
- 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 -57
- package/esm2022/lib/sidenav/sidenav.module.mjs +0 -23
- package/esm2022/lib/spinner/index.mjs +0 -3
- package/esm2022/lib/spinner/spinner-activity.directive.mjs +0 -55
- package/esm2022/lib/spinner/spinner.component.mjs +0 -30
- package/esm2022/lib/spinner/spinner.module.mjs +0 -20
- package/esm2022/lib/stop-propagation/index.mjs +0 -3
- package/esm2022/lib/stop-propagation/stop-drop-propagation.directive.mjs +0 -20
- package/esm2022/lib/stop-propagation/stop-propagation.directive.mjs +0 -19
- package/esm2022/lib/stop-propagation/stop-propagation.module.mjs +0 -24
- 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 -124
- package/esm2022/lib/table/table.module.mjs +0 -66
- 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 -7
- package/esm2022/lib/tool/shared/toolbox.mjs +0 -184
- package/esm2022/lib/tool/tool.module.mjs +0 -25
- package/esm2022/lib/tool/toolbox/toolbox.animation.mjs +0 -10
- package/esm2022/lib/tool/toolbox/toolbox.component.mjs +0 -238
- package/esm2022/lib/tool/toolbox/toolbox.module.mjs +0 -23
- 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 -22
- package/esm2022/lib/widget/widget.module.mjs +0 -20
- package/esm2022/lib/workspace/index.mjs +0 -4
- 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 -22
- 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 -22
- package/esm2022/lib/workspace/workspace.module.mjs +0 -19
- package/lib/action/action.module.d.ts +0 -8
- package/lib/action/actionbar/actionbar-item.component.d.ts +0 -78
- package/lib/action/actionbar/actionbar.component.d.ts +0 -147
- package/lib/action/actionbar/actionbar.module.d.ts +0 -20
- 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/backdrop.component.d.ts +0 -9
- package/lib/backdrop/backdrop.module.d.ts +0 -10
- package/lib/backdrop/index.d.ts +0 -1
- package/lib/badge-icon/badge-icon.directive.d.ts +0 -36
- package/lib/badge-icon/badge-icon.module.d.ts +0 -11
- package/lib/badge-icon/index.d.ts +0 -1
- package/lib/clickout/clickout.directive.d.ts +0 -10
- package/lib/clickout/clickout.module.d.ts +0 -9
- package/lib/clickout/index.d.ts +0 -1
- package/lib/clone/clone.module.d.ts +0 -9
- package/lib/clone/clone.pipe.d.ts +0 -7
- package/lib/clone/index.d.ts +0 -1
- package/lib/collapsible/collapse.directive.d.ts +0 -19
- package/lib/collapsible/collapsible.component.d.ts +0 -13
- package/lib/collapsible/collapsible.module.d.ts +0 -12
- package/lib/collapsible/index.d.ts +0 -2
- package/lib/color-picker-form-field/color-picker-form-field.component.d.ts +0 -29
- package/lib/color-picker-form-field/color-picker-form-field.module.d.ts +0 -15
- package/lib/color-picker-form-field/index.d.ts +0 -1
- package/lib/confirm-dialog/confirm-dialog.component.d.ts +0 -12
- package/lib/confirm-dialog/confirm-dialog.module.d.ts +0 -12
- package/lib/confirm-dialog/index.d.ts +0 -3
- package/lib/context-menu/context-menu.directive.d.ts +0 -21
- package/lib/context-menu/context-menu.module.d.ts +0 -10
- package/lib/context-menu/index.d.ts +0 -2
- package/lib/context-menu/long-press.directive.d.ts +0 -20
- package/lib/custom-html/custom-html.component.d.ts +0 -9
- package/lib/custom-html/custom-html.module.d.ts +0 -16
- package/lib/custom-html/custom-html.pipe.d.ts +0 -10
- package/lib/custom-html/index.d.ts +0 -2
- package/lib/dom/dom.module.d.ts +0 -8
- package/lib/dom/index.d.ts +0 -2
- package/lib/drag-drop/drag-drop.directive.d.ts +0 -14
- package/lib/drag-drop/drag-drop.module.d.ts +0 -9
- package/lib/drag-drop/index.d.ts +0 -1
- package/lib/dynamic-component/dynamic-component.module.d.ts +0 -8
- package/lib/dynamic-component/dynamic-outlet/dynamic-outlet.component.d.ts +0 -70
- package/lib/dynamic-component/dynamic-outlet/dynamic-outlet.module.d.ts +0 -11
- package/lib/dynamic-component/index.d.ts +0 -2
- package/lib/entity/entity-selector/entity-selector.component.d.ts +0 -92
- package/lib/entity/entity-selector/entity-selector.module.d.ts +0 -13
- package/lib/entity/entity-table/entity-table-row.directive.d.ts +0 -69
- package/lib/entity/entity-table/entity-table.component.d.ts +0 -342
- package/lib/entity/entity-table/entity-table.module.d.ts +0 -29
- package/lib/entity/entity-table-paginator/entity-table-paginator.component.d.ts +0 -49
- package/lib/entity/entity-table-paginator/entity-table-paginator.module.d.ts +0 -11
- package/lib/entity/entity.module.d.ts +0 -10
- package/lib/entity/index.d.ts +0 -5
- package/lib/entity/shared/entity.interfaces.d.ts +0 -95
- package/lib/entity/shared/transaction.d.ts +0 -180
- package/lib/flexible/flexible.component.d.ts +0 -41
- package/lib/flexible/flexible.module.d.ts +0 -9
- package/lib/flexible/index.d.ts +0 -2
- package/lib/form/form/form.component.d.ts +0 -53
- package/lib/form/form/form.module.d.ts +0 -12
- package/lib/form/form-field/form-field-select.component.d.ts +0 -52
- package/lib/form/form-field/form-field-text.component.d.ts +0 -51
- package/lib/form/form-field/form-field-textarea.component.d.ts +0 -41
- package/lib/form/form-field/form-field.component.d.ts +0 -29
- package/lib/form/form-field/form-field.module.d.ts +0 -22
- package/lib/form/form-field/index.d.ts +0 -4
- package/lib/form/form-group/form-group.component.d.ts +0 -49
- package/lib/form/form-group/form-group.module.d.ts +0 -14
- package/lib/form/form.module.d.ts +0 -13
- package/lib/form/index.d.ts +0 -4
- 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/form-dialog.module.d.ts +0 -16
- package/lib/form-dialog/index.d.ts +0 -3
- package/lib/home-button/home-button.component.d.ts +0 -9
- package/lib/home-button/home-button.module.d.ts +0 -15
- package/lib/home-button/index.d.ts +0 -1
- package/lib/image/image-error.directive.d.ts +0 -11
- package/lib/image/image.module.d.ts +0 -10
- package/lib/image/index.d.ts +0 -2
- 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.module.d.ts +0 -12
- package/lib/interactive-tour/interactive-tour.service.d.ts +0 -29
- package/lib/json-dialog/index.d.ts +0 -2
- package/lib/json-dialog/json-dialog.component.d.ts +0 -13
- package/lib/json-dialog/json-dialog.module.d.ts +0 -13
- package/lib/keyvalue/index.d.ts +0 -1
- package/lib/keyvalue/keyvalue.module.d.ts +0 -9
- package/lib/keyvalue/keyvalue.pipe.d.ts +0 -7
- package/lib/list/index.d.ts +0 -2
- package/lib/list/list-item.directive.d.ts +0 -43
- package/lib/list/list.component.d.ts +0 -51
- package/lib/list/list.module.d.ts +0 -14
- package/lib/panel/index.d.ts +0 -1
- package/lib/panel/panel.component.d.ts +0 -10
- package/lib/panel/panel.module.d.ts +0 -8
- 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/select-value-dialog/select-value-dialog.module.d.ts +0 -17
- package/lib/sidenav/index.d.ts +0 -1
- package/lib/sidenav/sidenav-shim.directive.d.ts +0 -20
- package/lib/sidenav/sidenav.module.d.ts +0 -9
- package/lib/spinner/index.d.ts +0 -2
- package/lib/spinner/spinner-activity.directive.d.ts +0 -32
- package/lib/spinner/spinner.component.d.ts +0 -12
- package/lib/spinner/spinner.module.d.ts +0 -10
- package/lib/stop-propagation/index.d.ts +0 -2
- package/lib/stop-propagation/stop-drop-propagation.directive.d.ts +0 -6
- package/lib/stop-propagation/stop-propagation.directive.d.ts +0 -6
- package/lib/stop-propagation/stop-propagation.module.d.ts +0 -10
- package/lib/table/index.d.ts +0 -5
- package/lib/table/table.component.d.ts +0 -40
- package/lib/table/table.module.d.ts +0 -20
- 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/shared/toolbox.enums.d.ts +0 -5
- package/lib/tool/tool.module.d.ts +0 -10
- package/lib/tool/toolbox/toolbox.component.d.ts +0 -128
- package/lib/tool/toolbox/toolbox.module.d.ts +0 -13
- 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/widget/widget-outlet/widget-outlet.module.d.ts +0 -12
- package/lib/widget/widget.module.d.ts +0 -8
- package/lib/workspace/index.d.ts +0 -3
- 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 -39
- package/lib/workspace/workspace-selector/workspace-selector.module.d.ts +0 -12
- package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.component.d.ts +0 -57
- package/lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module.d.ts +0 -12
- package/lib/workspace/workspace.module.d.ts +0 -9
- 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}/shared/action.enums.d.ts +0 -0
- /package/{lib/action → action}/shared/index.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.service.d.ts +0 -0
- /package/{lib/dom → dom}/dom.interfaces.d.ts +0 -0
- /package/{lib/dom → dom}/dom.service.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-table-paginator/entity-table-paginator.interface.d.ts +0 -0
- /package/{lib/entity → entity}/shared/entity.enums.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.type.d.ts +0 -0
- /package/{lib → form}/form-dialog/form-dialog.service.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/interactive-tour → interactive-tour}/interactive-tour.interface.d.ts +0 -0
- /package/{lib/json-dialog → json-dialog}/json-dialog.service.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.service.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/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}/toolbox/toolbox.animation.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/workspace → workspace}/shared/index.d.ts +0 -0
package/locale/fr.common.json
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"igo": {
|
|
3
|
-
"common": {
|
|
4
|
-
"confirmDialog": {
|
|
5
|
-
"cancelBtn": "Annuler",
|
|
6
|
-
"confirmBtn": "Confirmer",
|
|
7
|
-
"yes": "Oui",
|
|
8
|
-
"no": "Non",
|
|
9
|
-
"title": "Confirmation",
|
|
10
|
-
"applyBtn": "Appliquer"
|
|
11
|
-
},
|
|
12
|
-
"selectValueDialog": {
|
|
13
|
-
"cancelButtonText": "Annuler",
|
|
14
|
-
"processButtonText": "Sélectionner",
|
|
15
|
-
"multipleTitle": "Veuiller sélectionner une ou plusieurs valeurs",
|
|
16
|
-
"title": "Veuiller sélectionner une valeur",
|
|
17
|
-
"selectFieldText": "Options"
|
|
18
|
-
},
|
|
19
|
-
"formDialog": {
|
|
20
|
-
"cancelButtonText": "Annuler",
|
|
21
|
-
"processButtonText": "Confirmer",
|
|
22
|
-
"title": "Veuiller remplir le formulaire"
|
|
23
|
-
},
|
|
24
|
-
"table": {
|
|
25
|
-
"filter": "Filtre"
|
|
26
|
-
},
|
|
27
|
-
"entity-table": {
|
|
28
|
-
"targetHtmlUrl": "Ouvrir le lien externe"
|
|
29
|
-
},
|
|
30
|
-
"form": {
|
|
31
|
-
"errors": {
|
|
32
|
-
"email": "Veuillez saisir un courriel",
|
|
33
|
-
"required": "Ce champ est requis"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"actionbar": {
|
|
37
|
-
"scrollUp": "Défiler vers le haut",
|
|
38
|
-
"scrollDown": "Défiler vers le bas",
|
|
39
|
-
"icon": "Actions supplémentaires"
|
|
40
|
-
},
|
|
41
|
-
"interactiveTour": {
|
|
42
|
-
"tooltipTourToolButton": "Aide interactive sur l'outil",
|
|
43
|
-
"disaledTooltipTourToolButton": "Pour avoir accès au tour interactif de cet outil, ajouter des contextes ou des couches",
|
|
44
|
-
"buttonTitle": "Découvrir",
|
|
45
|
-
"exitButton": "Quitter",
|
|
46
|
-
"backButton": "Précédent",
|
|
47
|
-
"nextButton": "Suivant"
|
|
48
|
-
},
|
|
49
|
-
"paginator": {
|
|
50
|
-
"firstPageLabel": "Première page",
|
|
51
|
-
"itemsPerPageLabel": "Entités par page:",
|
|
52
|
-
"lastPageLabel": "Dernière page",
|
|
53
|
-
"nextPageLabel": "Page suivante",
|
|
54
|
-
"previousPageLabel": "Page précédente",
|
|
55
|
-
"of": "de"
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"igo": {
|
|
3
|
+
"common": {
|
|
4
|
+
"confirmDialog": {
|
|
5
|
+
"cancelBtn": "Annuler",
|
|
6
|
+
"confirmBtn": "Confirmer",
|
|
7
|
+
"yes": "Oui",
|
|
8
|
+
"no": "Non",
|
|
9
|
+
"title": "Confirmation",
|
|
10
|
+
"applyBtn": "Appliquer"
|
|
11
|
+
},
|
|
12
|
+
"selectValueDialog": {
|
|
13
|
+
"cancelButtonText": "Annuler",
|
|
14
|
+
"processButtonText": "Sélectionner",
|
|
15
|
+
"multipleTitle": "Veuiller sélectionner une ou plusieurs valeurs",
|
|
16
|
+
"title": "Veuiller sélectionner une valeur",
|
|
17
|
+
"selectFieldText": "Options"
|
|
18
|
+
},
|
|
19
|
+
"formDialog": {
|
|
20
|
+
"cancelButtonText": "Annuler",
|
|
21
|
+
"processButtonText": "Confirmer",
|
|
22
|
+
"title": "Veuiller remplir le formulaire"
|
|
23
|
+
},
|
|
24
|
+
"table": {
|
|
25
|
+
"filter": "Filtre"
|
|
26
|
+
},
|
|
27
|
+
"entity-table": {
|
|
28
|
+
"targetHtmlUrl": "Ouvrir le lien externe"
|
|
29
|
+
},
|
|
30
|
+
"form": {
|
|
31
|
+
"errors": {
|
|
32
|
+
"email": "Veuillez saisir un courriel",
|
|
33
|
+
"required": "Ce champ est requis"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"actionbar": {
|
|
37
|
+
"scrollUp": "Défiler vers le haut",
|
|
38
|
+
"scrollDown": "Défiler vers le bas",
|
|
39
|
+
"icon": "Actions supplémentaires"
|
|
40
|
+
},
|
|
41
|
+
"interactiveTour": {
|
|
42
|
+
"tooltipTourToolButton": "Aide interactive sur l'outil",
|
|
43
|
+
"disaledTooltipTourToolButton": "Pour avoir accès au tour interactif de cet outil, ajouter des contextes ou des couches",
|
|
44
|
+
"buttonTitle": "Découvrir",
|
|
45
|
+
"exitButton": "Quitter",
|
|
46
|
+
"backButton": "Précédent",
|
|
47
|
+
"nextButton": "Suivant"
|
|
48
|
+
},
|
|
49
|
+
"paginator": {
|
|
50
|
+
"firstPageLabel": "Première page",
|
|
51
|
+
"itemsPerPageLabel": "Entités par page:",
|
|
52
|
+
"lastPageLabel": "Dernière page",
|
|
53
|
+
"nextPageLabel": "Page suivante",
|
|
54
|
+
"previousPageLabel": "Page précédente",
|
|
55
|
+
"of": "de"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/common",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0-next.10",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -31,6 +31,204 @@
|
|
|
31
31
|
"./partial/*": {
|
|
32
32
|
"sass": "./src/style/partial/*.scss"
|
|
33
33
|
},
|
|
34
|
+
"./environment": {
|
|
35
|
+
"types": "./environment/index.d.ts",
|
|
36
|
+
"esm2022": "./esm2022/environment/igo2-common-environment.mjs",
|
|
37
|
+
"esm": "./esm2022/environment/igo2-common-environment.mjs",
|
|
38
|
+
"default": "./fesm2022/igo2-common-environment.mjs"
|
|
39
|
+
},
|
|
40
|
+
"./action": {
|
|
41
|
+
"types": "./action/index.d.ts",
|
|
42
|
+
"esm2022": "./esm2022/action/igo2-common-action.mjs",
|
|
43
|
+
"esm": "./esm2022/action/igo2-common-action.mjs",
|
|
44
|
+
"default": "./fesm2022/igo2-common-action.mjs"
|
|
45
|
+
},
|
|
46
|
+
"./backdrop": {
|
|
47
|
+
"types": "./backdrop/index.d.ts",
|
|
48
|
+
"esm2022": "./esm2022/backdrop/igo2-common-backdrop.mjs",
|
|
49
|
+
"esm": "./esm2022/backdrop/igo2-common-backdrop.mjs",
|
|
50
|
+
"default": "./fesm2022/igo2-common-backdrop.mjs"
|
|
51
|
+
},
|
|
52
|
+
"./badge": {
|
|
53
|
+
"types": "./badge/index.d.ts",
|
|
54
|
+
"esm2022": "./esm2022/badge/igo2-common-badge.mjs",
|
|
55
|
+
"esm": "./esm2022/badge/igo2-common-badge.mjs",
|
|
56
|
+
"default": "./fesm2022/igo2-common-badge.mjs"
|
|
57
|
+
},
|
|
58
|
+
"./clickout": {
|
|
59
|
+
"types": "./clickout/index.d.ts",
|
|
60
|
+
"esm2022": "./esm2022/clickout/igo2-common-clickout.mjs",
|
|
61
|
+
"esm": "./esm2022/clickout/igo2-common-clickout.mjs",
|
|
62
|
+
"default": "./fesm2022/igo2-common-clickout.mjs"
|
|
63
|
+
},
|
|
64
|
+
"./clone": {
|
|
65
|
+
"types": "./clone/index.d.ts",
|
|
66
|
+
"esm2022": "./esm2022/clone/igo2-common-clone.mjs",
|
|
67
|
+
"esm": "./esm2022/clone/igo2-common-clone.mjs",
|
|
68
|
+
"default": "./fesm2022/igo2-common-clone.mjs"
|
|
69
|
+
},
|
|
70
|
+
"./collapsible": {
|
|
71
|
+
"types": "./collapsible/index.d.ts",
|
|
72
|
+
"esm2022": "./esm2022/collapsible/igo2-common-collapsible.mjs",
|
|
73
|
+
"esm": "./esm2022/collapsible/igo2-common-collapsible.mjs",
|
|
74
|
+
"default": "./fesm2022/igo2-common-collapsible.mjs"
|
|
75
|
+
},
|
|
76
|
+
"./color": {
|
|
77
|
+
"types": "./color/index.d.ts",
|
|
78
|
+
"esm2022": "./esm2022/color/igo2-common-color.mjs",
|
|
79
|
+
"esm": "./esm2022/color/igo2-common-color.mjs",
|
|
80
|
+
"default": "./fesm2022/igo2-common-color.mjs"
|
|
81
|
+
},
|
|
82
|
+
"./confirm-dialog": {
|
|
83
|
+
"types": "./confirm-dialog/index.d.ts",
|
|
84
|
+
"esm2022": "./esm2022/confirm-dialog/igo2-common-confirm-dialog.mjs",
|
|
85
|
+
"esm": "./esm2022/confirm-dialog/igo2-common-confirm-dialog.mjs",
|
|
86
|
+
"default": "./fesm2022/igo2-common-confirm-dialog.mjs"
|
|
87
|
+
},
|
|
88
|
+
"./context-menu": {
|
|
89
|
+
"types": "./context-menu/index.d.ts",
|
|
90
|
+
"esm2022": "./esm2022/context-menu/igo2-common-context-menu.mjs",
|
|
91
|
+
"esm": "./esm2022/context-menu/igo2-common-context-menu.mjs",
|
|
92
|
+
"default": "./fesm2022/igo2-common-context-menu.mjs"
|
|
93
|
+
},
|
|
94
|
+
"./custom-html": {
|
|
95
|
+
"types": "./custom-html/index.d.ts",
|
|
96
|
+
"esm2022": "./esm2022/custom-html/igo2-common-custom-html.mjs",
|
|
97
|
+
"esm": "./esm2022/custom-html/igo2-common-custom-html.mjs",
|
|
98
|
+
"default": "./fesm2022/igo2-common-custom-html.mjs"
|
|
99
|
+
},
|
|
100
|
+
"./dom": {
|
|
101
|
+
"types": "./dom/index.d.ts",
|
|
102
|
+
"esm2022": "./esm2022/dom/igo2-common-dom.mjs",
|
|
103
|
+
"esm": "./esm2022/dom/igo2-common-dom.mjs",
|
|
104
|
+
"default": "./fesm2022/igo2-common-dom.mjs"
|
|
105
|
+
},
|
|
106
|
+
"./drag-drop": {
|
|
107
|
+
"types": "./drag-drop/index.d.ts",
|
|
108
|
+
"esm2022": "./esm2022/drag-drop/igo2-common-drag-drop.mjs",
|
|
109
|
+
"esm": "./esm2022/drag-drop/igo2-common-drag-drop.mjs",
|
|
110
|
+
"default": "./fesm2022/igo2-common-drag-drop.mjs"
|
|
111
|
+
},
|
|
112
|
+
"./dynamic-component": {
|
|
113
|
+
"types": "./dynamic-component/index.d.ts",
|
|
114
|
+
"esm2022": "./esm2022/dynamic-component/igo2-common-dynamic-component.mjs",
|
|
115
|
+
"esm": "./esm2022/dynamic-component/igo2-common-dynamic-component.mjs",
|
|
116
|
+
"default": "./fesm2022/igo2-common-dynamic-component.mjs"
|
|
117
|
+
},
|
|
118
|
+
"./entity": {
|
|
119
|
+
"types": "./entity/index.d.ts",
|
|
120
|
+
"esm2022": "./esm2022/entity/igo2-common-entity.mjs",
|
|
121
|
+
"esm": "./esm2022/entity/igo2-common-entity.mjs",
|
|
122
|
+
"default": "./fesm2022/igo2-common-entity.mjs"
|
|
123
|
+
},
|
|
124
|
+
"./flexible": {
|
|
125
|
+
"types": "./flexible/index.d.ts",
|
|
126
|
+
"esm2022": "./esm2022/flexible/igo2-common-flexible.mjs",
|
|
127
|
+
"esm": "./esm2022/flexible/igo2-common-flexible.mjs",
|
|
128
|
+
"default": "./fesm2022/igo2-common-flexible.mjs"
|
|
129
|
+
},
|
|
130
|
+
"./form": {
|
|
131
|
+
"types": "./form/index.d.ts",
|
|
132
|
+
"esm2022": "./esm2022/form/igo2-common-form.mjs",
|
|
133
|
+
"esm": "./esm2022/form/igo2-common-form.mjs",
|
|
134
|
+
"default": "./fesm2022/igo2-common-form.mjs"
|
|
135
|
+
},
|
|
136
|
+
"./home-button": {
|
|
137
|
+
"types": "./home-button/index.d.ts",
|
|
138
|
+
"esm2022": "./esm2022/home-button/igo2-common-home-button.mjs",
|
|
139
|
+
"esm": "./esm2022/home-button/igo2-common-home-button.mjs",
|
|
140
|
+
"default": "./fesm2022/igo2-common-home-button.mjs"
|
|
141
|
+
},
|
|
142
|
+
"./icon": {
|
|
143
|
+
"types": "./icon/index.d.ts",
|
|
144
|
+
"esm2022": "./esm2022/icon/igo2-common-icon.mjs",
|
|
145
|
+
"esm": "./esm2022/icon/igo2-common-icon.mjs",
|
|
146
|
+
"default": "./fesm2022/igo2-common-icon.mjs"
|
|
147
|
+
},
|
|
148
|
+
"./image": {
|
|
149
|
+
"types": "./image/index.d.ts",
|
|
150
|
+
"esm2022": "./esm2022/image/igo2-common-image.mjs",
|
|
151
|
+
"esm": "./esm2022/image/igo2-common-image.mjs",
|
|
152
|
+
"default": "./fesm2022/igo2-common-image.mjs"
|
|
153
|
+
},
|
|
154
|
+
"./interactive-tour": {
|
|
155
|
+
"types": "./interactive-tour/index.d.ts",
|
|
156
|
+
"esm2022": "./esm2022/interactive-tour/igo2-common-interactive-tour.mjs",
|
|
157
|
+
"esm": "./esm2022/interactive-tour/igo2-common-interactive-tour.mjs",
|
|
158
|
+
"default": "./fesm2022/igo2-common-interactive-tour.mjs"
|
|
159
|
+
},
|
|
160
|
+
"./json-dialog": {
|
|
161
|
+
"types": "./json-dialog/index.d.ts",
|
|
162
|
+
"esm2022": "./esm2022/json-dialog/igo2-common-json-dialog.mjs",
|
|
163
|
+
"esm": "./esm2022/json-dialog/igo2-common-json-dialog.mjs",
|
|
164
|
+
"default": "./fesm2022/igo2-common-json-dialog.mjs"
|
|
165
|
+
},
|
|
166
|
+
"./keyvalue": {
|
|
167
|
+
"types": "./keyvalue/index.d.ts",
|
|
168
|
+
"esm2022": "./esm2022/keyvalue/igo2-common-keyvalue.mjs",
|
|
169
|
+
"esm": "./esm2022/keyvalue/igo2-common-keyvalue.mjs",
|
|
170
|
+
"default": "./fesm2022/igo2-common-keyvalue.mjs"
|
|
171
|
+
},
|
|
172
|
+
"./list": {
|
|
173
|
+
"types": "./list/index.d.ts",
|
|
174
|
+
"esm2022": "./esm2022/list/igo2-common-list.mjs",
|
|
175
|
+
"esm": "./esm2022/list/igo2-common-list.mjs",
|
|
176
|
+
"default": "./fesm2022/igo2-common-list.mjs"
|
|
177
|
+
},
|
|
178
|
+
"./panel": {
|
|
179
|
+
"types": "./panel/index.d.ts",
|
|
180
|
+
"esm2022": "./esm2022/panel/igo2-common-panel.mjs",
|
|
181
|
+
"esm": "./esm2022/panel/igo2-common-panel.mjs",
|
|
182
|
+
"default": "./fesm2022/igo2-common-panel.mjs"
|
|
183
|
+
},
|
|
184
|
+
"./select-value-dialog": {
|
|
185
|
+
"types": "./select-value-dialog/index.d.ts",
|
|
186
|
+
"esm2022": "./esm2022/select-value-dialog/igo2-common-select-value-dialog.mjs",
|
|
187
|
+
"esm": "./esm2022/select-value-dialog/igo2-common-select-value-dialog.mjs",
|
|
188
|
+
"default": "./fesm2022/igo2-common-select-value-dialog.mjs"
|
|
189
|
+
},
|
|
190
|
+
"./sidenav": {
|
|
191
|
+
"types": "./sidenav/index.d.ts",
|
|
192
|
+
"esm2022": "./esm2022/sidenav/igo2-common-sidenav.mjs",
|
|
193
|
+
"esm": "./esm2022/sidenav/igo2-common-sidenav.mjs",
|
|
194
|
+
"default": "./fesm2022/igo2-common-sidenav.mjs"
|
|
195
|
+
},
|
|
196
|
+
"./spinner": {
|
|
197
|
+
"types": "./spinner/index.d.ts",
|
|
198
|
+
"esm2022": "./esm2022/spinner/igo2-common-spinner.mjs",
|
|
199
|
+
"esm": "./esm2022/spinner/igo2-common-spinner.mjs",
|
|
200
|
+
"default": "./fesm2022/igo2-common-spinner.mjs"
|
|
201
|
+
},
|
|
202
|
+
"./stop-propagation": {
|
|
203
|
+
"types": "./stop-propagation/index.d.ts",
|
|
204
|
+
"esm2022": "./esm2022/stop-propagation/igo2-common-stop-propagation.mjs",
|
|
205
|
+
"esm": "./esm2022/stop-propagation/igo2-common-stop-propagation.mjs",
|
|
206
|
+
"default": "./fesm2022/igo2-common-stop-propagation.mjs"
|
|
207
|
+
},
|
|
208
|
+
"./table": {
|
|
209
|
+
"types": "./table/index.d.ts",
|
|
210
|
+
"esm2022": "./esm2022/table/igo2-common-table.mjs",
|
|
211
|
+
"esm": "./esm2022/table/igo2-common-table.mjs",
|
|
212
|
+
"default": "./fesm2022/igo2-common-table.mjs"
|
|
213
|
+
},
|
|
214
|
+
"./tool": {
|
|
215
|
+
"types": "./tool/index.d.ts",
|
|
216
|
+
"esm2022": "./esm2022/tool/igo2-common-tool.mjs",
|
|
217
|
+
"esm": "./esm2022/tool/igo2-common-tool.mjs",
|
|
218
|
+
"default": "./fesm2022/igo2-common-tool.mjs"
|
|
219
|
+
},
|
|
220
|
+
"./widget": {
|
|
221
|
+
"types": "./widget/index.d.ts",
|
|
222
|
+
"esm2022": "./esm2022/widget/igo2-common-widget.mjs",
|
|
223
|
+
"esm": "./esm2022/widget/igo2-common-widget.mjs",
|
|
224
|
+
"default": "./fesm2022/igo2-common-widget.mjs"
|
|
225
|
+
},
|
|
226
|
+
"./workspace": {
|
|
227
|
+
"types": "./workspace/index.d.ts",
|
|
228
|
+
"esm2022": "./esm2022/workspace/igo2-common-workspace.mjs",
|
|
229
|
+
"esm": "./esm2022/workspace/igo2-common-workspace.mjs",
|
|
230
|
+
"default": "./fesm2022/igo2-common-workspace.mjs"
|
|
231
|
+
},
|
|
34
232
|
"./package.json": {
|
|
35
233
|
"default": "./package.json"
|
|
36
234
|
}
|
|
@@ -39,14 +237,14 @@
|
|
|
39
237
|
"tslib": "^2.6.0"
|
|
40
238
|
},
|
|
41
239
|
"peerDependencies": {
|
|
42
|
-
"@angular/common": "^
|
|
43
|
-
"@angular/core": "^
|
|
44
|
-
"@angular/material": "^
|
|
45
|
-
"@angular/platform-browser": "^
|
|
240
|
+
"@angular/common": "^17.0.6",
|
|
241
|
+
"@angular/core": "^17.0.6",
|
|
242
|
+
"@angular/material": "^17.0.3",
|
|
243
|
+
"@angular/platform-browser": "^17.0.6",
|
|
46
244
|
"@floating-ui/utils": "^0.1.4",
|
|
47
|
-
"@igo2/core": "^
|
|
48
|
-
"@igo2/utils": "^
|
|
49
|
-
"angular-shepherd": "
|
|
245
|
+
"@igo2/core": "^17.0.0-next.10",
|
|
246
|
+
"@igo2/utils": "^17.0.0-next.10",
|
|
247
|
+
"angular-shepherd": "17.0.0",
|
|
50
248
|
"ngx-color": "^9.0.0",
|
|
51
249
|
"scroll-into-view-if-needed": "^3.0.0",
|
|
52
250
|
"tinycolor2": "^1.6.0",
|
package/panel/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PanelComponent {
|
|
3
|
+
title: string;
|
|
4
|
+
get withHeader(): boolean;
|
|
5
|
+
set withHeader(value: boolean);
|
|
6
|
+
private _withHeader;
|
|
7
|
+
cursorPointer: boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "igo-panel", never, { "title": { "alias": "title"; "required": false; }; "withHeader": { "alias": "withHeader"; "required": false; }; "cursorPointer": { "alias": "cursorPointer"; "required": false; }; }, {}, never, ["[panelLeftButton]", "[panelHeader]", "[panelRightButton]", "*"], true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./panel.component";
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated import the PanelComponent directly
|
|
5
|
+
*/
|
|
6
|
+
export declare class IgoPanelModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgoPanelModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoPanelModule, never, [typeof i1.PanelComponent], [typeof i1.PanelComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IgoPanelModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '@angular/material' as mat;
|
|
3
|
+
|
|
4
|
+
@mixin theme($theme) {
|
|
5
|
+
@include color($theme);
|
|
6
|
+
@include density($theme);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@mixin color($theme) {
|
|
10
|
+
$primary: map.get($theme, primary);
|
|
11
|
+
|
|
12
|
+
igo-panel > .igo-panel-header {
|
|
13
|
+
background-color: mat.get-color-from-palette($primary);
|
|
14
|
+
color: mat.get-color-from-palette($primary, default-contrast);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@mixin density($theme) {
|
|
19
|
+
$density: mat.get-density-config($theme);
|
|
20
|
+
$theme: map.merge(
|
|
21
|
+
$theme,
|
|
22
|
+
(
|
|
23
|
+
density: $density - 2
|
|
24
|
+
)
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
igo-panel {
|
|
28
|
+
@include mat.icon-button-density($theme);
|
|
29
|
+
}
|
|
30
|
+
}
|
package/public_api.d.ts
CHANGED
|
@@ -1,77 +1,16 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export * from './lib/environment';
|
|
18
|
-
export * from './lib/flexible/flexible.module';
|
|
19
|
-
export * from './lib/form/form.module';
|
|
20
|
-
export * from './lib/form/form/form.module';
|
|
21
|
-
export * from './lib/home-button/home-button.module';
|
|
22
|
-
export * from './lib/form/form-field/form-field.module';
|
|
23
|
-
export * from './lib/form/form-group/form-group.module';
|
|
24
|
-
export * from './lib/entity/entity.module';
|
|
25
|
-
export * from './lib/entity/entity-selector/entity-selector.module';
|
|
26
|
-
export * from './lib/entity/entity-table/entity-table.module';
|
|
27
|
-
export * from './lib/entity/entity-table-paginator/entity-table-paginator.module';
|
|
28
|
-
export * from './lib/image/image.module';
|
|
29
|
-
export * from './lib/interactive-tour/interactive-tour.module';
|
|
30
|
-
export * from './lib/json-dialog/json-dialog.module';
|
|
31
|
-
export * from './lib/keyvalue/keyvalue.module';
|
|
32
|
-
export * from './lib/list/list.module';
|
|
33
|
-
export * from './lib/panel/panel.module';
|
|
34
|
-
export * from './lib/sidenav/sidenav.module';
|
|
35
|
-
export * from './lib/spinner/spinner.module';
|
|
36
|
-
export * from './lib/stop-propagation/stop-propagation.module';
|
|
37
|
-
export * from './lib/table/table.module';
|
|
38
|
-
export * from './lib/tool/tool.module';
|
|
39
|
-
export * from './lib/tool/toolbox/toolbox.module';
|
|
40
|
-
export * from './lib/widget/widget.module';
|
|
41
|
-
export * from './lib/widget/widget-outlet/widget-outlet.module';
|
|
42
|
-
export * from './lib/workspace/workspace.module';
|
|
43
|
-
export * from './lib/workspace/workspace-selector/workspace-selector.module';
|
|
44
|
-
export * from './lib/workspace/workspace-widget-outlet/workspace-widget-outlet.module';
|
|
45
|
-
export * from './lib/color-picker-form-field/color-picker-form-field.module';
|
|
46
|
-
export * from './lib/action';
|
|
47
|
-
export * from './lib/backdrop';
|
|
48
|
-
export * from './lib/badge-icon';
|
|
49
|
-
export * from './lib/clickout';
|
|
50
|
-
export * from './lib/clone';
|
|
51
|
-
export * from './lib/collapsible';
|
|
52
|
-
export * from './lib/confirm-dialog';
|
|
53
|
-
export * from './lib/select-value-dialog';
|
|
54
|
-
export * from './lib/form-dialog';
|
|
55
|
-
export * from './lib/context-menu';
|
|
56
|
-
export * from './lib/custom-html';
|
|
57
|
-
export * from './lib/drag-drop';
|
|
58
|
-
export * from './lib/dom';
|
|
59
|
-
export * from './lib/dynamic-component';
|
|
60
|
-
export * from './lib/form';
|
|
61
|
-
export * from './lib/home-button';
|
|
62
|
-
export * from './lib/entity';
|
|
63
|
-
export * from './lib/flexible';
|
|
64
|
-
export * from './lib/image';
|
|
65
|
-
export * from './lib/interactive-tour';
|
|
66
|
-
export * from './lib/json-dialog';
|
|
67
|
-
export * from './lib/keyvalue';
|
|
68
|
-
export * from './lib/list';
|
|
69
|
-
export * from './lib/panel';
|
|
70
|
-
export * from './lib/sidenav';
|
|
71
|
-
export * from './lib/spinner';
|
|
72
|
-
export * from './lib/stop-propagation';
|
|
73
|
-
export * from './lib/table';
|
|
74
|
-
export * from './lib/tool';
|
|
75
|
-
export * from './lib/widget';
|
|
76
|
-
export * from './lib/workspace';
|
|
77
|
-
export * from './lib/color-picker-form-field';
|
|
1
|
+
export { IgoHomeButtonModule } from '@igo2/common/home-button';
|
|
2
|
+
export { IgoImageModule } from '@igo2/common/image';
|
|
3
|
+
export { IgoInteractiveTourModule } from '@igo2/common/interactive-tour';
|
|
4
|
+
export { IgoJsonDialogModule } from '@igo2/common/json-dialog';
|
|
5
|
+
export { IgoKeyValueModule } from '@igo2/common/keyvalue';
|
|
6
|
+
export { IgoFormDialogModule, IgoFormFormModule, IgoFormFieldModule, IgoFormGroupModule, IgoFormModule } from '@igo2/common/form';
|
|
7
|
+
export { IgoListModule } from '@igo2/common/list';
|
|
8
|
+
export { IgoPanelModule } from '@igo2/common/panel';
|
|
9
|
+
export { IgoSelectValueDialogModule } from '@igo2/common/select-value-dialog';
|
|
10
|
+
export { IgoSidenavModule } from '@igo2/common/sidenav';
|
|
11
|
+
export { IgoSpinnerModule } from '@igo2/common/spinner';
|
|
12
|
+
export { IgoStopPropagationModule } from '@igo2/common/stop-propagation';
|
|
13
|
+
export { IgoTableModule } from '@igo2/common/table';
|
|
14
|
+
export { IgoToolModule, IgoToolboxModule } from '@igo2/common/tool';
|
|
15
|
+
export { IgoWidgetModule, IgoWidgetOutletModule } from '@igo2/common/widget';
|
|
16
|
+
export { IgoWorkspaceModule, IgoWorkspaceSelectorModule, IgoWorkspaceWidgetOutletModule } from '@igo2/common/workspace';
|
|
@@ -0,0 +1,25 @@
|
|
|
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/language';
|
|
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
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./select-value-check-radio-dialog.component";
|
|
4
|
+
export declare class IgoSelectValueDialogModule {
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated it has no effect
|
|
7
|
+
*/
|
|
8
|
+
static forRoot(): ModuleWithProviders<IgoSelectValueDialogModule>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgoSelectValueDialogModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoSelectValueDialogModule, never, [typeof i1.SelectValueCheckRadioDialogComponent], [typeof i1.SelectValueCheckRadioDialogComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IgoSelectValueDialogModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Renderer2 } from '@angular/core';
|
|
2
|
+
import { MatSidenav } from '@angular/material/sidenav';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* <igoSidenavShim> directive.
|
|
6
|
+
*
|
|
7
|
+
* This directive prevents a material sidenav with mode="side"
|
|
8
|
+
* from focusing an element after it's closed
|
|
9
|
+
*/
|
|
10
|
+
export declare class SidenavShimDirective {
|
|
11
|
+
private renderer;
|
|
12
|
+
private focusedElement;
|
|
13
|
+
private blurElement;
|
|
14
|
+
onOpen(): void;
|
|
15
|
+
onCloseStart(): void;
|
|
16
|
+
onClose(): void;
|
|
17
|
+
constructor(component: MatSidenav, renderer: Renderer2);
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavShimDirective, [{ self: true; }, null]>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SidenavShimDirective, "[igoSidenavShim]", never, {}, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./sidenav-shim.directive";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated import the SidenavShimDirective directly
|
|
6
|
+
*/
|
|
7
|
+
export declare class IgoSidenavModule {
|
|
8
|
+
static forRoot(): ModuleWithProviders<IgoSidenavModule>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgoSidenavModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoSidenavModule, never, [typeof i1.SidenavShimDirective], [typeof i1.SidenavShimDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IgoSidenavModule>;
|
|
12
|
+
}
|