@eclass/ui-kit 1.11.3 → 1.11.4

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.
@@ -19,4 +19,3 @@ export * from './Pen';
19
19
  export * from './PlusSign';
20
20
  export * from './TrashCan';
21
21
  export * from './TextBubble';
22
- export * from './VerticalLine';
@@ -26837,21 +26837,6 @@ function TextBubble(props) {
26837
26837
  }));
26838
26838
  }
26839
26839
  TextBubble.displayName = "TextBubble";
26840
- function VerticalLine(props) {
26841
- return /* @__PURE__ */ jsx(Base, __spreadProps(__spreadValues({}, props), {
26842
- w: "1px",
26843
- h: "15px",
26844
- viewBox: "0 0 1 15",
26845
- title: "verticalLine",
26846
- children: /* @__PURE__ */ jsx("rect", {
26847
- y: "-1",
26848
- width: "1",
26849
- height: "16",
26850
- fill: "#D8D8D8"
26851
- })
26852
- }));
26853
- }
26854
- VerticalLine.displayName = "VerticalLine";
26855
26840
  function TinyAlert({
26856
26841
  status,
26857
26842
  text,
@@ -27122,7 +27107,6 @@ function BtnTertiary({
27122
27107
  type = "button",
27123
27108
  tabIndex,
27124
27109
  id: id2,
27125
- separation = false,
27126
27110
  onClick
27127
27111
  }) {
27128
27112
  var _a;
@@ -27163,10 +27147,7 @@ function BtnTertiary({
27163
27147
  const icon = (_a = btnIcons[iconStatus]) != null ? _a : btnIcons.multimedia;
27164
27148
  const rIcon = rightIcon ? icon : void 0;
27165
27149
  const lIcon = !rightIcon ? icon : void 0;
27166
- const verticalLine = separation ? /* @__PURE__ */ jsx(VerticalLine, {
27167
- m: "0 0 0 8px"
27168
- }) : void 0;
27169
- return /* @__PURE__ */ jsxs(Button, {
27150
+ return /* @__PURE__ */ jsx(Button, {
27170
27151
  id: id2,
27171
27152
  type,
27172
27153
  tabIndex,
@@ -27181,7 +27162,7 @@ function BtnTertiary({
27181
27162
  borderRadius: "12px",
27182
27163
  paddingTop: vars("space-xxs"),
27183
27164
  paddingBottom: vars("space-xxs"),
27184
- paddingLeft: !separation ? vars("space-xs") : "0",
27165
+ paddingLeft: vars("space-xs"),
27185
27166
  paddingRight: vars("space-xs"),
27186
27167
  color: gray,
27187
27168
  rightIcon: rIcon,
@@ -27207,7 +27188,7 @@ function BtnTertiary({
27207
27188
  }
27208
27189
  }
27209
27190
  },
27210
- children: [children, verticalLine]
27191
+ children
27211
27192
  });
27212
27193
  }
27213
27194
  BtnTertiary.displayName = "BtnTertiary";