@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 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.25",
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
- "@uiw/codemirror-theme-material": "4.21.3",
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",
@@ -41,6 +41,9 @@ export interface Property {
41
41
  isMultiple: boolean;
42
42
  sortOrder: number;
43
43
  isEnabled: boolean;
44
+ isVisible?: boolean;
45
+ isFillable?: boolean;
46
+ isEditable?: boolean;
44
47
  uiSettings: unknown;
45
48
  validationNode: unknown;
46
49
  key?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  label?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  label?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  format: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  label?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props = {
3
2
  name: string;
4
3
  label?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { PropertyUnion } from '../../../interfaces';
3
2
  type PropertyItemProps = {
4
3
  property: PropertyUnion;