@shipfox/client-secrets 17.0.0 → 21.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/.turbo/turbo-type.log +0 -1
- package/CHANGELOG.md +18 -0
- package/dist/components/workspace-secrets-section.d.ts.map +1 -1
- package/dist/components/workspace-secrets-section.js +2 -1
- package/dist/components/workspace-secrets-section.js.map +1 -1
- package/dist/components/workspace-variables-section.d.ts.map +1 -1
- package/dist/components/workspace-variables-section.js +2 -1
- package/dist/components/workspace-variables-section.js.map +1 -1
- package/dist/routes/secrets-settings.d.ts +3 -0
- package/dist/routes/secrets-settings.js +3 -0
- package/dist/routes/secrets-settings.js.map +1 -1
- package/dist/routes/variables-settings.d.ts +3 -0
- package/dist/routes/variables-settings.js +3 -0
- package/dist/routes/variables-settings.js.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/src/components/workspace-secrets-section.tsx +3 -2
- package/src/components/workspace-variables-section.tsx +3 -2
- package/src/routes/secrets-settings.tsx +1 -0
- package/src/routes/variables-settings.tsx +1 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/client-secrets",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "21.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@swc/helpers": "^0.5.17",
|
|
29
29
|
"@tanstack/react-form": "^1.32.0",
|
|
30
|
-
"@shipfox/api-secrets-dto": "12.0.0",
|
|
31
30
|
"@shipfox/client-api": "6.0.1",
|
|
32
|
-
"@shipfox/client-shell": "
|
|
33
|
-
"@shipfox/client-ui": "
|
|
34
|
-
"@shipfox/react-ui": "
|
|
31
|
+
"@shipfox/client-shell": "21.0.0",
|
|
32
|
+
"@shipfox/client-ui": "21.0.0",
|
|
33
|
+
"@shipfox/react-ui": "2.0.0",
|
|
34
|
+
"@shipfox/api-secrets-dto": "12.0.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@tanstack/react-query": "^5.101.0",
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
} from '@shipfox/react-ui/dropdown-menu';
|
|
9
9
|
import {EmptyState} from '@shipfox/react-ui/empty-state';
|
|
10
10
|
import {Modal, ModalContent, ModalHeader, ModalTitle} from '@shipfox/react-ui/modal';
|
|
11
|
+
import {Panel} from '@shipfox/react-ui/panel';
|
|
11
12
|
import {RelativeTime, RelativeTimeProvider} from '@shipfox/react-ui/relative-time';
|
|
12
13
|
import {
|
|
13
14
|
Table,
|
|
@@ -91,7 +92,7 @@ export function WorkspaceSecretsSection({workspaceId}: {workspaceId: string}) {
|
|
|
91
92
|
) : null}
|
|
92
93
|
|
|
93
94
|
{secrets.length > 0 ? (
|
|
94
|
-
<
|
|
95
|
+
<Panel>
|
|
95
96
|
<Table>
|
|
96
97
|
<TableHeader>
|
|
97
98
|
<TableRow>
|
|
@@ -114,7 +115,7 @@ export function WorkspaceSecretsSection({workspaceId}: {workspaceId: string}) {
|
|
|
114
115
|
))}
|
|
115
116
|
</TableBody>
|
|
116
117
|
</Table>
|
|
117
|
-
</
|
|
118
|
+
</Panel>
|
|
118
119
|
) : null}
|
|
119
120
|
</section>
|
|
120
121
|
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
} from '@shipfox/react-ui/dropdown-menu';
|
|
9
9
|
import {EmptyState} from '@shipfox/react-ui/empty-state';
|
|
10
10
|
import {Modal, ModalContent, ModalHeader, ModalTitle} from '@shipfox/react-ui/modal';
|
|
11
|
+
import {Panel} from '@shipfox/react-ui/panel';
|
|
11
12
|
import {RelativeTime, RelativeTimeProvider} from '@shipfox/react-ui/relative-time';
|
|
12
13
|
import {
|
|
13
14
|
Table,
|
|
@@ -91,7 +92,7 @@ export function WorkspaceVariablesSection({workspaceId}: {workspaceId: string})
|
|
|
91
92
|
) : null}
|
|
92
93
|
|
|
93
94
|
{variables.length > 0 ? (
|
|
94
|
-
<
|
|
95
|
+
<Panel>
|
|
95
96
|
<Table>
|
|
96
97
|
<TableHeader>
|
|
97
98
|
<TableRow>
|
|
@@ -114,7 +115,7 @@ export function WorkspaceVariablesSection({workspaceId}: {workspaceId: string})
|
|
|
114
115
|
))}
|
|
115
116
|
</TableBody>
|
|
116
117
|
</Table>
|
|
117
|
-
</
|
|
118
|
+
</Panel>
|
|
118
119
|
) : null}
|
|
119
120
|
</section>
|
|
120
121
|
|
|
@@ -2,5 +2,6 @@ import {defineRoute, useActiveWorkspace} from '@shipfox/client-shell/runtime';
|
|
|
2
2
|
import {WorkspaceSecretsSection} from '#index.js';
|
|
3
3
|
|
|
4
4
|
export default defineRoute({
|
|
5
|
+
staticData: {frame: 'content'},
|
|
5
6
|
component: () => <WorkspaceSecretsSection workspaceId={useActiveWorkspace().id} />,
|
|
6
7
|
});
|
|
@@ -2,5 +2,6 @@ import {defineRoute, useActiveWorkspace} from '@shipfox/client-shell/runtime';
|
|
|
2
2
|
import {WorkspaceVariablesSection} from '#index.js';
|
|
3
3
|
|
|
4
4
|
export default defineRoute({
|
|
5
|
+
staticData: {frame: 'content'},
|
|
5
6
|
component: () => <WorkspaceVariablesSection workspaceId={useActiveWorkspace().id} />,
|
|
6
7
|
});
|