@edu-tosel/design 1.0.135 → 1.0.136
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.
|
@@ -15,6 +15,6 @@ interface StudentCardProps extends Omit<InfoCardProps, "titles" | "children"> {
|
|
|
15
15
|
}
|
|
16
16
|
declare function Academy({ titles, data, buttons, option }: AcademyCardProps): import("react/jsx-runtime").JSX.Element;
|
|
17
17
|
declare namespace Academy {
|
|
18
|
-
var Digital: ({ image, data }: StudentCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
var Digital: ({ image, data, option }: StudentCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
19
|
}
|
|
20
20
|
export default Academy;
|
|
@@ -16,12 +16,13 @@ function Academy({ titles, data, buttons, option }) {
|
|
|
16
16
|
height: "xs",
|
|
17
17
|
} }, index))) })] }) }));
|
|
18
18
|
}
|
|
19
|
-
function Digital({ image, data }) {
|
|
19
|
+
function Digital({ image, data, option }) {
|
|
20
20
|
return (_jsx(InfoCardDesign, { option: {
|
|
21
21
|
width: "md",
|
|
22
22
|
height: "md",
|
|
23
23
|
titleBorder: "border-crimson-burgundy",
|
|
24
24
|
boundary: "border-2 border-crimson-burgundy",
|
|
25
|
+
onClick: option?.onClick,
|
|
25
26
|
}, titles: {
|
|
26
27
|
title: "Digital Student Card",
|
|
27
28
|
subtitle: "디지털 학생증",
|
package/package.json
CHANGED
package/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.136
|