@edu-tosel/design 1.0.248 → 1.0.249

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/asset/url.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  declare const urlAsset: {
2
2
  homepage: (pathname?: string) => string;
3
3
  resource: (pathname?: string) => string;
4
+ faq: string;
4
5
  };
5
6
  export default urlAsset;
package/asset/url.js CHANGED
@@ -1,7 +1,9 @@
1
1
  const homepage = (pathname) => ["https://new.tosel.org", pathname].filter((v) => v).join("");
2
2
  const resource = (pathname) => ["https://resource.tosel.co.kr", pathname].filter((v) => v).join("");
3
+ const faq = "https://tosel-faq.notion.site/TOSEL-143de6b860e28030b40df63dfb9409e7";
3
4
  const urlAsset = {
4
5
  homepage,
5
6
  resource,
7
+ faq,
6
8
  };
7
9
  export default urlAsset;
package/asset/url.ts CHANGED
@@ -2,9 +2,11 @@ const homepage = (pathname?: string) =>
2
2
  ["https://new.tosel.org", pathname].filter((v) => v).join("");
3
3
  const resource = (pathname?: string) =>
4
4
  ["https://resource.tosel.co.kr", pathname].filter((v) => v).join("");
5
-
5
+ const faq =
6
+ "https://tosel-faq.notion.site/TOSEL-143de6b860e28030b40df63dfb9409e7";
6
7
  const urlAsset = {
7
8
  homepage,
8
9
  resource,
10
+ faq,
9
11
  };
10
12
  export default urlAsset;
@@ -53,7 +53,6 @@ const buttons = [
53
53
  },
54
54
  {
55
55
  title: "FAQ",
56
- onClick: () => (window.location.href =
57
- "https://dull-marmoset-39f.notion.site/TOSEL-FAQ-4054b35db6fc421c9495039e769992a3"),
56
+ onClick: () => (window.location.href = urlAsset.faq),
58
57
  },
59
58
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edu-tosel/design",
3
- "version": "1.0.248",
3
+ "version": "1.0.249",
4
4
  "description": "UI components for International TOSEL Committee",
5
5
  "keywords": [
6
6
  "jsx",
package/version.txt CHANGED
@@ -1 +1 @@
1
- 1.0.248
1
+ 1.0.249