@appcorp/shadcn 1.1.63 → 1.1.65
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.
|
|
3
|
+
"version": "1.1.65",
|
|
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",
|
|
@@ -81,14 +81,13 @@ export type ContactData = {
|
|
|
81
81
|
ctaSecondaryHref?: string;
|
|
82
82
|
};
|
|
83
83
|
export type ContactDetail = {
|
|
84
|
-
icon:
|
|
84
|
+
icon: string;
|
|
85
85
|
label: string;
|
|
86
86
|
value: string;
|
|
87
87
|
href: string | null;
|
|
88
88
|
color: string;
|
|
89
89
|
bg: string;
|
|
90
90
|
};
|
|
91
|
-
export type ContactIcon = "MapPin" | "Phone" | "Mail" | "Clock";
|
|
92
91
|
export type FAQSerializable = {
|
|
93
92
|
id: string;
|
|
94
93
|
question: string;
|
|
@@ -12,13 +12,13 @@ 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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
15
|
+
'map-pin': lucide_react_1.MapPin,
|
|
16
|
+
'phone': lucide_react_1.Phone,
|
|
17
|
+
'mail': lucide_react_1.Mail,
|
|
18
|
+
'clock': lucide_react_1.Clock,
|
|
19
|
+
'facebook': lucide_react_1.Facebook,
|
|
20
|
+
'instagram': lucide_react_1.Instagram,
|
|
21
|
+
'twitter': lucide_react_1.Twitter,
|
|
22
22
|
};
|
|
23
23
|
var ContactSection = function (_a) {
|
|
24
24
|
var badge = _a.badge, contactDetails = _a.contactDetails, ctaBullets = _a.ctaBullets, ctaLead = _a.ctaLead, ctaPrimaryHref = _a.ctaPrimaryHref, ctaPrimaryLabel = _a.ctaPrimaryLabel, ctaSecondaryHref = _a.ctaSecondaryHref, ctaSecondaryLabel = _a.ctaSecondaryLabel, ctaTitle = _a.ctaTitle, heading = _a.heading, headingHighlight = _a.headingHighlight, lead = _a.lead, mapEmbedSrc = _a.mapEmbedSrc, mapOpenLink = _a.mapOpenLink, socialLinks = _a.socialLinks;
|
|
@@ -11,16 +11,16 @@ var badge_1 = require("../../../components/ui/badge");
|
|
|
11
11
|
var lucide_react_1 = require("lucide-react");
|
|
12
12
|
var react_1 = __importDefault(require("react"));
|
|
13
13
|
var iconMap = {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
'help': lucide_react_1.HelpCircle,
|
|
15
|
+
'users': lucide_react_1.Users,
|
|
16
|
+
'graduation-cap': lucide_react_1.GraduationCap,
|
|
17
|
+
'calendar': lucide_react_1.Calendar,
|
|
18
|
+
'book-open': lucide_react_1.BookOpen,
|
|
19
|
+
'heart': lucide_react_1.Heart,
|
|
20
|
+
'shield': lucide_react_1.Shield,
|
|
21
|
+
'star': lucide_react_1.Star,
|
|
22
|
+
'credit-card': lucide_react_1.CreditCard,
|
|
23
|
+
'bus': lucide_react_1.Bus,
|
|
24
24
|
};
|
|
25
25
|
var FAQsSection = function (_a) {
|
|
26
26
|
var badge = _a.badge, heading = _a.heading, headingHighlight = _a.headingHighlight, items = _a.items, lead = _a.lead;
|