@equinor/videx-3d 3.0.0 → 3.1.0
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/main.js +1456 -1213
- package/dist/src/sdk/materials/shaderLib/procedural-normal.glsl +274 -0
- package/dist/types/components/Wellbores/Casings/CasingMaterial.d.ts +229 -1
- package/dist/types/components/Wellbores/Casings/CasingSection.d.ts +6 -1
- package/dist/types/components/Wellbores/Casings/Casings.d.ts +45 -4
- package/dist/types/components/Wellbores/Casings/casings-defs.d.ts +44 -0
- package/dist/types/components/Wellbores/Casings/index.d.ts +2 -1
- package/package.json +3 -9
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
export * from './CasingMaterial';
|
|
1
2
|
export * from './Casings';
|
|
2
3
|
export * from './casings-defs';
|
|
4
|
+
export * from './CasingAnnotations/casing-annotations-defs';
|
|
3
5
|
export * from './CasingAnnotations/CasingAnnotations';
|
|
4
6
|
export * from './CasingAnnotations/CasingLabel';
|
|
5
|
-
export * from './CasingAnnotations/casing-annotations-defs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/videx-3d",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"build": "npm run build-lib && npm run build-static",
|
|
42
42
|
"build-lib": "tsc && vite build",
|
|
43
43
|
"build-static": "node scripts/generate-story-args.js && storybook build -o static && typedoc",
|
|
44
|
-
"lint": "
|
|
44
|
+
"lint": "oxlint",
|
|
45
45
|
"storybook": "node scripts/generate-story-args.js && storybook dev -p 6006",
|
|
46
46
|
"test": "vitest",
|
|
47
47
|
"coverage": "vitest --coverage"
|
|
@@ -69,7 +69,6 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@chromatic-com/storybook": "^5.2.1",
|
|
72
|
-
"@eslint/js": "^9.39.3",
|
|
73
72
|
"@react-three/drei": "^10.7.7",
|
|
74
73
|
"@react-three/fiber": "^9.5.0",
|
|
75
74
|
"@storybook/addon-docs": "^10.4.6",
|
|
@@ -88,18 +87,14 @@
|
|
|
88
87
|
"@types/rbush": "^3.0.3",
|
|
89
88
|
"@types/react": "^19.2.14",
|
|
90
89
|
"@types/react-dom": "^19.0.4",
|
|
91
|
-
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
92
|
-
"@typescript-eslint/parser": "8.56.1",
|
|
93
90
|
"@vitejs/plugin-react": "^6.0.3",
|
|
94
91
|
"@vitest/coverage-v8": "^4.0.18",
|
|
95
92
|
"@vitest/ui": "^4.0.18",
|
|
96
|
-
"eslint": "^9.39.3",
|
|
97
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
98
|
-
"eslint-plugin-react-refresh": "^0.5.2",
|
|
99
93
|
"eslint-plugin-storybook": "^10.4.6",
|
|
100
94
|
"globals": "^17.4.0",
|
|
101
95
|
"lodash": "^4.17.23",
|
|
102
96
|
"minimist": "^1.2.8",
|
|
97
|
+
"oxlint": "^1.72.0",
|
|
103
98
|
"prettier": "^3.8.1",
|
|
104
99
|
"react": "^19.2.4",
|
|
105
100
|
"react-dom": "^19.2.4",
|
|
@@ -108,7 +103,6 @@
|
|
|
108
103
|
"storybook": "^10.4.6",
|
|
109
104
|
"typedoc": "^0.28.17",
|
|
110
105
|
"typescript": "^5.9.3",
|
|
111
|
-
"typescript-eslint": "^8.56.1",
|
|
112
106
|
"unplugin-dts": "^1.0.0-beta.6",
|
|
113
107
|
"vite": "^8.1.3",
|
|
114
108
|
"vite-plugin-css-injected-by-js": "^4.0.1",
|