@eclass/ui-kit 1.11.0 → 1.11.1
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/dist/eclass-ui-kit.es.js +30 -2
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +20 -20
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/molecules/Buttons/BtnLink.d.ts +11 -0
- package/dist/molecules/index.d.ts +4 -3
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -27110,7 +27110,7 @@ function BtnTertiary({
|
|
|
27110
27110
|
type,
|
|
27111
27111
|
tabIndex,
|
|
27112
27112
|
height: "24px",
|
|
27113
|
-
background:
|
|
27113
|
+
background: "transparent",
|
|
27114
27114
|
fontFamily: "Roboto",
|
|
27115
27115
|
fontStyle: "normal",
|
|
27116
27116
|
fontWeight: "500",
|
|
@@ -27140,6 +27140,34 @@ function BtnTertiary({
|
|
|
27140
27140
|
});
|
|
27141
27141
|
}
|
|
27142
27142
|
BtnTertiary.displayName = "BtnTertiary";
|
|
27143
|
+
function BtnLink({
|
|
27144
|
+
children,
|
|
27145
|
+
m: m2 = "0",
|
|
27146
|
+
onClick,
|
|
27147
|
+
id: id2
|
|
27148
|
+
}) {
|
|
27149
|
+
return /* @__PURE__ */ jsx(Box, {
|
|
27150
|
+
as: "button",
|
|
27151
|
+
id: id2,
|
|
27152
|
+
width: "fit-content",
|
|
27153
|
+
padding: ".25em",
|
|
27154
|
+
fontFamily: "Roboto",
|
|
27155
|
+
fontStyle: "normal",
|
|
27156
|
+
fontWeight: "500",
|
|
27157
|
+
fontSize: ".875rem",
|
|
27158
|
+
lineHeight: "1rem",
|
|
27159
|
+
textDecorationLine: "underline",
|
|
27160
|
+
color: vars("colors-main-deepSkyBlue"),
|
|
27161
|
+
m: m2,
|
|
27162
|
+
onClick,
|
|
27163
|
+
_hover: {
|
|
27164
|
+
color: vars("colors-neutral-darkCharcoal"),
|
|
27165
|
+
cursor: "pointer"
|
|
27166
|
+
},
|
|
27167
|
+
children
|
|
27168
|
+
});
|
|
27169
|
+
}
|
|
27170
|
+
BtnLink.displayName = "BtnLink";
|
|
27143
27171
|
const STUDENT = 4;
|
|
27144
27172
|
function Header() {
|
|
27145
27173
|
const {
|
|
@@ -28311,5 +28339,5 @@ function CourseList({
|
|
|
28311
28339
|
});
|
|
28312
28340
|
}
|
|
28313
28341
|
CourseList.displayName = "CourseList";
|
|
28314
|
-
export { Btn, BtnPrimary, BtnSecondary, BtnTertiary, CourseList, Label, Progress, Ripples, TinyAlert, dataFake, maxWidthCoursesList, theme, vars };
|
|
28342
|
+
export { Btn, BtnLink, BtnPrimary, BtnSecondary, BtnTertiary, CourseList, Label, Progress, Ripples, TinyAlert, dataFake, maxWidthCoursesList, theme, vars };
|
|
28315
28343
|
//# sourceMappingURL=eclass-ui-kit.es.js.map
|