@apexcura/ui-components 0.0.14-Beta229 → 0.0.14-Beta230
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 +5 -4
- package/dist/index.mjs +5 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -397,16 +397,17 @@ var ButtonElement = (props) => {
|
|
|
397
397
|
cursor: props.loading ? "no-drop" : "pointer"
|
|
398
398
|
}
|
|
399
399
|
},
|
|
400
|
-
/* @__PURE__ */ import_react11.default.createElement("span",
|
|
400
|
+
/* @__PURE__ */ import_react11.default.createElement("span", null, /* @__PURE__ */ import_react11.default.createElement(
|
|
401
401
|
"span",
|
|
402
402
|
{
|
|
403
|
+
className: props.iconsClassName,
|
|
403
404
|
dangerouslySetInnerHTML: { __html: props.icon || "" }
|
|
404
405
|
}
|
|
405
|
-
), /* @__PURE__ */ import_react11.default.createElement("style", null, textColorClass ? `.${props.
|
|
406
|
+
), /* @__PURE__ */ import_react11.default.createElement("style", null, textColorClass ? `.${props.className} path {
|
|
406
407
|
filter: brightness(0) invert(1);
|
|
407
|
-
}` : `.${props.
|
|
408
|
+
}` : `.${props.className} path {
|
|
408
409
|
fill: #A3A3A3;
|
|
409
|
-
}`, `.${props.
|
|
410
|
+
}`, `.${props.className}:hover path {
|
|
410
411
|
filter: brightness(0) invert(1);
|
|
411
412
|
}`)),
|
|
412
413
|
props.label
|
package/dist/index.mjs
CHANGED
|
@@ -331,16 +331,17 @@ var ButtonElement = (props) => {
|
|
|
331
331
|
cursor: props.loading ? "no-drop" : "pointer"
|
|
332
332
|
}
|
|
333
333
|
},
|
|
334
|
-
/* @__PURE__ */ React11.createElement("span",
|
|
334
|
+
/* @__PURE__ */ React11.createElement("span", null, /* @__PURE__ */ React11.createElement(
|
|
335
335
|
"span",
|
|
336
336
|
{
|
|
337
|
+
className: props.iconsClassName,
|
|
337
338
|
dangerouslySetInnerHTML: { __html: props.icon || "" }
|
|
338
339
|
}
|
|
339
|
-
), /* @__PURE__ */ React11.createElement("style", null, textColorClass ? `.${props.
|
|
340
|
+
), /* @__PURE__ */ React11.createElement("style", null, textColorClass ? `.${props.className} path {
|
|
340
341
|
filter: brightness(0) invert(1);
|
|
341
|
-
}` : `.${props.
|
|
342
|
+
}` : `.${props.className} path {
|
|
342
343
|
fill: #A3A3A3;
|
|
343
|
-
}`, `.${props.
|
|
344
|
+
}`, `.${props.className}:hover path {
|
|
344
345
|
filter: brightness(0) invert(1);
|
|
345
346
|
}`)),
|
|
346
347
|
props.label
|