@edu-tosel/design 1.0.174 → 1.0.176
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.
|
@@ -65,5 +65,5 @@ function ContentBox({ contents }) {
|
|
|
65
65
|
? "bg-green-dark/10 text-green-dark"
|
|
66
66
|
: "bg-none text-gray-medium",
|
|
67
67
|
};
|
|
68
|
-
return (_jsx("div", { className: cn(container), children: contents.map((content) => (_jsx("button", { className: cn(buttonBox), children: content.title }, content.title))) }));
|
|
68
|
+
return (_jsx("div", { className: cn(container), children: contents.map((content) => (_jsx("button", { onClick: content.onClick, className: cn(buttonBox), children: content.title }, content.title))) }));
|
|
69
69
|
}
|
|
@@ -309,5 +309,5 @@ export function ScrollBookComponent() {
|
|
|
309
309
|
imgStyling: "bg-contain bg-no-repeat bg-center",
|
|
310
310
|
scrollActions: "snap-start",
|
|
311
311
|
};
|
|
312
|
-
return (_jsx("div", { className: cn(container), children: bookData.map((item) => (_jsx("div", {
|
|
312
|
+
return (_jsx("div", { className: cn(container), children: bookData.map((item) => (_jsx("div", {}, item.id))) }));
|
|
313
313
|
}
|
package/package.json
CHANGED
package/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.176
|