Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { UMB_CLIPBOARD_ENTRY_ENTITY_TYPE } from '../entity.js';
import { UMB_CLIPBOARD_ENTRY_ITEM_REPOSITORY_ALIAS } from '../item/index.js';
import { UMB_CLIPBOARD_ENTRY_DETAIL_REPOSITORY_ALIAS, UMB_CLIPBOARD_ENTRY_DETAIL_STORE_ALIAS } from './constants.js';
import { UmbClipboardEntryDetailStore } from './clipboard-entry-detail.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -13,7 +14,7 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_CLIPBOARD_ENTRY_DETAIL_STORE_ALIAS,
name: 'Clipboard Detail Store',
api: () => import('./clipboard-entry-detail.store.js'),
api: UmbClipboardEntryDetailStore,
},
{
type: 'entityAction',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_CLIPBOARD_ENTRY_ITEM_REPOSITORY_ALIAS, UMB_CLIPBOARD_ENTRY_ITEM_STORE_ALIAS } from './constants.js';
import { UmbClipboardEntryItemStore } from './clipboard-entry-item.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'itemStore',
alias: UMB_CLIPBOARD_ENTRY_ITEM_STORE_ALIAS,
name: 'Clipboard Entry Item Store',
api: () => import('./clipboard-entry-item.store.js'),
api: UmbClipboardEntryItemStore,
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
UMB_PROPERTY_EDITOR_DATA_SOURCE_ITEM_REPOSITORY_ALIAS,
UMB_PROPERTY_EDITOR_DATA_SOURCE_ITEM_STORE_ALIAS,
} from './constants.js';
import { UmbPropertyEditorDataSourceItemStore } from './item.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -14,6 +15,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'itemStore',
alias: UMB_PROPERTY_EDITOR_DATA_SOURCE_ITEM_STORE_ALIAS,
name: 'Property Editor Data Source Item Store',
api: () => import('./item.store.js'),
api: UmbPropertyEditorDataSourceItemStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { UMB_TEMPORARY_FILE_CONFIG_STORE_ALIAS, UMB_TEMPORARY_FILE_REPOSITORY_ALIAS } from './constants.js';
import { UmbTemporaryFileConfigStore } from './config.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
type: 'store',
alias: UMB_TEMPORARY_FILE_CONFIG_STORE_ALIAS,
name: 'Temporary File Config Store',
api: () => import('./config.store.js'),
api: UmbTemporaryFileConfigStore,
},
{
type: 'repository',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DATA_TYPE_DETAIL_REPOSITORY_ALIAS, UMB_DATA_TYPE_DETAIL_STORE_ALIAS } from './constants.js';
import { UmbDataTypeDetailStore } from './data-type-detail.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_DATA_TYPE_DETAIL_STORE_ALIAS,
name: 'Data Type Detail Store',
api: () => import('./data-type-detail.store.js'),
api: UmbDataTypeDetailStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DATA_TYPE_ITEM_REPOSITORY_ALIAS, UMB_DATA_TYPE_STORE_ALIAS } from './constants.js';
import { UmbDataTypeItemStore } from './data-type-item.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'itemStore',
alias: UMB_DATA_TYPE_STORE_ALIAS,
name: 'Data Type Item Store',
api: () => import('./data-type-item.store.js'),
api: UmbDataTypeItemStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DATA_TYPE_FOLDER_REPOSITORY_ALIAS, UMB_DATA_TYPE_FOLDER_STORE_ALIAS } from './constants.js';
import { UmbDataTypeFolderStore } from './data-type-folder.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_DATA_TYPE_FOLDER_STORE_ALIAS,
name: 'Data Type Folder Store',
api: () => import('./data-type-folder.store.js'),
api: UmbDataTypeFolderStore,
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
UMB_DATA_TYPE_TREE_REPOSITORY_ALIAS,
UMB_DATA_TYPE_TREE_STORE_ALIAS,
} from './constants.js';
import { UmbDataTypeTreeStore } from './data-type-tree.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -17,7 +18,7 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'treeStore',
alias: UMB_DATA_TYPE_TREE_STORE_ALIAS,
name: 'Data Type Tree Store',
api: () => import('./data-type-tree.store.js'),
api: UmbDataTypeTreeStore,
},
{
type: 'tree',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { UMB_DICTIONARY_DETAIL_REPOSITORY_ALIAS, UMB_DICTIONARY_DETAIL_STORE_ALIAS } from './constants.js';
import { UmbDictionaryDetailStore } from './dictionary-detail.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
type: 'repository',
Expand All @@ -10,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_DICTIONARY_DETAIL_STORE_ALIAS,
name: 'Dictionary Detail Store',
api: () => import('./dictionary-detail.store.js'),
api: UmbDictionaryDetailStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DICTIONARY_ITEM_REPOSITORY_ALIAS, UMB_DICTIONARY_STORE_ALIAS } from './constants.js';
import { UmbDictionaryItemStore } from './dictionary-item.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'itemStore',
alias: UMB_DICTIONARY_STORE_ALIAS,
name: 'Dictionary Item Store',
api: () => import('./dictionary-item.store.js'),
api: UmbDictionaryItemStore,
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
UMB_DICTIONARY_TREE_REPOSITORY_ALIAS,
UMB_DICTIONARY_TREE_STORE_ALIAS,
} from './constants.js';
import { UmbDictionaryTreeStore } from './dictionary-tree.store.js';
import { manifests as reloadTreeItemChildrenManifests } from './reload-tree-item-children/manifests.js';

