delete unused consts

This commit is contained in:
Mads Rasmussen
2023-11-15 12:15:12 +01:00
parent 8b3191251b
commit 0aba6e4b06
4 changed files with 5 additions and 9 deletions

View File

@@ -3,10 +3,3 @@ export const UMB_STYLESHEET_ROOT_ENTITY_TYPE = 'stylesheet-root';
export const UMB_STYLESHEET_FOLDER_ENTITY_TYPE = 'stylesheet-folder';
export const UMB_STYLESHEET_FOLDER_EMPTY_ENTITY_TYPE = 'stylesheet-folder-empty';
export const UMB_STYLESHEET_REPOSITORY_ALIAS = 'Umb.Repository.Stylesheet';
export const UMB_STYLESHEET_TREE_STORE_CONTEXT_TOKEN_ALIAS = 'Umb.Store.Stylesheet.Tree';
export const UMB_STYLESHEET_STORE_CONTEXT_TOKEN_ALIAS = 'Umb.Store.Stylesheet';
export const UMB_STYLESHEET_STORE_ALIAS = 'Umb.Store.Stylesheet';

View File

@@ -2,9 +2,10 @@ import {
UMB_STYLESHEET_ENTITY_TYPE,
UMB_STYLESHEET_FOLDER_EMPTY_ENTITY_TYPE,
UMB_STYLESHEET_FOLDER_ENTITY_TYPE,
UMB_STYLESHEET_REPOSITORY_ALIAS,
UMB_STYLESHEET_ROOT_ENTITY_TYPE,
} from '../config.js';
import { UMB_STYLESHEET_REPOSITORY_ALIAS } from '../repository/index.js';
import { UmbCreateRTFStylesheetAction } from './create/create-rtf.action.js';
import { UmbCreateStylesheetAction } from './create/create.action.js';
import {

View File

@@ -1,2 +1,3 @@
export * from './stylesheet.repository.js';
export * from './item/index.js';
export { UMB_STYLESHEET_REPOSITORY_ALIAS } from './manifests.js';

View File

@@ -1,8 +1,9 @@
import { UMB_STYLESHEET_REPOSITORY_ALIAS } from '../config.js';
import { UmbStylesheetRepository } from './stylesheet.repository.js';
import { manifests as itemManifests } from './item/manifests.js';
import { ManifestRepository } from '@umbraco-cms/backoffice/extension-registry';
export const UMB_STYLESHEET_REPOSITORY_ALIAS = 'Umb.Repository.Stylesheet';
const repository: ManifestRepository = {
type: 'repository',
alias: UMB_STYLESHEET_REPOSITORY_ALIAS,