@sikka/hawa 0.10.27-next → 0.10.28-next
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/index.js +3 -1
- package/dist/index.mjs +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2435,7 +2435,9 @@ var Alert = function(_param) {
|
|
|
2435
2435
|
className: "hawa-flex hawa-flex-col"
|
|
2436
2436
|
}, /* @__PURE__ */ import_react16.default.createElement("span", {
|
|
2437
2437
|
className: (0, import_clsx7.default)("font-medium", direction === "rtl" ? "hawa-ml-8" : "hawa-mr-8")
|
|
2438
|
-
}, props.title), /* @__PURE__ */ import_react16.default.createElement("span",
|
|
2438
|
+
}, props.title), /* @__PURE__ */ import_react16.default.createElement("span", {
|
|
2439
|
+
className: (0, import_clsx7.default)(direction === "rtl" ? "hawa-ml-8" : "hawa-mr-8")
|
|
2440
|
+
}, props.text), props.actions && /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
2439
2441
|
className: "hawa-mt-2 hawa-flex hawa-flex-row hawa-gap-2"
|
|
2440
2442
|
}, props.actions.map(function(act, index) {
|
|
2441
2443
|
return /* @__PURE__ */ import_react16.default.createElement(Button, {
|
package/dist/index.mjs
CHANGED
|
@@ -1960,7 +1960,13 @@ var Alert = ({
|
|
|
1960
1960
|
)
|
|
1961
1961
|
},
|
|
1962
1962
|
props.title
|
|
1963
|
-
), /* @__PURE__ */ React24.createElement(
|
|
1963
|
+
), /* @__PURE__ */ React24.createElement(
|
|
1964
|
+
"span",
|
|
1965
|
+
{
|
|
1966
|
+
className: clsx7(direction === "rtl" ? "hawa-ml-8" : "hawa-mr-8")
|
|
1967
|
+
},
|
|
1968
|
+
props.text
|
|
1969
|
+
), props.actions && /* @__PURE__ */ React24.createElement("div", { className: "hawa-mt-2 hawa-flex hawa-flex-row hawa-gap-2" }, props.actions.map((act, index) => /* @__PURE__ */ React24.createElement(
|
|
1964
1970
|
Button,
|
|
1965
1971
|
{
|
|
1966
1972
|
key: index,
|