export const manifests: Array<UmbExtensionManifest> = [
Expand All @@ -17,7 +18,7 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'treeStore',
alias: UMB_DICTIONARY_TREE_STORE_ALIAS,
name: 'Dictionary Tree Store',
api: () => import('./dictionary-tree.store.js'),
api: UmbDictionaryTreeStore,
},
{
type: 'tree',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
UMB_DOCUMENT_BLUEPRINT_DETAIL_REPOSITORY_ALIAS,
UMB_DOCUMENT_BLUEPRINT_DETAIL_STORE_ALIAS,
} from './constants.js';
import { UmbDocumentBlueprintDetailStore } from './document-blueprint-detail.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -14,6 +15,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_DOCUMENT_BLUEPRINT_DETAIL_STORE_ALIAS,
name: 'Document Blueprint Detail Store',
api: () => import('./document-blueprint-detail.store.js'),
api: UmbDocumentBlueprintDetailStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DOCUMENT_BLUEPRINT_ITEM_REPOSITORY_ALIAS, UMB_DOCUMENT_BLUEPRINT_STORE_ALIAS } from './constants.js';
import { UmbDocumentBlueprintItemStore } from './document-blueprint-item.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'itemStore',
alias: UMB_DOCUMENT_BLUEPRINT_STORE_ALIAS,
name: 'Document Blueprint Item Store',
api: () => import('./document-blueprint-item.store.js'),
api: UmbDocumentBlueprintItemStore,
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
UMB_DOCUMENT_BLUEPRINT_FOLDER_REPOSITORY_ALIAS,
UMB_DOCUMENT_BLUEPRINT_FOLDER_STORE_ALIAS,
} from './constants.js';
import { UmbDocumentBlueprintFolderStore } from './document-blueprint-folder.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -14,6 +15,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_DOCUMENT_BLUEPRINT_FOLDER_STORE_ALIAS,
name: 'Document Blueprint Folder Store',
api: () => import('./document-blueprint-folder.store.js'),
api: UmbDocumentBlueprintFolderStore,
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
UMB_DOCUMENT_BLUEPRINT_TREE_REPOSITORY_ALIAS,
UMB_DOCUMENT_BLUEPRINT_TREE_STORE_ALIAS,
} from './constants.js';
import { UmbDocumentBlueprintTreeStore } from './document-blueprint-tree.store.js';
import { manifests as folderManifests } from './folder/manifests.js';
import { manifests as reloadManifests } from './reload-tree-item-children/manifests.js';

