move property

This commit is contained in:
Niels Lyngsø
2023-12-08 12:36:33 +01:00
parent 9cad21a6c9
commit 4a9dc30019
9 changed files with 14 additions and 3 deletions

View File

@@ -36,6 +36,7 @@
"./modal": "./dist-cms/packages/core/modal/index.js",
"./notification": "./dist-cms/packages/core/notification/index.js",
"./picker-input": "./dist-cms/packages/core/picker-input/index.js",
"./property": "./dist-cms/packages/core/property/index.js",
"./property-action": "./dist-cms/packages/core/property-action/index.js",
"./property-editor": "./dist-cms/packages/core/property-editor/index.js",
"./section": "./dist-cms/packages/core/section/index.js",

View File

@@ -0,0 +1 @@
export * from './property/index.js';

View File

@@ -1,5 +1,5 @@
import { UmbPropertyEditorUiElement } from '../../extension-registry/interfaces/property-editor-ui-element.interface.js';
import { type WorkspacePropertyData } from '../types/workspace-property-data.type.js';
import { type WorkspacePropertyData } from '../../workspace/types/workspace-property-data.type.js';
import { UMB_PROPERTY_DATASET_CONTEXT } from '@umbraco-cms/backoffice/workspace';
import { UmbVariantId } from '@umbraco-cms/backoffice/variant';
import { type UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api';

View File

@@ -9,6 +9,6 @@ export * from './workspace-footer/index.js';
export * from './workspace-is-new-redirect-controller/index.js';
export * from './workspace-modal/index.js';
export * from './property-layout/property-layout.element.js';
export * from './property/index.js';
export * from '../property/property/index.js';
export * from './workspace-split-view-manager.class.js';
export * from './workspace-split-view/index.js';

View File

@@ -70,6 +70,7 @@
"@umbraco-cms/backoffice/modal": ["src/packages/core/modal"],
"@umbraco-cms/backoffice/notification": ["src/packages/core/notification"],
"@umbraco-cms/backoffice/picker-input": ["src/packages/core/picker-input"],
"@umbraco-cms/backoffice/property": ["src/packages/core/property"],
"@umbraco-cms/backoffice/property-action": ["src/packages/core/property-action"],
"@umbraco-cms/backoffice/property-editor": ["src/packages/core/property-editor"],
"@umbraco-cms/backoffice/section": ["src/packages/core/section"],
@@ -126,7 +127,14 @@
"@umbraco-cms/internal/test-utils": ["utils/test-utils.ts"]
}
},
"include": ["src/**/*.ts", "apps/**/*.ts", "e2e/**/*.ts", "index.ts", "storybook/stories/**/*.ts", "examples/**/*.ts", ],
"include": [
"src/**/*.ts",
"apps/**/*.ts",
"e2e/**/*.ts",
"index.ts",
"storybook/stories/**/*.ts",
"examples/**/*.ts"
],
"references": [
{
"path": "./tsconfig.node.json"

View File

@@ -72,6 +72,7 @@ export default {
'@umbraco-cms/backoffice/modal': './src/packages/core/modal/index.ts',
'@umbraco-cms/backoffice/notification': './src/packages/core/notification/index.ts',
'@umbraco-cms/backoffice/picker-input': './src/packages/core/picker-input/index.ts',
'@umbraco-cms/backoffice/property': './src/packages/core/property/index.ts',
'@umbraco-cms/backoffice/property-action': './src/packages/core/property-action/index.ts',
'@umbraco-cms/backoffice/property-editor': './src/packages/core/property-editor/index.ts',
'@umbraco-cms/backoffice/section': './src/packages/core/section/index.ts',