@babylonjs/shared-ui-components 9.25.0 → 9.26.1
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/copyCommandToClipboard.d.ts +1 -1
- package/copyCommandToClipboard.js +5 -2
- package/copyCommandToClipboard.js.map +1 -1
- package/fluent/hoc/propertyLines/colorPropertyLine.d.ts +10 -0
- package/fluent/hoc/propertyLines/colorPropertyLine.js +24 -33
- package/fluent/hoc/propertyLines/colorPropertyLine.js.map +1 -1
- package/fluent/hoc/propertyLines/colorPropertyLineCore.d.ts +20 -0
- package/fluent/hoc/propertyLines/colorPropertyLineCore.js +42 -0
- package/fluent/hoc/propertyLines/colorPropertyLineCore.js.map +1 -0
- package/fluent/hoc/propertyLines/vectorPropertyLine.d.ts +30 -47
- package/fluent/hoc/propertyLines/vectorPropertyLine.js +80 -65
- package/fluent/hoc/propertyLines/vectorPropertyLine.js.map +1 -1
- package/fluent/hoc/propertyLines/vectorPropertyLineCore.d.ts +70 -0
- package/fluent/hoc/propertyLines/vectorPropertyLineCore.js +68 -0
- package/fluent/hoc/propertyLines/vectorPropertyLineCore.js.map +1 -0
- package/fluent/primitives/accordion.contexts.js +27 -6
- package/fluent/primitives/accordion.contexts.js.map +1 -1
- package/fluent/primitives/spinButton.js +1 -2
- package/fluent/primitives/spinButton.js.map +1 -1
- package/fluent/primitives/structuralColorPicker.d.ts +21 -0
- package/fluent/primitives/structuralColorPicker.js +123 -0
- package/fluent/primitives/structuralColorPicker.js.map +1 -0
- package/lite/fluent/hoc/propertyLines/colorPropertyLine.d.ts +10 -0
- package/lite/fluent/hoc/propertyLines/colorPropertyLine.js +50 -0
- package/lite/fluent/hoc/propertyLines/colorPropertyLine.js.map +1 -0
- package/lite/fluent/hoc/propertyLines/vectorPropertyLine.d.ts +28 -0
- package/lite/fluent/hoc/propertyLines/vectorPropertyLine.js +89 -0
- package/lite/fluent/hoc/propertyLines/vectorPropertyLine.js.map +1 -0
- package/lite/index.d.ts +2 -0
- package/lite/index.js +3 -0
- package/lite/index.js.map +1 -0
- package/modularTool/hooks/observableHooks.d.ts +10 -5
- package/modularTool/hooks/observableHooks.js +7 -2
- package/modularTool/hooks/observableHooks.js.map +1 -1
- package/modularTool/misc/observableCollection.d.ts +19 -1
- package/modularTool/misc/observableCollection.js +20 -0
- package/modularTool/misc/observableCollection.js.map +1 -1
- package/modularTool/services/shellService.js +11 -4
- package/modularTool/services/shellService.js.map +1 -1
- package/package.json +28 -1
package/package.json
CHANGED
|
@@ -1,9 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/shared-ui-components",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.26.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"module": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
|
+
"default": "./index.js"
|
|
11
|
+
},
|
|
12
|
+
"./lite": {
|
|
13
|
+
"types": "./lite/index.d.ts",
|
|
14
|
+
"default": "./lite/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./*.js": "./*.js",
|
|
17
|
+
"./*.d.ts": "./*.d.ts",
|
|
18
|
+
"./*.map": "./*.map",
|
|
19
|
+
"./*.svg": "./*.svg",
|
|
20
|
+
"./*.scss": "./*.scss",
|
|
21
|
+
"./*": {
|
|
22
|
+
"types": "./*.d.ts",
|
|
23
|
+
"default": "./*.js"
|
|
24
|
+
},
|
|
25
|
+
"./package.json": "./package.json"
|
|
26
|
+
},
|
|
7
27
|
"files": [
|
|
8
28
|
"**/*.js",
|
|
9
29
|
"**/*.d.ts",
|
|
@@ -21,10 +41,12 @@
|
|
|
21
41
|
"postcompile": "build-tools -c add-js-to-es6"
|
|
22
42
|
},
|
|
23
43
|
"devDependencies": {
|
|
44
|
+
"@babylonjs/lite": "1.27.0",
|
|
24
45
|
"@dev/build-tools": "^1.0.0",
|
|
25
46
|
"@dev/shared-ui-components": "^1.0.0"
|
|
26
47
|
},
|
|
27
48
|
"peerDependencies": {
|
|
49
|
+
"@babylonjs/lite": "^1.27.0",
|
|
28
50
|
"@types/dagre": "^0.7.47",
|
|
29
51
|
"dagre": "^0.8.5",
|
|
30
52
|
"react": "^18.2.0",
|
|
@@ -32,6 +54,11 @@
|
|
|
32
54
|
"react-dnd-touch-backend": "15.0.1",
|
|
33
55
|
"react-dom": "^18.2.0"
|
|
34
56
|
},
|
|
57
|
+
"peerDependenciesMeta": {
|
|
58
|
+
"@babylonjs/lite": {
|
|
59
|
+
"optional": true
|
|
60
|
+
}
|
|
61
|
+
},
|
|
35
62
|
"keywords": [
|
|
36
63
|
"3D",
|
|
37
64
|
"javascript",
|