@uniformdev/mesh-sdk-react 19.115.1 → 19.116.2-alpha.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/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +5 -5
package/dist/index.esm.js
CHANGED
|
@@ -5189,7 +5189,7 @@ function VariablesList() {
|
|
|
5189
5189
|
const resultAsObj = result.reduce(
|
|
5190
5190
|
(acc, item, index) => ({
|
|
5191
5191
|
...acc,
|
|
5192
|
-
[item.name]: {
|
|
5192
|
+
[item.name]: { ...item, order: index }
|
|
5193
5193
|
}),
|
|
5194
5194
|
{}
|
|
5195
5195
|
);
|
package/dist/index.js
CHANGED
|
@@ -5346,7 +5346,7 @@ function VariablesList() {
|
|
|
5346
5346
|
const resultAsObj = result.reduce(
|
|
5347
5347
|
(acc, item, index) => ({
|
|
5348
5348
|
...acc,
|
|
5349
|
-
[item.name]: {
|
|
5349
|
+
[item.name]: { ...item, order: index }
|
|
5350
5350
|
}),
|
|
5351
5351
|
{}
|
|
5352
5352
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -5189,7 +5189,7 @@ function VariablesList() {
|
|
|
5189
5189
|
const resultAsObj = result.reduce(
|
|
5190
5190
|
(acc, item, index) => ({
|
|
5191
5191
|
...acc,
|
|
5192
|
-
[item.name]: {
|
|
5192
|
+
[item.name]: { ...item, order: index }
|
|
5193
5193
|
}),
|
|
5194
5194
|
{}
|
|
5195
5195
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk-react",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.116.2-alpha.0+48367f95e7",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK for React",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"@lexical/selection": "^0.12.0",
|
|
51
51
|
"@lexical/utils": "^0.12.0",
|
|
52
52
|
"@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v4.10.1/react-icons-all-files-4.10.1.tgz",
|
|
53
|
-
"@uniformdev/canvas": "19.
|
|
54
|
-
"@uniformdev/design-system": "19.
|
|
55
|
-
"@uniformdev/mesh-sdk": "19.
|
|
53
|
+
"@uniformdev/canvas": "19.116.2-alpha.0+48367f95e7",
|
|
54
|
+
"@uniformdev/design-system": "19.116.2-alpha.0+48367f95e7",
|
|
55
|
+
"@uniformdev/mesh-sdk": "19.116.2-alpha.0+48367f95e7",
|
|
56
56
|
"dequal": "^2.0.3",
|
|
57
57
|
"lexical": "^0.12.0",
|
|
58
58
|
"mitt": "^3.0.0",
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"publishConfig": {
|
|
87
87
|
"access": "public"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "48367f95e7d44220c5e8c479c023e90c20f0b6c9"
|
|
90
90
|
}
|