@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.
- package/dist/atoms/Icons/index.d.ts +0 -1
- package/dist/eclass-ui-kit.es.js +3 -22
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +20 -20
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/molecules/Buttons/BtnTertiary.d.ts +1 -2
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/atoms/Icons/VerticalLine.d.ts +0 -6
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -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
|
-
|
|
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:
|
|
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
|
|
27191
|
+
children
|
|
27211
27192
|
});
|
|
27212
27193
|
}
|
|
27213
27194
|
BtnTertiary.displayName = "BtnTertiary";
|