@shipfox/client-workspace-settings 14.0.1 → 16.0.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +10 -0
- package/dist/components/workspace-settings-shell.d.ts +1 -1
- package/dist/feature.d.ts +24 -24
- package/dist/feature.d.ts.map +1 -1
- package/dist/hooks/api/list-invitations.d.ts +1 -1
- package/dist/hooks/api/list-invitations.d.ts.map +1 -1
- package/dist/hooks/api/list-members.d.ts +1 -1
- package/dist/hooks/api/list-members.d.ts.map +1 -1
- package/dist/routes/general.d.ts.map +1 -1
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/members.d.ts.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/tsconfig.build.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 19 files with swc (
|
|
2
|
+
Successfully compiled: 19 files with swc (599.75ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @shipfox/client-workspace-settings
|
|
2
2
|
|
|
3
|
+
## 16.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [80cde6b]
|
|
8
|
+
- @shipfox/react-ui@1.1.0
|
|
9
|
+
- @shipfox/client-ui@16.0.0
|
|
10
|
+
- @shipfox/client-auth@16.0.0
|
|
11
|
+
- @shipfox/client-shell@16.0.0
|
|
12
|
+
|
|
3
13
|
## 14.0.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -3,6 +3,6 @@ import type { ReactNode } from 'react';
|
|
|
3
3
|
interface WorkspaceSettingsShellProps {
|
|
4
4
|
children: (workspace: NonNullable<ReturnType<typeof useMaybeActiveWorkspace>>) => ReactNode;
|
|
5
5
|
}
|
|
6
|
-
export declare function WorkspaceSettingsShell({ children }: WorkspaceSettingsShellProps): string | number | bigint | boolean | import("react").JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean |
|
|
6
|
+
export declare function WorkspaceSettingsShell({ children }: WorkspaceSettingsShellProps): string | number | bigint | boolean | import("react").JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | Iterable<ReactNode> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ReactPortal | null | undefined> | null | undefined;
|
|
7
7
|
export {};
|
|
8
8
|
//# sourceMappingURL=workspace-settings-shell.d.ts.map
|
package/dist/feature.d.ts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
export declare const workspaceSettingsNavigation: readonly [{
|
|
2
|
-
readonly id:
|
|
3
|
-
readonly scope:
|
|
4
|
-
readonly label:
|
|
5
|
-
readonly to:
|
|
2
|
+
readonly id: 'nav.settings';
|
|
3
|
+
readonly scope: 'workspace';
|
|
4
|
+
readonly label: 'Settings';
|
|
5
|
+
readonly to: '/w/$workspaceSlug/settings';
|
|
6
6
|
readonly order: 200;
|
|
7
7
|
}];
|
|
8
8
|
export declare const workspaceSettingsSections: readonly [{
|
|
9
|
-
readonly id:
|
|
10
|
-
readonly pathSegment:
|
|
11
|
-
readonly label:
|
|
12
|
-
readonly icon:
|
|
9
|
+
readonly id: 'settings.general';
|
|
10
|
+
readonly pathSegment: 'general';
|
|
11
|
+
readonly label: 'General';
|
|
12
|
+
readonly icon: 'settings3Line';
|
|
13
13
|
readonly order: 50;
|
|
14
14
|
}, {
|
|
15
|
-
readonly id:
|
|
16
|
-
readonly pathSegment:
|
|
17
|
-
readonly label:
|
|
18
|
-
readonly icon:
|
|
15
|
+
readonly id: 'settings.members';
|
|
16
|
+
readonly pathSegment: 'members';
|
|
17
|
+
readonly label: 'Members';
|
|
18
|
+
readonly icon: 'userLine';
|
|
19
19
|
readonly order: 100;
|
|
20
20
|
}];
|
|
21
21
|
export declare const workspaceSettingsFeature: {
|
|
@@ -34,23 +34,23 @@ export declare const workspaceSettingsFeature: {
|
|
|
34
34
|
readonly impl: "@shipfox/client-workspace-settings/routes/general";
|
|
35
35
|
}];
|
|
36
36
|
readonly navigation: readonly [{
|
|
37
|
-
readonly id:
|
|
38
|
-
readonly scope:
|
|
39
|
-
readonly label:
|
|
40
|
-
readonly to:
|
|
37
|
+
readonly id: 'nav.settings';
|
|
38
|
+
readonly scope: 'workspace';
|
|
39
|
+
readonly label: 'Settings';
|
|
40
|
+
readonly to: '/w/$workspaceSlug/settings';
|
|
41
41
|
readonly order: 200;
|
|
42
42
|
}];
|
|
43
43
|
readonly settingsSections: readonly [{
|
|
44
|
-
readonly id:
|
|
45
|
-
readonly pathSegment:
|
|
46
|
-
readonly label:
|
|
47
|
-
readonly icon:
|
|
44
|
+
readonly id: 'settings.general';
|
|
45
|
+
readonly pathSegment: 'general';
|
|
46
|
+
readonly label: 'General';
|
|
47
|
+
readonly icon: 'settings3Line';
|
|
48
48
|
readonly order: 50;
|
|
49
49
|
}, {
|
|
50
|
-
readonly id:
|
|
51
|
-
readonly pathSegment:
|
|
52
|
-
readonly label:
|
|
53
|
-
readonly icon:
|
|
50
|
+
readonly id: 'settings.members';
|
|
51
|
+
readonly pathSegment: 'members';
|
|
52
|
+
readonly label: 'Members';
|
|
53
|
+
readonly icon: 'userLine';
|
|
54
54
|
readonly order: 100;
|
|
55
55
|
}];
|
|
56
56
|
};
|
package/dist/feature.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature.d.ts","sourceRoot":"","sources":["../src/feature.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"feature.d.ts","sourceRoot":"","sources":["../src/feature.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,2BAA2B;iBAEhC,cAAc;oBACX,WAAW;oBACX,UAAU;iBACb,4BAA4B;oBACzB,GAAG;EAE6B,CAAC;AAE5C,eAAO,MAAM,yBAAyB;iBAE9B,kBAAkB;0BACT,SAAS;oBACf,SAAS;mBACV,eAAe;oBACd,EAAE;;iBAGL,kBAAkB;0BACT,SAAS;oBACf,SAAS;mBACV,UAAU;oBACT,GAAG;EAEsC,CAAC;AAErD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;qBAzB7B,cAAc;wBACX,WAAW;wBACX,UAAU;qBACb,4BAA4B;wBACzB,GAAG;;;qBAMN,kBAAkB;8BACT,SAAS;wBACf,SAAS;uBACV,eAAe;wBACd,EAAE;;qBAGL,kBAAkB;8BACT,SAAS;wBACf,SAAS;uBACV,UAAU;wBACT,GAAG;;CAyBZ,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PendingInvitation } from '#core/membership.js';
|
|
2
|
-
export declare const listInvitationsQueryKey: (workspaceId: string) => readonly [
|
|
2
|
+
export declare const listInvitationsQueryKey: (workspaceId: string) => readonly ['workspaces', string, 'invitations'];
|
|
3
3
|
export declare function listInvitationsQueryOptions(workspaceId: string): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<PendingInvitation[], Error, PendingInvitation[], readonly ["workspaces", string, "invitations"]>, "queryFn"> & {
|
|
4
4
|
queryFn?: import("@tanstack/react-query").QueryFunction<PendingInvitation[], readonly ["workspaces", string, "invitations"], never>;
|
|
5
5
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-invitations.d.ts","sourceRoot":"","sources":["../../../src/hooks/api/list-invitations.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AAG3D,eAAO,MAAM,uBAAuB,
|
|
1
|
+
{"version":3,"file":"list-invitations.d.ts","sourceRoot":"","sources":["../../../src/hooks/api/list-invitations.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AAG3D,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,eACxD,YAAY,UAAe,aAAa,CAAU,CAAC;AAUtD,wBAAgB,2BAA2B,CAAC,WAAW,EAAE,MAAM;;;;;;;EAK9D;AAED,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,MAAM,uFAErD"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { WorkspaceMember } from '#core/membership.js';
|
|
2
|
-
export declare const listMembersQueryKey: (workspaceId: string) => readonly [
|
|
2
|
+
export declare const listMembersQueryKey: (workspaceId: string) => readonly ['workspaces', string, 'members'];
|
|
3
3
|
export declare function listMembersQueryOptions(workspaceId: string): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<WorkspaceMember[], Error, WorkspaceMember[], readonly ["workspaces", string, "members"]>, "queryFn"> & {
|
|
4
4
|
queryFn?: import("@tanstack/react-query").QueryFunction<WorkspaceMember[], readonly ["workspaces", string, "members"], never>;
|
|
5
5
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-members.d.ts","sourceRoot":"","sources":["../../../src/hooks/api/list-members.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,qBAAqB,CAAC;AAGzD,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"list-members.d.ts","sourceRoot":"","sources":["../../../src/hooks/api/list-members.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,qBAAqB,CAAC;AAGzD,eAAO,MAAM,mBAAmB,gBAAiB,MAAM,eACpD,YAAY,UAAe,SAAS,CAAU,CAAC;AAUlD,wBAAgB,uBAAuB,CAAC,WAAW,EAAE,MAAM;;;;;;;EAK1D;AAED,wBAAgB,cAAc,CAAC,WAAW,EAAE,MAAM,qFAEjD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"general.d.ts","sourceRoot":"","sources":["../../src/routes/general.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,mBAAmB,EAAC,MAAM,iCAAiC,CAAC
|
|
1
|
+
{"version":3,"file":"general.d.ts","sourceRoot":"","sources":["../../src/routes/general.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,mBAAmB,EAAC,MAAM,iCAAiC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.tsx"],"names":[],"mappings":";sCAIyB;QAAC,MAAM,EAAE;YAAC,aAAa,EAAE,MAAM,CAAA;SAAC,CAAA;KAAC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.tsx"],"names":[],"mappings":";sCAIyB;QAAC,MAAM,EAAE;YAAC,aAAa,EAAE,MAAM,CAAA;SAAC,CAAA;KAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"members.d.ts","sourceRoot":"","sources":["../../src/routes/members.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,mBAAmB,EAAC,MAAM,iCAAiC,CAAC
|
|
1
|
+
{"version":3,"file":"members.d.ts","sourceRoot":"","sources":["../../src/routes/members.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,mBAAmB,EAAC,MAAM,iCAAiC,CAAC"}
|