move property
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
export * from './property/index.js';
|
||||
@@ -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';
|
||||
@@ -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';
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user