karin-plugin-mys-core 1.0.6 → 1.0.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.
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  ShowBindAccountCmdFunc
3
- } from "../chunk-CZZETPLY.js";
4
- import "../chunk-UX2BDLJF.js";
5
- import "../chunk-NUOK4VFP.js";
3
+ } from "../chunk-P2PBUTB7.js";
4
+ import "../chunk-JT3SU5UU.js";
5
+ import "../chunk-LLYBEHPW.js";
6
6
  import {
7
7
  UserInfo,
8
8
  fetchQRcode,
@@ -4,9 +4,9 @@ import {
4
4
  ShowBindAccountCmdFunc,
5
5
  UnbindAccount,
6
6
  UnbindUID
7
- } from "../chunk-CZZETPLY.js";
8
- import "../chunk-UX2BDLJF.js";
9
- import "../chunk-NUOK4VFP.js";
7
+ } from "../chunk-P2PBUTB7.js";
8
+ import "../chunk-JT3SU5UU.js";
9
+ import "../chunk-LLYBEHPW.js";
10
10
  import "../chunk-DJTJKSNN.js";
11
11
  import "../chunk-7VAWV6ZE.js";
12
12
  import "../chunk-LJSDSOY6.js";
@@ -0,0 +1,52 @@
1
+ import {
2
+ dir
3
+ } from "./chunk-SHLPPEAY.js";
4
+
5
+ // src/exports/render/index.ts
6
+ import React2 from "react";
7
+
8
+ // src/exports/render/layout/DefaultLayout.tsx
9
+ import { config } from "node-karin";
10
+ import React from "react";
11
+ var DefaultLayoutComponent = ({
12
+ children,
13
+ bgColor,
14
+ mysPlugin
15
+ }) => {
16
+ const karinVersion = config.pkg().version;
17
+ return /* @__PURE__ */ React.createElement(
18
+ "div",
19
+ {
20
+ className: `relative flex w-[600px] flex-col pb-10 font-hywh text-black ${bgColor}`,
21
+ id: "container"
22
+ },
23
+ children,
24
+ /* @__PURE__ */ React.createElement("div", { className: "absolute bottom-0 left-0 flex w-full items-center justify-center gap-4 px-4 py-2.5 text-sm" }, mysPlugin && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", { className: "flex items-center gap-2" }, /* @__PURE__ */ React.createElement(
25
+ "img",
26
+ {
27
+ src: `${mysPlugin.logoPath}`,
28
+ alt: "Mys Plugin Logo",
29
+ className: "h-6 w-6 rounde"
30
+ }
31
+ ), /* @__PURE__ */ React.createElement("div", { className: "flex flex-col" }, /* @__PURE__ */ React.createElement("span", { className: "text-[5px] font-bold leading-none text-black" }, "KARIN-MYS-PLUGIN"), /* @__PURE__ */ React.createElement("div", { className: "flex items-baseline gap-0.5" }, /* @__PURE__ */ React.createElement("span", { className: "font-semibold" }, mysPlugin.name), /* @__PURE__ */ React.createElement("strong", { className: "text-xs font-bold text-[#f2c06f]" }, "v", mysPlugin.version)))), /* @__PURE__ */ React.createElement("div", { className: "h-8 w-px bg-gray-600" })), /* @__PURE__ */ React.createElement("div", { className: "flex items-center gap-2" }, /* @__PURE__ */ React.createElement(
32
+ "img",
33
+ {
34
+ src: `${dir.pluginDir}/resources/image/mys-core-logo.png`,
35
+ alt: "MysCore Logo",
36
+ className: "h-6 w-6 rounded-sm"
37
+ }
38
+ ), /* @__PURE__ */ React.createElement("div", { className: "flex flex-col" }, /* @__PURE__ */ React.createElement("span", { className: "text-[5px] font-bold leading-none text-black" }, "KARIN-PLUGIN"), /* @__PURE__ */ React.createElement("div", { className: "flex items-baseline gap-0.5" }, /* @__PURE__ */ React.createElement("span", { className: "font-semibold" }, "MysCore"), /* @__PURE__ */ React.createElement("strong", { className: "text-xs font-bold text-[#f2c06f]" }, "v", dir.version)))), /* @__PURE__ */ React.createElement("div", { className: "h-8 w-px bg-gray-600" }), /* @__PURE__ */ React.createElement("div", { className: "flex items-center gap-2" }, /* @__PURE__ */ React.createElement(
39
+ "img",
40
+ {
41
+ src: `${dir.pluginDir}/resources/image/frame-logo.png`,
42
+ alt: "Karin Logo",
43
+ className: "h-6 w-6 rounded-sm"
44
+ }
45
+ ), /* @__PURE__ */ React.createElement("div", { className: "flex flex-col" }, /* @__PURE__ */ React.createElement("span", { className: "text-[5px] font-bold leading-none text-black" }, "IS DRIVEN BY"), /* @__PURE__ */ React.createElement("div", { className: "flex items-baseline gap-1.5" }, /* @__PURE__ */ React.createElement("span", { className: "font-semibold" }, "Karin"), /* @__PURE__ */ React.createElement("strong", { className: "text-[10px] font-bold text-[#f2c06f]" }, "v", karinVersion)))))
46
+ );
47
+ };
48
+
49
+ export {
50
+ DefaultLayoutComponent,
51
+ React2 as React
52
+ };
@@ -1,6 +1,9 @@
1
1
  import {
2
2
  common_exports
3
3
  } from "./chunk-LG34FPBI.js";
