@shipfox/client-config 13.0.0 → 14.0.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": "@shipfox/client-config",
3
3
  "license": "MIT",
4
- "version": "13.0.0",
4
+ "version": "14.0.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/ShipfoxHQ/shipfox.git",
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@swc/helpers": "^0.5.17",
21
- "@shipfox/react-ui": "0.4.0"
21
+ "@shipfox/react-ui": "1.0.0"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "react": "^19.0.0",
@@ -21,10 +21,10 @@ export interface ConfigErrorScreenProps {
21
21
  */
22
22
  export function ConfigErrorScreen({errors, docsUrl}: ConfigErrorScreenProps) {
23
23
  return (
24
- <main className="flex min-h-screen items-center justify-center bg-background-subtle-base px-24 py-32">
24
+ <main className="flex min-h-screen items-center justify-center bg-background-subtle-base px-frame py-frame">
25
25
  <Card className="w-full max-w-[512px]">
26
26
  <CardHeader>
27
- <div className="flex items-center gap-8">
27
+ <div className="flex items-center gap-inline">
28
28
  <Icon name="errorWarningLine" className="size-20 text-tag-error-icon" />
29
29
  <CardTitle variant="h2">Configuration error</CardTitle>
30
30
  </div>
@@ -38,7 +38,7 @@ export function ConfigErrorScreen({errors, docsUrl}: ConfigErrorScreenProps) {
38
38
  {errors.map((error) => (
39
39
  <div
40
40
  key={error.key}
41
- className="flex flex-col gap-4 border-t border-border-neutral-base py-12 first:border-t-0 first:pt-0"
41
+ className="flex flex-col gap-tight border-t border-border-neutral-base py-row first:border-t-0 first:pt-0"
42
42
  >
43
43
  <Code variant="label" bold className="text-foreground-neutral-base">
44
44
  {error.key}