@visns-studio/visns-components 4.10.16 → 4.10.18
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.
|
|
79
|
+
"version": "4.10.18",
|
|
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,
|
|
@@ -2057,7 +2056,7 @@ function Field({
|
|
|
2057
2056
|
</button>
|
|
2058
2057
|
</li>
|
|
2059
2058
|
</ul>
|
|
2060
|
-
{(canvasUrl || inputValue
|
|
2059
|
+
{(canvasUrl || inputValue?.state) && (
|
|
2061
2060
|
<SketchField
|
|
2062
2061
|
ref={sketchRef}
|
|
2063
2062
|
width={740}
|
|
@@ -2067,7 +2066,7 @@ function Field({
|
|
|
2067
2066
|
lineWidth={lineWidth}
|
|
2068
2067
|
className={styles.drawcontainer}
|
|
2069
2068
|
backgroundImage={canvasUrl}
|
|
2070
|
-
defaultValue={inputValue
|
|
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
|
-
|
|
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
|
-
|
|
1633
|
-
);
|
|
1631
|
+
// excludedKeywords.push(
|
|
1632
|
+
// 'checkbox'
|
|
1633
|
+
// );
|
|
1634
1634
|
}
|
|
1635
1635
|
return !excludedKeywords.some(
|
|
1636
1636
|
(
|