@tresjs/cientos 3.5.0 → 3.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/controls/CameraControls.vue.d.ts +5 -1
- package/dist/core/controls/OrbitControls.vue.d.ts +8823 -1
- package/dist/core/controls/PointerLockControls.vue.d.ts +3 -1
- package/dist/core/controls/ScrollControls.vue.d.ts +3 -1
- package/dist/core/controls/TransformControls.vue.d.ts +7 -1
- package/dist/core/misc/html/HTML.vue.d.ts +10 -3
- package/dist/trescientos.js +7648 -35495
- package/dist/trescientos.umd.cjs +22 -981
- package/package.json +15 -15
|
@@ -53,7 +53,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
53
53
|
value: import("vue").Ref<(import("three").EventDispatcher<{}> & {
|
|
54
54
|
enabled: boolean;
|
|
55
55
|
}) | null>;
|
|
56
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
56
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
57
|
+
isLock: (...args: any[]) => void;
|
|
58
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
57
59
|
camera: {
|
|
58
60
|
type: import("vue").PropType<Camera>;
|
|
59
61
|
};
|
|
@@ -61,7 +61,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
61
61
|
type: import("vue").PropType<boolean>;
|
|
62
62
|
default: boolean;
|
|
63
63
|
};
|
|
64
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
64
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
65
|
+
"update:modelValue": (...args: any[]) => void;
|
|
66
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
65
67
|
distance: {
|
|
66
68
|
type: import("vue").PropType<number>;
|
|
67
69
|
default: number;
|
|
@@ -59,7 +59,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
type: import("vue").PropType<boolean>;
|
|
60
60
|
default: boolean;
|
|
61
61
|
};
|
|
62
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
62
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
63
|
+
change: (...args: any[]) => void;
|
|
64
|
+
dragging: (...args: any[]) => void;
|
|
65
|
+
mouseDown: (...args: any[]) => void;
|
|
66
|
+
mouseUp: (...args: any[]) => void;
|
|
67
|
+
objectChange: (...args: any[]) => void;
|
|
68
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
69
|
object: {
|
|
64
70
|
type: import("vue").PropType<Object3D<import("three").Object3DEventMap>>;
|
|
65
71
|
required: true;
|
|
@@ -19,7 +19,7 @@ export interface HTMLProps {
|
|
|
19
19
|
occlude?: Ref<TresObject3D>[] | boolean | 'raycast' | 'blending';
|
|
20
20
|
}
|
|
21
21
|
type PointerEventsProperties = 'auto' | 'none' | 'visiblePainted' | 'visibleFill' | 'visibleStroke' | 'visible' | 'painted' | 'fill' | 'stroke' | 'all' | 'inherit';
|
|
22
|
-
declare const _default: import("vue").DefineComponent<{
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
23
23
|
material: {
|
|
24
24
|
type: import("vue").PropType<any>;
|
|
25
25
|
};
|
|
@@ -69,7 +69,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
69
|
occlude: {
|
|
70
70
|
type: import("vue").PropType<boolean | "raycast" | "blending" | Ref<TresObject3D>[]>;
|
|
71
71
|
};
|
|
72
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
72
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
73
|
+
onOcclude: (...args: any[]) => void;
|
|
74
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
73
75
|
material: {
|
|
74
76
|
type: import("vue").PropType<any>;
|
|
75
77
|
};
|
|
@@ -129,5 +131,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
129
131
|
eps: number;
|
|
130
132
|
pointerEvents: PointerEventsProperties;
|
|
131
133
|
zIndexRange: number[];
|
|
132
|
-
}, {}
|
|
134
|
+
}, {}>, Readonly<Record<string, any>>>;
|
|
133
135
|
export default _default;
|
|
136
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
137
|
+
new (): {
|
|
138
|
+
$slots: S;
|
|
139
|
+
};
|
|
140
|
+
};
|