@yuuvis/client-framework 2.0.0-beta.0 → 2.0.0-beta.11
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/actions/lib/actions/delete-action/delete/delete.component.d.ts +3 -3
- package/actions/lib/actions/delete-action/delete-action.d.ts +1 -1
- package/actions/lib/actions.service.d.ts +7 -3
- package/actions/lib/components/contextmenu/contextmenu.component.d.ts +3 -1
- package/autocomplete/README.md +3 -0
- package/autocomplete/index.d.ts +3 -0
- package/autocomplete/lib/autocomplete.component.d.ts +72 -0
- package/autocomplete/lib/autocomplete.interface.d.ts +4 -0
- package/autocomplete/lib/autocomplete.module.d.ts +7 -0
- package/common/index.d.ts +4 -4
- package/common/lib/common.module.d.ts +19 -0
- package/common/lib/common.utils.d.ts +2 -0
- package/common/lib/components/confirm/confirm.component.d.ts +7 -0
- package/common/lib/components/confirm/confirm.interface.d.ts +7 -0
- package/common/lib/components/confirm/confirm.service.d.ts +9 -0
- package/common/lib/components/dialog/dialog.component.d.ts +6 -0
- package/common/lib/components/dialog/dialog.options.d.ts +7 -0
- package/common/lib/components/index.d.ts +5 -0
- package/common/lib/directives/autofocus-child.directive.d.ts +13 -0
- package/common/lib/directives/autofocus-delayed.directive.d.ts +18 -0
- package/common/lib/directives/drag-scroll.directive.d.ts +20 -0
- package/common/lib/directives/index.d.ts +8 -4
- package/common/lib/directives/noop-value-accessor.directive.d.ts +2 -2
- package/common/lib/mat-form-field.abstract.d.ts +41 -0
- package/common/lib/services/index.d.ts +1 -1
- package/common/lib/services/layout-settings/layout-settings.service.d.ts +18 -0
- package/datepicker/README.md +3 -0
- package/datepicker/index.d.ts +5 -0
- package/datepicker/lib/calendar/calendar.component.d.ts +72 -0
- package/datepicker/lib/date-input/date-input-element/date-input-element.component.d.ts +43 -0
- package/datepicker/lib/date-input/date-input-hour-element/date-input-hour-element.component.d.ts +11 -0
- package/datepicker/lib/date-input/date-input.component.d.ts +61 -0
- package/datepicker/lib/datepicker-calendar/datepicker-calendar-trigger.component.d.ts +7 -0
- package/datepicker/lib/datepicker-calendar/datepicker-calendar.component.d.ts +12 -0
- package/datepicker/lib/datepicker.component.d.ts +80 -0
- package/datepicker/lib/datepicker.interface.d.ts +34 -0
- package/datepicker/lib/datepicker.module.d.ts +9 -0
- package/datepicker/lib/datepicker.service.d.ts +46 -0
- package/datepicker/lib/datepicker.utils.d.ts +23 -0
- package/datepicker/lib/time-input/time-input.component.d.ts +36 -0
- package/datepicker/lib/time-input/time-input.interface.d.ts +6 -0
- package/fesm2022/yuuvis-client-framework-actions.mjs +147 -105
- package/fesm2022/yuuvis-client-framework-actions.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-app-bar.mjs +7 -8
- package/fesm2022/yuuvis-client-framework-app-bar.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-autocomplete.mjs +210 -0
- package/fesm2022/yuuvis-client-framework-autocomplete.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-clipboard.mjs +9 -9
- package/fesm2022/yuuvis-client-framework-clipboard.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-common.mjs +853 -780
- package/fesm2022/yuuvis-client-framework-common.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-datepicker.mjs +1688 -0
- package/fesm2022/yuuvis-client-framework-datepicker.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-forms.mjs +945 -1157
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-icons.mjs +85 -12
- package/fesm2022/yuuvis-client-framework-icons.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-list.mjs +81 -45
- package/fesm2022/yuuvis-client-framework-list.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-master-details.mjs +112 -0
- package/fesm2022/yuuvis-client-framework-master-details.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-metadata-form-defaults.mjs +60 -0
- package/fesm2022/yuuvis-client-framework-metadata-form-defaults.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-metadata-form.mjs +125 -100
- package/fesm2022/yuuvis-client-framework-metadata-form.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-details.mjs +49 -59
- package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-flavor.mjs +188 -77
- package/fesm2022/yuuvis-client-framework-object-flavor.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-form.mjs +99 -184
- package/fesm2022/yuuvis-client-framework-object-form.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-preview.mjs +12 -12
- package/fesm2022/yuuvis-client-framework-object-preview.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-summary.mjs +46 -42
- package/fesm2022/yuuvis-client-framework-object-summary.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-overflow-menu.mjs +126 -0
- package/fesm2022/yuuvis-client-framework-overflow-menu.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-pagination.mjs +7 -9
- package/fesm2022/yuuvis-client-framework-pagination.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-panel.mjs +8 -7
- package/fesm2022/yuuvis-client-framework-panel.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-popout.mjs +212 -0
- package/fesm2022/yuuvis-client-framework-popout.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-renderer.mjs +99 -72
- package/fesm2022/yuuvis-client-framework-renderer.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-sequence-list.mjs +29 -112
- package/fesm2022/yuuvis-client-framework-sequence-list.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-simple-search.mjs +40 -21
- package/fesm2022/yuuvis-client-framework-simple-search.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-split-view.mjs +188 -0
- package/fesm2022/yuuvis-client-framework-split-view.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-tile-list.mjs +100 -93
- package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-tree.mjs +15 -15
- package/fesm2022/yuuvis-client-framework-tree.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-upload-progress.mjs +16 -21
- package/fesm2022/yuuvis-client-framework-upload-progress.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework.mjs +4 -4
- package/fesm2022/yuuvis-client-framework.mjs.map +1 -1
- package/forms/index.d.ts +7 -1
- package/forms/lib/elements/catalog/catalog.component.d.ts +17 -56
- package/forms/lib/elements/data-grid/edit-table-data/edit-data.component.d.ts +5 -4
- package/forms/lib/elements/datetime/datetime.component.d.ts +19 -10
- package/forms/lib/elements/datetime-range/datetime-range.component.d.ts +12 -27
- package/forms/lib/elements/index.d.ts +0 -1
- package/forms/lib/elements/number/number.component.d.ts +21 -30
- package/forms/lib/elements/number-range/number-range.component.d.ts +12 -7
- package/forms/lib/elements/organization/organization.component.d.ts +23 -51
- package/forms/lib/elements/range-select-date/range-select-date.component.d.ts +12 -7
- package/forms/lib/elements/range-select-filesize/range-select-filesize.component.d.ts +12 -7
- package/forms/lib/elements/string/string.component.d.ts +15 -20
- package/forms/lib/forms.module.d.ts +8 -11
- package/icons/index.d.ts +1 -0
- package/icons/lib/icon.component.d.ts +20 -0
- package/lib/assets/i18n/de.json +7 -23
- package/lib/assets/i18n/en.json +10 -26
- package/list/index.d.ts +1 -0
- package/list/lib/list-item.directive.d.ts +5 -4
- package/list/lib/list.component.d.ts +6 -3
- package/list/lib/list.module.d.ts +8 -0
- package/master-details/README.md +3 -0
- package/master-details/index.d.ts +2 -0
- package/master-details/lib/master-details.component.d.ts +58 -0
- package/master-details/lib/master-details.interface.d.ts +7 -0
- package/master-details/lib/master-details.module.d.ts +7 -0
- package/metadata-form/index.d.ts +4 -1
- package/metadata-form/lib/metadata-form-field/metadata-form-field.component.d.ts +4 -17
- package/metadata-form/lib/metadata-form-field/metadata-form-field.interface.d.ts +11 -0
- package/metadata-form/lib/object-metadata-element-error.directive.d.ts +13 -0
- package/metadata-form/lib/object-metadata-element-label.directive.d.ts +10 -0
- package/metadata-form/lib/object-metadata-element-template.directive.d.ts +3 -3
- package/metadata-form-defaults/README.md +3 -0
- package/metadata-form-defaults/index.d.ts +2 -0
- package/metadata-form-defaults/lib/metadata-form-defaults.module.d.ts +7 -0
- package/object-details/lib/object-audit/object-audit.component.d.ts +3 -9
- package/object-details/lib/object-details.component.d.ts +0 -2
- package/object-details/lib/object-metadata/object-metadata.component.d.ts +4 -3
- package/object-details/lib/retention-badge/retention-badge.component.d.ts +0 -3
- package/object-flavor/index.d.ts +1 -0
- package/object-flavor/lib/abstract-apply-create-flavor/abstract-apply-create-flavor.component.d.ts +1 -2
- package/object-flavor/lib/abstract-apply-object-flavor/abstract-apply-object-flavor.component.d.ts +3 -2
- package/object-flavor/lib/default-apply-flavor/default-apply-flavor.component.d.ts +19 -0
- package/object-flavor/lib/flavor-chip/flavor-chip.component.d.ts +1 -1
- package/object-flavor/lib/object-flavor/object-flavor.component.d.ts +3 -6
- package/object-flavor/lib/object-flavor-picker/object-flavor-picker.component.d.ts +0 -1
- package/object-form/index.d.ts +1 -1
- package/object-form/lib/object-form-element/object-form-element.component.d.ts +2 -2
- package/object-form/lib/object-form-group/object-form-group.component.d.ts +1 -3
- package/object-form/lib/object-form.component.d.ts +2 -2
- package/object-form/lib/object-form.interface.d.ts +0 -44
- package/object-form/lib/object-form.module.d.ts +7 -0
- package/object-form/lib/object-form.service.d.ts +1 -2
- package/object-form/lib/object-form.utils.d.ts +1 -1
- package/object-summary/lib/object-summary/object-summary.component.d.ts +13 -15
- package/overflow-menu/README.md +3 -0
- package/overflow-menu/index.d.ts +3 -0
- package/overflow-menu/lib/overflow-menu.component.d.ts +31 -0
- package/overflow-menu/lib/overflow-menu.interface.d.ts +9 -0
- package/overflow-menu/lib/overflow-menu.module.d.ts +7 -0
- package/package.json +44 -70
- package/popout/README.md +3 -0
- package/popout/index.d.ts +3 -0
- package/popout/lib/popout.component.d.ts +58 -0
- package/popout/lib/popout.interface.d.ts +17 -0
- package/popout/lib/popout.module.d.ts +7 -0
- package/renderer/lib/property-renderer/abstract.renderer.d.ts +4 -4
- package/renderer/lib/property-renderer/icon.renderer.component.d.ts +2 -0
- package/renderer/lib/renderer.directive.d.ts +4 -3
- package/sequence-list/index.d.ts +0 -1
- package/sequence-list/lib/sequence-list.component.d.ts +0 -4
- package/simple-search/index.d.ts +0 -1
- package/simple-search/lib/simple-search/simple-search.component.d.ts +6 -10
- package/split-view/README.md +3 -0
- package/split-view/index.d.ts +4 -0
- package/split-view/lib/split-area.directive.d.ts +16 -0
- package/split-view/lib/split-view.component.d.ts +76 -0
- package/split-view/lib/split-view.interface.d.ts +10 -0
- package/split-view/lib/split-view.module.d.ts +8 -0
- package/styles/client-framework.scss +21 -67
- package/tile-list/lib/tile/tile.component.d.ts +1 -2
- package/tile-list/lib/tile-config/property-select/property-select.component.d.ts +0 -1
- package/tile-list/lib/tile-config/tile-config-trigger/tile-config-trigger.component.d.ts +1 -2
- package/tile-list/lib/tile-config/tile-config.component.d.ts +0 -3
- package/tile-list/lib/tile-list/tile-list.component.d.ts +5 -5
- package/upload-progress/lib/upload-progress/upload-progress-overlay/upload-progress-overlay.component.d.ts +0 -5
- package/upload-progress/lib/upload-progress/upload-progress.component.d.ts +0 -4
- package/common/lib/components/focus-indicator/focus-indicator.component.d.ts +0 -7
- package/common/lib/components/token-input/token-input.component.d.ts +0 -55
- package/common/lib/components/token-input/token-input.interface.d.ts +0 -8
- package/common/lib/services/error-messages/error-messages.service.d.ts +0 -7
- package/esm2022/actions/index.mjs +0 -7
- package/esm2022/actions/lib/actions/copy-action/copy-action.mjs +0 -31
- package/esm2022/actions/lib/actions/cut-action/cut-action.mjs +0 -30
- package/esm2022/actions/lib/actions/delete-action/delete/delete.component.mjs +0 -67
- package/esm2022/actions/lib/actions/delete-action/delete-action.mjs +0 -38
- package/esm2022/actions/lib/actions/download-action/download-action.mjs +0 -33
- package/esm2022/actions/lib/actions.icon.mjs +0 -8
- package/esm2022/actions/lib/actions.interface.mjs +0 -19
- package/esm2022/actions/lib/actions.module.mjs +0 -16
- package/esm2022/actions/lib/actions.service.mjs +0 -89
- package/esm2022/actions/lib/components/contextmenu/contextmenu.component.mjs +0 -27
- package/esm2022/actions/yuuvis-client-framework-actions.mjs +0 -5
- package/esm2022/app-bar/index.mjs +0 -2
- package/esm2022/app-bar/lib/app-bar.component.mjs +0 -89
- package/esm2022/app-bar/yuuvis-client-framework-app-bar.mjs +0 -5
- package/esm2022/clipboard/index.mjs +0 -2
- package/esm2022/clipboard/lib/clipboard.component.mjs +0 -48
- package/esm2022/clipboard/yuuvis-client-framework-clipboard.mjs +0 -5
- package/esm2022/common/index.mjs +0 -7
- package/esm2022/common/lib/components/focus-indicator/focus-indicator.component.mjs +0 -41
- package/esm2022/common/lib/components/token-input/token-input.component.mjs +0 -324
- package/esm2022/common/lib/components/token-input/token-input.interface.mjs +0 -2
- package/esm2022/common/lib/directives/busy-overlay.directive.mjs +0 -88
- package/esm2022/common/lib/directives/click-double.directive.mjs +0 -61
- package/esm2022/common/lib/directives/container-size.directive.mjs +0 -56
- package/esm2022/common/lib/directives/drag-select.directive.mjs +0 -114
- package/esm2022/common/lib/directives/file-drop-zone/file-drop-zone.directive.mjs +0 -153
- package/esm2022/common/lib/directives/file-drop-zone/file-drop-zone.interface.mjs +0 -2
- package/esm2022/common/lib/directives/focus-within.directive.mjs +0 -81
- package/esm2022/common/lib/directives/index.mjs +0 -9
- package/esm2022/common/lib/directives/light-dismiss.directive.mjs +0 -44
- package/esm2022/common/lib/directives/longpress.directive.mjs +0 -36
- package/esm2022/common/lib/directives/noop-value-accessor.directive.mjs +0 -42
- package/esm2022/common/lib/services/error-messages/error-messages.service.mjs +0 -68
- package/esm2022/common/lib/services/index.mjs +0 -2
- package/esm2022/common/yuuvis-client-framework-common.mjs +0 -5
- package/esm2022/forms/index.mjs +0 -24
- package/esm2022/forms/lib/elements/catalog/catalog.component.mjs +0 -118
- package/esm2022/forms/lib/elements/data-grid/data-grid/data-grid.component.mjs +0 -172
- package/esm2022/forms/lib/elements/data-grid/edit-table-data/edit-data.component.mjs +0 -95
- package/esm2022/forms/lib/elements/data-grid/model/data-grid.interface.mjs +0 -9
- package/esm2022/forms/lib/elements/datetime/datetime.component.mjs +0 -82
- package/esm2022/forms/lib/elements/datetime-range/datetime-range.component.mjs +0 -166
- package/esm2022/forms/lib/elements/index.mjs +0 -11
- package/esm2022/forms/lib/elements/number/number.component.mjs +0 -195
- package/esm2022/forms/lib/elements/number-range/number-range.component.mjs +0 -176
- package/esm2022/forms/lib/elements/organization/organization.component.mjs +0 -286
- package/esm2022/forms/lib/elements/range-select-date/date-range-picker/date-range-picker.component.mjs +0 -38
- package/esm2022/forms/lib/elements/range-select-date/range-select-date.component.mjs +0 -181
- package/esm2022/forms/lib/elements/range-select-date/range-select-date.interface.mjs +0 -2
- package/esm2022/forms/lib/elements/range-select-filesize/range-select-filesize.component.mjs +0 -98
- package/esm2022/forms/lib/elements/range-select-filesize/range-select-filesize.interface.mjs +0 -2
- package/esm2022/forms/lib/elements/string/string.component.mjs +0 -261
- package/esm2022/forms/lib/form-input/form-input.component.mjs +0 -88
- package/esm2022/forms/lib/forms.module.mjs +0 -58
- package/esm2022/forms/yuuvis-client-framework-forms.mjs +0 -5
- package/esm2022/icons/index.mjs +0 -4
- package/esm2022/icons/lib/icon.service.mjs +0 -59
- package/esm2022/icons/lib/icons.mjs +0 -32
- package/esm2022/icons/lib/object-type-icon/object-type-icon.component.mjs +0 -29
- package/esm2022/icons/yuuvis-client-framework-icons.mjs +0 -5
- package/esm2022/index.mjs +0 -2
- package/esm2022/lib/yuuvis-client-framework.module.mjs +0 -15
- package/esm2022/list/index.mjs +0 -3
- package/esm2022/list/lib/list-item.directive.mjs +0 -72
- package/esm2022/list/lib/list.component.mjs +0 -135
- package/esm2022/list/yuuvis-client-framework-list.mjs +0 -5
- package/esm2022/metadata-form/index.mjs +0 -4
- package/esm2022/metadata-form/lib/metadata-default-templates/metadata-default-templates.component.mjs +0 -32
- package/esm2022/metadata-form/lib/metadata-form-element-registry.service.mjs +0 -99
- package/esm2022/metadata-form/lib/metadata-form-field/metadata-form-field.component.mjs +0 -83
- package/esm2022/metadata-form/lib/object-metadata-element-template.directive.mjs +0 -52
- package/esm2022/metadata-form/yuuvis-client-framework-metadata-form.mjs +0 -5
- package/esm2022/object-details/index.mjs +0 -8
- package/esm2022/object-details/lib/object-audit/object-audit.component.mjs +0 -195
- package/esm2022/object-details/lib/object-details-shell/object-details-shell.component.mjs +0 -127
- package/esm2022/object-details/lib/object-details.component.mjs +0 -61
- package/esm2022/object-details/lib/object-metadata/form-section-group.pipe.mjs +0 -17
- package/esm2022/object-details/lib/object-metadata/object-metadata.component.mjs +0 -202
- package/esm2022/object-details/lib/object-metadata/object-metadata.interface.mjs +0 -2
- package/esm2022/object-details/lib/retention-badge/retention-badge.component.mjs +0 -27
- package/esm2022/object-details/yuuvis-client-framework-object-details.mjs +0 -5
- package/esm2022/object-flavor/index.mjs +0 -6
- package/esm2022/object-flavor/lib/abstract-apply-create-flavor/abstract-apply-create-flavor.component.mjs +0 -25
- package/esm2022/object-flavor/lib/abstract-apply-object-flavor/abstract-apply-object-flavor.component.mjs +0 -21
- package/esm2022/object-flavor/lib/flavor-chip/flavor-chip.component.mjs +0 -35
- package/esm2022/object-flavor/lib/object-flavor/object-flavor.component.mjs +0 -93
- package/esm2022/object-flavor/lib/object-flavor-picker/object-flavor-picker.component.mjs +0 -43
- package/esm2022/object-flavor/yuuvis-client-framework-object-flavor.mjs +0 -5
- package/esm2022/object-form/index.mjs +0 -5
- package/esm2022/object-form/lib/form-scripting.api.interface.mjs +0 -2
- package/esm2022/object-form/lib/form-scripting.service.mjs +0 -160
- package/esm2022/object-form/lib/object-form-element/object-form-element.component.mjs +0 -87
- package/esm2022/object-form/lib/object-form-extension.interface.mjs +0 -36
- package/esm2022/object-form/lib/object-form-group/object-form-group.component.mjs +0 -85
- package/esm2022/object-form/lib/object-form-script/form-scripting-element-extension/form-scripting-element-extension.component.mjs +0 -23
- package/esm2022/object-form/lib/object-form-script/object-form-script.service.mjs +0 -115
- package/esm2022/object-form/lib/object-form-script/object-form-scripting-scope.mjs +0 -251
- package/esm2022/object-form/lib/object-form-translate.service.mjs +0 -73
- package/esm2022/object-form/lib/object-form.component.mjs +0 -628
- package/esm2022/object-form/lib/object-form.interface.mjs +0 -9
- package/esm2022/object-form/lib/object-form.model.mjs +0 -20
- package/esm2022/object-form/lib/object-form.service.mjs +0 -130
- package/esm2022/object-form/lib/object-form.utils.mjs +0 -55
- package/esm2022/object-form/lib/object-form.validation.mjs +0 -48
- package/esm2022/object-form/yuuvis-client-framework-object-form.mjs +0 -5
- package/esm2022/object-preview/index.mjs +0 -3
- package/esm2022/object-preview/lib/components/index.mjs +0 -3
- package/esm2022/object-preview/lib/components/object-email-preview/object-email-preview.component.mjs +0 -45
- package/esm2022/object-preview/lib/components/object-preview/object-preview.component.mjs +0 -78
- package/esm2022/object-preview/lib/services/object-preview.service.mjs +0 -119
- package/esm2022/object-preview/yuuvis-client-framework-object-preview.mjs +0 -5
- package/esm2022/object-summary/index.mjs +0 -5
- package/esm2022/object-summary/lib/multi-object-summary/multi-object-summary.component.mjs +0 -33
- package/esm2022/object-summary/lib/object-summary/object-summary.component.mjs +0 -275
- package/esm2022/object-summary/lib/object-summary-data/object-summary-data.component.mjs +0 -80
- package/esm2022/object-summary/lib/object-summary.module.mjs +0 -15
- package/esm2022/object-summary/yuuvis-client-framework-object-summary.mjs +0 -5
- package/esm2022/pagination/index.mjs +0 -3
- package/esm2022/pagination/lib/pagination.component.mjs +0 -46
- package/esm2022/pagination/lib/pagination.interface.mjs +0 -2
- package/esm2022/pagination/yuuvis-client-framework-pagination.mjs +0 -5
- package/esm2022/panel/index.mjs +0 -2
- package/esm2022/panel/lib/panel.component.mjs +0 -20
- package/esm2022/panel/yuuvis-client-framework-panel.mjs +0 -5
- package/esm2022/renderer/index.mjs +0 -11
- package/esm2022/renderer/lib/property-renderer/abstract.renderer.mjs +0 -29
- package/esm2022/renderer/lib/property-renderer/datetime.renderer.mjs +0 -13
- package/esm2022/renderer/lib/property-renderer/decimal.renderer.component.mjs +0 -12
- package/esm2022/renderer/lib/property-renderer/filesize.renderer.component.mjs +0 -28
- package/esm2022/renderer/lib/property-renderer/icon.renderer.component.mjs +0 -23
- package/esm2022/renderer/lib/property-renderer/integer.renderer.component.mjs +0 -12
- package/esm2022/renderer/lib/property-renderer/organization.renderer.mjs +0 -19
- package/esm2022/renderer/lib/property-renderer/string.renderer.component.mjs +0 -12
- package/esm2022/renderer/lib/property-renderer/unknown.renderer.mjs +0 -12
- package/esm2022/renderer/lib/renderer.directive.mjs +0 -51
- package/esm2022/renderer/lib/services/renderer/renderer.interface.mjs +0 -2
- package/esm2022/renderer/lib/services/renderer/renderer.service.mjs +0 -84
- package/esm2022/renderer/yuuvis-client-framework-renderer.mjs +0 -5
- package/esm2022/sequence-list/index.mjs +0 -4
- package/esm2022/sequence-list/lib/due-date-picker/due-date-picker.component.mjs +0 -99
- package/esm2022/sequence-list/lib/sequence-list.component.mjs +0 -141
- package/esm2022/sequence-list/lib/sequence-list.interface.mjs +0 -2
- package/esm2022/sequence-list/yuuvis-client-framework-sequence-list.mjs +0 -5
- package/esm2022/simple-search/index.mjs +0 -3
- package/esm2022/simple-search/lib/simple-search/simple-search.component.mjs +0 -111
- package/esm2022/simple-search/lib/simple-search/simple-search.interface.mjs +0 -2
- package/esm2022/simple-search/yuuvis-client-framework-simple-search.mjs +0 -5
- package/esm2022/tile-list/index.mjs +0 -11
- package/esm2022/tile-list/lib/tile/tile.component.mjs +0 -53
- package/esm2022/tile-list/lib/tile-config/action-select/action-select.component.mjs +0 -25
- package/esm2022/tile-list/lib/tile-config/icon-select/icon-select.component.mjs +0 -33
- package/esm2022/tile-list/lib/tile-config/property-select/property-select.component.mjs +0 -91
- package/esm2022/tile-list/lib/tile-config/tile-config-tile/tile-config-tile.component.mjs +0 -66
- package/esm2022/tile-list/lib/tile-config/tile-config-trigger/tile-config-trigger.component.mjs +0 -46
- package/esm2022/tile-list/lib/tile-config/tile-config.component.mjs +0 -156
- package/esm2022/tile-list/lib/tile-extension/directive/tile-extension.directive.mjs +0 -37
- package/esm2022/tile-list/lib/tile-extension/extensions/email.extension.mjs +0 -42
- package/esm2022/tile-list/lib/tile-extension/tile-extension.service.mjs +0 -35
- package/esm2022/tile-list/lib/tile-list/tile-list.component.mjs +0 -510
- package/esm2022/tile-list/lib/tile-list/tile-list.interface.mjs +0 -2
- package/esm2022/tile-list/yuuvis-client-framework-tile-list.mjs +0 -5
- package/esm2022/token-search/index.mjs +0 -3
- package/esm2022/token-search/token-search.component.mjs +0 -78
- package/esm2022/token-search/token-search.interface.mjs +0 -2
- package/esm2022/token-search/yuuvis-client-framework-token-search.mjs +0 -5
- package/esm2022/tree/index.mjs +0 -3
- package/esm2022/tree/lib/tree-node/tree-node.component.mjs +0 -65
- package/esm2022/tree/lib/tree.component.mjs +0 -148
- package/esm2022/tree/lib/tree.interface.mjs +0 -2
- package/esm2022/tree/lib/tree.service.mjs +0 -95
- package/esm2022/tree/yuuvis-client-framework-tree.mjs +0 -5
- package/esm2022/upload-progress/index.mjs +0 -2
- package/esm2022/upload-progress/lib/upload-progress/upload-progress-overlay/upload-progress-overlay.component.mjs +0 -49
- package/esm2022/upload-progress/lib/upload-progress/upload-progress.component.mjs +0 -37
- package/esm2022/upload-progress/yuuvis-client-framework-upload-progress.mjs +0 -5
- package/esm2022/user-avatar/index.mjs +0 -3
- package/esm2022/user-avatar/lib/user-avatar.component.mjs +0 -69
- package/esm2022/user-avatar/lib/user-avatar.module.mjs +0 -24
- package/esm2022/user-avatar/yuuvis-client-framework-user-avatar.mjs +0 -5
- package/esm2022/yuuvis-client-framework.mjs +0 -5
- package/fesm2022/yuuvis-client-framework-token-search.mjs +0 -85
- package/fesm2022/yuuvis-client-framework-token-search.mjs.map +0 -1
- package/fesm2022/yuuvis-client-framework-user-avatar.mjs +0 -96
- package/fesm2022/yuuvis-client-framework-user-avatar.mjs.map +0 -1
- package/forms/lib/form-input/form-input.component.d.ts +0 -48
- package/object-form/lib/object-form-translate.service.d.ts +0 -15
- package/object-form/lib/object-form.model.d.ts +0 -18
- package/sequence-list/lib/due-date-picker/due-date-picker.component.d.ts +0 -28
- package/simple-search/lib/simple-search/simple-search.interface.d.ts +0 -4
- package/token-search/README.md +0 -3
- package/token-search/index.d.ts +0 -2
- package/token-search/token-search.component.d.ts +0 -22
- package/token-search/token-search.interface.d.ts +0 -4
- package/user-avatar/README.md +0 -3
- package/user-avatar/index.d.ts +0 -2
- package/user-avatar/lib/user-avatar.component.d.ts +0 -44
- package/user-avatar/lib/user-avatar.module.d.ts +0 -8
- /package/{metadata-form → metadata-form-defaults}/lib/metadata-default-templates/metadata-default-templates.component.d.ts +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ConfigTypeOption, DmsObject } from '@yuuvis/client-core';
|
|
2
2
|
import { ObjectFlavorComponent } from '@yuuvis/client-framework/object-flavor';
|
|
3
|
+
import { OverflowMenuItem } from '@yuuvis/client-framework/overflow-menu';
|
|
3
4
|
import { RendererDirectiveInput } from '@yuuvis/client-framework/renderer';
|
|
4
5
|
import { ObjectFlavor } from '@yuuvis/client-shell-core';
|
|
5
|
-
import { MenuItem } from '@yuuvis/components/overflow-menu';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
import * as i1 from "@yuuvis/client-framework/common";
|
|
8
8
|
/**
|
|
@@ -14,24 +14,22 @@ export declare class ObjectSummaryComponent {
|
|
|
14
14
|
flavorCmp: import("@angular/core").Signal<ObjectFlavorComponent | undefined>;
|
|
15
15
|
slide: import("@angular/core").WritableSignal<{
|
|
16
16
|
icon?: {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
uri?: string | undefined;
|
|
17
|
+
name?: string;
|
|
18
|
+
title?: string;
|
|
19
|
+
};
|
|
20
|
+
uri?: string;
|
|
22
21
|
loading: boolean;
|
|
23
|
-
orientation?: "portrait" | "landscape"
|
|
22
|
+
orientation?: "portrait" | "landscape";
|
|
24
23
|
}>;
|
|
25
24
|
busy: boolean;
|
|
26
25
|
contextError?: string;
|
|
27
26
|
headerData: import("@angular/core").WritableSignal<{
|
|
28
27
|
icon?: {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
description?: string | undefined;
|
|
28
|
+
name?: string;
|
|
29
|
+
title?: string;
|
|
30
|
+
};
|
|
31
|
+
title?: string;
|
|
32
|
+
description?: string;
|
|
35
33
|
} | undefined>;
|
|
36
34
|
baseData: {
|
|
37
35
|
label: string;
|
|
@@ -48,7 +46,7 @@ export declare class ObjectSummaryComponent {
|
|
|
48
46
|
icons: {
|
|
49
47
|
folder: any;
|
|
50
48
|
};
|
|
51
|
-
actions: import("@angular/core").InputSignal<
|
|
49
|
+
actions: import("@angular/core").InputSignal<OverflowMenuItem[]>;
|
|
52
50
|
folderInfo?: {
|
|
53
51
|
size: number;
|
|
54
52
|
entries: {
|
|
@@ -67,7 +65,7 @@ export declare class ObjectSummaryComponent {
|
|
|
67
65
|
objectId: import("@angular/core").InputSignal<string | null | undefined>;
|
|
68
66
|
configType: import("@angular/core").InputSignal<ConfigTypeOption | undefined>;
|
|
69
67
|
constructor();
|
|
70
|
-
|
|
68
|
+
onFlavorSelect(flavor: ObjectFlavor | undefined): void;
|
|
71
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectSummaryComponent, never>;
|
|
72
70
|
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectSummaryComponent, "yuv-object-summary", never, { "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "dmsObjectInput": { "alias": "dmsObject"; "required": false; "isSignal": true; }; "objectId": { "alias": "objectId"; "required": false; "isSignal": true; }; "configType": { "alias": "configType"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.BusyOverlayDirective; inputs: { "yuvBusyOverlay": "busy"; }; outputs: {}; }]>;
|
|
73
71
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { OverflowMenuItem } from './overflow-menu.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
type __MenuItem = OverflowMenuItem & {
|
|
5
|
+
overflow: boolean;
|
|
6
|
+
};
|
|
7
|
+
interface MenuGroup {
|
|
8
|
+
id: string;
|
|
9
|
+
items: __MenuItem[];
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Renders items in a toolbar. If menu items provide a 'group' property they will
|
|
13
|
+
* be organized in sections.
|
|
14
|
+
*/
|
|
15
|
+
export declare class OverflowMenuComponent implements AfterViewInit, OnDestroy {
|
|
16
|
+
#private;
|
|
17
|
+
overflowIcon: import("@angular/core").InputSignal<string>;
|
|
18
|
+
groupLabels: import("@angular/core").InputSignal<Record<string, string> | undefined>;
|
|
19
|
+
/**
|
|
20
|
+
* Items of the menu
|
|
21
|
+
*/
|
|
22
|
+
menuItems: import("@angular/core").InputSignal<OverflowMenuItem[]>;
|
|
23
|
+
__menuGroups: import("@angular/core").Signal<MenuGroup[]>;
|
|
24
|
+
private __menuItems;
|
|
25
|
+
overflowGroups: import("@angular/core").WritableSignal<MenuGroup[]>;
|
|
26
|
+
ngAfterViewInit(): void;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverflowMenuComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverflowMenuComponent, "yuv-overflow-menu", never, { "overflowIcon": { "alias": "overflowIcon"; "required": false; "isSignal": true; }; "groupLabels": { "alias": "groupLabels"; "required": false; "isSignal": true; }; "menuItems": { "alias": "menuItems"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./overflow-menu.component";
|
|
3
|
+
export declare class YuvOverflowMenuModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<YuvOverflowMenuModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<YuvOverflowMenuModule, never, [typeof i1.OverflowMenuComponent], [typeof i1.OverflowMenuComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<YuvOverflowMenuModule>;
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/client-framework",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.11",
|
|
4
4
|
"author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@angular/cdk": "^
|
|
8
|
-
"@angular/common": "^
|
|
9
|
-
"@angular/core": "^
|
|
7
|
+
"@angular/cdk": "^19.2.15",
|
|
8
|
+
"@angular/common": "^19.2.1",
|
|
9
|
+
"@angular/core": "^19.2.1",
|
|
10
|
+
"@yuuvis/client-core": "2.0.0-beta.11",
|
|
11
|
+
"modern-normalize": "^3.0.1"
|
|
10
12
|
},
|
|
11
13
|
"dependencies": {
|
|
12
|
-
"@
|
|
13
|
-
"@
|
|
14
|
-
"@yuuvis/client-shell-core": "2.0.0-beta.
|
|
15
|
-
"@yuuvis/
|
|
16
|
-
"@yuuvis/media-viewer": "0.
|
|
17
|
-
"
|
|
18
|
-
"tslib": "^2.
|
|
14
|
+
"@angular/material": "^19.2.15",
|
|
15
|
+
"@ngrx/signals": "^19.2.0",
|
|
16
|
+
"@yuuvis/client-shell-core": "2.0.0-beta.11",
|
|
17
|
+
"@yuuvis/material": "2.0.0-beta.11",
|
|
18
|
+
"@yuuvis/media-viewer": "^1.0.0",
|
|
19
|
+
"angular-split": "^19.0.0",
|
|
20
|
+
"tslib": "^2.3.0"
|
|
19
21
|
},
|
|
20
22
|
"sideEffects": false,
|
|
21
23
|
"exports": {
|
|
22
24
|
".": {
|
|
23
25
|
"scss": "./src/styles/client-framework.scss",
|
|
24
26
|
"types": "./index.d.ts",
|
|
25
|
-
"esm2022": "./esm2022/yuuvis-client-framework.mjs",
|
|
26
|
-
"esm": "./esm2022/yuuvis-client-framework.mjs",
|
|
27
27
|
"default": "./fesm2022/yuuvis-client-framework.mjs"
|
|
28
28
|
},
|
|
29
29
|
"./package.json": {
|
|
@@ -31,141 +31,115 @@
|
|
|
31
31
|
},
|
|
32
32
|
"./actions": {
|
|
33
33
|
"types": "./actions/index.d.ts",
|
|
34
|
-
"esm2022": "./esm2022/actions/yuuvis-client-framework-actions.mjs",
|
|
35
|
-
"esm": "./esm2022/actions/yuuvis-client-framework-actions.mjs",
|
|
36
34
|
"default": "./fesm2022/yuuvis-client-framework-actions.mjs"
|
|
37
35
|
},
|
|
38
36
|
"./app-bar": {
|
|
39
37
|
"types": "./app-bar/index.d.ts",
|
|
40
|
-
"esm2022": "./esm2022/app-bar/yuuvis-client-framework-app-bar.mjs",
|
|
41
|
-
"esm": "./esm2022/app-bar/yuuvis-client-framework-app-bar.mjs",
|
|
42
38
|
"default": "./fesm2022/yuuvis-client-framework-app-bar.mjs"
|
|
43
39
|
},
|
|
40
|
+
"./autocomplete": {
|
|
41
|
+
"types": "./autocomplete/index.d.ts",
|
|
42
|
+
"default": "./fesm2022/yuuvis-client-framework-autocomplete.mjs"
|
|
43
|
+
},
|
|
44
44
|
"./clipboard": {
|
|
45
45
|
"types": "./clipboard/index.d.ts",
|
|
46
|
-
"esm2022": "./esm2022/clipboard/yuuvis-client-framework-clipboard.mjs",
|
|
47
|
-
"esm": "./esm2022/clipboard/yuuvis-client-framework-clipboard.mjs",
|
|
48
46
|
"default": "./fesm2022/yuuvis-client-framework-clipboard.mjs"
|
|
49
47
|
},
|
|
50
48
|
"./common": {
|
|
51
49
|
"types": "./common/index.d.ts",
|
|
52
|
-
"esm2022": "./esm2022/common/yuuvis-client-framework-common.mjs",
|
|
53
|
-
"esm": "./esm2022/common/yuuvis-client-framework-common.mjs",
|
|
54
50
|
"default": "./fesm2022/yuuvis-client-framework-common.mjs"
|
|
55
51
|
},
|
|
52
|
+
"./datepicker": {
|
|
53
|
+
"types": "./datepicker/index.d.ts",
|
|
54
|
+
"default": "./fesm2022/yuuvis-client-framework-datepicker.mjs"
|
|
55
|
+
},
|
|
56
56
|
"./forms": {
|
|
57
57
|
"types": "./forms/index.d.ts",
|
|
58
|
-
"esm2022": "./esm2022/forms/yuuvis-client-framework-forms.mjs",
|
|
59
|
-
"esm": "./esm2022/forms/yuuvis-client-framework-forms.mjs",
|
|
60
58
|
"default": "./fesm2022/yuuvis-client-framework-forms.mjs"
|
|
61
59
|
},
|
|
62
60
|
"./icons": {
|
|
63
61
|
"types": "./icons/index.d.ts",
|
|
64
|
-
"esm2022": "./esm2022/icons/yuuvis-client-framework-icons.mjs",
|
|
65
|
-
"esm": "./esm2022/icons/yuuvis-client-framework-icons.mjs",
|
|
66
62
|
"default": "./fesm2022/yuuvis-client-framework-icons.mjs"
|
|
67
63
|
},
|
|
64
|
+
"./list": {
|
|
65
|
+
"types": "./list/index.d.ts",
|
|
66
|
+
"default": "./fesm2022/yuuvis-client-framework-list.mjs"
|
|
67
|
+
},
|
|
68
|
+
"./master-details": {
|
|
69
|
+
"types": "./master-details/index.d.ts",
|
|
70
|
+
"default": "./fesm2022/yuuvis-client-framework-master-details.mjs"
|
|
71
|
+
},
|
|
68
72
|
"./metadata-form": {
|
|
69
73
|
"types": "./metadata-form/index.d.ts",
|
|
70
|
-
"esm2022": "./esm2022/metadata-form/yuuvis-client-framework-metadata-form.mjs",
|
|
71
|
-
"esm": "./esm2022/metadata-form/yuuvis-client-framework-metadata-form.mjs",
|
|
72
74
|
"default": "./fesm2022/yuuvis-client-framework-metadata-form.mjs"
|
|
73
75
|
},
|
|
74
|
-
"./
|
|
75
|
-
"types": "./
|
|
76
|
-
"
|
|
77
|
-
"esm": "./esm2022/list/yuuvis-client-framework-list.mjs",
|
|
78
|
-
"default": "./fesm2022/yuuvis-client-framework-list.mjs"
|
|
76
|
+
"./metadata-form-defaults": {
|
|
77
|
+
"types": "./metadata-form-defaults/index.d.ts",
|
|
78
|
+
"default": "./fesm2022/yuuvis-client-framework-metadata-form-defaults.mjs"
|
|
79
79
|
},
|
|
80
80
|
"./object-details": {
|
|
81
81
|
"types": "./object-details/index.d.ts",
|
|
82
|
-
"esm2022": "./esm2022/object-details/yuuvis-client-framework-object-details.mjs",
|
|
83
|
-
"esm": "./esm2022/object-details/yuuvis-client-framework-object-details.mjs",
|
|
84
82
|
"default": "./fesm2022/yuuvis-client-framework-object-details.mjs"
|
|
85
83
|
},
|
|
86
84
|
"./object-flavor": {
|
|
87
85
|
"types": "./object-flavor/index.d.ts",
|
|
88
|
-
"esm2022": "./esm2022/object-flavor/yuuvis-client-framework-object-flavor.mjs",
|
|
89
|
-
"esm": "./esm2022/object-flavor/yuuvis-client-framework-object-flavor.mjs",
|
|
90
86
|
"default": "./fesm2022/yuuvis-client-framework-object-flavor.mjs"
|
|
91
87
|
},
|
|
92
88
|
"./object-form": {
|
|
93
89
|
"types": "./object-form/index.d.ts",
|
|
94
|
-
"esm2022": "./esm2022/object-form/yuuvis-client-framework-object-form.mjs",
|
|
95
|
-
"esm": "./esm2022/object-form/yuuvis-client-framework-object-form.mjs",
|
|
96
90
|
"default": "./fesm2022/yuuvis-client-framework-object-form.mjs"
|
|
97
91
|
},
|
|
98
92
|
"./object-preview": {
|
|
99
93
|
"types": "./object-preview/index.d.ts",
|
|
100
|
-
"esm2022": "./esm2022/object-preview/yuuvis-client-framework-object-preview.mjs",
|
|
101
|
-
"esm": "./esm2022/object-preview/yuuvis-client-framework-object-preview.mjs",
|
|
102
94
|
"default": "./fesm2022/yuuvis-client-framework-object-preview.mjs"
|
|
103
95
|
},
|
|
104
96
|
"./object-summary": {
|
|
105
97
|
"types": "./object-summary/index.d.ts",
|
|
106
|
-
"esm2022": "./esm2022/object-summary/yuuvis-client-framework-object-summary.mjs",
|
|
107
|
-
"esm": "./esm2022/object-summary/yuuvis-client-framework-object-summary.mjs",
|
|
108
98
|
"default": "./fesm2022/yuuvis-client-framework-object-summary.mjs"
|
|
109
99
|
},
|
|
100
|
+
"./overflow-menu": {
|
|
101
|
+
"types": "./overflow-menu/index.d.ts",
|
|
102
|
+
"default": "./fesm2022/yuuvis-client-framework-overflow-menu.mjs"
|
|
103
|
+
},
|
|
110
104
|
"./pagination": {
|
|
111
105
|
"types": "./pagination/index.d.ts",
|
|
112
|
-
"esm2022": "./esm2022/pagination/yuuvis-client-framework-pagination.mjs",
|
|
113
|
-
"esm": "./esm2022/pagination/yuuvis-client-framework-pagination.mjs",
|
|
114
106
|
"default": "./fesm2022/yuuvis-client-framework-pagination.mjs"
|
|
115
107
|
},
|
|
116
108
|
"./panel": {
|
|
117
109
|
"types": "./panel/index.d.ts",
|
|
118
|
-
"esm2022": "./esm2022/panel/yuuvis-client-framework-panel.mjs",
|
|
119
|
-
"esm": "./esm2022/panel/yuuvis-client-framework-panel.mjs",
|
|
120
110
|
"default": "./fesm2022/yuuvis-client-framework-panel.mjs"
|
|
121
111
|
},
|
|
112
|
+
"./popout": {
|
|
113
|
+
"types": "./popout/index.d.ts",
|
|
114
|
+
"default": "./fesm2022/yuuvis-client-framework-popout.mjs"
|
|
115
|
+
},
|
|
122
116
|
"./renderer": {
|
|
123
117
|
"types": "./renderer/index.d.ts",
|
|
124
|
-
"esm2022": "./esm2022/renderer/yuuvis-client-framework-renderer.mjs",
|
|
125
|
-
"esm": "./esm2022/renderer/yuuvis-client-framework-renderer.mjs",
|
|
126
118
|
"default": "./fesm2022/yuuvis-client-framework-renderer.mjs"
|
|
127
119
|
},
|
|
128
120
|
"./sequence-list": {
|
|
129
121
|
"types": "./sequence-list/index.d.ts",
|
|
130
|
-
"esm2022": "./esm2022/sequence-list/yuuvis-client-framework-sequence-list.mjs",
|
|
131
|
-
"esm": "./esm2022/sequence-list/yuuvis-client-framework-sequence-list.mjs",
|
|
132
122
|
"default": "./fesm2022/yuuvis-client-framework-sequence-list.mjs"
|
|
133
123
|
},
|
|
134
124
|
"./simple-search": {
|
|
135
125
|
"types": "./simple-search/index.d.ts",
|
|
136
|
-
"esm2022": "./esm2022/simple-search/yuuvis-client-framework-simple-search.mjs",
|
|
137
|
-
"esm": "./esm2022/simple-search/yuuvis-client-framework-simple-search.mjs",
|
|
138
126
|
"default": "./fesm2022/yuuvis-client-framework-simple-search.mjs"
|
|
139
127
|
},
|
|
128
|
+
"./split-view": {
|
|
129
|
+
"types": "./split-view/index.d.ts",
|
|
130
|
+
"default": "./fesm2022/yuuvis-client-framework-split-view.mjs"
|
|
131
|
+
},
|
|
140
132
|
"./tile-list": {
|
|
141
133
|
"types": "./tile-list/index.d.ts",
|
|
142
|
-
"esm2022": "./esm2022/tile-list/yuuvis-client-framework-tile-list.mjs",
|
|
143
|
-
"esm": "./esm2022/tile-list/yuuvis-client-framework-tile-list.mjs",
|
|
144
134
|
"default": "./fesm2022/yuuvis-client-framework-tile-list.mjs"
|
|
145
135
|
},
|
|
146
|
-
"./token-search": {
|
|
147
|
-
"types": "./token-search/index.d.ts",
|
|
148
|
-
"esm2022": "./esm2022/token-search/yuuvis-client-framework-token-search.mjs",
|
|
149
|
-
"esm": "./esm2022/token-search/yuuvis-client-framework-token-search.mjs",
|
|
150
|
-
"default": "./fesm2022/yuuvis-client-framework-token-search.mjs"
|
|
151
|
-
},
|
|
152
136
|
"./tree": {
|
|
153
137
|
"types": "./tree/index.d.ts",
|
|
154
|
-
"esm2022": "./esm2022/tree/yuuvis-client-framework-tree.mjs",
|
|
155
|
-
"esm": "./esm2022/tree/yuuvis-client-framework-tree.mjs",
|
|
156
138
|
"default": "./fesm2022/yuuvis-client-framework-tree.mjs"
|
|
157
139
|
},
|
|
158
140
|
"./upload-progress": {
|
|
159
141
|
"types": "./upload-progress/index.d.ts",
|
|
160
|
-
"esm2022": "./esm2022/upload-progress/yuuvis-client-framework-upload-progress.mjs",
|
|
161
|
-
"esm": "./esm2022/upload-progress/yuuvis-client-framework-upload-progress.mjs",
|
|
162
142
|
"default": "./fesm2022/yuuvis-client-framework-upload-progress.mjs"
|
|
163
|
-
},
|
|
164
|
-
"./user-avatar": {
|
|
165
|
-
"types": "./user-avatar/index.d.ts",
|
|
166
|
-
"esm2022": "./esm2022/user-avatar/yuuvis-client-framework-user-avatar.mjs",
|
|
167
|
-
"esm": "./esm2022/user-avatar/yuuvis-client-framework-user-avatar.mjs",
|
|
168
|
-
"default": "./fesm2022/yuuvis-client-framework-user-avatar.mjs"
|
|
169
143
|
}
|
|
170
144
|
},
|
|
171
145
|
"module": "fesm2022/yuuvis-client-framework.mjs",
|
package/popout/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { PopoutTriggerPosition, PopoutWindowConfig } from './popout.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Component that enables the wrapped content to be 'popped out' as new window.
|
|
6
|
+
* It will place a button (icon) to trigger popout on top of the wrapped content. You
|
|
7
|
+
* can place this trigger element setting the 'triggerPosition' input.
|
|
8
|
+
*
|
|
9
|
+
* Providing a 'popoutWindowConfig' will also enable you to influence the appearance of
|
|
10
|
+
* the spawned window.
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
export declare class PopoutComponent implements OnDestroy {
|
|
14
|
+
#private;
|
|
15
|
+
beforeunloadHandler(): void;
|
|
16
|
+
innerWrapper: import("@angular/core").Signal<ElementRef<any>>;
|
|
17
|
+
popoutWrapper: import("@angular/core").Signal<ElementRef<any>>;
|
|
18
|
+
/**
|
|
19
|
+
* Where the popout trigger should be located on the component
|
|
20
|
+
*/
|
|
21
|
+
triggerPosition: import("@angular/core").InputSignal<PopoutTriggerPosition>;
|
|
22
|
+
/**
|
|
23
|
+
* Icon to be redered inside the trigger
|
|
24
|
+
*/
|
|
25
|
+
triggerIcon: import("@angular/core").InputSignal<string>;
|
|
26
|
+
/**
|
|
27
|
+
* Tooltip text for the trigger button
|
|
28
|
+
*/
|
|
29
|
+
triggerTooltip: import("@angular/core").InputSignal<string | undefined>;
|
|
30
|
+
/**
|
|
31
|
+
* configuration of the popped out window
|
|
32
|
+
*/
|
|
33
|
+
popoutWindowConfig: import("@angular/core").InputSignal<PopoutWindowConfig | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* Whether or not to disable the undock feature
|
|
36
|
+
*/
|
|
37
|
+
disabled: import("@angular/core").InputSignal<boolean | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* Emitted when the child component is popped out
|
|
40
|
+
*/
|
|
41
|
+
popOut: import("@angular/core").OutputEmitterRef<boolean>;
|
|
42
|
+
/**
|
|
43
|
+
* Emitted when the child component is popped in again
|
|
44
|
+
*/
|
|
45
|
+
popIn: import("@angular/core").OutputEmitterRef<boolean>;
|
|
46
|
+
get isPoppedOut(): boolean;
|
|
47
|
+
pop(e: MouseEvent): void;
|
|
48
|
+
private _popIn;
|
|
49
|
+
private _popOut;
|
|
50
|
+
private _createPopoutWindow;
|
|
51
|
+
private _getWindowPositioning;
|
|
52
|
+
private _close;
|
|
53
|
+
private _cloneStylesToPopoutWindow;
|
|
54
|
+
private _observeFutureStyleChanges;
|
|
55
|
+
ngOnDestroy(): void;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PopoutComponent, never>;
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoutComponent, "yuv-popout", never, { "triggerPosition": { "alias": "triggerPosition"; "required": false; "isSignal": true; }; "triggerIcon": { "alias": "triggerIcon"; "required": false; "isSignal": true; }; "triggerTooltip": { "alias": "triggerTooltip"; "required": false; "isSignal": true; }; "popoutWindowConfig": { "alias": "popoutWindowConfig"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "popOut": "popOut"; "popIn": "popIn"; }, never, ["*"], true, never>;
|
|
58
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare enum PopoutTriggerPosition {
|
|
2
|
+
TOP_LEFT = "tl",
|
|
3
|
+
TOP_RIGHT = "tr",
|
|
4
|
+
BOTTOM_LEFT = "bl",
|
|
5
|
+
BOTTOM_RIGHT = "br"
|
|
6
|
+
}
|
|
7
|
+
export interface PopoutWindowConfig {
|
|
8
|
+
title?: string;
|
|
9
|
+
position?: {
|
|
10
|
+
blockStart?: number;
|
|
11
|
+
inlineStart?: number;
|
|
12
|
+
};
|
|
13
|
+
size?: {
|
|
14
|
+
width?: number;
|
|
15
|
+
height?: number;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./popout.component";
|
|
3
|
+
export declare class YuvPopoutModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<YuvPopoutModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<YuvPopoutModule, never, [typeof i1.PopoutComponent], [typeof i1.PopoutComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<YuvPopoutModule>;
|
|
7
|
+
}
|
|
@@ -3,12 +3,12 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
/**
|
|
4
4
|
* Abstract class to be extended by property renderers
|
|
5
5
|
*/
|
|
6
|
-
export declare abstract class AbstractRendererComponent<T = string> {
|
|
6
|
+
export declare abstract class AbstractRendererComponent<T = string, U = null> {
|
|
7
7
|
#private;
|
|
8
8
|
propertyName: import("@angular/core").InputSignal<string>;
|
|
9
9
|
value: import("@angular/core").InputSignal<T | null>;
|
|
10
|
-
meta: import("@angular/core").InputSignal<Record<string, unknown> |
|
|
10
|
+
meta: import("@angular/core").InputSignal<U | Record<string, unknown> | undefined>;
|
|
11
11
|
protected getProperty(): SchemaResponseFieldDefinition | undefined;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractRendererComponent<any>, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AbstractRendererComponent<any>, "yuv-abstract-renderer", never, { "propertyName": { "alias": "propertyName"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "meta": { "alias": "meta"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractRendererComponent<any, any>, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AbstractRendererComponent<any, any>, "yuv-abstract-renderer", never, { "propertyName": { "alias": "propertyName"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "meta": { "alias": "meta"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
14
14
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { AbstractRendererComponent } from './abstract.renderer';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IconRendererComponent extends AbstractRendererComponent {
|
|
4
|
+
#private;
|
|
5
|
+
protected readonly customId: `${string}-${string}-${string}-${string}-${string}`;
|
|
4
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconRendererComponent, never>;
|
|
5
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<IconRendererComponent, "yuv-icon-renderer", never, {}, {}, never, never, true, never>;
|
|
6
8
|
}
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import { ComponentRef } from '@angular/core';
|
|
2
|
-
import { RendererComponent
|
|
2
|
+
import { RendererComponent } from './services/renderer/renderer.interface';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* Structural directive for rendering an obect type property
|
|
6
6
|
*/
|
|
7
7
|
export declare class RendererDirective {
|
|
8
|
+
#private;
|
|
8
9
|
private readonly rendererService;
|
|
9
10
|
private readonly containerRef;
|
|
10
11
|
private readonly injector;
|
|
11
12
|
component: ComponentRef<RendererComponent>;
|
|
12
13
|
private _rendererInput?;
|
|
13
|
-
|
|
14
|
+
yuvRenderer: import("@angular/core").InputSignal<import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined>;
|
|
14
15
|
private _alreadyRendered;
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<RendererDirective, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RendererDirective, "[yuvRenderer]", never, { "yuvRenderer": { "alias": "yuvRenderer"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RendererDirective, "[yuvRenderer]", never, { "yuvRenderer": { "alias": "yuvRenderer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
18
|
}
|
package/sequence-list/index.d.ts
CHANGED
|
@@ -21,10 +21,6 @@ export declare class SequenceListComponent implements ControlValueAccessor, Vali
|
|
|
21
21
|
*/
|
|
22
22
|
maxLength: import("@angular/core").InputSignal<number>;
|
|
23
23
|
maxLengthExceeded: boolean;
|
|
24
|
-
icons: {
|
|
25
|
-
delete: string;
|
|
26
|
-
add: any;
|
|
27
|
-
};
|
|
28
24
|
sequenceForm: SequenceForm;
|
|
29
25
|
entries: SequenceItem[];
|
|
30
26
|
get formItemArray(): FormArray<SequenceFormItem>;
|
package/simple-search/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { SearchQuery } from '@yuuvis/client-core';
|
|
4
|
-
import { SimpleSearchTarget } from './simple-search.interface';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export interface ObjectTypeAggregation {
|
|
7
6
|
/**
|
|
@@ -21,11 +20,6 @@ export declare class SimpleSearchComponent {
|
|
|
21
20
|
private fb;
|
|
22
21
|
private searchService;
|
|
23
22
|
private systemService;
|
|
24
|
-
private iconsService;
|
|
25
|
-
/**
|
|
26
|
-
* Targets selectable by dropdown (e.g. target object types to search for)
|
|
27
|
-
*/
|
|
28
|
-
targets: SimpleSearchTarget[];
|
|
29
23
|
private _query;
|
|
30
24
|
/**
|
|
31
25
|
* The search query
|
|
@@ -33,13 +27,14 @@ export declare class SimpleSearchComponent {
|
|
|
33
27
|
set query(q: SearchQuery | null);
|
|
34
28
|
get query(): SearchQuery | null;
|
|
35
29
|
form: FormGroup;
|
|
36
|
-
icons: {
|
|
37
|
-
search: string;
|
|
38
|
-
};
|
|
39
30
|
/**
|
|
40
31
|
* Emitted once the user submits the search
|
|
41
32
|
*/
|
|
42
33
|
querySubmit: EventEmitter<SearchQuery>;
|
|
34
|
+
/**
|
|
35
|
+
* Emitted once the user hits clear input button
|
|
36
|
+
*/
|
|
37
|
+
clearInput: EventEmitter<void>;
|
|
43
38
|
/**
|
|
44
39
|
* Emitted once selected targets change
|
|
45
40
|
*/
|
|
@@ -49,7 +44,8 @@ export declare class SimpleSearchComponent {
|
|
|
49
44
|
constructor();
|
|
50
45
|
search(): void;
|
|
51
46
|
aggregate(all?: boolean): void;
|
|
47
|
+
clear($event: Event): void;
|
|
52
48
|
private _processAggregateResult;
|
|
53
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleSearchComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleSearchComponent, "yuv-simple-search", never, { "
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleSearchComponent, "yuv-simple-search", never, { "query": { "alias": "query"; "required": false; }; }, { "querySubmit": "querySubmit"; "clearInput": "clearInput"; "targetSelectionChanged": "targetSelectionChanged"; "queryChange": "queryChange"; "typeAggregation": "typeAggregation"; }, never, never, true, never>;
|
|
55
51
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { SplitAreaLayoutSettings } from './split-view.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SplitAreaDirective {
|
|
5
|
+
#private;
|
|
6
|
+
template: TemplateRef<any>;
|
|
7
|
+
size: import("@angular/core").InputSignal<number | undefined>;
|
|
8
|
+
minSize: import("@angular/core").InputSignal<number | undefined>;
|
|
9
|
+
maxSize: import("@angular/core").InputSignal<number | undefined>;
|
|
10
|
+
panelClass: import("@angular/core").InputSignal<string | undefined>;
|
|
11
|
+
visible: import("@angular/core").InputSignal<boolean>;
|
|
12
|
+
updateSettings(s: SplitAreaLayoutSettings): void;
|
|
13
|
+
areaProperties: import("@angular/core").WritableSignal<SplitAreaLayoutSettings>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitAreaDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SplitAreaDirective, "[yuvSplitArea]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "minSize": { "alias": "minSize"; "required": false; "isSignal": true; }; "maxSize": { "alias": "maxSize"; "required": false; "isSignal": true; }; "panelClass": { "alias": "panelClass"; "required": false; "isSignal": true; }; "visible": { "alias": "visible"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|