vim-web 0.3.27-dev.1 → 0.3.27
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/README.md +55 -32
- package/dist/types/react-viewers/bim/bimInfoData.d.ts +75 -8
- package/dist/types/react-viewers/container.d.ts +2 -2
- package/dist/types/react-viewers/panels/contextMenu.d.ts +2 -2
- package/dist/types/react-viewers/settings/settings.d.ts +45 -4
- package/dist/types/react-viewers/settings/settingsStorage.d.ts +9 -0
- package/dist/types/react-viewers/sidePanel/sidePanel.d.ts +2 -2
- package/dist/types/react-viewers/ultra/ultraComponent.d.ts +3 -3
- package/dist/types/react-viewers/webgl/index.d.ts +2 -2
- package/dist/types/react-viewers/webgl/webglComponent.d.ts +3 -3
- package/dist/types/react-viewers/webgl/webglComponentRef.d.ts +40 -26
- package/dist/vim-web.iife.js +8 -5
- package/dist/vim-web.iife.js.map +1 -1
- package/dist/vim-web.js +8 -5
- package/dist/vim-web.js.map +1 -1
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vim-web",
|
|
3
|
-
"version": "0.3.27
|
|
3
|
+
"version": "0.3.27",
|
|
4
4
|
"description": "A demonstration app built on top of the vim-webgl-viewer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"build:libs": "vite build --config vite.config.libs.js && npm run declarations:libs",
|
|
25
25
|
"package:libs": "npm run build:libs && npm publish",
|
|
26
26
|
"declarations:libs": "tsc --project tsconfig.libs.json --declaration --emitDeclarationOnly --outdir ./dist/types",
|
|
27
|
-
"documentation:libs": "typedoc --entryPoints src/vim-web/
|
|
27
|
+
"documentation:libs": "typedoc --entryPoints src/vim-web/index.ts --entryPointStrategy expand --out docs/api --excludeProtected --excludeExternals --excludePrivate",
|
|
28
28
|
"build:website": "vite build --config vite.config.website.js && npm run copy:website && npm run documentation:libs && npm run commit:website",
|
|
29
|
-
"serve:website": "vite preview --outDir docs",
|
|
30
|
-
"commit:website": "git add
|
|
31
|
-
"copy:website": "
|
|
29
|
+
"serve:website": "vite preview --outDir docs",
|
|
30
|
+
"commit:website": "git add docs && git commit -m 'Build website[ci skip]' && git push",
|
|
31
|
+
"copy:website": "node scripts/copyIndex.js",
|
|
32
32
|
"eslint": "eslint --ext .js,.ts,.tsx src --fix"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"eslint-plugin-promise": "^6.0.1",
|
|
45
45
|
"eslint-plugin-react": "^7.37.2",
|
|
46
46
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
47
|
+
"fs-extra": "^11.2.0",
|
|
47
48
|
"postcss": "^8.4.49",
|
|
48
49
|
"prettier": "^3.4.2",
|
|
49
50
|
"prettier-plugin-tailwindcss": "^0.6.9",
|