@burdenoff/website-sdk 2026.703.2 → 2026.709.2

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.
Files changed (37) hide show
  1. package/dist/components/electron-download.d.mts +32 -0
  2. package/dist/components/electron-download.d.ts +32 -0
  3. package/dist/components/electron-download.js +131 -0
  4. package/dist/components/electron-download.js.map +1 -0
  5. package/dist/components/electron-download.mjs +108 -0
  6. package/dist/components/electron-download.mjs.map +1 -0
  7. package/dist/components/launch-countdown.d.mts +15 -0
  8. package/dist/components/launch-countdown.d.ts +15 -0
  9. package/dist/components/launch-countdown.js +89 -0
  10. package/dist/components/launch-countdown.js.map +1 -0
  11. package/dist/components/launch-countdown.mjs +87 -0
  12. package/dist/components/launch-countdown.mjs.map +1 -0
  13. package/dist/components/problems-solved.d.mts +37 -0
  14. package/dist/components/problems-solved.d.ts +37 -0
  15. package/dist/components/problems-solved.js +157 -0
  16. package/dist/components/problems-solved.js.map +1 -0
  17. package/dist/components/problems-solved.mjs +135 -0
  18. package/dist/components/problems-solved.mjs.map +1 -0
  19. package/dist/components/website-switcher.d.mts +27 -0
  20. package/dist/components/website-switcher.d.ts +27 -0
  21. package/dist/components/website-switcher.js +168 -0
  22. package/dist/components/website-switcher.js.map +1 -0
  23. package/dist/components/website-switcher.mjs +146 -0
  24. package/dist/components/website-switcher.mjs.map +1 -0
  25. package/dist/content/index.d.mts +24 -1
  26. package/dist/content/index.d.ts +24 -1
  27. package/dist/content/index.js +459 -149
  28. package/dist/content/index.js.map +1 -1
  29. package/dist/content/index.mjs +378 -87
  30. package/dist/content/index.mjs.map +1 -1
  31. package/dist/index.d.mts +15 -2
  32. package/dist/index.d.ts +15 -2
  33. package/dist/index.js +817 -86
  34. package/dist/index.js.map +1 -1
  35. package/dist/index.mjs +812 -88
  36. package/dist/index.mjs.map +1 -1
  37. package/package.json +3 -1
package/dist/index.d.mts CHANGED
@@ -8,9 +8,14 @@ export { WaitlistForm, WaitlistFormProps, WaitlistPage, WaitlistPageProps } from
8
8
  export { UnsubscribePage, UnsubscribePageProps } from './components/unsubscribe.mjs';
9
9
  export { SocialLinks, SocialLinksProps, SocialPlatform } from './components/social-links.mjs';
10
10
  export { Resource, ResourceLinks, ResourceLinksProps } from './components/resource-links.mjs';
11
+ import { WebsiteSwitcherProduct } from './components/website-switcher.mjs';
12
+ export { WebsiteSwitcher, WebsiteSwitcherProps } from './components/website-switcher.mjs';
13
+ export { LaunchCountdown, LaunchCountdownProps } from './components/launch-countdown.mjs';
14
+ export { ProblemSolved, ProblemsSolvedSection, ProblemsSolvedSectionProps } from './components/problems-solved.mjs';
15
+ export { DetectedPlatform, ElectronDownloadLink, ElectronDownloadLinkProps, detectElectronPlatform } from './components/electron-download.mjs';
11
16
  export { RybbitAnalytics, RybbitAnalyticsProps } from './analytics/index.mjs';
12
17
  export { PageHead, PageHeadProps } from './seo/index.mjs';
13
- export { BlogListPage, BlogListPageProps, BlogPostPage, BlogPostPageProps, CaseStudiesListPage, CaseStudiesListPageProps, CaseStudyPage, CaseStudyPageProps, ChangelogPage, ChangelogPageProps, ContentPageData, ContentPageListData, ContentPageListItem, ContentRenderer, ContractAsset, ContractsPage, ContractsPageProps, PressKitAsset, PressKitAssetCategory, PressKitPage, PressKitPageProps, useContentPage, useContentPages } from './content/index.mjs';
18
+ export { BlogListPage, BlogListPageProps, BlogPostPage, BlogPostPageProps, CaseStudiesListPage, CaseStudiesListPageProps, CaseStudyPage, CaseStudyPageProps, ChangelogEntry, ChangelogPage, ChangelogPageProps, ContentPageData, ContentPageListData, ContentPageListItem, ContentRenderer, ContractAsset, ContractsPage, ContractsPageProps, PressKitAsset, PressKitAssetCategory, PressKitPage, PressKitPageProps, useContentPage, useContentPages } from './content/index.mjs';
14
19
  export { ProductData, ProductProvider, ProductProviderProps, useProduct, useProductConfig } from './product/index.mjs';
