@threlte/core
Advanced tools
Comparing version 4.3.3 to 5.0.0
# @threlte/core | ||
## 5.0.0 | ||
### Major Changes | ||
- 2a44ca8: This release introduces rendering as a concept to `@threlte/core` and subsequently to all other packages. See https://threlte.xyz/core-transition for details. | ||
## 4.3.3 | ||
@@ -4,0 +10,0 @@ |
@@ -40,2 +40,4 @@ export { default as Canvas } from './Canvas.svelte'; | ||
export { default as DisposableObject } from './internal/DisposableObject.svelte'; | ||
export { default as Three } from './three/Three.svelte'; | ||
export { T } from './three/T'; | ||
export { useFrame } from './hooks/useFrame'; | ||
@@ -50,2 +52,3 @@ export { useThrelte } from './hooks/useThrelte'; | ||
export type { Position, Scale, Rotation, LookAt, ThrelteUseFrameOptions, ThrelteContext, ThrelteRootContext, ThrelteLayers, ThrelteUseLoader, ThreltePointerEvent, ThrelteInstance, Size } from './types/types'; | ||
export { createObjectStore } from './lib/createObjectStore'; | ||
export type { HierarchicalObjectProperties, InteractiveObjectProperties, LayerableObjectProperties, TransformableObjectProperties, DisposableObjectProperties, ViewportAwareObjectProperties, Object3DInstanceProperties, MeshInstanceProperties, InstancedMeshProperties, InstanceProperties, LightInstanceProperties, CameraInstanceProperties, OrthographicCameraProperties, PerspectiveCameraProperties, OrbitControlsProperties, PassProperties, AmbientLightProperties, DirectionalLightProperties, HemisphereLightProperties, PointLightProperties, SpotLightProperties, FogProperties, FogExp2Properties, LayersProperties, GroupProperties, MeshProperties, Object3DProperties, AudioInstanceProperties, AudioListenerProperties, AudioProperties, Line2Properties, LineInstanceProperties, LineProperties, LineSegmentsProperties, PositionalAudioProperties, SceneGraphObjectProperties, TransformControlsProperties } from './types/components'; |
@@ -51,2 +51,5 @@ // canvas component | ||
export { default as DisposableObject } from './internal/DisposableObject.svelte'; | ||
// <Three> component | ||
export { default as Three } from './three/Three.svelte'; | ||
export { T } from './three/T'; | ||
// hooks | ||
@@ -61,1 +64,3 @@ export { useFrame } from './hooks/useFrame'; | ||
export { useParent } from './internal/HierarchicalObject.svelte'; | ||
// utils | ||
export { createObjectStore } from './lib/createObjectStore'; |
{ | ||
"name": "@threlte/core", | ||
"version": "4.3.3", | ||
"version": "5.0.0", | ||
"author": "Grischa Erbe <hello@legrisch.com> (https://legrisch.com)", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@sveltejs/adapter-auto": "next", | ||
"@sveltejs/adapter-static": "^1.0.0-next.29", | ||
"@sveltejs/kit": "next", | ||
"@sveltejs/adapter-auto": "1.0.0-next.61", | ||
"@sveltejs/adapter-static": "1.0.0-next.34", | ||
"@sveltejs/kit": "1.0.0-next.377", | ||
"@types/node": "^18.0.3", | ||
@@ -46,4 +46,5 @@ "@types/three": "^0.144.0", | ||
"lint": "prettier --check --plugin-search-dir=. . && eslint .", | ||
"format": "prettier --write --plugin-search-dir=. ." | ||
"format": "prettier --write --plugin-search-dir=. .", | ||
"cleanup": "rm -rf node_modules && rm -rf .svelte-kit" | ||
} | ||
} |
398496
162
6103