@umbraco-cms/backoffice 18.0.2 → 18.1.0-rc
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/custom-elements.json +1366 -389
- package/dist-cms/apps/app/app.element.js +3 -1
- package/dist-cms/apps/app/outline-style.controller.d.ts +6 -0
- package/dist-cms/apps/app/outline-style.controller.js +33 -0
- package/dist-cms/apps/backoffice/components/backoffice-header-logo.element.d.ts +1 -0
- package/dist-cms/apps/backoffice/components/backoffice-header-logo.element.js +9 -1
- package/dist-cms/apps/backoffice/components/backoffice-header-sections.element.js +1 -1
- package/dist-cms/apps/installer/consent/installer-consent.element.js +1 -0
- package/dist-cms/apps/installer/database/installer-database.element.js +3 -1
- package/dist-cms/apps/installer/user/installer-user.element.js +2 -2
- package/dist-cms/assets/lang/ar.js +14 -3
- package/dist-cms/assets/lang/bs.js +14 -3
- package/dist-cms/assets/lang/cs.js +12 -1
- package/dist-cms/assets/lang/cy.js +13 -2
- package/dist-cms/assets/lang/da.js +30 -1
- package/dist-cms/assets/lang/de.js +11 -0
- package/dist-cms/assets/lang/en.js +46 -6
- package/dist-cms/assets/lang/es.js +10 -1
- package/dist-cms/assets/lang/fr.js +15 -4
- package/dist-cms/assets/lang/he.js +1 -0
- package/dist-cms/assets/lang/hr.js +14 -3
- package/dist-cms/assets/lang/it.js +15 -4
- package/dist-cms/assets/lang/ja.js +34 -1
- package/dist-cms/assets/lang/ko.js +1 -0
- package/dist-cms/assets/lang/nb.js +1 -0
- package/dist-cms/assets/lang/nl.js +14 -1
- package/dist-cms/assets/lang/pl.js +9 -0
- package/dist-cms/assets/lang/pt.js +14 -3
- package/dist-cms/assets/lang/ru.js +11 -0
- package/dist-cms/assets/lang/sv.js +1 -0
- package/dist-cms/assets/lang/tr.js +14 -3
- package/dist-cms/assets/lang/uk.js +11 -0
- package/dist-cms/assets/lang/vi.js +14 -3
- package/dist-cms/assets/lang/zh-tw.js +9 -0
- package/dist-cms/assets/lang/zh.js +9 -0
- package/dist-cms/external/uui/index.d.ts +9 -0
- package/dist-cms/external/uui/package.json +1 -1
- package/dist-cms/json-schema/umbraco-package-schema.d.ts +5 -0
- package/dist-cms/libs/class-api/class.interface.d.ts +2 -2
- package/dist-cms/libs/class-api/class.mixin.js +2 -4
- package/dist-cms/libs/element-api/element.mixin.js +1 -3
- package/dist-cms/libs/extension-api/controller/server-extension-registrator.controller.d.ts +3 -3
- package/dist-cms/libs/extension-api/controller/server-extension-registrator.controller.js +15 -12
- package/dist-cms/libs/extension-api/functions/append-cache-bust.function.d.ts +8 -0
- package/dist-cms/libs/extension-api/functions/append-cache-bust.function.js +20 -0
- package/dist-cms/libs/observable-api/observer.d.ts +4 -0
- package/dist-cms/packages/block/block/context/block-entries.context.d.ts +5 -0
- package/dist-cms/packages/block/block/context/block-entries.context.js +7 -0
- package/dist-cms/packages/block/block/context/block-entry.context.d.ts +18 -0
- package/dist-cms/packages/block/block/context/block-entry.context.js +51 -8
- package/dist-cms/packages/block/block/modals/block-catalogue/block-catalogue-modal.element.js +1 -0
- package/dist-cms/packages/block/block/types.d.ts +4 -0
- package/dist-cms/packages/block/block/workspace/block-element-manager.d.ts +2 -0
- package/dist-cms/packages/block/block/workspace/block-element-manager.js +20 -1
- package/dist-cms/packages/block/block/workspace/block-workspace-label-index.function.d.ts +14 -0
- package/dist-cms/packages/block/block/workspace/block-workspace-label-index.function.js +28 -0
- package/dist-cms/packages/block/block/workspace/block-workspace-label-value.function.d.ts +11 -0
- package/dist-cms/packages/block/block/workspace/block-workspace-label-value.function.js +28 -0
- package/dist-cms/packages/block/block/workspace/block-workspace.context.js +29 -19
- package/dist-cms/packages/block/block-grid/components/block-grid-block/block-grid-block.element.d.ts +2 -0
- package/dist-cms/packages/block/block-grid/components/block-grid-block/block-grid-block.element.js +19 -2
- package/dist-cms/packages/block/block-grid/components/block-grid-block-inline/block-grid-block-inline.element.js +10 -1
- package/dist-cms/packages/block/block-grid/components/block-grid-entries/block-grid-entries.context.js +5 -1
- package/dist-cms/packages/block/block-grid/components/block-grid-entry/block-grid-entry.context.d.ts +1 -0
- package/dist-cms/packages/block/block-grid/components/block-grid-entry/block-grid-entry.context.js +5 -0
- package/dist-cms/packages/block/block-grid/components/block-grid-entry/block-grid-entry.element.d.ts +1 -0
- package/dist-cms/packages/block/block-grid/components/block-grid-entry/block-grid-entry.element.js +18 -7
- package/dist-cms/packages/block/block-grid/manifests.js +2 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-area-type-permission/manifests.js +1 -1
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-areas-config/manifests.js +1 -1
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-column-span/manifests.js +1 -1
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/constants.d.ts +1 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/constants.js +1 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/manifests.js +1 -1
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/value-summary/manifests.js +11 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/value-summary/value-summary.element.d.ts +12 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/value-summary/value-summary.element.js +21 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/value-type/constants.js +1 -0
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-group-configuration/manifests.js +1 -1
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-layout-stylesheet/manifests.js +1 -1
- package/dist-cms/packages/block/block-grid/property-editors/block-grid-type-configuration/manifests.js +1 -1
- package/dist-cms/packages/block/block-list/components/block-list-entry/block-list-entry.element.d.ts +1 -0
- package/dist-cms/packages/block/block-list/components/block-list-entry/block-list-entry.element.js +57 -26
- package/dist-cms/packages/block/block-list/components/inline-list-block/inline-list-block.element.d.ts +8 -1
- package/dist-cms/packages/block/block-list/components/inline-list-block/inline-list-block.element.js +44 -7
- package/dist-cms/packages/block/block-list/components/ref-list-block/ref-list-block.element.d.ts +12 -2
- package/dist-cms/packages/block/block-list/components/ref-list-block/ref-list-block.element.js +49 -6
- package/dist-cms/packages/block/block-list/context/block-list-entry.context.d.ts +1 -0
- package/dist-cms/packages/block/block-list/context/block-list-entry.context.js +5 -0
- package/dist-cms/packages/block/block-list/manifests.js +2 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/constants.d.ts +1 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/constants.js +1 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/manifests.js +1 -1
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.js +4 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/value-summary/manifests.js +11 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/value-summary/value-summary.element.d.ts +12 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/value-summary/value-summary.element.js +21 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-editor/value-type/constants.js +1 -0
- package/dist-cms/packages/block/block-list/property-editors/block-list-type-configuration/manifests.js +1 -1
- package/dist-cms/packages/block/block-rte/components/block-rte-entry/block-rte-entry.element.d.ts +5 -2
- package/dist-cms/packages/block/block-rte/components/block-rte-entry/block-rte-entry.element.js +98 -78
- package/dist-cms/packages/block/block-rte/components/ref-rte-block/ref-rte-block.element.d.ts +2 -0
- package/dist-cms/packages/block/block-rte/components/ref-rte-block/ref-rte-block.element.js +19 -1
- package/dist-cms/packages/block/block-rte/components/unsupported-rte-block/index.d.ts +1 -0
- package/dist-cms/packages/block/block-rte/components/unsupported-rte-block/index.js +1 -0
- package/dist-cms/packages/block/block-rte/components/unsupported-rte-block/unsupported-rte-block.element.d.ts +14 -0
- package/dist-cms/packages/block/block-rte/components/unsupported-rte-block/unsupported-rte-block.element.js +56 -0
- package/dist-cms/packages/block/block-rte/context/block-rte-entry.context.d.ts +1 -0
- package/dist-cms/packages/block/block-rte/context/block-rte-entry.context.js +5 -0
- package/dist-cms/packages/block/block-rte/property-editors/manifests.js +1 -1
- package/dist-cms/packages/block/block-single/components/block-single-entry/block-single-entry.element.d.ts +1 -0
- package/dist-cms/packages/block/block-single/components/block-single-entry/block-single-entry.element.js +32 -18
- package/dist-cms/packages/block/block-single/components/inline-single-block/inline-single-block.element.js +11 -1
- package/dist-cms/packages/block/block-single/components/ref-single-block/ref-single-block.element.d.ts +2 -1
- package/dist-cms/packages/block/block-single/components/ref-single-block/ref-single-block.element.js +19 -2
- package/dist-cms/packages/block/block-single/context/block-single-entry.context.d.ts +1 -0
- package/dist-cms/packages/block/block-single/context/block-single-entry.context.js +5 -0
- package/dist-cms/packages/block/block-single/manifests.js +2 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/constants.d.ts +1 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/constants.js +1 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/manifests.js +1 -1
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/property-editor-ui-block-single.element.js +4 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/value-summary/manifests.js +11 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/value-summary/value-summary.element.d.ts +12 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/value-summary/value-summary.element.js +20 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-editor/value-type/constants.js +1 -0
- package/dist-cms/packages/block/block-single/property-editors/block-single-type-configuration/manifests.js +1 -1
- package/dist-cms/packages/block/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/clipboard/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/code-editor/code-editor.controller.js +7 -1
- package/dist-cms/packages/code-editor/components/code-editor.element.d.ts +6 -3
- package/dist-cms/packages/code-editor/components/code-editor.element.js +31 -2
- package/dist-cms/packages/code-editor/index.d.ts +1 -0
- package/dist-cms/packages/code-editor/index.js +1 -0
- package/dist-cms/packages/code-editor/models/code-editor.model.d.ts +5 -0
- package/dist-cms/packages/code-editor/property-editor/manifests.js +1 -1
- package/dist-cms/packages/code-editor/property-editor/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/code-editor/property-editor/value-summary/manifests.js +11 -0
- package/dist-cms/packages/code-editor/property-editor/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/code-editor/property-editor/value-summary/value-summary.element.js +20 -0
- package/dist-cms/packages/code-editor/property-editor/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/code-editor/property-editor/value-type/constants.js +1 -0
- package/dist-cms/packages/code-editor/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/code-editor/umbraco-package.js +6 -1
- package/dist-cms/packages/content/content/configuration/index.d.ts +1 -0
- package/dist-cms/packages/content/content/configuration/types.d.ts +8 -0
- package/dist-cms/packages/content/content/configuration/types.js +1 -0
- package/dist-cms/packages/content/content/index.d.ts +2 -0
- package/dist-cms/packages/content/content/index.js +1 -0
- package/dist-cms/packages/content/content/manifests.js +2 -0
- package/dist-cms/packages/content/content/property-dataset-context/element-property-dataset.context.js +3 -10
- package/dist-cms/packages/content/content/property-dataset-context/index.d.ts +1 -0
- package/dist-cms/packages/content/content/property-dataset-context/index.js +1 -0
- package/dist-cms/packages/content/content/property-dataset-context/merge-variant-values.function.d.ts +13 -0
- package/dist-cms/packages/content/content/property-dataset-context/merge-variant-values.function.js +19 -0
- package/dist-cms/packages/content/content/publishing/content-published-pending-changes-manager-base.d.ts +42 -0
- package/dist-cms/packages/content/content/publishing/content-published-pending-changes-manager-base.js +80 -0
- package/dist-cms/packages/content/content/publishing/index.d.ts +4 -0
- package/dist-cms/packages/content/content/publishing/index.js +3 -0
- package/dist-cms/packages/content/content/publishing/manifests.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/manifests.js +3 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/content-publish.action.d.ts +15 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/content-publish.action.js +155 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/content-publish.action.kind.d.ts +3 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/content-publish.action.kind.js +23 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/index.d.ts +2 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/index.js +1 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/manifests.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/manifests.js +2 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/types.d.ts +46 -0
- package/dist-cms/packages/content/content/publishing/publish/entity-action/types.js +1 -0
- package/dist-cms/packages/content/content/publishing/publish/index.d.ts +5 -0
- package/dist-cms/packages/content/content/publishing/publish/index.js +3 -0
- package/dist-cms/packages/content/content/publishing/publish/manifests.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/publish/manifests.js +3 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/constants.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/constants.js +1 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/content-publish-modal.element.d.ts +18 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/content-publish-modal.element.js +118 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/content-publish-modal.token.d.ts +4 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/content-publish-modal.token.js +7 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/manifests.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/manifests.js +9 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/types.d.ts +8 -0
- package/dist-cms/packages/content/content/publishing/publish/modal/types.js +1 -0
- package/dist-cms/packages/content/content/publishing/types.d.ts +4 -0
- package/dist-cms/packages/content/content/publishing/types.js +1 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/content-unpublish.action.d.ts +21 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/content-unpublish.action.js +145 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/content-unpublish.action.kind.d.ts +3 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/content-unpublish.action.kind.js +26 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/index.d.ts +2 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/index.js +1 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/manifests.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/manifests.js +2 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/types.d.ts +52 -0
- package/dist-cms/packages/content/content/publishing/unpublish/entity-action/types.js +1 -0
- package/dist-cms/packages/content/content/publishing/unpublish/index.d.ts +5 -0
- package/dist-cms/packages/content/content/publishing/unpublish/index.js +3 -0
- package/dist-cms/packages/content/content/publishing/unpublish/manifests.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/unpublish/manifests.js +3 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/constants.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/constants.js +1 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/content-unpublish-modal.element.d.ts +31 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/content-unpublish-modal.element.js +191 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/content-unpublish-modal.token.d.ts +4 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/content-unpublish-modal.token.js +7 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/manifests.d.ts +1 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/manifests.js +9 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/types.d.ts +11 -0
- package/dist-cms/packages/content/content/publishing/unpublish/modal/types.js +1 -0
- package/dist-cms/packages/content/content/publishing/utils.d.ts +7 -0
- package/dist-cms/packages/content/content/publishing/utils.js +11 -0
- package/dist-cms/packages/content/content/rollback/modal/content-rollback-modal.element.js +2 -3
- package/dist-cms/packages/content/content/tree/sort-children-of-content/modal/sort-children-of-content-modal.element.d.ts +2 -2
- package/dist-cms/packages/content/content/tree/sort-children-of-content/modal/sort-children-of-content-modal.element.js +15 -7
- package/dist-cms/packages/content/content/tree/sort-children-of-content/modal/sort-children-of-content-modal.token.d.ts +5 -1
- package/dist-cms/packages/content/content/tree/sort-children-of-content/sort-children-of-content.action.d.ts +4 -1
- package/dist-cms/packages/content/content/tree/sort-children-of-content/sort-children-of-content.action.js +8 -1
- package/dist-cms/packages/content/content/tree/sort-children-of-content/types.d.ts +5 -1
- package/dist-cms/packages/content/content/types.d.ts +2 -3
- package/dist-cms/packages/content/content/variant-picker/content-variant-language-picker.element.d.ts +42 -0
- package/dist-cms/packages/content/content/variant-picker/content-variant-language-picker.element.js +177 -0
- package/dist-cms/packages/content/content/workspace/content-detail-workspace-base.d.ts +10 -1
- package/dist-cms/packages/content/content/workspace/content-detail-workspace-base.js +50 -55
- package/dist-cms/packages/content/content/workspace/index.d.ts +1 -0
- package/dist-cms/packages/content/content/workspace/index.js +1 -0
- package/dist-cms/packages/content/content/workspace/publishable-split-view-variant-selector.element.d.ts +38 -0
- package/dist-cms/packages/content/content/workspace/publishable-split-view-variant-selector.element.js +65 -0
- package/dist-cms/packages/content/content-type/global-components/content-type-workspace-editor-header.element.js +8 -1
- package/dist-cms/packages/content/content-type/modals/composition-picker/composition-picker-modal.element.js +18 -5
- package/dist-cms/packages/content/content-type/modals/composition-picker/composition-picker-modal.token.d.ts +1 -0
- package/dist-cms/packages/content/content-type/workspace/views/design/content-type-design-editor-property.element.js +5 -6
- package/dist-cms/packages/content/content-type/workspace/views/design/content-type-design-editor.element.js +52 -27
- package/dist-cms/packages/content/property-type/workspace/views/settings/property-workspace-view-settings.element.js +5 -6
- package/dist-cms/packages/content/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/core/auth/auth.context.js +46 -12
- package/dist-cms/packages/core/auth/controllers/auth-session-timeout.controller.js +44 -11
- package/dist-cms/packages/core/auth/modals/umb-app-auth-modal.element.d.ts +1 -1
- package/dist-cms/packages/core/auth/modals/umb-app-auth-modal.element.js +1 -1
- package/dist-cms/packages/core/auth/modals/umb-app-auth-modal.token.d.ts +1 -2
- package/dist-cms/packages/core/auth/modals/umb-auth-timeout-modal.element.js +12 -2
- package/dist-cms/packages/core/auth/umb-auth-client.d.ts +6 -1
- package/dist-cms/packages/core/auth/umb-auth-client.js +23 -4
- package/dist-cms/packages/core/backend-api/index.d.ts +1 -1
- package/dist-cms/packages/core/backend-api/index.js +1 -1
- package/dist-cms/packages/core/backend-api/sdk.gen.d.ts +68 -3
- package/dist-cms/packages/core/backend-api/sdk.gen.js +162 -5
- package/dist-cms/packages/core/backend-api/types.gen.d.ts +373 -1
- package/dist-cms/packages/core/backend-api/types.gen.js +6 -0
- package/dist-cms/packages/core/collection/components/date-table-column-view/date-table-column-view.element.js +1 -1
- package/dist-cms/packages/core/collection/default/collection-default.element.js +1 -1
- package/dist-cms/packages/core/components/body-layout/body-layout.element.js +2 -4
- package/dist-cms/packages/core/components/code-block/code-block.element.d.ts +2 -2
- package/dist-cms/packages/core/components/code-block/code-block.element.js +4 -3
- package/dist-cms/packages/core/components/dropdown/dropdown.element.d.ts +1 -0
- package/dist-cms/packages/core/components/dropdown/dropdown.element.js +17 -2
- package/dist-cms/packages/core/components/entity-frame/entity-frame.element.d.ts +32 -0
- package/dist-cms/packages/core/components/entity-frame/entity-frame.element.js +85 -0
- package/dist-cms/packages/core/components/entity-frame/index.d.ts +2 -0
- package/dist-cms/packages/core/components/entity-frame/index.js +2 -0
- package/dist-cms/packages/core/components/index.d.ts +1 -0
- package/dist-cms/packages/core/components/index.js +1 -0
- package/dist-cms/packages/core/components/input-dropdown/input-dropdown-list.element.js +1 -1
- package/dist-cms/packages/core/components/input-entity/input-entity.element.d.ts +25 -1
- package/dist-cms/packages/core/components/input-entity/input-entity.element.js +29 -5
- package/dist-cms/packages/core/components/input-with-alias/input-with-alias.element.d.ts +2 -0
- package/dist-cms/packages/core/components/input-with-alias/input-with-alias.element.js +10 -1
- package/dist-cms/packages/core/components/multiple-color-picker-input/multiple-color-picker-input.element.d.ts +2 -2
- package/dist-cms/packages/core/components/multiple-color-picker-input/multiple-color-picker-input.element.js +4 -4
- package/dist-cms/packages/core/components/multiple-text-string-input/input-multiple-text-string.element.d.ts +2 -2
- package/dist-cms/packages/core/components/multiple-text-string-input/input-multiple-text-string.element.js +4 -4
- package/dist-cms/packages/core/components/table/table.element.d.ts +10 -0
- package/dist-cms/packages/core/components/table/table.element.js +101 -26
- package/dist-cms/packages/core/components/view-loader/view-loader.element.js +1 -1
- package/dist-cms/packages/core/culture/manifests.d.ts +1 -1
- package/dist-cms/packages/core/entity/index.d.ts +1 -0
- package/dist-cms/packages/core/entity/index.js +1 -0
- package/dist-cms/packages/core/entity/input/entity-input-interaction-memory.manager.d.ts +34 -0
- package/dist-cms/packages/core/entity/input/entity-input-interaction-memory.manager.js +58 -0
- package/dist-cms/packages/core/entity/input/index.d.ts +1 -0
- package/dist-cms/packages/core/entity/input/index.js +1 -0
- package/dist-cms/packages/core/entity-bulk-action/common/duplicate-to/duplicate-to.action.d.ts +3 -2
- package/dist-cms/packages/core/entity-bulk-action/common/duplicate-to/duplicate-to.action.js +10 -3
- package/dist-cms/packages/core/entity-bulk-action/common/duplicate-to/duplicate-to.action.kind.js +2 -2
- package/dist-cms/packages/core/entity-bulk-action/common/move-to/move-to.action.d.ts +3 -2
- package/dist-cms/packages/core/entity-bulk-action/common/move-to/move-to.action.js +10 -3
- package/dist-cms/packages/core/entity-bulk-action/common/move-to/move-to.action.kind.js +2 -2
- package/dist-cms/packages/core/extension-registry/extensions/entity-bulk-action.extension.d.ts +8 -0
- package/dist-cms/packages/core/icon-registry/icon-picker-modal/icon-picker-modal.element.js +2 -1
- package/dist-cms/packages/core/localization/localize-number.element.d.ts +1 -1
- package/dist-cms/packages/core/localization/localize-relative-time.element.d.ts +1 -1
- package/dist-cms/packages/core/localization/localize.element.d.ts +1 -1
- package/dist-cms/packages/core/menu/components/menu-item-layout/menu-item-layout.element.d.ts +3 -1
- package/dist-cms/packages/core/menu/components/menu-item-layout/menu-item-layout.element.js +16 -10
- package/dist-cms/packages/core/menu/menu-tree-structure-workspace-context-base.js +18 -5
- package/dist-cms/packages/core/menu/menu-variant-tree-structure-workspace-context-base.js +14 -5
- package/dist-cms/packages/core/menu/section-sidebar-menu-with-entity-actions/section-sidebar-menu-with-entity-actions.element.d.ts +1 -2
- package/dist-cms/packages/core/menu/section-sidebar-menu-with-entity-actions/section-sidebar-menu-with-entity-actions.element.js +9 -19
- package/dist-cms/packages/core/notification/controllers/peek-error/peek-error-notification.element.js +11 -2
- package/dist-cms/packages/core/notification/layouts/default/notification-layout-default.element.js +10 -2
- package/dist-cms/packages/core/notification/types.d.ts +15 -0
- package/dist-cms/packages/core/property/components/property/property.context.js +10 -3
- package/dist-cms/packages/core/property/components/property/property.element.js +4 -0
- package/dist-cms/packages/core/property/components/property-layout/property-layout.element.d.ts +10 -10
- package/dist-cms/packages/core/property/components/property-layout/property-layout.element.js +3 -24
- package/dist-cms/packages/core/property/manifests.d.ts +1 -1
- package/dist-cms/packages/core/property/property-value-preset/property-value-preset-builder.controller.js +3 -0
- package/dist-cms/packages/core/property/types/property-value-data.type.d.ts +4 -0
- package/dist-cms/packages/core/property-editor/extensions/property-editor-ui-element.interface.d.ts +1 -0
- package/dist-cms/packages/core/property-editor/extensions/property-editor.extension.d.ts +7 -2
- package/dist-cms/packages/core/property-editor/interaction-memory/property-editor-ui-interaction-memory.manager.js +8 -7
- package/dist-cms/packages/core/property-editor/ui-picker-modal/property-editor-ui-picker-modal.element.js +9 -2
- package/dist-cms/packages/core/property-editor-data-source/input/input-property-editor-data-source.element.d.ts +2 -2
- package/dist-cms/packages/core/property-editor-data-source/input/input-property-editor-data-source.element.js +3 -3
- package/dist-cms/packages/core/repository/index.d.ts +1 -0
- package/dist-cms/packages/core/repository/index.js +1 -0
- package/dist-cms/packages/core/repository/pagination/fetch-all-pages.function.d.ts +22 -0
- package/dist-cms/packages/core/repository/pagination/fetch-all-pages.function.js +40 -0
- package/dist-cms/packages/core/repository/pagination/index.d.ts +1 -0
- package/dist-cms/packages/core/repository/pagination/index.js +1 -0
- package/dist-cms/packages/core/resources/api-interceptor.controller.js +55 -2
- package/dist-cms/packages/core/resources/resource.controller.js +17 -0
- package/dist-cms/packages/core/search/search-modal/search-modal.element.js +1 -1
- package/dist-cms/packages/core/section/components/input-section/input-section.element.d.ts +2 -2
- package/dist-cms/packages/core/section/components/input-section/input-section.element.js +4 -4
- package/dist-cms/packages/core/section/section-sidebar/section-sidebar.element.js +0 -1
- package/dist-cms/packages/core/server/server-connection.js +9 -3
- package/dist-cms/packages/core/sorter/components/index.d.ts +2 -0
- package/dist-cms/packages/core/sorter/components/index.js +2 -0
- package/dist-cms/packages/core/sorter/components/sortable-list-item.element.d.ts +40 -0
- package/dist-cms/packages/core/sorter/components/sortable-list-item.element.js +104 -0
- package/dist-cms/packages/core/sorter/components/sortable-list.element.d.ts +76 -0
- package/dist-cms/packages/core/sorter/components/sortable-list.element.js +175 -0
- package/dist-cms/packages/core/sorter/index.d.ts +1 -0
- package/dist-cms/packages/core/sorter/index.js +1 -0
- package/dist-cms/packages/core/temporary-file/manifests.d.ts +1 -1
- package/dist-cms/packages/core/themes/manifests.d.ts +1 -1
- package/dist-cms/packages/core/tree/action/create/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/action/create/manifests.js +20 -0
- package/dist-cms/packages/core/tree/action/create/tree-create-action.api.d.ts +12 -0
- package/dist-cms/packages/core/tree/action/create/tree-create-action.api.js +55 -0
- package/dist-cms/packages/core/tree/action/create/tree-create-action.element.d.ts +18 -0
- package/dist-cms/packages/core/tree/action/create/tree-create-action.element.js +118 -0
- package/dist-cms/packages/core/tree/action/create/types.d.ts +17 -0
- package/dist-cms/packages/core/tree/action/create/types.js +1 -0
- package/dist-cms/packages/core/tree/action/index.d.ts +6 -0
- package/dist-cms/packages/core/tree/action/index.js +3 -0
- package/dist-cms/packages/core/tree/action/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/action/manifests.js +2 -0
- package/dist-cms/packages/core/tree/action/tree-action-base.d.ts +28 -0
- package/dist-cms/packages/core/tree/action/tree-action-base.js +6 -0
- package/dist-cms/packages/core/tree/action/tree-action.extension.d.ts +17 -0
- package/dist-cms/packages/core/tree/action/tree-action.extension.js +1 -0
- package/dist-cms/packages/core/tree/components/index.d.ts +4 -0
- package/dist-cms/packages/core/tree/components/index.js +4 -0
- package/dist-cms/packages/core/tree/components/tree-action-bundle.element.d.ts +10 -0
- package/dist-cms/packages/core/tree/components/tree-action-bundle.element.js +24 -0
- package/dist-cms/packages/core/tree/components/tree-pagination.element.d.ts +15 -0
- package/dist-cms/packages/core/tree/components/tree-pagination.element.js +62 -0
- package/dist-cms/packages/core/tree/components/tree-toolbar.element.d.ts +17 -0
- package/dist-cms/packages/core/tree/components/tree-toolbar.element.js +57 -0
- package/dist-cms/packages/core/tree/components/tree-view-bundle.element.d.ts +16 -0
- package/dist-cms/packages/core/tree/components/tree-view-bundle.element.js +95 -0
- package/dist-cms/packages/core/tree/conditions/constants.d.ts +1 -0
- package/dist-cms/packages/core/tree/conditions/constants.js +1 -0
- package/dist-cms/packages/core/tree/conditions/index.d.ts +3 -0
- package/dist-cms/packages/core/tree/conditions/index.js +2 -0
- package/dist-cms/packages/core/tree/conditions/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/conditions/manifests.js +10 -0
- package/dist-cms/packages/core/tree/conditions/tree-alias.condition.d.ts +8 -0
- package/dist-cms/packages/core/tree/conditions/tree-alias.condition.js +11 -0
- package/dist-cms/packages/core/tree/conditions/types.d.ts +15 -0
- package/dist-cms/packages/core/tree/conditions/types.js +1 -0
- package/dist-cms/packages/core/tree/default/default-tree.context.d.ts +19 -1
- package/dist-cms/packages/core/tree/default/default-tree.context.js +74 -6
- package/dist-cms/packages/core/tree/default/default-tree.element.d.ts +10 -8
- package/dist-cms/packages/core/tree/default/default-tree.element.js +109 -80
- package/dist-cms/packages/core/tree/entity-actions/duplicate-to/duplicate-to.action.js +27 -6
- package/dist-cms/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.element.d.ts +5 -0
- package/dist-cms/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.element.js +24 -8
- package/dist-cms/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.token.d.ts +11 -0
- package/dist-cms/packages/core/tree/entity-actions/duplicate-to/modal/duplicate-to-modal.token.js +3 -0
- package/dist-cms/packages/core/tree/entity-actions/duplicate-to/modal/manifests.js +1 -0
- package/dist-cms/packages/core/tree/entity-actions/move/move-to.action.js +33 -2
- package/dist-cms/packages/core/tree/entity-actions/move/types.d.ts +4 -0
- package/dist-cms/packages/core/tree/entity-actions/sort-children-of/modal/sort-children-of-modal.element.d.ts +4 -4
- package/dist-cms/packages/core/tree/entity-actions/sort-children-of/modal/sort-children-of-modal.element.js +48 -29
- package/dist-cms/packages/core/tree/entity-actions/sort-children-of/sort-children-of.action.d.ts +3 -1
- package/dist-cms/packages/core/tree/entity-actions/sort-children-of/sort-children-of.action.js +10 -8
- package/dist-cms/packages/core/tree/index.d.ts +4 -1
- package/dist-cms/packages/core/tree/index.js +4 -0
- package/dist-cms/packages/core/tree/manifests.js +10 -0
- package/dist-cms/packages/core/tree/tree-item/events/index.d.ts +1 -0
- package/dist-cms/packages/core/tree/tree-item/events/index.js +1 -0
- package/dist-cms/packages/core/tree/tree-item/events/tree-item-open.event.d.ts +14 -0
- package/dist-cms/packages/core/tree/tree-item/events/tree-item-open.event.js +8 -0
- package/dist-cms/packages/core/tree/tree-item/index.d.ts +1 -0
- package/dist-cms/packages/core/tree/tree-item/index.js +1 -0
- package/dist-cms/packages/core/tree/tree-item/tree-item-base/tree-item-context-base.d.ts +9 -49
- package/dist-cms/packages/core/tree/tree-item/tree-item-base/tree-item-context-base.js +24 -230
- package/dist-cms/packages/core/tree/tree-item/tree-item-base/tree-item-element-base.d.ts +1 -21
- package/dist-cms/packages/core/tree/tree-item/tree-item-base/tree-item-element-base.js +15 -29
- package/dist-cms/packages/core/tree/tree-item/tree-item-children.manager.d.ts +2 -0
- package/dist-cms/packages/core/tree/tree-item/tree-item-children.manager.js +38 -19
- package/dist-cms/packages/core/tree/tree-item/tree-item-context.interface.d.ts +4 -19
- package/dist-cms/packages/core/tree/tree-item/tree-item.context.token.d.ts +16 -1
- package/dist-cms/packages/core/tree/tree-item/tree-item.context.token.js +15 -1
- package/dist-cms/packages/core/tree/tree-item-api/index.d.ts +2 -0
- package/dist-cms/packages/core/tree/tree-item-api/index.js +1 -0
- package/dist-cms/packages/core/tree/tree-item-api/tree-item-api-context-base.d.ts +61 -0
- package/dist-cms/packages/core/tree/tree-item-api/tree-item-api-context-base.js +248 -0
- package/dist-cms/packages/core/tree/tree-item-api/tree-item-api.interface.d.ts +32 -0
- package/dist-cms/packages/core/tree/tree-item-api/tree-item-api.interface.js +1 -0
- package/dist-cms/packages/core/tree/tree-item-card/default/default-tree-item-card.api.d.ts +6 -0
- package/dist-cms/packages/core/tree/tree-item-card/default/default-tree-item-card.api.js +3 -0
- package/dist-cms/packages/core/tree/tree-item-card/default/default-tree-item-card.element.d.ts +25 -0
- package/dist-cms/packages/core/tree/tree-item-card/default/default-tree-item-card.element.js +130 -0
- package/dist-cms/packages/core/tree/tree-item-card/default/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/tree-item-card/default/manifests.js +2 -0
- package/dist-cms/packages/core/tree/tree-item-card/default/tree-item-card-default.kind.d.ts +2 -0
- package/dist-cms/packages/core/tree/tree-item-card/default/tree-item-card-default.kind.js +13 -0
- package/dist-cms/packages/core/tree/tree-item-card/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/tree-item-card/manifests.js +2 -0
- package/dist-cms/packages/core/tree/tree-item-card/tree-item-card-extension.element.d.ts +17 -0
- package/dist-cms/packages/core/tree/tree-item-card/tree-item-card-extension.element.js +74 -0
- package/dist-cms/packages/core/tree/tree-item-card/tree-item-card.extension.d.ts +11 -0
- package/dist-cms/packages/core/tree/tree-item-card/tree-item-card.extension.js +1 -0
- package/dist-cms/packages/core/tree/tree-item-card/types.d.ts +10 -0
- package/dist-cms/packages/core/tree/tree-item-card/types.js +1 -0
- package/dist-cms/packages/core/tree/tree-picker-modal/tree-picker-modal.element.d.ts +9 -0
- package/dist-cms/packages/core/tree/tree-picker-modal/tree-picker-modal.element.js +214 -12
- package/dist-cms/packages/core/tree/tree-picker-modal/types.d.ts +4 -0
- package/dist-cms/packages/core/tree/tree.context.interface.d.ts +17 -0
- package/dist-cms/packages/core/tree/tree.element.d.ts +2 -0
- package/dist-cms/packages/core/tree/tree.element.js +3 -0
- package/dist-cms/packages/core/tree/types.d.ts +5 -0
- package/dist-cms/packages/core/tree/view/card/card-tree-view.element.d.ts +16 -0
- package/dist-cms/packages/core/tree/view/card/card-tree-view.element.js +50 -0
- package/dist-cms/packages/core/tree/view/card/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/view/card/manifests.js +18 -0
- package/dist-cms/packages/core/tree/view/classic/classic-tree-view.element.d.ts +23 -0
- package/dist-cms/packages/core/tree/view/classic/classic-tree-view.element.js +139 -0
- package/dist-cms/packages/core/tree/view/classic/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/view/classic/manifests.js +18 -0
- package/dist-cms/packages/core/tree/view/index.d.ts +3 -0
- package/dist-cms/packages/core/tree/view/index.js +2 -0
- package/dist-cms/packages/core/tree/view/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/view/manifests.js +8 -0
- package/dist-cms/packages/core/tree/view/table/index.d.ts +1 -0
- package/dist-cms/packages/core/tree/view/table/index.js +1 -0
- package/dist-cms/packages/core/tree/view/table/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/view/table/manifests.js +18 -0
- package/dist-cms/packages/core/tree/view/table/table-tree-view-row.controller.d.ts +30 -0
- package/dist-cms/packages/core/tree/view/table/table-tree-view-row.controller.js +73 -0
- package/dist-cms/packages/core/tree/view/table/table-tree-view.element.d.ts +25 -0
- package/dist-cms/packages/core/tree/view/table/table-tree-view.element.js +275 -0
- package/dist-cms/packages/core/tree/view/table/tree-name-table-column-layout.element.d.ts +21 -0
- package/dist-cms/packages/core/tree/view/table/tree-name-table-column-layout.element.js +35 -0
- package/dist-cms/packages/core/tree/view/table/types.d.ts +23 -0
- package/dist-cms/packages/core/tree/view/table/types.js +1 -0
- package/dist-cms/packages/core/tree/view/tree-view-element-base.d.ts +21 -0
- package/dist-cms/packages/core/tree/view/tree-view-element-base.js +58 -0
- package/dist-cms/packages/core/tree/view/tree-view.extension.d.ts +28 -0
- package/dist-cms/packages/core/tree/view/tree-view.extension.js +1 -0
- package/dist-cms/packages/core/tree/view/tree-view.manager.d.ts +29 -0
- package/dist-cms/packages/core/tree/view/tree-view.manager.js +104 -0
- package/dist-cms/packages/core/tree/view/types.d.ts +2 -0
- package/dist-cms/packages/core/tree/view/types.js +1 -0
- package/dist-cms/packages/core/tree/workspace-view/index.d.ts +1 -0
- package/dist-cms/packages/core/tree/workspace-view/index.js +1 -0
- package/dist-cms/packages/core/tree/workspace-view/manifests.d.ts +2 -0
- package/dist-cms/packages/core/tree/workspace-view/manifests.js +19 -0
- package/dist-cms/packages/core/tree/workspace-view/tree-workspace-view.element.d.ts +20 -0
- package/dist-cms/packages/core/tree/workspace-view/tree-workspace-view.element.js +94 -0
- package/dist-cms/packages/core/tree/workspace-view/types.d.ts +14 -0
- package/dist-cms/packages/core/tree/workspace-view/types.js +1 -0
- package/dist-cms/packages/core/utils/deprecation/deprecation-origin.d.ts +38 -0
- package/dist-cms/packages/core/utils/deprecation/deprecation-origin.js +44 -0
- package/dist-cms/packages/core/utils/deprecation/deprecation.d.ts +16 -2
- package/dist-cms/packages/core/utils/deprecation/deprecation.js +21 -3
- package/dist-cms/packages/core/utils/index.d.ts +1 -0
- package/dist-cms/packages/core/utils/index.js +1 -0
- package/dist-cms/packages/core/utils/is-production-build.function.d.ts +9 -0
- package/dist-cms/packages/core/utils/is-production-build.function.js +11 -0
- package/dist-cms/packages/core/utils/path/url-pattern-to-string.function.d.ts +6 -3
- package/dist-cms/packages/core/utils/path/url-pattern-to-string.function.js +6 -3
- package/dist-cms/packages/core/utils/string/from-camel-case/from-camel-case.function.d.ts +9 -0
- package/dist-cms/packages/core/utils/string/from-camel-case/from-camel-case.function.js +14 -0
- package/dist-cms/packages/core/validation/context/validation-messages.manager.js +1 -1
- package/dist-cms/packages/core/validation/controllers/observe-validation-state.controller.js +1 -1
- package/dist-cms/packages/core/validation/mixins/form-control.mixin.js +20 -3
- package/dist-cms/packages/core/value-summary/global-components/value-summary.element.js +1 -1
- package/dist-cms/packages/core/variant/constants.d.ts +1 -0
- package/dist-cms/packages/core/variant/constants.js +1 -0
- package/dist-cms/packages/core/variant/index.d.ts +1 -0
- package/dist-cms/packages/core/variant/index.js +1 -0
- package/dist-cms/packages/core/variant/sort-variants.function.d.ts +12 -0
- package/dist-cms/packages/core/variant/sort-variants.function.js +74 -0
- package/dist-cms/packages/core/workspace/components/workspace-action-menu/workspace-action-menu.element.d.ts +2 -0
- package/dist-cms/packages/core/workspace/components/workspace-action-menu/workspace-action-menu.element.js +17 -2
- package/dist-cms/packages/core/workspace/components/workspace-editor/workspace-editor.context.js +5 -2
- package/dist-cms/packages/core/workspace/components/workspace-editor/workspace-editor.element.d.ts +3 -0
- package/dist-cms/packages/core/workspace/components/workspace-editor/workspace-editor.element.js +24 -16
- package/dist-cms/packages/core/workspace/components/workspace-footer/workspace-footer.element.js +1 -1
- package/dist-cms/packages/core/workspace/components/workspace-split-view/workspace-split-view.context.d.ts +1 -0
- package/dist-cms/packages/core/workspace/components/workspace-split-view/workspace-split-view.context.js +28 -12
- package/dist-cms/packages/core/workspace/components/workspace-split-view/workspace-split-view.element.d.ts +2 -1
- package/dist-cms/packages/core/workspace/components/workspace-split-view/workspace-split-view.element.js +10 -2
- package/dist-cms/packages/core/workspace/controllers/constants.d.ts +5 -0
- package/dist-cms/packages/core/workspace/controllers/constants.js +5 -0
- package/dist-cms/packages/core/workspace/controllers/index.d.ts +1 -0
- package/dist-cms/packages/core/workspace/controllers/index.js +1 -0
- package/dist-cms/packages/core/workspace/controllers/workspace-route-manager.controller.d.ts +7 -1
- package/dist-cms/packages/core/workspace/controllers/workspace-route-manager.controller.js +17 -6
- package/dist-cms/packages/core/workspace/controllers/workspace-split-view-manager.controller.d.ts +8 -0
- package/dist-cms/packages/core/workspace/controllers/workspace-split-view-manager.controller.js +36 -9
- package/dist-cms/packages/core/workspace/entity-detail/entity-detail-workspace-base.d.ts +6 -0
- package/dist-cms/packages/core/workspace/entity-detail/entity-detail-workspace-base.js +27 -6
- package/dist-cms/packages/core/workspace/index.d.ts +1 -0
- package/dist-cms/packages/core/workspace/index.js +1 -0
- package/dist-cms/packages/core/workspace/utils/check-will-navigate-away.function.d.ts +10 -0
- package/dist-cms/packages/core/workspace/utils/check-will-navigate-away.function.js +32 -0
- package/dist-cms/packages/data-type/components/data-type-flow-input/data-type-flow-input.element.js +1 -1
- package/dist-cms/packages/data-type/components/data-type-input/data-type-input.element.d.ts +2 -2
- package/dist-cms/packages/data-type/components/data-type-input/data-type-input.element.js +4 -4
- package/dist-cms/packages/data-type/entity-actions/conditions/manifests.d.ts +1 -1
- package/dist-cms/packages/data-type/modals/data-type-picker-flow/data-type-picker-flow-modal.element.js +10 -3
- package/dist-cms/packages/data-type/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/data-type/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/dictionary/collection/views/table/dictionary-table-collection-view.element.js +1 -1
- package/dist-cms/packages/dictionary/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/dictionary/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/dictionary/workspace/views/workspace-view-dictionary-editor.element.js +1 -1
- package/dist-cms/packages/documents/document-blueprints/variant-state.d.ts +1 -1
- package/dist-cms/packages/documents/document-blueprints/variant-state.js +1 -1
- package/dist-cms/packages/documents/document-blueprints/workspace/document-blueprint-workspace-editor.element.d.ts +2 -2
- package/dist-cms/packages/documents/document-blueprints/workspace/document-blueprint-workspace-editor.element.js +109 -46
- package/dist-cms/packages/documents/document-redirect-management/dashboard-redirect-management.element.js +41 -31
- package/dist-cms/packages/documents/document-types/components/input-document-type/input-document-type.element.d.ts +6 -2
- package/dist-cms/packages/documents/document-types/components/input-document-type/input-document-type.element.js +8 -4
- package/dist-cms/packages/documents/document-types/property-editors/document-type-picker/manifests.js +7 -1
- package/dist-cms/packages/documents/document-types/property-editors/document-type-picker/property-editor-ui-document-type-picker.element.d.ts +1 -0
- package/dist-cms/packages/documents/document-types/property-editors/document-type-picker/property-editor-ui-document-type-picker.element.js +5 -0
- package/dist-cms/packages/documents/document-types/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/documents/document-types/tree/manifests.d.ts +2 -1
- package/dist-cms/packages/documents/document-types/tree/manifests.js +34 -8
- package/dist-cms/packages/documents/document-types/tree/tree-item-children/collection/constants.d.ts +3 -0
- package/dist-cms/packages/documents/document-types/tree/tree-item-children/collection/constants.js +3 -0
- package/dist-cms/packages/documents/document-types/tree/tree-item-children/collection/repository/constants.d.ts +3 -0
- package/dist-cms/packages/documents/document-types/tree/tree-item-children/collection/repository/constants.js +3 -0
- package/dist-cms/packages/documents/document-types/tree/tree-item-children/collection/repository/document-type-tree-item-children-collection.repository.d.ts +3 -0
- package/dist-cms/packages/documents/document-types/tree/tree-item-children/collection/repository/document-type-tree-item-children-collection.repository.js +9 -0
- package/dist-cms/packages/documents/document-types/tree/tree-item-children/collection/views/document-type-tree-item-table-collection-view.element.d.ts +3 -0
- package/dist-cms/packages/documents/document-types/tree/tree-item-children/collection/views/document-type-tree-item-table-collection-view.element.js +3 -0
- package/dist-cms/packages/documents/document-types/tree/views/manifests.d.ts +2 -0
- package/dist-cms/packages/documents/document-types/tree/views/manifests.js +34 -0
- package/dist-cms/packages/documents/documents/collection/views/table/column-layouts/document-table-column-property-value.element.js +2 -2
- package/dist-cms/packages/documents/documents/collection/views/table/document-table-collection-view.element.js +1 -0
- package/dist-cms/packages/documents/documents/components/input-document/input-document.element.d.ts +2 -2
- package/dist-cms/packages/documents/documents/components/input-document/input-document.element.js +7 -17
- package/dist-cms/packages/documents/documents/configuration/configuration.repository.d.ts +24 -0
- package/dist-cms/packages/documents/documents/configuration/configuration.repository.js +36 -0
- package/dist-cms/packages/documents/documents/configuration/configuration.server.data-source.d.ts +11 -0
- package/dist-cms/packages/documents/documents/configuration/configuration.server.data-source.js +24 -0
- package/dist-cms/packages/documents/documents/configuration/constants.d.ts +1 -0
- package/dist-cms/packages/documents/documents/configuration/constants.js +1 -0
- package/dist-cms/packages/documents/documents/configuration/index.d.ts +3 -0
- package/dist-cms/packages/documents/documents/configuration/index.js +2 -0
- package/dist-cms/packages/documents/documents/configuration/manifests.d.ts +1 -0
- package/dist-cms/packages/documents/documents/configuration/manifests.js +9 -0
- package/dist-cms/packages/documents/documents/configuration/types.d.ts +9 -0
- package/dist-cms/packages/documents/documents/configuration/types.js +1 -0
- package/dist-cms/packages/documents/documents/constants.d.ts +2 -0
- package/dist-cms/packages/documents/documents/constants.js +2 -0
- package/dist-cms/packages/documents/documents/entity-actions/create/document-create-options-modal.element.d.ts +2 -0
- package/dist-cms/packages/documents/documents/entity-actions/create/document-create-options-modal.element.js +32 -13
- package/dist-cms/packages/documents/documents/entity-actions/culture-and-hostnames/modal/culture-and-hostnames-modal.element.js +8 -8
- package/dist-cms/packages/documents/documents/entity-actions/duplicate/duplicate-document.action.js +25 -2
- package/dist-cms/packages/documents/documents/entity-actions/duplicate/modal/duplicate-document-modal.element.d.ts +3 -0
- package/dist-cms/packages/documents/documents/entity-actions/duplicate/modal/duplicate-document-modal.element.js +88 -33
- package/dist-cms/packages/documents/documents/entity-actions/duplicate/modal/duplicate-document-modal.token.d.ts +2 -0
- package/dist-cms/packages/documents/documents/entity-actions/move-to/manifests.js +2 -0
- package/dist-cms/packages/documents/documents/entity-actions/sort-children-of/manifests.js +2 -0
- package/dist-cms/packages/documents/documents/entity-bulk-actions/duplicate-to/manifests.js +2 -0
- package/dist-cms/packages/documents/documents/entity-bulk-actions/move-to/manifests.js +2 -0
- package/dist-cms/packages/documents/documents/global-contexts/document-configuration.context.d.ts +6 -6
- package/dist-cms/packages/documents/documents/global-contexts/document-configuration.context.js +16 -15
- package/dist-cms/packages/documents/documents/item/document-item-data-resolver.d.ts +2 -2
- package/dist-cms/packages/documents/documents/item/document-item-data-resolver.js +6 -4
- package/dist-cms/packages/documents/documents/item/document-item-ref.element.js +5 -1
- package/dist-cms/packages/documents/documents/manifests.js +2 -0
- package/dist-cms/packages/documents/documents/modals/shared/document-variant-language-picker.element.d.ts +1 -1
- package/dist-cms/packages/documents/documents/modals/shared/document-variant-language-picker.element.js +6 -2
- package/dist-cms/packages/documents/documents/property-editors/document-picker/Umbraco.ContentPicker.js +1 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/manifests.js +12 -1
- package/dist-cms/packages/documents/documents/property-editors/document-picker/property-editor-ui-document-picker.element.d.ts +1 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/property-editor-ui-document-picker.element.js +6 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-summary/manifests.js +12 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-summary/value-summary.d.ts +2 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-summary/value-summary.element.d.ts +16 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-summary/value-summary.element.js +34 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-summary/value-summary.js +2 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-summary/value-summary.resolver.d.ts +7 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-summary/value-summary.resolver.js +26 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/documents/documents/property-editors/document-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/documents/documents/publishing/pending-changes/document-published-pending-changes.manager.d.ts +5 -25
- package/dist-cms/packages/documents/documents/publishing/pending-changes/document-published-pending-changes.manager.js +7 -71
- package/dist-cms/packages/documents/documents/publishing/pending-changes/types.d.ts +3 -8
- package/dist-cms/packages/documents/documents/publishing/publish/entity-action/constants.d.ts +2 -0
- package/dist-cms/packages/documents/documents/publishing/publish/entity-action/constants.js +9 -0
- package/dist-cms/packages/documents/documents/publishing/publish/entity-action/index.d.ts +1 -1
- package/dist-cms/packages/documents/documents/publishing/publish/entity-action/index.js +1 -1
- package/dist-cms/packages/documents/documents/publishing/publish/entity-action/manifests.js +3 -7
- package/dist-cms/packages/documents/documents/publishing/publish/entity-bulk-action/publish.bulk-action.js +6 -6
- package/dist-cms/packages/documents/documents/publishing/publish/modal/document-publish-modal.element.d.ts +2 -0
- package/dist-cms/packages/documents/documents/publishing/publish/modal/document-publish-modal.element.js +9 -3
- package/dist-cms/packages/documents/documents/publishing/publish/modal/document-publish-modal.token.d.ts +9 -0
- package/dist-cms/packages/documents/documents/publishing/publish/modal/document-publish-modal.token.js +7 -0
- package/dist-cms/packages/documents/documents/publishing/repository/document-publishing.repository.d.ts +25 -0
- package/dist-cms/packages/documents/documents/publishing/repository/document-publishing.repository.js +27 -0
- package/dist-cms/packages/documents/documents/publishing/repository/document-publishing.server.data-source.d.ts +25 -0
- package/dist-cms/packages/documents/documents/publishing/repository/document-publishing.server.data-source.js +51 -0
- package/dist-cms/packages/documents/documents/publishing/unpublish/entity-action/constants.d.ts +2 -0
- package/dist-cms/packages/documents/documents/publishing/unpublish/entity-action/constants.js +15 -0
- package/dist-cms/packages/documents/documents/publishing/unpublish/entity-action/index.d.ts +1 -1
- package/dist-cms/packages/documents/documents/publishing/unpublish/entity-action/index.js +1 -1
- package/dist-cms/packages/documents/documents/publishing/unpublish/entity-action/manifests.js +3 -7
- package/dist-cms/packages/documents/documents/publishing/unpublish/entity-bulk-action/unpublish.bulk-action.js +70 -49
- package/dist-cms/packages/documents/documents/publishing/unpublish/modal/document-unpublish-modal.element.d.ts +2 -0
- package/dist-cms/packages/documents/documents/publishing/unpublish/modal/document-unpublish-modal.element.js +8 -12
- package/dist-cms/packages/documents/documents/publishing/unpublish/modal/document-unpublish-modal.token.d.ts +9 -0
- package/dist-cms/packages/documents/documents/publishing/unpublish/modal/document-unpublish-modal.token.js +7 -0
- package/dist-cms/packages/documents/documents/publishing/workspace-context/document-publishing.workspace-context.js +93 -45
- package/dist-cms/packages/documents/documents/recycle-bin/menu/manifests.js +5 -1
- package/dist-cms/packages/documents/documents/recycle-bin/root/workspace/manifests.js +5 -0
- package/dist-cms/packages/documents/documents/redirect-management/repository/document-redirect-management.repository.d.ts +3 -0
- package/dist-cms/packages/documents/documents/redirect-management/repository/document-redirect-management.repository.js +9 -0
- package/dist-cms/packages/documents/documents/redirect-management/repository/document-redirect-management.server.data-source.d.ts +3 -0
- package/dist-cms/packages/documents/documents/redirect-management/repository/document-redirect-management.server.data-source.js +3 -0
- package/dist-cms/packages/documents/documents/repository/detail/document-detail-request.mappers.d.ts +17 -0
- package/dist-cms/packages/documents/documents/repository/detail/document-detail-request.mappers.js +30 -0
- package/dist-cms/packages/documents/documents/repository/detail/document-detail.repository.d.ts +2 -1
- package/dist-cms/packages/documents/documents/repository/detail/document-detail.server.data-source.js +5 -16
- package/dist-cms/packages/documents/documents/search/document-search.server.data-source.js +34 -21
- package/dist-cms/packages/documents/documents/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/documents/documents/tree/server-data-source/document-tree.server.request-manager.d.ts +1 -0
- package/dist-cms/packages/documents/documents/tree/server-data-source/document-tree.server.request-manager.js +3 -1
- package/dist-cms/packages/documents/documents/tree/tree-item/document-tree-item.context.d.ts +0 -1
- package/dist-cms/packages/documents/documents/tree/tree-item/document-tree-item.context.js +18 -5
- package/dist-cms/packages/documents/documents/tree/tree-item/document-tree-item.element.js +3 -4
- package/dist-cms/packages/documents/documents/url/document-urls-data-resolver.d.ts +15 -0
- package/dist-cms/packages/documents/documents/url/document-urls-data-resolver.js +35 -4
- package/dist-cms/packages/documents/documents/url/info-app/document-links-workspace-info-app.element.js +24 -9
- package/dist-cms/packages/documents/documents/url/repository/document-url.repository.d.ts +13 -0
- package/dist-cms/packages/documents/documents/url/repository/document-url.repository.js +22 -0
- package/dist-cms/packages/documents/documents/url/repository/document-url.server.data-source.d.ts +1 -1
- package/dist-cms/packages/documents/documents/url/repository/document-url.server.data-source.js +2 -2
- package/dist-cms/packages/documents/documents/user-permissions/document/conditions/document-user-permission.condition.js +24 -2
- package/dist-cms/packages/documents/documents/user-permissions/document/conditions/types.d.ts +6 -0
- package/dist-cms/packages/documents/documents/utils.d.ts +1 -0
- package/dist-cms/packages/documents/documents/utils.js +10 -46
- package/dist-cms/packages/documents/documents/variant-state.d.ts +1 -1
- package/dist-cms/packages/documents/documents/variant-state.js +1 -1
- package/dist-cms/packages/documents/documents/workspace/context/document-workspace.context.js +10 -43
- package/dist-cms/packages/documents/documents/workspace/document-workspace-editor.element.js +60 -66
- package/dist-cms/packages/documents/documents/workspace/document-workspace-split-view-variant-selector.element.d.ts +4 -9
- package/dist-cms/packages/documents/documents/workspace/document-workspace-split-view-variant-selector.element.js +5 -48
- package/dist-cms/packages/documents/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/elements/collection/action/create-element-collection-action.element.js +2 -1
- package/dist-cms/packages/elements/configuration/configuration.repository.d.ts +9 -2
- package/dist-cms/packages/elements/configuration/configuration.repository.js +20 -3
- package/dist-cms/packages/elements/configuration/constants.d.ts +1 -0
- package/dist-cms/packages/elements/configuration/constants.js +1 -0
- package/dist-cms/packages/elements/configuration/index.d.ts +3 -0
- package/dist-cms/packages/elements/configuration/index.js +2 -0
- package/dist-cms/packages/elements/configuration/manifests.d.ts +1 -0
- package/dist-cms/packages/elements/configuration/manifests.js +9 -0
- package/dist-cms/packages/elements/constants.d.ts +2 -0
- package/dist-cms/packages/elements/constants.js +2 -0
- package/dist-cms/packages/elements/entity-actions/create/element-create-options-modal.element.d.ts +1 -0
- package/dist-cms/packages/elements/entity-actions/create/element-create-options-modal.element.js +19 -5
- package/dist-cms/packages/elements/entity-actions/create/manifests.js +5 -3
- package/dist-cms/packages/elements/folder/tree/element-folder-tree-item.context.d.ts +0 -1
- package/dist-cms/packages/elements/folder/tree/element-folder-tree-item.context.js +0 -1
- package/dist-cms/packages/elements/folder/tree/element-folder-tree-item.element.d.ts +0 -1
- package/dist-cms/packages/elements/folder/tree/element-folder-tree-item.element.js +0 -4
- package/dist-cms/packages/elements/folder/user-permissions/input-element-folder-granular-user-permission.element.d.ts +1 -1
- package/dist-cms/packages/elements/global-components/input-element.element.d.ts +1 -0
- package/dist-cms/packages/elements/global-components/input-element.element.js +4 -0
- package/dist-cms/packages/elements/item/index.d.ts +1 -0
- package/dist-cms/packages/elements/item/index.js +1 -0
- package/dist-cms/packages/elements/manifests.js +2 -0
- package/dist-cms/packages/elements/picker-data-source/element-tree.picker-data-source.d.ts +4 -3
- package/dist-cms/packages/elements/picker-data-source/element-tree.picker-data-source.js +11 -1
- package/dist-cms/packages/elements/property-editor/constants.d.ts +1 -0
- package/dist-cms/packages/elements/property-editor/constants.js +1 -0
- package/dist-cms/packages/elements/property-editor/element-picker/Umbraco.ElementPicker.js +1 -1
- package/dist-cms/packages/elements/property-editor/element-picker/constants.d.ts +1 -0
- package/dist-cms/packages/elements/property-editor/element-picker/constants.js +1 -0
- package/dist-cms/packages/elements/property-editor/element-picker/element-picker-property-editor-ui.element.d.ts +1 -0
- package/dist-cms/packages/elements/property-editor/element-picker/element-picker-property-editor-ui.element.js +6 -0
- package/dist-cms/packages/elements/property-editor/element-picker/manifests.js +13 -3
- package/dist-cms/packages/elements/property-editor/element-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-summary/manifests.js +12 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-summary/value-summary.d.ts +2 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-summary/value-summary.element.d.ts +17 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-summary/value-summary.element.js +76 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-summary/value-summary.js +2 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-summary/value-summary.resolver.d.ts +8 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-summary/value-summary.resolver.js +24 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/elements/property-editor/element-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/elements/publishing/pending-changes/element-published-pending-changes.manager.d.ts +4 -25
- package/dist-cms/packages/elements/publishing/pending-changes/element-published-pending-changes.manager.js +3 -69
- package/dist-cms/packages/elements/publishing/publish/entity-action/constants.d.ts +2 -0
- package/dist-cms/packages/elements/publishing/publish/entity-action/constants.js +11 -0
- package/dist-cms/packages/elements/publishing/publish/entity-action/index.d.ts +1 -1
- package/dist-cms/packages/elements/publishing/publish/entity-action/index.js +1 -1
- package/dist-cms/packages/elements/publishing/publish/entity-action/manifests.js +3 -7
- package/dist-cms/packages/elements/publishing/publish/entity-bulk-action/publish.bulk-action.js +5 -5
- package/dist-cms/packages/elements/publishing/publish/modal/element-publish-modal.element.d.ts +2 -0
- package/dist-cms/packages/elements/publishing/publish/modal/element-publish-modal.element.js +9 -3
- package/dist-cms/packages/elements/publishing/publish/modal/element-publish-modal.token.d.ts +9 -0
- package/dist-cms/packages/elements/publishing/publish/modal/element-publish-modal.token.js +7 -0
- package/dist-cms/packages/elements/publishing/repository/element-publishing.repository.d.ts +34 -1
- package/dist-cms/packages/elements/publishing/repository/element-publishing.repository.js +36 -0
- package/dist-cms/packages/elements/publishing/repository/element-publishing.server.data-source.d.ts +34 -0
- package/dist-cms/packages/elements/publishing/repository/element-publishing.server.data-source.js +68 -0
- package/dist-cms/packages/elements/publishing/schedule-publish/types.d.ts +1 -0
- package/dist-cms/packages/elements/publishing/schedule-publish/types.js +1 -0
- package/dist-cms/packages/elements/publishing/types.d.ts +4 -6
- package/dist-cms/packages/elements/publishing/unpublish/entity-action/constants.d.ts +2 -0
- package/dist-cms/packages/elements/publishing/unpublish/entity-action/constants.js +15 -0
- package/dist-cms/packages/elements/publishing/unpublish/entity-action/index.d.ts +1 -1
- package/dist-cms/packages/elements/publishing/unpublish/entity-action/index.js +1 -1
- package/dist-cms/packages/elements/publishing/unpublish/entity-action/manifests.js +3 -7
- package/dist-cms/packages/elements/publishing/unpublish/entity-bulk-action/unpublish.bulk-action.js +5 -5
- package/dist-cms/packages/elements/publishing/unpublish/index.d.ts +1 -0
- package/dist-cms/packages/elements/publishing/unpublish/index.js +1 -0
- package/dist-cms/packages/elements/publishing/unpublish/modal/element-unpublish-modal.element.d.ts +2 -0
- package/dist-cms/packages/elements/publishing/unpublish/modal/element-unpublish-modal.element.js +8 -2
- package/dist-cms/packages/elements/publishing/unpublish/modal/element-unpublish-modal.token.d.ts +4 -0
- package/dist-cms/packages/elements/publishing/unpublish/modal/element-unpublish-modal.token.js +2 -0
- package/dist-cms/packages/elements/publishing/workspace-context/element-publishing.workspace-context.js +92 -79
- package/dist-cms/packages/elements/recycle-bin/entity-actions/manifests.js +1 -0
- package/dist-cms/packages/elements/recycle-bin/entity-actions/trash/element-trash-with-relation.action.d.ts +5 -0
- package/dist-cms/packages/elements/recycle-bin/entity-actions/trash/element-trash-with-relation.action.js +19 -0
- package/dist-cms/packages/elements/recycle-bin/entity-bulk-actions/manifests.js +1 -0
- package/dist-cms/packages/elements/recycle-bin/entity-bulk-actions/trash/element-bulk-trash-with-relation.action.d.ts +5 -0
- package/dist-cms/packages/elements/recycle-bin/entity-bulk-actions/trash/element-bulk-trash-with-relation.action.js +17 -0
- package/dist-cms/packages/elements/recycle-bin/menu/manifests.js +10 -1
- package/dist-cms/packages/elements/recycle-bin/root/workspace/manifests.js +7 -0
- package/dist-cms/packages/elements/repository/detail/element-detail-request.mappers.d.ts +17 -0
- package/dist-cms/packages/elements/repository/detail/element-detail-request.mappers.js +28 -0
- package/dist-cms/packages/elements/repository/detail/element-detail-response.mappers.d.ts +9 -0
- package/dist-cms/packages/elements/repository/detail/element-detail-response.mappers.js +43 -0
- package/dist-cms/packages/elements/repository/detail/element-detail.server.data-source.js +5 -50
- package/dist-cms/packages/elements/repository/structure/element-type-structure.server.data-source.js +4 -2
- package/dist-cms/packages/elements/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/elements/user-permissions/conditions/constants.d.ts +1 -0
- package/dist-cms/packages/elements/user-permissions/conditions/constants.js +1 -0
- package/dist-cms/packages/elements/user-permissions/conditions/element-or-element-folder-user-permission.condition.d.ts +10 -0
- package/dist-cms/packages/elements/user-permissions/conditions/element-or-element-folder-user-permission.condition.js +31 -0
- package/dist-cms/packages/elements/user-permissions/conditions/element-user-permission.condition.js +10 -4
- package/dist-cms/packages/elements/user-permissions/conditions/index.d.ts +1 -0
- package/dist-cms/packages/elements/user-permissions/conditions/index.js +1 -0
- package/dist-cms/packages/elements/user-permissions/conditions/manifests.js +8 -1
- package/dist-cms/packages/elements/user-permissions/conditions/types.d.ts +21 -0
- package/dist-cms/packages/elements/workspace/element-workspace-split-view-variant-selector.element.d.ts +4 -8
- package/dist-cms/packages/elements/workspace/element-workspace-split-view-variant-selector.element.js +5 -48
- package/dist-cms/packages/embedded-media/modal/embedded-media-modal.element.js +1 -1
- package/dist-cms/packages/embedded-media/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/extension-insights/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/extension-types/index.d.ts +1 -1
- package/dist-cms/packages/health-check/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/help/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/language/app-language-select/app-language-select.element.js +1 -1
- package/dist-cms/packages/language/collection/repository/language-collection.repository.d.ts +9 -1
- package/dist-cms/packages/language/collection/repository/language-collection.repository.js +13 -1
- package/dist-cms/packages/language/components/input-language/input-language.element.d.ts +2 -2
- package/dist-cms/packages/language/components/input-language/input-language.element.js +4 -4
- package/dist-cms/packages/language/global-contexts/app-language.context.js +1 -1
- package/dist-cms/packages/language/modals/language-picker/language-picker-modal.element.js +1 -1
- package/dist-cms/packages/language/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/log-viewer/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/log-viewer/workspace/logviewer-workspace.context.js +2 -2
- package/dist-cms/packages/log-viewer/workspace/views/search/components/log-viewer-message.element.js +2 -2
- package/dist-cms/packages/management-api/detail/detail-data.request-manager.js +2 -2
- package/dist-cms/packages/management-api/tree/tree-data.request-manager.d.ts +6 -0
- package/dist-cms/packages/management-api/tree/tree-data.request-manager.js +27 -5
- package/dist-cms/packages/management-api/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/markdown-editor/components/input-markdown-editor/input-markdown.element.js +4 -2
- package/dist-cms/packages/markdown-editor/property-editors/markdown-editor/manifests.js +3 -1
- package/dist-cms/packages/markdown-editor/property-editors/markdown-editor/value-summary/manifests.d.ts +8 -0
- package/dist-cms/packages/markdown-editor/property-editors/markdown-editor/value-summary/manifests.js +11 -0
- package/dist-cms/packages/markdown-editor/property-editors/markdown-editor/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/markdown-editor/property-editors/markdown-editor/value-summary/value-summary.element.js +20 -0
- package/dist-cms/packages/markdown-editor/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/media/dropzone/components/input-dropzone/input-dropzone.element.d.ts +21 -1
- package/dist-cms/packages/media/dropzone/components/input-dropzone/input-dropzone.element.js +50 -10
- package/dist-cms/packages/media/imaging/components/imaging-thumbnail.element.d.ts +7 -54
- package/dist-cms/packages/media/imaging/components/imaging-thumbnail.element.js +8 -178
- package/dist-cms/packages/media/imaging/components/index.d.ts +1 -0
- package/dist-cms/packages/media/imaging/components/index.js +1 -0
- package/dist-cms/packages/media/imaging/components/media-thumbnail.element.d.ts +68 -0
- package/dist-cms/packages/media/imaging/components/media-thumbnail.element.js +216 -0
- package/dist-cms/packages/media/media/collection/item/media-collection-item-card.element.js +2 -2
- package/dist-cms/packages/media/media/collection/views/table/media-table-collection-view.element.js +2 -2
- package/dist-cms/packages/media/media/components/input-image-cropper/image-cropper-focus-setter.element.js +9 -1
- package/dist-cms/packages/media/media/components/input-image-cropper/image-cropper.element.js +7 -1
- package/dist-cms/packages/media/media/components/input-image-cropper/input-image-cropper.element.js +2 -12
- package/dist-cms/packages/media/media/components/input-media/input-media.element.d.ts +2 -2
- package/dist-cms/packages/media/media/components/input-media/input-media.element.js +20 -24
- package/dist-cms/packages/media/media/components/input-rich-media/input-rich-media.element.d.ts +3 -3
- package/dist-cms/packages/media/media/components/input-rich-media/input-rich-media.element.js +11 -25
- package/dist-cms/packages/media/media/components/input-upload-field/input-upload-field.element.js +2 -12
- package/dist-cms/packages/media/media/configuration/configuration.repository.d.ts +23 -0
- package/dist-cms/packages/media/media/configuration/configuration.repository.js +36 -0
- package/dist-cms/packages/media/media/configuration/configuration.server.data-source.d.ts +11 -0
- package/dist-cms/packages/media/media/configuration/configuration.server.data-source.js +22 -0
- package/dist-cms/packages/media/media/configuration/constants.d.ts +1 -0
- package/dist-cms/packages/media/media/configuration/constants.js +1 -0
- package/dist-cms/packages/media/media/configuration/index.d.ts +3 -0
- package/dist-cms/packages/media/media/configuration/index.js +2 -0
- package/dist-cms/packages/media/media/configuration/manifests.d.ts +1 -0
- package/dist-cms/packages/media/media/configuration/manifests.js +9 -0
- package/dist-cms/packages/media/media/configuration/types.d.ts +7 -0
- package/dist-cms/packages/media/media/configuration/types.js +1 -0
- package/dist-cms/packages/media/media/constants.d.ts +4 -0
- package/dist-cms/packages/media/media/constants.js +4 -0
- package/dist-cms/packages/media/media/dropzone/dropzone-media.element.d.ts +3 -2
- package/dist-cms/packages/media/media/dropzone/dropzone-media.element.js +3 -8
- package/dist-cms/packages/media/media/dropzone/media-dropzone.manager.js +2 -1
- package/dist-cms/packages/media/media/entity-actions/create/media-create-options-modal.element.d.ts +2 -0
- package/dist-cms/packages/media/media/entity-actions/create/media-create-options-modal.element.js +31 -11
- package/dist-cms/packages/media/media/entity-actions/move-to/manifests.js +2 -0
- package/dist-cms/packages/media/media/entity-actions/sort-children-of/manifests.js +2 -0
- package/dist-cms/packages/media/media/entity-bulk-actions/move-to/manifests.js +2 -0
- package/dist-cms/packages/media/media/global-contexts/media-configuration.context.d.ts +3 -3
- package/dist-cms/packages/media/media/global-contexts/media-configuration.context.js +5 -16
- package/dist-cms/packages/media/media/index.d.ts +2 -0
- package/dist-cms/packages/media/media/index.js +2 -0
- package/dist-cms/packages/media/media/item/index.d.ts +1 -0
- package/dist-cms/packages/media/media/item/index.js +1 -0
- package/dist-cms/packages/media/media/item/media-item-data-resolver.d.ts +56 -0
- package/dist-cms/packages/media/media/item/media-item-data-resolver.js +145 -0
- package/dist-cms/packages/media/media/item/media-item-ref.element.js +1 -1
- package/dist-cms/packages/media/media/manifests.js +2 -0
- package/dist-cms/packages/media/media/modals/media-picker/components/media-picker-folder-path.element.js +56 -19
- package/dist-cms/packages/media/media/modals/media-picker/media-picker-modal.element.d.ts +2 -0
- package/dist-cms/packages/media/media/modals/media-picker/media-picker-modal.element.js +68 -9
- package/dist-cms/packages/media/media/property-editors/image-cropper/manifests.js +3 -1
- package/dist-cms/packages/media/media/property-editors/image-cropper/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/media/media/property-editors/image-cropper/value-summary/manifests.js +11 -0
- package/dist-cms/packages/media/media/property-editors/image-cropper/value-summary/value-summary.element.d.ts +12 -0
- package/dist-cms/packages/media/media/property-editors/image-cropper/value-summary/value-summary.element.js +21 -0
- package/dist-cms/packages/media/media/property-editors/image-cropper/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/media/media/property-editors/image-cropper/value-type/constants.js +1 -0
- package/dist-cms/packages/media/media/property-editors/image-crops/manifests.js +1 -1
- package/dist-cms/packages/media/media/property-editors/media-entity-picker/manifests.js +1 -1
- package/dist-cms/packages/media/media/property-editors/media-picker/manifests.js +3 -1
- package/dist-cms/packages/media/media/property-editors/media-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-summary/manifests.js +12 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-summary/value-summary.d.ts +2 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-summary/value-summary.element.js +20 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-summary/value-summary.js +2 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-summary/value-summary.resolver.d.ts +8 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-summary/value-summary.resolver.js +24 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/media/media/property-editors/media-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/media/media/property-editors/upload-field/manifests.js +3 -1
- package/dist-cms/packages/media/media/property-editors/upload-field/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/media/media/property-editors/upload-field/value-summary/manifests.js +11 -0
- package/dist-cms/packages/media/media/property-editors/upload-field/value-summary/value-summary.element.d.ts +12 -0
- package/dist-cms/packages/media/media/property-editors/upload-field/value-summary/value-summary.element.js +21 -0
- package/dist-cms/packages/media/media/property-editors/upload-field/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/media/media/property-editors/upload-field/value-type/constants.js +1 -0
- package/dist-cms/packages/media/media/recycle-bin/manifests.js +2 -1
- package/dist-cms/packages/media/media/repository/types.d.ts +1 -1
- package/dist-cms/packages/media/media/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/media/media/search/media-search.server.data-source.js +32 -19
- package/dist-cms/packages/media/media/tree/tree-item/media-tree-item.context.d.ts +0 -1
- package/dist-cms/packages/media/media/tree/tree-item/media-tree-item.context.js +2 -5
- package/dist-cms/packages/media/media/tree/tree-item/media-tree-item.element.d.ts +0 -1
- package/dist-cms/packages/media/media/tree/tree-item/media-tree-item.element.js +0 -6
- package/dist-cms/packages/media/media/utils/ensure-media-name-from-file.function.d.ts +12 -0
- package/dist-cms/packages/media/media/utils/ensure-media-name-from-file.function.js +22 -0
- package/dist-cms/packages/media/media/utils/index.d.ts +2 -0
- package/dist-cms/packages/media/media/utils/index.js +2 -0
- package/dist-cms/packages/media/media/utils/to-friendly-name.function.d.ts +11 -0
- package/dist-cms/packages/media/media/utils/to-friendly-name.function.js +48 -0
- package/dist-cms/packages/media/media/workspace/media-workspace-editor.element.js +54 -53
- package/dist-cms/packages/media/media-types/components/input-media-type/input-media-type.element.d.ts +2 -2
- package/dist-cms/packages/media/media-types/components/input-media-type/input-media-type.element.js +4 -4
- package/dist-cms/packages/media/media-types/property-editors/media-type-picker/manifests.js +1 -1
- package/dist-cms/packages/media/media-types/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/media/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/members/member/components/input-member/input-member.element.d.ts +2 -2
- package/dist-cms/packages/members/member/components/input-member/input-member.element.js +2 -2
- package/dist-cms/packages/members/member/constants.d.ts +1 -0
- package/dist-cms/packages/members/member/constants.js +1 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/manifests.js +3 -1
- package/dist-cms/packages/members/member/property-editor/member-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-summary/manifests.js +12 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-summary/value-summary.d.ts +2 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-summary/value-summary.element.js +19 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-summary/value-summary.js +2 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-summary/value-summary.resolver.d.ts +7 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-summary/value-summary.resolver.js +26 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/members/member/property-editor/member-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/members/member/repository/detail/member-detail.server.data-source.js +1 -1
- package/dist-cms/packages/members/member/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/members/member/workspace/member/member-workspace-editor.element.d.ts +3 -2
- package/dist-cms/packages/members/member/workspace/member/member-workspace-editor.element.js +64 -45
- package/dist-cms/packages/members/member-group/collection/index.d.ts +1 -0
- package/dist-cms/packages/members/member-group/collection/manifests.js +1 -0
- package/dist-cms/packages/members/member-group/collection/member-group-collection.context.d.ts +6 -0
- package/dist-cms/packages/members/member-group/collection/member-group-collection.context.js +8 -0
- package/dist-cms/packages/members/member-group/collection/repository/member-group-collection.repository.d.ts +1 -1
- package/dist-cms/packages/members/member-group/collection/repository/member-group-collection.server.data-source.d.ts +5 -6
- package/dist-cms/packages/members/member-group/collection/repository/member-group-collection.server.data-source.js +4 -4
- package/dist-cms/packages/members/member-group/collection/repository/types.d.ts +2 -2
- package/dist-cms/packages/members/member-group/collection/types.d.ts +2 -2
- package/dist-cms/packages/members/member-group/collection/views/manifests.js +3 -7
- package/dist-cms/packages/members/member-group/components/input-member-group/input-member-group.element.d.ts +2 -2
- package/dist-cms/packages/members/member-group/components/input-member-group/input-member-group.element.js +2 -2
- package/dist-cms/packages/members/member-group/constants.d.ts +1 -0
- package/dist-cms/packages/members/member-group/constants.js +1 -0
- package/dist-cms/packages/members/member-group/paths.d.ts +5 -0
- package/dist-cms/packages/members/member-group/paths.js +1 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/manifests.js +3 -1
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-summary/manifests.js +12 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-summary/value-summary.d.ts +2 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-summary/value-summary.element.js +20 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-summary/value-summary.js +2 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-summary/value-summary.resolver.d.ts +7 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-summary/value-summary.resolver.js +26 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/members/member-group/property-editor/member-group-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/members/member-type/components/input-member-type/input-member-type.element.d.ts +2 -2
- package/dist-cms/packages/members/member-type/components/input-member-type/input-member-type.element.js +4 -4
- package/dist-cms/packages/members/member-type/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/members/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/models-builder/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/multi-url-picker/components/input-multi-url/input-multi-url.element.d.ts +2 -2
- package/dist-cms/packages/multi-url-picker/components/input-multi-url/input-multi-url.element.js +4 -3
- package/dist-cms/packages/multi-url-picker/constants.d.ts +1 -0
- package/dist-cms/packages/multi-url-picker/constants.js +1 -0
- package/dist-cms/packages/multi-url-picker/document-link-picker-modal/document-link-picker.context.js +1 -1
- package/dist-cms/packages/multi-url-picker/link-picker-modal/link-picker-modal.element.js +11 -5
- package/dist-cms/packages/multi-url-picker/property-editor/manifests.d.ts +1 -1
- package/dist-cms/packages/multi-url-picker/property-editor/manifests.js +3 -1
- package/dist-cms/packages/multi-url-picker/property-editor/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/multi-url-picker/property-editor/value-summary/manifests.js +11 -0
- package/dist-cms/packages/multi-url-picker/property-editor/value-summary/value-summary.element.d.ts +12 -0
- package/dist-cms/packages/multi-url-picker/property-editor/value-summary/value-summary.element.js +21 -0
- package/dist-cms/packages/multi-url-picker/property-editor/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/multi-url-picker/property-editor/value-type/constants.js +1 -0
- package/dist-cms/packages/multi-url-picker/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/packages/package/repository/package.repository.js +1 -0
- package/dist-cms/packages/packages/package-builder/workspace/workspace-package-builder.element.js +24 -4
- package/dist-cms/packages/packages/package-section/views/created/created-packages-section-view.element.js +2 -2
- package/dist-cms/packages/packages/package-section/views/created/packages-created-overview.element.js +2 -2
- package/dist-cms/packages/packages/types.d.ts +1 -0
- package/dist-cms/packages/packages/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/preview/context/preview.context.js +2 -0
- package/dist-cms/packages/preview/controllers/preview.controller.d.ts +23 -0
- package/dist-cms/packages/preview/controllers/preview.controller.js +65 -0
- package/dist-cms/packages/preview/index.d.ts +1 -0
- package/dist-cms/packages/preview/index.js +1 -0
- package/dist-cms/packages/preview/preview-apps/preview-culture.element.js +2 -2
- package/dist-cms/packages/preview/preview-apps/preview-environments.element.js +12 -18
- package/dist-cms/packages/preview/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/preview/utils/index.d.ts +1 -0
- package/dist-cms/packages/preview/utils/index.js +1 -0
- package/dist-cms/packages/preview/utils/link-interceptor.function.d.ts +14 -0
- package/dist-cms/packages/preview/utils/link-interceptor.function.js +55 -0
- package/dist-cms/packages/property-editors/accepted-types/manifests.js +1 -1
- package/dist-cms/packages/property-editors/checkbox-list/manifests.js +3 -1
- package/dist-cms/packages/property-editors/checkbox-list/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/property-editors/checkbox-list/value-summary/manifests.js +11 -0
- package/dist-cms/packages/property-editors/checkbox-list/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/property-editors/checkbox-list/value-summary/value-summary.element.js +21 -0
- package/dist-cms/packages/property-editors/checkbox-list/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/property-editors/checkbox-list/value-type/constants.js +1 -0
- package/dist-cms/packages/property-editors/collection/config/column/column-configuration.element.d.ts +3 -2
- package/dist-cms/packages/property-editors/collection/config/column/column-configuration.element.js +54 -90
- package/dist-cms/packages/property-editors/collection/config/column/manifests.js +1 -1
- package/dist-cms/packages/property-editors/collection/config/layout/layout-configuration.element.d.ts +2 -1
- package/dist-cms/packages/property-editors/collection/config/layout/layout-configuration.element.js +58 -93
- package/dist-cms/packages/property-editors/collection/config/layout/manifests.js +1 -1
- package/dist-cms/packages/property-editors/collection/config/order-by/manifests.js +1 -1
- package/dist-cms/packages/property-editors/collection/manifests.js +1 -1
- package/dist-cms/packages/property-editors/color-picker/manifests.js +1 -1
- package/dist-cms/packages/property-editors/color-swatches-editor/manifests.js +1 -1
- package/dist-cms/packages/property-editors/content-picker/components/input-content/input-content.element.d.ts +24 -0
- package/dist-cms/packages/property-editors/content-picker/components/input-content/input-content.element.js +25 -1
- package/dist-cms/packages/property-editors/content-picker/config/source-content/manifests.js +1 -1
- package/dist-cms/packages/property-editors/content-picker/config/source-type/manifests.js +1 -1
- package/dist-cms/packages/property-editors/content-picker/constants.d.ts +1 -0
- package/dist-cms/packages/property-editors/content-picker/constants.js +1 -0
- package/dist-cms/packages/property-editors/content-picker/manifests.js +11 -4
- package/dist-cms/packages/property-editors/content-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/property-editors/content-picker/value-summary/manifests.js +12 -0
- package/dist-cms/packages/property-editors/content-picker/value-summary/value-summary.d.ts +2 -0
- package/dist-cms/packages/property-editors/content-picker/value-summary/value-summary.element.d.ts +15 -0
- package/dist-cms/packages/property-editors/content-picker/value-summary/value-summary.element.js +71 -0
- package/dist-cms/packages/property-editors/content-picker/value-summary/value-summary.js +2 -0
- package/dist-cms/packages/property-editors/content-picker/value-summary/value-summary.resolver.d.ts +13 -0
- package/dist-cms/packages/property-editors/content-picker/value-summary/value-summary.resolver.js +54 -0
- package/dist-cms/packages/property-editors/content-picker/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/property-editors/content-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/property-editors/date-picker/manifests.js +1 -1
- package/dist-cms/packages/property-editors/date-time/date-only-picker/manifests.js +3 -1
- package/dist-cms/packages/property-editors/date-time/date-only-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/property-editors/date-time/date-only-picker/value-summary/manifests.js +11 -0
- package/dist-cms/packages/property-editors/date-time/date-only-picker/value-type/constants.d.ts +9 -0
- package/dist-cms/packages/property-editors/date-time/date-only-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/property-editors/date-time/date-time-picker/manifests.js +3 -1
- package/dist-cms/packages/property-editors/date-time/date-time-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/property-editors/date-time/date-time-picker/value-summary/manifests.js +11 -0
- package/dist-cms/packages/property-editors/date-time/date-time-picker/value-type/constants.d.ts +9 -0
- package/dist-cms/packages/property-editors/date-time/date-time-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/property-editors/date-time/date-time-value-summary.element.d.ts +15 -0
- package/dist-cms/packages/property-editors/date-time/date-time-value-summary.element.js +39 -0
- package/dist-cms/packages/property-editors/date-time/date-time-with-time-zone-picker/manifests.js +1 -1
- package/dist-cms/packages/property-editors/date-time/date-time-with-time-zone-picker/value-summary/manifests.js +1 -1
- package/dist-cms/packages/property-editors/date-time/time-only-picker/manifests.js +3 -1
- package/dist-cms/packages/property-editors/date-time/time-only-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/property-editors/date-time/time-only-picker/value-summary/manifests.js +11 -0
- package/dist-cms/packages/property-editors/date-time/time-only-picker/value-type/constants.d.ts +9 -0
- package/dist-cms/packages/property-editors/date-time/time-only-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/property-editors/dimensions/manifest.js +1 -1
- package/dist-cms/packages/property-editors/dropdown/manifests.js +10 -1
- package/dist-cms/packages/property-editors/dropdown/property-editor-ui-dropdown.element.d.ts +1 -0
- package/dist-cms/packages/property-editors/dropdown/property-editor-ui-dropdown.element.js +11 -1
- package/dist-cms/packages/property-editors/entity-data-picker/input/input-entity-data.context.js +4 -0
- package/dist-cms/packages/property-editors/entity-data-picker/input/input-entity-data.element.d.ts +3 -0
- package/dist-cms/packages/property-editors/entity-data-picker/input/input-entity-data.element.js +13 -1
- package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/picker-views/manifests.js +1 -1
- package/dist-cms/packages/property-editors/entity-data-picker/property-editor/entity-data-picker-property-editor-ui.element.d.ts +2 -0
- package/dist-cms/packages/property-editors/entity-data-picker/property-editor/entity-data-picker-property-editor-ui.element.js +35 -10
- package/dist-cms/packages/property-editors/entity-data-picker/property-editor/manifests.js +1 -1
- package/dist-cms/packages/property-editors/eye-dropper/manifests.js +3 -1
- package/dist-cms/packages/property-editors/eye-dropper/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/property-editors/eye-dropper/value-summary/manifests.js +11 -0
- package/dist-cms/packages/property-editors/eye-dropper/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/property-editors/eye-dropper/value-summary/value-summary.element.js +23 -0
- package/dist-cms/packages/property-editors/eye-dropper/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/property-editors/eye-dropper/value-type/constants.js +1 -0
- package/dist-cms/packages/property-editors/icon-picker/manifests.js +1 -1
- package/dist-cms/packages/property-editors/icon-picker/property-editor-ui-icon-picker.element.d.ts +1 -0
- package/dist-cms/packages/property-editors/icon-picker/property-editor-ui-icon-picker.element.js +6 -1
- package/dist-cms/packages/property-editors/label/manifests.js +1 -1
- package/dist-cms/packages/property-editors/multiple-text-string/manifests.js +3 -1
- package/dist-cms/packages/property-editors/multiple-text-string/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/property-editors/multiple-text-string/value-summary/manifests.js +11 -0
- package/dist-cms/packages/property-editors/multiple-text-string/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/property-editors/multiple-text-string/value-summary/value-summary.element.js +21 -0
- package/dist-cms/packages/property-editors/multiple-text-string/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/property-editors/multiple-text-string/value-type/constants.js +1 -0
- package/dist-cms/packages/property-editors/number/decimal-property-value-preset.d.ts +1 -1
- package/dist-cms/packages/property-editors/number/decimal-property-value-preset.js +5 -3
- package/dist-cms/packages/property-editors/number/integer-property-value-preset.d.ts +1 -1
- package/dist-cms/packages/property-editors/number/integer-property-value-preset.js +9 -3
- package/dist-cms/packages/property-editors/number/manifests.js +2 -2
- package/dist-cms/packages/property-editors/number/resolve-number-preset-value.function.d.ts +7 -0
- package/dist-cms/packages/property-editors/number/resolve-number-preset-value.function.js +24 -0
- package/dist-cms/packages/property-editors/number/types.d.ts +2 -2
- package/dist-cms/packages/property-editors/number-range/manifests.js +1 -1
- package/dist-cms/packages/property-editors/order-direction/manifests.js +1 -1
- package/dist-cms/packages/property-editors/radio-button-list/manifests.js +1 -1
- package/dist-cms/packages/property-editors/select/manifests.js +1 -1
- package/dist-cms/packages/property-editors/slider/manifests.js +1 -1
- package/dist-cms/packages/property-editors/text-box/Umbraco.TextBox.js +5 -1
- package/dist-cms/packages/property-editors/text-box/manifests.js +25 -3
- package/dist-cms/packages/property-editors/text-box/property-editor-ui-text-box.element.d.ts +6 -0
- package/dist-cms/packages/property-editors/text-box/property-editor-ui-text-box.element.js +13 -3
- package/dist-cms/packages/property-editors/textarea/Umbraco.TextArea.js +1 -1
- package/dist-cms/packages/property-editors/textarea/manifests.js +7 -1
- package/dist-cms/packages/property-editors/textarea/property-editor-ui-textarea.element.d.ts +1 -0
- package/dist-cms/packages/property-editors/textarea/property-editor-ui-textarea.element.js +5 -0
- package/dist-cms/packages/property-editors/toggle/manifests.js +3 -1
- package/dist-cms/packages/property-editors/toggle/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/property-editors/toggle/value-summary/manifests.js +11 -0
- package/dist-cms/packages/property-editors/toggle/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/property-editors/toggle/value-summary/value-summary.element.js +22 -0
- package/dist-cms/packages/property-editors/toggle/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/property-editors/toggle/value-type/constants.js +1 -0
- package/dist-cms/packages/property-editors/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/property-editors/value-type/manifests.js +1 -1
- package/dist-cms/packages/relations/relation-types/collection/index.d.ts +1 -0
- package/dist-cms/packages/relations/relation-types/collection/manifests.js +1 -0
- package/dist-cms/packages/relations/relation-types/collection/relation-type-collection.context.d.ts +6 -0
- package/dist-cms/packages/relations/relation-types/collection/relation-type-collection.context.js +8 -0
- package/dist-cms/packages/relations/relation-types/collection/repository/relation-type-collection.repository.d.ts +1 -1
- package/dist-cms/packages/relations/relation-types/collection/repository/relation-type-collection.server.data-source.d.ts +3 -4
- package/dist-cms/packages/relations/relation-types/collection/repository/relation-type-collection.server.data-source.js +2 -2
- package/dist-cms/packages/relations/relation-types/collection/repository/types.d.ts +2 -3
- package/dist-cms/packages/relations/relation-types/collection/types.d.ts +21 -0
- package/dist-cms/packages/relations/relation-types/collection/views/manifests.js +3 -7
- package/dist-cms/packages/relations/relation-types/workspace/relation-type/views/relation-type-detail-workspace-view.element.js +7 -7
- package/dist-cms/packages/relations/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/rte/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/segment/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/settings/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/static-file/components/input-static-file/input-static-file.element.d.ts +2 -2
- package/dist-cms/packages/static-file/components/input-static-file/input-static-file.element.js +4 -4
- package/dist-cms/packages/static-file/property-editors/static-file-picker/manifests.js +1 -1
- package/dist-cms/packages/static-file/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/sysinfo/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/tags/components/tags-input/tags-input.element.js +4 -0
- package/dist-cms/packages/tags/constants.d.ts +1 -0
- package/dist-cms/packages/tags/constants.js +1 -0
- package/dist-cms/packages/tags/property-editors/tags/manifests.js +3 -1
- package/dist-cms/packages/tags/property-editors/tags/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/tags/property-editors/tags/value-summary/manifests.js +11 -0
- package/dist-cms/packages/tags/property-editors/tags/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/tags/property-editors/tags/value-summary/value-summary.element.js +21 -0
- package/dist-cms/packages/tags/property-editors/tags/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/tags/property-editors/tags/value-type/constants.js +1 -0
- package/dist-cms/packages/tags/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/templating/stylesheets/global-components/stylesheet-input/stylesheet-input.element.d.ts +2 -2
- package/dist-cms/packages/templating/stylesheets/global-components/stylesheet-input/stylesheet-input.element.js +4 -4
- package/dist-cms/packages/templating/stylesheets/property-editors/stylesheet-picker/manifests.js +1 -1
- package/dist-cms/packages/templating/templates/global-components/input-template/input-template.element.d.ts +2 -2
- package/dist-cms/packages/templating/templates/global-components/input-template/input-template.element.js +3 -3
- package/dist-cms/packages/templating/templates/search/global-search/manifests.js +1 -1
- package/dist-cms/packages/templating/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/tiptap/components/input-tiptap/input-tiptap.element.d.ts +1 -0
- package/dist-cms/packages/tiptap/components/input-tiptap/input-tiptap.element.js +18 -14
- package/dist-cms/packages/tiptap/components/toolbar/tiptap-toolbar-button.element.js +2 -4
- package/dist-cms/packages/tiptap/components/toolbar/tiptap-toolbar-menu.element.js +2 -4
- package/dist-cms/packages/tiptap/extensions/figure/figure.tiptap-extension.js +3 -14
- package/dist-cms/packages/tiptap/extensions/media-picker/media-picker.tiptap-toolbar-api.js +13 -30
- package/dist-cms/packages/tiptap/extensions/media-picker/media-picker.tiptap-toolbar.utils.d.ts +45 -0
- package/dist-cms/packages/tiptap/extensions/media-picker/media-picker.tiptap-toolbar.utils.js +86 -0
- package/dist-cms/packages/tiptap/extensions/text-indent/text-indent.tiptap-extension.js +27 -3
- package/dist-cms/packages/tiptap/extensions/text-indent/text-indent.tiptap-toolbar-api.js +9 -1
- package/dist-cms/packages/tiptap/extensions/text-indent/text-outdent.tiptap-toolbar-api.js +9 -1
- package/dist-cms/packages/tiptap/property-editors/extensions-configuration/manifests.js +1 -1
- package/dist-cms/packages/tiptap/property-editors/statusbar-configuration/manifests.js +1 -1
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/constants.d.ts +1 -0
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/constants.js +1 -0
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/manifests.js +1 -1
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/value-summary/manifests.js +11 -0
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/value-summary/value-summary.element.d.ts +12 -0
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/value-summary/value-summary.element.js +22 -0
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/value-type/constants.d.ts +7 -0
- package/dist-cms/packages/tiptap/property-editors/tiptap-rte/value-type/constants.js +1 -0
- package/dist-cms/packages/tiptap/property-editors/toolbar-configuration/manifests.js +1 -1
- package/dist-cms/packages/tiptap/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/tiptap/umbraco-package.js +2 -0
- package/dist-cms/packages/translation/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/ufm/components/element-name/element-name.component.d.ts +7 -0
- package/dist-cms/packages/ufm/components/element-name/element-name.component.js +11 -0
- package/dist-cms/packages/ufm/components/element-name/element-name.element.d.ts +12 -0
- package/dist-cms/packages/ufm/components/element-name/element-name.element.js +63 -0
- package/dist-cms/packages/ufm/components/element-name/manifests.d.ts +2 -0
- package/dist-cms/packages/ufm/components/element-name/manifests.js +9 -0
- package/dist-cms/packages/ufm/components/manifests.js +9 -0
- package/dist-cms/packages/ufm/components/member-name/member-name.component.d.ts +7 -0
- package/dist-cms/packages/ufm/components/member-name/member-name.component.js +11 -0
- package/dist-cms/packages/ufm/components/member-name/member-name.element.d.ts +12 -0
- package/dist-cms/packages/ufm/components/member-name/member-name.element.js +82 -0
- package/dist-cms/packages/ufm/components/ufm-render/ufm-render.element.d.ts +13 -0
- package/dist-cms/packages/ufm/components/ufm-render/ufm-render.element.js +90 -1
- package/dist-cms/packages/ufm/contexts/ufm-filter-alias.function.d.ts +7 -0
- package/dist-cms/packages/ufm/contexts/ufm-filter-alias.function.js +27 -0
- package/dist-cms/packages/ufm/contexts/ufm.context.d.ts +10 -0
- package/dist-cms/packages/ufm/contexts/ufm.context.js +12 -1
- package/dist-cms/packages/ufm/controllers/ufm-virtual-render.controller.js +2 -28
- package/dist-cms/packages/ufm/filters/manifests.js +3 -3
- package/dist-cms/packages/ufm/index.d.ts +1 -0
- package/dist-cms/packages/ufm/index.js +1 -0
- package/dist-cms/packages/ufm/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/ufm/utils/get-text-from-descendants.function.d.ts +10 -0
- package/dist-cms/packages/ufm/utils/get-text-from-descendants.function.js +24 -0
- package/dist-cms/packages/ufm/utils/index.d.ts +2 -0
- package/dist-cms/packages/ufm/utils/index.js +2 -0
- package/dist-cms/packages/ufm/utils/render-hidden-ufm.function.d.ts +18 -0
- package/dist-cms/packages/ufm/utils/render-hidden-ufm.function.js +24 -0
- package/dist-cms/packages/user/change-password/entity-action/manifests.js +1 -1
- package/dist-cms/packages/user/current-user/conditions/group-id/group-id.condition.js +4 -0
- package/dist-cms/packages/user/current-user/profile/manifests.js +1 -1
- package/dist-cms/packages/user/user/components/user-input/user-input.element.d.ts +2 -2
- package/dist-cms/packages/user/user/components/user-input/user-input.element.js +2 -2
- package/dist-cms/packages/user/user/constants.d.ts +1 -0
- package/dist-cms/packages/user/user/constants.js +1 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/manifests.js +3 -1
- package/dist-cms/packages/user/user/property-editor/user-picker/value-summary/manifests.d.ts +1 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-summary/manifests.js +12 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-summary/value-summary.d.ts +2 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-summary/value-summary.element.d.ts +11 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-summary/value-summary.element.js +19 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-summary/value-summary.js +2 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-summary/value-summary.resolver.d.ts +7 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-summary/value-summary.resolver.js +26 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-type/constants.d.ts +6 -0
- package/dist-cms/packages/user/user/property-editor/user-picker/value-type/constants.js +1 -0
- package/dist-cms/packages/user/user/repository/detail/types.d.ts +1 -0
- package/dist-cms/packages/user/user/repository/detail/user-detail.repository.d.ts +9 -1
- package/dist-cms/packages/user/user/repository/detail/user-detail.repository.js +34 -1
- package/dist-cms/packages/user/user/repository/detail/user-detail.server.data-source.d.ts +13 -0
- package/dist-cms/packages/user/user/repository/detail/user-detail.server.data-source.js +21 -3
- package/dist-cms/packages/user/user/repository/disable/disable-user.repository.js +3 -1
- package/dist-cms/packages/user/user/repository/enable/enable-user.repository.d.ts +3 -2
- package/dist-cms/packages/user/user/repository/enable/enable-user.repository.js +18 -20
- package/dist-cms/packages/user/user-group/components/input-user-group/user-group-input.element.d.ts +2 -2
- package/dist-cms/packages/user/user-group/components/input-user-group/user-group-input.element.js +4 -4
- package/dist-cms/packages/webhook/components/input-webhook-headers.element.js +3 -1
- package/dist-cms/packages/webhook/umbraco-package.d.ts +1 -1
- package/dist-cms/packages/webhook/webhook/workspace/views/webhook-details-workspace-view.element.js +2 -2
- package/dist-cms/tsconfig.build.tsbuildinfo +1 -1
- package/examples/picker-data-source/example-custom-picker-tree-data-source.ts +18 -4
- package/package.json +5 -4
- package/umbraco-package-schema.json +17209 -3
- package/vscode-html-custom-data.json +616 -198
- package/dist-cms/packages/documents/document-blueprints/utils.d.ts +0 -4
- package/dist-cms/packages/documents/document-blueprints/utils.js +0 -7
- package/dist-cms/packages/documents/documents/publishing/publish/entity-action/publish.action.d.ts +0 -8
- package/dist-cms/packages/documents/documents/publishing/publish/entity-action/publish.action.js +0 -127
- package/dist-cms/packages/documents/documents/publishing/unpublish/entity-action/unpublish.action.d.ts +0 -7
- package/dist-cms/packages/documents/documents/publishing/unpublish/entity-action/unpublish.action.js +0 -105
- package/dist-cms/packages/elements/publishing/pending-changes/types.d.ts +0 -9
- package/dist-cms/packages/elements/publishing/publish/entity-action/publish.action.d.ts +0 -8
- package/dist-cms/packages/elements/publishing/publish/entity-action/publish.action.js +0 -104
- package/dist-cms/packages/elements/publishing/unpublish/entity-action/unpublish.action.d.ts +0 -7
- package/dist-cms/packages/elements/publishing/unpublish/entity-action/unpublish.action.js +0 -84
- package/dist-cms/packages/elements/utils.d.ts +0 -10
- package/dist-cms/packages/elements/utils.js +0 -54
- package/dist-cms/packages/members/member/utils.d.ts +0 -4
- package/dist-cms/packages/members/member/utils.js +0 -7
- package/dist-cms/packages/members/member-group/collection/views/table/member-group-table-collection-view.element.d.ts +0 -16
- package/dist-cms/packages/members/member-group/collection/views/table/member-group-table-collection-view.element.js +0 -93
- package/dist-cms/packages/property-editors/date-time/date-time-with-time-zone-picker/value-summary/value-summary.element.d.ts +0 -12
- package/dist-cms/packages/property-editors/date-time/date-time-with-time-zone-picker/value-summary/value-summary.element.js +0 -23
- package/dist-cms/packages/relations/relation-types/collection/views/table/relation-type-table-collection-view.element.d.ts +0 -16
- package/dist-cms/packages/relations/relation-types/collection/views/table/relation-type-table-collection-view.element.js +0 -83
- package/dist-cms/packages/user/user/collection/views/table/column-layouts/name/user-table-name-column-layout.element.d.ts +0 -20
- package/dist-cms/packages/user/user/collection/views/table/column-layouts/name/user-table-name-column-layout.element.js +0 -35
- package/dist-cms/packages/user/user/collection/views/table/column-layouts/status/user-table-status-column-layout.element.d.ts +0 -11
- package/dist-cms/packages/user/user/collection/views/table/column-layouts/status/user-table-status-column-layout.element.js +0 -28
- package/dist-cms/packages/user/user/collection/views/table/user-table-collection-view.element.d.ts +0 -20
- package/dist-cms/packages/user/user/collection/views/table/user-table-collection-view.element.js +0 -189
- /package/dist-cms/packages/{elements/publishing/pending-changes/types.js → content/content/configuration/index.js} +0 -0
|
@@ -1,6 +1,64 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
3
|
"tags": [
|
|
4
|
+
{
|
|
5
|
+
"name": "icon-card",
|
|
6
|
+
"description": "Events:\n\n * `icon-add` - \n\n * `icon-select` - \n\nAttributes:\n\n * `icon` {`ManagedIcon`} - \n\n * `mode` {`\"picked\" | \"unpicked\"`} - \n\nProperties:\n\n * `icon` {`ManagedIcon`} - \n\n * `mode` {`\"picked\" | \"unpicked\"`} - \n\n * `styles` - ",
|
|
7
|
+
"attributes": [
|
|
8
|
+
{
|
|
9
|
+
"name": "icon",
|
|
10
|
+
"description": "`icon` {`ManagedIcon`} - \n\nProperty: icon"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "mode",
|
|
14
|
+
"description": "`mode` {`\"picked\" | \"unpicked\"`} - \n\nProperty: mode\n\nDefault: picked",
|
|
15
|
+
"values": [
|
|
16
|
+
{
|
|
17
|
+
"name": "picked"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "unpicked"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "onicon-add",
|
|
26
|
+
"description": "`icon-add` - "
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "onicon-select",
|
|
30
|
+
"description": "`icon-select` - "
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "icon-editor",
|
|
36
|
+
"description": "Events:\n\n * `icon-updated` - \n\n * `editor-close` - \n\nAttributes:\n\n * `icon` {`ManagedIcon | null`} - \n\n * `allGroups` - \n\nProperties:\n\n * `icon` {`ManagedIcon | null`} - \n\n * `allGroups` - \n\n * `_newKeyword` {`string`} - \n\n * `_newGroup` {`string`} - \n\n * `styles` - ",
|
|
37
|
+
"attributes": [
|
|
38
|
+
{
|
|
39
|
+
"name": "icon",
|
|
40
|
+
"description": "`icon` {`ManagedIcon | null`} - \n\nProperty: icon\n\nDefault: null",
|
|
41
|
+
"values": []
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "allGroups",
|
|
45
|
+
"description": "`allGroups` - \n\nProperty: allGroups\n\nDefault: "
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "onicon-updated",
|
|
49
|
+
"description": "`icon-updated` - "
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "oneditor-close",
|
|
53
|
+
"description": "`editor-close` - "
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "icon-manager-app",
|
|
59
|
+
"description": "Properties:\n\n * `_pickedIcons` - \n\n * `_unpickedIcons` - \n\n * `_activeTab` {`\"picked\" | \"unpicked\"`} - \n\n * `_searchQuery` {`string`} - \n\n * `_editingIcon` {`ManagedIcon | null`} - \n\n * `_editingIndex` {`number`} - \n\n * `_allGroups` - \n\n * `styles` - ",
|
|
60
|
+
"attributes": []
|
|
61
|
+
},
|
|
4
62
|
{
|
|
5
63
|
"name": "example-dashboard-with-collection",
|
|
6
64
|
"attributes": []
|
|
@@ -192,7 +250,7 @@
|
|
|
192
250
|
},
|
|
193
251
|
{
|
|
194
252
|
"name": "umb-backoffice-header-logo",
|
|
195
|
-
"description": "The backoffice header logo element.\n\nProperties:\n\n * `_version` - \n\n * `styles` - ",
|
|
253
|
+
"description": "The backoffice header logo element.\n\nProperties:\n\n * `_version` - \n\n * `_popover` - \n\n * `styles` - ",
|
|
196
254
|
"attributes": []
|
|
197
255
|
},
|
|
198
256
|
{
|
|
@@ -399,7 +457,7 @@
|
|
|
399
457
|
},
|
|
400
458
|
{
|
|
401
459
|
"name": "umb-block-grid-entry",
|
|
402
|
-
"description": "Attributes:\n\n * `index` - \n\n * `location-invalid` - \n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `index` - \n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_contentTypeAlias` - \n\n * `_contentTypeName` - \n\n * `_columnSpan` - \n\n * `_rowSpan` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_createBeforePath` - \n\n * `_createAfterPath` - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_unsupported` - \n\n * `_showActions` - \n\n * `_inlineEditingMode` - \n\n * `_isSortMode` - \n\n * `_canScale` - \n\n * `_showInlineCreateBefore` - \n\n * `_showInlineCreateAfter` - \n\n * `_inlineCreateAboveWidth` - \n\n * `_invalidLocation` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `_blockViewProps` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `styles` - ",
|
|
460
|
+
"description": "Attributes:\n\n * `index` - \n\n * `location-invalid` - \n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `index` - \n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_contentTypeAlias` - \n\n * `_contentTypeName` - \n\n * `_columnSpan` - \n\n * `_rowSpan` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_createBeforePath` - \n\n * `_createAfterPath` - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_unsupported` - \n\n * `_showActions` - \n\n * `_inlineEditingMode` - \n\n * `_isSortMode` - \n\n * `_name` - \n\n * `_canScale` - \n\n * `_showInlineCreateBefore` - \n\n * `_showInlineCreateAfter` - \n\n * `_inlineCreateAboveWidth` - \n\n * `_invalidLocation` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `_blockViewProps` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `styles` - ",
|
|
403
461
|
"attributes": [
|
|
404
462
|
{
|
|
405
463
|
"name": "index",
|
|
@@ -478,6 +536,10 @@
|
|
|
478
536
|
}
|
|
479
537
|
]
|
|
480
538
|
},
|
|
539
|
+
{
|
|
540
|
+
"name": "umb-block-grid-property-editor-value-summary",
|
|
541
|
+
"attributes": []
|
|
542
|
+
},
|
|
481
543
|
{
|
|
482
544
|
"name": "umb-property-editor-ui-block-grid-group-configuration",
|
|
483
545
|
"description": "Attributes:\n\n * `value` - \n\nProperties:\n\n * `_value` - \n\n * `value` - \n\n * `config` - \n\n * `styles` - ",
|
|
@@ -520,7 +582,7 @@
|
|
|
520
582
|
},
|
|
521
583
|
{
|
|
522
584
|
"name": "umb-block-list-entry",
|
|
523
|
-
"description": "Attributes:\n\n * `index` - \n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `index` - \n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_contentTypeAlias` - \n\n * `_contentTypeName` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_unsupported` - \n\n * `_showActions` - \n\n * `_inlineEditingMode` - \n\n * `_isSortMode` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `_blockViewProps` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `styles` - ",
|
|
585
|
+
"description": "Attributes:\n\n * `index` - \n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `index` - \n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_contentTypeAlias` - \n\n * `_contentTypeName` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_unsupported` - \n\n * `_showActions` - \n\n * `_inlineEditingMode` - \n\n * `_isSortMode` - \n\n * `_name` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `_blockViewProps` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `styles` - ",
|
|
524
586
|
"attributes": [
|
|
525
587
|
{
|
|
526
588
|
"name": "index",
|
|
@@ -541,7 +603,7 @@
|
|
|
541
603
|
},
|
|
542
604
|
{
|
|
543
605
|
"name": "umb-inline-list-block",
|
|
544
|
-
"description": "
|
|
606
|
+
"description": "Slots:\n\n * `name` {} - Content rendered as the block's primary label. The expected projection is a `<umb-ufm-render>` element owned by the parent block-list entry.\n\nAttributes:\n\n * `label` - \n\n * `icon` - \n\n * `unpublished` - \n\nProperties:\n\n * `label` - \n\n * `_label` - \n\n * `icon` - \n\n * `index` - \n\n * `unpublished` - \n\n * `content` - \n\n * `settings` - \n\n * `_exposed` - \n\n * `_isOpen` {`boolean`} - \n\n * `_ownerContentTypeName` - \n\n * `_variantName` - \n\n * `_hasNameSlotContent` {`boolean`} - \n\n * `styles` - ",
|
|
545
607
|
"attributes": [
|
|
546
608
|
{
|
|
547
609
|
"name": "label",
|
|
@@ -562,7 +624,7 @@
|
|
|
562
624
|
},
|
|
563
625
|
{
|
|
564
626
|
"name": "umb-ref-list-block",
|
|
565
|
-
"description": "
|
|
627
|
+
"description": "Slots:\n\n * `name` {} - Content rendered in the block's primary label area (the `name` slot of the inner `uui-ref-node`). The expected projection is a `<umb-ufm-render>` element owned by the parent block-list entry.\n\nAttributes:\n\n * `label` - \n\n * `icon` - \n\n * `unpublished` - \n\nProperties:\n\n * `label` - \n\n * `_label` - \n\n * `icon` - \n\n * `index` - \n\n * `unpublished` - \n\n * `content` - \n\n * `settings` - \n\n * `config` - \n\n * `_hasNameSlotContent` {`boolean`} - \n\n * `styles` - ",
|
|
566
628
|
"attributes": [
|
|
567
629
|
{
|
|
568
630
|
"name": "label",
|
|
@@ -602,6 +664,10 @@
|
|
|
602
664
|
}
|
|
603
665
|
]
|
|
604
666
|
},
|
|
667
|
+
{
|
|
668
|
+
"name": "umb-block-list-property-editor-value-summary",
|
|
669
|
+
"attributes": []
|
|
670
|
+
},
|
|
605
671
|
{
|
|
606
672
|
"name": "umb-property-editor-ui-block-list-type-configuration",
|
|
607
673
|
"description": "Properties:\n\n * `value` - \n\n * `config` - \n\n * `_workspacePath` - \n\n * `#blockTypeWorkspaceModalRegistration` - ",
|
|
@@ -614,13 +680,18 @@
|
|
|
614
680
|
},
|
|
615
681
|
{
|
|
616
682
|
"name": "umb-rte-block-inline",
|
|
617
|
-
"description": "Implementation for the inline component, inherited code from the umb-rte-block element.\n\nAttributes:\n\n * `data-content-key` - \n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_showActions` - \n\n * `_contentTypeAlias` - \n\n * `_contentTypeName` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `_blockViewProps` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `styles` - ",
|
|
683
|
+
"description": "Implementation for the inline component, inherited code from the umb-rte-block element.\n\nAttributes:\n\n * `data-content-key` - \n\n * `unsupported` - Reflects whether the block's content type is no longer registered. Set internally by context — do not set externally.\n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_showActions` - \n\n * `_contentTypeAlias` - \n\n * `unsupported` - Reflects whether the block's content type is no longer registered. Set internally by context — do not set externally.\n\n * `_contentTypeName` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `_name` - \n\n * `_blockViewProps` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `styles` - ",
|
|
618
684
|
"attributes": [
|
|
619
685
|
{
|
|
620
686
|
"name": "data-content-key",
|
|
621
687
|
"description": "`data-content-key` - \n\nProperty: contentKey",
|
|
622
688
|
"values": []
|
|
623
689
|
},
|
|
690
|
+
{
|
|
691
|
+
"name": "unsupported",
|
|
692
|
+
"description": "`unsupported` - Reflects whether the block's content type is no longer registered. Set internally by context — do not set externally.\n\nProperty: unsupported",
|
|
693
|
+
"values": []
|
|
694
|
+
},
|
|
624
695
|
{
|
|
625
696
|
"name": "content-invalid",
|
|
626
697
|
"description": "`content-invalid` - \n\nProperty: _contentInvalid",
|
|
@@ -635,13 +706,18 @@
|
|
|
635
706
|
},
|
|
636
707
|
{
|
|
637
708
|
"name": "umb-rte-block",
|
|
638
|
-
"description": "Attributes:\n\n * `data-content-key` - \n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_showActions` - \n\n * `_contentTypeAlias` - \n\n * `_contentTypeName` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `_blockViewProps` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `styles` - ",
|
|
709
|
+
"description": "Attributes:\n\n * `data-content-key` - \n\n * `unsupported` - Reflects whether the block's content type is no longer registered. Set internally by context — do not set externally.\n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_showActions` - \n\n * `_contentTypeAlias` - \n\n * `unsupported` - Reflects whether the block's content type is no longer registered. Set internally by context — do not set externally.\n\n * `_contentTypeName` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `_name` - \n\n * `_blockViewProps` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `styles` - ",
|
|
639
710
|
"attributes": [
|
|
640
711
|
{
|
|
641
712
|
"name": "data-content-key",
|
|
642
713
|
"description": "`data-content-key` - \n\nProperty: contentKey",
|
|
643
714
|
"values": []
|
|
644
715
|
},
|
|
716
|
+
{
|
|
717
|
+
"name": "unsupported",
|
|
718
|
+
"description": "`unsupported` - Reflects whether the block's content type is no longer registered. Set internally by context — do not set externally.\n\nProperty: unsupported",
|
|
719
|
+
"values": []
|
|
720
|
+
},
|
|
645
721
|
{
|
|
646
722
|
"name": "content-invalid",
|
|
647
723
|
"description": "`content-invalid` - \n\nProperty: _contentInvalid",
|
|
@@ -675,6 +751,11 @@
|
|
|
675
751
|
}
|
|
676
752
|
]
|
|
677
753
|
},
|
|
754
|
+
{
|
|
755
|
+
"name": "umb-unsupported-rte-block",
|
|
756
|
+
"description": "Properties:\n\n * `styles` - ",
|
|
757
|
+
"attributes": []
|
|
758
|
+
},
|
|
678
759
|
{
|
|
679
760
|
"name": "umb-property-editor-ui-block-rte-type-configuration",
|
|
680
761
|
"description": "Properties:\n\n * `value` - \n\n * `config` - \n\n * `_workspacePath` - \n\n * `#blockTypeWorkspaceModalRegistration` - ",
|
|
@@ -687,7 +768,7 @@
|
|
|
687
768
|
},
|
|
688
769
|
{
|
|
689
770
|
"name": "umb-block-single-entry",
|
|
690
|
-
"description": "Attributes:\n\n * `index` - \n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `index` - \n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_contentTypeAlias` - \n\n * `_contentTypeName` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_unsupported` - \n\n * `_showActions` - \n\n * `_inlineEditingMode` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `_blockViewProps` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `styles` - ",
|
|
771
|
+
"description": "Attributes:\n\n * `index` - \n\n * `content-invalid` - \n\n * `settings-invalid` - \n\nProperties:\n\n * `index` - \n\n * `contentKey` - \n\n * `_contentKey` - \n\n * `_contentTypeAlias` - \n\n * `_contentTypeName` - \n\n * `_showContentEdit` {`boolean`} - \n\n * `_label` {`string`} - \n\n * `_icon` - \n\n * `_exposed` - \n\n * `_unsupported` - \n\n * `_showActions` - \n\n * `_inlineEditingMode` - \n\n * `_name` - \n\n * `_contentInvalid` - \n\n * `_settingsInvalid` - \n\n * `_blockViewProps` - \n\n * `_isReadOnly` {`boolean`} - \n\n * `styles` - ",
|
|
691
772
|
"attributes": [
|
|
692
773
|
{
|
|
693
774
|
"name": "index",
|
|
@@ -769,6 +850,10 @@
|
|
|
769
850
|
}
|
|
770
851
|
]
|
|
771
852
|
},
|
|
853
|
+
{
|
|
854
|
+
"name": "umb-block-single-property-editor-value-summary",
|
|
855
|
+
"attributes": []
|
|
856
|
+
},
|
|
772
857
|
{
|
|
773
858
|
"name": "umb-property-editor-ui-block-single-type-configuration",
|
|
774
859
|
"description": "Properties:\n\n * `value` - \n\n * `config` - \n\n * `_workspacePath` - \n\n * `#blockTypeWorkspaceModalRegistration` - ",
|
|
@@ -937,7 +1022,7 @@
|
|
|
937
1022
|
},
|
|
938
1023
|
{
|
|
939
1024
|
"name": "umb-code-editor",
|
|
940
|
-
"description": "A custom element that renders a code editor. Code editor is based on the Monaco Editor library.\nThe element will listen to the theme context and update the theme accordingly.\nParts of the monaco Api is exposed through the `editor` property. You can access the monaco editor instance through `editor.monacoEditor`.\n\nEvents:\n\n * `input` {} - Fired when the value of the editor changes.\n\n * `change` {} - Fired when the entire model of editor is replaced.\n\n * `loaded` {} - Fired when the editor is loaded and ready to use.\n\nAttributes:\n\n * `disable-line-numbers` {`boolean`} - Whether to show line numbers.\n\n * `disable-minimap` {`boolean`} - Whether to show minimap.\n\n * `word-wrap` {`boolean`} - Whether to enable word wrap. Default is false.\n\n * `disable-folding` {`boolean`} - Whether to enable folding. Default is true.\n\n * `language` {CodeEditorLanguage} - Language of the editor. Default is javascript.\n\n * `theme` {CodeEditorTheme} - Theme of the editor. Default is light. Element will listen to the theme context and update the theme accordingly.\n\n * `code` {`string`} - Value of the editor. Default is empty string.\n\n * `readonly` {`boolean`} - Whether the editor is readonly.\n\n * `label` - Label of the editor. Default is 'Code Editor'.\n\nProperties:\n\n * `editor` - \n\n * `disableLineNumbers` {`boolean`} - Whether to show line numbers.\n\n * `disableMinimap` {`boolean`} - Whether to show minimap.\n\n * `wordWrap` {`boolean`} - Whether to enable word wrap. Default is false.\n\n * `disableFolding` {`boolean`} - Whether to enable folding. Default is true.\n\n * `_loading` {`boolean`} - \n\n * `_styles` - \n\n * `styles` - \n\n * `container` - \n\n * `language` {CodeEditorLanguage} - Language of the editor. Default is javascript.\n\n * `theme` {CodeEditorTheme} - Theme of the editor. Default is light. Element will listen to the theme context and update the theme accordingly.\n\n * `code` {`string`} - Value of the editor. Default is empty string.\n\n * `readonly` {`boolean`} - Whether the editor is readonly.\n\n * `label` - Label of the editor. Default is 'Code Editor'.",
|
|
1025
|
+
"description": "A custom element that renders a code editor. Code editor is based on the Monaco Editor library.\nThe element will listen to the theme context and update the theme accordingly.\nParts of the monaco Api is exposed through the `editor` property. You can access the monaco editor instance through `editor.monacoEditor`.\n\nEvents:\n\n * `input` {} - Fired when the value of the editor changes.\n\n * `change` {} - Fired when the entire model of editor is replaced.\n\n * `loaded` {} - Fired when the editor is loaded and ready to use.\n\nAttributes:\n\n * `disable-line-numbers` {`boolean`} - Whether to show line numbers.\n\n * `disable-minimap` {`boolean`} - Whether to show minimap.\n\n * `word-wrap` {`boolean`} - Whether to enable word wrap. Default is false.\n\n * `auto-height` {`boolean`} - Whether to enable auto-height mode where the editor grows to fit content.\n\n * `disable-folding` {`boolean`} - Whether to enable folding. Default is true.\n\n * `language` {CodeEditorLanguage} - Language of the editor. Default is javascript.\n\n * `theme` {CodeEditorTheme} - Theme of the editor. Default is light. Element will listen to the theme context and update the theme accordingly.\n\n * `code` {`string`} - Value of the editor. Default is empty string.\n\n * `readonly` {`boolean`} - Whether the editor is readonly.\n\n * `label` - Label of the editor. Default is 'Code Editor'.\n\nProperties:\n\n * `editor` - \n\n * `disableLineNumbers` {`boolean`} - Whether to show line numbers.\n\n * `disableMinimap` {`boolean`} - Whether to show minimap.\n\n * `wordWrap` {`boolean`} - Whether to enable word wrap. Default is false.\n\n * `autoHeight` {`boolean`} - Whether to enable auto-height mode where the editor grows to fit content.\n\n * `disableFolding` {`boolean`} - Whether to enable folding. Default is true.\n\n * `_loading` {`boolean`} - \n\n * `_styles` - \n\n * `styles` - \n\n * `container` - \n\n * `language` {CodeEditorLanguage} - Language of the editor. Default is javascript.\n\n * `theme` {CodeEditorTheme} - Theme of the editor. Default is light. Element will listen to the theme context and update the theme accordingly.\n\n * `code` {`string`} - Value of the editor. Default is empty string.\n\n * `readonly` {`boolean`} - Whether the editor is readonly.\n\n * `label` - Label of the editor. Default is 'Code Editor'.",
|
|
941
1026
|
"attributes": [
|
|
942
1027
|
{
|
|
943
1028
|
"name": "disable-line-numbers",
|
|
@@ -951,6 +1036,10 @@
|
|
|
951
1036
|
"name": "word-wrap",
|
|
952
1037
|
"description": "`word-wrap` {`boolean`} - Whether to enable word wrap. Default is false.\n\nProperty: wordWrap\n\nDefault: false"
|
|
953
1038
|
},
|
|
1039
|
+
{
|
|
1040
|
+
"name": "auto-height",
|
|
1041
|
+
"description": "`auto-height` {`boolean`} - Whether to enable auto-height mode where the editor grows to fit content.\n\nProperty: autoHeight\n\nDefault: false"
|
|
1042
|
+
},
|
|
954
1043
|
{
|
|
955
1044
|
"name": "disable-folding",
|
|
956
1045
|
"description": "`disable-folding` {`boolean`} - Whether to enable folding. Default is true.\n\nProperty: disableFolding\n\nDefault: false"
|
|
@@ -1026,6 +1115,10 @@
|
|
|
1026
1115
|
}
|
|
1027
1116
|
]
|
|
1028
1117
|
},
|
|
1118
|
+
{
|
|
1119
|
+
"name": "umb-code-editor-property-editor-value-summary",
|
|
1120
|
+
"attributes": []
|
|
1121
|
+
},
|
|
1029
1122
|
{
|
|
1030
1123
|
"name": "umb-content-type-workspace-editor-header",
|
|
1031
1124
|
"description": "Properties:\n\n * `_name` - \n\n * `_alias` - \n\n * `_description` - \n\n * `_icon` - \n\n * `_isNew` - \n\n * `styles` - ",
|
|
@@ -1182,6 +1275,16 @@
|
|
|
1182
1275
|
}
|
|
1183
1276
|
]
|
|
1184
1277
|
},
|
|
1278
|
+
{
|
|
1279
|
+
"name": "umb-content-publish-modal",
|
|
1280
|
+
"description": "Properties:\n\n * `_options` - \n\n * `_hasNotSelectedMandatory` - \n\n * `_isInvariant` {`boolean`} - \n\n * `styles` - ",
|
|
1281
|
+
"attributes": []
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"name": "umb-content-unpublish-modal",
|
|
1285
|
+
"description": "Properties:\n\n * `_selectionManager` - \n\n * `_options` - \n\n * `_selection` - \n\n * `_canUnpublish` - \n\n * `_hasInvalidSelection` {`boolean`} - \n\n * `_isInvariant` {`boolean`} - \n\n * `_referencesConfig` - \n\n * `_requiredFilter` - \n\n * `styles` - ",
|
|
1286
|
+
"attributes": []
|
|
1287
|
+
},
|
|
1185
1288
|
{
|
|
1186
1289
|
"name": "umb-content-rollback-modal",
|
|
1187
1290
|
"description": "Properties:\n\n * `_versions` - \n\n * `_selectedVersion` - \n\n * `_selectedCulture` {`string | null`} - \n\n * `_isInvariant` {`boolean`} - \n\n * `_availableVariants` - \n\n * `_diffs` - \n\n * `_showDiff` {`boolean`} - \n\n * `currentVersionHeader` {`string`} - \n\n * `styles` - ",
|
|
@@ -1191,6 +1294,11 @@
|
|
|
1191
1294
|
"name": "umb-sort-children-of-content-modal",
|
|
1192
1295
|
"attributes": []
|
|
1193
1296
|
},
|
|
1297
|
+
{
|
|
1298
|
+
"name": "umb-content-variant-language-picker",
|
|
1299
|
+
"description": "Properties:\n\n * `variantLanguageOptions` - \n\n * `selectionManager` - \n\n * `_selection` - \n\n * `_isAllSelected` {`boolean`} - \n\n * `pickableFilter` - A filter function that determines if an item is pickable or not.\n\n * `requiredFilter` - A filter function that determines if an item should be highlighted as a must select.\n\n * `renderAdditionalLabel` - A render callback letting callers inject supplementary label content (e.g. a reference count) for an option,\nwithout this shared component needing to know about content-type-specific fields.\n\n * `styles` - ",
|
|
1300
|
+
"attributes": []
|
|
1301
|
+
},
|
|
1194
1302
|
{
|
|
1195
1303
|
"name": "umb-content-workspace-view-edit-properties",
|
|
1196
1304
|
"description": "Attributes:\n\n * `container-id` - \n\nProperties:\n\n * `containerId` - \n\n * `_properties` - \n\n * `_visibleProperties` - \n\n * `styles` - ",
|
|
@@ -1609,6 +1717,16 @@
|
|
|
1609
1717
|
}
|
|
1610
1718
|
]
|
|
1611
1719
|
},
|
|
1720
|
+
{
|
|
1721
|
+
"name": "umb-entity-frame",
|
|
1722
|
+
"description": "An overlay that frames its parent with a rounded border and shows a label tab\njust above the parent's top-right corner. Visibility is controlled by the consumer via\n`--umb-entity-frame-opacity` (defaults to `1`); the typical pattern is for the parent\ncontainer to set it to `0` by default and toggle to `1` on `:hover` and/or `:focus-within`.\nThe parent must establish a positioning context (e.g. `position: relative`), and must not\nclip overflow above its top edge (the tab renders outside the parent's content box).\n\nSlots:\n\n * ` ` {} - Optional rich content for the tab. Falls back to the `label` property.\n\nAttributes:\n\n * `label` {string} - Text displayed in the tab when no slot content is projected.\n\nProperties:\n\n * `label` {string} - Text displayed in the tab when no slot content is projected.\n\n * `styles` - ",
|
|
1723
|
+
"attributes": [
|
|
1724
|
+
{
|
|
1725
|
+
"name": "label",
|
|
1726
|
+
"description": "`label` {string} - Text displayed in the tab when no slot content is projected.\n\nProperty: label\n\nDefault: ''"
|
|
1727
|
+
}
|
|
1728
|
+
]
|
|
1729
|
+
},
|
|
1612
1730
|
{
|
|
1613
1731
|
"name": "umb-figure-card",
|
|
1614
1732
|
"description": "Slots:\n\n * ` ` {} - slot for the default content area\n\n * `tag` {} - slot for the tag with support for `<uui-tag>` elements\n\n * `actions` {} - slot for the actions with support for the `<uui-action-bar>` element\n\nAttributes:\n\n * `name` {string} - Name\n\n * `description` {string} - Description\n\n * `background-color` - \n\nProperties:\n\n * `name` {string} - Name\n\n * `description` {string} - Description\n\n * `backgroundColor` - \n\n * `styles` - ",
|
|
@@ -1788,19 +1906,23 @@
|
|
|
1788
1906
|
},
|
|
1789
1907
|
{
|
|
1790
1908
|
"name": "umb-input-entity",
|
|
1791
|
-
"description": "Attributes:\n\n * `min` {
|
|
1909
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\nProperties:\n\n * `getIcon` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `pickerContext` - \n\n * `_items` - \n\n * `styles` - ",
|
|
1792
1910
|
"attributes": [
|
|
1793
1911
|
{
|
|
1794
1912
|
"name": "min",
|
|
1795
|
-
"description": "`min` {
|
|
1913
|
+
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
"name": "min-message",
|
|
1917
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
1796
1918
|
},
|
|
1797
1919
|
{
|
|
1798
1920
|
"name": "max",
|
|
1799
|
-
"description": "`max` {
|
|
1921
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
1800
1922
|
},
|
|
1801
1923
|
{
|
|
1802
|
-
"name": "
|
|
1803
|
-
"description": "`
|
|
1924
|
+
"name": "max-message",
|
|
1925
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
1804
1926
|
},
|
|
1805
1927
|
{
|
|
1806
1928
|
"name": "selection",
|
|
@@ -2091,8 +2213,13 @@
|
|
|
2091
2213
|
},
|
|
2092
2214
|
{
|
|
2093
2215
|
"name": "umb-input-with-alias",
|
|
2094
|
-
"description": "Attributes:\n\n * `label` {`string`} - \n\n * `placeholder` - \n\n * `alias` {`string`} - \n\n * `required` {`boolean`} - \n\n * `readonly` {`boolean`} - \n\n * `alias-readonly` {`boolean`} - \n\n * `auto-generate-alias` - \n\n * `alias-pattern` {`string`} - \n\nProperties:\n\n * `label` {`string`} - \n\n * `placeholder` - \n\n * `alias` {`string`} - \n\n * `required` {`boolean`} - \n\n * `readonly` {`boolean`} - \n\n * `aliasReadonly` {`boolean`} - \n\n * `autoGenerateAlias` - \n\n * `aliasPattern` {`string`} - \n\n * `_aliasLocked` {`boolean`} - \n\n * `styles` - ",
|
|
2216
|
+
"description": "Attributes:\n\n * `name` - \n\n * `label` {`string`} - \n\n * `placeholder` - \n\n * `alias` {`string`} - \n\n * `required` {`boolean`} - \n\n * `readonly` {`boolean`} - \n\n * `alias-readonly` {`boolean`} - \n\n * `auto-generate-alias` - \n\n * `alias-pattern` {`string`} - \n\n * `autocomplete` - \n\nProperties:\n\n * `name` - \n\n * `label` {`string`} - \n\n * `placeholder` - \n\n * `alias` {`string`} - \n\n * `required` {`boolean`} - \n\n * `readonly` {`boolean`} - \n\n * `aliasReadonly` {`boolean`} - \n\n * `autoGenerateAlias` - \n\n * `aliasPattern` {`string`} - \n\n * `autocomplete` - \n\n * `_aliasLocked` {`boolean`} - \n\n * `styles` - ",
|
|
2095
2217
|
"attributes": [
|
|
2218
|
+
{
|
|
2219
|
+
"name": "name",
|
|
2220
|
+
"description": "`name` - \n\nProperty: name",
|
|
2221
|
+
"values": []
|
|
2222
|
+
},
|
|
2096
2223
|
{
|
|
2097
2224
|
"name": "label",
|
|
2098
2225
|
"description": "`label` {`string`} - \n\nProperty: label\n\nDefault: "
|
|
@@ -2126,30 +2253,35 @@
|
|
|
2126
2253
|
{
|
|
2127
2254
|
"name": "alias-pattern",
|
|
2128
2255
|
"description": "`alias-pattern` {`string`} - \n\nProperty: aliasPattern\n\nDefault: ^[A-Za-z][A-Za-z0-9_-]{0,254}$"
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"name": "autocomplete",
|
|
2259
|
+
"description": "`autocomplete` - \n\nProperty: autocomplete",
|
|
2260
|
+
"values": []
|
|
2129
2261
|
}
|
|
2130
2262
|
]
|
|
2131
2263
|
},
|
|
2132
2264
|
{
|
|
2133
2265
|
"name": "umb-multiple-color-picker-input",
|
|
2134
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
2266
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `disabled` {boolean} - Disables the input\n\n * `readonly` {boolean} - Makes the input readonly\n\n * `showLabels` {`boolean`} - \n\n * `items` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `disabled` {boolean} - Disables the input\n\n * `readonly` {boolean} - Makes the input readonly\n\n * `showLabels` {`boolean`} - \n\n * `_items` - \n\n * `items` - \n\n * `styles` - ",
|
|
2135
2267
|
"attributes": [
|
|
2136
2268
|
{
|
|
2137
2269
|
"name": "min",
|
|
2138
2270
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: undefined",
|
|
2139
2271
|
"values": []
|
|
2140
2272
|
},
|
|
2273
|
+
{
|
|
2274
|
+
"name": "min-message",
|
|
2275
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
2276
|
+
},
|
|
2141
2277
|
{
|
|
2142
2278
|
"name": "max",
|
|
2143
2279
|
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: undefined",
|
|
2144
2280
|
"values": []
|
|
2145
2281
|
},
|
|
2146
2282
|
{
|
|
2147
|
-
"name": "
|
|
2148
|
-
"description": "`
|
|
2149
|
-
},
|
|
2150
|
-
{
|
|
2151
|
-
"name": "maxMessage",
|
|
2152
|
-
"description": "`maxMessage` {boolean} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
2283
|
+
"name": "max-message",
|
|
2284
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
2153
2285
|
},
|
|
2154
2286
|
{
|
|
2155
2287
|
"name": "disabled",
|
|
@@ -2220,25 +2352,25 @@
|
|
|
2220
2352
|
},
|
|
2221
2353
|
{
|
|
2222
2354
|
"name": "umb-input-multiple-text-string",
|
|
2223
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
2355
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `disabled` {boolean} - Disables the input\n\n * `readonly` {boolean} - Makes the input readonly\n\n * `items` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `disabled` {boolean} - Disables the input\n\n * `readonly` {boolean} - Makes the input readonly\n\n * `_items` - \n\n * `items` - \n\n * `styles` - ",
|
|
2224
2356
|
"attributes": [
|
|
2225
2357
|
{
|
|
2226
2358
|
"name": "min",
|
|
2227
2359
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: undefined",
|
|
2228
2360
|
"values": []
|
|
2229
2361
|
},
|
|
2362
|
+
{
|
|
2363
|
+
"name": "min-message",
|
|
2364
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
2365
|
+
},
|
|
2230
2366
|
{
|
|
2231
2367
|
"name": "max",
|
|
2232
2368
|
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: undefined",
|
|
2233
2369
|
"values": []
|
|
2234
2370
|
},
|
|
2235
2371
|
{
|
|
2236
|
-
"name": "
|
|
2237
|
-
"description": "`
|
|
2238
|
-
},
|
|
2239
|
-
{
|
|
2240
|
-
"name": "maxMessage",
|
|
2241
|
-
"description": "`maxMessage` {boolean} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
2372
|
+
"name": "max-message",
|
|
2373
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
2242
2374
|
},
|
|
2243
2375
|
{
|
|
2244
2376
|
"name": "disabled",
|
|
@@ -2333,7 +2465,7 @@
|
|
|
2333
2465
|
},
|
|
2334
2466
|
{
|
|
2335
2467
|
"name": "umb-table",
|
|
2336
|
-
"description": "Events:\n\n * `selected` - fires when a row is selected\n\n * `deselected` - fires when a row is deselected\n\n * `sort` - fires when a column order is changed\n\nAttributes:\n\n * `sortable` {`boolean`} - \n\nProperties:\n\n * `_items` {Array<UmbTableItem>} - Table Items\n\n * `items` - \n\n * `columns` {Array<UmbTableColumn>} - \n\n * `config` {UmbTableConfig} - \n\n * `selection` {Array<string>} - \n\n * `onRowRendered` - \n\n * `orderingColumn` {`string`} - \n\n * `orderingDesc` {`boolean`} - \n\n * `_sortable` {`boolean`} - \n\n * `sortable` {`boolean`} - \n\n * `_selectionMode` {`boolean`} - \n\n * `_renderRow` - \n\n * `styles` - ",
|
|
2468
|
+
"description": "Events:\n\n * `selected` - fires when a row is selected\n\n * `deselected` - fires when a row is deselected\n\n * `sort` - fires when a column order is changed\n\nAttributes:\n\n * `sortable` {`boolean`} - \n\nProperties:\n\n * `_items` {Array<UmbTableItem>} - Table Items\n\n * `items` - \n\n * `columns` {Array<UmbTableColumn>} - \n\n * `config` {UmbTableConfig} - \n\n * `selection` {Array<string>} - \n\n * `onRowRendered` - \n\n * `orderingColumn` {`string`} - \n\n * `orderingDesc` {`boolean`} - \n\n * `_sortable` {`boolean`} - \n\n * `sortable` {`boolean`} - \n\n * `_selectionMode` {`boolean`} - \n\n * `_columnConfigurationHash` {`string`} - \n\n * `_hasChildrenColumn` {`boolean`} - \n\n * `_renderRow` - \n\n * `styles` - ",
|
|
2337
2469
|
"attributes": [
|
|
2338
2470
|
{
|
|
2339
2471
|
"name": "sortable",
|
|
@@ -2832,7 +2964,7 @@
|
|
|
2832
2964
|
},
|
|
2833
2965
|
{
|
|
2834
2966
|
"name": "umb-section-sidebar-menu-with-entity-actions",
|
|
2835
|
-
"description": "Properties:\n\n * `
|
|
2967
|
+
"description": "Properties:\n\n * `manifest` - \n\n * `styles` - ",
|
|
2836
2968
|
"attributes": []
|
|
2837
2969
|
},
|
|
2838
2970
|
{
|
|
@@ -2947,7 +3079,7 @@
|
|
|
2947
3079
|
},
|
|
2948
3080
|
{
|
|
2949
3081
|
"name": "umb-input-property-editor-data-source",
|
|
2950
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {
|
|
3082
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `value` {`string`} - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `data-source-types` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` {`string`} - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `dataSourceTypes` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `styles` - ",
|
|
2951
3083
|
"attributes": [
|
|
2952
3084
|
{
|
|
2953
3085
|
"name": "min",
|
|
@@ -2955,7 +3087,7 @@
|
|
|
2955
3087
|
},
|
|
2956
3088
|
{
|
|
2957
3089
|
"name": "min-message",
|
|
2958
|
-
"description": "`min-message` {
|
|
3090
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
2959
3091
|
},
|
|
2960
3092
|
{
|
|
2961
3093
|
"name": "max",
|
|
@@ -2963,7 +3095,7 @@
|
|
|
2963
3095
|
},
|
|
2964
3096
|
{
|
|
2965
3097
|
"name": "max-message",
|
|
2966
|
-
"description": "`max-message` {
|
|
3098
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
2967
3099
|
},
|
|
2968
3100
|
{
|
|
2969
3101
|
"name": "selection",
|
|
@@ -3033,19 +3165,21 @@
|
|
|
3033
3165
|
},
|
|
3034
3166
|
{
|
|
3035
3167
|
"name": "umb-property-layout",
|
|
3036
|
-
"description": "Slots:\n\n * `editor` {} - Slot for rendering the Property Editor\n\n * `description` {} - Slot for rendering things below the label.\n\n * `action-menu` {} - Slot for rendering the Property Action Menu\n\nAttributes:\n\n * `alias` {string} - Alias. The technical name of the property.\n\n * `label` {string} - Label. Name of the property.\n\n * `orientation` {`\"horizontal\" | \"vertical\"`} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\n * `description` {string} - Description: render a description underneath the label.\n\n * `invalid` {boolean} - \n\n * `mandatory` {boolean} - \n\nProperties:\n\n * `alias` {string} - Alias. The technical name of the property.\n\n * `label` {string} - Label. Name of the property.\n\n * `orientation` {`\"horizontal\" | \"vertical\"`} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\n * `description` {string} - Description: render a description underneath the label.\n\n * `invalid` {boolean} - \n\n * `mandatory` {boolean} - \n\n * `styles` - ",
|
|
3168
|
+
"description": "Slots:\n\n * `editor` {} - Slot for rendering the Property Editor\n\n * `description` {} - Slot for rendering things below the label.\n\n * `action-menu` {} - Slot for rendering the Property Action Menu\n\nAttributes:\n\n * `alias` {string | undefined} - Alias. The technical name of the property.\n\n * `label` {string | undefined} - Label. Name of the property.\n\n * `orientation` {`\"horizontal\" | \"vertical\"`} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\n * `description` {string | undefined} - Description: render a description underneath the label.\n\n * `invalid` {boolean} - \n\n * `mandatory` {boolean} - \n\nProperties:\n\n * `alias` {string | undefined} - Alias. The technical name of the property.\n\n * `label` {string | undefined} - Label. Name of the property.\n\n * `orientation` {`\"horizontal\" | \"vertical\"`} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\n * `description` {string | undefined} - Description: render a description underneath the label.\n\n * `invalid` {boolean} - \n\n * `mandatory` {boolean} - \n\n * `styles` - ",
|
|
3037
3169
|
"attributes": [
|
|
3038
3170
|
{
|
|
3039
3171
|
"name": "alias",
|
|
3040
|
-
"description": "`alias` {string} - Alias. The technical name of the property.\n\nProperty: alias\n\nDefault:
|
|
3172
|
+
"description": "`alias` {string | undefined} - Alias. The technical name of the property.\n\nProperty: alias\n\nDefault: undefined",
|
|
3173
|
+
"values": []
|
|
3041
3174
|
},
|
|
3042
3175
|
{
|
|
3043
3176
|
"name": "label",
|
|
3044
|
-
"description": "`label` {string} - Label. Name of the property.\n\nProperty: label\n\nDefault:
|
|
3177
|
+
"description": "`label` {string | undefined} - Label. Name of the property.\n\nProperty: label\n\nDefault: undefined",
|
|
3178
|
+
"values": []
|
|
3045
3179
|
},
|
|
3046
3180
|
{
|
|
3047
3181
|
"name": "orientation",
|
|
3048
|
-
"description": "`orientation` {`\"horizontal\" | \"vertical\"`} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\nProperty: orientation\n\nDefault: ''",
|
|
3182
|
+
"description": "`orientation` {`\"horizontal\" | \"vertical\"`} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\nProperty: orientation\n\nDefault: 'horizontal'",
|
|
3049
3183
|
"values": [
|
|
3050
3184
|
{
|
|
3051
3185
|
"name": "horizontal"
|
|
@@ -3057,7 +3191,8 @@
|
|
|
3057
3191
|
},
|
|
3058
3192
|
{
|
|
3059
3193
|
"name": "description",
|
|
3060
|
-
"description": "`description` {string} - Description: render a description underneath the label.\n\nProperty: description\n\nDefault:
|
|
3194
|
+
"description": "`description` {string | undefined} - Description: render a description underneath the label.\n\nProperty: description\n\nDefault: undefined",
|
|
3195
|
+
"values": []
|
|
3061
3196
|
},
|
|
3062
3197
|
{
|
|
3063
3198
|
"name": "invalid",
|
|
@@ -3200,23 +3335,23 @@
|
|
|
3200
3335
|
},
|
|
3201
3336
|
{
|
|
3202
3337
|
"name": "umb-input-section",
|
|
3203
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
3338
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `value` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `_items` - \n\n * `styles` - ",
|
|
3204
3339
|
"attributes": [
|
|
3205
3340
|
{
|
|
3206
3341
|
"name": "min",
|
|
3207
3342
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
3208
3343
|
},
|
|
3209
3344
|
{
|
|
3210
|
-
"name": "
|
|
3211
|
-
"description": "`
|
|
3345
|
+
"name": "min-message",
|
|
3346
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
3212
3347
|
},
|
|
3213
3348
|
{
|
|
3214
|
-
"name": "
|
|
3215
|
-
"description": "`
|
|
3349
|
+
"name": "max",
|
|
3350
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
3216
3351
|
},
|
|
3217
3352
|
{
|
|
3218
|
-
"name": "
|
|
3219
|
-
"description": "`
|
|
3353
|
+
"name": "max-message",
|
|
3354
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
3220
3355
|
},
|
|
3221
3356
|
{
|
|
3222
3357
|
"name": "value",
|
|
@@ -3270,6 +3405,60 @@
|
|
|
3270
3405
|
"description": "Properties:\n\n * `_name` {`string`} - \n\n * `styles` - ",
|
|
3271
3406
|
"attributes": []
|
|
3272
3407
|
},
|
|
3408
|
+
{
|
|
3409
|
+
"name": "umb-sortable-list-item",
|
|
3410
|
+
"description": "Slots:\n\n * ` ` {} - The content of the item.\n\n * `actions` {} - Actions to render for the item, e.g. a remove button.\n\nAttributes:\n\n * `data-sort-entry-id` {string} - The item's unique identifier, used by the parent `umb-sortable-list` to track it while sorting.\n\n * `disabled` {boolean} - Disables the item, hiding the drag handle and actions.\n\n * `hide-handle` {boolean} - Hides the drag handle.\n\n * `hide-actions` {boolean} - Hides the actions slot.\n\nProperties:\n\n * `unique` {string} - The item's unique identifier, used by the parent `umb-sortable-list` to track it while sorting.\n\n * `disabled` {boolean} - Disables the item, hiding the drag handle and actions.\n\n * `hideHandle` {boolean} - Hides the drag handle.\n\n * `hideActions` {boolean} - Hides the actions slot.\n\n * `styles` - ",
|
|
3411
|
+
"attributes": [
|
|
3412
|
+
{
|
|
3413
|
+
"name": "data-sort-entry-id",
|
|
3414
|
+
"description": "`data-sort-entry-id` {string} - The item's unique identifier, used by the parent `umb-sortable-list` to track it while sorting.\n\nProperty: unique",
|
|
3415
|
+
"values": []
|
|
3416
|
+
},
|
|
3417
|
+
{
|
|
3418
|
+
"name": "disabled",
|
|
3419
|
+
"description": "`disabled` {boolean} - Disables the item, hiding the drag handle and actions.\n\nProperty: disabled\n\nDefault: false"
|
|
3420
|
+
},
|
|
3421
|
+
{
|
|
3422
|
+
"name": "hide-handle",
|
|
3423
|
+
"description": "`hide-handle` {boolean} - Hides the drag handle.\n\nProperty: hideHandle\n\nDefault: false"
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
"name": "hide-actions",
|
|
3427
|
+
"description": "`hide-actions` {boolean} - Hides the actions slot.\n\nProperty: hideActions\n\nDefault: false"
|
|
3428
|
+
}
|
|
3429
|
+
]
|
|
3430
|
+
},
|
|
3431
|
+
{
|
|
3432
|
+
"name": "umb-sortable-list",
|
|
3433
|
+
"description": "Events:\n\n * `UmbChangeEvent` {} - when the order of items has changed\n\nAttributes:\n\n * `identifier` {string} - An identifier shared between sortable lists, allowing items to be dragged from one list to another that shares the same identifier.\n\n * `item-selector` {string} - The selector used to find the items to sort within this element's shadow root.\n\n * `handle-selector` {string} - The selector used to find the drag handle within an item. If not found, the whole item is draggable.\n\n * `items` {Array<T>} - The items to render and sort.\n\n * `disabled` {boolean} - Disables sorting.\n\nProperties:\n\n * `identifier` {string} - An identifier shared between sortable lists, allowing items to be dragged from one list to another that shares the same identifier.\n\n * `itemSelector` {string} - The selector used to find the items to sort within this element's shadow root.\n\n * `handleSelector` {string} - The selector used to find the drag handle within an item. If not found, the whole item is draggable.\n\n * `items` {Array<T>} - The items to render and sort.\n\n * `getUnique` {(item: T) => string} - Resolves the unique identifier of an item, used to keep track of items while sorting.\n\n * `renderMethod` {(item: T, index: number) => TemplateResult} - Renders the markup for an item. The returned template must be rooted at an element carrying\nthe item's unique identifier via a `data-sort-entry-id` attribute, e.g. `umb-sortable-list-item`'s `unique` property.\n\n * `disabled` {boolean} - Disables sorting.\n\n * `styles` - ",
|
|
3434
|
+
"attributes": [
|
|
3435
|
+
{
|
|
3436
|
+
"name": "identifier",
|
|
3437
|
+
"description": "`identifier` {string} - An identifier shared between sortable lists, allowing items to be dragged from one list to another that shares the same identifier.\n\nProperty: identifier",
|
|
3438
|
+
"values": []
|
|
3439
|
+
},
|
|
3440
|
+
{
|
|
3441
|
+
"name": "item-selector",
|
|
3442
|
+
"description": "`item-selector` {string} - The selector used to find the items to sort within this element's shadow root.\n\nProperty: itemSelector"
|
|
3443
|
+
},
|
|
3444
|
+
{
|
|
3445
|
+
"name": "handle-selector",
|
|
3446
|
+
"description": "`handle-selector` {string} - The selector used to find the drag handle within an item. If not found, the whole item is draggable.\n\nProperty: handleSelector"
|
|
3447
|
+
},
|
|
3448
|
+
{
|
|
3449
|
+
"name": "items",
|
|
3450
|
+
"description": "`items` {Array<T>} - The items to render and sort.\n\nProperty: items"
|
|
3451
|
+
},
|
|
3452
|
+
{
|
|
3453
|
+
"name": "disabled",
|
|
3454
|
+
"description": "`disabled` {boolean} - Disables sorting.\n\nProperty: disabled"
|
|
3455
|
+
},
|
|
3456
|
+
{
|
|
3457
|
+
"name": "onUmbChangeEvent",
|
|
3458
|
+
"description": "`UmbChangeEvent` {} - when the order of items has changed"
|
|
3459
|
+
}
|
|
3460
|
+
]
|
|
3461
|
+
},
|
|
3273
3462
|
{
|
|
3274
3463
|
"name": "umb-temporary-file-badge",
|
|
3275
3464
|
"description": "Attributes:\n\n * `progress` {`number`} - \n\n * `complete` {`boolean`} - \n\n * `error` {`boolean`} - \n\nProperties:\n\n * `progress` {`number`} - \n\n * `complete` {`boolean`} - \n\n * `error` {`boolean`} - \n\n * `styles` - ",
|
|
@@ -3288,6 +3477,16 @@
|
|
|
3288
3477
|
}
|
|
3289
3478
|
]
|
|
3290
3479
|
},
|
|
3480
|
+
{
|
|
3481
|
+
"name": "umb-tree-create-action-button",
|
|
3482
|
+
"description": "Properties:\n\n * `_popoverOpen` {`boolean`} - \n\n * `_multipleOptions` {`boolean`} - \n\n * `_options` - \n\n * `api` - ",
|
|
3483
|
+
"attributes": []
|
|
3484
|
+
},
|
|
3485
|
+
{
|
|
3486
|
+
"name": "umb-tree-action-bundle",
|
|
3487
|
+
"description": "Properties:\n\n * `styles` - ",
|
|
3488
|
+
"attributes": []
|
|
3489
|
+
},
|
|
3291
3490
|
{
|
|
3292
3491
|
"name": "umb-tree-load-more-button",
|
|
3293
3492
|
"description": "Attributes:\n\n * `loading` {`boolean`} - \n\nProperties:\n\n * `loading` {`boolean`} - \n\n * `_dataMark` {`string`} - \n\n * `styles` - ",
|
|
@@ -3309,18 +3508,47 @@
|
|
|
3309
3508
|
]
|
|
3310
3509
|
},
|
|
3311
3510
|
{
|
|
3312
|
-
"name": "umb-
|
|
3313
|
-
"description": "Properties:\n\n * `
|
|
3511
|
+
"name": "umb-tree-pagination",
|
|
3512
|
+
"description": "Properties:\n\n * `_totalPages` {`number`} - \n\n * `_currentPage` {`number`} - \n\n * `styles` - ",
|
|
3513
|
+
"attributes": []
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"name": "umb-tree-toolbar",
|
|
3517
|
+
"description": "Attributes:\n\n * `show-tree-actions` {`boolean`} - When true the tree actions are shown.\nDefaults to false — tree actions are not shown unless explicitly opted in with show-tree-actions.\n\nProperties:\n\n * `showTreeActions` {`boolean`} - When true the tree actions are shown.\nDefaults to false — tree actions are not shown unless explicitly opted in with show-tree-actions.\n\n * `styles` - ",
|
|
3518
|
+
"attributes": [
|
|
3519
|
+
{
|
|
3520
|
+
"name": "show-tree-actions",
|
|
3521
|
+
"description": "`show-tree-actions` {`boolean`} - When true the tree actions are shown.\nDefaults to false — tree actions are not shown unless explicitly opted in with show-tree-actions.\n\nProperty: showTreeActions\n\nDefault: false"
|
|
3522
|
+
}
|
|
3523
|
+
]
|
|
3524
|
+
},
|
|
3525
|
+
{
|
|
3526
|
+
"name": "umb-tree-view-bundle",
|
|
3527
|
+
"description": "Properties:\n\n * `_views` - \n\n * `_currentView` - \n\n * `_popover` - \n\n * `styles` - ",
|
|
3314
3528
|
"attributes": []
|
|
3315
3529
|
},
|
|
3530
|
+
{
|
|
3531
|
+
"name": "umb-default-tree",
|
|
3532
|
+
"description": "Attributes:\n\n * `show-toolbar` {`boolean`} - \n\n * `show-tree-actions` {`boolean`} - \n\nProperties:\n\n * `_selectionConfiguration` - \n\n * `_api` - \n\n * `api` - \n\n * `selectionConfiguration` - \n\n * `hideTreeItemActions` {`boolean`} - \n\n * `hideTreeRoot` {`boolean`} - \n\n * `expandTreeRoot` {`boolean`} - \n\n * `startNode` - \n\n * `foldersOnly` - \n\n * `isMenu` - \n\n * `selectableFilter` - \n\n * `filter` - \n\n * `expansion` - \n\n * `showToolbar` {`boolean`} - \n\n * `showTreeActions` {`boolean`} - \n\n * `interactionMemories` - \n\n * `_viewElement` - \n\n * `_hasItems` {`boolean`} - \n\n * `_isLoading` {`boolean`} - \n\n * `_initialLoadDone` {`boolean`} - \n\n * `styles` - ",
|
|
3533
|
+
"attributes": [
|
|
3534
|
+
{
|
|
3535
|
+
"name": "show-toolbar",
|
|
3536
|
+
"description": "`show-toolbar` {`boolean`} - \n\nProperty: showToolbar\n\nDefault: false"
|
|
3537
|
+
},
|
|
3538
|
+
{
|
|
3539
|
+
"name": "show-tree-actions",
|
|
3540
|
+
"description": "`show-tree-actions` {`boolean`} - \n\nProperty: showTreeActions\n\nDefault: false"
|
|
3541
|
+
}
|
|
3542
|
+
]
|
|
3543
|
+
},
|
|
3316
3544
|
{
|
|
3317
3545
|
"name": "umb-duplicate-to-modal",
|
|
3318
|
-
"description": "Properties:\n\n * `_destinationUnique` - \n\n * `styles` - ",
|
|
3546
|
+
"description": "Properties:\n\n * `_destinationUnique` - \n\n * `_treeExpansion` - \n\n * `styles` - ",
|
|
3319
3547
|
"attributes": []
|
|
3320
3548
|
},
|
|
3321
3549
|
{
|
|
3322
3550
|
"name": "umb-sort-children-of-modal",
|
|
3323
|
-
"description": "Properties:\n\n * `_children` - \n\n * `_currentPage` {`number`} - \n\n * `_totalPages` {`number`} - \n\n * `_tableColumns` - \n\n * `_tableConfig` - \n\n * `_tableItems` - \n\n * `_sortable` {`boolean`} - \n\n * `_submitButtonState` - \n\n * `_sortedUniques` - \n\n * `styles` - ",
|
|
3551
|
+
"description": "Properties:\n\n * `_children` - \n\n * `_currentPage` {`number`} - \n\n * `_totalPages` {`number`} - \n\n * `_tableColumns` - \n\n * `_tableConfig` - \n\n * `_tableItems` - \n\n * `_sortable` {`boolean`} - \n\n * `_loading` {`boolean`} - \n\n * `_submitButtonState` - \n\n * `_sortedUniques` - \n\n * `styles` - ",
|
|
3324
3552
|
"attributes": []
|
|
3325
3553
|
},
|
|
3326
3554
|
{
|
|
@@ -3338,9 +3566,19 @@
|
|
|
3338
3566
|
"description": "Properties:\n\n * `styles` - ",
|
|
3339
3567
|
"attributes": []
|
|
3340
3568
|
},
|
|
3569
|
+
{
|
|
3570
|
+
"name": "umb-default-tree-item-card",
|
|
3571
|
+
"description": "Properties:\n\n * `api` - \n\n * `item` - \n\n * `_isSelectable` {`boolean`} - \n\n * `_isSelectableContext` {`boolean`} - \n\n * `_selectOnly` {`boolean`} - \n\n * `_isSelected` {`boolean`} - \n\n * `_isActive` {`boolean`} - \n\n * `_hasChildren` {`boolean`} - \n\n * `_noAccess` {`boolean`} - \n\n * `_path` {`string`} - \n\n * `_hasActions` {`boolean`} - ",
|
|
3572
|
+
"attributes": []
|
|
3573
|
+
},
|
|
3574
|
+
{
|
|
3575
|
+
"name": "umb-tree-item-card-extension",
|
|
3576
|
+
"description": "Properties:\n\n * `_component` - \n\n * `item` - \n\n * `styles` - ",
|
|
3577
|
+
"attributes": []
|
|
3578
|
+
},
|
|
3341
3579
|
{
|
|
3342
3580
|
"name": "umb-default-tree-item",
|
|
3343
|
-
"description": "Attributes:\n\n * `no-access` {`boolean`} - \n\nProperties:\n\n * `item` - \n\n * `_item` - \n\n * `_noAccess` {`boolean`} - \n\n * `_flags` - \n\n * `_label` - \n\n * `_isLoadingPrevChildren` {`boolean`} - \n\n * `_isLoadingNextChildren` {`boolean`} - \n\n * `api` - \n\n * `hideActions` {`boolean`} - \n\n * `_isActive` {`boolean`} - \n\n * `_childItems` - \n\n * `_href` - \n\n * `_isLoading` {`boolean`} - \n\n * `_isSelectableContext` {`boolean`} - \n\n * `_isSelectable` {`boolean`} - \n\n * `
|
|
3581
|
+
"description": "Attributes:\n\n * `no-access` {`boolean`} - \n\nProperties:\n\n * `item` - \n\n * `_item` - \n\n * `_noAccess` {`boolean`} - \n\n * `_flags` - \n\n * `_label` - \n\n * `_isLoadingPrevChildren` {`boolean`} - \n\n * `_isLoadingNextChildren` {`boolean`} - \n\n * `api` - \n\n * `hideActions` {`boolean`} - \n\n * `_isActive` {`boolean`} - \n\n * `_childItems` - \n\n * `_href` - \n\n * `_isLoading` {`boolean`} - \n\n * `_isSelectableContext` {`boolean`} - \n\n * `_isSelectable` {`boolean`} - \n\n * `_selectOnly` {`boolean`} - \n\n * `_isSelected` {`boolean`} - \n\n * `_hasChildren` {`boolean`} - \n\n * `_forceShowExpand` {`boolean`} - \n\n * `_isOpen` {`boolean`} - \n\n * `_iconSlotHasChildren` {`boolean`} - \n\n * `_totalPages` {`number`} - \n\n * `_hasPreviousItems` {`boolean`} - \n\n * `_hasNextItems` {`boolean`} - \n\n * `_isMenu` {`boolean`} - \n\n * `isMenu` {`boolean`} - \n\n * `_renderExpandSymbol` - \n\n * `styles` - ",
|
|
3344
3582
|
"attributes": [
|
|
3345
3583
|
{
|
|
3346
3584
|
"name": "no-access",
|
|
@@ -3372,11 +3610,37 @@
|
|
|
3372
3610
|
},
|
|
3373
3611
|
{
|
|
3374
3612
|
"name": "umb-tree-picker-modal",
|
|
3375
|
-
"description": "Properties:\n\n * `_selectionConfiguration` - \n\n * `_hasSelection` {`boolean`} - \n\n * `_createPath` - \n\n * `_createLabel` - \n\n * `_searchQuery` - \n\n * `_treeExpansion` - \n\n * `_pickerContext` - ",
|
|
3613
|
+
"description": "Properties:\n\n * `_selectionConfiguration` - \n\n * `_hasSelection` {`boolean`} - \n\n * `_createPath` - \n\n * `_createLabel` - \n\n * `_searchQuery` - \n\n * `_treeExpansion` - \n\n * `_treeInteractionMemories` - \n\n * `_currentLocation` - \n\n * `_breadcrumb` - \n\n * `_initialStartNode` - \n\n * `_repository` - \n\n * `_breadcrumbLoaded` {`boolean`} - \n\n * `_breadcrumbLoadPromise` - \n\n * `_pickerContext` - \n\n * `styles` - ",
|
|
3376
3614
|
"attributes": []
|
|
3377
3615
|
},
|
|
3378
3616
|
{
|
|
3379
3617
|
"name": "umb-tree",
|
|
3618
|
+
"description": "Properties:\n\n * `interactionMemories` - ",
|
|
3619
|
+
"attributes": []
|
|
3620
|
+
},
|
|
3621
|
+
{
|
|
3622
|
+
"name": "umb-card-tree-view",
|
|
3623
|
+
"description": "Properties:\n\n * `_items` - \n\n * `styles` - \n\n * `_treeContext` - \n\n * `_treeRoot` - \n\n * `_selectable` {`boolean`} - \n\n * `_selectOnly` {`boolean`} - \n\n * `_selection` - ",
|
|
3624
|
+
"attributes": []
|
|
3625
|
+
},
|
|
3626
|
+
{
|
|
3627
|
+
"name": "umb-classic-tree-view",
|
|
3628
|
+
"description": "Properties:\n\n * `_rootItems` - \n\n * `_hasPreviousItems` {`boolean`} - \n\n * `_hasNextItems` {`boolean`} - \n\n * `_isLoadingPrevChildren` {`boolean`} - \n\n * `_isLoadingNextChildren` {`boolean`} - \n\n * `_hideTreeRoot` {`boolean`} - \n\n * `_hideTreeItemActions` {`boolean`} - \n\n * `_isMenu` {`boolean`} - \n\n * `_startNode` - \n\n * `styles` - \n\n * `_treeContext` - \n\n * `_treeRoot` - \n\n * `_selectable` {`boolean`} - \n\n * `_selectOnly` {`boolean`} - \n\n * `_selection` - ",
|
|
3629
|
+
"attributes": []
|
|
3630
|
+
},
|
|
3631
|
+
{
|
|
3632
|
+
"name": "umb-table-tree-view",
|
|
3633
|
+
"description": "Properties:\n\n * `_items` - \n\n * `_hideTreeItemActions` {`boolean`} - \n\n * `_tableRows` - \n\n * `manifest` - \n\n * `styles` - \n\n * `_treeContext` - \n\n * `_treeRoot` - \n\n * `_selectable` {`boolean`} - \n\n * `_selectOnly` {`boolean`} - \n\n * `_selection` - ",
|
|
3634
|
+
"attributes": []
|
|
3635
|
+
},
|
|
3636
|
+
{
|
|
3637
|
+
"name": "umb-tree-name-table-column-layout",
|
|
3638
|
+
"description": "Properties:\n\n * `column` - \n\n * `item` - \n\n * `value` {`UmbTreeNameTableColumnValue`} - \n\n * `styles` - ",
|
|
3639
|
+
"attributes": []
|
|
3640
|
+
},
|
|
3641
|
+
{
|
|
3642
|
+
"name": "umb-tree-workspace-view",
|
|
3643
|
+
"description": "Properties:\n\n * `manifest` - \n\n * `_parent` - \n\n * `_interactionMemories` - \n\n * `styles` - ",
|
|
3380
3644
|
"attributes": []
|
|
3381
3645
|
},
|
|
3382
3646
|
{
|
|
@@ -3417,7 +3681,7 @@
|
|
|
3417
3681
|
},
|
|
3418
3682
|
{
|
|
3419
3683
|
"name": "umb-workspace-action-menu",
|
|
3420
|
-
"description": "Attributes:\n\n * `look` - \n\n * `color` - \n\nProperties:\n\n * `look` - \n\n * `color` - \n\n * `items` - \n\n * `_popoverOpen` {`boolean`} - \n\n * `styles` - ",
|
|
3684
|
+
"description": "Attributes:\n\n * `look` - \n\n * `color` - \n\nProperties:\n\n * `look` - \n\n * `color` - \n\n * `items` - \n\n * `_popoverOpen` {`boolean`} - \n\n * `_popover` - \n\n * `styles` - ",
|
|
3421
3685
|
"attributes": [
|
|
3422
3686
|
{
|
|
3423
3687
|
"name": "look",
|
|
@@ -3446,7 +3710,7 @@
|
|
|
3446
3710
|
},
|
|
3447
3711
|
{
|
|
3448
3712
|
"name": "umb-workspace-editor",
|
|
3449
|
-
"description": "Slots:\n\n * `header` {} - Slot for workspace header\n\n * `action-menu` {} - Slot for workspace header\n\n * `footer-info` {} - Slot for workspace footer\n\n * `actions` {} - Slot for workspace footer actions\n\n * ` ` {} - slot for main content\n\nAttributes:\n\n * `headline` {`string`} - \n\n * `hideNavigation` {`boolean`} - \n\n * `enforceNoFooter` {`boolean`} - \n\n * `back-path` - \n\n * `loading` {`boolean`} - \n\nProperties:\n\n * `headline` {`string`} - \n\n * `hideNavigation` {`boolean`} - \n\n * `enforceNoFooter` {`boolean`} - \n\n * `backPath` - \n\n * `loading` {`boolean`} - \n\n * `variantId` - \n\n * `_variantId` - \n\n * `overrides` - \n\n * `_workspaceViews` - \n\n * `_hintMap` - \n\n * `_routes` - \n\n * `_routerPath` - \n\n * `_activePath` - \n\n * `styles` - ",
|
|
3713
|
+
"description": "Slots:\n\n * `header` {} - Slot for workspace header\n\n * `action-menu` {} - Slot for workspace header\n\n * `footer-info` {} - Slot for workspace footer\n\n * `actions` {} - Slot for workspace footer actions\n\n * ` ` {} - slot for main content\n\nAttributes:\n\n * `headline` {`string`} - \n\n * `hideNavigation` {`boolean`} - \n\n * `enforceNoFooter` {`boolean`} - \n\n * `back-path` - \n\n * `loading` {`boolean`} - \n\n * `notFound` - \n\nProperties:\n\n * `headline` {`string`} - \n\n * `hideNavigation` {`boolean`} - \n\n * `enforceNoFooter` {`boolean`} - \n\n * `backPath` - \n\n * `loading` {`boolean`} - \n\n * `notFound` - \n\n * `variantId` - \n\n * `_variantId` - \n\n * `overrides` - \n\n * `_workspaceViews` - \n\n * `_hintMap` - \n\n * `_routes` - \n\n * `_routerPath` - \n\n * `_activePath` - \n\n * `styles` - ",
|
|
3450
3714
|
"attributes": [
|
|
3451
3715
|
{
|
|
3452
3716
|
"name": "headline",
|
|
@@ -3468,6 +3732,11 @@
|
|
|
3468
3732
|
{
|
|
3469
3733
|
"name": "loading",
|
|
3470
3734
|
"description": "`loading` {`boolean`} - \n\nProperty: loading\n\nDefault: false"
|
|
3735
|
+
},
|
|
3736
|
+
{
|
|
3737
|
+
"name": "notFound",
|
|
3738
|
+
"description": "`notFound` - \n\nProperty: notFound",
|
|
3739
|
+
"values": []
|
|
3471
3740
|
}
|
|
3472
3741
|
]
|
|
3473
3742
|
},
|
|
@@ -3508,7 +3777,7 @@
|
|
|
3508
3777
|
},
|
|
3509
3778
|
{
|
|
3510
3779
|
"name": "umb-workspace-split-view",
|
|
3511
|
-
"description": "\nExample. Document Workspace would use a Variant-component(variant component would talk directly to the workspace-context)\nAs well breadcrumbs etc.\n\nAttributes:\n\n * `loading` {`boolean`} - \n\n * `displayNavigation` {`boolean`} - \n\n * `back-path` - \n\n * `splitViewIndex` {`number`} - \n\nProperties:\n\n * `loading` {`boolean`} - \n\n * `displayNavigation` {`boolean`} - \n\n * `backPath` - \n\n * `overrides` - \n\n * `splitViewIndex` {`number`} - \n\n * `_variantSelectorSlotHasContent` {`boolean`} - \n\n * `
|
|
3780
|
+
"description": "\nExample. Document Workspace would use a Variant-component(variant component would talk directly to the workspace-context)\nAs well breadcrumbs etc.\n\nAttributes:\n\n * `loading` {`boolean`} - \n\n * `displayNavigation` {`boolean`} - \n\n * `back-path` - \n\n * `splitViewIndex` {`number`} - \n\nProperties:\n\n * `loading` {`boolean`} - \n\n * `displayNavigation` {`boolean`} - \n\n * `backPath` - \n\n * `overrides` - \n\n * `splitViewIndex` {`number`} - \n\n * `_variantSelectorSlotHasContent` {`boolean`} - \n\n * `_notFound` - \n\n * `_isNew` - \n\n * `_variantId` - \n\n * `splitViewContext` - \n\n * `styles` - ",
|
|
3512
3781
|
"attributes": [
|
|
3513
3782
|
{
|
|
3514
3783
|
"name": "loading",
|
|
@@ -3622,23 +3891,23 @@
|
|
|
3622
3891
|
},
|
|
3623
3892
|
{
|
|
3624
3893
|
"name": "umb-data-type-input",
|
|
3625
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
3894
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `value` {`string`} - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` {`string`} - \n\n * `_items` - \n\n * `styles` - ",
|
|
3626
3895
|
"attributes": [
|
|
3627
3896
|
{
|
|
3628
3897
|
"name": "min",
|
|
3629
3898
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
3630
3899
|
},
|
|
3631
3900
|
{
|
|
3632
|
-
"name": "
|
|
3633
|
-
"description": "`
|
|
3901
|
+
"name": "min-message",
|
|
3902
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
3634
3903
|
},
|
|
3635
3904
|
{
|
|
3636
|
-
"name": "
|
|
3637
|
-
"description": "`
|
|
3905
|
+
"name": "max",
|
|
3906
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
3638
3907
|
},
|
|
3639
3908
|
{
|
|
3640
|
-
"name": "
|
|
3641
|
-
"description": "`
|
|
3909
|
+
"name": "max-message",
|
|
3910
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
3642
3911
|
},
|
|
3643
3912
|
{
|
|
3644
3913
|
"name": "selection",
|
|
@@ -3780,7 +4049,7 @@
|
|
|
3780
4049
|
},
|
|
3781
4050
|
{
|
|
3782
4051
|
"name": "umb-document-blueprint-workspace-editor",
|
|
3783
|
-
"description": "Properties:\n\n * `_splitViewElement` - \n\n * `_routes` - \n\n * `_gotWorkspaceRoute` - \n\n * `styles` - ",
|
|
4052
|
+
"description": "Properties:\n\n * `_splitViewElement` - \n\n * `_routes` - \n\n * `_loading` - \n\n * `_gotWorkspaceRoute` - \n\n * `styles` - ",
|
|
3784
4053
|
"attributes": []
|
|
3785
4054
|
},
|
|
3786
4055
|
{
|
|
@@ -3809,19 +4078,23 @@
|
|
|
3809
4078
|
},
|
|
3810
4079
|
{
|
|
3811
4080
|
"name": "umb-input-document-type",
|
|
3812
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
4081
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `readonly` - \n\nProperties:\n\n * `elementTypesOnly` {boolean} - Limits to only select Element Types\n\n * `documentTypesOnly` {boolean} - Limits to only select Document Types\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `readonly` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `_editPath` {`string`} - \n\n * `styles` - ",
|
|
3813
4082
|
"attributes": [
|
|
3814
4083
|
{
|
|
3815
4084
|
"name": "min",
|
|
3816
4085
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
3817
4086
|
},
|
|
4087
|
+
{
|
|
4088
|
+
"name": "min-message",
|
|
4089
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
4090
|
+
},
|
|
3818
4091
|
{
|
|
3819
4092
|
"name": "max",
|
|
3820
4093
|
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
3821
4094
|
},
|
|
3822
4095
|
{
|
|
3823
|
-
"name": "
|
|
3824
|
-
"description": "`
|
|
4096
|
+
"name": "max-message",
|
|
4097
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
3825
4098
|
},
|
|
3826
4099
|
{
|
|
3827
4100
|
"name": "selection",
|
|
@@ -3850,7 +4123,7 @@
|
|
|
3850
4123
|
},
|
|
3851
4124
|
{
|
|
3852
4125
|
"name": "umb-property-editor-ui-document-type-picker",
|
|
3853
|
-
"description": "Attributes:\n\n * `value` - \n\n * `readonly` {`boolean`} - \n\nProperties:\n\n * `value` - \n\n * `config` - \n\n * `readonly` {`boolean`} - \n\n * `_min` {`number`} - \n\n * `_max` {`number`} - \n\n * `_elementTypesOnly` - ",
|
|
4126
|
+
"description": "Attributes:\n\n * `value` - \n\n * `readonly` {`boolean`} - \n\nProperties:\n\n * `value` - \n\n * `config` - \n\n * `readonly` {`boolean`} - \n\n * `_min` {`number`} - \n\n * `_max` {`number`} - \n\n * `_elementTypesOnly` - \n\n * `_documentTypesOnly` - ",
|
|
3854
4127
|
"attributes": [
|
|
3855
4128
|
{
|
|
3856
4129
|
"name": "value",
|
|
@@ -3994,7 +4267,7 @@
|
|
|
3994
4267
|
},
|
|
3995
4268
|
{
|
|
3996
4269
|
"name": "umb-input-document",
|
|
3997
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {
|
|
4270
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `allowedContentTypeIds` - \n\n * `include-trashed` {`boolean`} - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {`boolean`} - \n\n * `requiredMessage` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `startNode` - \n\n * `allowedContentTypeIds` - \n\n * `includeTrashed` {`boolean`} - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {`boolean`} - \n\n * `requiredMessage` - \n\n * `interactionMemories` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `styles` - ",
|
|
3998
4271
|
"attributes": [
|
|
3999
4272
|
{
|
|
4000
4273
|
"name": "min",
|
|
@@ -4002,7 +4275,7 @@
|
|
|
4002
4275
|
},
|
|
4003
4276
|
{
|
|
4004
4277
|
"name": "min-message",
|
|
4005
|
-
"description": "`min-message` {
|
|
4278
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
4006
4279
|
},
|
|
4007
4280
|
{
|
|
4008
4281
|
"name": "max",
|
|
@@ -4010,7 +4283,7 @@
|
|
|
4010
4283
|
},
|
|
4011
4284
|
{
|
|
4012
4285
|
"name": "max-message",
|
|
4013
|
-
"description": "`max-message` {
|
|
4286
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
4014
4287
|
},
|
|
4015
4288
|
{
|
|
4016
4289
|
"name": "allowedContentTypeIds",
|
|
@@ -4047,7 +4320,7 @@
|
|
|
4047
4320
|
},
|
|
4048
4321
|
{
|
|
4049
4322
|
"name": "umb-document-create-options-modal",
|
|
4050
|
-
"description": "Properties:\n\n * `_allowedDocumentTypes` - \n\n * `_headline` {`string`} - \n\n * `_availableBlueprints` - \n\n * `_loading` {`boolean`} - \n\n * `styles` - ",
|
|
4323
|
+
"description": "Properties:\n\n * `_allowedDocumentTypes` - \n\n * `_headline` {`string`} - \n\n * `_availableBlueprints` - \n\n * `_loading` {`boolean`} - \n\n * `_hasSettingsAccess` {`boolean`} - \n\n * `styles` - ",
|
|
4051
4324
|
"attributes": []
|
|
4052
4325
|
},
|
|
4053
4326
|
{
|
|
@@ -4057,7 +4330,7 @@
|
|
|
4057
4330
|
},
|
|
4058
4331
|
{
|
|
4059
4332
|
"name": "umb-document-duplicate-to-modal",
|
|
4060
|
-
"description": "Properties:\n\n * `_destinationUnique` - \n\n * `styles` - ",
|
|
4333
|
+
"description": "Properties:\n\n * `_destinationUnique` - \n\n * `_searchQuery` - \n\n * `_selectionConfiguration` - \n\n * `styles` - ",
|
|
4061
4334
|
"attributes": []
|
|
4062
4335
|
},
|
|
4063
4336
|
{
|
|
@@ -4120,7 +4393,7 @@
|
|
|
4120
4393
|
},
|
|
4121
4394
|
{
|
|
4122
4395
|
"name": "umb-property-editor-ui-document-picker",
|
|
4123
|
-
"description": "Attributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {`boolean`} - \n\n * `mandatoryMessage` - \n\nProperties:\n\n * `config` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {`boolean`} - \n\n * `mandatoryMessage` - \n\n * `_min` {`number`} - \n\n * `_max` {`number`} - \n\n * `_startNodeId` - \n\n * `_interactionMemories` - ",
|
|
4396
|
+
"description": "Attributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {`boolean`} - \n\n * `mandatoryMessage` - \n\nProperties:\n\n * `config` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {`boolean`} - \n\n * `mandatoryMessage` - \n\n * `_min` {`number`} - \n\n * `_max` {`number`} - \n\n * `_startNodeId` - \n\n * `_allowedContentTypes` - \n\n * `_interactionMemories` - ",
|
|
4124
4397
|
"attributes": [
|
|
4125
4398
|
{
|
|
4126
4399
|
"name": "readonly",
|
|
@@ -4136,6 +4409,11 @@
|
|
|
4136
4409
|
}
|
|
4137
4410
|
]
|
|
4138
4411
|
},
|
|
4412
|
+
{
|
|
4413
|
+
"name": "umb-document-picker-property-editor-value-summary",
|
|
4414
|
+
"description": "Properties:\n\n * `_name` - ",
|
|
4415
|
+
"attributes": []
|
|
4416
|
+
},
|
|
4139
4417
|
{
|
|
4140
4418
|
"name": "umb-document-publish-with-descendants-modal",
|
|
4141
4419
|
"description": "Properties:\n\n * `_options` - \n\n * `_hasNotSelectedMandatory` - \n\n * `styles` - ",
|
|
@@ -4242,7 +4520,6 @@
|
|
|
4242
4520
|
},
|
|
4243
4521
|
{
|
|
4244
4522
|
"name": "umb-document-workspace-split-view-variant-selector",
|
|
4245
|
-
"description": "Properties:\n\n * `_variantSorter` - \n\n * `_variantsWithPendingChanges` - ",
|
|
4246
4523
|
"attributes": []
|
|
4247
4524
|
},
|
|
4248
4525
|
{
|
|
@@ -4282,7 +4559,6 @@
|
|
|
4282
4559
|
},
|
|
4283
4560
|
{
|
|
4284
4561
|
"name": "umb-element-folder-tree-item",
|
|
4285
|
-
"description": "Properties:\n\n * `api` - ",
|
|
4286
4562
|
"attributes": []
|
|
4287
4563
|
},
|
|
4288
4564
|
{
|
|
@@ -4296,12 +4572,17 @@
|
|
|
4296
4572
|
},
|
|
4297
4573
|
{
|
|
4298
4574
|
"name": "umb-input-element",
|
|
4299
|
-
"description": "Attributes:\n\n * `folderOnly` {`boolean`} - \n\n * `min` {`number`} - \n\n * `min-message` - \n\n * `max` {`number`} - \n\n * `max-message` - \n\n * `selection` - \n\n * `value` - \n\n * `readonly` {`boolean`} - \n\nProperties:\n\n * `folderOnly` {`boolean`} - \n\n * `min` {`number`} - \n\n * `minMessage` - \n\n * `max` {`number`} - \n\n * `maxMessage` - \n\n * `selection` - \n\n * `startNode` - \n\n * `value` - \n\n * `readonly` {`boolean`} - ",
|
|
4575
|
+
"description": "Attributes:\n\n * `folderOnly` {`boolean`} - \n\n * `allowedContentTypeIds` - \n\n * `min` {`number`} - \n\n * `min-message` - \n\n * `max` {`number`} - \n\n * `max-message` - \n\n * `selection` - \n\n * `value` - \n\n * `readonly` {`boolean`} - \n\nProperties:\n\n * `folderOnly` {`boolean`} - \n\n * `allowedContentTypeIds` - \n\n * `min` {`number`} - \n\n * `minMessage` - \n\n * `max` {`number`} - \n\n * `maxMessage` - \n\n * `selection` - \n\n * `startNode` - \n\n * `value` - \n\n * `readonly` {`boolean`} - ",
|
|
4300
4576
|
"attributes": [
|
|
4301
4577
|
{
|
|
4302
4578
|
"name": "folderOnly",
|
|
4303
4579
|
"description": "`folderOnly` {`boolean`} - \n\nProperty: folderOnly\n\nDefault: false"
|
|
4304
4580
|
},
|
|
4581
|
+
{
|
|
4582
|
+
"name": "allowedContentTypeIds",
|
|
4583
|
+
"description": "`allowedContentTypeIds` - \n\nProperty: allowedContentTypeIds",
|
|
4584
|
+
"values": []
|
|
4585
|
+
},
|
|
4305
4586
|
{
|
|
4306
4587
|
"name": "min",
|
|
4307
4588
|
"description": "`min` {`number`} - \n\nProperty: min\n\nDefault: 0"
|
|
@@ -4382,7 +4663,7 @@
|
|
|
4382
4663
|
},
|
|
4383
4664
|
{
|
|
4384
4665
|
"name": "umb-element-picker-property-editor-ui",
|
|
4385
|
-
"description": "Attributes:\n\n * `mandatory` - \n\n * `mandatoryMessage` - \n\n * `name` - \n\n * `readonly` {`boolean`} - \n\nProperties:\n\n * `mandatory` - \n\n * `mandatoryMessage` - \n\n * `name` - \n\n * `readonly` {`boolean`} - \n\n * `config` - \n\n * `_folderOnly` {`boolean`} - \n\n * `_min` {`number`} - \n\n * `_minMessage` {`string`} - \n\n * `_max` {`number`} - \n\n * `_maxMessage` {`string`} - \n\n * `_startNode` - ",
|
|
4666
|
+
"description": "Attributes:\n\n * `mandatory` - \n\n * `mandatoryMessage` - \n\n * `name` - \n\n * `readonly` {`boolean`} - \n\nProperties:\n\n * `mandatory` - \n\n * `mandatoryMessage` - \n\n * `name` - \n\n * `readonly` {`boolean`} - \n\n * `config` - \n\n * `_folderOnly` {`boolean`} - \n\n * `_min` {`number`} - \n\n * `_minMessage` {`string`} - \n\n * `_max` {`number`} - \n\n * `_maxMessage` {`string`} - \n\n * `_startNode` - \n\n * `_allowedContentTypes` - ",
|
|
4386
4667
|
"attributes": [
|
|
4387
4668
|
{
|
|
4388
4669
|
"name": "mandatory",
|
|
@@ -4404,6 +4685,11 @@
|
|
|
4404
4685
|
}
|
|
4405
4686
|
]
|
|
4406
4687
|
},
|
|
4688
|
+
{
|
|
4689
|
+
"name": "umb-element-picker-property-editor-value-summary",
|
|
4690
|
+
"description": "Renders picked element names (variant-aware, comma-joined) for collection view cells.\n\nProperties:\n\n * `_names` - ",
|
|
4691
|
+
"attributes": []
|
|
4692
|
+
},
|
|
4407
4693
|
{
|
|
4408
4694
|
"name": "umb-element-publish-modal",
|
|
4409
4695
|
"description": "Properties:\n\n * `_options` - \n\n * `_hasNotSelectedMandatory` - \n\n * `_hasInvalidSelection` {`boolean`} - \n\n * `_isInvariant` {`boolean`} - \n\n * `styles` - ",
|
|
@@ -4461,7 +4747,6 @@
|
|
|
4461
4747
|
},
|
|
4462
4748
|
{
|
|
4463
4749
|
"name": "umb-element-workspace-split-view-variant-selector",
|
|
4464
|
-
"description": "Properties:\n\n * `_variantSorter` - \n\n * `_variantsWithPendingChanges` - ",
|
|
4465
4750
|
"attributes": []
|
|
4466
4751
|
},
|
|
4467
4752
|
{
|
|
@@ -4547,23 +4832,23 @@
|
|
|
4547
4832
|
},
|
|
4548
4833
|
{
|
|
4549
4834
|
"name": "umb-input-language",
|
|
4550
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
4835
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `value` {`string`} - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `filter` - \n\n * `selection` - \n\n * `value` {`string`} - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `_items` - \n\n * `_statuses` - \n\n * `styles` - ",
|
|
4551
4836
|
"attributes": [
|
|
4552
4837
|
{
|
|
4553
4838
|
"name": "min",
|
|
4554
4839
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
4555
4840
|
},
|
|
4556
4841
|
{
|
|
4557
|
-
"name": "
|
|
4558
|
-
"description": "`
|
|
4842
|
+
"name": "min-message",
|
|
4843
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
4559
4844
|
},
|
|
4560
4845
|
{
|
|
4561
|
-
"name": "
|
|
4562
|
-
"description": "`
|
|
4846
|
+
"name": "max",
|
|
4847
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
4563
4848
|
},
|
|
4564
4849
|
{
|
|
4565
|
-
"name": "
|
|
4566
|
-
"description": "`
|
|
4850
|
+
"name": "max-message",
|
|
4851
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
4567
4852
|
},
|
|
4568
4853
|
{
|
|
4569
4854
|
"name": "selection",
|
|
@@ -4844,10 +5129,18 @@
|
|
|
4844
5129
|
}
|
|
4845
5130
|
]
|
|
4846
5131
|
},
|
|
5132
|
+
{
|
|
5133
|
+
"name": "umb-markdown-editor-property-editor-value-summary",
|
|
5134
|
+
"attributes": []
|
|
5135
|
+
},
|
|
4847
5136
|
{
|
|
4848
5137
|
"name": "umb-input-dropzone",
|
|
4849
|
-
"description": "A dropzone for uploading files and folders.\nThe files will be uploaded to the server as temporary files and can be used in the backoffice.\n\nEvents:\n\n * `ProgressEvent` {} - When the progress of the upload changes.\n\n * `UmbDropzoneChangeEvent` {} - When the upload is complete.\n\n * `UmbDropzoneSubmittedEvent` {} - When the upload is submitted.\n\n * `progress` - \n\nSlots:\n\n * ` ` {} - The default slot.\n\n * `text` {} - A text shown above the dropzone graphic.\n\nAttributes:\n\n * `accept` - Comma-separated list of accepted mime types or file extensions.\n\n * `disable-folder-upload` {`boolean`} - Disable folder uploads.\n\n * `disabled` {`boolean`} - Disables the dropzone.\n\n * `multiple` {`boolean`} - Determines if the dropzone should accept multiple files.\n\n * `standalone` {`boolean`} - Style the dropzone with a border.\n\n * `label` {`string`} - The label for the dropzone.\n\nProperties:\n\n * `accept` - Comma-separated list of accepted mime types or file extensions.\n\n * `disableFolderUpload` {`boolean`} - Disable folder uploads.\n\n * `disabled` {`boolean`} - Disables the dropzone.\n\n * `multiple` {`boolean`} - Determines if the dropzone should accept multiple files.\n\n * `standalone` {`boolean`} - Style the dropzone with a border.\n\n * `label` {`string`} - The label for the dropzone.\n\n * `_dropzone` - \n\n * `_progressItems` - \n\n * `_manager` - \n\n * `styles` - ",
|
|
5138
|
+
"description": "A dropzone for uploading files and folders.\nThe files will be uploaded to the server as temporary files and can be used in the backoffice.\n\nEvents:\n\n * `ProgressEvent` {} - When the progress of the upload changes.\n\n * `UmbDropzoneChangeEvent` {} - When the upload is complete.\n\n * `UmbDropzoneSubmittedEvent` {} - When the upload is submitted.\n\n * `progress` - \n\nSlots:\n\n * ` ` {} - The default slot.\n\n * `text` {} - A text shown above the dropzone graphic.\n\nAttributes:\n\n * `no-access` {`boolean`} - Prohibits dropping files onto the dropzone. Unlike `disabled`, the drop hint is still shown while\ndragging (rendered in a danger colour), but any dropped files are rejected.\n\n * `accept` - Comma-separated list of accepted mime types or file extensions.\n\n * `disable-folder-upload` {`boolean`} - Disable folder uploads.\n\n * `disabled` {`boolean`} - Disables the dropzone.\n\n * `multiple` {`boolean`} - Determines if the dropzone should accept multiple files.\n\n * `standalone` {`boolean`} - Style the dropzone with a border.\n\n * `label` {`string`} - The label for the dropzone.\n\nProperties:\n\n * `noAccess` {`boolean`} - Prohibits dropping files onto the dropzone. Unlike `disabled`, the drop hint is still shown while\ndragging (rendered in a danger colour), but any dropped files are rejected.\n\n * `accept` - Comma-separated list of accepted mime types or file extensions.\n\n * `disableFolderUpload` {`boolean`} - Disable folder uploads.\n\n * `disabled` {`boolean`} - Disables the dropzone.\n\n * `multiple` {`boolean`} - Determines if the dropzone should accept multiple files.\n\n * `standalone` {`boolean`} - Style the dropzone with a border.\n\n * `label` {`string`} - The label for the dropzone.\n\n * `_dropzone` - \n\n * `_progressItems` - \n\n * `_manager` - \n\n * `styles` - ",
|
|
4850
5139
|
"attributes": [
|
|
5140
|
+
{
|
|
5141
|
+
"name": "no-access",
|
|
5142
|
+
"description": "`no-access` {`boolean`} - Prohibits dropping files onto the dropzone. Unlike `disabled`, the drop hint is still shown while\ndragging (rendered in a danger colour), but any dropped files are rejected.\n\nProperty: noAccess\n\nDefault: false"
|
|
5143
|
+
},
|
|
4851
5144
|
{
|
|
4852
5145
|
"name": "accept",
|
|
4853
5146
|
"description": "`accept` - Comma-separated list of accepted mime types or file extensions.\n\nProperty: accept",
|
|
@@ -4893,7 +5186,7 @@
|
|
|
4893
5186
|
},
|
|
4894
5187
|
{
|
|
4895
5188
|
"name": "umb-imaging-thumbnail",
|
|
4896
|
-
"description": "
|
|
5189
|
+
"description": "Alias of `umb-media-thumbnail`, kept for backwards compatibility.\n\nAttributes:\n\n * `unique` - The unique identifier for the media item.\n\n * `width` {`number`} - The width of the thumbnail in pixels.\n\n * `height` {`number`} - The height of the thumbnail in pixels.\n\n * `mode` - The mode of the thumbnail.\n\n * `format` - The output format of the thumbnail.\n\n * `alt` {`string`} - The alt text for the thumbnail.\n\n * `icon` {`string`} - The fallback icon for the thumbnail.\n\n * `loading` {`\"lazy\" | \"eager\"`} - The `loading` state of the thumbnail.\n\n * `external-loading` {`boolean`} - External loading state (e.g., when parent is waiting for metadata)\n\nProperties:\n\n * `unique` - The unique identifier for the media item.\n\n * `width` {`number`} - The width of the thumbnail in pixels.\n\n * `height` {`number`} - The height of the thumbnail in pixels.\n\n * `mode` - The mode of the thumbnail.\n\n * `format` - The output format of the thumbnail.\n\n * `alt` {`string`} - The alt text for the thumbnail.\n\n * `icon` {`string`} - The fallback icon for the thumbnail.\n\n * `loading` {`\"lazy\" | \"eager\"`} - The `loading` state of the thumbnail.\n\n * `externalLoading` {`boolean`} - External loading state (e.g., when parent is waiting for metadata)\n\n * `_isLoading` {`boolean`} - \n\n * `_thumbnailUrl` {`string`} - \n\n * `styles` - ",
|
|
4897
5190
|
"attributes": [
|
|
4898
5191
|
{
|
|
4899
5192
|
"name": "unique",
|
|
@@ -4975,25 +5268,77 @@
|
|
|
4975
5268
|
}
|
|
4976
5269
|
]
|
|
4977
5270
|
},
|
|
5271
|
+
{
|
|
5272
|
+
"name": "umb-media-thumbnail",
|
|
5273
|
+
"description": "Displays a thumbnail for a media item, with optional server-side cropping and transparency support.\nThis is the recommended component for rendering media images in the backoffice.\n\nAttributes:\n\n * `unique` - The unique identifier for the media item.\n\n * `width` {`number`} - The width of the thumbnail in pixels.\n\n * `height` {`number`} - The height of the thumbnail in pixels.\n\n * `mode` - The mode of the thumbnail.\n\n * `format` - The output format of the thumbnail.\n\n * `alt` {`string`} - The alt text for the thumbnail.\n\n * `icon` {`string`} - The fallback icon for the thumbnail.\n\n * `loading` {`\"lazy\" | \"eager\"`} - The `loading` state of the thumbnail.\n\n * `external-loading` {`boolean`} - External loading state (e.g., when parent is waiting for metadata)\n\nProperties:\n\n * `unique` - The unique identifier for the media item.\n\n * `width` {`number`} - The width of the thumbnail in pixels.\n\n * `height` {`number`} - The height of the thumbnail in pixels.\n\n * `mode` - The mode of the thumbnail.\n\n * `format` - The output format of the thumbnail.\n\n * `alt` {`string`} - The alt text for the thumbnail.\n\n * `icon` {`string`} - The fallback icon for the thumbnail.\n\n * `loading` {`\"lazy\" | \"eager\"`} - The `loading` state of the thumbnail.\n\n * `externalLoading` {`boolean`} - External loading state (e.g., when parent is waiting for metadata)\n\n * `_isLoading` {`boolean`} - \n\n * `_thumbnailUrl` {`string`} - \n\n * `styles` - ",
|
|
5274
|
+
"attributes": [
|
|
5275
|
+
{
|
|
5276
|
+
"name": "unique",
|
|
5277
|
+
"description": "`unique` - The unique identifier for the media item.\n\nProperty: unique",
|
|
5278
|
+
"values": []
|
|
5279
|
+
},
|
|
5280
|
+
{
|
|
5281
|
+
"name": "width",
|
|
5282
|
+
"description": "`width` {`number`} - The width of the thumbnail in pixels.\n\nProperty: width\n\nDefault: 300"
|
|
5283
|
+
},
|
|
5284
|
+
{
|
|
5285
|
+
"name": "height",
|
|
5286
|
+
"description": "`height` {`number`} - The height of the thumbnail in pixels.\n\nProperty: height\n\nDefault: 300"
|
|
5287
|
+
},
|
|
5288
|
+
{
|
|
5289
|
+
"name": "mode",
|
|
5290
|
+
"description": "`mode` - The mode of the thumbnail.\n\nProperty: mode\n\nDefault: MIN"
|
|
5291
|
+
},
|
|
5292
|
+
{
|
|
5293
|
+
"name": "format",
|
|
5294
|
+
"description": "`format` - The output format of the thumbnail.\n\nProperty: format",
|
|
5295
|
+
"values": []
|
|
5296
|
+
},
|
|
5297
|
+
{
|
|
5298
|
+
"name": "alt",
|
|
5299
|
+
"description": "`alt` {`string`} - The alt text for the thumbnail.\n\nProperty: alt\n\nDefault: "
|
|
5300
|
+
},
|
|
5301
|
+
{
|
|
5302
|
+
"name": "icon",
|
|
5303
|
+
"description": "`icon` {`string`} - The fallback icon for the thumbnail.\n\nProperty: icon\n\nDefault: icon-picture"
|
|
5304
|
+
},
|
|
5305
|
+
{
|
|
5306
|
+
"name": "loading",
|
|
5307
|
+
"description": "`loading` {`\"lazy\" | \"eager\"`} - The `loading` state of the thumbnail.\n\nProperty: loading\n\nDefault: 'lazy'",
|
|
5308
|
+
"values": [
|
|
5309
|
+
{
|
|
5310
|
+
"name": "lazy"
|
|
5311
|
+
},
|
|
5312
|
+
{
|
|
5313
|
+
"name": "eager"
|
|
5314
|
+
}
|
|
5315
|
+
]
|
|
5316
|
+
},
|
|
5317
|
+
{
|
|
5318
|
+
"name": "external-loading",
|
|
5319
|
+
"description": "`external-loading` {`boolean`} - External loading state (e.g., when parent is waiting for metadata)\n\nProperty: externalLoading\n\nDefault: false"
|
|
5320
|
+
}
|
|
5321
|
+
]
|
|
5322
|
+
},
|
|
4978
5323
|
{
|
|
4979
5324
|
"name": "umb-input-media-type",
|
|
4980
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
5325
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `_editPath` {`string`} - \n\n * `styles` - ",
|
|
4981
5326
|
"attributes": [
|
|
4982
5327
|
{
|
|
4983
5328
|
"name": "min",
|
|
4984
5329
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
4985
5330
|
},
|
|
4986
5331
|
{
|
|
4987
|
-
"name": "
|
|
4988
|
-
"description": "`
|
|
5332
|
+
"name": "min-message",
|
|
5333
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
4989
5334
|
},
|
|
4990
5335
|
{
|
|
4991
|
-
"name": "
|
|
4992
|
-
"description": "`
|
|
5336
|
+
"name": "max",
|
|
5337
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
4993
5338
|
},
|
|
4994
5339
|
{
|
|
4995
|
-
"name": "
|
|
4996
|
-
"description": "`
|
|
5340
|
+
"name": "max-message",
|
|
5341
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
4997
5342
|
},
|
|
4998
5343
|
{
|
|
4999
5344
|
"name": "selection",
|
|
@@ -5204,7 +5549,7 @@
|
|
|
5204
5549
|
},
|
|
5205
5550
|
{
|
|
5206
5551
|
"name": "umb-input-media",
|
|
5207
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {
|
|
5552
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `allowedContentTypeIds` - \n\n * `include-trashed` {`boolean`} - \n\n * `folder-filter` {`UmbMediaPickerFolderFilter`} - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `allowedContentTypeIds` - \n\n * `includeTrashed` {`boolean`} - \n\n * `folderFilter` {`UmbMediaPickerFolderFilter`} - \n\n * `startNode` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `interactionMemories` - \n\n * `_editMediaPath` {`string`} - \n\n * `_cards` - \n\n * `styles` - ",
|
|
5208
5553
|
"attributes": [
|
|
5209
5554
|
{
|
|
5210
5555
|
"name": "min",
|
|
@@ -5212,7 +5557,7 @@
|
|
|
5212
5557
|
},
|
|
5213
5558
|
{
|
|
5214
5559
|
"name": "min-message",
|
|
5215
|
-
"description": "`min-message` {
|
|
5560
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
5216
5561
|
},
|
|
5217
5562
|
{
|
|
5218
5563
|
"name": "max",
|
|
@@ -5220,7 +5565,7 @@
|
|
|
5220
5565
|
},
|
|
5221
5566
|
{
|
|
5222
5567
|
"name": "max-message",
|
|
5223
|
-
"description": "`max-message` {
|
|
5568
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
5224
5569
|
},
|
|
5225
5570
|
{
|
|
5226
5571
|
"name": "allowedContentTypeIds",
|
|
@@ -5248,7 +5593,7 @@
|
|
|
5248
5593
|
},
|
|
5249
5594
|
{
|
|
5250
5595
|
"name": "umb-input-rich-media",
|
|
5251
|
-
"description": "Attributes:\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
5596
|
+
"description": "Attributes:\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `value` - \n\n * `allowedContentTypeIds` - \n\n * `multiple` {`boolean`} - \n\n * `preselectedCrops` - \n\n * `focalPointEnabled` {`boolean`} - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `value` - \n\n * `allowedContentTypeIds` - \n\n * `startNode` - \n\n * `multiple` {`boolean`} - \n\n * `preselectedCrops` - \n\n * `focalPointEnabled` {`boolean`} - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `interactionMemories` - \n\n * `_cards` - \n\n * `_routeBuilder` - \n\n * `styles` - ",
|
|
5252
5597
|
"attributes": [
|
|
5253
5598
|
{
|
|
5254
5599
|
"name": "required",
|
|
@@ -5265,16 +5610,16 @@
|
|
|
5265
5610
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: 0"
|
|
5266
5611
|
},
|
|
5267
5612
|
{
|
|
5268
|
-
"name": "
|
|
5269
|
-
"description": "`
|
|
5613
|
+
"name": "min-message",
|
|
5614
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
5270
5615
|
},
|
|
5271
5616
|
{
|
|
5272
|
-
"name": "
|
|
5273
|
-
"description": "`
|
|
5617
|
+
"name": "max",
|
|
5618
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: Infinity"
|
|
5274
5619
|
},
|
|
5275
5620
|
{
|
|
5276
|
-
"name": "
|
|
5277
|
-
"description": "`
|
|
5621
|
+
"name": "max-message",
|
|
5622
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
5278
5623
|
},
|
|
5279
5624
|
{
|
|
5280
5625
|
"name": "value",
|
|
@@ -5456,7 +5801,7 @@
|
|
|
5456
5801
|
},
|
|
5457
5802
|
{
|
|
5458
5803
|
"name": "umb-media-create-options-modal",
|
|
5459
|
-
"description": "Properties:\n\n * `_allowedMediaTypes` - \n\n * `_headline` {`string`} - \n\n * `_loading` {`boolean`} - \n\n * `styles` - ",
|
|
5804
|
+
"description": "Properties:\n\n * `_allowedMediaTypes` - \n\n * `_headline` {`string`} - \n\n * `_loading` {`boolean`} - \n\n * `_hasSettingsAccess` {`boolean`} - \n\n * `styles` - ",
|
|
5460
5805
|
"attributes": []
|
|
5461
5806
|
},
|
|
5462
5807
|
{
|
|
@@ -5510,7 +5855,7 @@
|
|
|
5510
5855
|
},
|
|
5511
5856
|
{
|
|
5512
5857
|
"name": "umb-media-picker-modal",
|
|
5513
|
-
"description": "Properties:\n\n * `_pickerContext` - \n\n * `_selectableFilter` - \n\n * `_currentChildren` - \n\n * `_currentPage` {`number`} - \n\n * `_currentTotalPages` {`number`} - \n\n * `_searchResult` - \n\n * `_searchFrom` - \n\n * `_searchQuery` {`string`} - \n\n * `_currentMediaEntity` {`UmbMediaPathModel`} - \n\n * `_isSelectionMode` {`boolean`} - \n\n * `_startNode` - \n\n * `_searching` {`boolean`} - \n\n * `_dropzone` - \n\n * `_viewPopover` - \n\n * `_currentView` {`UmbMediaPickerView`} - \n\n * `styles` - ",
|
|
5858
|
+
"description": "Properties:\n\n * `_pickerContext` - \n\n * `_selectableFilter` - \n\n * `_currentChildren` - \n\n * `_currentPage` {`number`} - \n\n * `_currentTotalPages` {`number`} - \n\n * `_searchResult` - \n\n * `_searchFrom` - \n\n * `_searchQuery` {`string`} - \n\n * `_currentMediaEntity` {`UmbMediaPathModel`} - \n\n * `_isSelectionMode` {`boolean`} - \n\n * `_startNode` - \n\n * `_noAccess` {`boolean`} - \n\n * `_searching` {`boolean`} - \n\n * `_dropzone` - \n\n * `_viewPopover` - \n\n * `_currentView` {`UmbMediaPickerView`} - \n\n * `styles` - ",
|
|
5514
5859
|
"attributes": []
|
|
5515
5860
|
},
|
|
5516
5861
|
{
|
|
@@ -5528,6 +5873,10 @@
|
|
|
5528
5873
|
}
|
|
5529
5874
|
]
|
|
5530
5875
|
},
|
|
5876
|
+
{
|
|
5877
|
+
"name": "umb-image-cropper-property-editor-value-summary",
|
|
5878
|
+
"attributes": []
|
|
5879
|
+
},
|
|
5531
5880
|
{
|
|
5532
5881
|
"name": "umb-property-editor-ui-image-crops",
|
|
5533
5882
|
"description": "Attributes:\n\n * `value` - \n\nProperties:\n\n * `_labelInput` {`HTMLInputElement`} - \n\n * `_value` - \n\n * `_isCreating` {`boolean`} - \n\n * `value` - \n\n * `editCropAlias` {`string`} - \n\n * `styles` - ",
|
|
@@ -5572,11 +5921,19 @@
|
|
|
5572
5921
|
}
|
|
5573
5922
|
]
|
|
5574
5923
|
},
|
|
5924
|
+
{
|
|
5925
|
+
"name": "umb-media-picker-property-editor-value-summary",
|
|
5926
|
+
"attributes": []
|
|
5927
|
+
},
|
|
5575
5928
|
{
|
|
5576
5929
|
"name": "umb-property-editor-ui-upload-field",
|
|
5577
5930
|
"description": "Properties:\n\n * `_fileExtensions` - \n\n * `config` - ",
|
|
5578
5931
|
"attributes": []
|
|
5579
5932
|
},
|
|
5933
|
+
{
|
|
5934
|
+
"name": "umb-upload-field-property-editor-value-summary",
|
|
5935
|
+
"attributes": []
|
|
5936
|
+
},
|
|
5580
5937
|
{
|
|
5581
5938
|
"name": "umb-media-recycle-bin-tree-item-table-collection-view",
|
|
5582
5939
|
"description": "Properties:\n\n * `_tableConfig` - \n\n * `_tableColumns` - \n\n * `_tableItems` - \n\n * `styles` - ",
|
|
@@ -5603,7 +5960,7 @@
|
|
|
5603
5960
|
},
|
|
5604
5961
|
{
|
|
5605
5962
|
"name": "umb-media-tree-item",
|
|
5606
|
-
"description": "Properties:\n\n * `
|
|
5963
|
+
"description": "Properties:\n\n * `styles` - ",
|
|
5607
5964
|
"attributes": []
|
|
5608
5965
|
},
|
|
5609
5966
|
{
|
|
@@ -5630,14 +5987,9 @@
|
|
|
5630
5987
|
"description": "Properties:\n\n * `_mediaTypeUnique` - \n\n * `_mediaTypeName` - \n\n * `_mediaTypeIcon` - \n\n * `_editMediaTypePath` {`string`} - \n\n * `_mediaUnique` {`string`} - \n\n * `_createDate` - \n\n * `_updateDate` - \n\n * `_hasSettingsAccess` {`boolean`} - \n\n * `_isTrashed` {`boolean`} - \n\n * `styles` - ",
|
|
5631
5988
|
"attributes": []
|
|
5632
5989
|
},
|
|
5633
|
-
{
|
|
5634
|
-
"name": "umb-member-group-table-collection-view",
|
|
5635
|
-
"description": "Properties:\n\n * `_tableConfig` - \n\n * `_tableColumns` - \n\n * `_tableItems` - \n\n * `styles` - ",
|
|
5636
|
-
"attributes": []
|
|
5637
|
-
},
|
|
5638
5990
|
{
|
|
5639
5991
|
"name": "umb-input-member-group",
|
|
5640
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {
|
|
5992
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `filter` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `_editMemberGroupPath` {`string`} - \n\n * `_items` - \n\n * `_statuses` - \n\n * `styles` - ",
|
|
5641
5993
|
"attributes": [
|
|
5642
5994
|
{
|
|
5643
5995
|
"name": "min",
|
|
@@ -5645,7 +5997,7 @@
|
|
|
5645
5997
|
},
|
|
5646
5998
|
{
|
|
5647
5999
|
"name": "min-message",
|
|
5648
|
-
"description": "`min-message` {
|
|
6000
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
5649
6001
|
},
|
|
5650
6002
|
{
|
|
5651
6003
|
"name": "max",
|
|
@@ -5653,7 +6005,7 @@
|
|
|
5653
6005
|
},
|
|
5654
6006
|
{
|
|
5655
6007
|
"name": "max-message",
|
|
5656
|
-
"description": "`max-message` {
|
|
6008
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
5657
6009
|
},
|
|
5658
6010
|
{
|
|
5659
6011
|
"name": "value",
|
|
@@ -5700,6 +6052,10 @@
|
|
|
5700
6052
|
}
|
|
5701
6053
|
]
|
|
5702
6054
|
},
|
|
6055
|
+
{
|
|
6056
|
+
"name": "umb-member-group-picker-property-editor-value-summary",
|
|
6057
|
+
"attributes": []
|
|
6058
|
+
},
|
|
5703
6059
|
{
|
|
5704
6060
|
"name": "umb-member-group-workspace-editor",
|
|
5705
6061
|
"description": "Properties:\n\n * `styles` - ",
|
|
@@ -5717,23 +6073,23 @@
|
|
|
5717
6073
|
},
|
|
5718
6074
|
{
|
|
5719
6075
|
"name": "umb-input-member-type",
|
|
5720
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
6076
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `value` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `styles` - ",
|
|
5721
6077
|
"attributes": [
|
|
5722
6078
|
{
|
|
5723
6079
|
"name": "min",
|
|
5724
6080
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
5725
6081
|
},
|
|
5726
6082
|
{
|
|
5727
|
-
"name": "
|
|
5728
|
-
"description": "`
|
|
6083
|
+
"name": "min-message",
|
|
6084
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
5729
6085
|
},
|
|
5730
6086
|
{
|
|
5731
|
-
"name": "
|
|
5732
|
-
"description": "`
|
|
6087
|
+
"name": "max",
|
|
6088
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
5733
6089
|
},
|
|
5734
6090
|
{
|
|
5735
|
-
"name": "
|
|
5736
|
-
"description": "`
|
|
6091
|
+
"name": "max-message",
|
|
6092
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
5737
6093
|
},
|
|
5738
6094
|
{
|
|
5739
6095
|
"name": "value",
|
|
@@ -5801,7 +6157,7 @@
|
|
|
5801
6157
|
},
|
|
5802
6158
|
{
|
|
5803
6159
|
"name": "umb-input-member",
|
|
5804
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {
|
|
6160
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `allowedContentTypeIds` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `allowedContentTypeIds` - \n\n * `value` - \n\n * `filter` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `styles` - ",
|
|
5805
6161
|
"attributes": [
|
|
5806
6162
|
{
|
|
5807
6163
|
"name": "min",
|
|
@@ -5809,7 +6165,7 @@
|
|
|
5809
6165
|
},
|
|
5810
6166
|
{
|
|
5811
6167
|
"name": "min-message",
|
|
5812
|
-
"description": "`min-message` {
|
|
6168
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
5813
6169
|
},
|
|
5814
6170
|
{
|
|
5815
6171
|
"name": "max",
|
|
@@ -5817,7 +6173,7 @@
|
|
|
5817
6173
|
},
|
|
5818
6174
|
{
|
|
5819
6175
|
"name": "max-message",
|
|
5820
|
-
"description": "`max-message` {
|
|
6176
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
5821
6177
|
},
|
|
5822
6178
|
{
|
|
5823
6179
|
"name": "allowedContentTypeIds",
|
|
@@ -5902,9 +6258,13 @@
|
|
|
5902
6258
|
}
|
|
5903
6259
|
]
|
|
5904
6260
|
},
|
|
6261
|
+
{
|
|
6262
|
+
"name": "umb-member-picker-property-editor-value-summary",
|
|
6263
|
+
"attributes": []
|
|
6264
|
+
},
|
|
5905
6265
|
{
|
|
5906
6266
|
"name": "umb-member-workspace-editor",
|
|
5907
|
-
"description": "Properties:\n\n * `_splitViewElement` - \n\n * `
|
|
6267
|
+
"description": "Properties:\n\n * `_splitViewElement` - \n\n * `_routes` - \n\n * `_loading` - \n\n * `_isExternalOnly` {`boolean`} - \n\n * `_gotWorkspaceRoute` - \n\n * `styles` - ",
|
|
5908
6268
|
"attributes": []
|
|
5909
6269
|
},
|
|
5910
6270
|
{
|
|
@@ -5929,7 +6289,7 @@
|
|
|
5929
6289
|
},
|
|
5930
6290
|
{
|
|
5931
6291
|
"name": "umb-input-multi-url",
|
|
5932
|
-
"description": "Events:\n\n * `change` {} - when the value of the input changes\n\n * `blur` {} - when the input loses focus\n\n * `focus` {} - when the input gains focus\n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {
|
|
6292
|
+
"description": "Events:\n\n * `change` {} - when the value of the input changes\n\n * `blur` {} - when the input loses focus\n\n * `focus` {} - when the input gains focus\n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `hide-anchor` - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {`boolean`} - \n\n * `requiredMessage` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `hideAnchor` - \n\n * `documentLinksConfig` - \n\n * `overlaySize` {UUIModalSidebarSize} - \n\n * `urls` {Array<UmbLinkPickerLink>} - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {`boolean`} - \n\n * `requiredMessage` - \n\n * `_modalRoute` - \n\n * `_resolvedLinkNames` - \n\n * `_resolvedLinkUrls` - \n\n * `styles` - \n\n * `#linkPickerModal` - ",
|
|
5933
6293
|
"attributes": [
|
|
5934
6294
|
{
|
|
5935
6295
|
"name": "min",
|
|
@@ -5938,7 +6298,7 @@
|
|
|
5938
6298
|
},
|
|
5939
6299
|
{
|
|
5940
6300
|
"name": "min-message",
|
|
5941
|
-
"description": "`min-message` {
|
|
6301
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
5942
6302
|
},
|
|
5943
6303
|
{
|
|
5944
6304
|
"name": "max",
|
|
@@ -5947,7 +6307,7 @@
|
|
|
5947
6307
|
},
|
|
5948
6308
|
{
|
|
5949
6309
|
"name": "max-message",
|
|
5950
|
-
"description": "`max-message` {
|
|
6310
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
5951
6311
|
},
|
|
5952
6312
|
{
|
|
5953
6313
|
"name": "hide-anchor",
|
|
@@ -6017,6 +6377,10 @@
|
|
|
6017
6377
|
}
|
|
6018
6378
|
]
|
|
6019
6379
|
},
|
|
6380
|
+
{
|
|
6381
|
+
"name": "umb-multi-url-picker-property-editor-value-summary",
|
|
6382
|
+
"attributes": []
|
|
6383
|
+
},
|
|
6020
6384
|
{
|
|
6021
6385
|
"name": "umb-workspace-package-builder",
|
|
6022
6386
|
"description": "Attributes:\n\n * `entityUnique` - \n\nProperties:\n\n * `entityUnique` - \n\n * `_package` - \n\n * `_packageNameInput` - \n\n * `_submitState` - \n\n * `styles` - ",
|
|
@@ -6180,6 +6544,10 @@
|
|
|
6180
6544
|
}
|
|
6181
6545
|
]
|
|
6182
6546
|
},
|
|
6547
|
+
{
|
|
6548
|
+
"name": "umb-checkbox-list-property-editor-value-summary",
|
|
6549
|
+
"attributes": []
|
|
6550
|
+
},
|
|
6183
6551
|
{
|
|
6184
6552
|
"name": "umb-property-editor-ui-collection-column-configuration",
|
|
6185
6553
|
"description": "Attributes:\n\n * `value` - \n\nProperties:\n\n * `value` - \n\n * `config` - \n\n * `_field` - \n\n * `styles` - ",
|
|
@@ -6281,7 +6649,7 @@
|
|
|
6281
6649
|
},
|
|
6282
6650
|
{
|
|
6283
6651
|
"name": "umb-input-content",
|
|
6284
|
-
"description": "Attributes:\n\n * `type` {`UmbContentPickerSourceType`} - \n\n * `min` {
|
|
6652
|
+
"description": "Attributes:\n\n * `type` {`UmbContentPickerSourceType`} - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `allowedContentTypeIds` - \n\n * `selection` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\nProperties:\n\n * `type` {`UmbContentPickerSourceType`} - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `startNode` - \n\n * `allowedContentTypeIds` - \n\n * `selection` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `interactionMemories` - \n\n * `styles` - ",
|
|
6285
6653
|
"attributes": [
|
|
6286
6654
|
{
|
|
6287
6655
|
"name": "type",
|
|
@@ -6300,19 +6668,19 @@
|
|
|
6300
6668
|
},
|
|
6301
6669
|
{
|
|
6302
6670
|
"name": "min",
|
|
6303
|
-
"description": "`min` {
|
|
6671
|
+
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: 0"
|
|
6304
6672
|
},
|
|
6305
6673
|
{
|
|
6306
6674
|
"name": "min-message",
|
|
6307
|
-
"description": "`min-message` {
|
|
6675
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
6308
6676
|
},
|
|
6309
6677
|
{
|
|
6310
6678
|
"name": "max",
|
|
6311
|
-
"description": "`max` {
|
|
6679
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: 0"
|
|
6312
6680
|
},
|
|
6313
6681
|
{
|
|
6314
6682
|
"name": "max-message",
|
|
6315
|
-
"description": "`max-message` {
|
|
6683
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
6316
6684
|
},
|
|
6317
6685
|
{
|
|
6318
6686
|
"name": "allowedContentTypeIds",
|
|
@@ -6422,6 +6790,11 @@
|
|
|
6422
6790
|
}
|
|
6423
6791
|
]
|
|
6424
6792
|
},
|
|
6793
|
+
{
|
|
6794
|
+
"name": "umb-content-picker-property-editor-value-summary",
|
|
6795
|
+
"description": "Properties:\n\n * `_names` - ",
|
|
6796
|
+
"attributes": []
|
|
6797
|
+
},
|
|
6425
6798
|
{
|
|
6426
6799
|
"name": "umb-property-editor-ui-date-picker",
|
|
6427
6800
|
"description": "This property editor allows the user to pick a date, datetime-local, or time.\nIt uses raw datetime strings back and forth, and therefore it has no knowledge\nof timezones. It uses a regular HTML input element underneath, which supports the known\ndefinitions of \"date\", \"datetime-local\", and \"time\".\n\nThe underlying input element reports the value differently depending on the type configuration. Here\nare some examples from the change event:\n\ndate: 2024-05-03\ndatetime-local: 2024-05-03T10:44\ntime: 10:44\n\nThese values are approximately similar to what Umbraco expects for the Umbraco.DateTime\ndata editor with one exception: the \"T\" character in \"datetime-local\". To be backwards compatible, we are\nreplacing the T character with a whitespace, which also happens to work just fine\nwith the \"datetime-local\" type.\n\nAttributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {`boolean`} - \n\n * `value` - \n\nProperties:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {`boolean`} - \n\n * `value` - \n\n * `_inputType` - \n\n * `_min` - \n\n * `_max` - \n\n * `_step` - \n\n * `_inputValue` - \n\n * `config` - ",
|
|
@@ -6481,6 +6854,10 @@
|
|
|
6481
6854
|
}
|
|
6482
6855
|
]
|
|
6483
6856
|
},
|
|
6857
|
+
{
|
|
6858
|
+
"name": "umb-date-time-property-editor-value-summary",
|
|
6859
|
+
"attributes": []
|
|
6860
|
+
},
|
|
6484
6861
|
{
|
|
6485
6862
|
"name": "umb-property-editor-ui-date-time-with-time-zone-picker",
|
|
6486
6863
|
"description": "Attributes:\n\n * `readonly` {`boolean`} - \n\n * `mandatory` - \n\n * `mandatoryMessage` - \n\nProperties:\n\n * `_timeZoneOptions` - \n\n * `_clientTimeZone` - \n\n * `_timeZoneMode` - \n\n * `readonly` {`boolean`} - \n\n * `mandatory` - \n\n * `mandatoryMessage` - \n\n * `_dateInputFormat` {`string`} - \n\n * `_dateInputStep` {`number`} - \n\n * `_selectedDate` - \n\n * `_datePickerValue` {`string`} - \n\n * `_filteredTimeZoneOptions` - \n\n * `_selectedTimeZone` - \n\n * `config` - \n\n * `styles` - \n\n * `_dateInputType` - \n\n * `_displayTimeZone` {`boolean`} - ",
|
|
@@ -6501,10 +6878,6 @@
|
|
|
6501
6878
|
}
|
|
6502
6879
|
]
|
|
6503
6880
|
},
|
|
6504
|
-
{
|
|
6505
|
-
"name": "umb-date-time-with-time-zone-property-editor-value-summary",
|
|
6506
|
-
"attributes": []
|
|
6507
|
-
},
|
|
6508
6881
|
{
|
|
6509
6882
|
"name": "umb-property-editor-ui-time-only-picker",
|
|
6510
6883
|
"description": "Attributes:\n\n * `readonly` {`boolean`} - \n\n * `mandatory` - \n\n * `mandatoryMessage` - \n\nProperties:\n\n * `_timeZoneOptions` - \n\n * `_clientTimeZone` - \n\n * `_timeZoneMode` - \n\n * `readonly` {`boolean`} - \n\n * `mandatory` - \n\n * `mandatoryMessage` - \n\n * `_dateInputFormat` {`string`} - \n\n * `_dateInputStep` {`number`} - \n\n * `_selectedDate` - \n\n * `_datePickerValue` {`string`} - \n\n * `_filteredTimeZoneOptions` - \n\n * `_selectedTimeZone` - \n\n * `config` - \n\n * `styles` - \n\n * `_dateInputType` - \n\n * `_displayTimeZone` {`boolean`} - ",
|
|
@@ -6537,7 +6910,7 @@
|
|
|
6537
6910
|
},
|
|
6538
6911
|
{
|
|
6539
6912
|
"name": "umb-property-editor-ui-dropdown",
|
|
6540
|
-
"description": "Attributes:\n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` - \n\nProperties:\n\n * `_multiple` {`boolean`} - \n\n * `_options` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` - \n\n * `config` - \n\n * `styles` - ",
|
|
6913
|
+
"description": "Attributes:\n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` - \n\nProperties:\n\n * `_multiple` {`boolean`} - \n\n * `_placeholder` - \n\n * `_options` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` - \n\n * `config` - \n\n * `styles` - ",
|
|
6541
6914
|
"attributes": [
|
|
6542
6915
|
{
|
|
6543
6916
|
"name": "value",
|
|
@@ -6566,7 +6939,7 @@
|
|
|
6566
6939
|
},
|
|
6567
6940
|
{
|
|
6568
6941
|
"name": "umb-input-entity-data",
|
|
6569
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {boolean} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `dataSourceApi` - \n\n * `dataSourceConfig` - \n\n * `pickerViews` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `_items` - \n\n * `_statuses` - \n\n * `_modalRoute` - \n\n * `styles` - ",
|
|
6942
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {boolean} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `dataSourceApi` - \n\n * `dataSourceConfig` - \n\n * `pickerViews` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `interactionMemories` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `_modalRoute` - \n\n * `styles` - ",
|
|
6570
6943
|
"attributes": [
|
|
6571
6944
|
{
|
|
6572
6945
|
"name": "min",
|
|
@@ -6611,7 +6984,7 @@
|
|
|
6611
6984
|
},
|
|
6612
6985
|
{
|
|
6613
6986
|
"name": "umb-entity-data-picker-property-editor-ui",
|
|
6614
|
-
"description": "Attributes:\n\n * `_dataSourceAlias` {string} - The data source alias to use for this property editor.\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `_dataSourceAlias` {string} - The data source alias to use for this property editor.\n\n * `dataSourceAlias` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `_min` {`number`} - \n\n * `_minMessage` {`string`} - \n\n * `_max` {`number`} - \n\n * `_maxMessage` {`string`} - \n\n * `_dataSourceConfig` - \n\n * `_dataSourceApi` - \n\n * `_pickerViews` - \n\n * `config` - ",
|
|
6987
|
+
"description": "Attributes:\n\n * `_dataSourceAlias` {string} - The data source alias to use for this property editor.\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `_dataSourceAlias` {string} - The data source alias to use for this property editor.\n\n * `dataSourceAlias` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `_min` {`number`} - \n\n * `_minMessage` {`string`} - \n\n * `_max` {`number`} - \n\n * `_maxMessage` {`string`} - \n\n * `_dataSourceConfig` - \n\n * `_dataSourceApi` - \n\n * `_pickerViews` - \n\n * `_interactionMemories` - \n\n * `config` - ",
|
|
6615
6988
|
"attributes": [
|
|
6616
6989
|
{
|
|
6617
6990
|
"name": "_dataSourceAlias",
|
|
@@ -6626,7 +6999,7 @@
|
|
|
6626
6999
|
},
|
|
6627
7000
|
{
|
|
6628
7001
|
"name": "umb-entity-data-property-editor-ui",
|
|
6629
|
-
"description": "Attributes:\n\n * `_dataSourceAlias` {string} - The data source alias to use for this property editor.\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `_dataSourceAlias` {string} - The data source alias to use for this property editor.\n\n * `dataSourceAlias` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `_min` {`number`} - \n\n * `_minMessage` {`string`} - \n\n * `_max` {`number`} - \n\n * `_maxMessage` {`string`} - \n\n * `_dataSourceConfig` - \n\n * `_dataSourceApi` - \n\n * `_pickerViews` - \n\n * `config` - ",
|
|
7002
|
+
"description": "Attributes:\n\n * `_dataSourceAlias` {string} - The data source alias to use for this property editor.\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `_dataSourceAlias` {string} - The data source alias to use for this property editor.\n\n * `dataSourceAlias` - \n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `_min` {`number`} - \n\n * `_minMessage` {`string`} - \n\n * `_max` {`number`} - \n\n * `_maxMessage` {`string`} - \n\n * `_dataSourceConfig` - \n\n * `_dataSourceApi` - \n\n * `_pickerViews` - \n\n * `_interactionMemories` - \n\n * `config` - ",
|
|
6630
7003
|
"attributes": [
|
|
6631
7004
|
{
|
|
6632
7005
|
"name": "_dataSourceAlias",
|
|
@@ -6657,9 +7030,13 @@
|
|
|
6657
7030
|
}
|
|
6658
7031
|
]
|
|
6659
7032
|
},
|
|
7033
|
+
{
|
|
7034
|
+
"name": "umb-eye-dropper-property-editor-value-summary",
|
|
7035
|
+
"attributes": []
|
|
7036
|
+
},
|
|
6660
7037
|
{
|
|
6661
7038
|
"name": "umb-property-editor-ui-icon-picker",
|
|
6662
|
-
"description": "Attributes:\n\n * `mandatory` {`boolean`} - \n\n * `value` {`string`} - \n\nProperties:\n\n * `mandatory` {`boolean`} - \n\n * `value` {`string`} - \n\n * `_icon` {`string`} - \n\n * `_color` {`string`} - \n\n * `_placeholderIcon` {`string`} - \n\n * `_hideColors` {`boolean`} - \n\n * `config` - ",
|
|
7039
|
+
"description": "Attributes:\n\n * `mandatory` {`boolean`} - \n\n * `value` {`string`} - \n\nProperties:\n\n * `mandatory` {`boolean`} - \n\n * `value` {`string`} - \n\n * `_icon` {`string`} - \n\n * `_color` {`string`} - \n\n * `_placeholderIcon` {`string`} - \n\n * `_hideColors` {`boolean`} - \n\n * `config` - \n\n * `styles` - ",
|
|
6663
7040
|
"attributes": [
|
|
6664
7041
|
{
|
|
6665
7042
|
"name": "mandatory",
|
|
@@ -6719,6 +7096,10 @@
|
|
|
6719
7096
|
}
|
|
6720
7097
|
]
|
|
6721
7098
|
},
|
|
7099
|
+
{
|
|
7100
|
+
"name": "umb-multiple-text-string-property-editor-value-summary",
|
|
7101
|
+
"attributes": []
|
|
7102
|
+
},
|
|
6722
7103
|
{
|
|
6723
7104
|
"name": "umb-property-editor-ui-number-range",
|
|
6724
7105
|
"description": "Attributes:\n\n * `mandatory` {`boolean`} - \n\n * `mandatoryMessage` - \n\n * `value` - \n\nProperties:\n\n * `_minValue` - \n\n * `_maxValue` - \n\n * `_validationRange` - \n\n * `mandatory` {`boolean`} - \n\n * `mandatoryMessage` - \n\n * `value` - \n\n * `config` - ",
|
|
@@ -6849,7 +7230,7 @@
|
|
|
6849
7230
|
},
|
|
6850
7231
|
{
|
|
6851
7232
|
"name": "umb-property-editor-ui-text-box",
|
|
6852
|
-
"description": "Attributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` {string} - The name of this field.\n\nProperties:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` {string} - The name of this field.\n\n * `_type` - \n\n * `_inputMode` - \n\n * `_maxChars` - \n\n * `_placeholder` - \n\n * `config` - \n\n * `styles` - ",
|
|
7233
|
+
"description": "Attributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `alias` {string} - The alias of this field.\n\n * `name` {string} - The name of this field.\n\nProperties:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `alias` {string} - The alias of this field.\n\n * `name` {string} - The name of this field.\n\n * `_type` - \n\n * `_inputMode` - \n\n * `_maxChars` - \n\n * `_placeholder` - \n\n * `_autocomplete` - \n\n * `config` - \n\n * `styles` - ",
|
|
6853
7234
|
"attributes": [
|
|
6854
7235
|
{
|
|
6855
7236
|
"name": "readonly",
|
|
@@ -6864,6 +7245,11 @@
|
|
|
6864
7245
|
"name": "mandatoryMessage",
|
|
6865
7246
|
"description": "`mandatoryMessage` - \n\nProperty: mandatoryMessage\n\nDefault: UMB_VALIDATION_EMPTY_LOCALIZATION_KEY"
|
|
6866
7247
|
},
|
|
7248
|
+
{
|
|
7249
|
+
"name": "alias",
|
|
7250
|
+
"description": "`alias` {string} - The alias of this field.\n\nProperty: alias",
|
|
7251
|
+
"values": []
|
|
7252
|
+
},
|
|
6867
7253
|
{
|
|
6868
7254
|
"name": "name",
|
|
6869
7255
|
"description": "`name` {string} - The name of this field.\n\nProperty: name",
|
|
@@ -6873,7 +7259,7 @@
|
|
|
6873
7259
|
},
|
|
6874
7260
|
{
|
|
6875
7261
|
"name": "umb-property-editor-ui-textarea",
|
|
6876
|
-
"description": "Attributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` {string} - The name of this field.\n\nProperties:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` {string} - The name of this field.\n\n * `_maxChars` - \n\n * `_rows` - \n\n * `_css` - \n\n * `config` - \n\n * `styles` - ",
|
|
7262
|
+
"description": "Attributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` {string} - The name of this field.\n\nProperties:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `mandatory` {boolean} - Sets the input to mandatory, meaning validation will fail if the value is empty.\n\n * `mandatoryMessage` - \n\n * `name` {string} - The name of this field.\n\n * `_maxChars` - \n\n * `_rows` - \n\n * `_placeholder` - \n\n * `_css` - \n\n * `config` - \n\n * `styles` - ",
|
|
6877
7263
|
"attributes": [
|
|
6878
7264
|
{
|
|
6879
7265
|
"name": "readonly",
|
|
@@ -6929,6 +7315,10 @@
|
|
|
6929
7315
|
}
|
|
6930
7316
|
]
|
|
6931
7317
|
},
|
|
7318
|
+
{
|
|
7319
|
+
"name": "umb-toggle-property-editor-value-summary",
|
|
7320
|
+
"attributes": []
|
|
7321
|
+
},
|
|
6932
7322
|
{
|
|
6933
7323
|
"name": "umb-property-editor-ui-value-type",
|
|
6934
7324
|
"description": "Attributes:\n\n * `value` - \n\nProperties:\n\n * `_value` - \n\n * `value` - \n\n * `selectEl` - \n\n * `_options` - \n\n * `config` - ",
|
|
@@ -6949,11 +7339,6 @@
|
|
|
6949
7339
|
"name": "umb-relation-type-collection",
|
|
6950
7340
|
"attributes": []
|
|
6951
7341
|
},
|
|
6952
|
-
{
|
|
6953
|
-
"name": "umb-relation-type-table-collection-view",
|
|
6954
|
-
"description": "Properties:\n\n * `_tableConfig` - \n\n * `_tableColumns` - \n\n * `_tableItems` - \n\n * `styles` - ",
|
|
6955
|
-
"attributes": []
|
|
6956
|
-
},
|
|
6957
7342
|
{
|
|
6958
7343
|
"name": "umb-relation-type-workspace-editor",
|
|
6959
7344
|
"description": "Properties:\n\n * `_name` - \n\n * `_alias` - \n\n * `styles` - ",
|
|
@@ -7012,23 +7397,23 @@
|
|
|
7012
7397
|
},
|
|
7013
7398
|
{
|
|
7014
7399
|
"name": "umb-input-static-file",
|
|
7015
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected files in this input.\n\n * `max` {number} - This is a maximum amount of selected files in this input.\n\n * `
|
|
7400
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected files in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected files in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `value` - \n\n * `pickableFilter` - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected files in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected files in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `pickableFilter` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `styles` - ",
|
|
7016
7401
|
"attributes": [
|
|
7017
7402
|
{
|
|
7018
7403
|
"name": "min",
|
|
7019
7404
|
"description": "`min` {number} - This is a minimum amount of selected files in this input.\n\nProperty: min\n\nDefault: "
|
|
7020
7405
|
},
|
|
7021
7406
|
{
|
|
7022
|
-
"name": "
|
|
7023
|
-
"description": "`
|
|
7407
|
+
"name": "min-message",
|
|
7408
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
7024
7409
|
},
|
|
7025
7410
|
{
|
|
7026
|
-
"name": "
|
|
7027
|
-
"description": "`
|
|
7411
|
+
"name": "max",
|
|
7412
|
+
"description": "`max` {number} - This is a maximum amount of selected files in this input.\n\nProperty: max\n\nDefault: "
|
|
7028
7413
|
},
|
|
7029
7414
|
{
|
|
7030
|
-
"name": "
|
|
7031
|
-
"description": "`
|
|
7415
|
+
"name": "max-message",
|
|
7416
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
7032
7417
|
},
|
|
7033
7418
|
{
|
|
7034
7419
|
"name": "value",
|
|
@@ -7107,6 +7492,10 @@
|
|
|
7107
7492
|
}
|
|
7108
7493
|
]
|
|
7109
7494
|
},
|
|
7495
|
+
{
|
|
7496
|
+
"name": "umb-tags-property-editor-value-summary",
|
|
7497
|
+
"attributes": []
|
|
7498
|
+
},
|
|
7110
7499
|
{
|
|
7111
7500
|
"name": "umb-dashboard-telemetry",
|
|
7112
7501
|
"description": "Properties:\n\n * `_telemetryFormData` - \n\n * `_telemetryLevels` - \n\n * `_errorMessage` {`string`} - \n\n * `_buttonState` - \n\n * `_handleSubmit` - \n\n * `_selectedTelemetryIndex` {`number`} - \n\n * `_selectedTelemetry` - \n\n * `_selectedTelemetryDescription` - \n\n * `styles` - ",
|
|
@@ -7221,23 +7610,23 @@
|
|
|
7221
7610
|
},
|
|
7222
7611
|
{
|
|
7223
7612
|
"name": "umb-stylesheet-input",
|
|
7224
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
7613
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `value` {`string`} - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` {`string`} - \n\n * `_items` - \n\n * `styles` - ",
|
|
7225
7614
|
"attributes": [
|
|
7226
7615
|
{
|
|
7227
7616
|
"name": "min",
|
|
7228
7617
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
7229
7618
|
},
|
|
7230
7619
|
{
|
|
7231
|
-
"name": "
|
|
7232
|
-
"description": "`
|
|
7620
|
+
"name": "min-message",
|
|
7621
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
7233
7622
|
},
|
|
7234
7623
|
{
|
|
7235
|
-
"name": "
|
|
7236
|
-
"description": "`
|
|
7624
|
+
"name": "max",
|
|
7625
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
7237
7626
|
},
|
|
7238
7627
|
{
|
|
7239
|
-
"name": "
|
|
7240
|
-
"description": "`
|
|
7628
|
+
"name": "max-message",
|
|
7629
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
7241
7630
|
},
|
|
7242
7631
|
{
|
|
7243
7632
|
"name": "selection",
|
|
@@ -7281,25 +7670,25 @@
|
|
|
7281
7670
|
},
|
|
7282
7671
|
{
|
|
7283
7672
|
"name": "umb-input-template",
|
|
7284
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
7673
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `defaultUnique` {`string`} - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `defaultUnique` {`string`} - \n\n * `_pickedTemplates` - \n\n * `styles` - ",
|
|
7285
7674
|
"attributes": [
|
|
7286
7675
|
{
|
|
7287
7676
|
"name": "min",
|
|
7288
7677
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: undefined",
|
|
7289
7678
|
"values": []
|
|
7290
7679
|
},
|
|
7680
|
+
{
|
|
7681
|
+
"name": "min-message",
|
|
7682
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
7683
|
+
},
|
|
7291
7684
|
{
|
|
7292
7685
|
"name": "max",
|
|
7293
7686
|
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: undefined",
|
|
7294
7687
|
"values": []
|
|
7295
7688
|
},
|
|
7296
7689
|
{
|
|
7297
|
-
"name": "
|
|
7298
|
-
"description": "`
|
|
7299
|
-
},
|
|
7300
|
-
{
|
|
7301
|
-
"name": "maxMessage",
|
|
7302
|
-
"description": "`maxMessage` {boolean} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
7690
|
+
"name": "max-message",
|
|
7691
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
7303
7692
|
},
|
|
7304
7693
|
{
|
|
7305
7694
|
"name": "selection",
|
|
@@ -7392,7 +7781,7 @@
|
|
|
7392
7781
|
},
|
|
7393
7782
|
{
|
|
7394
7783
|
"name": "umb-input-tiptap",
|
|
7395
|
-
"description": "Attributes:\n\n * `value` {`string`} - \n\n * `label` - \n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `readonly` {`boolean`} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `value` {`string`} - \n\n * `configuration` - \n\n * `label` - \n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `readonly` {`boolean`} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `_editor` - \n\n * `_extensions` - \n\n * `_extensionStyles` - \n\n * `_toolbar` - \n\n * `_statusbar` - \n\n * `styles` - ",
|
|
7784
|
+
"description": "Attributes:\n\n * `value` {`string`} - \n\n * `label` - \n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `readonly` {`boolean`} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\nProperties:\n\n * `value` {`string`} - \n\n * `configuration` - \n\n * `label` - \n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `readonly` {`boolean`} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `_stylesheets` - \n\n * `_editor` - \n\n * `_extensions` - \n\n * `_extensionStyles` - \n\n * `_toolbar` - \n\n * `_statusbar` - \n\n * `styles` - ",
|
|
7396
7785
|
"attributes": [
|
|
7397
7786
|
{
|
|
7398
7787
|
"name": "value",
|
|
@@ -7505,6 +7894,10 @@
|
|
|
7505
7894
|
"description": "Properties:\n\n * `styles` - ",
|
|
7506
7895
|
"attributes": []
|
|
7507
7896
|
},
|
|
7897
|
+
{
|
|
7898
|
+
"name": "umb-tiptap-property-editor-value-summary",
|
|
7899
|
+
"attributes": []
|
|
7900
|
+
},
|
|
7508
7901
|
{
|
|
7509
7902
|
"name": "umb-property-editor-ui-tiptap-toolbar-configuration",
|
|
7510
7903
|
"description": "Properties:\n\n * `_availableExtensions` - \n\n * `_toolbar` - \n\n * `value` - \n\n * `styles` - ",
|
|
@@ -7548,6 +7941,22 @@
|
|
|
7548
7941
|
}
|
|
7549
7942
|
]
|
|
7550
7943
|
},
|
|
7944
|
+
{
|
|
7945
|
+
"name": "ufm-element-name",
|
|
7946
|
+
"description": "Attributes:\n\n * `alias` - \n\n * `filters` - \n\nProperties:\n\n * `alias` - \n\n * `filters` - \n\n * `value` {`unknown`} - ",
|
|
7947
|
+
"attributes": [
|
|
7948
|
+
{
|
|
7949
|
+
"name": "alias",
|
|
7950
|
+
"description": "`alias` - \n\nProperty: alias",
|
|
7951
|
+
"values": []
|
|
7952
|
+
},
|
|
7953
|
+
{
|
|
7954
|
+
"name": "filters",
|
|
7955
|
+
"description": "`filters` - \n\nProperty: filters",
|
|
7956
|
+
"values": []
|
|
7957
|
+
}
|
|
7958
|
+
]
|
|
7959
|
+
},
|
|
7551
7960
|
{
|
|
7552
7961
|
"name": "ufm-label-value",
|
|
7553
7962
|
"description": "Attributes:\n\n * `alias` - \n\n * `filters` - \n\nProperties:\n\n * `alias` - \n\n * `filters` - \n\n * `value` {`unknown`} - ",
|
|
@@ -7596,6 +8005,22 @@
|
|
|
7596
8005
|
}
|
|
7597
8006
|
]
|
|
7598
8007
|
},
|
|
8008
|
+
{
|
|
8009
|
+
"name": "ufm-member-name",
|
|
8010
|
+
"description": "Attributes:\n\n * `alias` - \n\n * `filters` - \n\nProperties:\n\n * `alias` - \n\n * `filters` - \n\n * `value` {`unknown`} - ",
|
|
8011
|
+
"attributes": [
|
|
8012
|
+
{
|
|
8013
|
+
"name": "alias",
|
|
8014
|
+
"description": "`alias` - \n\nProperty: alias",
|
|
8015
|
+
"values": []
|
|
8016
|
+
},
|
|
8017
|
+
{
|
|
8018
|
+
"name": "filters",
|
|
8019
|
+
"description": "`filters` - \n\nProperty: filters",
|
|
8020
|
+
"values": []
|
|
8021
|
+
}
|
|
8022
|
+
]
|
|
8023
|
+
},
|
|
7599
8024
|
{
|
|
7600
8025
|
"name": "umb-ufm-js-expression",
|
|
7601
8026
|
"description": "Properties:\n\n * `value` {`unknown`} - ",
|
|
@@ -7603,7 +8028,7 @@
|
|
|
7603
8028
|
},
|
|
7604
8029
|
{
|
|
7605
8030
|
"name": "umb-ufm-render",
|
|
7606
|
-
"description": "
|
|
8031
|
+
"description": "Events:\n\n * `umb-ufm-resolved` - \n\nAttributes:\n\n * `inline` {`boolean`} - \n\n * `markdown` - \n\nProperties:\n\n * `inline` {`boolean`} - \n\n * `markdown` - \n\n * `value` {`unknown`} - \n\n * `styles` - ",
|
|
7607
8032
|
"attributes": [
|
|
7608
8033
|
{
|
|
7609
8034
|
"name": "inline",
|
|
@@ -7613,6 +8038,10 @@
|
|
|
7613
8038
|
"name": "markdown",
|
|
7614
8039
|
"description": "`markdown` - \n\nProperty: markdown",
|
|
7615
8040
|
"values": []
|
|
8041
|
+
},
|
|
8042
|
+
{
|
|
8043
|
+
"name": "onumb-ufm-resolved",
|
|
8044
|
+
"description": "`umb-ufm-resolved` - "
|
|
7616
8045
|
}
|
|
7617
8046
|
]
|
|
7618
8047
|
},
|
|
@@ -7731,23 +8160,23 @@
|
|
|
7731
8160
|
},
|
|
7732
8161
|
{
|
|
7733
8162
|
"name": "umb-user-group-input",
|
|
7734
|
-
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `
|
|
8163
|
+
"description": "Attributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `value` {`string`} - \n\nProperties:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` {`string`} - \n\n * `_items` - \n\n * `_statuses` - \n\n * `_editUserGroupPath` {`string`} - \n\n * `styles` - ",
|
|
7735
8164
|
"attributes": [
|
|
7736
8165
|
{
|
|
7737
8166
|
"name": "min",
|
|
7738
8167
|
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: "
|
|
7739
8168
|
},
|
|
7740
8169
|
{
|
|
7741
|
-
"name": "
|
|
7742
|
-
"description": "`
|
|
8170
|
+
"name": "min-message",
|
|
8171
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
7743
8172
|
},
|
|
7744
8173
|
{
|
|
7745
|
-
"name": "
|
|
7746
|
-
"description": "`
|
|
8174
|
+
"name": "max",
|
|
8175
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: "
|
|
7747
8176
|
},
|
|
7748
8177
|
{
|
|
7749
|
-
"name": "
|
|
7750
|
-
"description": "`
|
|
8178
|
+
"name": "max-message",
|
|
8179
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
7751
8180
|
},
|
|
7752
8181
|
{
|
|
7753
8182
|
"name": "value",
|
|
@@ -7933,21 +8362,6 @@
|
|
|
7933
8362
|
"name": "umb-user-collection",
|
|
7934
8363
|
"attributes": []
|
|
7935
8364
|
},
|
|
7936
|
-
{
|
|
7937
|
-
"name": "umb-user-table-name-column-layout",
|
|
7938
|
-
"description": "Properties:\n\n * `column` - \n\n * `value` - \n\n * `styles` - ",
|
|
7939
|
-
"attributes": []
|
|
7940
|
-
},
|
|
7941
|
-
{
|
|
7942
|
-
"name": "umb-user-table-status-column-layout",
|
|
7943
|
-
"description": "Properties:\n\n * `value` - ",
|
|
7944
|
-
"attributes": []
|
|
7945
|
-
},
|
|
7946
|
-
{
|
|
7947
|
-
"name": "umb-user-table-collection-view",
|
|
7948
|
-
"description": "Properties:\n\n * `_tableColumns` - \n\n * `_tableItems` - \n\n * `_userGroupItems` - \n\n * `_items` - \n\n * `styles` - ",
|
|
7949
|
-
"attributes": []
|
|
7950
|
-
},
|
|
7951
8365
|
{
|
|
7952
8366
|
"name": "umb-user-avatar",
|
|
7953
8367
|
"description": "Attributes:\n\n * `name` - \n\n * `kind` - \n\nProperties:\n\n * `name` - \n\n * `kind` - \n\n * `imgUrls` - \n\n * `_imgSrcSizes` - \n\n * `_imgSrc` {`string`} - \n\n * `_hasImgUrls` {`boolean`} - \n\n * `avatarElement` - \n\n * `styles` - ",
|
|
@@ -7993,7 +8407,7 @@
|
|
|
7993
8407
|
},
|
|
7994
8408
|
{
|
|
7995
8409
|
"name": "umb-user-input",
|
|
7996
|
-
"description": "Attributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {
|
|
8410
|
+
"description": "Attributes:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `min-message` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `max-message` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\nProperties:\n\n * `readonly` {boolean} - Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.\n\n * `required` {boolean} - Sets the input to required, meaning validation will fail if the value is empty.\n\n * `requiredMessage` - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `minMessage` {string} - Min validation message.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `maxMessage` {string} - Max validation message.\n\n * `selection` - \n\n * `value` - \n\n * `_items` - \n\n * `_statuses` - \n\n * `_modalRoute` - \n\n * `styles` - ",
|
|
7997
8411
|
"attributes": [
|
|
7998
8412
|
{
|
|
7999
8413
|
"name": "readonly",
|
|
@@ -8015,7 +8429,7 @@
|
|
|
8015
8429
|
},
|
|
8016
8430
|
{
|
|
8017
8431
|
"name": "min-message",
|
|
8018
|
-
"description": "`min-message` {
|
|
8432
|
+
"description": "`min-message` {string} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
8019
8433
|
},
|
|
8020
8434
|
{
|
|
8021
8435
|
"name": "max",
|
|
@@ -8023,7 +8437,7 @@
|
|
|
8023
8437
|
},
|
|
8024
8438
|
{
|
|
8025
8439
|
"name": "max-message",
|
|
8026
|
-
"description": "`max-message` {
|
|
8440
|
+
"description": "`max-message` {string} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
8027
8441
|
},
|
|
8028
8442
|
{
|
|
8029
8443
|
"name": "selection",
|
|
@@ -8108,6 +8522,10 @@
|
|
|
8108
8522
|
}
|
|
8109
8523
|
]
|
|
8110
8524
|
},
|
|
8525
|
+
{
|
|
8526
|
+
"name": "umb-user-picker-property-editor-value-summary",
|
|
8527
|
+
"attributes": []
|
|
8528
|
+
},
|
|
8111
8529
|
{
|
|
8112
8530
|
"name": "umb-user-state-value-summary",
|
|
8113
8531
|
"attributes": []
|