@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.
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function GoAhead(props: BaseProps): JSX.Element;
4
+ export declare namespace GoAhead {
5
+ var displayName: string;
6
+ }
@@ -5,6 +5,7 @@ export * from './Certificate';
5
5
  export * from './CircularCheck';
6
6
  export * from './CircularInformation';
7
7
  export * from './Download';
8
+ export * from './GoAhead';
8
9
  export * from './GoBack';
9
10
  export * from './Multimedia';
10
11
  export * from './Loader';
@@ -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
  }),