@eclass/ui-kit 1.13.0 → 1.14.0
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 +20 -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",
|
|
@@ -26980,8 +26993,8 @@ function Btn({
|
|
|
26980
26993
|
className: onlyIcon,
|
|
26981
26994
|
disabled: disabled2,
|
|
26982
26995
|
height: "auto",
|
|
26996
|
+
minHeight: size2 === "regular" ? "2.813rem" : "2rem",
|
|
26983
26997
|
lineHeight: "initial",
|
|
26984
|
-
minHeight: size2 === "regular" ? "2.7rem" : "1.474rem",
|
|
26985
26998
|
iconSpacing: vars("space-xs"),
|
|
26986
26999
|
isActive: false,
|
|
26987
27000
|
isLoading,
|
|
@@ -27009,6 +27022,9 @@ function Btn({
|
|
|
27009
27022
|
cursor: "not-allowed"
|
|
27010
27023
|
},
|
|
27011
27024
|
_focus: {
|
|
27025
|
+
boxShadow: "none"
|
|
27026
|
+
},
|
|
27027
|
+
_focusVisible: {
|
|
27012
27028
|
boxShadow: `inset 0 0 0 2px ${borderColorActive[0]}, inset 0 0 0 4px ${borderColorActive[1]}`
|
|
27013
27029
|
},
|
|
27014
27030
|
_hover: {
|
|
@@ -27117,6 +27133,9 @@ function BtnTertiary({
|
|
|
27117
27133
|
const white = vars("colors-neutral-white");
|
|
27118
27134
|
const colorIcon = withoutColor ? vars("colors-main-blueGrey") : blue;
|
|
27119
27135
|
const btnIcons = {
|
|
27136
|
+
ahead: /* @__PURE__ */ jsx(GoAhead, {
|
|
27137
|
+
color: colorIcon
|
|
27138
|
+
}),
|
|
27120
27139
|
answer: /* @__PURE__ */ jsx(TextBubble, {
|
|
27121
27140
|
color: colorIcon
|
|
27122
27141
|
}),
|