@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260425055034 → 0.8.1-dev.20260425055809
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 +5 -2
- package/dist/index.mjs +5 -2
- 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: field.controlType,
|
|
6200
|
+
controlType: InputControlType_default[field.controlType],
|
|
6201
6201
|
value: item[field.name],
|
|
6202
6202
|
dataset: field.dataset,
|
|
6203
6203
|
dataKeyFieldName: field.dataKeyFieldName,
|
|
@@ -6527,7 +6527,10 @@ var DataForm = (props) => {
|
|
|
6527
6527
|
InputControl_default,
|
|
6528
6528
|
{
|
|
6529
6529
|
name: field.name,
|
|
6530
|
-
controlType:
|
|
6530
|
+
controlType: (
|
|
6531
|
+
// @ts-ignore
|
|
6532
|
+
InputControlType_default[field.controlType]
|
|
6533
|
+
),
|
|
6531
6534
|
value: getNestedProperty2(
|
|
6532
6535
|
formState.inputValues,
|
|
6533
6536
|
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: field.controlType,
|
|
5050
|
+
controlType: InputControlType_default[field.controlType],
|
|
5051
5051
|
value: item[field.name],
|
|
5052
5052
|
dataset: field.dataset,
|
|
5053
5053
|
dataKeyFieldName: field.dataKeyFieldName,
|
|
@@ -5377,7 +5377,10 @@ var DataForm = (props) => {
|
|
|
5377
5377
|
InputControl_default,
|
|
5378
5378
|
{
|
|
5379
5379
|
name: field.name,
|
|
5380
|
-
controlType:
|
|
5380
|
+
controlType: (
|
|
5381
|
+
// @ts-ignore
|
|
5382
|
+
InputControlType_default[field.controlType]
|
|
5383
|
+
),
|
|
5381
5384
|
value: getNestedProperty2(
|
|
5382
5385
|
formState.inputValues,
|
|
5383
5386
|
field.name
|
package/package.json
CHANGED