@shipfox/client-features 12.0.2 → 13.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 +36 -0
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +2 -2
- package/dist/runtime.js.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +13 -13
- package/src/index.test.ts +2 -0
- package/src/runtime.tsx +5 -2
- package/tsconfig.build.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 2 files with swc (
|
|
2
|
+
Successfully compiled: 2 files with swc (296.88ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @shipfox/client-features
|
|
2
2
|
|
|
3
|
+
## 13.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- e405e92: Move client routes to slug-based `/w/$workspaceSlug` and `/p/$projectSlug` URLs, enforce the new composition contract, and support bounded project-slug resolution.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [b5bb0c5]
|
|
12
|
+
- Updated dependencies [a2d684e]
|
|
13
|
+
- Updated dependencies [5d2c9cf]
|
|
14
|
+
- Updated dependencies [e405e92]
|
|
15
|
+
- Updated dependencies [f78740d]
|
|
16
|
+
- Updated dependencies [dea1ffd]
|
|
17
|
+
- Updated dependencies [9fdd5e4]
|
|
18
|
+
- Updated dependencies [3c73365]
|
|
19
|
+
- Updated dependencies [4eb18b8]
|
|
20
|
+
- Updated dependencies [13fa279]
|
|
21
|
+
- Updated dependencies [54c820e]
|
|
22
|
+
- Updated dependencies [54c820e]
|
|
23
|
+
- Updated dependencies [452e0f8]
|
|
24
|
+
- Updated dependencies [edb4a18]
|
|
25
|
+
- Updated dependencies [e1efaee]
|
|
26
|
+
- @shipfox/client-workflows@13.0.0
|
|
27
|
+
- @shipfox/client-agent@13.0.0
|
|
28
|
+
- @shipfox/client-auth@13.0.0
|
|
29
|
+
- @shipfox/client-integrations@13.0.0
|
|
30
|
+
- @shipfox/client-invitations@13.0.0
|
|
31
|
+
- @shipfox/client-onboarding@13.0.0
|
|
32
|
+
- @shipfox/client-projects@13.0.0
|
|
33
|
+
- @shipfox/client-runners@13.0.0
|
|
34
|
+
- @shipfox/client-secrets@13.0.0
|
|
35
|
+
- @shipfox/client-shell@13.0.0
|
|
36
|
+
- @shipfox/client-triggers@13.0.0
|
|
37
|
+
- @shipfox/client-workspace-settings@13.0.0
|
|
38
|
+
|
|
3
39
|
## 12.0.2
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
package/dist/runtime.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAC,WAAW,EAAE,kBAAkB,EAAC,MAAM,+BAA+B,CAAC;AAEnF,eAAO,MAAM,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAC,WAAW,EAAE,kBAAkB,EAAC,MAAM,+BAA+B,CAAC;AAEnF,eAAO,MAAM,aAAa,EAAE,WAG3B,CAAC;AACF,eAAO,MAAM,yBAAyB,EAAE,kBAA4C,CAAC"}
|
package/dist/runtime.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { loadWorkspaceSetupRoute } from '@shipfox/client-onboarding';
|
|
2
|
-
import { ProjectBreadcrumb,
|
|
2
|
+
import { ProjectBreadcrumb, resolveProjectSlug } from '@shipfox/client-projects';
|
|
3
3
|
export const defaultChrome = {
|
|
4
4
|
ProjectBreadcrumb,
|
|
5
|
-
|
|
5
|
+
projectSlugResolver: resolveProjectSlug
|
|
6
6
|
};
|
|
7
7
|
export const defaultWorkspaceSetupGate = loadWorkspaceSetupRoute;
|
|
8
8
|
|
package/dist/runtime.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/runtime.tsx"],"sourcesContent":["import {loadWorkspaceSetupRoute} from '@shipfox/client-onboarding';\nimport {ProjectBreadcrumb,
|
|
1
|
+
{"version":3,"sources":["../src/runtime.tsx"],"sourcesContent":["import {loadWorkspaceSetupRoute} from '@shipfox/client-onboarding';\nimport {ProjectBreadcrumb, resolveProjectSlug} from '@shipfox/client-projects';\nimport type {ChromeSlots, WorkspaceSetupGate} from '@shipfox/client-shell/runtime';\n\nexport const defaultChrome: ChromeSlots = {\n ProjectBreadcrumb,\n projectSlugResolver: resolveProjectSlug,\n};\nexport const defaultWorkspaceSetupGate: WorkspaceSetupGate = loadWorkspaceSetupRoute;\n"],"names":["loadWorkspaceSetupRoute","ProjectBreadcrumb","resolveProjectSlug","defaultChrome","projectSlugResolver","defaultWorkspaceSetupGate"],"mappings":"AAAA,SAAQA,uBAAuB,QAAO,6BAA6B;AACnE,SAAQC,iBAAiB,EAAEC,kBAAkB,QAAO,2BAA2B;AAG/E,OAAO,MAAMC,gBAA6B;IACxCF;IACAG,qBAAqBF;AACvB,EAAE;AACF,OAAO,MAAMG,4BAAgDL,wBAAwB"}
|