@eclass/ui-kit 1.13.1 → 1.14.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/atoms/Icons/GoAhead.d.ts +6 -0
- package/dist/atoms/Icons/index.d.ts +1 -0
- package/dist/eclass-ui-kit.es.js +18 -1
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +21 -21
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/molecules/Buttons/BtnTertiary.d.ts +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -26540,6 +26540,19 @@ function Download(props) {
|
|
|
26540
26540
|
}));
|
|
26541
26541
|
}
|
|
26542
26542
|
Download.displayName = "Download";
|
|
26543
|
+
function GoAhead(props) {
|
|
26544
|
+
return /* @__PURE__ */ jsx(Base, __spreadProps(__spreadValues({}, props), {
|
|
26545
|
+
w: "8px",
|
|
26546
|
+
h: "16px",
|
|
26547
|
+
viewBox: "0 0 8 16",
|
|
26548
|
+
title: "goAhead",
|
|
26549
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
26550
|
+
d: "M2.07407 12L8 6L2.07407 5.18061e-07L-8.65485e-07 2.1L3.85185 6L-1.83588e-07 9.9L2.07407 12V12Z",
|
|
26551
|
+
fill: "currentColor"
|
|
26552
|
+
})
|
|
26553
|
+
}));
|
|
26554
|
+
}
|
|
26555
|
+
GoAhead.displayName = "GoAhead";
|
|
26543
26556
|
function GoBack(props) {
|
|
26544
26557
|
return /* @__PURE__ */ jsx(Base, __spreadProps(__spreadValues({}, props), {
|
|
26545
26558
|
w: "8px",
|
|
@@ -26978,9 +26991,10 @@ function Btn({
|
|
|
26978
26991
|
borderRadius,
|
|
26979
26992
|
color: color2,
|
|
26980
26993
|
className: onlyIcon,
|
|
26981
|
-
disabled: disabled2,
|
|
26994
|
+
disabled: disabled2 && isLoading ? false : disabled2,
|
|
26982
26995
|
height: "auto",
|
|
26983
26996
|
minHeight: size2 === "regular" ? "2.813rem" : "2rem",
|
|
26997
|
+
minWidth: size2 === "regular" ? "9rem" : "auto",
|
|
26984
26998
|
lineHeight: "initial",
|
|
26985
26999
|
iconSpacing: vars("space-xs"),
|
|
26986
27000
|
isActive: false,
|
|
@@ -27120,6 +27134,9 @@ function BtnTertiary({
|
|
|
27120
27134
|
const white = vars("colors-neutral-white");
|
|
27121
27135
|
const colorIcon = withoutColor ? vars("colors-main-blueGrey") : blue;
|
|
27122
27136
|
const btnIcons = {
|
|
27137
|
+
ahead: /* @__PURE__ */ jsx(GoAhead, {
|
|
27138
|
+
color: colorIcon
|
|
27139
|
+
}),
|
|
27123
27140
|
answer: /* @__PURE__ */ jsx(TextBubble, {
|
|
27124
27141
|
color: colorIcon
|
|
27125
27142
|
}),
|