@3cr/viewer-browser 0.0.9 → 0.0.14
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/.idea/workspace.xml +18 -3
- package/dist/Viewer3CR.js +14 -9
- package/dist/Viewer3CR.mjs +736 -730
- package/dist/Viewer3CR.umd.js +14 -9
- package/index.html +13 -15
- package/index.ts +9 -7
- package/package.json +3 -1
- package/src/App.vue +15 -23
- package/src/components/MftpWebGL3DRModal.vue +18 -4
- package/vite.config.mts +2 -0
- package/dist/style.css +0 -5
package/.idea/workspace.xml
CHANGED
|
@@ -5,8 +5,11 @@
|
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
7
|
<list default="true" id="feb68f38-3ed5-44bb-a81b-c68f1e9d5e48" name="Changes" comment="initial">
|
|
8
|
+
<change beforePath="$PROJECT_DIR$/index.html" beforeDir="false" afterPath="$PROJECT_DIR$/index.html" afterDir="false" />
|
|
8
9
|
<change beforePath="$PROJECT_DIR$/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/index.ts" afterDir="false" />
|
|
10
|
+
<change beforePath="$PROJECT_DIR$/package-lock.json" beforeDir="false" afterPath="$PROJECT_DIR$/package-lock.json" afterDir="false" />
|
|
9
11
|
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
12
|
+
<change beforePath="$PROJECT_DIR$/src/App.vue" beforeDir="false" afterPath="$PROJECT_DIR$/src/App.vue" afterDir="false" />
|
|
10
13
|
<change beforePath="$PROJECT_DIR$/src/components/MftpWebGL3DRModal.vue" beforeDir="false" afterPath="$PROJECT_DIR$/src/components/MftpWebGL3DRModal.vue" afterDir="false" />
|
|
11
14
|
<change beforePath="$PROJECT_DIR$/src/main.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/main.ts" afterDir="false" />
|
|
12
15
|
<change beforePath="$PROJECT_DIR$/vite.config.mts" beforeDir="false" afterPath="$PROJECT_DIR$/vite.config.mts" afterDir="false" />
|
|
@@ -51,6 +54,7 @@
|
|
|
51
54
|
"node.js.selected.package.tslint": "(autodetect)",
|
|
52
55
|
"nodejs_package_manager_path": "npm",
|
|
53
56
|
"npm.build.executor": "Run",
|
|
57
|
+
"npm.deploy.executor": "Run",
|
|
54
58
|
"npm.dev.executor": "Run",
|
|
55
59
|
"npm.test.executor": "Run",
|
|
56
60
|
"ts.external.directory.path": "/Users/elliottcooper/Applications/WebStorm.app/Contents/plugins/javascript-impl/jsLanguageServicesImpl/external",
|
|
@@ -71,7 +75,7 @@
|
|
|
71
75
|
<recent name="$PROJECT_DIR$/src" />
|
|
72
76
|
</key>
|
|
73
77
|
</component>
|
|
74
|
-
<component name="RunManager" selected="npm.
|
|
78
|
+
<component name="RunManager" selected="npm.deploy">
|
|
75
79
|
<configuration name="build" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
|
|
76
80
|
<package-json value="$PROJECT_DIR$/package.json" />
|
|
77
81
|
<command value="run" />
|
|
@@ -82,6 +86,16 @@
|
|
|
82
86
|
<envs />
|
|
83
87
|
<method v="2" />
|
|
84
88
|
</configuration>
|
|
89
|
+
<configuration name="deploy" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
|
|
90
|
+
<package-json value="$PROJECT_DIR$/package.json" />
|
|
91
|
+
<command value="run" />
|
|
92
|
+
<scripts>
|
|
93
|
+
<script value="deploy" />
|
|
94
|
+
</scripts>
|
|
95
|
+
<node-interpreter value="project" />
|
|
96
|
+
<envs />
|
|
97
|
+
<method v="2" />
|
|
98
|
+
</configuration>
|
|
85
99
|
<configuration name="dev" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
|
|
86
100
|
<package-json value="$PROJECT_DIR$/package.json" />
|
|
87
101
|
<command value="run" />
|
|
@@ -104,8 +118,9 @@
|
|
|
104
118
|
</configuration>
|
|
105
119
|
<recent_temporary>
|
|
106
120
|
<list>
|
|
107
|
-
<item itemvalue="npm.
|
|
121
|
+
<item itemvalue="npm.deploy" />
|
|
108
122
|
<item itemvalue="npm.dev" />
|
|
123
|
+
<item itemvalue="npm.build" />
|
|
109
124
|
<item itemvalue="npm.test" />
|
|
110
125
|
</list>
|
|
111
126
|
</recent_temporary>
|
|
@@ -125,7 +140,7 @@
|
|
|
125
140
|
<option name="number" value="Default" />
|
|
126
141
|
<option name="presentableId" value="Default" />
|
|
127
142
|
<updated>1712197208124</updated>
|
|
128
|
-
<workItem from="1712197209295" duration="
|
|
143
|
+
<workItem from="1712197209295" duration="36344000" />
|
|
129
144
|
</task>
|
|
130
145
|
<task id="LOCAL-00001" summary="initial">
|
|
131
146
|
<option name="closed" value="true" />
|