@overmap-ai/core 1.0.33-revamp-forms-builder.24 → 1.0.33
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/overmap-core.js +7 -5
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +7 -5
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/style.css +14 -10
- package/package.json +2 -2
package/dist/overmap-core.js
CHANGED
|
@@ -10275,14 +10275,16 @@ const FieldActions = memo((props) => {
|
|
|
10275
10275
|
] });
|
|
10276
10276
|
});
|
|
10277
10277
|
FieldActions.displayName = "FieldActions";
|
|
10278
|
-
const popoverInputsContainer = "
|
|
10279
|
-
const typeBadge = "
|
|
10280
|
-
const previewInput = "
|
|
10281
|
-
const
|
|
10278
|
+
const popoverInputsContainer = "_popoverInputsContainer_ny0l1_1";
|
|
10279
|
+
const typeBadge = "_typeBadge_ny0l1_5";
|
|
10280
|
+
const previewInput = "_previewInput_ny0l1_10";
|
|
10281
|
+
const directInput = "_directInput_ny0l1_14";
|
|
10282
|
+
const grow = "_grow_ny0l1_18";
|
|
10282
10283
|
const styles = {
|
|
10283
10284
|
popoverInputsContainer,
|
|
10284
10285
|
typeBadge,
|
|
10285
10286
|
previewInput,
|
|
10287
|
+
directInput,
|
|
10286
10288
|
grow
|
|
10287
10289
|
};
|
|
10288
10290
|
const FieldSettingsPopover = memo((props) => {
|
|
@@ -10502,7 +10504,7 @@ const FieldBuilder = memo((props) => {
|
|
|
10502
10504
|
}
|
|
10503
10505
|
)
|
|
10504
10506
|
] }),
|
|
10505
|
-
fieldCls !== FieldSection && directlyShownFields.length > 0 && directlyShownInputs
|
|
10507
|
+
fieldCls !== FieldSection && directlyShownFields.length > 0 && /* @__PURE__ */ jsx("div", { className: styles.directInput, children: directlyShownInputs })
|
|
10506
10508
|
] });
|
|
10507
10509
|
});
|
|
10508
10510
|
FieldBuilder.displayName = "FieldBuilder";
|