@edu-tosel/design 1.0.219 → 1.0.220
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/layout/template/Transcript/design/Transcript.design.js +1 -1
- package/layout/template/Transcript/design/TranscriptAdvanced.design.js +1 -1
- package/layout/template/Transcript/design/organism/{IdCard.d.ts → IdCard.organism.d.ts} +1 -1
- package/layout/template/Transcript/design/organism/{IdCard.js → IdCard.organism.js} +1 -1
- package/package.json +1 -1
- package/version.txt +1 -1
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
import { paperSize } from "../../../../style/size";
|
|
4
4
|
import { cn } from "../../../../util";
|
|
5
|
-
import IdCard from "./organism/IdCard";
|
|
5
|
+
import { IdCard } from "./organism/IdCard.organism";
|
|
6
6
|
import { BarCardRow } from "./organism/BarCardRow";
|
|
7
7
|
import ScoreCard from "./organism/ScoreCard";
|
|
8
8
|
import HonorCard from "./organism/HonorCard";
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
|
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
import { paperSize } from "../../../../style/size";
|
|
4
4
|
import { cn } from "../../../../util";
|
|
5
|
-
import IdCard from "./organism/IdCard";
|
|
5
|
+
import { IdCard } from "./organism/IdCard.organism";
|
|
6
6
|
import { BarCardCol } from "./organism/BarCardCol";
|
|
7
7
|
import { RadarCard } from "./organism/RadarCard";
|
|
8
8
|
import { OCICard } from "./organism/OCICard";
|
|
@@ -4,7 +4,7 @@ import { useResponsive } from "../../../../../hook";
|
|
|
4
4
|
import { cn, copyToClipboard } from "../../../../../util";
|
|
5
5
|
import QRCode from "react-qr-code";
|
|
6
6
|
import { GetStyleFromLevel } from "../atom/GetStyleFromLevel";
|
|
7
|
-
export
|
|
7
|
+
export function IdCard({ info }) {
|
|
8
8
|
const [isExpanded, setIsExpanded] = useState(false);
|
|
9
9
|
const togglecard = () => setIsExpanded(!isExpanded);
|
|
10
10
|
//반응형 info 카드 height 문제로 눌러서 자세히 보기 차후 구현 예정
|
package/package.json
CHANGED
package/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.220
|