@uniformdev/mesh-sdk-react 14.0.1-alpha.101 → 14.1.1-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/CHANGELOG.md +21 -0
- package/package.json +15 -13
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
### [14.1.1](https://github.com/uniformdev/optimize-sdk-internal/compare/v14.1.0...v14.1.1) (2022-02-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @uniformdev/mesh-sdk-react
|
|
9
|
+
|
|
10
|
+
## [14.1.0](https://github.com/uniformdev/optimize-sdk-internal/compare/v14.0.0...v14.1.0) (2022-02-02)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- gather content mesh integration ([#868](https://github.com/uniformdev/optimize-sdk-internal/issues/868)) ([fe4d669](https://github.com/uniformdev/optimize-sdk-internal/commit/fe4d66919ab074dbb120f4eaaba6897af87a59ee))
|
|
15
|
+
- mesh sdk dialogs api ([#897](https://github.com/uniformdev/optimize-sdk-internal/issues/897)) ([79f3920](https://github.com/uniformdev/optimize-sdk-internal/commit/79f39208259f2edba89305ea807fcdc6ddb6e6bc))
|
|
16
|
+
|
|
17
|
+
## [14.0.0](https://github.com/uniformdev/optimize-sdk-internal/compare/v13.0.0...v14.0.0) (2021-12-21)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- **mesh:** external integrations sdk (vanilla and react) and sample app/integration ([#782](https://github.com/uniformdev/optimize-sdk-internal/issues/782)) ([3491592](https://github.com/uniformdev/optimize-sdk-internal/commit/349159291dd64cdac264c16ee27e499099c2a5e3))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk-react",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.1.1-alpha.0",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK for React",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"storybook:publish": "yarn build && yarn build-storybook -o ./out"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@uniformdev/mesh-sdk": "^14.
|
|
50
|
+
"@uniformdev/mesh-sdk": "^14.1.1-alpha.0",
|
|
51
51
|
"react-beautiful-dnd": "13.1.0",
|
|
52
52
|
"react-use": "17.3.2",
|
|
53
53
|
"reakit": "1.3.11",
|
|
@@ -58,31 +58,33 @@
|
|
|
58
58
|
"react": ">=16.8"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@storybook/addon-controls": "6.4.
|
|
62
|
-
"@storybook/addon-essentials": "6.4.
|
|
61
|
+
"@storybook/addon-controls": "6.4.18",
|
|
62
|
+
"@storybook/addon-essentials": "6.4.18",
|
|
63
63
|
"@storybook/addon-postcss": "2.0.0",
|
|
64
|
-
"@storybook/react": "6.4.
|
|
65
|
-
"@svgr/cli": "6.2.
|
|
64
|
+
"@storybook/react": "6.4.18",
|
|
65
|
+
"@svgr/cli": "6.2.1",
|
|
66
66
|
"@tailwindcss/forms": "0.4.0",
|
|
67
67
|
"@types/jest": "27.4.0",
|
|
68
|
-
"@types/node": "16.11.
|
|
68
|
+
"@types/node": "16.11.24",
|
|
69
69
|
"@types/react-beautiful-dnd": "13.1.2",
|
|
70
70
|
"autoprefixer": "10.4.2",
|
|
71
|
-
"eslint": "8.
|
|
71
|
+
"eslint": "8.8.0",
|
|
72
72
|
"eslint-plugin-react": "7.28.0",
|
|
73
73
|
"eslint-plugin-react-hooks": "4.3.0",
|
|
74
|
-
"jest": "27.
|
|
74
|
+
"jest": "27.5.1",
|
|
75
75
|
"npm-run-all": "4.1.5",
|
|
76
|
-
"postcss": "8.4.
|
|
76
|
+
"postcss": "8.4.6",
|
|
77
77
|
"postcss-import": "14.0.2",
|
|
78
78
|
"react": "17.0.2",
|
|
79
79
|
"rimraf": "3.0.2",
|
|
80
|
-
"tailwindcss": "3.0.
|
|
80
|
+
"tailwindcss": "3.0.22",
|
|
81
81
|
"ts-jest": "27.1.3",
|
|
82
|
-
"tsup": "5.11.
|
|
82
|
+
"tsup": "5.11.13"
|
|
83
83
|
},
|
|
84
84
|
"files": [
|
|
85
85
|
"/dist"
|
|
86
86
|
],
|
|
87
|
-
"
|
|
87
|
+
"publishConfig": {
|
|
88
|
+
"access": "public"
|
|
89
|
+
}
|
|
88
90
|
}
|