@ossy/workspaces 3.6.1 → 3.7.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/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.6.1",
4
+ "version": "3.7.1",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
7
  "module": "./src/index.js",
@@ -45,5 +45,5 @@
45
45
  "/src",
46
46
  "README.md"
47
47
  ],
48
- "gitHead": "a5983ae88369e1caddd039c20983ae629ce3166c"
48
+ "gitHead": "1ee220424da6b065034a7f52f52aa4a6ce7c88d5"
49
49
  }
@@ -36,7 +36,7 @@ export const GeneralSettings = () => {
36
36
  }
37
37
 
38
38
  return (
39
- <View gap="l" inset="m">
39
+ <View gap="m">
40
40
  <ContentHeader
41
41
  title="workspace.settings.detailsTitle"
42
42
  description="workspace.settings.detailsDescription"
@@ -1,5 +1,5 @@
1
1
  import React from 'react'
2
- import { View } from '@ossy/design-system'
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
- <View layout="off-center-m" style={{ height: '100%' }}>
16
- <View data-region="content" surface="primary" roundness="m" inset="m">
17
- <Invitations />
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 { View } from '@ossy/design-system'
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
- <View layout="off-center-m" style={{ height: '100%' }}>
16
- <View data-region="content" surface="primary" roundness="m" inset="m">
17
- <GeneralSettings />
18
- </View>
19
- </View>
15
+ <Page>
16
+ <GeneralSettings />
17
+ </Page>
20
18
  )
21
19
  }
22
20