@brillout/docpress 0.3.6 → 0.3.7
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.js
CHANGED
|
@@ -256,8 +256,8 @@ var burdaforward_default = "/assets/burdaforward-EUGURYZY.png";
|
|
|
256
256
|
// src/components/Sponsors/companyLogos/inlang.png
|
|
257
257
|
var inlang_default = "/assets/inlang-GFRWND6X.png";
|
|
258
258
|
|
|
259
|
-
// src/components/Sponsors/
|
|
260
|
-
var
|
|
259
|
+
// src/components/Sponsors/sponsorsList.ts
|
|
260
|
+
var sponsorsList = [
|
|
261
261
|
{
|
|
262
262
|
companyName: "BurdaFoward",
|
|
263
263
|
companyLogo: burdaforward_default,
|
|
@@ -330,8 +330,8 @@ var sponsorList = [
|
|
|
330
330
|
function Sponsors() {
|
|
331
331
|
const pageContext = usePageContext();
|
|
332
332
|
const { projectInfo } = pageContext.config;
|
|
333
|
-
const sponsorsCompany =
|
|
334
|
-
const sponsorsHumanidual =
|
|
333
|
+
const sponsorsCompany = sponsorsList.filter((sponsor) => !("username" in sponsor));
|
|
334
|
+
const sponsorsHumanidual = sponsorsList.filter((sponsor) => "username" in sponsor);
|
|
335
335
|
return /* @__PURE__ */ React9.createElement("div", {
|
|
336
336
|
style: { textAlign: "center", marginTop: 19 }
|
|
337
337
|
}, /* @__PURE__ */ React9.createElement("a", {
|
|
@@ -357,7 +357,7 @@ function MobileHeader() {
|
|
|
357
357
|
}
|
|
358
358
|
function MenuToggle() {
|
|
359
359
|
return /* @__PURE__ */ React4.createElement("div", {
|
|
360
|
-
style: { padding: 20, lineHeight: 0 },
|
|
360
|
+
style: { padding: 20, lineHeight: 0, cursor: "pointer" },
|
|
361
361
|
id: "menu-toggle"
|
|
362
362
|
}, /* @__PURE__ */ React4.createElement("svg", {
|
|
363
363
|
style: { width: 20 },
|
package/package.json
CHANGED