@ossy/workspaces 3.6.1 → 3.8.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ossy/workspaces",
|
|
3
3
|
"description": "Workspaces feature package - create, select, and manage workspaces, users, and invitations",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.8.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"module": "./src/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@ossy/config": "^3.0.9",
|
|
27
|
-
"@ossy/schema": "^3.
|
|
27
|
+
"@ossy/schema": "^3.8.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@ossy/design-system": ">=1.0.0",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"/src",
|
|
46
46
|
"README.md"
|
|
47
47
|
],
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "14548dfc2019e7258e8c75db527acbf66fe829bd"
|
|
49
49
|
}
|
package/src/GeneralSettings.jsx
CHANGED
package/src/Invitations.page.jsx
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
|
-
import {
|
|
2
|
+
import { Page } from '@ossy/design-system'
|
|
3
3
|
import { Invitations } from './Invitations.jsx'
|
|
4
4
|
|
|
5
5
|
export const metadata = {
|
|
@@ -12,11 +12,9 @@ export const metadata = {
|
|
|
12
12
|
|
|
13
13
|
export const InvitationsPage = () => {
|
|
14
14
|
return (
|
|
15
|
-
<
|
|
16
|
-
<
|
|
17
|
-
|
|
18
|
-
</View>
|
|
19
|
-
</View>
|
|
15
|
+
<Page>
|
|
16
|
+
<Invitations />
|
|
17
|
+
</Page>
|
|
20
18
|
)
|
|
21
19
|
}
|
|
22
20
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
|
-
import {
|
|
2
|
+
import { Page } from '@ossy/design-system'
|
|
3
3
|
import { GeneralSettings } from './GeneralSettings.jsx'
|
|
4
4
|
|
|
5
5
|
export const metadata = {
|
|
@@ -12,11 +12,9 @@ export const metadata = {
|
|
|
12
12
|
|
|
13
13
|
export const WorkspaceSettingsPage = () => {
|
|
14
14
|
return (
|
|
15
|
-
<
|
|
16
|
-
<
|
|
17
|
-
|
|
18
|
-
</View>
|
|
19
|
-
</View>
|
|
15
|
+
<Page>
|
|
16
|
+
<GeneralSettings />
|
|
17
|
+
</Page>
|
|
20
18
|
)
|
|
21
19
|
}
|
|
22
20
|
|