@appcorp/shadcn 1.1.66 → 1.1.68

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/shadcn",
3
- "version": "1.1.66",
3
+ "version": "1.1.68",
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",
@@ -1,4 +1,3 @@
1
- import type { LucideIcon } from "lucide-react";
2
1
  export type AboutData = {
3
2
  badge?: string;
4
3
  heading: string;
@@ -22,29 +21,22 @@ export type AboutStat = {
22
21
  color: string;
23
22
  };
24
23
  export type AboutValue = {
25
- icon: "Star" | "Heart" | "Target" | "Eye";
24
+ icon: string;
26
25
  title: string;
27
26
  description: string;
28
27
  color: string;
29
28
  iconColor: string;
30
29
  borderColor: string;
31
30
  };
32
- export interface AdmissionStep {
33
- icon: LucideIcon;
34
- step: string;
35
- title: string;
36
- description: string;
37
- color: string;
38
- }
39
- export type AdmissionStepSerializable = {
40
- icon: "FileText" | "Calendar" | "ClipboardList" | "CheckCircle";
31
+ export type AdmissionStep = {
32
+ icon: string;
41
33
  step: string;
42
34
  title: string;
43
35
  description: string;
44
36
  color: string;
45
37
  };
46
38
  export type AdmissionsData = {
47
- admissionSteps: AdmissionStepSerializable[];
39
+ admissionSteps: AdmissionStep[];
48
40
  badge?: string;
49
41
  ctaDownloadLabel: string;
50
42
  ctaEmailHref: string;
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.policiesData = exports.policyHighlights = exports.policyCategories = exports.uniformData = exports.whysUsData = exports.highlightBadges = exports.whyUsFeatures = exports.testimonialData = exports.testimonials = exports.programsData = exports.programs = exports.managementData = exports.managementTeam = exports.heroData = exports.heroStats = exports.heroSlides = exports.faqsData = exports.faqs = exports.contactData = exports.admissionsData = exports.documentsRequired = exports.keyDates = exports.admissionSteps = exports.aboutData = exports.footerData = exports.navigationData = void 0;
4
- var lucide_react_1 = require("lucide-react");
5
4
  // Data constants (unchanged)
6
5
  // Navigation
7
6
  exports.navigationData = {
@@ -80,7 +79,7 @@ exports.aboutData = {
80
79
  ],
81
80
  values: [
82
81
  {
83
- icon: "Star",
82
+ icon: "star",
84
83
  title: "Academic Excellence",
85
84
  description: "For over three decades, LGGS has set the standard in Lahore for academic achievement — producing confident, capable graduates who are fully prepared for the next chapter of their lives.",
86
85
  color: "bg-yellow-50",
@@ -88,7 +87,7 @@ exports.aboutData = {
88
87
  borderColor: "border-yellow-100",
89
88
  },
90
89
  {
91
- icon: "Heart",
90
+ icon: "heart",
92
91
  title: "Child-Centered Philosophy",
93
92
  description: "Every decision at LGGS begins and ends with the question: what's best for the child? From curriculum design to pastoral care, your child's happiness and growth guide everything we do.",
94
93
  color: "bg-rose-50",
@@ -96,7 +95,7 @@ exports.aboutData = {
96
95
  borderColor: "border-rose-100",
97
96
  },
98
97
  {
99
- icon: "Target",
98
+ icon: "target",
100
99
  title: "Recognized Standards",
101
100
  description: "LGGS is registered with the Directorate of Education Punjab and affiliated with BISE Lahore — ensuring your child receives a recognized, credentialed education that opens every door.",
102
101
  color: "bg-blue-50",
@@ -104,7 +103,7 @@ exports.aboutData = {
104
103
  borderColor: "border-blue-100",
105
104
  },
106
105
  {
107
- icon: "Eye",
106
+ icon: "eye",
108
107
  title: "Safe, Focused Environments",
109
108
  description: "Our dedicated boys' and girls' campuses are carefully designed to provide distraction-free, nurturing spaces where every student can focus on learning and thriving.",
110
109
  color: "bg-green-50",
@@ -128,28 +127,28 @@ exports.aboutData = {
128
127
  // Admissions
129
128
  exports.admissionSteps = [
130
129
  {
131
- icon: lucide_react_1.FileText,
130
+ icon: "file-text",
132
131
  step: "01",
133
132
  title: "Download the Prospectus",
134
133
  description: "Get our school prospectus from the website or visit our campus. It contains everything you need to know about LGGS — our programs, values, facilities, and fee structure.",
135
134
  color: "bg-blue-100 text-blue-700",
136
135
  },
137
136
  {
138
- icon: lucide_react_1.Calendar,
137
+ icon: "calendar",
139
138
  step: "02",
140
139
  title: "Visit Our Campus",
141
140
  description: "We warmly invite you to tour our campus and meet our faculty. Seeing LGGS in action is the best way to feel the warmth and energy that makes our school truly special. Contact us to arrange your visit.",
142
141
  color: "bg-green-100 text-green-700",
143
142
  },
144
143
  {
145
- icon: lucide_react_1.ClipboardList,
144
+ icon: "clipboard-list",
146
145
  step: "03",
147
146
  title: "Submit Your Application",
148
147
  description: "Complete and submit our admission form along with the required documents. Our admissions team will review your application and get in touch to confirm the next steps for your child's enrollment.",
149
148
  color: "bg-purple-100 text-purple-700",
150
149
  },
151
150
  {
152
- icon: lucide_react_1.CheckCircle,
151
+ icon: "check-circle",
153
152
  step: "04",
154
153
  title: "Welcome to the LGGS Family!",
155
154
  description: "Once your application is confirmed, you will receive a formal offer letter. We will guide you through orientation, uniform requirements, and everything needed to ensure your child's first day at LGGS is wonderful.",
@@ -211,28 +210,28 @@ exports.admissionsData = {
211
210
  ctaEmailHref: "mailto:admin@lggs.edu.pk",
212
211
  admissionSteps: [
213
212
  {
214
- icon: "FileText",
213
+ icon: "file-text",
215
214
  step: "01",
216
215
  title: "Download the Prospectus",
217
216
  description: "Get our school prospectus from the website or visit our campus. It contains everything you need to know about LGGS — our programs, values, facilities, and fee structure.",
218
217
  color: "bg-blue-100 text-blue-700",
219
218
  },
220
219
  {
221
- icon: "Calendar",
220
+ icon: "calendar",
222
221
  step: "02",
223
222
  title: "Visit Our Campus",
224
223
  description: "We warmly invite you to tour our campus and meet our faculty. Seeing LGGS in action is the best way to feel the warmth and energy that makes our school truly special. Contact us to arrange your visit.",
225
224
  color: "bg-green-100 text-green-700",
226
225
  },
227
226
  {
228
- icon: "ClipboardList",
227
+ icon: "clipboard-list",
229
228
  step: "03",
230
229
  title: "Submit Your Application",
231
230
  description: "Complete and submit our admission form along with the required documents. Our admissions team will review your application and get in touch to confirm the next steps for your child's enrollment.",
232
231
  color: "bg-purple-100 text-purple-700",
233
232
  },
234
233
  {
235
- icon: "CheckCircle",
234
+ icon: "check-circle",
236
235
  step: "04",
237
236
  title: "Welcome to the LGGS Family!",
238
237
  description: "Once your application is confirmed, you will receive a formal offer letter. We will guide you through orientation, uniform requirements, and everything needed to ensure your child's first day at LGGS is wonderful.",
@@ -54,7 +54,7 @@ var Navigation = function (_a) {
54
54
  window.addEventListener("scroll", handleScroll);
55
55
  return function () { return window.removeEventListener("scroll", handleScroll); };
56
56
  }, []);
57
- return (react_1.default.createElement("header", { className: (0, utils_1.cn)("fixed top-0 z-50 w-full transition-all duration-300", scrolled ? "bg-white/95 shadow-md backdrop-blur-sm" : "bg-transparent") },
57
+ return (react_1.default.createElement("div", { className: (0, utils_1.cn)("fixed top-0 z-50 w-full transition-all duration-300", scrolled ? "bg-white/95 shadow-md backdrop-blur-sm" : "bg-transparent") },
58
58
  react_1.default.createElement("nav", { className: "container mx-auto flex h-16 items-center justify-between px-4" },
59
59
  react_1.default.createElement(link_1.default, { href: "/", className: "flex items-center gap-2" },
60
60
  react_1.default.createElement("div", { className: "flex h-10 w-10 items-center justify-center rounded-full bg-blue-700" },
@@ -11,7 +11,7 @@ var card_1 = require("../../../components/ui/card");
11
11
  var separator_1 = require("../../../components/ui/separator");
12
12
  var lucide_react_1 = require("lucide-react");
13
13
  var react_1 = __importDefault(require("react"));
14
- var iconMap = { Star: lucide_react_1.Star, Heart: lucide_react_1.Heart, Target: lucide_react_1.Target, Eye: lucide_react_1.Eye };
14
+ var iconMap = { star: lucide_react_1.Star, heart: lucide_react_1.Heart, target: lucide_react_1.Target, eye: lucide_react_1.Eye };
15
15
  var AboutSection = function (_a) {
16
16
  var badge = _a.badge, heading = _a.heading, headingHighlight = _a.headingHighlight, lead = _a.lead, milestones = _a.milestones, paragraphs = _a.paragraphs, stats = _a.stats, values = _a.values;
17
17
  return (react_1.default.createElement("section", { id: "about", className: "overflow-hidden bg-white py-24" },
@@ -12,10 +12,10 @@ var link_1 = __importDefault(require("next/link"));
12
12
  var lucide_react_1 = require("lucide-react");
13
13
  var react_1 = __importDefault(require("react"));
14
14
  var iconMap = {
15
- FileText: lucide_react_1.FileText,
16
- Calendar: lucide_react_1.Calendar,
17
- ClipboardList: lucide_react_1.ClipboardList,
18
- CheckCircle: lucide_react_1.CheckCircle,
15
+ "file-text": lucide_react_1.FileText,
16
+ calendar: lucide_react_1.Calendar,
17
+ "clipboard-list": lucide_react_1.ClipboardList,
18
+ "check-circle": lucide_react_1.CheckCircle,
19
19
  };
20
20
  var statusStyles = {
21
21
  open: "bg-green-100 text-green-700",