[FRONT COMPONENTS] Move to twenty-sdk (#17587)

Move front components from twenty-shared to twenty-sdk
This commit is contained in:
Raphaël Bosi
2026-02-02 12:21:53 +00:00
committed by GitHub
parent b2218cbbf2
commit f0bc9fcb43
63 changed files with 146 additions and 139 deletions
@@ -1,5 +1,5 @@
import { type ApplicationVariables } from '@/sdk';
import { type SyncableEntityOptions } from '@/application/syncableEntityOptionsType';
import { type ApplicationVariables } from './applicationVariablesType';
import { type SyncableEntityOptions } from './syncableEntityOptionsType';
export type ApplicationMarketplaceData = {
author?: string;
@@ -1,14 +1,12 @@
import {
type PackageJson,
type ApplicationManifest,
type ObjectManifest,
type LogicFunctionManifest,
type AssetManifest,
type FrontComponentManifest,
type RoleManifest,
type FieldManifest,
} from '@/sdk';
import { type Sources } from '@/types';
import { type ApplicationManifest } from './applicationType';
import { type AssetManifest } from './assetManifestType';
import { type FieldManifest } from './fieldManifestType';
import { type FrontComponentManifest } from './frontComponentManifestType';
import { type LogicFunctionManifest } from './logicFunctionManifestType';
import { type ObjectManifest } from './objectManifestType';
import { type PackageJson } from './packageJsonType';
import { type RoleManifest } from './roleManifestType';
export type Manifest = {
application: ApplicationManifest;