@apexcura/ui-components 0.0.14-Beta226 → 0.0.14-Beta227
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 +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -385,6 +385,8 @@ var MultipleSelectElement = (props) => {
|
|
|
385
385
|
var import_react11 = __toESM(require("react"));
|
|
386
386
|
var ButtonElement = (props) => {
|
|
387
387
|
const textColorClass = props.className?.match(/text-[\w-]+/g)?.[0] === "text-white";
|
|
388
|
+
console.log(textColorClass);
|
|
389
|
+
console.log(props.className?.match(/text-[\w-]+/g)?.[0]);
|
|
388
390
|
return /* @__PURE__ */ import_react11.default.createElement(
|
|
389
391
|
"button",
|
|
390
392
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -319,6 +319,8 @@ var MultipleSelectElement = (props) => {
|
|
|
319
319
|
import React11 from "react";
|
|
320
320
|
var ButtonElement = (props) => {
|
|
321
321
|
const textColorClass = props.className?.match(/text-[\w-]+/g)?.[0] === "text-white";
|
|
322
|
+
console.log(textColorClass);
|
|
323
|
+
console.log(props.className?.match(/text-[\w-]+/g)?.[0]);
|
|
322
324
|
return /* @__PURE__ */ React11.createElement(
|
|
323
325
|
"button",
|
|
324
326
|
{
|