@visns-studio/visns-components 4.10.16 → 4.10.17

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/package.json CHANGED
@@ -76,7 +76,7 @@
76
76
  "react-dom": "^17.0.0 || ^18.0.0"
77
77
  },
78
78
  "name": "@visns-studio/visns-components",
79
- "version": "4.10.16",
79
+ "version": "4.10.17",
80
80
  "description": "Various packages to assist in the development of our Custom Applications.",
81
81
  "main": "src/index.js",
82
82
  "files": [
@@ -16,7 +16,6 @@ import {
16
16
  ChevronRight,
17
17
  Circle,
18
18
  CircleFill,
19
- CirclePlus,
20
19
  CloudDownload,
21
20
  Minus,
22
21
  ArrowBack,
@@ -2067,7 +2066,7 @@ function Field({
2067
2066
  lineWidth={lineWidth}
2068
2067
  className={styles.drawcontainer}
2069
2068
  backgroundImage={canvasUrl}
2070
- defaultValue={inputValue.state || null}
2069
+ defaultValue={inputValue?.state || null}
2071
2070
  />
2072
2071
  )}
2073
2072
  </div>
@@ -1491,9 +1491,9 @@ function GenericFormBuilder({ setting, urlParam, userProfile }) {
1491
1491
  dataField.type ===
1492
1492
  'table_text'
1493
1493
  ) {
1494
- excludedKeywords.push(
1495
- 'checkbox'
1496
- );
1494
+ // excludedKeywords.push(
1495
+ // 'checkbox'
1496
+ // );
1497
1497
  }
1498
1498
  return !excludedKeywords.some(
1499
1499
  (
@@ -1628,9 +1628,9 @@ function GenericFormBuilder({ setting, urlParam, userProfile }) {
1628
1628
  dataField.type ===
1629
1629
  'table_text'
1630
1630
  ) {
1631
- excludedKeywords.push(
1632
- 'checkbox'
1633
- );
1631
+ // excludedKeywords.push(
1632
+ // 'checkbox'
1633
+ // );
1634
1634
  }
1635
1635
  return !excludedKeywords.some(
1636
1636
  (