-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathregistry.json
More file actions
48 lines (48 loc) · 2.95 KB
/
Copy pathregistry.json
File metadata and controls
48 lines (48 loc) · 2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "onboarding-kit",
"homepage": "https://the-onboarding-kit.vercel.app",
"items": [
{
"name": "onboarding-kit",
"type": "registry:block",
"title": "Onboarding Kit",
"description": "A multi-step onboarding flow with conditional logic and validation.",
"dependencies": [
"framer-motion",
"zod"
],
"registryDependencies": [
"button",
"card",
"input",
"textarea",
"progress",
"slider",
"alert"
],
"categories": [
"onboarding",
"data-collection"
],
"files": [
{ "path": "registry/onboarding-kit/page.tsx", "type": "registry:page", "target": "app/onboarding-kit/page.tsx" },
{ "path": "registry/onboarding-kit/onboarding-form.tsx", "type": "registry:component", "target": "components/survey/onboarding-form.tsx" },
{ "path": "registry/onboarding-kit/survey.tsx", "type": "registry:component", "target": "components/survey/survey.tsx" },
{ "path": "registry/onboarding-kit/survey-shell.tsx", "type": "registry:component", "target": "components/survey/survey-shell.tsx" },
{ "path": "registry/onboarding-kit/question-renderer.tsx", "type": "registry:component", "target": "components/survey/question-renderer.tsx" },
{ "path": "registry/onboarding-kit/radio-question.tsx", "type": "registry:component", "target": "components/survey/radio-question.tsx" },
{ "path": "registry/onboarding-kit/card-checkbox-question.tsx", "type": "registry:component", "target": "components/survey/card-checkbox-question.tsx" },
{ "path": "registry/onboarding-kit/rating-question.tsx", "type": "registry:component", "target": "components/survey/rating-question.tsx" },
{ "path": "registry/onboarding-kit/slider-question.tsx", "type": "registry:component", "target": "components/survey/slider-question.tsx" },
{ "path": "registry/onboarding-kit/text-input-question.tsx", "type": "registry:component", "target": "components/survey/text-input-question.tsx" },
{ "path": "registry/onboarding-kit/textarea-question.tsx", "type": "registry:component", "target": "components/survey/textarea-question.tsx" },
{ "path": "registry/onboarding-kit/check-indicator.tsx", "type": "registry:component", "target": "components/survey/check-indicator.tsx" },
{ "path": "registry/onboarding-kit/survey-types.ts", "type": "registry:component", "target": "components/survey/survey-types.ts" },
{ "path": "registry/onboarding-kit/survey-config.ts", "type": "registry:component", "target": "components/survey/survey-config.ts" },
{ "path": "registry/onboarding-kit/use-current-question.ts", "type": "registry:hook", "target": "hooks/use-current-question.ts" },
{ "path": "registry/onboarding-kit/use-question-options.ts", "type": "registry:hook", "target": "hooks/use-question-options.ts" }
]
}
]
}