@webiny/app-tenancy 5.37.2 → 5.37.3-beta.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/Tenancy.js +3 -1
- package/contexts/Tenancy.js +3 -1
- package/hooks/useTenancy.js +3 -1
- package/index.js +3 -1
- package/package.json +8 -8
- package/plugins/installation.js +3 -1
- package/withTenant.js +3 -1
package/Tenancy.js
CHANGED
|
@@ -25,4 +25,6 @@ var TenancyExtension = function TenancyExtension() {
|
|
|
25
25
|
};
|
|
26
26
|
exports.TenancyExtension = TenancyExtension;
|
|
27
27
|
var Tenancy = /*#__PURE__*/(0, _react.memo)(TenancyExtension);
|
|
28
|
-
exports.Tenancy = Tenancy;
|
|
28
|
+
exports.Tenancy = Tenancy;
|
|
29
|
+
|
|
30
|
+
//# sourceMappingURL=Tenancy.js.map
|
package/contexts/Tenancy.js
CHANGED
|
@@ -70,4 +70,6 @@ var TenancyProvider = function TenancyProvider(props) {
|
|
|
70
70
|
value: value
|
|
71
71
|
}, /*#__PURE__*/_react.default.createElement(_react.Fragment, null, props.children));
|
|
72
72
|
};
|
|
73
|
-
exports.TenancyProvider = TenancyProvider;
|
|
73
|
+
exports.TenancyProvider = TenancyProvider;
|
|
74
|
+
|
|
75
|
+
//# sourceMappingURL=Tenancy.js.map
|
package/hooks/useTenancy.js
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-tenancy",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.3-beta.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"@babel/runtime": "7.22.6",
|
|
18
18
|
"@emotion/styled": "11.10.6",
|
|
19
19
|
"@types/react": "17.0.39",
|
|
20
|
-
"@webiny/app": "5.37.
|
|
21
|
-
"@webiny/app-admin": "5.37.
|
|
22
|
-
"@webiny/plugins": "5.37.
|
|
23
|
-
"@webiny/ui": "5.37.
|
|
20
|
+
"@webiny/app": "5.37.3-beta.1",
|
|
21
|
+
"@webiny/app-admin": "5.37.3-beta.1",
|
|
22
|
+
"@webiny/plugins": "5.37.3-beta.1",
|
|
23
|
+
"@webiny/ui": "5.37.3-beta.1",
|
|
24
24
|
"apollo-client": "2.6.10",
|
|
25
25
|
"graphql-tag": "2.12.6",
|
|
26
26
|
"react": "17.0.2",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@babel/preset-env": "7.22.7",
|
|
35
35
|
"@babel/preset-react": "7.22.5",
|
|
36
36
|
"@babel/preset-typescript": "7.22.5",
|
|
37
|
-
"@webiny/cli": "5.37.
|
|
38
|
-
"@webiny/project-utils": "5.37.
|
|
37
|
+
"@webiny/cli": "5.37.3-beta.1",
|
|
38
|
+
"@webiny/project-utils": "5.37.3-beta.1",
|
|
39
39
|
"babel-plugin-emotion": "9.2.11",
|
|
40
40
|
"rimraf": "3.0.2",
|
|
41
41
|
"ttypescript": "1.5.15",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"build": "yarn webiny run build",
|
|
50
50
|
"watch": "yarn webiny run watch"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "59d377132f34c76cb198cd0f0eee211a56ca25b7"
|
|
53
53
|
}
|
package/plugins/installation.js
CHANGED