@eclass/ui-kit 1.18.0 → 1.18.2
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 +6 -2
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +17 -17
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/molecules/Tooltip/{Tooltip.d.ts → NewTooltip.d.ts} +2 -1
- package/dist/molecules/index.d.ts +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -29195,8 +29195,9 @@ function BtnLink({
|
|
|
29195
29195
|
});
|
|
29196
29196
|
}
|
|
29197
29197
|
BtnLink.displayName = "BtnLink";
|
|
29198
|
-
const
|
|
29198
|
+
const NewTooltip = ({
|
|
29199
29199
|
children,
|
|
29200
|
+
className = "tooltip",
|
|
29200
29201
|
label,
|
|
29201
29202
|
isDisabled: isDisabled2 = false,
|
|
29202
29203
|
m: m2,
|
|
@@ -29206,13 +29207,16 @@ const TooltipLabel = ({
|
|
|
29206
29207
|
sx: {
|
|
29207
29208
|
bg: vars("colors-neutral-darkCharcoal"),
|
|
29208
29209
|
borderRadius: "10px",
|
|
29210
|
+
color: "white !important",
|
|
29209
29211
|
fontSize: "12px",
|
|
29212
|
+
fontWeight: "400",
|
|
29210
29213
|
maxWidth: "170px",
|
|
29211
29214
|
padding: "8px",
|
|
29212
29215
|
".chakra-tooltip__arrow": {
|
|
29213
29216
|
bg: `${vars("colors-neutral-darkCharcoal")} !important`
|
|
29214
29217
|
}
|
|
29215
29218
|
},
|
|
29219
|
+
className,
|
|
29216
29220
|
closeOnClick: true,
|
|
29217
29221
|
label,
|
|
29218
29222
|
m: m2,
|
|
@@ -30406,5 +30410,5 @@ function CourseList({
|
|
|
30406
30410
|
});
|
|
30407
30411
|
}
|
|
30408
30412
|
CourseList.displayName = "CourseList";
|
|
30409
|
-
export { Btn, BtnLink, BtnPrimary, BtnSecondary, BtnTertiary, CourseList, CourseStatus, index as Icons, Label, Progress, Ripples, TinyAlert,
|
|
30413
|
+
export { Btn, BtnLink, BtnPrimary, BtnSecondary, BtnTertiary, CourseList, CourseStatus, index as Icons, Label, NewTooltip, Progress, Ripples, TinyAlert, dataFake, maxWidthCoursesList, theme, vars };
|
|
30410
30414
|
//# sourceMappingURL=eclass-ui-kit.es.js.map
|