@uniformdev/canvas-react 19.5.1-alpha.22 → 19.6.0

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.esm.js CHANGED
@@ -561,7 +561,7 @@ var UniformText = ({
561
561
  ref: elementRef,
562
562
  "data-uniform-component-id": componentData == null ? void 0 : componentData._id,
563
563
  "data-uniform-parameter-id": parameterId,
564
- "data-uniform-parameter-value": value,
564
+ "data-uniform-parameter-value": value != null ? value : "",
565
565
  "data-uniform-parameter-type": "text",
566
566
  "data-uniform-is-multiline": isMultiline,
567
567
  "data-uniform-placeholder": placeholder,
package/dist/index.js CHANGED
@@ -589,7 +589,7 @@ var UniformText = ({
589
589
  ref: elementRef,
590
590
  "data-uniform-component-id": componentData == null ? void 0 : componentData._id,
591
591
  "data-uniform-parameter-id": parameterId,
592
- "data-uniform-parameter-value": value,
592
+ "data-uniform-parameter-value": value != null ? value : "",
593
593
  "data-uniform-parameter-type": "text",
594
594
  "data-uniform-is-multiline": isMultiline,
595
595
  "data-uniform-placeholder": placeholder,
package/dist/index.mjs CHANGED
@@ -561,7 +561,7 @@ var UniformText = ({
561
561
  ref: elementRef,
562
562
  "data-uniform-component-id": componentData == null ? void 0 : componentData._id,
563
563
  "data-uniform-parameter-id": parameterId,
564
- "data-uniform-parameter-value": value,
564
+ "data-uniform-parameter-value": value != null ? value : "",
565
565
  "data-uniform-parameter-type": "text",
566
566
  "data-uniform-is-multiline": isMultiline,
567
567
  "data-uniform-placeholder": placeholder,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-react",
3
- "version": "19.5.1-alpha.22+5b4a94102",
3
+ "version": "19.6.0",
4
4
  "description": "React SDK for Uniform Canvas",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -24,9 +24,9 @@
24
24
  "document": "api-extractor run --local"
25
25
  },
26
26
  "dependencies": {
27
- "@uniformdev/canvas": "19.5.1-alpha.22+5b4a94102",
28
- "@uniformdev/context": "19.5.1-alpha.22+5b4a94102",
29
- "@uniformdev/context-react": "19.5.1-alpha.22+5b4a94102"
27
+ "@uniformdev/canvas": "19.6.0",
28
+ "@uniformdev/context": "19.6.0",
29
+ "@uniformdev/context-react": "19.6.0"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "react": ">= 16 || 17 || 18",
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "5b4a94102c83a88c9fbf888a24d633e8abf96b76"
46
+ "gitHead": "a14550dd1caa33fa1310ada642d06ce79bbe4eac"
47
47
  }