@yuuvis/client-framework 0.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +62 -0
- package/actions/README.md +3 -0
- package/actions/index.d.ts +6 -0
- package/actions/lib/actions/copy-action/copy-action.d.ts +17 -0
- package/actions/lib/actions/cut-action/cut-action.d.ts +17 -0
- package/actions/lib/actions/delete-action/delete/delete.component.d.ts +22 -0
- package/actions/lib/actions/delete-action/delete-action.d.ts +17 -0
- package/actions/lib/actions/download-action/download-action.d.ts +17 -0
- package/actions/lib/actions.icon.d.ts +7 -0
- package/actions/lib/actions.interface.d.ts +86 -0
- package/actions/lib/actions.module.d.ts +8 -0
- package/actions/lib/actions.service.d.ts +38 -0
- package/actions/lib/components/contextmenu/contextmenu.component.d.ts +11 -0
- package/app-bar/README.md +3 -0
- package/app-bar/index.d.ts +1 -0
- package/app-bar/lib/app-bar.component.d.ts +47 -0
- package/clipboard/README.md +3 -0
- package/clipboard/index.d.ts +1 -0
- package/clipboard/lib/clipboard.component.d.ts +16 -0
- package/common/README.md +3 -0
- package/common/index.d.ts +5 -0
- package/common/lib/components/focus-indicator/focus-indicator.component.d.ts +7 -0
- package/common/lib/components/token-input/token-input.component.d.ts +55 -0
- package/common/lib/components/token-input/token-input.interface.d.ts +8 -0
- package/common/lib/directives/busy-overlay.directive.d.ts +25 -0
- package/common/lib/directives/click-double.directive.d.ts +17 -0
- package/common/lib/directives/container-size.directive.d.ts +30 -0
- package/common/lib/directives/drag-select.directive.d.ts +21 -0
- package/common/lib/directives/file-drop-zone/file-drop-zone.directive.d.ts +18 -0
- package/common/lib/directives/file-drop-zone/file-drop-zone.interface.d.ts +5 -0
- package/common/lib/directives/focus-within.directive.d.ts +36 -0
- package/common/lib/directives/index.d.ts +8 -0
- package/common/lib/directives/light-dismiss.directive.d.ts +19 -0
- package/common/lib/directives/longpress.directive.d.ts +13 -0
- package/common/lib/directives/noop-value-accessor.directive.d.ts +10 -0
- package/esm2022/actions/index.mjs +7 -0
- package/esm2022/actions/lib/actions/copy-action/copy-action.mjs +31 -0
- package/esm2022/actions/lib/actions/cut-action/cut-action.mjs +30 -0
- package/esm2022/actions/lib/actions/delete-action/delete/delete.component.mjs +67 -0
- package/esm2022/actions/lib/actions/delete-action/delete-action.mjs +44 -0
- package/esm2022/actions/lib/actions/download-action/download-action.mjs +33 -0
- package/esm2022/actions/lib/actions.icon.mjs +8 -0
- package/esm2022/actions/lib/actions.interface.mjs +19 -0
- package/esm2022/actions/lib/actions.module.mjs +16 -0
- package/esm2022/actions/lib/actions.service.mjs +89 -0
- package/esm2022/actions/lib/components/contextmenu/contextmenu.component.mjs +27 -0
- package/esm2022/actions/yuuvis-client-framework-actions.mjs +5 -0
- package/esm2022/app-bar/index.mjs +2 -0
- package/esm2022/app-bar/lib/app-bar.component.mjs +89 -0
- package/esm2022/app-bar/yuuvis-client-framework-app-bar.mjs +5 -0
- package/esm2022/clipboard/index.mjs +2 -0
- package/esm2022/clipboard/lib/clipboard.component.mjs +48 -0
- package/esm2022/clipboard/yuuvis-client-framework-clipboard.mjs +5 -0
- package/esm2022/common/index.mjs +6 -0
- package/esm2022/common/lib/components/focus-indicator/focus-indicator.component.mjs +41 -0
- package/esm2022/common/lib/components/token-input/token-input.component.mjs +324 -0
- package/esm2022/common/lib/components/token-input/token-input.interface.mjs +2 -0
- package/esm2022/common/lib/directives/busy-overlay.directive.mjs +88 -0
- package/esm2022/common/lib/directives/click-double.directive.mjs +61 -0
- package/esm2022/common/lib/directives/container-size.directive.mjs +56 -0
- package/esm2022/common/lib/directives/drag-select.directive.mjs +114 -0
- package/esm2022/common/lib/directives/file-drop-zone/file-drop-zone.directive.mjs +153 -0
- package/esm2022/common/lib/directives/file-drop-zone/file-drop-zone.interface.mjs +2 -0
- package/esm2022/common/lib/directives/focus-within.directive.mjs +81 -0
- package/esm2022/common/lib/directives/index.mjs +9 -0
- package/esm2022/common/lib/directives/light-dismiss.directive.mjs +44 -0
- package/esm2022/common/lib/directives/longpress.directive.mjs +36 -0
- package/esm2022/common/lib/directives/noop-value-accessor.directive.mjs +42 -0
- package/esm2022/common/yuuvis-client-framework-common.mjs +5 -0
- package/esm2022/forms/index.mjs +19 -0
- package/esm2022/forms/lib/elements/catalog/catalog.component.mjs +118 -0
- package/esm2022/forms/lib/elements/datetime/datetime.component.mjs +82 -0
- package/esm2022/forms/lib/elements/datetime-range/datetime-range.component.mjs +166 -0
- package/esm2022/forms/lib/elements/number/number.component.mjs +195 -0
- package/esm2022/forms/lib/elements/number-range/number-range.component.mjs +176 -0
- package/esm2022/forms/lib/elements/organization/organization.component.mjs +268 -0
- package/esm2022/forms/lib/elements/string/string.component.mjs +254 -0
- package/esm2022/forms/lib/form-input/form-input.component.mjs +88 -0
- package/esm2022/forms/lib/forms.module.mjs +58 -0
- package/esm2022/forms/yuuvis-client-framework-forms.mjs +5 -0
- package/esm2022/icons/index.mjs +4 -0
- package/esm2022/icons/lib/icon.service.mjs +59 -0
- package/esm2022/icons/lib/icons.mjs +31 -0
- package/esm2022/icons/lib/object-type-icon/object-type-icon.component.mjs +29 -0
- package/esm2022/icons/yuuvis-client-framework-icons.mjs +5 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/lib/yuuvis-client-framework.module.mjs +15 -0
- package/esm2022/list/index.mjs +3 -0
- package/esm2022/list/lib/list-item.directive.mjs +72 -0
- package/esm2022/list/lib/list.component.mjs +133 -0
- package/esm2022/list/yuuvis-client-framework-list.mjs +5 -0
- package/esm2022/metadata-form/index.mjs +4 -0
- package/esm2022/metadata-form/lib/metadata-default-templates/metadata-default-templates.component.mjs +31 -0
- package/esm2022/metadata-form/lib/metadata-form-element-registry.service.mjs +99 -0
- package/esm2022/metadata-form/lib/metadata-form-field/metadata-form-field.component.mjs +126 -0
- package/esm2022/metadata-form/lib/object-metadata-element-template.directive.mjs +52 -0
- package/esm2022/metadata-form/yuuvis-client-framework-metadata-form.mjs +5 -0
- package/esm2022/object-details/index.mjs +7 -0
- package/esm2022/object-details/lib/object-audit/object-audit.component.mjs +195 -0
- package/esm2022/object-details/lib/object-details-shell/object-details-shell.component.mjs +127 -0
- package/esm2022/object-details/lib/object-details.component.mjs +61 -0
- package/esm2022/object-details/lib/object-metadata/form-section-group.pipe.mjs +17 -0
- package/esm2022/object-details/lib/object-metadata/object-metadata.component.mjs +201 -0
- package/esm2022/object-details/lib/object-metadata/object-metadata.interface.mjs +2 -0
- package/esm2022/object-details/yuuvis-client-framework-object-details.mjs +5 -0
- package/esm2022/object-flavor/index.mjs +6 -0
- package/esm2022/object-flavor/lib/abstract-apply-create-flavor/abstract-apply-create-flavor.component.mjs +25 -0
- package/esm2022/object-flavor/lib/abstract-apply-object-flavor/abstract-apply-object-flavor.component.mjs +21 -0
- package/esm2022/object-flavor/lib/flavor-chip/flavor-chip.component.mjs +35 -0
- package/esm2022/object-flavor/lib/object-flavor/object-flavor.component.mjs +93 -0
- package/esm2022/object-flavor/lib/object-flavor-picker/object-flavor-picker.component.mjs +43 -0
- package/esm2022/object-flavor/yuuvis-client-framework-object-flavor.mjs +5 -0
- package/esm2022/object-form/index.mjs +5 -0
- package/esm2022/object-form/lib/form-scripting.api.interface.mjs +2 -0
- package/esm2022/object-form/lib/form-scripting.service.mjs +160 -0
- package/esm2022/object-form/lib/object-form-element/object-form-element.component.mjs +87 -0
- package/esm2022/object-form/lib/object-form-extension.interface.mjs +36 -0
- package/esm2022/object-form/lib/object-form-group/object-form-group.component.mjs +85 -0
- package/esm2022/object-form/lib/object-form-script/form-scripting-element-extension/form-scripting-element-extension.component.mjs +23 -0
- package/esm2022/object-form/lib/object-form-script/object-form-script.service.mjs +115 -0
- package/esm2022/object-form/lib/object-form-script/object-form-scripting-scope.mjs +251 -0
- package/esm2022/object-form/lib/object-form-translate.service.mjs +73 -0
- package/esm2022/object-form/lib/object-form.component.mjs +627 -0
- package/esm2022/object-form/lib/object-form.interface.mjs +9 -0
- package/esm2022/object-form/lib/object-form.model.mjs +20 -0
- package/esm2022/object-form/lib/object-form.service.mjs +127 -0
- package/esm2022/object-form/lib/object-form.utils.mjs +55 -0
- package/esm2022/object-form/lib/object-form.validation.mjs +48 -0
- package/esm2022/object-form/yuuvis-client-framework-object-form.mjs +5 -0
- package/esm2022/object-preview/index.mjs +3 -0
- package/esm2022/object-preview/lib/components/index.mjs +3 -0
- package/esm2022/object-preview/lib/components/object-email-preview/object-email-preview.component.mjs +45 -0
- package/esm2022/object-preview/lib/components/object-preview/object-preview.component.mjs +78 -0
- package/esm2022/object-preview/lib/services/object-preview.service.mjs +92 -0
- package/esm2022/object-preview/yuuvis-client-framework-object-preview.mjs +5 -0
- package/esm2022/object-summary/index.mjs +5 -0
- package/esm2022/object-summary/lib/multi-object-summary/multi-object-summary.component.mjs +33 -0
- package/esm2022/object-summary/lib/object-summary/object-summary.component.mjs +273 -0
- package/esm2022/object-summary/lib/object-summary-data/object-summary-data.component.mjs +80 -0
- package/esm2022/object-summary/lib/object-summary.module.mjs +15 -0
- package/esm2022/object-summary/yuuvis-client-framework-object-summary.mjs +5 -0
- package/esm2022/pagination/index.mjs +3 -0
- package/esm2022/pagination/lib/pagination.component.mjs +48 -0
- package/esm2022/pagination/lib/pagination.interface.mjs +2 -0
- package/esm2022/pagination/yuuvis-client-framework-pagination.mjs +5 -0
- package/esm2022/panel/index.mjs +2 -0
- package/esm2022/panel/lib/panel.component.mjs +20 -0
- package/esm2022/panel/yuuvis-client-framework-panel.mjs +5 -0
- package/esm2022/renderer/index.mjs +11 -0
- package/esm2022/renderer/lib/property-renderer/abstract.renderer.mjs +29 -0
- package/esm2022/renderer/lib/property-renderer/datetime.renderer.mjs +13 -0
- package/esm2022/renderer/lib/property-renderer/decimal.renderer.component.mjs +12 -0
- package/esm2022/renderer/lib/property-renderer/filesize.renderer.component.mjs +28 -0
- package/esm2022/renderer/lib/property-renderer/icon.renderer.component.mjs +23 -0
- package/esm2022/renderer/lib/property-renderer/integer.renderer.component.mjs +12 -0
- package/esm2022/renderer/lib/property-renderer/organization.renderer.mjs +19 -0
- package/esm2022/renderer/lib/property-renderer/string.renderer.component.mjs +12 -0
- package/esm2022/renderer/lib/property-renderer/unknown.renderer.mjs +12 -0
- package/esm2022/renderer/lib/renderer.directive.mjs +51 -0
- package/esm2022/renderer/lib/services/renderer/renderer.interface.mjs +2 -0
- package/esm2022/renderer/lib/services/renderer/renderer.service.mjs +84 -0
- package/esm2022/renderer/yuuvis-client-framework-renderer.mjs +5 -0
- package/esm2022/sequence-list/index.mjs +6 -0
- package/esm2022/sequence-list/lib/due-date-picker/due-date-picker.component.mjs +99 -0
- package/esm2022/sequence-list/lib/sequence-list-template-manage/sequence-list-template-manage.component.mjs +183 -0
- package/esm2022/sequence-list/lib/sequence-list-templates/sequence-list-templates.component.mjs +114 -0
- package/esm2022/sequence-list/lib/sequence-list.component.mjs +146 -0
- package/esm2022/sequence-list/lib/sequence-list.interface.mjs +2 -0
- package/esm2022/sequence-list/yuuvis-client-framework-sequence-list.mjs +5 -0
- package/esm2022/simple-search/index.mjs +3 -0
- package/esm2022/simple-search/lib/simple-search/simple-search.component.mjs +111 -0
- package/esm2022/simple-search/lib/simple-search/simple-search.interface.mjs +2 -0
- package/esm2022/simple-search/yuuvis-client-framework-simple-search.mjs +5 -0
- package/esm2022/tile-list/index.mjs +11 -0
- package/esm2022/tile-list/lib/tile/tile.component.mjs +53 -0
- package/esm2022/tile-list/lib/tile-config/action-select/action-select.component.mjs +22 -0
- package/esm2022/tile-list/lib/tile-config/icon-select/icon-select.component.mjs +33 -0
- package/esm2022/tile-list/lib/tile-config/property-select/property-select.component.mjs +91 -0
- package/esm2022/tile-list/lib/tile-config/tile-config-tile/tile-config-tile.component.mjs +66 -0
- package/esm2022/tile-list/lib/tile-config/tile-config-trigger/tile-config-trigger.component.mjs +46 -0
- package/esm2022/tile-list/lib/tile-config/tile-config.component.mjs +156 -0
- package/esm2022/tile-list/lib/tile-extension/directive/tile-extension.directive.mjs +37 -0
- package/esm2022/tile-list/lib/tile-extension/extensions/email.extension.mjs +42 -0
- package/esm2022/tile-list/lib/tile-extension/tile-extension.service.mjs +35 -0
- package/esm2022/tile-list/lib/tile-list/tile-list.component.mjs +510 -0
- package/esm2022/tile-list/lib/tile-list/tile-list.interface.mjs +2 -0
- package/esm2022/tile-list/yuuvis-client-framework-tile-list.mjs +5 -0
- package/esm2022/token-search/index.mjs +3 -0
- package/esm2022/token-search/token-search.component.mjs +78 -0
- package/esm2022/token-search/token-search.interface.mjs +2 -0
- package/esm2022/token-search/yuuvis-client-framework-token-search.mjs +5 -0
- package/esm2022/tree/index.mjs +3 -0
- package/esm2022/tree/lib/tree-node/tree-node.component.mjs +65 -0
- package/esm2022/tree/lib/tree.component.mjs +148 -0
- package/esm2022/tree/lib/tree.interface.mjs +2 -0
- package/esm2022/tree/lib/tree.service.mjs +95 -0
- package/esm2022/tree/yuuvis-client-framework-tree.mjs +5 -0
- package/esm2022/upload-progress/index.mjs +2 -0
- package/esm2022/upload-progress/lib/upload-progress/upload-progress-overlay/upload-progress-overlay.component.mjs +49 -0
- package/esm2022/upload-progress/lib/upload-progress/upload-progress.component.mjs +37 -0
- package/esm2022/upload-progress/yuuvis-client-framework-upload-progress.mjs +5 -0
- package/esm2022/user-avatar/index.mjs +3 -0
- package/esm2022/user-avatar/lib/user-avatar.component.mjs +69 -0
- package/esm2022/user-avatar/lib/user-avatar.module.mjs +24 -0
- package/esm2022/user-avatar/yuuvis-client-framework-user-avatar.mjs +5 -0
- package/esm2022/yuuvis-client-framework.mjs +5 -0
- package/fesm2022/yuuvis-client-framework-actions.mjs +333 -0
- package/fesm2022/yuuvis-client-framework-actions.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-app-bar.mjs +96 -0
- package/fesm2022/yuuvis-client-framework-app-bar.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-clipboard.mjs +55 -0
- package/fesm2022/yuuvis-client-framework-clipboard.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-common.mjs +1020 -0
- package/fesm2022/yuuvis-client-framework-common.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-forms.mjs +1355 -0
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-icons.mjs +123 -0
- package/fesm2022/yuuvis-client-framework-icons.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-list.mjs +209 -0
- package/fesm2022/yuuvis-client-framework-list.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-metadata-form.mjs +302 -0
- package/fesm2022/yuuvis-client-framework-metadata-form.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-object-details.mjs +583 -0
- package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-object-flavor.mjs +200 -0
- package/fesm2022/yuuvis-client-framework-object-flavor.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-object-form.mjs +1664 -0
- package/fesm2022/yuuvis-client-framework-object-form.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-object-preview.mjs +213 -0
- package/fesm2022/yuuvis-client-framework-object-preview.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-object-summary.mjs +397 -0
- package/fesm2022/yuuvis-client-framework-object-summary.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-pagination.mjs +55 -0
- package/fesm2022/yuuvis-client-framework-pagination.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-panel.mjs +27 -0
- package/fesm2022/yuuvis-client-framework-panel.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-renderer.mjs +262 -0
- package/fesm2022/yuuvis-client-framework-renderer.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-sequence-list.mjs +519 -0
- package/fesm2022/yuuvis-client-framework-sequence-list.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-simple-search.mjs +118 -0
- package/fesm2022/yuuvis-client-framework-simple-search.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-tile-list.mjs +1036 -0
- package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-token-search.mjs +85 -0
- package/fesm2022/yuuvis-client-framework-token-search.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-tree.mjs +307 -0
- package/fesm2022/yuuvis-client-framework-tree.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-upload-progress.mjs +84 -0
- package/fesm2022/yuuvis-client-framework-upload-progress.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-user-avatar.mjs +96 -0
- package/fesm2022/yuuvis-client-framework-user-avatar.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework.mjs +22 -0
- package/fesm2022/yuuvis-client-framework.mjs.map +1 -0
- package/forms/README.md +3 -0
- package/forms/index.d.ts +9 -0
- package/forms/lib/elements/catalog/catalog.component.d.ts +68 -0
- package/forms/lib/elements/datetime/datetime.component.d.ts +32 -0
- package/forms/lib/elements/datetime-range/datetime-range.component.d.ts +51 -0
- package/forms/lib/elements/number/number.component.d.ts +77 -0
- package/forms/lib/elements/number-range/number-range.component.d.ts +66 -0
- package/forms/lib/elements/organization/organization.component.d.ts +93 -0
- package/forms/lib/elements/string/string.component.d.ts +104 -0
- package/forms/lib/form-input/form-input.component.d.ts +48 -0
- package/forms/lib/forms.module.d.ts +16 -0
- package/icons/README.md +5 -0
- package/icons/index.d.ts +3 -0
- package/icons/lib/icon.service.d.ts +38 -0
- package/icons/lib/icons.d.ts +1 -0
- package/icons/lib/object-type-icon/object-type-icon.component.d.ts +11 -0
- package/index.d.ts +1 -0
- package/lib/yuuvis-client-framework.module.d.ts +7 -0
- package/list/README.md +3 -0
- package/list/index.d.ts +2 -0
- package/list/lib/list-item.directive.d.ts +15 -0
- package/list/lib/list.component.d.ts +36 -0
- package/metadata-form/README.md +21 -0
- package/metadata-form/index.d.ts +3 -0
- package/metadata-form/lib/metadata-default-templates/metadata-default-templates.component.d.ts +5 -0
- package/metadata-form/lib/metadata-form-element-registry.service.d.ts +47 -0
- package/metadata-form/lib/metadata-form-field/metadata-form-field.component.d.ts +31 -0
- package/metadata-form/lib/object-metadata-element-template.directive.d.ts +27 -0
- package/object-details/README.md +28 -0
- package/object-details/index.d.ts +6 -0
- package/object-details/lib/object-audit/object-audit.component.d.ts +59 -0
- package/object-details/lib/object-details-shell/object-details-shell.component.d.ts +51 -0
- package/object-details/lib/object-details.component.d.ts +36 -0
- package/object-details/lib/object-metadata/form-section-group.pipe.d.ts +8 -0
- package/object-details/lib/object-metadata/object-metadata.component.d.ts +48 -0
- package/object-details/lib/object-metadata/object-metadata.interface.d.ts +26 -0
- package/object-flavor/README.md +3 -0
- package/object-flavor/index.d.ts +5 -0
- package/object-flavor/lib/abstract-apply-create-flavor/abstract-apply-create-flavor.component.d.ts +12 -0
- package/object-flavor/lib/abstract-apply-object-flavor/abstract-apply-object-flavor.component.d.ts +12 -0
- package/object-flavor/lib/flavor-chip/flavor-chip.component.d.ts +17 -0
- package/object-flavor/lib/object-flavor/object-flavor.component.d.ts +26 -0
- package/object-flavor/lib/object-flavor-picker/object-flavor-picker.component.d.ts +10 -0
- package/object-form/README.md +3 -0
- package/object-form/index.d.ts +4 -0
- package/object-form/lib/form-scripting.api.interface.d.ts +131 -0
- package/object-form/lib/form-scripting.service.d.ts +30 -0
- package/object-form/lib/object-form-element/object-form-element.component.d.ts +22 -0
- package/object-form/lib/object-form-extension.interface.d.ts +22 -0
- package/object-form/lib/object-form-group/object-form-group.component.d.ts +22 -0
- package/object-form/lib/object-form-script/form-scripting-element-extension/form-scripting-element-extension.component.d.ts +10 -0
- package/object-form/lib/object-form-script/object-form-script.service.d.ts +45 -0
- package/object-form/lib/object-form-script/object-form-scripting-scope.d.ts +50 -0
- package/object-form/lib/object-form-translate.service.d.ts +15 -0
- package/object-form/lib/object-form.component.d.ts +60 -0
- package/object-form/lib/object-form.interface.d.ts +113 -0
- package/object-form/lib/object-form.model.d.ts +18 -0
- package/object-form/lib/object-form.service.d.ts +39 -0
- package/object-form/lib/object-form.utils.d.ts +20 -0
- package/object-form/lib/object-form.validation.d.ts +21 -0
- package/object-preview/README.md +3 -0
- package/object-preview/index.d.ts +2 -0
- package/object-preview/lib/components/index.d.ts +2 -0
- package/object-preview/lib/components/object-email-preview/object-email-preview.component.d.ts +16 -0
- package/object-preview/lib/components/object-preview/object-preview.component.d.ts +13 -0
- package/object-preview/lib/services/object-preview.service.d.ts +37 -0
- package/object-summary/README.md +3 -0
- package/object-summary/index.d.ts +4 -0
- package/object-summary/lib/multi-object-summary/multi-object-summary.component.d.ts +7 -0
- package/object-summary/lib/object-summary/object-summary.component.d.ts +73 -0
- package/object-summary/lib/object-summary-data/object-summary-data.component.d.ts +11 -0
- package/object-summary/lib/object-summary.module.d.ts +7 -0
- package/package.json +173 -0
- package/pagination/README.md +3 -0
- package/pagination/index.d.ts +2 -0
- package/pagination/lib/pagination.component.d.ts +18 -0
- package/pagination/lib/pagination.interface.d.ts +5 -0
- package/panel/README.md +3 -0
- package/panel/index.d.ts +1 -0
- package/panel/lib/panel.component.d.ts +12 -0
- package/renderer/README.md +5 -0
- package/renderer/index.d.ts +10 -0
- package/renderer/lib/property-renderer/abstract.renderer.d.ts +14 -0
- package/renderer/lib/property-renderer/datetime.renderer.d.ts +6 -0
- package/renderer/lib/property-renderer/decimal.renderer.component.d.ts +6 -0
- package/renderer/lib/property-renderer/filesize.renderer.component.d.ts +7 -0
- package/renderer/lib/property-renderer/icon.renderer.component.d.ts +6 -0
- package/renderer/lib/property-renderer/integer.renderer.component.d.ts +6 -0
- package/renderer/lib/property-renderer/organization.renderer.d.ts +7 -0
- package/renderer/lib/property-renderer/string.renderer.component.d.ts +6 -0
- package/renderer/lib/property-renderer/unknown.renderer.d.ts +6 -0
- package/renderer/lib/renderer.directive.d.ts +17 -0
- package/renderer/lib/services/renderer/renderer.interface.d.ts +8 -0
- package/renderer/lib/services/renderer/renderer.service.d.ts +35 -0
- package/sequence-list/README.md +3 -0
- package/sequence-list/index.d.ts +5 -0
- package/sequence-list/lib/due-date-picker/due-date-picker.component.d.ts +28 -0
- package/sequence-list/lib/sequence-list-template-manage/sequence-list-template-manage.component.d.ts +52 -0
- package/sequence-list/lib/sequence-list-templates/sequence-list-templates.component.d.ts +36 -0
- package/sequence-list/lib/sequence-list.component.d.ts +43 -0
- package/sequence-list/lib/sequence-list.interface.d.ts +16 -0
- package/simple-search/README.md +3 -0
- package/simple-search/index.d.ts +2 -0
- package/simple-search/lib/simple-search/simple-search.component.d.ts +55 -0
- package/simple-search/lib/simple-search/simple-search.interface.d.ts +4 -0
- package/styles/client-framework.scss +27 -0
- package/tile-list/README.md +3 -0
- package/tile-list/index.d.ts +10 -0
- package/tile-list/lib/tile/tile.component.d.ts +22 -0
- package/tile-list/lib/tile-config/action-select/action-select.component.d.ts +13 -0
- package/tile-list/lib/tile-config/icon-select/icon-select.component.d.ts +11 -0
- package/tile-list/lib/tile-config/property-select/property-select.component.d.ts +25 -0
- package/tile-list/lib/tile-config/tile-config-tile/tile-config-tile.component.d.ts +20 -0
- package/tile-list/lib/tile-config/tile-config-trigger/tile-config-trigger.component.d.ts +17 -0
- package/tile-list/lib/tile-config/tile-config.component.d.ts +47 -0
- package/tile-list/lib/tile-extension/directive/tile-extension.directive.d.ts +11 -0
- package/tile-list/lib/tile-extension/extensions/email.extension.d.ts +10 -0
- package/tile-list/lib/tile-extension/tile-extension.service.d.ts +16 -0
- package/tile-list/lib/tile-list/tile-list.component.d.ts +116 -0
- package/tile-list/lib/tile-list/tile-list.interface.d.ts +18 -0
- package/token-search/README.md +3 -0
- package/token-search/index.d.ts +2 -0
- package/token-search/token-search.component.d.ts +22 -0
- package/token-search/token-search.interface.d.ts +4 -0
- package/tree/README.md +3 -0
- package/tree/index.d.ts +2 -0
- package/tree/lib/tree-node/tree-node.component.d.ts +21 -0
- package/tree/lib/tree.component.d.ts +53 -0
- package/tree/lib/tree.interface.d.ts +11 -0
- package/tree/lib/tree.service.d.ts +35 -0
- package/upload-progress/README.md +3 -0
- package/upload-progress/index.d.ts +1 -0
- package/upload-progress/lib/upload-progress/upload-progress-overlay/upload-progress-overlay.component.d.ts +17 -0
- package/upload-progress/lib/upload-progress/upload-progress.component.d.ts +16 -0
- package/user-avatar/README.md +3 -0
- package/user-avatar/index.d.ts +2 -0
- package/user-avatar/lib/user-avatar.component.d.ts +44 -0
- package/user-avatar/lib/user-avatar.module.d.ts +8 -0
package/sequence-list/lib/sequence-list-template-manage/sequence-list-template-manage.component.d.ts
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { SequenceItem, SequenceListTemplate } from '../sequence-list.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SequenceListTemplateManageComponent implements OnInit {
|
|
6
|
+
private backend;
|
|
7
|
+
private overlay;
|
|
8
|
+
private pendingChanges;
|
|
9
|
+
private fb;
|
|
10
|
+
private translate;
|
|
11
|
+
private DEFAULT_TEMPLATE_STORAGE_SECTION;
|
|
12
|
+
CURRENT_ENTRIES_ID: string;
|
|
13
|
+
TEMPLATE_NAME_MAX_LENGTH: number;
|
|
14
|
+
disableSubmit: boolean;
|
|
15
|
+
templates: SequenceListTemplate[];
|
|
16
|
+
filterTerm: string | null;
|
|
17
|
+
pendingTaskId?: string;
|
|
18
|
+
private _selectedTemplate?;
|
|
19
|
+
set selectedTemplate(s: SequenceListTemplate | undefined);
|
|
20
|
+
get selectedTemplate(): SequenceListTemplate | undefined;
|
|
21
|
+
busy: boolean;
|
|
22
|
+
form: FormGroup;
|
|
23
|
+
/**
|
|
24
|
+
* Name of the section to store templates in user service (usersettings)
|
|
25
|
+
*/
|
|
26
|
+
storageSection: import("@angular/core").InputSignal<string>;
|
|
27
|
+
currentEntries: import("@angular/core").InputSignal<SequenceItem[]>;
|
|
28
|
+
templateSelect: import("@angular/core").OutputEmitterRef<SequenceItem[]>;
|
|
29
|
+
cancel: import("@angular/core").OutputEmitterRef<void>;
|
|
30
|
+
labels: {
|
|
31
|
+
save: any;
|
|
32
|
+
saveNew: any;
|
|
33
|
+
headline: any;
|
|
34
|
+
headlineNew: any;
|
|
35
|
+
errors: {
|
|
36
|
+
maxlength: any;
|
|
37
|
+
forbiddenName: any;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
get formErrors(): any[];
|
|
41
|
+
constructor();
|
|
42
|
+
private forbiddenNameValidator;
|
|
43
|
+
selectCurrentEntries(): void;
|
|
44
|
+
applyTemplate(): void;
|
|
45
|
+
deleteTemplate(): void;
|
|
46
|
+
submit(): void;
|
|
47
|
+
private saveTemplates;
|
|
48
|
+
private loadTemplates;
|
|
49
|
+
ngOnInit(): void;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SequenceListTemplateManageComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SequenceListTemplateManageComponent, "yuv-sequence-list-template-manage", never, { "storageSection": { "alias": "storageSection"; "required": false; "isSignal": true; }; "currentEntries": { "alias": "currentEntries"; "required": false; "isSignal": true; }; }, { "templateSelect": "templateSelect"; "cancel": "cancel"; }, never, never, true, never>;
|
|
52
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormGroup, ValidationErrors, Validator } from '@angular/forms';
|
|
3
|
+
import { YvcOverlayRef } from '@yuuvis/components/overlay';
|
|
4
|
+
import { SequenceItem } from '../sequence-list.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* Task sequence list including templates for sequence lists.
|
|
8
|
+
* Templates are preconfigured lists of tasks and recipients.
|
|
9
|
+
*/
|
|
10
|
+
export declare class SequenceListTemplatesComponent implements ControlValueAccessor, Validator {
|
|
11
|
+
private fb;
|
|
12
|
+
private pendingChanges;
|
|
13
|
+
private overlay;
|
|
14
|
+
tplTemplateManager: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
15
|
+
form: FormGroup;
|
|
16
|
+
private _entries;
|
|
17
|
+
get entries(): SequenceItem[];
|
|
18
|
+
oRef?: YvcOverlayRef;
|
|
19
|
+
title: import("@angular/core").InputSignal<string | undefined>;
|
|
20
|
+
maxLength: import("@angular/core").InputSignal<number>;
|
|
21
|
+
templateStorageSection: import("@angular/core").InputSignal<string>;
|
|
22
|
+
itemEdit: import("@angular/core").OutputEmitterRef<boolean>;
|
|
23
|
+
constructor();
|
|
24
|
+
propagateChange: (_: any) => void;
|
|
25
|
+
private setEntries;
|
|
26
|
+
private propagate;
|
|
27
|
+
writeValue(value: SequenceItem[]): void;
|
|
28
|
+
registerOnChange(fn: any): void;
|
|
29
|
+
registerOnTouched(fn: any): void;
|
|
30
|
+
openTemplateManager(): void;
|
|
31
|
+
templateManagerCancel(): void;
|
|
32
|
+
templateManagerSelect(entries: SequenceItem[]): void;
|
|
33
|
+
validate(): ValidationErrors | null;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SequenceListTemplatesComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SequenceListTemplatesComponent, "yuv-sequence-list-templates", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "templateStorageSection": { "alias": "templateStorageSection"; "required": true; "isSignal": true; }; }, { "itemEdit": "itemEdit"; }, never, never, true, never>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ControlValueAccessor, FormArray, FormControl, FormGroup, ValidationErrors, Validator } from '@angular/forms';
|
|
2
|
+
import { OrganizationComponent } from '@yuuvis/client-framework/forms';
|
|
3
|
+
import { SequenceItem } from './sequence-list.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
type SequenceFormItem = FormGroup<{
|
|
6
|
+
title: FormControl<string>;
|
|
7
|
+
nextAssignee: FormControl<string>;
|
|
8
|
+
expiryDatetime: FormControl<any>;
|
|
9
|
+
}>;
|
|
10
|
+
type SequenceForm = FormGroup<{
|
|
11
|
+
items: FormArray<SequenceFormItem>;
|
|
12
|
+
}>;
|
|
13
|
+
/**
|
|
14
|
+
* Task sequence list.
|
|
15
|
+
*/
|
|
16
|
+
export declare class SequenceListComponent implements ControlValueAccessor, Validator {
|
|
17
|
+
#private;
|
|
18
|
+
orgComponent: OrganizationComponent;
|
|
19
|
+
/**
|
|
20
|
+
* Maximum number of sequence items (defaults to 100).
|
|
21
|
+
*/
|
|
22
|
+
maxLength: import("@angular/core").InputSignal<number>;
|
|
23
|
+
maxLengthExceeded: boolean;
|
|
24
|
+
icons: {
|
|
25
|
+
delete: string;
|
|
26
|
+
add: any;
|
|
27
|
+
};
|
|
28
|
+
sequenceForm: SequenceForm;
|
|
29
|
+
entries: SequenceItem[];
|
|
30
|
+
get formItemArray(): FormArray<SequenceFormItem>;
|
|
31
|
+
constructor();
|
|
32
|
+
addItem(): void;
|
|
33
|
+
addItemAt(idx: number): void;
|
|
34
|
+
removeItem(idx: number): void;
|
|
35
|
+
propagateChange: (_: any) => void;
|
|
36
|
+
registerOnTouched(): void;
|
|
37
|
+
writeValue(value: SequenceItem[]): void;
|
|
38
|
+
registerOnChange(fn: any): void;
|
|
39
|
+
validate(): ValidationErrors | null;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SequenceListComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SequenceListComponent, "yuv-sequence-list", never, { "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
42
|
+
}
|
|
43
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface SequenceItem {
|
|
2
|
+
title: string;
|
|
3
|
+
expiryDatetime?: Date;
|
|
4
|
+
nextAssignee: {
|
|
5
|
+
id: string;
|
|
6
|
+
title: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export interface SequenceListTemplate {
|
|
10
|
+
id: string;
|
|
11
|
+
name: string;
|
|
12
|
+
sequence: SequenceItem[];
|
|
13
|
+
}
|
|
14
|
+
export interface SequenceListTemplateSaveResponse {
|
|
15
|
+
templateName: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { SearchQuery } from '@yuuvis/client-core';
|
|
4
|
+
import { SimpleSearchTarget } from './simple-search.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export interface ObjectTypeAggregation {
|
|
7
|
+
/**
|
|
8
|
+
* id of a found object type
|
|
9
|
+
*/
|
|
10
|
+
objectTypeId: string;
|
|
11
|
+
/**
|
|
12
|
+
* label of an object
|
|
13
|
+
*/
|
|
14
|
+
label: string;
|
|
15
|
+
/**
|
|
16
|
+
* number of objects found
|
|
17
|
+
*/
|
|
18
|
+
count: number;
|
|
19
|
+
}
|
|
20
|
+
export declare class SimpleSearchComponent {
|
|
21
|
+
private fb;
|
|
22
|
+
private searchService;
|
|
23
|
+
private systemService;
|
|
24
|
+
private iconsService;
|
|
25
|
+
/**
|
|
26
|
+
* Targets selectable by dropdown (e.g. target object types to search for)
|
|
27
|
+
*/
|
|
28
|
+
targets: SimpleSearchTarget[];
|
|
29
|
+
private _query;
|
|
30
|
+
/**
|
|
31
|
+
* The search query
|
|
32
|
+
*/
|
|
33
|
+
set query(q: SearchQuery | null);
|
|
34
|
+
get query(): SearchQuery | null;
|
|
35
|
+
form: FormGroup;
|
|
36
|
+
icons: {
|
|
37
|
+
search: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Emitted once the user submits the search
|
|
41
|
+
*/
|
|
42
|
+
querySubmit: EventEmitter<SearchQuery>;
|
|
43
|
+
/**
|
|
44
|
+
* Emitted once selected targets change
|
|
45
|
+
*/
|
|
46
|
+
targetSelectionChanged: EventEmitter<(string | number)[]>;
|
|
47
|
+
queryChange: EventEmitter<SearchQuery>;
|
|
48
|
+
typeAggregation: EventEmitter<ObjectTypeAggregation[]>;
|
|
49
|
+
constructor();
|
|
50
|
+
search(): void;
|
|
51
|
+
aggregate(all?: boolean): void;
|
|
52
|
+
private _processAggregateResult;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleSearchComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleSearchComponent, "yuv-simple-search", never, { "targets": { "alias": "targets"; "required": false; }; "query": { "alias": "query"; "required": false; }; }, { "querySubmit": "querySubmit"; "targetSelectionChanged": "targetSelectionChanged"; "queryChange": "queryChange"; "typeAggregation": "typeAggregation"; }, never, never, true, never>;
|
|
55
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
@import 'ag-grid-community/styles/ag-grid.css';
|
|
2
|
+
@import 'ag-grid-community/styles/ag-theme-alpine.css';
|
|
3
|
+
|
|
4
|
+
@import '@yuuvis/styles/scss/yuuvis.scss';
|
|
5
|
+
@import '@yuuvis/styles/scss/yuuvis-theme-dark.scss';
|
|
6
|
+
@import '@yuuvis/styles/scss/yuuvis-theme-dark-high-contrast.scss';
|
|
7
|
+
|
|
8
|
+
.yuv-busy-overlay {
|
|
9
|
+
position: absolute;
|
|
10
|
+
transition: opacity 200ms;
|
|
11
|
+
opacity: 0;
|
|
12
|
+
top: 0;
|
|
13
|
+
bottom: 0;
|
|
14
|
+
left: 0;
|
|
15
|
+
right: 0;
|
|
16
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-flow: column;
|
|
19
|
+
align-items: center;
|
|
20
|
+
z-index: 5;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
|
|
23
|
+
// dark mode
|
|
24
|
+
.dark & {
|
|
25
|
+
background-color: rgba(var(--color-primary-rgb), 0.85);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './lib/tile-list/tile-list.interface';
|
|
2
|
+
export * from './lib/tile-list/tile-list.component';
|
|
3
|
+
export * from './lib/tile/tile.component';
|
|
4
|
+
export * from './lib/tile-config/tile-config.component';
|
|
5
|
+
export * from './lib/tile-config/property-select/property-select.component';
|
|
6
|
+
export * from './lib/tile-config/tile-config-trigger/tile-config-trigger.component';
|
|
7
|
+
export * from './lib/tile-config/action-select/action-select.component';
|
|
8
|
+
export * from './lib/tile-extension/tile-extension.service';
|
|
9
|
+
export * from './lib/tile-extension/directive/tile-extension.directive';
|
|
10
|
+
export * from './lib/tile-extension/extensions/email.extension';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { Action, ActionContext } from '@yuuvis/client-framework/actions';
|
|
3
|
+
import { TileData } from '../tile-list/tile-list.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TileComponent {
|
|
6
|
+
elRef: ElementRef<any>;
|
|
7
|
+
private dmsService;
|
|
8
|
+
private actionService;
|
|
9
|
+
tile: import("@angular/core").InputSignal<TileData>;
|
|
10
|
+
actionContext: import("@angular/core").InputSignal<ActionContext | undefined>;
|
|
11
|
+
actions: import("@angular/core").Signal<Action[]>;
|
|
12
|
+
rendererInputs: import("@angular/core").Signal<{
|
|
13
|
+
icon: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
|
|
14
|
+
title: import("@yuuvis/client-core").ResolvedObjectConfigItem;
|
|
15
|
+
description: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
|
|
16
|
+
meta: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
|
|
17
|
+
aside: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
|
|
18
|
+
}>;
|
|
19
|
+
executeAction(a: Action, evt: Event): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "yuv-tile", never, { "tile": { "alias": "tile"; "required": true; "isSignal": true; }; "actionContext": { "alias": "actionContext"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
2
|
+
import { VirtualObjectType } from '@yuuvis/client-core';
|
|
3
|
+
import { Action } from '@yuuvis/client-framework/actions';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ActionSelectComponent {
|
|
6
|
+
private actionService;
|
|
7
|
+
objectType: import("@angular/core").InputSignal<VirtualObjectType>;
|
|
8
|
+
actions: Signal<Action[]>;
|
|
9
|
+
selectedActionIds: import("@angular/core").InputSignal<string[]>;
|
|
10
|
+
actionSelect: import("@angular/core").OutputEmitterRef<Action>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionSelectComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionSelectComponent, "yuv-tile-action-select", never, { "objectType": { "alias": "objectType"; "required": true; "isSignal": true; }; "selectedActionIds": { "alias": "selectedActionIds"; "required": false; "isSignal": true; }; }, { "actionSelect": "actionSelect"; }, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { VirtualObjectType } from '@yuuvis/client-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class IconSelectComponent {
|
|
4
|
+
#private;
|
|
5
|
+
objectType: import("@angular/core").InputSignal<VirtualObjectType | undefined>;
|
|
6
|
+
iconSelect: import("@angular/core").OutputEmitterRef<string | null>;
|
|
7
|
+
createIcon(inputEl: HTMLInputElement): Promise<void>;
|
|
8
|
+
reset(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconSelectComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconSelectComponent, "yuv-icon-select", never, { "objectType": { "alias": "objectType"; "required": false; "isSignal": true; }; }, { "iconSelect": "iconSelect"; }, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ObjectConfigProperty, ObjectTypeField, VirtualObjectType } from '@yuuvis/client-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
type TypeProperty = {
|
|
4
|
+
label: string;
|
|
5
|
+
baseProperty?: boolean;
|
|
6
|
+
} & Partial<ObjectTypeField>;
|
|
7
|
+
export declare class PropertySelectComponent {
|
|
8
|
+
#private;
|
|
9
|
+
private system;
|
|
10
|
+
objectTypeFields: TypeProperty[];
|
|
11
|
+
clearIcon: string;
|
|
12
|
+
query: import("@angular/core").WritableSignal<string | null>;
|
|
13
|
+
objectType: import("@angular/core").InputSignal<VirtualObjectType | undefined>;
|
|
14
|
+
filteredObjectTypeFields: import("@angular/core").Signal<TypeProperty[]>;
|
|
15
|
+
objectTypesEffect: import("@angular/core").EffectRef;
|
|
16
|
+
selectedProperty: import("@angular/core").InputSignal<ObjectConfigProperty | undefined>;
|
|
17
|
+
propertySelect: import("@angular/core").OutputEmitterRef<TypeProperty | undefined>;
|
|
18
|
+
selectProperty(field: TypeProperty): void;
|
|
19
|
+
removeProperty(evt: MouseEvent | KeyboardEvent): void;
|
|
20
|
+
private getObjectTypeFields;
|
|
21
|
+
private _getLabel;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertySelectComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PropertySelectComponent, "yuv-tile-property-select", never, { "objectType": { "alias": "objectType"; "required": false; "isSignal": true; }; "selectedProperty": { "alias": "selectedProperty"; "required": false; "isSignal": true; }; }, { "propertySelect": "propertySelect"; }, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ObjectConfig } from '@yuuvis/client-core';
|
|
2
|
+
import { Action } from '@yuuvis/client-framework/actions';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Component for setting up a tile config
|
|
6
|
+
*/
|
|
7
|
+
export declare class TileConfigTileComponent {
|
|
8
|
+
#private;
|
|
9
|
+
private readonly actionService;
|
|
10
|
+
private readonly elRef;
|
|
11
|
+
disableIconSlot: import("@angular/core").InputSignal<boolean | undefined>;
|
|
12
|
+
disableBadgesSlot: import("@angular/core").InputSignal<boolean | undefined>;
|
|
13
|
+
objectConfigInput: import("@angular/core").InputSignal<ObjectConfig>;
|
|
14
|
+
objectConfig: import("@angular/core").Signal<ObjectConfig>;
|
|
15
|
+
actions: import("@angular/core").Signal<Action[]>;
|
|
16
|
+
slotSelect: import("@angular/core").OutputEmitterRef<string>;
|
|
17
|
+
selectSlot(slot: string): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileConfigTileComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileConfigTileComponent, "yuv-tile-config-tile", never, { "disableIconSlot": { "alias": "disableIconSlot"; "required": false; "isSignal": true; }; "disableBadgesSlot": { "alias": "disableBadgesSlot"; "required": false; "isSignal": true; }; "objectConfigInput": { "alias": "objectConfig"; "required": true; "isSignal": true; }; }, { "slotSelect": "slotSelect"; }, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { TileListConfigOptions } from '../../tile-list/tile-list.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TileConfigTriggerComponent {
|
|
5
|
+
private overlayService;
|
|
6
|
+
tplTileConfig: import("@angular/core").Signal<TemplateRef<any>>;
|
|
7
|
+
private _oRef?;
|
|
8
|
+
icon: import("@angular/core").InputSignal<string>;
|
|
9
|
+
bucket: import("@angular/core").InputSignal<string | undefined>;
|
|
10
|
+
bucketLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
11
|
+
options: import("@angular/core").InputSignal<TileListConfigOptions | undefined>;
|
|
12
|
+
openTileConfigOverlay(): void;
|
|
13
|
+
onObjectConfigSave(): void;
|
|
14
|
+
onObjectConfigCancel(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileConfigTriggerComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileConfigTriggerComponent, "yuv-tile-config-trigger", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "bucket": { "alias": "bucket"; "required": false; "isSignal": true; }; "bucketLabel": { "alias": "bucketLabel"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
2
|
+
import { ObjectConfig, ObjectConfigAction, ObjectConfigBadge, ObjectConfigIcon, ObjectConfigProperty, ObjectTypeField, VirtualObjectType } from '@yuuvis/client-core';
|
|
3
|
+
import { Action } from '@yuuvis/client-framework/actions';
|
|
4
|
+
import { ObjectFlavor } from '@yuuvis/client-shell-core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TileConfigComponent {
|
|
7
|
+
#private;
|
|
8
|
+
/**
|
|
9
|
+
* Tile configurations are stored globally for all apps. If you want a
|
|
10
|
+
* separate config for your app/component you can specify a bucket. A bucket
|
|
11
|
+
* is basically an ID where your custom tile config will be stored and
|
|
12
|
+
* retrieved. Buckets should be unique so be sure to use a unique namespace.
|
|
13
|
+
*/
|
|
14
|
+
bucket: import("@angular/core").InputSignal<string | undefined>;
|
|
15
|
+
bucketLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
16
|
+
configTypes: import("@angular/core").InputSignal<VirtualObjectType[] | undefined>;
|
|
17
|
+
configFlavors: import("@angular/core").InputSignal<ObjectFlavor[]>;
|
|
18
|
+
types: Signal<{
|
|
19
|
+
id: string;
|
|
20
|
+
icon?: string;
|
|
21
|
+
flavor?: boolean;
|
|
22
|
+
data: ObjectFlavor | VirtualObjectType;
|
|
23
|
+
}[]>;
|
|
24
|
+
save: import("@angular/core").OutputEmitterRef<void>;
|
|
25
|
+
cancel: import("@angular/core").OutputEmitterRef<void>;
|
|
26
|
+
selectedType?: VirtualObjectType;
|
|
27
|
+
selectedTypeProperties: ObjectTypeField[];
|
|
28
|
+
private _emptyObjectConfig;
|
|
29
|
+
objectConfig?: ObjectConfig;
|
|
30
|
+
selectedSlot?: string;
|
|
31
|
+
flavors: ObjectFlavor[];
|
|
32
|
+
icons: {
|
|
33
|
+
clear: string;
|
|
34
|
+
};
|
|
35
|
+
getConfigValue(p: string): ObjectConfigIcon | ObjectConfigProperty | ObjectConfigAction | ObjectConfigBadge | undefined;
|
|
36
|
+
getConfigProperty(p: string): ObjectConfigProperty | undefined;
|
|
37
|
+
getSelectedActions(): string[];
|
|
38
|
+
slotSelect(item: string): void;
|
|
39
|
+
itemSelected(idx: number[]): void;
|
|
40
|
+
iconSelected(icon: string | null): void;
|
|
41
|
+
propertySelected(tileSlot: string, field?: Partial<ObjectTypeField>): void;
|
|
42
|
+
actionSelected(action: Action): void;
|
|
43
|
+
saveConfig(): void;
|
|
44
|
+
private _saveTileConfig;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileConfigComponent, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileConfigComponent, "yuv-tile-config", never, { "bucket": { "alias": "bucket"; "required": false; "isSignal": true; }; "bucketLabel": { "alias": "bucketLabel"; "required": false; "isSignal": true; }; "configTypes": { "alias": "configTypes"; "required": false; "isSignal": true; }; "configFlavors": { "alias": "configFlavors"; "required": false; "isSignal": true; }; }, { "save": "save"; "cancel": "cancel"; }, never, never, true, never>;
|
|
47
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ComponentRef } from '@angular/core';
|
|
2
|
+
import { TileExtensionComponent, TileExtensionDirectiveInput } from '@yuuvis/client-shell-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TileExtensionDirective {
|
|
5
|
+
#private;
|
|
6
|
+
component: ComponentRef<TileExtensionComponent>;
|
|
7
|
+
yuvTileExtension: import("@angular/core").InputSignal<TileExtensionDirectiveInput>;
|
|
8
|
+
private _render;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileExtensionDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TileExtensionDirective, "[yuvTileExtension]", never, { "yuvTileExtension": { "alias": "yuvTileExtension"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TileExtensionComponent } from '@yuuvis/client-shell-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EmailTileExtensionComponent implements TileExtensionComponent {
|
|
4
|
+
data: import("@angular/core").InputSignal<any>;
|
|
5
|
+
attachments: import("@angular/core").Signal<any>;
|
|
6
|
+
hasAttachements: import("@angular/core").Signal<boolean>;
|
|
7
|
+
onClick(a: string, evt: Event): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmailTileExtensionComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmailTileExtensionComponent, "yuv-email-tile-extension", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TileExtension } from '@yuuvis/client-shell-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TileExtensionService {
|
|
4
|
+
private _extensions;
|
|
5
|
+
constructor();
|
|
6
|
+
registerTileExtension(ext: TileExtension): void;
|
|
7
|
+
hasTileExtension(objectTypeId: string): boolean;
|
|
8
|
+
/**
|
|
9
|
+
* Get tile extensions for a certain type
|
|
10
|
+
* @param typeId ID of the type to fetch extesion for (objectTypeID or secondaryObjectTypeID)
|
|
11
|
+
* @returns
|
|
12
|
+
*/
|
|
13
|
+
getTileExtension(typeId: string): TileExtension | undefined;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileExtensionService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TileExtensionService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { DmsObject, SearchQuery } from '@yuuvis/client-core';
|
|
3
|
+
import { TileComponent } from '../tile/tile.component';
|
|
4
|
+
import { Pagination } from '@yuuvis/client-framework/pagination';
|
|
5
|
+
import { ObjectFlavor } from '@yuuvis/client-shell-core';
|
|
6
|
+
import { TileData, TileListConfigOptions, TileListHighlight } from './tile-list.interface';
|
|
7
|
+
import { Subscription } from 'rxjs';
|
|
8
|
+
import { ListItemDirective } from '@yuuvis/client-framework/list';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
/**
|
|
11
|
+
* List that renders the result of a search query as object config based tiles. It also contains a component to
|
|
12
|
+
* set up that configuration.
|
|
13
|
+
*
|
|
14
|
+
* ## Paging
|
|
15
|
+
* If the search result contains more items than the page size, the list will show a
|
|
16
|
+
* pagination control to navigate inbetween the pages.
|
|
17
|
+
*
|
|
18
|
+
* ## Staggered animation
|
|
19
|
+
* Adding a class of `staggered` to the `yuv-tile-list` component will animate
|
|
20
|
+
* the tiles in a staggered way (only if the user has not set up the OS to not
|
|
21
|
+
* play animation).
|
|
22
|
+
*/
|
|
23
|
+
export declare class TileListComponent implements OnInit, OnDestroy {
|
|
24
|
+
#private;
|
|
25
|
+
emptyContent: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
26
|
+
isTouchDevice: boolean;
|
|
27
|
+
tiles: import("@angular/core").Signal<readonly TileComponent[]>;
|
|
28
|
+
listItems: import("@angular/core").Signal<readonly ListItemDirective[]>;
|
|
29
|
+
searchResultSubscription: Subscription;
|
|
30
|
+
onContextMenu(event: MouseEvent | PointerEvent): void;
|
|
31
|
+
onMouseDown(event: MouseEvent): void;
|
|
32
|
+
onCopy(event: KeyboardEvent): void;
|
|
33
|
+
onCut(event: KeyboardEvent): void;
|
|
34
|
+
onKeydown(event: KeyboardEvent): void;
|
|
35
|
+
private _keyManager;
|
|
36
|
+
_busy: import("@angular/core").WritableSignal<boolean>;
|
|
37
|
+
private oc?;
|
|
38
|
+
pagination?: Pagination;
|
|
39
|
+
private _selection;
|
|
40
|
+
private _lastSelection?;
|
|
41
|
+
selectedTile: import("@angular/core").WritableSignal<TileData[]>;
|
|
42
|
+
empytIcon: import("@angular/core").WritableSignal<string>;
|
|
43
|
+
/**
|
|
44
|
+
* The ID of the selected list item
|
|
45
|
+
*/
|
|
46
|
+
selection: import("@angular/core").WritableSignal<string[]>;
|
|
47
|
+
/**
|
|
48
|
+
* Tile configurations are stored globally for all apps. If you want a
|
|
49
|
+
* separate config for your app/component you can specify a bucket. A bucket
|
|
50
|
+
* is basically an ID where your custom tile config will be stored and
|
|
51
|
+
* retrieved. Buckets should be unique so be sure to use a unique namespace.
|
|
52
|
+
*/
|
|
53
|
+
bucket: import("@angular/core").InputSignal<string | undefined>;
|
|
54
|
+
/**
|
|
55
|
+
* Sets up the ability to select multile tiles
|
|
56
|
+
*/
|
|
57
|
+
multiselect: import("@angular/core").InputSignal<boolean>;
|
|
58
|
+
options: import("@angular/core").InputSignal<TileListConfigOptions | undefined>;
|
|
59
|
+
flavor: import("@angular/core").InputSignal<ObjectFlavor | undefined>;
|
|
60
|
+
flavorEffect: import("@angular/core").EffectRef;
|
|
61
|
+
appliedFlavor?: ObjectFlavor;
|
|
62
|
+
/**
|
|
63
|
+
* The search query to be executed
|
|
64
|
+
*/
|
|
65
|
+
query: import("@angular/core").InputSignal<SearchQuery | null | undefined>;
|
|
66
|
+
preselect: import("@angular/core").InputSignal<string[] | undefined>;
|
|
67
|
+
highlights: import("@angular/core").InputSignal<TileListHighlight[] | null>;
|
|
68
|
+
highlightStyles: import("@angular/core").Signal<Record<string, Record<string, unknown>>>;
|
|
69
|
+
/**
|
|
70
|
+
* Emitted when a list item has been selected
|
|
71
|
+
*/
|
|
72
|
+
itemSelect: import("@angular/core").OutputEmitterRef<TileData>;
|
|
73
|
+
copy: import("@angular/core").OutputEmitterRef<TileData[]>;
|
|
74
|
+
cut: import("@angular/core").OutputEmitterRef<TileData[]>;
|
|
75
|
+
busy: import("@angular/core").OutputEmitterRef<boolean>;
|
|
76
|
+
queryResult: import("@angular/core").OutputEmitterRef<{
|
|
77
|
+
totalCount: number;
|
|
78
|
+
}>;
|
|
79
|
+
/**
|
|
80
|
+
* Emitted when selected items changed. If 'multiselect' input is set to true, this will
|
|
81
|
+
* emit the whole selection, while 'itemSelect' will only emit the item that currently
|
|
82
|
+
* has bee added to the selection.
|
|
83
|
+
*/
|
|
84
|
+
selectionChange: import("@angular/core").OutputEmitterRef<TileData[]>;
|
|
85
|
+
/**
|
|
86
|
+
* Emitted when a list item has been doubleclicked
|
|
87
|
+
*/
|
|
88
|
+
itemDblClick: import("@angular/core").OutputEmitterRef<TileData>;
|
|
89
|
+
ctxMenu: import("@angular/core").OutputEmitterRef<{
|
|
90
|
+
event: MouseEvent | PointerEvent;
|
|
91
|
+
selection: any;
|
|
92
|
+
}>;
|
|
93
|
+
items: TileData[];
|
|
94
|
+
private _rawResult?;
|
|
95
|
+
searchExecuted: boolean;
|
|
96
|
+
constructor();
|
|
97
|
+
contextMenuHandler(event: MouseEvent, index: number): void;
|
|
98
|
+
select(i: TileData, evt: MouseEvent | KeyboardEvent): void;
|
|
99
|
+
onDragSelectChange(sel: number[]): void;
|
|
100
|
+
onDragSelect(sel: number[]): void;
|
|
101
|
+
private _selectByIndex;
|
|
102
|
+
refresh(): void;
|
|
103
|
+
applyFlavor(flavor: ObjectFlavor): void;
|
|
104
|
+
clearSelection(silent?: boolean): void;
|
|
105
|
+
selectNext(): void;
|
|
106
|
+
selectPrev(): void;
|
|
107
|
+
goToPage(page: number): void;
|
|
108
|
+
private _selectionToTileData;
|
|
109
|
+
private _executeQuery;
|
|
110
|
+
private _mapSearchResult;
|
|
111
|
+
updateTileList(listItems: DmsObject[]): void;
|
|
112
|
+
ngOnInit(): void;
|
|
113
|
+
ngOnDestroy(): void;
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileListComponent, never>;
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileListComponent, "yuv-tile-list", never, { "bucket": { "alias": "bucket"; "required": false; "isSignal": true; }; "multiselect": { "alias": "multiselect"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "flavor": { "alias": "flavor"; "required": false; "isSignal": true; }; "query": { "alias": "query"; "required": false; "isSignal": true; }; "preselect": { "alias": "preselect"; "required": false; "isSignal": true; }; "highlights": { "alias": "highlights"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "copy": "copy"; "cut": "cut"; "busy": "busy"; "queryResult": "queryResult"; "selectionChange": "selectionChange"; "itemDblClick": "itemDblClick"; "ctxMenu": "ctxMenu"; }, ["emptyContent"], ["*"], true, never>;
|
|
116
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DmsObject, ResolvedObjectConfig, VirtualObjectType } from '@yuuvis/client-core';
|
|
2
|
+
import { ActionContext } from '@yuuvis/client-framework/actions';
|
|
3
|
+
import { ObjectFlavor } from '@yuuvis/client-shell-core';
|
|
4
|
+
export type TileData = ResolvedObjectConfig & {
|
|
5
|
+
dmsObject: DmsObject;
|
|
6
|
+
};
|
|
7
|
+
export interface TileListConfigOptions {
|
|
8
|
+
/**
|
|
9
|
+
* List of types to be available in tile-config
|
|
10
|
+
*/
|
|
11
|
+
configTypes: VirtualObjectType[];
|
|
12
|
+
configFlavors?: ObjectFlavor[];
|
|
13
|
+
actionContext?: ActionContext;
|
|
14
|
+
}
|
|
15
|
+
export interface TileListHighlight {
|
|
16
|
+
cssStyles: Record<string, unknown>;
|
|
17
|
+
ids: string[];
|
|
18
|
+
}
|