@bpmn-io/form-js-playground 1.15.2 → 1.15.3

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.
@@ -69852,7 +69852,10 @@
69852
69852
  if (cellData !== null && typeof cellData === 'object') {
69853
69853
  return JSON.stringify(cellData);
69854
69854
  }
69855
- return `${cellData || ''}`;
69855
+ if (cellData === null || cellData === undefined) {
69856
+ return '';
69857
+ }
69858
+ return `${cellData}`;
69856
69859
  }
69857
69860
  const FILE_PICKER_FILE_KEY_PREFIX = 'files::';
69858
69861
  const type$1 = 'filepicker';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-playground",
3
- "version": "1.15.2",
3
+ "version": "1.15.3",
4
4
  "description": "A form-js playground",
5
5
  "files": [
6
6
  "dist"
@@ -45,8 +45,8 @@
45
45
  "url": "https://github.com/bpmn-io"
46
46
  },
47
47
  "dependencies": {
48
- "@bpmn-io/form-js-editor": "^1.15.2",
49
- "@bpmn-io/form-js-viewer": "^1.15.2",
48
+ "@bpmn-io/form-js-editor": "^1.15.3",
49
+ "@bpmn-io/form-js-viewer": "^1.15.3",
50
50
  "@codemirror/autocomplete": "^6.18.6",
51
51
  "@codemirror/commands": "^6.8.0",
52
52
  "@codemirror/lang-json": "^6.0.1",
@@ -71,5 +71,5 @@
71
71
  "rollup-plugin-css-only": "^4.5.2",
72
72
  "style-loader": "^4.0.0"
73
73
  },
74
- "gitHead": "ef9301a743c083512615b78b8f6aebfca97a92a7"
74
+ "gitHead": "fc508fe3094ca05d50d29721b9304f16061a2478"
75
75
  }