@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260418121424 → 0.8.1-dev.20260420045704
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 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1404,7 +1404,7 @@ var MultilineTextInput = (props) => {
|
|
|
1404
1404
|
maxLength: props?.attributes?.maxLength,
|
|
1405
1405
|
disabled: props?.attributes?.readOnly,
|
|
1406
1406
|
minLength: props?.attributes?.minLength,
|
|
1407
|
-
className: "peer mt-1 py-1.5 block w-full rounded shadow-sm"
|
|
1407
|
+
className: "peer mt-1 py-1.5 block w-full rounded shadow-sm input"
|
|
1408
1408
|
}
|
|
1409
1409
|
),
|
|
1410
1410
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "hidden group-[.validated]:peer-invalid:block mt-1 bg-error-weak text-sm", children: props?.attributes?.errorMessage ? props.attributes.errorMessage : "" })
|
|
@@ -1619,7 +1619,7 @@ var Select = (props) => {
|
|
|
1619
1619
|
onChange: textChangeHandler,
|
|
1620
1620
|
required: props.attributes?.required,
|
|
1621
1621
|
disabled: props.attributes?.readOnly,
|
|
1622
|
-
className: "peer py-1.5 block w-full text-black rounded border-gray-300 shadow-sm\n focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50\n disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none",
|
|
1622
|
+
className: "peer select py-1.5 block w-full text-black rounded border-gray-300 shadow-sm\n focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50\n disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none",
|
|
1623
1623
|
children: [
|
|
1624
1624
|
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("option", { value: "", children: props.attributes?.placeholder || "Select" }),
|
|
1625
1625
|
list.map((item, index) => {
|
|
@@ -1789,7 +1789,7 @@ var NumberInput = (props) => {
|
|
|
1789
1789
|
disabled: props?.attributes?.readOnly,
|
|
1790
1790
|
max: props?.attributes?.maxValue,
|
|
1791
1791
|
min: props?.attributes?.minValue,
|
|
1792
|
-
className: "peer py-1.5 block w-full rounded shadow-sm number-input\n disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none\n "
|
|
1792
|
+
className: "peer py-1.5 block w-full rounded shadow-sm number-input input\n disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none\n "
|
|
1793
1793
|
}
|
|
1794
1794
|
),
|
|
1795
1795
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "hidden group-[.validated]:peer-invalid:block mt-1 bg-error-weak text-sm", children: props?.attributes?.errorMessage ? props.attributes.errorMessage : "" })
|
package/dist/index.mjs
CHANGED
|
@@ -416,7 +416,7 @@ var MultilineTextInput = (props) => {
|
|
|
416
416
|
maxLength: props?.attributes?.maxLength,
|
|
417
417
|
disabled: props?.attributes?.readOnly,
|
|
418
418
|
minLength: props?.attributes?.minLength,
|
|
419
|
-
className: "peer mt-1 py-1.5 block w-full rounded shadow-sm"
|
|
419
|
+
className: "peer mt-1 py-1.5 block w-full rounded shadow-sm input"
|
|
420
420
|
}
|
|
421
421
|
),
|
|
422
422
|
/* @__PURE__ */ jsx10("p", { className: "hidden group-[.validated]:peer-invalid:block mt-1 bg-error-weak text-sm", children: props?.attributes?.errorMessage ? props.attributes.errorMessage : "" })
|
|
@@ -631,7 +631,7 @@ var Select = (props) => {
|
|
|
631
631
|
onChange: textChangeHandler,
|
|
632
632
|
required: props.attributes?.required,
|
|
633
633
|
disabled: props.attributes?.readOnly,
|
|
634
|
-
className: "peer py-1.5 block w-full text-black rounded border-gray-300 shadow-sm\n focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50\n disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none",
|
|
634
|
+
className: "peer select py-1.5 block w-full text-black rounded border-gray-300 shadow-sm\n focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50\n disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none",
|
|
635
635
|
children: [
|
|
636
636
|
/* @__PURE__ */ jsx13("option", { value: "", children: props.attributes?.placeholder || "Select" }),
|
|
637
637
|
list.map((item, index) => {
|
|
@@ -801,7 +801,7 @@ var NumberInput = (props) => {
|
|
|
801
801
|
disabled: props?.attributes?.readOnly,
|
|
802
802
|
max: props?.attributes?.maxValue,
|
|
803
803
|
min: props?.attributes?.minValue,
|
|
804
|
-
className: "peer py-1.5 block w-full rounded shadow-sm number-input\n disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none\n "
|
|
804
|
+
className: "peer py-1.5 block w-full rounded shadow-sm number-input input\n disabled:bg-slate-50 disabled:text-slate-500 disabled:border-slate-200 disabled:shadow-none\n "
|
|
805
805
|
}
|
|
806
806
|
),
|
|
807
807
|
/* @__PURE__ */ jsx16("p", { className: "hidden group-[.validated]:peer-invalid:block mt-1 bg-error-weak text-sm", children: props?.attributes?.errorMessage ? props.attributes.errorMessage : "" })
|
package/package.json
CHANGED