@dartech/arsenal-ui 1.3.25 → 1.3.26
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/index.js +6 -0
- package/package.json +2 -4
- package/src/interfaces/definition.d.ts +3 -0
- package/src/lib/Property/PropertyValueField/BooleanValueField.d.ts +0 -1
- package/src/lib/Property/PropertyValueField/DateTimeValueField.d.ts +0 -1
- package/src/lib/Property/PropertyValueField/DateValueField.d.ts +0 -1
- package/src/lib/Property/PropertyValueField/JsonValueField.d.ts +0 -1
- package/src/lib/Property/PropertyValueField/TimeValueField.d.ts +0 -1
- package/src/lib/Property/ViewProperty/PropertyItem.d.ts +0 -1
package/index.js
CHANGED
@@ -1513,6 +1513,9 @@ const propertiesArrayToObject = (properties, isGlobalParameter) => {
|
|
1513
1513
|
name,
|
1514
1514
|
isRequired,
|
1515
1515
|
isMultiple,
|
1516
|
+
isVisible,
|
1517
|
+
isFillable,
|
1518
|
+
isEditable,
|
1516
1519
|
sortOrder,
|
1517
1520
|
isEnabled,
|
1518
1521
|
uiSettings,
|
@@ -1531,6 +1534,9 @@ const propertiesArrayToObject = (properties, isGlobalParameter) => {
|
|
1531
1534
|
}, getPropertyValue(Object.assign(Object.assign({}, property), {
|
1532
1535
|
propertyType
|
1533
1536
|
}), isGlobalParameter));
|
1537
|
+
if (isVisible !== undefined) resultProperty.isVisible = isVisible;
|
1538
|
+
if (isFillable !== undefined) resultProperty.isFillable = isFillable;
|
1539
|
+
if (isEditable !== undefined) resultProperty.isEditable = isEditable;
|
1534
1540
|
if ('isViewableInList' in property) {
|
1535
1541
|
resultProperty['isViewableInList'] = property.isViewableInList;
|
1536
1542
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dartech/arsenal-ui",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.26",
|
4
4
|
"author": "DAR",
|
5
5
|
"publishConfig": {
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
@@ -27,9 +27,7 @@
|
|
27
27
|
"classnames": "^2.3.1",
|
28
28
|
"@tanstack/react-query": "^4.24.10",
|
29
29
|
"@rollup/plugin-node-resolve": "13.3.0",
|
30
|
-
"
|
31
|
-
"qs": "6.11.0",
|
32
|
-
"react-ace": "10.1.0"
|
30
|
+
"qs": "6.11.0"
|
33
31
|
},
|
34
32
|
"module": "./index.js",
|
35
33
|
"main": "./index.js",
|