Merge branch 'main' into chore/profile-theme
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { html, customElement, css, property, when, nothing, state } from '@umbraco-cms/backoffice/external/lit';
|
||||
import { html, customElement, css, property, when, nothing } from '@umbraco-cms/backoffice/external/lit';
|
||||
import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api';
|
||||
import { UUIRefElement, UUIRefEvent, UUIRefNodeElement } from '@umbraco-cms/backoffice/external/uui';
|
||||
|
||||
|
||||
@@ -5,13 +5,13 @@ const modals: Array<ManifestModal> = [
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.CompositionPicker',
|
||||
name: 'ContentType Composition Picker Modal',
|
||||
js: () => import('./composition-picker/composition-picker-modal.element.js'),
|
||||
element: () => import('./composition-picker/composition-picker-modal.element.js'),
|
||||
},
|
||||
{
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.PropertyTypeSettings',
|
||||
name: 'Property Type Settings Modal',
|
||||
js: () => import('./property-type-settings/property-type-settings-modal.element.js'),
|
||||
element: () => import('./property-type-settings/property-type-settings-modal.element.js'),
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ const modals: Array<ManifestModal> = [
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.ContextDebugger',
|
||||
name: 'Context Debugger Modal',
|
||||
js: () => import('./modals/debug/debug-modal.element.js'),
|
||||
element: () => import('./modals/debug/debug-modal.element.js'),
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import { UmbExtensionCollectionRepository } from './extension-collection.repository.js';
|
||||
import type { ManifestRepository } from '@umbraco-cms/backoffice/extension-registry';
|
||||
|
||||
export const UMB_EXTENSION_COLLECTION_REPOSITORY_ALIAS = 'Umb.Repository.ExtensionCollection';
|
||||
@@ -7,7 +6,7 @@ const repository: ManifestRepository = {
|
||||
type: 'repository',
|
||||
alias: UMB_EXTENSION_COLLECTION_REPOSITORY_ALIAS,
|
||||
name: 'Extension Collection Repository',
|
||||
api: UmbExtensionCollectionRepository,
|
||||
api: () => import('./extension-collection.repository.js'),
|
||||
};
|
||||
|
||||
export const manifests = [repository];
|
||||
|
||||
@@ -7,7 +7,7 @@ const tableCollectionView: ManifestCollectionView = {
|
||||
type: 'collectionView',
|
||||
alias: UMB_EXTENSION_TABLE_COLLECTION_VIEW_ALIAS,
|
||||
name: 'Extension Table Collection View',
|
||||
js: () => import('./table/extension-table-collection-view.element.js'),
|
||||
element: () => import('./table/extension-table-collection-view.element.js'),
|
||||
meta: {
|
||||
label: 'Table',
|
||||
icon: 'icon-list',
|
||||
|
||||
@@ -22,7 +22,6 @@ export class UmbConfirmModalController extends UmbControllerBase {
|
||||
// This is a one time off, so we can destroy our selfs.
|
||||
this.destroy();
|
||||
|
||||
// Map back into UmbVariantId instances:
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,31 +5,31 @@ const modals: Array<ManifestModal> = [
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.Confirm',
|
||||
name: 'Confirm Modal',
|
||||
js: () => import('./confirm/confirm-modal.element.js'),
|
||||
element: () => import('./confirm/confirm-modal.element.js'),
|
||||
},
|
||||
{
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.IconPicker',
|
||||
name: 'Icon Picker Modal',
|
||||
js: () => import('./icon-picker/icon-picker-modal.element.js'),
|
||||
element: () => import('./icon-picker/icon-picker-modal.element.js'),
|
||||
},
|
||||
{
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.LinkPicker',
|
||||
name: 'Link Picker Modal',
|
||||
js: () => import('./link-picker/link-picker-modal.element.js'),
|
||||
element: () => import('./link-picker/link-picker-modal.element.js'),
|
||||
},
|
||||
{
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.CodeEditor',
|
||||
name: 'Code Editor Modal',
|
||||
js: () => import('./code-editor/code-editor-modal.element.js'),
|
||||
element: () => import('./code-editor/code-editor-modal.element.js'),
|
||||
},
|
||||
{
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.EmbeddedMedia',
|
||||
name: 'Embedded Media Modal',
|
||||
js: () => import('./embedded-media/embedded-media-modal.element.js'),
|
||||
element: () => import('./embedded-media/embedded-media-modal.element.js'),
|
||||
},
|
||||
{
|
||||
type: 'modal',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { umbExtensionsRegistry, type ManifestPropertyEditorUi } from '../../extension-registry/index.js';
|
||||
import { UmbPropertyContext } from './property.context.js';
|
||||
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
|
||||
import { css, html, customElement, property, state, ifDefined } from '@umbraco-cms/backoffice/external/lit';
|
||||
import { css, html, customElement, property, state, ifDefined, nothing } from '@umbraco-cms/backoffice/external/lit';
|
||||
import { createExtensionElement } from '@umbraco-cms/backoffice/extension-api';
|
||||
import type { UmbObserverController } from '@umbraco-cms/backoffice/observable-api';
|
||||
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
|
||||
@@ -223,12 +223,12 @@ export class UmbPropertyElement extends UmbLitElement {
|
||||
}
|
||||
|
||||
private _renderPropertyActionMenu() {
|
||||
return html`${this._propertyEditorUiAlias
|
||||
return this._propertyEditorUiAlias
|
||||
? html`<umb-property-action-menu
|
||||
slot="action-menu"
|
||||
id="action-menu"
|
||||
.propertyEditorUiAlias=${this._propertyEditorUiAlias}></umb-property-action-menu>`
|
||||
: ''}`;
|
||||
: nothing;
|
||||
}
|
||||
|
||||
static styles = [
|
||||
|
||||
@@ -6,6 +6,6 @@ export const manifests = [
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.RecycleBin.Restore',
|
||||
name: 'Restore From Recycle Bin Modal',
|
||||
js: () => import('./modal/restore-from-recycle-bin-modal.element.js'),
|
||||
element: () => import('./modal/restore-from-recycle-bin-modal.element.js'),
|
||||
},
|
||||
];
|
||||
|
||||
@@ -5,7 +5,7 @@ export const themes: Array<ManifestGlobalContext | ManifestTheme> = [
|
||||
type: 'globalContext',
|
||||
alias: 'Umb.GlobalContext.Theme',
|
||||
name: 'Theme Context',
|
||||
js: () => import('./theme.context.js'),
|
||||
api: () => import('./theme.context.js'),
|
||||
},
|
||||
{
|
||||
type: 'theme',
|
||||
|
||||
@@ -3,6 +3,6 @@ export const manifests = [
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.TreePicker',
|
||||
name: 'Tree Picker Modal',
|
||||
js: () => import('./tree-picker-modal.element.js'),
|
||||
element: () => import('./tree-picker-modal.element.js'),
|
||||
},
|
||||
];
|
||||
|
||||
@@ -20,7 +20,7 @@ const entityActions: Array<ManifestTypes> = [
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.DataTypeCreateOptions',
|
||||
name: 'Data Type Create Options Modal',
|
||||
js: () => import('./modal/data-type-create-options-modal.element.js'),
|
||||
element: () => import('./modal/data-type-create-options-modal.element.js'),
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -5,19 +5,19 @@ const modals: Array<ManifestModal> = [
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.PropertyEditorUiPicker',
|
||||
name: 'Property Editor UI Picker Modal',
|
||||
js: () => import('./property-editor-ui-picker/property-editor-ui-picker-modal.element.js'),
|
||||
element: () => import('./property-editor-ui-picker/property-editor-ui-picker-modal.element.js'),
|
||||
},
|
||||
{
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.DataTypePickerFlow',
|
||||
name: 'Data Type Picker Flow Modal',
|
||||
js: () => import('./data-type-picker-flow/data-type-picker-flow-modal.element.js'),
|
||||
element: () => import('./data-type-picker-flow/data-type-picker-flow-modal.element.js'),
|
||||
},
|
||||
{
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.DataTypePickerFlowDataTypePicker',
|
||||
name: 'Data Type Picker Flow UI Picker Modal',
|
||||
js: () => import('./data-type-picker-flow/data-type-picker-flow-data-type-picker-modal.element.js'),
|
||||
element: () => import('./data-type-picker-flow/data-type-picker-flow-data-type-picker-modal.element.js'),
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ const workspaceViews: Array<ManifestWorkspaceView> = [
|
||||
type: 'workspaceView',
|
||||
alias: 'Umb.WorkspaceView.DataType.Edit',
|
||||
name: 'Data Type Workspace Edit View',
|
||||
js: () => import('./views/details/data-type-details-workspace-view.element.js'),
|
||||
element: () => import('./views/details/data-type-details-workspace-view.element.js'),
|
||||
weight: 90,
|
||||
meta: {
|
||||
label: '#general_details',
|
||||
@@ -41,7 +41,7 @@ const workspaceViews: Array<ManifestWorkspaceView> = [
|
||||
type: 'workspaceView',
|
||||
alias: 'Umb.WorkspaceView.DataType.Info',
|
||||
name: 'Data Type Workspace Info View',
|
||||
js: () => import('./views/info/workspace-view-data-type-info.element.js'),
|
||||
element: () => import('./views/info/workspace-view-data-type-info.element.js'),
|
||||
weight: 90,
|
||||
meta: {
|
||||
label: '#general_info',
|
||||
|
||||
@@ -5,7 +5,7 @@ const dashboards: Array<ManifestDashboard> = [
|
||||
type: 'dashboard',
|
||||
alias: 'Umb.Dashboard.RedirectManagement',
|
||||
name: 'Redirect Management Dashboard',
|
||||
js: () => import('./redirect-management/dashboard-redirect-management.element.js'),
|
||||
element: () => import('./redirect-management/dashboard-redirect-management.element.js'),
|
||||
weight: 10,
|
||||
meta: {
|
||||
label: '#dashboardTabs_contentRedirectManager',
|
||||
|
||||
@@ -5,7 +5,7 @@ const entityActions: Array<ManifestTypes> = [
|
||||
type: 'modal',
|
||||
alias: 'Umb.Modal.DocumentBlueprintCreateOptions',
|
||||
name: 'Document Blueprint Create Options Modal',
|
||||
js: () => import('./modal/document-blueprint-create-options-modal.element.js'),
|
||||
element: () => import('./modal/document-blueprint-create-options-modal.element.js'),
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -37,6 +37,7 @@ export class UmbDocumentCollectionServerDataSource implements UmbCollectionDataS
|
||||
|
||||
const model: UmbDocumentCollectionItemModel = {
|
||||
unique: item.id,
|
||||
entityType: 'document',
|
||||
contentTypeAlias: item.documentType.alias,
|
||||
createDate: new Date(variant.createDate),
|
||||
creator: item.creator,
|
||||
|
||||
@@ -11,6 +11,7 @@ export interface UmbDocumentCollectionFilterModel extends UmbCollectionFilterMod
|
||||
|
||||
export interface UmbDocumentCollectionItemModel {
|
||||
unique: string;
|
||||
entityType: string;
|
||||
contentTypeAlias: string;
|
||||
createDate: Date;
|
||||
creator?: string | null;
|
||||
|
||||
@@ -5,6 +5,6 @@ export const manifests: Array<ManifestGlobalContext> = [
|
||||
type: 'globalContext',
|
||||
alias: 'Umb.GlobalContext.DocumentConfiguration',
|
||||
name: 'Document Configuration Context',
|
||||
js: () => import('./document-configuration.context.js'),
|
||||
api: () => import('./document-configuration.context.js'),
|
||||
},
|
||||
];
|
||||
|
||||
@@ -5,6 +5,6 @@ export const manifests: Array<ManifestGlobalContext> = [
|
||||
type: 'globalContext',
|
||||
alias: 'Umb.GlobalContext.AppLanguage',
|
||||
name: 'App Language Context',
|
||||
js: () => import('./app-language.context.js'),
|
||||
api: () => import('./app-language.context.js'),
|
||||
},
|
||||
];
|
||||
|
||||
@@ -106,7 +106,7 @@ export class UmbPropertyEditorUIImageCropsConfigurationElement
|
||||
return html`
|
||||
<uui-form>
|
||||
<form @submit=${this.#onSubmit}>
|
||||
<div class="input">
|
||||
<div class="input">
|
||||
<uui-label for="label">Label</uui-label>
|
||||
<uui-input label="Label" id="label" name="label" type="text" autocomplete="false" value=""></uui-input>
|
||||
</div>
|
||||
@@ -139,8 +139,14 @@ export class UmbPropertyEditorUIImageCropsConfigurationElement
|
||||
<span><strong>${item.label}</strong> <em>(${item.alias})</em></span>
|
||||
<span class="crop-size">(${item.width} x ${item.height}px)</span>
|
||||
<div class="crop-actions">
|
||||
<uui-button label="Edit" @click=${() => this.#onEdit(item)}>Edit</uui-button>
|
||||
<uui-button label="Remove" color="danger" @click=${() => this.#onRemove(item.alias)}>Remove</uui-button>
|
||||
<uui-button
|
||||
label=${this.localize.term('general_edit')}
|
||||
color="default"
|
||||
@click=${() => this.#onEdit(item)}></uui-button>
|
||||
<uui-button
|
||||
label=${this.localize.term('general_remove')}
|
||||
color="danger"
|
||||
@click=${() => this.#onRemove(item.alias)}></uui-button>
|
||||
</div>
|
||||
</div>
|
||||
`,
|
||||
|
||||
@@ -56,7 +56,7 @@ export class UmbPropertyEditorUITagsElement extends UmbLitElement implements Umb
|
||||
|
||||
render() {
|
||||
return html`<umb-tags-input
|
||||
group="${ifDefined(this._group)}"
|
||||
group=${ifDefined(this._group)}
|
||||
.culture=${this._culture}
|
||||
.items=${this.value}
|
||||
@change=${this.#onChange}></umb-tags-input>`;
|
||||
|
||||
@@ -4,7 +4,7 @@ export const dashboard: ManifestDashboard = {
|
||||
type: 'dashboard',
|
||||
alias: 'Umb.Dashboard.UmbracoNews',
|
||||
name: 'Umbraco News Dashboard',
|
||||
js: () => import('./umbraco-news-dashboard.element.js'),
|
||||
element: () => import('./umbraco-news-dashboard.element.js'),
|
||||
weight: 20,
|
||||
meta: {
|
||||
label: '#dashboardTabs_contentIntro',
|
||||
|
||||
Reference in New Issue
Block a user