@burdenoff/website-sdk 2026.709.1 → 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.
- package/dist/index.d.mts +11 -2
- package/dist/index.d.ts +11 -2
- package/dist/index.js +175 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +175 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -8,7 +8,8 @@ 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
|
-
|
|
11
|
+
import { WebsiteSwitcherProduct } from './components/website-switcher.mjs';
|
|
12
|
+
export { WebsiteSwitcher, WebsiteSwitcherProps } from './components/website-switcher.mjs';
|
|
12
13
|
export { LaunchCountdown, LaunchCountdownProps } from './components/launch-countdown.mjs';
|
|
13
14
|
export { ProblemSolved, ProblemsSolvedSection, ProblemsSolvedSectionProps } from './components/problems-solved.mjs';
|
|
14
15
|
export { DetectedPlatform, ElectronDownloadLink, ElectronDownloadLinkProps, detectElectronPlatform } from './components/electron-download.mjs';
|
|
@@ -69,4 +70,12 @@ declare const Select: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLPro
|
|
|
69
70
|
|
|
70
71
|
declare const Textarea: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
|
|
71
72
|
|
|
72
|
-
|
|
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,7 +8,8 @@ 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
|
-
|
|
11
|
+
import { WebsiteSwitcherProduct } from './components/website-switcher.js';
|
|
12
|
+
export { WebsiteSwitcher, WebsiteSwitcherProps } from './components/website-switcher.js';
|
|
12
13
|
export { LaunchCountdown, LaunchCountdownProps } from './components/launch-countdown.js';
|
|
13
14
|
export { ProblemSolved, ProblemsSolvedSection, ProblemsSolvedSectionProps } from './components/problems-solved.js';
|
|
14
15
|
export { DetectedPlatform, ElectronDownloadLink, ElectronDownloadLinkProps, detectElectronPlatform } from './components/electron-download.js';
|
|
@@ -69,4 +70,12 @@ declare const Select: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLPro
|
|
|
69
70
|
|
|
70
71
|
declare const Textarea: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
|
|
71
72
|
|
|
72
|
-
|
|
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.js
CHANGED
|
@@ -6225,6 +6225,180 @@ function ContractsPage(props) {
|
|
|
6225
6225
|
] });
|
|
6226
6226
|
}
|
|
6227
6227
|
|
|
6228
|
+
// src/data/products.ts
|
|
6229
|
+
var ECOSYSTEM_PRODUCTS = [
|
|
6230
|
+
{
|
|
6231
|
+
slug: "workspaces",
|
|
6232
|
+
name: "Workspaces",
|
|
6233
|
+
websiteUrl: "https://burdenoff.com"
|
|
6234
|
+
},
|
|
6235
|
+
{
|
|
6236
|
+
slug: "vibecontrols",
|
|
6237
|
+
name: "VibeControls",
|
|
6238
|
+
websiteUrl: "https://vibecontrols.com"
|
|
6239
|
+
},
|
|
6240
|
+
{
|
|
6241
|
+
slug: "fluidgrids",
|
|
6242
|
+
name: "FluidGrids",
|
|
6243
|
+
websiteUrl: "https://fluidgrids.com"
|
|
6244
|
+
},
|
|
6245
|
+
{ slug: "botlit", name: "BotLit", websiteUrl: "https://botlit.com" },
|
|
6246
|
+
{
|
|
6247
|
+
slug: "bigconsole",
|
|
6248
|
+
name: "BigConsole",
|
|
6249
|
+
websiteUrl: "https://bigconsole.com"
|
|
6250
|
+
},
|
|
6251
|
+
{
|
|
6252
|
+
slug: "semanticfed",
|
|
6253
|
+
name: "SemanticFed",
|
|
6254
|
+
websiteUrl: "https://semanticfed.com"
|
|
6255
|
+
},
|
|
6256
|
+
{
|
|
6257
|
+
slug: "intelwatchtower",
|
|
6258
|
+
name: "IntelWatchTower",
|
|
6259
|
+
websiteUrl: "https://intelwatchtower.com"
|
|
6260
|
+
},
|
|
6261
|
+
{ slug: "buildmyiq", name: "BuildMyIQ", websiteUrl: "https://buildmyiq.com" },
|
|
6262
|
+
{
|
|
6263
|
+
slug: "assethandler",
|
|
6264
|
+
name: "AssetHandler",
|
|
6265
|
+
websiteUrl: "https://assethandler.com"
|
|
6266
|
+
},
|
|
6267
|
+
{
|
|
6268
|
+
slug: "crewfoundry",
|
|
6269
|
+
name: "CrewFoundry",
|
|
6270
|
+
websiteUrl: "https://crewfoundry.com"
|
|
6271
|
+
},
|
|
6272
|
+
{
|
|
6273
|
+
slug: "planmagnet",
|
|
6274
|
+
name: "PlanMagnet",
|
|
6275
|
+
websiteUrl: "https://planmagnet.com"
|
|
6276
|
+
},
|
|
6277
|
+
{
|
|
6278
|
+
slug: "eventfullymanaged",
|
|
6279
|
+
name: "EventfullyManaged",
|
|
6280
|
+
websiteUrl: "https://eventfullymanaged.com"
|
|
6281
|
+
},
|
|
6282
|
+
{
|
|
6283
|
+
slug: "headshotmarketing",
|
|
6284
|
+
name: "HeadshotMarketing Platform",
|
|
6285
|
+
websiteUrl: "https://headshotmarketing.com"
|
|
6286
|
+
},
|
|
6287
|
+
{
|
|
6288
|
+
slug: "technospam",
|
|
6289
|
+
name: "TechnoSpam",
|
|
6290
|
+
websiteUrl: "https://technospam.com"
|
|
6291
|
+
},
|
|
6292
|
+
{ slug: "kadaikodi", name: "Kadaikodi", websiteUrl: "https://kadaikodi.com" },
|
|
6293
|
+
{
|
|
6294
|
+
slug: "movethewheels",
|
|
6295
|
+
name: "MoveTheWheels",
|
|
6296
|
+
websiteUrl: "https://movethewheels.com"
|
|
6297
|
+
},
|
|
6298
|
+
{
|
|
6299
|
+
slug: "healthybowl",
|
|
6300
|
+
name: "HealthyBowl Platform",
|
|
6301
|
+
websiteUrl: "https://gethealthybowl.com"
|
|
6302
|
+
},
|
|
6303
|
+
{ slug: "ggnomad", name: "GGNomad", websiteUrl: "https://ggnomad.com" },
|
|
6304
|
+
{
|
|
6305
|
+
slug: "timecampus",
|
|
6306
|
+
name: "TimeCampus Platform",
|
|
6307
|
+
websiteUrl: "https://timecampus.com"
|
|
6308
|
+
},
|
|
6309
|
+
{
|
|
6310
|
+
slug: "manufacturedops",
|
|
6311
|
+
name: "ManufacturedOps",
|
|
6312
|
+
websiteUrl: "https://manufacturedops.com"
|
|
6313
|
+
},
|
|
6314
|
+
{
|
|
6315
|
+
slug: "theglobalfuel",
|
|
6316
|
+
name: "TheGlobalFuel",
|
|
6317
|
+
websiteUrl: "https://theglobalfuel.com"
|
|
6318
|
+
},
|
|
6319
|
+
{
|
|
6320
|
+
slug: "housingvista",
|
|
6321
|
+
name: "HousingVista",
|
|
6322
|
+
websiteUrl: "https://housingvista.com"
|
|
6323
|
+
},
|
|
6324
|
+
{
|
|
6325
|
+
slug: "proserviceworld",
|
|
6326
|
+
name: "ProServiceWorld",
|
|
6327
|
+
websiteUrl: "https://proserviceworld.com"
|
|
6328
|
+
},
|
|
6329
|
+
{
|
|
6330
|
+
slug: "mybodyshield",
|
|
6331
|
+
name: "MyBodyShield",
|
|
6332
|
+
websiteUrl: "https://mybodyshield.com"
|
|
6333
|
+
},
|
|
6334
|
+
{
|
|
6335
|
+
slug: "artistrybase",
|
|
6336
|
+
name: "ArtistryBase",
|
|
6337
|
+
websiteUrl: "https://artistrybase.com"
|
|
6338
|
+
},
|
|
6339
|
+
{
|
|
6340
|
+
slug: "theculturepost",
|
|
6341
|
+
name: "TheCulturePost",
|
|
6342
|
+
websiteUrl: "https://theculturepost.com"
|
|
6343
|
+
},
|
|
6344
|
+
{ slug: "collabkin", name: "CollabKin", websiteUrl: "https://collabkin.com" },
|
|
6345
|
+
{
|
|
6346
|
+
slug: "comradecircle",
|
|
6347
|
+
name: "ComradeCircle",
|
|
6348
|
+
websiteUrl: "https://comradecircle.com"
|
|
6349
|
+
},
|
|
6350
|
+
{
|
|
6351
|
+
slug: "brainyrich",
|
|
6352
|
+
name: "BrainyRich",
|
|
6353
|
+
websiteUrl: "https://brainyrich.com"
|
|
6354
|
+
},
|
|
6355
|
+
{
|
|
6356
|
+
slug: "cosmicintersection",
|
|
6357
|
+
name: "CosmicIntersection",
|
|
6358
|
+
websiteUrl: "https://cosmicintersection.com"
|
|
6359
|
+
},
|
|
6360
|
+
{
|
|
6361
|
+
slug: "govcitizenhub",
|
|
6362
|
+
name: "GovCitizenHub",
|
|
6363
|
+
websiteUrl: "https://govcitizenhub.com"
|
|
6364
|
+
},
|
|
6365
|
+
{
|
|
6366
|
+
slug: "adaptercloud",
|
|
6367
|
+
name: "AdapterCloud",
|
|
6368
|
+
websiteUrl: "https://adaptercloud.com"
|
|
6369
|
+
},
|
|
6370
|
+
{
|
|
6371
|
+
slug: "subscriberbot",
|
|
6372
|
+
name: "SubscriberBot",
|
|
6373
|
+
websiteUrl: "https://subscriberbot.com"
|
|
6374
|
+
},
|
|
6375
|
+
{
|
|
6376
|
+
slug: "hookmovies",
|
|
6377
|
+
name: "HookMovies",
|
|
6378
|
+
websiteUrl: "https://hookmovies.com"
|
|
6379
|
+
},
|
|
6380
|
+
{
|
|
6381
|
+
slug: "coolandlovely",
|
|
6382
|
+
name: "CoolAndLovely",
|
|
6383
|
+
websiteUrl: "https://coolandlovely.com"
|
|
6384
|
+
},
|
|
6385
|
+
{
|
|
6386
|
+
slug: "atheletebridge",
|
|
6387
|
+
name: "AthleteBridge",
|
|
6388
|
+
websiteUrl: "https://atheletebridge.com"
|
|
6389
|
+
},
|
|
6390
|
+
{
|
|
6391
|
+
slug: "labsofscience",
|
|
6392
|
+
name: "LabsOfScience",
|
|
6393
|
+
websiteUrl: "https://labsofscience.com"
|
|
6394
|
+
},
|
|
6395
|
+
{
|
|
6396
|
+
slug: "ecoimpacthub",
|
|
6397
|
+
name: "EcoImpactHub",
|
|
6398
|
+
websiteUrl: "https://ecoimpacthub.com"
|
|
6399
|
+
}
|
|
6400
|
+
];
|
|
6401
|
+
|
|
6228
6402
|
exports.BlogListPage = BlogListPage;
|
|
6229
6403
|
exports.BlogPostPage = BlogPostPage;
|
|
6230
6404
|
exports.Button = Button;
|
|
@@ -6236,6 +6410,7 @@ exports.ContactPage = ContactPage;
|
|
|
6236
6410
|
exports.ContentRenderer = ContentRenderer;
|
|
6237
6411
|
exports.ContractsPage = ContractsPage;
|
|
6238
6412
|
exports.DEFAULT_CONTACT_CATEGORIES = DEFAULT_CONTACT_CATEGORIES;
|
|
6413
|
+
exports.ECOSYSTEM_PRODUCTS = ECOSYSTEM_PRODUCTS;
|
|
6239
6414
|
exports.ElectronDownloadLink = ElectronDownloadLink;
|
|
6240
6415
|
exports.Input = Input;
|
|
6241
6416
|
exports.Label = Label;
|