Chore: Moved propTypes to @theatre/core

This commit is contained in:
Aria Minaei 2021-07-02 11:44:07 +02:00
parent 64d955c464
commit 4ac12abb58
11 changed files with 12 additions and 12 deletions

View file

@ -6,7 +6,7 @@ import type {
} from '@theatre/core/projects/TheatreProject' } from '@theatre/core/projects/TheatreProject'
import TheatreProject from '@theatre/core/projects/TheatreProject' import TheatreProject from '@theatre/core/projects/TheatreProject'
import globals from '@theatre/shared/globals' 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 {InvalidArgumentError} from '@theatre/shared/utils/errors'
import {validateName} from '@theatre/shared/utils/sanitizers' import {validateName} from '@theatre/shared/utils/sanitizers'
import userReadableTypeOfValue from '@theatre/shared/utils/userReadableTypeOfValue' import userReadableTypeOfValue from '@theatre/shared/utils/userReadableTypeOfValue'

View file

@ -12,7 +12,7 @@ import type {
} from '@theatre/shared/utils/types' } from '@theatre/shared/utils/types'
import type {IDerivation, Pointer} from '@theatre/dataverse' import type {IDerivation, Pointer} from '@theatre/dataverse'
import {prism, val} 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' import type SheetObject from './SheetObject'
export interface ISheetObject< export interface ISheetObject<

View file

@ -9,7 +9,7 @@ import type {
PropTypeConfig, PropTypeConfig,
PropTypeConfig_Compound, PropTypeConfig_Compound,
PropTypeConfig_Enum, PropTypeConfig_Enum,
} from '@theatre/shared/propTypes' } from '@theatre/core/propTypes'
const cachedDefaults = new WeakMap<PropTypeConfig, SerializableValue>() const cachedDefaults = new WeakMap<PropTypeConfig, SerializableValue>()

View file

@ -2,7 +2,7 @@ import {privateAPI, setPrivateAPI} from '@theatre/core/privateAPIs'
import type {IProject} from '@theatre/core/projects/TheatreProject' import type {IProject} from '@theatre/core/projects/TheatreProject'
import type TheatreSequence from '@theatre/core/sequences/TheatreSequence' import type TheatreSequence from '@theatre/core/sequences/TheatreSequence'
import type {ISequence} 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 {ISheetObject} from '@theatre/core/sheetObjects/TheatreSheetObject'
import type Sheet from '@theatre/core/sheets/Sheet' import type Sheet from '@theatre/core/sheets/Sheet'
import type {SheetAddress} from '@theatre/shared/utils/addresses' import type {SheetAddress} from '@theatre/shared/utils/addresses'

View file

@ -1,4 +1,4 @@
import type {PropTypeConfig} from '@theatre/shared/propTypes' import type {PropTypeConfig} from '@theatre/core/propTypes'
export function isPropConfigComposite(c: PropTypeConfig): boolean { export function isPropConfigComposite(c: PropTypeConfig): boolean {
return c.type === 'compound' || c.type === 'enum' return c.type === 'compound' || c.type === 'enum'

View file

@ -4,7 +4,7 @@ import {getProject} from '@theatre/core'
import {privateAPI} from '@theatre/core/privateAPIs' import {privateAPI} from '@theatre/core/privateAPIs'
import type {ProjectState_Historic} from '@theatre/core/projects/store/storeTypes' import type {ProjectState_Historic} from '@theatre/core/projects/store/storeTypes'
import type {SheetState_Historic} from '@theatre/core/projects/store/types/SheetState_Historic' 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 getStudio from '@theatre/studio/getStudio'
import coreTicker from '@theatre/core/coreTicker' import coreTicker from '@theatre/core/coreTicker'
import globals from './globals' import globals from './globals'

View file

@ -1,5 +1,5 @@
import type {PropTypeConfig_Compound} from '@theatre/shared/propTypes' import type {PropTypeConfig_Compound} from '@theatre/core/propTypes'
import {isPropConfigComposite} from '@theatre/shared/propTypes/utils' import {isPropConfigComposite} from '@theatre/shared/src/propTypes/utils'
import type SheetObject from '@theatre/core/sheetObjects/SheetObject' import type SheetObject from '@theatre/core/sheetObjects/SheetObject'
import {theme} from '@theatre/studio/css' import {theme} from '@theatre/studio/css'
import {voidFn} from '@theatre/shared/utils' import {voidFn} from '@theatre/shared/utils'

View file

@ -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 type SheetObject from '@theatre/core/sheetObjects/SheetObject'
import {getPointerParts} from '@theatre/dataverse' import {getPointerParts} from '@theatre/dataverse'
import React from 'react' import React from 'react'

View file

@ -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 type SheetObject from '@theatre/core/sheetObjects/SheetObject'
import BasicNumberEditor from '@theatre/studio/uiComponents/BasicNumberEditor' import BasicNumberEditor from '@theatre/studio/uiComponents/BasicNumberEditor'
import useContextMenu from '@theatre/studio/uiComponents/simpleContextMenu/useContextMenu' import useContextMenu from '@theatre/studio/uiComponents/simpleContextMenu/useContextMenu'

View file

@ -3,8 +3,8 @@ import type {
PropTypeConfig, PropTypeConfig,
PropTypeConfig_AllPrimitives, PropTypeConfig_AllPrimitives,
PropTypeConfig_Compound, PropTypeConfig_Compound,
} from '@theatre/shared/propTypes' } from '@theatre/core/propTypes'
import {isPropConfigComposite} from '@theatre/shared/propTypes/utils' import {isPropConfigComposite} from '@theatre/shared/src/propTypes/utils'
import type SheetObject from '@theatre/core/sheetObjects/SheetObject' import type SheetObject from '@theatre/core/sheetObjects/SheetObject'
import type {IPropPathToTrackIdTree} from '@theatre/core/sheetObjects/SheetObjectTemplate' import type {IPropPathToTrackIdTree} from '@theatre/core/sheetObjects/SheetObjectTemplate'
import type Sheet from '@theatre/core/sheets/Sheet' import type Sheet from '@theatre/core/sheets/Sheet'