@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.
@@ -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";
@@ -1,4 +1,4 @@
1
1
  import { Information } from "../Transcript";
2
- export default function IdCard({ info }: {
2
+ export declare function IdCard({ info }: {
3
3
  info: Information;
4
4
  }): import("react/jsx-runtime").JSX.Element;
@@ -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 default function IdCard({ info }) {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edu-tosel/design",
3
- "version": "1.0.219",
3
+ "version": "1.0.220",
4
4
  "description": "UI components for International TOSEL Committee",
5
5
  "keywords": [
6
6
  "jsx",
package/version.txt CHANGED
@@ -1 +1 @@
1
- 1.0.219
1
+ 1.0.220