Chore: Moved propTypes to @theatre/core
This commit is contained in:
parent
64d955c464
commit
4ac12abb58
11 changed files with 12 additions and 12 deletions
|
@ -6,7 +6,7 @@ import type {
|
|||
} from '@theatre/core/projects/TheatreProject'
|
||||
import TheatreProject from '@theatre/core/projects/TheatreProject'
|
||||
import globals from '@theatre/shared/globals'
|
||||
import * as types from '@theatre/shared/propTypes'
|
||||
import * as types from '@theatre/core/propTypes'
|
||||
import {InvalidArgumentError} from '@theatre/shared/utils/errors'
|
||||
import {validateName} from '@theatre/shared/utils/sanitizers'
|
||||
import userReadableTypeOfValue from '@theatre/shared/utils/userReadableTypeOfValue'
|
||||
|
|
|
@ -12,7 +12,7 @@ import type {
|
|||
} from '@theatre/shared/utils/types'
|
||||
import type {IDerivation, Pointer} from '@theatre/dataverse'
|
||||
import {prism, val} from '@theatre/dataverse'
|
||||
import type {PropTypeConfig_Compound} from '@theatre/shared/propTypes'
|
||||
import type {PropTypeConfig_Compound} from '@theatre/core/propTypes'
|
||||
import type SheetObject from './SheetObject'
|
||||
|
||||
export interface ISheetObject<
|
||||
|
|
|
@ -9,7 +9,7 @@ import type {
|
|||
PropTypeConfig,
|
||||
PropTypeConfig_Compound,
|
||||
PropTypeConfig_Enum,
|
||||
} from '@theatre/shared/propTypes'
|
||||
} from '@theatre/core/propTypes'
|
||||
|
||||
const cachedDefaults = new WeakMap<PropTypeConfig, SerializableValue>()
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import {privateAPI, setPrivateAPI} from '@theatre/core/privateAPIs'
|
|||
import type {IProject} from '@theatre/core/projects/TheatreProject'
|
||||
import type TheatreSequence from '@theatre/core/sequences/TheatreSequence'
|
||||
import type {ISequence} from '@theatre/core/sequences/TheatreSequence'
|
||||
import type {PropTypeConfig_Compound} from '@theatre/shared/propTypes'
|
||||
import type {PropTypeConfig_Compound} from '@theatre/core/propTypes'
|
||||
import type {ISheetObject} from '@theatre/core/sheetObjects/TheatreSheetObject'
|
||||
import type Sheet from '@theatre/core/sheets/Sheet'
|
||||
import type {SheetAddress} from '@theatre/shared/utils/addresses'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type {PropTypeConfig} from '@theatre/shared/propTypes'
|
||||
import type {PropTypeConfig} from '@theatre/core/propTypes'
|
||||
|
||||
export function isPropConfigComposite(c: PropTypeConfig): boolean {
|
||||
return c.type === 'compound' || c.type === 'enum'
|
||||
|
|
|
@ -4,7 +4,7 @@ import {getProject} from '@theatre/core'
|
|||
import {privateAPI} from '@theatre/core/privateAPIs'
|
||||
import type {ProjectState_Historic} from '@theatre/core/projects/store/storeTypes'
|
||||
import type {SheetState_Historic} from '@theatre/core/projects/store/types/SheetState_Historic'
|
||||
import * as t from '@theatre/shared/propTypes'
|
||||
import * as t from '@theatre/core/propTypes'
|
||||
import getStudio from '@theatre/studio/getStudio'
|
||||
import coreTicker from '@theatre/core/coreTicker'
|
||||
import globals from './globals'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import type {PropTypeConfig_Compound} from '@theatre/shared/propTypes'
|
||||
import {isPropConfigComposite} from '@theatre/shared/propTypes/utils'
|
||||
import type {PropTypeConfig_Compound} from '@theatre/core/propTypes'
|
||||
import {isPropConfigComposite} from '@theatre/shared/src/propTypes/utils'
|
||||
import type SheetObject from '@theatre/core/sheetObjects/SheetObject'
|
||||
import {theme} from '@theatre/studio/css'
|
||||
import {voidFn} from '@theatre/shared/utils'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type {PropTypeConfig} from '@theatre/shared/propTypes'
|
||||
import type {PropTypeConfig} from '@theatre/core/propTypes'
|
||||
import type SheetObject from '@theatre/core/sheetObjects/SheetObject'
|
||||
import {getPointerParts} from '@theatre/dataverse'
|
||||
import React from 'react'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type {PropTypeConfig_Number} from '@theatre/shared/propTypes'
|
||||
import type {PropTypeConfig_Number} from '@theatre/core/propTypes'
|
||||
import type SheetObject from '@theatre/core/sheetObjects/SheetObject'
|
||||
import BasicNumberEditor from '@theatre/studio/uiComponents/BasicNumberEditor'
|
||||
import useContextMenu from '@theatre/studio/uiComponents/simpleContextMenu/useContextMenu'
|
||||
|
|
|
@ -3,8 +3,8 @@ import type {
|
|||
PropTypeConfig,
|
||||
PropTypeConfig_AllPrimitives,
|
||||
PropTypeConfig_Compound,
|
||||
} from '@theatre/shared/propTypes'
|
||||
import {isPropConfigComposite} from '@theatre/shared/propTypes/utils'
|
||||
} from '@theatre/core/propTypes'
|
||||
import {isPropConfigComposite} from '@theatre/shared/src/propTypes/utils'
|
||||
import type SheetObject from '@theatre/core/sheetObjects/SheetObject'
|
||||
import type {IPropPathToTrackIdTree} from '@theatre/core/sheetObjects/SheetObjectTemplate'
|
||||
import type Sheet from '@theatre/core/sheets/Sheet'
|
||||
|
|
Loading…
Reference in a new issue