4
+ import {
5
+ dir
6
+ } from "./chunk-SHLPPEAY.js";
4
7
 
5
8
  // src/exports/render/render.ts
6
9
  import karin, { config, existToMkdirSync, karinPathBase } from "node-karin";
@@ -34,13 +37,15 @@ var ReactRender = class {
34
37
  async template(template, component, props, options = {}) {
35
38
  const element = React.createElement(component, props);
36
39
  const appHtml = renderToString(element);
37
- const cssPath = path.join(this.plugin.resources.default, "styles", `${this.#renderCfg.name}.css`).replace(/\\/g, "/");
40
+ const coreCssPath = path.join(dir.pluginDir, "resources", "styles", `${dir.name}.css`).replace(/\\/g, "/");
41
+ const cssPath = this.#renderCfg.name !== dir.name ? path.join(this.plugin.resources.default, "styles", `${this.#renderCfg.name}.css`).replace(/\\/g, "/") : "";
38
42
  const Html = `
39
43
  <!DOCTYPE html>
40
44
  <html lang="zh-CN">
41
45
  <head>
42
46
  <meta charset="UTF-8">
43
47
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
48
+ <link rel="stylesheet" href="${coreCssPath}">
44
49
  <link rel="stylesheet" href="${cssPath}">
45
50
  </head>
46
51
  <body>
@@ -1,6 +1,9 @@
1
+ import {
2
+ DefaultLayoutComponent
3
+ } from "./chunk-JT3SU5UU.js";
1
4
  import {
2
5
  ReactRender
3
- } from "./chunk-NUOK4VFP.js";
6
+ } from "./chunk-LLYBEHPW.js";
4
7
  import {
5
8
  UserInfo
6
9
  } from "./chunk-DJTJKSNN.js";
@@ -11,79 +14,38 @@ import {
11
14
  dir
12
15
  } from "./chunk-SHLPPEAY.js";
13
16
 
14
- // src/template/layout/DefaultLayout.tsx
17
+ // src/template/ShowBindAccount/ShowBindAccount.tsx
15
18
  import React from "react";
16
19
 
17
20
  // src/template/render.ts
18
21
  var Render = new ReactRender(dir, {});
19
22
 
20
- // src/template/layout/DefaultLayout.tsx
21
- var DefaultLayoutComponent = ({
22
- children,
23
- bgColor,
24
- mysPlugin
25
- }) => {
26
- const { plugin, karin: karin2 } = Render;
27
- return /* @__PURE__ */ React.createElement(
28
- "div",
29
- {
30
- className: `relative flex w-[600px] flex-col pb-10 font-[HYWenHei-55W] text-black ${bgColor}`,
31
- id: "container",
32
- style: { fontFamily: "HYWenHei-55W, sans-serif" }
33
- },
34
- children,
35
- /* @__PURE__ */ React.createElement("div", { className: "absolute bottom-0 left-0 flex w-full items-center justify-center gap-4 px-4 py-2.5 text-sm" }, mysPlugin && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", { className: "flex items-center gap-2" }, /* @__PURE__ */ React.createElement(
36
- "img",
37
- {
38
- src: `${mysPlugin.logoPath}`,
39
- alt: "Mys Plugin Logo",
40
- className: "h-6 w-6 rounde"
41
- }
42
- ), /* @__PURE__ */ React.createElement("div", { className: "flex flex-col" }, /* @__PURE__ */ React.createElement("span", { className: "text-[5px] font-bold leading-none text-black" }, "KARIN-MYS-PLUGIN"), /* @__PURE__ */ React.createElement("div", { className: "flex items-baseline gap-0.5" }, /* @__PURE__ */ React.createElement("span", { className: "font-semibold" }, mysPlugin.name), /* @__PURE__ */ React.createElement("strong", { className: "text-xs font-bold text-[#f2c06f]" }, "v", mysPlugin.version)))), /* @__PURE__ */ React.createElement("div", { className: "h-8 w-px bg-gray-600" })), /* @__PURE__ */ React.createElement("div", { className: "flex items-center gap-2" }, /* @__PURE__ */ React.createElement(
43
- "img",
44
- {
45
- src: `${plugin.resources.default}/image/mys-core-logo.png`,
46
- alt: "MysCore Logo",
47
- className: "h-6 w-6 rounded-sm"
48
- }
49
- ), /* @__PURE__ */ React.createElement("div", { className: "flex flex-col" }, /* @__PURE__ */ React.createElement("span", { className: "text-[5px] font-bold leading-none text-black" }, "KARIN-PLUGIN"), /* @__PURE__ */ React.createElement("div", { className: "flex items-baseline gap-0.5" }, /* @__PURE__ */ React.createElement("span", { className: "font-semibold" }, "MysCore"), /* @__PURE__ */ React.createElement("strong", { className: "text-xs font-bold text-[#f2c06f]" }, "v", plugin.version)))), /* @__PURE__ */ React.createElement("div", { className: "h-8 w-px bg-gray-600" }), /* @__PURE__ */ React.createElement("div", { className: "flex items-center gap-2" }, /* @__PURE__ */ React.createElement(
50
- "img",
51
- {
52
- src: `${plugin.resources.default}/image/frame-logo.png`,
53
- alt: "Karin Logo",
54
- className: "h-6 w-6 rounded-sm"
55
- }
56
- ), /* @__PURE__ */ React.createElement("div", { className: "flex flex-col" }, /* @__PURE__ */ React.createElement("span", { className: "text-[5px] font-bold leading-none text-black" }, "IS DRIVEN BY"), /* @__PURE__ */ React.createElement("div", { className: "flex items-baseline gap-1.5" }, /* @__PURE__ */ React.createElement("span", { className: "font-semibold" }, "Karin"), /* @__PURE__ */ React.createElement("strong", { className: "text-[10px] font-bold text-[#f2c06f]" }, "v", karin2.version)))))
57
- );
58
- };
59
-
60
23
  // src/template/ShowBindAccount/ShowBindAccount.tsx
61
- import React2 from "react";
62
24
  var ShowBindAccountComponent = ({
63
25
  User,
64
26
  AccountList
65
27
  }) => {
66
28
  const plugin = Render.plugin;
67
- return /* @__PURE__ */ React2.createElement(DefaultLayoutComponent, { bgColor: "bg-[#f6f0e6]" }, /* @__PURE__ */ React2.createElement("div", { className: "px-[18px] pb-9 pt-5" }, /* @__PURE__ */ React2.createElement(
29
+ return /* @__PURE__ */ React.createElement(DefaultLayoutComponent, { bgColor: "bg-[#f6f0e6]" }, /* @__PURE__ */ React.createElement("div", { className: "px-[18px] pb-9 pt-5" }, /* @__PURE__ */ React.createElement(
68
30
  "div",
69
31
  {
70
32
  className: "absolute -top-2.5 right-0 z-[5] h-[72px] w-[150px] bg-contain bg-center bg-no-repeat opacity-50",
71
33
  style: { backgroundImage: `url('${plugin.resources.default}/image/mys-logo.png')` }
72
34
  }
73
- ), /* @__PURE__ */ React2.createElement("div", { className: "mb-3 flex items-center gap-2.5" }, /* @__PURE__ */ React2.createElement("img", { className: "h-10 w-10 flex-none rounded-full object-cover", src: User.avatar, alt: "avatar" }), /* @__PURE__ */ React2.createElement("span", { className: "min-w-0 overflow-anywhere break-words text-sm text-[#222]" }, User.nickname, " (", User.userId, ")")), AccountList && AccountList.length > 0 ? AccountList.map((account, idx) => /* @__PURE__ */ React2.createElement(
35
+ ), /* @__PURE__ */ React.createElement("div", { className: "mb-3 flex items-center gap-2.5" }, /* @__PURE__ */ React.createElement("img", { className: "h-10 w-10 flex-none rounded-full object-cover", src: User.avatar, alt: "avatar" }), /* @__PURE__ */ React.createElement("span", { className: "min-w-0 overflow-anywhere break-words text-sm text-[#222]" }, User.nickname, " (", User.userId, ")")), AccountList && AccountList.length > 0 ? AccountList.map((account, idx) => /* @__PURE__ */ React.createElement(
74
36
  "div",
75
37
  {
76
38
  className: "mb-3 flex flex-col gap-1.5 rounded-lg border border-black/[0.06] bg-white p-3 shadow-[0_2px_6px_rgba(0,0,0,0.04)]",
77
39
  key: account.ltuid
78
40
  },
79
- /* @__PURE__ */ React2.createElement("div", { className: "relative flex items-center justify-between gap-2" }, /* @__PURE__ */ React2.createElement("span", { className: "flex text-sm font-semibold text-[#3f7dd1]" }, "MYS UID (", idx + 1, ")\uFF1A", account.ltuid), /* @__PURE__ */ React2.createElement("div", { className: "flex items-center gap-2" }, account.permission >= 1 && /* @__PURE__ */ React2.createElement("span", { className: "inline-block rounded-xl bg-gradient-to-b from-[#34bc5b] to-[#2ea94b] px-2 py-1 text-xs font-semibold text-white shadow-[0_1px_0_rgba(0,0,0,0.06)_inset]" }, "cookie"), account.permission >= 2 && /* @__PURE__ */ React2.createElement("span", { className: "inline-block rounded-xl bg-gradient-to-b from-[#f6d86a] to-[#f1c40f] px-2 py-1 text-xs font-semibold text-black/85" }, "stoken"))),
80
- account.bindUids.map((bindUid, bindIdx) => /* @__PURE__ */ React2.createElement(
41
+ /* @__PURE__ */ React.createElement("div", { className: "relative flex items-center justify-between gap-2" }, /* @__PURE__ */ React.createElement("span", { className: "flex text-sm font-semibold text-[#3f7dd1]" }, "MYS UID (", idx + 1, ")\uFF1A", account.ltuid), /* @__PURE__ */ React.createElement("div", { className: "flex items-center gap-2" }, account.permission >= 1 && /* @__PURE__ */ React.createElement("span", { className: "inline-block rounded-xl bg-gradient-to-b from-[#34bc5b] to-[#2ea94b] px-2 py-1 text-xs font-semibold text-white shadow-[0_1px_0_rgba(0,0,0,0.06)_inset]" }, "cookie"), account.permission >= 2 && /* @__PURE__ */ React.createElement("span", { className: "inline-block rounded-xl bg-gradient-to-b from-[#f6d86a] to-[#f1c40f] px-2 py-1 text-xs font-semibold text-black/85" }, "stoken"))),
42
+ account.bindUids.map((bindUid, bindIdx) => /* @__PURE__ */ React.createElement(
81
43
  "div",
82
44
  {
83
45
  className: `flex items-center gap-3 rounded-md px-1 py-1.5 ${bindIdx > 0 ? "relative pt-3 before:absolute before:left-[5%] before:right-0 before:top-0 before:h-px before:w-[90%] before:rounded-sm before:bg-[#3f7dd1]" : ""}`,
84
46
  key: bindUid.gameName
85
47
  },
86
- /* @__PURE__ */ React2.createElement(
48
+ /* @__PURE__ */ React.createElement(
87
49
  "img",
88
50
  {
89
51
  className: "flex w-10 items-center justify-center rounded-[10px]",
@@ -91,7 +53,7 @@ var ShowBindAccountComponent = ({
91
53
  alt: bindUid.gameName
92
54
  }
93
55
  ),
94
- /* @__PURE__ */ React2.createElement("div", { className: "grid flex-auto grid-cols-3 gap-2" }, bindUid.uids.map((info) => /* @__PURE__ */ React2.createElement(
56
+ /* @__PURE__ */ React.createElement("div", { className: "grid flex-auto grid-cols-3 gap-2" }, bindUid.uids.map((info) => /* @__PURE__ */ React.createElement(
95
57
  "span",
96
58
  {
97
59
  key: info.uid,
@@ -100,11 +62,11 @@ var ShowBindAccountComponent = ({
100
62
  info.uid
101
63
  )))
102
64
  ))
103
- )) : /* @__PURE__ */ React2.createElement("div", { className: "my-3 px-5 py-5 text-center font-semibold text-[#6b6b6b]" }, "\u6682\u672A\u7ED1\u5B9A\u8D26\u53F7")));
65
+ )) : /* @__PURE__ */ React.createElement("div", { className: "my-3 px-5 py-5 text-center font-semibold text-[#6b6b6b]" }, "\u6682\u672A\u7ED1\u5B9A\u8D26\u53F7")));
104
66
  };
105
67
 
106
68
  // src/template/ShowBindDevice/ShowBindDevice.tsx
107
- import React3 from "react";
69
+ import React2 from "react";
108
70
 
109
71
  // src/apps/UIDManage.ts
110
72
  import karin, { handler, segment } from "node-karin";
@@ -1,3 +1,17 @@
1
- export { DefaultRenderPluginOptionsType, ReactRender, RenderCfg } from './render.js';
1
+ import React from 'react';
2
2
  export { default as React } from 'react';
3
+ export { DefaultRenderPluginOptionsType, ReactRender, RenderCfg } from './render.js';
3
4
  import 'node-karin';
5
+
6
+ interface DefaultLayoutProps {
7
+ children: React.ReactNode;
8
+ bgColor: string;
9
+ mysPlugin?: {
10
+ name: string;
11
+ version: string;
12
+ logoPath: string;
13
+ };
14
+ }
15
+ declare const DefaultLayoutComponent: React.FC<DefaultLayoutProps>;
16
+
17
+ export { DefaultLayoutComponent, type DefaultLayoutProps };
@@ -1,13 +1,16 @@
1
1
  import {
2
+ DefaultLayoutComponent,
2
3
  React
3
- } from "../../chunk-UX2BDLJF.js";
4
+ } from "../../chunk-JT3SU5UU.js";
4
5
  import {
5
6
  ReactRender
6
- } from "../../chunk-NUOK4VFP.js";
7
+ } from "../../chunk-LLYBEHPW.js";
7
8
  import "../../chunk-UC6INRYV.js";
8
9
  import "../../chunk-LG34FPBI.js";
10
+ import "../../chunk-SHLPPEAY.js";
9
11
  import "../../chunk-MLKGABMK.js";
10
12
  export {
13
+ DefaultLayoutComponent,
11
14
  React,
12
15
  ReactRender
13
16
  };
@@ -1,8 +1,9 @@
1
1
  import {
2
2
  ReactRender
3
- } from "../../chunk-NUOK4VFP.js";
3
+ } from "../../chunk-LLYBEHPW.js";
4
4
  import "../../chunk-UC6INRYV.js";
5
5
  import "../../chunk-LG34FPBI.js";
6
+ import "../../chunk-SHLPPEAY.js";
6
7
  import "../../chunk-MLKGABMK.js";
7
8
  export {
8
9
  ReactRender
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "karin-plugin-mys-core",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "author": "babanbang",
5
5
  "type": "module",
6
6
  "description": "karin-plugin-mys-core",
@@ -554,40 +554,6 @@ video {
554
554
  display: none;
555
555
  }
556
556
 
557
- .container {
558
- width: 100%;
559
- }
560
-
561
- @media (min-width: 640px) {
562
- .container {
563
- max-width: 640px;
564
- }
565
- }
566
-
567
- @media (min-width: 768px) {
568
- .container {
569
- max-width: 768px;
570
- }
571
- }
572
-
573
- @media (min-width: 1024px) {
574
- .container {
575
- max-width: 1024px;
576
- }
577
- }
578
-
579
- @media (min-width: 1280px) {
580
- .container {
581
- max-width: 1280px;
582
- }
583
- }
584
-
585
- @media (min-width: 1536px) {
586
- .container {
587
- max-width: 1536px;
588
- }
589
- }
590
-
591
557
  .absolute {
592
558
  position: absolute;
593
559
  }
@@ -600,14 +566,6 @@ video {
600
566
  top: -0.625rem;
601
567
  }
602
568
 
603
- .bottom-0 {
604
- bottom: 0px;
605
- }
606
-
607
- .left-0 {
608
- left: 0px;
609
- }
610
-
611
569
  .right-0 {
612
570
  right: 0px;
613
571
  }
@@ -641,14 +599,6 @@ video {
641
599
  height: 2.5rem;
642
600
  }
643
601
 
644
- .h-6 {
645
- height: 1.5rem;
646
- }
647
-
648
- .h-8 {
649
- height: 2rem;
650
- }
651
-
652
602
  .h-\[72px\] {
653
603
  height: 72px;
654
604
  }
@@ -657,26 +607,10 @@ video {
657
607
  width: 2.5rem;
658
608
  }
659
609
 
660
- .w-6 {
661
- width: 1.5rem;
662
- }
663
-
664
610
  .w-\[150px\] {
665
611
  width: 150px;
666
612
  }
667
613
 
668
- .w-\[600px\] {
669
- width: 600px;
670
- }
671
-
672
- .w-full {
673
- width: 100%;
674
- }
675
-
676
- .w-px {
677
- width: 1px;
678
- }
679
-
680
614
  .min-w-0 {
681
615
  min-width: 0px;
682
616
  }
@@ -701,10 +635,6 @@ video {
701
635
  align-items: center;
702
636
  }
703
637
 
704
- .items-baseline {
705
- align-items: baseline;
706
- }
707
-
708
638
  .justify-center {
709
639
  justify-content: center;
710
640
  }
@@ -713,10 +643,6 @@ video {
713
643
  justify-content: space-between;
714
644
  }
715
645
 
716
- .gap-0\.5 {
717
- gap: 0.125rem;
718
- }
719
-
720
646
  .gap-1\.5 {
721
647
  gap: 0.375rem;
722
648
  }
@@ -733,10 +659,6 @@ video {
733
659
  gap: 0.75rem;
734
660
  }
735
661
 
736
- .gap-4 {
737
- gap: 1rem;
738
- }
739
-
740
662
  .overflow-visible {
741
663
  overflow: visible;
742
664
  }
@@ -765,10 +687,6 @@ video {
765
687
  border-radius: 0.375rem;
766
688
  }
767
689
 
768
- .rounded-sm {
769
- border-radius: 0.125rem;
770
- }
771
-
772
690
  .rounded-xl {
773
691
  border-radius: 0.75rem;
774
692
  }
@@ -790,11 +708,6 @@ video {
790
708
  background-color: rgb(0 0 0 / 0.06);
791
709
  }
792
710
 
793
- .bg-gray-600 {
794
- --tw-bg-opacity: 1;
795
- background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
796
- }
797
-
798
711
  .bg-white {
799
712
  --tw-bg-opacity: 1;
800
713
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
@@ -859,11 +772,6 @@ video {
859
772
  padding-right: 0.5rem;
860
773
  }
861
774
 
862
- .px-4 {
863
- padding-left: 1rem;
864
- padding-right: 1rem;
865
- }
866
-
867
775
  .px-5 {
868
776
  padding-left: 1.25rem;
869
777
  padding-right: 1.25rem;
@@ -884,20 +792,11 @@ video {
884
792
  padding-bottom: 0.375rem;
885
793
  }
886
794
 
887
- .py-2\.5 {
888
- padding-top: 0.625rem;
889
- padding-bottom: 0.625rem;
890
- }
891
-
892
795
  .py-5 {
893
796
  padding-top: 1.25rem;
894
797
  padding-bottom: 1.25rem;
895
798
  }
896
799
 
897
- .pb-10 {
898
- padding-bottom: 2.5rem;
899
- }
900
-
901
800
  .pb-9 {
902
801
  padding-bottom: 2.25rem;
903
802
  }
@@ -914,22 +813,10 @@ video {
914
813
  text-align: center;
915
814
  }
916
815
 
917
- .font-\[HYWenHei-55W\] {
918
- font-family: HYWenHei-55W;
919
- }
920
-
921
- .text-\[10px\] {
922
- font-size: 10px;
923
- }
924
-
925
816
  .text-\[13px\] {
926
817
  font-size: 13px;
927
818
  }
928
819
 
929
- .text-\[5px\] {
930
- font-size: 5px;
931
- }
932
-
933
820
  .text-sm {
934
821
  font-size: 0.875rem;
935
822
  line-height: 1.25rem;
@@ -940,18 +827,10 @@ video {
940
827
  line-height: 1rem;
941
828
  }
942
829
 
943
- .font-bold {
944
- font-weight: 700;
945
- }
946
-
947
830
  .font-semibold {
948
831
  font-weight: 600;
949
832
  }
950
833
 
951
- .leading-none {
952
- line-height: 1;
953
- }
954
-
955
834
  .text-\[\#111\] {
956
835
  --tw-text-opacity: 1;
957
836
  color: rgb(17 17 17 / var(--tw-text-opacity, 1));
@@ -972,16 +851,6 @@ video {
972
851
  color: rgb(107 107 107 / var(--tw-text-opacity, 1));
973
852
  }
974
853
 
975
- .text-\[\#f2c06f\] {
976
- --tw-text-opacity: 1;
977
- color: rgb(242 192 111 / var(--tw-text-opacity, 1));
978
- }
979
-
980
- .text-black {
981
- --tw-text-opacity: 1;
982
- color: rgb(0 0 0 / var(--tw-text-opacity, 1));
983
- }
984
-
985
854
  .text-black\/60 {
986
855
  color: rgb(0 0 0 / 0.6);
987
856
  }
@@ -1011,6 +880,16 @@ video {
1011
880
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1012
881
  }
1013
882
 
883
+ @font-face {
884
+ font-family: 'HYWenHei-55W';
885
+
886
+ src: url('../../resources/fonts/HYWenHei-55W.ttf') format('truetype');
887
+
888
+ font-weight: normal;
889
+
890
+ font-style: normal;
891
+ }
892
+
1014
893
  .before\:absolute::before {
1015
894
  content: var(--tw-content);
1016
895
  position: absolute;
@@ -1,6 +0,0 @@
1
- // src/exports/render/index.ts
2
- import React from "react";
3
-
4
- export {
5
- React
6
- };