@articles-media/articles-dev-box 1.0.39 → 1.0.40
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/CreditsModal.js
CHANGED
|
@@ -72,7 +72,7 @@ function CreditsModal({ show, setShow, useStore, owner, repo, developers, publis
|
|
|
72
72
|
owner && repo && /* @__PURE__ */ jsxs("div", {
|
|
73
73
|
className: "mb-3",
|
|
74
74
|
children: [/* @__PURE__ */ jsx("div", { children: "Attributions:" }), /* @__PURE__ */ jsx("a", {
|
|
75
|
-
href: `https://github.com/${owner}/${repo}/blob/main/README.md#attributions`,
|
|
75
|
+
href: `https://github.com/${owner || process.env.NEXT_PUBLIC_OWNER}/${repo || process.env.NEXT_PUBLIC_REPO}/blob/main/README.md#attributions`,
|
|
76
76
|
target: "_blank",
|
|
77
77
|
rel: "noopener noreferrer",
|
|
78
78
|
children: /* @__PURE__ */ jsxs(ArticlesButton, { children: [/* @__PURE__ */ jsx("i", { className: "fab fa-github" }), "View on GitHub"] })
|
|
@@ -2,7 +2,7 @@ import { t as ArticlesButton } from "./Button-DvEZjsVV.js";
|
|
|
2
2
|
import useFullscreen from "./useFullscreen.js";
|
|
3
3
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
4
4
|
//#region src/components/Games/GameMenuPrimaryButtonGroup.jsx
|
|
5
|
-
function PrimaryButtonGroup({ useStore, type }) {
|
|
5
|
+
function PrimaryButtonGroup({ useStore, type, owner, repo }) {
|
|
6
6
|
if (!useStore) return null;
|
|
7
7
|
const { isFullscreen, requestFullscreen, exitFullscreen } = useFullscreen();
|
|
8
8
|
const setShowSettingsModal = useStore((state) => state.setShowSettingsModal);
|
|
@@ -41,7 +41,7 @@ function PrimaryButtonGroup({ useStore, type }) {
|
|
|
41
41
|
children: [/* @__PURE__ */ jsx("i", { className: "fad fa-info-square" }), "Info"]
|
|
42
42
|
}),
|
|
43
43
|
/* @__PURE__ */ jsx("a", {
|
|
44
|
-
href:
|
|
44
|
+
href: `https://github.com/${owner || process.env.NEXT_PUBLIC_OWNER}/${repo || process.env.NEXT_PUBLIC_REPO}`,
|
|
45
45
|
target: "_blank",
|
|
46
46
|
rel: "noopener noreferrer",
|
|
47
47
|
className: "w-50",
|
|
@@ -232,7 +232,7 @@ function OtherTab({ useStore, config }) {
|
|
|
232
232
|
var package_default = {
|
|
233
233
|
name: "@articles-media/articles-dev-box",
|
|
234
234
|
description: "Shared code, functions, and components for different Articles Media projects.",
|
|
235
|
-
version: "1.0.
|
|
235
|
+
version: "1.0.40",
|
|
236
236
|
type: "module",
|
|
237
237
|
imports: { "#root/src/*": "./src/*" },
|
|
238
238
|
main: "./dist/index.js",
|
package/dist/SettingsModal.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as SettingsModal } from "./SettingsModal-
|
|
1
|
+
import { t as SettingsModal } from "./SettingsModal-D60ZKYrb.js";
|
|
2
2
|
export { SettingsModal as default };
|
package/dist/index.js
CHANGED
|
@@ -15,7 +15,7 @@ import NicknameInput from "./NicknameInput.js";
|
|
|
15
15
|
import { t as GameScoreboard } from "./GameScoreboard-CYuTBE_E.js";
|
|
16
16
|
import GlobalHead from "./GlobalHead.js";
|
|
17
17
|
import GlobalBody_default from "./GlobalBody.js";
|
|
18
|
-
import { t as SettingsModal } from "./SettingsModal-
|
|
18
|
+
import { t as SettingsModal } from "./SettingsModal-D60ZKYrb.js";
|
|
19
19
|
import CreditsModal from "./CreditsModal.js";
|
|
20
20
|
import DarkModeHandler from "./DarkModeHandler.js";
|
|
21
21
|
import ToontownModeHandler from "./ToontownModeHandler.js";
|
package/package.json
CHANGED