@wise/dynamic-flow-client 3.28.1 → 3.28.2
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/build/main.js +4 -2
- package/build/main.min.js +1 -1
- package/build/main.mjs +4 -2
- package/package.json +1 -1
package/build/main.mjs
CHANGED
|
@@ -16143,10 +16143,12 @@ function MultiSelectSchema({
|
|
|
16143
16143
|
const shouldShowInitialError = Boolean(errors) && !changed;
|
|
16144
16144
|
const shouldShowValidationError = Boolean(validations.length) && submitted;
|
|
16145
16145
|
const formGroupClasses = {
|
|
16146
|
-
"
|
|
16146
|
+
"form-group": true,
|
|
16147
|
+
"has-error": shouldShowInitialError || shouldShowValidationError,
|
|
16148
|
+
"has-info": !!schema.description
|
|
16147
16149
|
};
|
|
16148
16150
|
return /* @__PURE__ */ jsxs29("div", { className: (0, import_classnames8.default)("d-flex flex-column", formGroupClasses), children: [
|
|
16149
|
-
schema.title ? /* @__PURE__ */ jsx81("label", { htmlFor: id, children: schema.title }) : void 0,
|
|
16151
|
+
schema.title ? /* @__PURE__ */ jsx81("label", { className: "control-label d-inline m-b-1", htmlFor: id, children: schema.title }) : void 0,
|
|
16150
16152
|
/* @__PURE__ */ jsx81(
|
|
16151
16153
|
SelectInput3,
|
|
16152
16154
|
{
|