@ydtb/tk-scope-app 0.25.4 → 0.26.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/dist/src/components/ErrorBoundary.d.ts +1 -1
- package/dist/src/lib/platform-api.d.ts +1 -1
- package/dist/src/onboarding/WizardPage.d.ts +16 -21
- package/dist/src/onboarding/WizardPage.d.ts.map +1 -1
- package/dist/src/onboarding/WizardPage.js +15 -13
- package/dist/src/onboarding/WizardPage.js.map +1 -1
- package/package.json +11 -11
|
@@ -11,7 +11,7 @@ export declare class ErrorBoundary extends Component<Props, State> {
|
|
|
11
11
|
constructor(props: Props);
|
|
12
12
|
static getDerivedStateFromError(error: Error): State;
|
|
13
13
|
componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
|
|
14
|
-
render(): string | number | bigint | boolean |
|
|
14
|
+
render(): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
15
15
|
}
|
|
16
16
|
export {};
|
|
17
17
|
//# sourceMappingURL=ErrorBoundary.d.ts.map
|
|
@@ -3773,6 +3773,6 @@ export declare const tokensApi: import("@ydtb/tk-scope-api-client").ToolClient<{
|
|
|
3773
3773
|
scopeId: string;
|
|
3774
3774
|
scopeType: string;
|
|
3775
3775
|
scopeChain: import("@ydtb/tk-scope-extension/orpc").ScopeChainEntry[];
|
|
3776
|
-
}>, import("zod").ZodObject<{}, import("zod/v4/core").$strip>, import("@orpc/
|
|
3776
|
+
}>, import("zod").ZodObject<{}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<import("@ydtb/tk-scope-tokens/types").TokenListGroup[], import("@ydtb/tk-scope-tokens/types").TokenListGroup[]>, Record<never, never>, Record<never, never>>;
|
|
3777
3777
|
}>;
|
|
3778
3778
|
//# sourceMappingURL=platform-api.d.ts.map
|
|
@@ -1,22 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
export
|
|
17
|
-
current: number;
|
|
18
|
-
total: number;
|
|
19
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
export declare function WizardPage({ icon: Icon, title, subtitle, steps, currentStep, framed, sidebar, sidebarTitle, children, }: WizardPageProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
-
export {};
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Import presentational wizard UI from
|
|
3
|
+
* `@ydtb/tk-scope-ui/components/wizard` instead.
|
|
4
|
+
*
|
|
5
|
+
* Compatibility shim.
|
|
6
|
+
*
|
|
7
|
+
* WizardPage is presentational UI and now lives in @ydtb/tk-scope-ui.
|
|
8
|
+
* Keep this onboarding export so existing app/tool imports do not break while
|
|
9
|
+
* callers migrate to @ydtb/tk-scope-ui/components/wizard.
|
|
10
|
+
*
|
|
11
|
+
* TODO(remove-shim): after at least one release window, grep for callers using
|
|
12
|
+
* `@ydtb/tk-scope-app/client/onboarding` solely for WizardPage/ProgressBar.
|
|
13
|
+
* If none remain, remove this shim from the onboarding export surface.
|
|
14
|
+
*/
|
|
15
|
+
export { ProgressBar, WizardPage, } from "@ydtb/tk-scope-ui/components/wizard";
|
|
16
|
+
export type { WizardPageProps } from "@ydtb/tk-scope-ui/components/wizard";
|
|
22
17
|
//# sourceMappingURL=WizardPage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WizardPage.d.ts","sourceRoot":"","sources":["../../../src/onboarding/WizardPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"WizardPage.d.ts","sourceRoot":"","sources":["../../../src/onboarding/WizardPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,EACL,WAAW,EACX,UAAU,GACX,MAAM,qCAAqC,CAAA;AAC5C,YAAY,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAA"}
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Import presentational wizard UI from
|
|
3
|
+
* `@ydtb/tk-scope-ui/components/wizard` instead.
|
|
4
|
+
*
|
|
5
|
+
* Compatibility shim.
|
|
6
|
+
*
|
|
7
|
+
* WizardPage is presentational UI and now lives in @ydtb/tk-scope-ui.
|
|
8
|
+
* Keep this onboarding export so existing app/tool imports do not break while
|
|
9
|
+
* callers migrate to @ydtb/tk-scope-ui/components/wizard.
|
|
10
|
+
*
|
|
11
|
+
* TODO(remove-shim): after at least one release window, grep for callers using
|
|
12
|
+
* `@ydtb/tk-scope-app/client/onboarding` solely for WizardPage/ProgressBar.
|
|
13
|
+
* If none remain, remove this shim from the onboarding export surface.
|
|
14
|
+
*/
|
|
15
|
+
export { ProgressBar, WizardPage, } from "@ydtb/tk-scope-ui/components/wizard";
|
|
14
16
|
//# sourceMappingURL=WizardPage.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WizardPage.js","sourceRoot":"","sources":["../../../src/onboarding/WizardPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"WizardPage.js","sourceRoot":"","sources":["../../../src/onboarding/WizardPage.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,EACL,WAAW,EACX,UAAU,GACX,MAAM,qCAAqC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ydtb/tk-scope-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Platform client shell for tk-scope — pages, layouts, dashboard chrome, onboarding, auth strategies",
|
|
6
6
|
"type": "module",
|
|
@@ -84,21 +84,21 @@
|
|
|
84
84
|
"@orpc/tanstack-query": "^1.13.14",
|
|
85
85
|
"@ydtb/core-client": "^0.13.2",
|
|
86
86
|
"@ydtb/tk-scope": "0.14.2",
|
|
87
|
-
"@ydtb/tk-scope-api-client": "0.13.0",
|
|
88
|
-
"@ydtb/tk-scope-extension": "0.23.12",
|
|
89
|
-
"@ydtb/tk-scope-dashboard": "0.25.4",
|
|
90
|
-
"@ydtb/tk-scope-launchpad": "0.23.12",
|
|
91
|
-
"@ydtb/tk-scope-events": "0.23.12",
|
|
92
87
|
"@ydtb/tk-scope-auth": "0.23.12",
|
|
88
|
+
"@ydtb/tk-scope-extension": "0.23.12",
|
|
93
89
|
"@ydtb/tk-scope-lib": "0.13.0",
|
|
90
|
+
"@ydtb/tk-scope-api-client": "0.13.0",
|
|
91
|
+
"@ydtb/tk-scope-dashboard": "0.26.0",
|
|
92
|
+
"@ydtb/tk-scope-events": "0.23.12",
|
|
93
|
+
"@ydtb/tk-scope-search": "0.23.12",
|
|
94
|
+
"@ydtb/tk-scope-launchpad": "0.23.12",
|
|
94
95
|
"@ydtb/tk-scope-notifications": "0.23.12",
|
|
96
|
+
"@ydtb/tk-scope-shell": "0.26.0",
|
|
97
|
+
"@ydtb/tk-scope-tokens": "0.26.0",
|
|
95
98
|
"@ydtb/tk-scope-onboarding": "0.23.12",
|
|
96
|
-
"@ydtb/tk-scope-
|
|
99
|
+
"@ydtb/tk-scope-ui": "0.26.0",
|
|
97
100
|
"@ydtb/tk-scope-query-client": "0.14.0",
|
|
98
|
-
"@ydtb/tk-scope-
|
|
99
|
-
"@ydtb/tk-scope-shell": "0.25.1",
|
|
100
|
-
"@ydtb/tk-scope-ui": "0.25.1",
|
|
101
|
-
"@ydtb/tk-scope-tokens": "0.25.1"
|
|
101
|
+
"@ydtb/tk-scope-platform": "0.23.12"
|
|
102
102
|
},
|
|
103
103
|
"peerDependencies": {
|
|
104
104
|
"@tanstack/react-query": ">=5.99.0 <6.0.0",
|