@eyeon/threejs-map 1.1.33 → 1.1.35
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/Hooks/useMeshFloors/useMaterialAndGeometry.d.ts +1 -0
- package/dist/Hooks/useMeshFloors/useMeshParams.d.ts +1 -1
- package/dist/defaults.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/dist/index.module.js +3612 -3453
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +22 -22
- package/dist/index.umd.js.map +1 -1
- package/dist/interfaces/index.d.ts +3 -2
- package/dist/test-maps/pacific-view/Pacific View - First Level.ai +119674 -30
- package/dist/test-maps/pacific-view/Pacific View - Second Level.ai +18775 -28
- package/dist/test-maps/pacific-view/SVG/floor1.svg +603 -0
- package/dist/test-maps/pacific-view/SVG/floor2.svg +533 -0
- package/dist/test-maps/shops-at-south-town/SVG/floor1.svg +779 -0
- package/dist/test-maps/shops-at-south-town/SVG/floor2.svg +4025 -0
- package/package.json +6 -46
- package/README.md +0 -16
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eyeon/threejs-map",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "EyeOn ThreeJS Map component for interactive 3D mall/center maps",
|
|
3
|
+
"version": "1.1.35",
|
|
4
|
+
"description": "EyeOn ThreeJS Map component for interactive 3D mall/center maps (v1, frozen)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"threejs",
|
|
7
7
|
"react",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"license": "UNLICENSED",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/mycenterportal/threejs-map.git"
|
|
18
|
+
"url": "git+https://github.com/mycenterportal/threejs-map.git",
|
|
19
|
+
"directory": "packages/threejs-map"
|
|
19
20
|
},
|
|
20
21
|
"type": "module",
|
|
21
22
|
"source": "src/index.ts",
|
|
@@ -27,7 +28,6 @@
|
|
|
27
28
|
"node": "^22.20.0"
|
|
28
29
|
},
|
|
29
30
|
"engineStrict": true,
|
|
30
|
-
"packageManager": "npm@11.6.2",
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
33
33
|
"types": "./dist/index.d.ts",
|
|
@@ -46,13 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "vite build --mode lib",
|
|
49
|
-
"dev": "vite"
|
|
50
|
-
"storybook": "storybook dev -p 6006"
|
|
51
|
-
},
|
|
52
|
-
"husky": {
|
|
53
|
-
"hooks": {
|
|
54
|
-
"pre-push": "npm run prepare"
|
|
55
|
-
}
|
|
49
|
+
"dev": "vite"
|
|
56
50
|
},
|
|
57
51
|
"dependencies": {
|
|
58
52
|
"@react-three/drei": "10.7.6",
|
|
@@ -79,56 +73,22 @@
|
|
|
79
73
|
},
|
|
80
74
|
"devDependencies": {
|
|
81
75
|
"@react-three/fiber": "^9.4.0",
|
|
82
|
-
"@storybook/addon-docs": "^9.1.8",
|
|
83
|
-
"@storybook/addon-links": "^9.1.8",
|
|
84
|
-
"@storybook/addon-onboarding": "^9.1.8",
|
|
85
|
-
"@storybook/react": "^9.1.8",
|
|
86
|
-
"@storybook/react-vite": "^9.1.8",
|
|
87
76
|
"@types/express": "^5.0.5",
|
|
88
77
|
"@types/jest": "^27.5.2",
|
|
89
|
-
"@types/jsonwebtoken": "^9.0.6",
|
|
90
78
|
"@types/node": "^22.7.4",
|
|
91
79
|
"@types/react": "^19.0.0",
|
|
92
80
|
"@types/react-dom": "^19.0.0",
|
|
93
81
|
"@types/three": "^0.180.0",
|
|
94
82
|
"@vitejs/plugin-react": "^4.3.1",
|
|
95
|
-
"dotenv": "^17.2.3",
|
|
96
|
-
"eslint-plugin-storybook": "^9.1.8",
|
|
97
83
|
"express": "^5.1.0",
|
|
98
|
-
"husky": "^8.0.3",
|
|
99
|
-
"jsonwebtoken": "^9.0.2",
|
|
100
84
|
"postcss": "^8.4.47",
|
|
101
85
|
"postcss-nested": "^6.0.1",
|
|
102
|
-
"prop-types": "^15.8.
|
|
86
|
+
"prop-types": "^15.8.0",
|
|
103
87
|
"react": "19.2.1",
|
|
104
88
|
"react-dom": "19.2.1",
|
|
105
|
-
"storybook": "^9.1.8",
|
|
106
89
|
"three": "^0.180.0",
|
|
107
90
|
"typescript": "^5.4.5",
|
|
108
91
|
"vite": "^5.4.9",
|
|
109
92
|
"vite-plugin-dts": "^4.2.3"
|
|
110
|
-
},
|
|
111
|
-
"eslintConfig": {
|
|
112
|
-
"extends": [
|
|
113
|
-
"react-app",
|
|
114
|
-
"react-app/jest"
|
|
115
|
-
]
|
|
116
|
-
},
|
|
117
|
-
"browserslist": {
|
|
118
|
-
"production": [
|
|
119
|
-
">0.2%",
|
|
120
|
-
"not dead",
|
|
121
|
-
"not op_mini all"
|
|
122
|
-
],
|
|
123
|
-
"development": [
|
|
124
|
-
"last 1 chrome version",
|
|
125
|
-
"last 1 firefox version",
|
|
126
|
-
"last 1 safari version"
|
|
127
|
-
]
|
|
128
|
-
},
|
|
129
|
-
"overrides": {
|
|
130
|
-
"@react-spring/animated": "^9.7.0",
|
|
131
|
-
"@react-spring/core": "^9.7.0",
|
|
132
|
-
"@react-spring/shared": "^9.7.0"
|
|
133
93
|
}
|
|
134
94
|
}
|
package/README.md
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
## EyeOn ThreeJS Map
|
|
2
|
-
|
|
3
|
-
#### For push/update package
|
|
4
|
-
1. Add your changes in code
|
|
5
|
-
2. npm run build
|
|
6
|
-
3. git add .
|
|
7
|
-
4. git commit -m "your commit"
|
|
8
|
-
5. git push
|
|
9
|
-
|
|
10
|
-
#### For develop
|
|
11
|
-
1. npm i
|
|
12
|
-
2. npm run storybook
|
|
13
|
-
|
|
14
|
-
### Proxy API Server - Storybook
|
|
15
|
-
After running storybook by `npm run storybook`, you need to first visit this link: http://localhost:6006/eyeon-portal/auth, this will generate `webAppJwtToken` which is necessary for Proxy API server JWT Authentication.
|
|
16
|
-
|