15
20
  import * as class_variance_authority_types from 'class-variance-authority/types';
16
21
  import * as React from 'react';
@@ -65,4 +70,12 @@ declare const Select: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLPro
65
70
 
66
71
  declare const Textarea: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
67
72
 
68
- export { Button, type ButtonProps, CareersApplyForm, type CareersApplyFormProps, Input, Label, Select, Textarea, buttonVariants };
73
+ /**
74
+ * Canonical Burdenoff ecosystem product list used by WebsiteSwitcher.
75
+ *
76
+ * Sourced from `~/products/websites/burdenoff-website/src/data/products.ts`.
77
+ * Keep this in sync when products are added, renamed, or moved.
78
+ */
79
+ declare const ECOSYSTEM_PRODUCTS: WebsiteSwitcherProduct[];
80
+
81
+ export { Button, type ButtonProps, CareersApplyForm, type CareersApplyFormProps, ECOSYSTEM_PRODUCTS, Input, Label, Select, Textarea, WebsiteSwitcherProduct, buttonVariants };
package/dist/index.d.ts CHANGED
@@ -8,9 +8,14 @@ export { WaitlistForm, WaitlistFormProps, WaitlistPage, WaitlistPageProps } from
8
8
  export { UnsubscribePage, UnsubscribePageProps } from './components/unsubscribe.js';
9
9
  export { SocialLinks, SocialLinksProps, SocialPlatform } from './components/social-links.js';
10
10
  export { Resource, ResourceLinks, ResourceLinksProps } from './components/resource-links.js';
11
+ import { WebsiteSwitcherProduct } from './components/website-switcher.js';
12
+ export { WebsiteSwitcher, WebsiteSwitcherProps } from './components/website-switcher.js';
13
+ export { LaunchCountdown, LaunchCountdownProps } from './components/launch-countdown.js';
14
+ export { ProblemSolved, ProblemsSolvedSection, ProblemsSolvedSectionProps } from './components/problems-solved.js';
15
+ export { DetectedPlatform, ElectronDownloadLink, ElectronDownloadLinkProps, detectElectronPlatform } from './components/electron-download.js';
11
16
  export { RybbitAnalytics, RybbitAnalyticsProps } from './analytics/index.js';
12
17
  export { PageHead, PageHeadProps } from './seo/index.js';
13
- export { BlogListPage, BlogListPageProps, BlogPostPage, BlogPostPageProps, CaseStudiesListPage, CaseStudiesListPageProps, CaseStudyPage, CaseStudyPageProps, ChangelogPage, ChangelogPageProps, ContentPageData, ContentPageListData, ContentPageListItem, ContentRenderer, ContractAsset, ContractsPage, ContractsPageProps, PressKitAsset, PressKitAssetCategory, PressKitPage, PressKitPageProps, useContentPage, useContentPages } from './content/index.js';
18
+ export { BlogListPage, BlogListPageProps, BlogPostPage, BlogPostPageProps, CaseStudiesListPage, CaseStudiesListPageProps, CaseStudyPage, CaseStudyPageProps, ChangelogEntry, ChangelogPage, ChangelogPageProps, ContentPageData, ContentPageListData, ContentPageListItem, ContentRenderer, ContractAsset, ContractsPage, ContractsPageProps, PressKitAsset, PressKitAssetCategory, PressKitPage, PressKitPageProps, useContentPage, useContentPages } from './content/index.js';
14
19
  export { ProductData, ProductProvider, ProductProviderProps, useProduct, useProductConfig } from './product/index.js';
15
20
  import * as class_variance_authority_types from 'class-variance-authority/types';
16
21
  import * as React from 'react';
@@ -65,4 +70,12 @@ declare const Select: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLPro
65
70
 
66
71
  declare const Textarea: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
67
72
 
68
- export { Button, type ButtonProps, CareersApplyForm, type CareersApplyFormProps, Input, Label, Select, Textarea, buttonVariants };
73
+ /**
74
+ * Canonical Burdenoff ecosystem product list used by WebsiteSwitcher.
75
+ *
76
+ * Sourced from `~/products/websites/burdenoff-website/src/data/products.ts`.
77
+ * Keep this in sync when products are added, renamed, or moved.
78
+ */
79
+ declare const ECOSYSTEM_PRODUCTS: WebsiteSwitcherProduct[];
80
+
81
+ export { Button, type ButtonProps, CareersApplyForm, type CareersApplyFormProps, ECOSYSTEM_PRODUCTS, Input, Label, Select, Textarea, WebsiteSwitcherProduct, buttonVariants };