Expand All @@ -22,7 +23,7 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'treeStore',
alias: UMB_DOCUMENT_BLUEPRINT_TREE_STORE_ALIAS,
name: 'Document Blueprint Tree Store',
api: () => import('./document-blueprint-tree.store.js'),
api: UmbDocumentBlueprintTreeStore,
},
{
type: 'tree',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DOCUMENT_TYPE_DETAIL_REPOSITORY_ALIAS, UMB_DOCUMENT_TYPE_DETAIL_STORE_ALIAS } from './constants.js';
import { UmbDocumentTypeDetailStore } from './document-type-detail.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_DOCUMENT_TYPE_DETAIL_STORE_ALIAS,
name: 'Document Type Store',
api: () => import('./document-type-detail.store.js'),
api: UmbDocumentTypeDetailStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DOCUMENT_TYPE_ITEM_REPOSITORY_ALIAS, UMB_DOCUMENT_TYPE_ITEM_STORE_ALIAS } from './constants.js';
import { UmbDocumentTypeItemStore } from './document-type-item.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'itemStore',
alias: UMB_DOCUMENT_TYPE_ITEM_STORE_ALIAS,
name: 'Document Type Item Store',
api: () => import('./document-type-item.store.js'),
api: UmbDocumentTypeItemStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DOCUMENT_TYPE_FOLDER_REPOSITORY_ALIAS, UMB_DOCUMENT_TYPE_FOLDER_STORE_ALIAS } from './constants.js';
import { UmbDocumentTypeFolderStore } from './document-type-folder.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_DOCUMENT_TYPE_FOLDER_STORE_ALIAS,
name: 'Document Type Folder Store',
api: () => import('./document-type-folder.store.js'),
api: UmbDocumentTypeFolderStore,
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
UMB_DOCUMENT_TYPE_FOLDER_WORKSPACE_ALIAS,
UMB_DOCUMENT_TYPE_TREE_ITEM_CHILDREN_COLLECTION_ALIAS,
} from './constants.js';
import { UmbDocumentTypeTreeStore } from './document-type.tree.store.js';
import { manifests as folderManifests } from './folder/manifests.js';
import { manifests as treeItemChildrenManifests } from './tree-item-children/manifests.js';
import { UMB_WORKSPACE_CONDITION_ALIAS } from '@umbraco-cms/backoffice/workspace';
Expand All @@ -23,7 +24,7 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'treeStore',
alias: UMB_DOCUMENT_TYPE_TREE_STORE_ALIAS,
name: 'Document Type Tree Store',
api: () => import('./document-type.tree.store.js'),
api: UmbDocumentTypeTreeStore,
},
{
type: 'tree',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DOCUMENT_ITEM_REPOSITORY_ALIAS, UMB_DOCUMENT_STORE_ALIAS } from './constants.js';
import { UmbDocumentItemStore } from './document-item.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'itemStore',
alias: UMB_DOCUMENT_STORE_ALIAS,
name: 'Document Item Store',
api: () => import('./document-item.store.js'),
api: UmbDocumentItemStore,
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
UMB_DOCUMENT_RECYCLE_BIN_TREE_REPOSITORY_ALIAS,
UMB_DOCUMENT_RECYCLE_BIN_TREE_STORE_ALIAS,
} from '../constants.js';
import { UmbDocumentRecycleBinTreeStore } from './document-recycle-bin-tree.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -14,6 +15,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'treeStore',
alias: UMB_DOCUMENT_RECYCLE_BIN_TREE_STORE_ALIAS,
name: 'Document Recycle Bin Tree Store',
api: () => import('./document-recycle-bin-tree.store.js'),
api: UmbDocumentRecycleBinTreeStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DOCUMENT_DETAIL_REPOSITORY_ALIAS, UMB_DOCUMENT_DETAIL_STORE_ALIAS } from './constants.js';
import { UmbDocumentDetailStore } from './document-detail.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_DOCUMENT_DETAIL_STORE_ALIAS,
name: 'Document Detail Store',
api: () => import('./document-detail.store.js'),
api: UmbDocumentDetailStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { UMB_DOCUMENT_ENTITY_TYPE, UMB_DOCUMENT_ROOT_ENTITY_TYPE } from '../entity.js';
import { manifests as reloadTreeItemChildrenManifests } from './reload-tree-item-children/manifests.js';
import { UmbDocumentTreeStore } from './document-tree.store.js';

export const UMB_DOCUMENT_TREE_REPOSITORY_ALIAS = 'Umb.Repository.Document.Tree';
/**
Expand All @@ -19,7 +20,7 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'treeStore',
alias: UMB_DOCUMENT_TREE_STORE_ALIAS,
name: 'Document Tree Store',
api: () => import('./document-tree.store.js'),
api: UmbDocumentTreeStore,
},
{
type: 'tree',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_DOCUMENT_URL_REPOSITORY_ALIAS, UMB_DOCUMENT_URL_STORE_ALIAS } from './constants.js';
import { UmbDocumentUrlStore } from './document-url.store.js';
import type { ManifestItemStore, ManifestRepository } from '@umbraco-cms/backoffice/extension-registry';

const urlRepository: ManifestRepository = {
Expand All @@ -12,7 +13,7 @@ const urlStore: ManifestItemStore = {
type: 'itemStore',
alias: UMB_DOCUMENT_URL_STORE_ALIAS,
name: 'Document Url Store',
api: () => import('./document-url.store.js'),
api: UmbDocumentUrlStore,
};

export const manifests = [urlRepository, urlStore];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_LANGUAGE_DETAIL_REPOSITORY_ALIAS, UMB_LANGUAGE_DETAIL_STORE_ALIAS } from './constants.js';
import { UmbLanguageDetailStore } from './language-detail.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'store',
alias: UMB_LANGUAGE_DETAIL_STORE_ALIAS,
name: 'Language Detail Store',
api: () => import('./language-detail.store.js'),
api: UmbLanguageDetailStore,
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { UMB_LANGUAGE_ITEM_REPOSITORY_ALIAS, UMB_LANGUAGE_STORE_ALIAS } from './constants.js';
import { UmbLanguageItemStore } from './language-item.store.js';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -11,6 +12,6 @@ export const manifests: Array<UmbExtensionManifest> = [
type: 'itemStore',
alias: UMB_LANGUAGE_STORE_ALIAS,
name: 'Language Item Store',
api: () => import('./language-item.store.js'),
api: UmbLanguageItemStore,
},
];
Loading
Loading