@figurosity/consumer-three-dimension-tool 0.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/README.md +74 -0
- package/dist/consumer-three-dimension-tool.js +2454 -0
- package/dist/index-CIql5zKW.js +82 -0
- package/package.json +70 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
const i = {
|
|
2
|
+
td: {
|
|
3
|
+
figurosity: "Figurosity",
|
|
4
|
+
components: {
|
|
5
|
+
colors: {
|
|
6
|
+
title: "Colors",
|
|
7
|
+
icon: "Colors",
|
|
8
|
+
items: {
|
|
9
|
+
subject: "Subject",
|
|
10
|
+
background: "Background",
|
|
11
|
+
ground: "Ground"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
lights: {
|
|
15
|
+
title: "Lights",
|
|
16
|
+
icon: "Lights",
|
|
17
|
+
color: "Light color",
|
|
18
|
+
labels: {
|
|
19
|
+
key: "Key light",
|
|
20
|
+
fill: "Fill light",
|
|
21
|
+
back: "Back light"
|
|
22
|
+
},
|
|
23
|
+
toggles: {
|
|
24
|
+
advanced: {
|
|
25
|
+
on: "Show advanced settings",
|
|
26
|
+
off: "Hide advanced settings"
|
|
27
|
+
},
|
|
28
|
+
back: {
|
|
29
|
+
on: "Show back light",
|
|
30
|
+
off: "Hide back light"
|
|
31
|
+
},
|
|
32
|
+
fill: {
|
|
33
|
+
on: "Show fill light",
|
|
34
|
+
off: "Hide fill light"
|
|
35
|
+
},
|
|
36
|
+
key: {
|
|
37
|
+
on: "Show key light",
|
|
38
|
+
off: "Hide key light"
|
|
39
|
+
},
|
|
40
|
+
position: {
|
|
41
|
+
on: "Position lights on",
|
|
42
|
+
off: "Position lights off"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
grid: {
|
|
47
|
+
title: "Grid",
|
|
48
|
+
icon: "Grid",
|
|
49
|
+
toggle: {
|
|
50
|
+
on: "Turn grid on",
|
|
51
|
+
off: "Turn grid off"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
controls: {
|
|
56
|
+
grid: {
|
|
57
|
+
title: "Grid",
|
|
58
|
+
iconTitle: "Grid"
|
|
59
|
+
},
|
|
60
|
+
related: {
|
|
61
|
+
title: "Related",
|
|
62
|
+
iconTitle: "Related"
|
|
63
|
+
},
|
|
64
|
+
colors: {
|
|
65
|
+
title: "Colors",
|
|
66
|
+
iconTitle: "Colors"
|
|
67
|
+
},
|
|
68
|
+
lights: {
|
|
69
|
+
title: "Lights",
|
|
70
|
+
iconTitle: "Lights"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
buttons: {
|
|
74
|
+
done: "Done",
|
|
75
|
+
reset: "Reset",
|
|
76
|
+
resetAll: "Reset all"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
export {
|
|
81
|
+
i as default
|
|
82
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@figurosity/consumer-three-dimension-tool",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "3D pose viewer for the Figurosity consumer frontend ecosystem",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/consumer-three-dimension-tool.js",
|
|
7
|
+
"module": "./dist/consumer-three-dimension-tool.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/consumer-three-dimension-tool.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "vite build",
|
|
18
|
+
"dev": "vite --config vite.dev.config.js",
|
|
19
|
+
"test": "vitest run --passWithNoTests",
|
|
20
|
+
"test:watch": "vitest",
|
|
21
|
+
"lint": "eslint src/",
|
|
22
|
+
"format": "prettier --write \"src/**/*.{js,vue}\"",
|
|
23
|
+
"format:check": "prettier --check \"src/**/*.{js,vue}\"",
|
|
24
|
+
"patch": "npm version patch --no-git-tag-version"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/figurosity/consumer-three-dimension-tool.git"
|
|
29
|
+
},
|
|
30
|
+
"author": "",
|
|
31
|
+
"license": "UNLICENSED",
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"@figurosity/consumer-controls": "^0.2.0",
|
|
34
|
+
"@figurosity/toolbox": "^0.2.8",
|
|
35
|
+
"lodash.isequal": "^4.5.0",
|
|
36
|
+
"pinia": "^3.0.1",
|
|
37
|
+
"quasar": "^2.17.6",
|
|
38
|
+
"three": "^0.182.0",
|
|
39
|
+
"vue": "^3.5.12",
|
|
40
|
+
"vue-coloris": "^0.0.2",
|
|
41
|
+
"vue-router": "^4.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@eslint/js": "^9.0.0",
|
|
45
|
+
"@figurosity/consumer-controls": "^0.2.0",
|
|
46
|
+
"@figurosity/toolbox": "^0.2.8",
|
|
47
|
+
"@quasar/extras": "^1.16.0",
|
|
48
|
+
"@quasar/vite-plugin": "^1.7.0",
|
|
49
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
50
|
+
"@vue/eslint-config-prettier": "^10.0.0",
|
|
51
|
+
"@vue/test-utils": "^2.4.6",
|
|
52
|
+
"eslint": "^9.0.0",
|
|
53
|
+
"eslint-plugin-import": "^2.32.0",
|
|
54
|
+
"eslint-plugin-vue": "^9.0.0",
|
|
55
|
+
"globals": "^16.0.0",
|
|
56
|
+
"happy-dom": "^20.8.9",
|
|
57
|
+
"lodash.isequal": "^4.5.0",
|
|
58
|
+
"pinia": "^3.0.1",
|
|
59
|
+
"prettier": "^3.0.0",
|
|
60
|
+
"quasar": "^2.17.6",
|
|
61
|
+
"sass": "^1.99.0",
|
|
62
|
+
"three": "^0.182.0",
|
|
63
|
+
"vite": "^6.0.0",
|
|
64
|
+
"vite-plugin-css-injected-by-js": "^4.0.1",
|
|
65
|
+
"vitest": "^3.0.0",
|
|
66
|
+
"vue": "^3.5.0",
|
|
67
|
+
"vue-coloris": "^0.0.2",
|
|
68
|
+
"vue-router": "^4.0.0"
|
|
69
|
+
}
|
|
70
|
+
}
|