@burdenoff/website-sdk 2026.719.4 → 2026.719.5
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/content/index.d.mts +18 -0
- package/dist/content/index.d.ts +18 -0
- package/dist/content/index.js +488 -96
- package/dist/content/index.js.map +1 -1
- package/dist/content/index.mjs +489 -97
- package/dist/content/index.mjs.map +1 -1
- package/dist/index.js +488 -96
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +488 -96
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/content/index.d.mts
CHANGED
|
@@ -117,6 +117,8 @@ declare function BlogPostPage(props: BlogPostPageProps): react_jsx_runtime.JSX.E
|
|
|
117
117
|
|
|
118
118
|
interface CaseStudiesListPageProps {
|
|
119
119
|
productName?: string;
|
|
120
|
+
/** Small label above the hero title. Default: "Customer Stories". */
|
|
121
|
+
eyebrow?: string;
|
|
120
122
|
heroTitle?: string;
|
|
121
123
|
heroSubtitle?: string;
|
|
122
124
|
caseStudyBasePath?: string;
|
|
@@ -124,12 +126,28 @@ interface CaseStudiesListPageProps {
|
|
|
124
126
|
seoTitle?: string;
|
|
125
127
|
seoDescription?: string;
|
|
126
128
|
seoKeywords?: string;
|
|
129
|
+
/** Where the primary "get in touch" CTA points. Default: "/contact". */
|
|
130
|
+
contactHref?: string;
|
|
131
|
+
/** Primary CTA label. Default: "Get in touch". */
|
|
132
|
+
contactLabel?: string;
|
|
133
|
+
/** Secondary CTA target (shown in the empty state). Default: "/features". */
|
|
134
|
+
exploreHref?: string;
|
|
135
|
+
/** Secondary CTA label. Default: "Explore the product". */
|
|
136
|
+
exploreLabel?: string;
|
|
137
|
+
/** Heading for the empty state. Falls back to a product-aware default. */
|
|
138
|
+
emptyTitle?: string;
|
|
139
|
+
/** Body copy for the empty state. Falls back to a product-aware default. */
|
|
140
|
+
emptySubtitle?: string;
|
|
127
141
|
}
|
|
128
142
|
interface CaseStudyPageProps {
|
|
129
143
|
productName?: string;
|
|
130
144
|
caseStudiesListUrl?: string;
|
|
131
145
|
/** Back-link label. Default: "Back to Case Studies". */
|
|
132
146
|
backLabel?: string;
|
|
147
|
+
/** Where the closing "get in touch" CTA points. Default: "/contact". */
|
|
148
|
+
contactHref?: string;
|
|
149
|
+
/** Closing CTA label. Default: "Get in touch". */
|
|
150
|
+
contactLabel?: string;
|
|
133
151
|
className?: string;
|
|
134
152
|
}
|
|
135
153
|
declare function CaseStudiesListPage(props: CaseStudiesListPageProps): react_jsx_runtime.JSX.Element;
|
package/dist/content/index.d.ts
CHANGED
|
@@ -117,6 +117,8 @@ declare function BlogPostPage(props: BlogPostPageProps): react_jsx_runtime.JSX.E
|
|
|
117
117
|
|
|
118
118
|
interface CaseStudiesListPageProps {
|
|
119
119
|
productName?: string;
|
|
120
|
+
/** Small label above the hero title. Default: "Customer Stories". */
|
|
121
|
+
eyebrow?: string;
|
|
120
122
|
heroTitle?: string;
|
|
121
123
|
heroSubtitle?: string;
|
|
122
124
|
caseStudyBasePath?: string;
|
|
@@ -124,12 +126,28 @@ interface CaseStudiesListPageProps {
|
|
|
124
126
|
seoTitle?: string;
|
|
125
127
|
seoDescription?: string;
|
|
126
128
|
seoKeywords?: string;
|
|
129
|
+
/** Where the primary "get in touch" CTA points. Default: "/contact". */
|
|
130
|
+
contactHref?: string;
|
|
131
|
+
/** Primary CTA label. Default: "Get in touch". */
|
|
132
|
+
contactLabel?: string;
|
|
133
|
+
/** Secondary CTA target (shown in the empty state). Default: "/features". */
|
|
134
|
+
exploreHref?: string;
|
|
135
|
+
/** Secondary CTA label. Default: "Explore the product". */
|
|
136
|
+
exploreLabel?: string;
|
|
137
|
+
/** Heading for the empty state. Falls back to a product-aware default. */
|
|
138
|
+
emptyTitle?: string;
|
|
139
|
+
/** Body copy for the empty state. Falls back to a product-aware default. */
|
|
140
|
+
emptySubtitle?: string;
|
|
127
141
|
}
|
|
128
142
|
interface CaseStudyPageProps {
|
|
129
143
|
productName?: string;
|
|
130
144
|
caseStudiesListUrl?: string;
|
|
131
145
|
/** Back-link label. Default: "Back to Case Studies". */
|
|
132
146
|
backLabel?: string;
|
|
147
|
+
/** Where the closing "get in touch" CTA points. Default: "/contact". */
|
|
148
|
+
contactHref?: string;
|
|
149
|
+
/** Closing CTA label. Default: "Get in touch". */
|
|
150
|
+
contactLabel?: string;
|
|
133
151
|
className?: string;
|
|
134
152
|
}
|
|
135
153
|
declare function CaseStudiesListPage(props: CaseStudiesListPageProps): react_jsx_runtime.JSX.Element;
|