@brillout/docpress 0.5.17 → 0.5.19

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.
Binary file
package/dist/index.d.ts CHANGED
@@ -90,6 +90,7 @@ type Config = {
90
90
  globalNote?: React.ReactNode;
91
91
  i18n?: true;
92
92
  pressKit?: true;
93
+ sponsorGithubAccount?: string;
93
94
  };
94
95
 
95
96
  declare function Link({ href, text, noBreadcrumb, doNotInferSectionTitle, titleNormalCase, children }: {
package/dist/index.js CHANGED
@@ -305,6 +305,9 @@ var mfqs_default = "/assets/mfqs-2EAEE7N6.svg";
305
305
  // src/components/Sponsors/companyLogos/optimizers.svg
306
306
  var optimizers_default = "/assets/optimizers-SFEZF3NW.svg";
307
307
 
308
+ // src/components/Sponsors/companyLogos/burdaforward.png
309
+ var burdaforward_default = "/assets/burdaforward-EUGURYZY.png";
310
+
308
311
  // src/components/Sponsors/companyLogos/inlang.png
309
312
  var inlang_default = "/assets/inlang-GFRWND6X.png";
310
313
 
@@ -316,9 +319,11 @@ var alignable_default = "/assets/alignable-B4QZV4X7.svg";
316
319
 
317
320
  // src/components/Sponsors/sponsorsList.ts
318
321
  var individuals = [
322
+ { username: "ChristophP" },
323
+ { username: "msiegenthaler" },
324
+ { username: "linkyard" },
319
325
  { username: "AnukarOP" },
320
326
  { username: "RoyMcCrain" },
321
- { username: "BurdaForward" },
322
327
  { username: "chrisvander" },
323
328
  { username: "EralChen" },
324
329
  { username: "3dyuval" },
@@ -389,6 +394,13 @@ var companies = [
389
394
  },
390
395
  github: "OptimizersGroup"
391
396
  },
397
+ {
398
+ companyName: "BurdaFoward",
399
+ companyLogo: burdaforward_default,
400
+ plan: "bronze",
401
+ website: "https://www.burda-forward.de",
402
+ github: "BurdaForward"
403
+ },
392
404
  {
393
405
  companyName: "My Favorite Quilt Store",
394
406
  companyLogo: mfqs_default,
@@ -417,13 +429,14 @@ var sponsorsList = [...companies, ...individuals];
417
429
  function Sponsors() {
418
430
  const pageContext = usePageContext();
419
431
  const { projectInfo } = pageContext.config;
432
+ const sponsorGithubAccount = pageContext.config.sponsorGithubAccount || "brillout";
420
433
  const sponsorsCompanies = sponsorsList.filter(isCompany);
421
434
  const sponsorsIndividuals = sponsorsList.filter(isIndividual);
422
435
  return /* @__PURE__ */ React7.createElement("div", {
423
436
  style: { textAlign: "center", marginTop: 19 }
424
437
  }, /* @__PURE__ */ React7.createElement("a", {
425
438
  className: "button",
426
- href: "https://github.com/sponsors/brillout",
439
+ href: `https://github.com/sponsors/${sponsorGithubAccount}`,
427
440
  style: {
428
441
  color: "inherit",
429
442
  display: "inline-flex",
@@ -55,6 +55,11 @@ iframe {
55
55
  margin-top: 32px;
56
56
  margin-bottom: 16px;
57
57
  }
58
+ .doc-page h5 {
59
+ font-size: 0.94em;
60
+ color: #777;
61
+ margin-bottom: 10px;
62
+ }
58
63
  .doc-page h2[id],
59
64
  .doc-page h3[id] {
60
65
  cursor: pointer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brillout/docpress",
3
- "version": "0.5.17",
3
+ "version": "0.5.19",
4
4
  "scripts": {
5
5
  "// Check types while developing": "",
6
6
  "types": "tsc --noEmit --watch",