@appcorp/shadcn 1.1.60 → 1.1.61
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 +2 -2
- package/templates/data/school-v1.d.ts +18 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appcorp/shadcn",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.61",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build:next": "next build",
|
|
6
6
|
"build:storybook": "mv ../.pnp.cjs ../.pnp.cjs.bak 2>/dev/null || true && storybook build -c .storybook -o .out && mv ../.pnp.cjs.bak ../.pnp.cjs 2>/dev/null || true",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@radix-ui/react-switch": "^1",
|
|
66
66
|
"@radix-ui/react-tabs": "^1",
|
|
67
67
|
"@radix-ui/react-toggle": "^1",
|
|
68
|
-
"@react-pakistan/util-functions": "^1.25.
|
|
68
|
+
"@react-pakistan/util-functions": "^1.25.69",
|
|
69
69
|
"@storybook/addon-docs": "^10.3.5",
|
|
70
70
|
"@storybook/addon-onboarding": "^10.3.5",
|
|
71
71
|
"@storybook/nextjs": "^10.3.5",
|
|
@@ -110,15 +110,19 @@ export type FAQsData = {
|
|
|
110
110
|
lead?: string;
|
|
111
111
|
};
|
|
112
112
|
export type FooterData = {
|
|
113
|
-
|
|
114
|
-
brandFullName: string;
|
|
113
|
+
address: string;
|
|
115
114
|
brandDescription: string;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
115
|
+
brandFullName: string;
|
|
116
|
+
brandShortName: string;
|
|
117
|
+
emailHref: string;
|
|
118
|
+
emailLabel: string;
|
|
119
|
+
partnerLabel?: string;
|
|
120
|
+
partnerHref?: string;
|
|
121
|
+
phoneHref: string;
|
|
122
|
+
phoneLabel: string;
|
|
123
|
+
programs: Array<{
|
|
124
|
+
label: string;
|
|
125
|
+
id: string;
|
|
122
126
|
}>;
|
|
123
127
|
quickLinks: Array<{
|
|
124
128
|
href: string;
|
|
@@ -126,17 +130,13 @@ export type FooterData = {
|
|
|
126
130
|
enable: boolean;
|
|
127
131
|
order: number;
|
|
128
132
|
}>;
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
133
|
+
socialLinks: Array<{
|
|
134
|
+
name: "facebook" | "twitter" | "instagram" | "youtube";
|
|
135
|
+
href: string;
|
|
136
|
+
aria?: string;
|
|
137
|
+
enable: boolean;
|
|
138
|
+
order: number;
|
|
132
139
|
}>;
|
|
133
|
-
address: string;
|
|
134
|
-
phoneLabel: string;
|
|
135
|
-
phoneHref: string;
|
|
136
|
-
emailLabel: string;
|
|
137
|
-
emailHref: string;
|
|
138
|
-
partnerLabel?: string;
|
|
139
|
-
partnerHref?: string;
|
|
140
140
|
};
|
|
141
141
|
export type HeroData = {
|
|
142
142
|
slides: HeroSlide[];
|