@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260425061719 → 0.8.1-dev.20260425064141
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 -6
- package/dist/index.mjs +3 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6197,7 +6197,7 @@ var DataFormChildSection = (props) => {
|
|
|
6197
6197
|
{
|
|
6198
6198
|
index: filteredIndex,
|
|
6199
6199
|
name: field.name,
|
|
6200
|
-
controlType:
|
|
6200
|
+
controlType: field.controlType,
|
|
6201
6201
|
value: item[field.name],
|
|
6202
6202
|
dataset: field.dataset,
|
|
6203
6203
|
dataKeyFieldName: field.dataKeyFieldName,
|
|
@@ -6524,15 +6524,12 @@ var DataForm = (props) => {
|
|
|
6524
6524
|
{
|
|
6525
6525
|
className: sectionRow.grow ? "grow" : "",
|
|
6526
6526
|
children: [
|
|
6527
|
-
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { children: field }),
|
|
6527
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { children: field.controlType }),
|
|
6528
6528
|
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
6529
6529
|
InputControl_default,
|
|
6530
6530
|
{
|
|
6531
6531
|
name: field.name,
|
|
6532
|
-
controlType:
|
|
6533
|
-
// @ts-ignore
|
|
6534
|
-
InputControlType_default[field.controlType]
|
|
6535
|
-
),
|
|
6532
|
+
controlType: field.controlType,
|
|
6536
6533
|
value: getNestedProperty2(
|
|
6537
6534
|
formState.inputValues,
|
|
6538
6535
|
field.name
|
package/dist/index.mjs
CHANGED
|
@@ -5047,7 +5047,7 @@ var DataFormChildSection = (props) => {
|
|
|
5047
5047
|
{
|
|
5048
5048
|
index: filteredIndex,
|
|
5049
5049
|
name: field.name,
|
|
5050
|
-
controlType:
|
|
5050
|
+
controlType: field.controlType,
|
|
5051
5051
|
value: item[field.name],
|
|
5052
5052
|
dataset: field.dataset,
|
|
5053
5053
|
dataKeyFieldName: field.dataKeyFieldName,
|
|
@@ -5374,15 +5374,12 @@ var DataForm = (props) => {
|
|
|
5374
5374
|
{
|
|
5375
5375
|
className: sectionRow.grow ? "grow" : "",
|
|
5376
5376
|
children: [
|
|
5377
|
-
/* @__PURE__ */ jsx66("div", { children: field }),
|
|
5377
|
+
/* @__PURE__ */ jsx66("div", { children: field.controlType }),
|
|
5378
5378
|
/* @__PURE__ */ jsx66(
|
|
5379
5379
|
InputControl_default,
|
|
5380
5380
|
{
|
|
5381
5381
|
name: field.name,
|
|
5382
|
-
controlType:
|
|
5383
|
-
// @ts-ignore
|
|
5384
|
-
InputControlType_default[field.controlType]
|
|
5385
|
-
),
|
|
5382
|
+
controlType: field.controlType,
|
|
5386
5383
|
value: getNestedProperty2(
|
|
5387
5384
|
formState.inputValues,
|
|
5388
5385
|
field.name
|
package/package.json
CHANGED