@operato/data-grist 7.1.21 → 7.1.26
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/CHANGELOG.md +17 -0
- package/dist/src/data-grid/data-grid-body.js +6 -1
- package/dist/src/data-grid/data-grid-body.js.map +1 -1
- package/dist/src/gutters/gutter-sequence.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/src/data-grid/data-grid-body.ts +5 -1
- package/yarn-error.log +16971 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@operato/data-grist",
|
3
|
-
"version": "7.1.
|
3
|
+
"version": "7.1.26",
|
4
4
|
"description": "User interface for grid (desktop) and list (mobile)",
|
5
5
|
"author": "heartyoh",
|
6
6
|
"main": "dist/index.js",
|
@@ -63,11 +63,11 @@
|
|
63
63
|
"dependencies": {
|
64
64
|
"@material/web": "^2.0.0",
|
65
65
|
"@operato/headroom": "^7.1.1",
|
66
|
-
"@operato/input": "^7.1.
|
67
|
-
"@operato/p13n": "^7.1.
|
68
|
-
"@operato/popup": "^7.1.
|
66
|
+
"@operato/input": "^7.1.26",
|
67
|
+
"@operato/p13n": "^7.1.26",
|
68
|
+
"@operato/popup": "^7.1.26",
|
69
69
|
"@operato/pull-to-refresh": "^7.1.1",
|
70
|
-
"@operato/styles": "^7.1.
|
70
|
+
"@operato/styles": "^7.1.25",
|
71
71
|
"@operato/time-calculator": "^7.1.1",
|
72
72
|
"@operato/utils": "^7.1.1",
|
73
73
|
"i18next": "^23.11.5",
|
@@ -108,5 +108,5 @@
|
|
108
108
|
"prettier --write"
|
109
109
|
]
|
110
110
|
},
|
111
|
-
"gitHead": "
|
111
|
+
"gitHead": "5490ff22eff31a7e2006d4da0af115f980d5945c"
|
112
112
|
}
|
@@ -650,7 +650,11 @@ export class DataGridBody extends LitElement {
|
|
650
650
|
value = parseToNumberOrNull(value)
|
651
651
|
break
|
652
652
|
default:
|
653
|
-
|
653
|
+
try {
|
654
|
+
value = JSON.parse(value)
|
655
|
+
} catch (err) {
|
656
|
+
value = value
|
657
|
+
}
|
654
658
|
}
|
655
659
|
|
656
660
|
if (targetColumn && !targetColumn.gutterName && editable) {
|