@equinor/apollo-components 3.1.2-beta.0 → 3.1.2-beta.1

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.js CHANGED
@@ -7027,7 +7027,7 @@ function EditableTextFieldCell(context) {
7027
7027
  render: ({ field: { value, ...field }, fieldState: { error } }) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(InlineTextField3, {
7028
7028
  id: context.column.id,
7029
7029
  autoComplete: "none",
7030
- value: String(value),
7030
+ value: String(value ?? ""),
7031
7031
  ...field,
7032
7032
  ...getHelperTextProps({ error })
7033
7033
  })
package/dist/index.mjs CHANGED
@@ -6990,7 +6990,7 @@ function EditableTextFieldCell(context) {
6990
6990
  render: ({ field: { value, ...field }, fieldState: { error } }) => /* @__PURE__ */ jsx26(InlineTextField3, {
6991
6991
  id: context.column.id,
6992
6992
  autoComplete: "none",
6993
- value: String(value),
6993
+ value: String(value ?? ""),
6994
6994
  ...field,
6995
6995
  ...getHelperTextProps({ error })
6996
6996
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/apollo-components",
3
- "version": "3.1.2-beta.0",
3
+ "version": "3.1.2-beta.1",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",