@operato/data-grist 0.3.7 → 0.3.14

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.
Files changed (55) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/custom-elements.json +1192 -1181
  3. package/demo/index.html +8 -5
  4. package/dist/src/configure/list-option-builder.js +0 -2
  5. package/dist/src/configure/list-option-builder.js.map +1 -1
  6. package/dist/src/configure/zero-config.d.ts +0 -1
  7. package/dist/src/configure/zero-config.js +0 -2
  8. package/dist/src/configure/zero-config.js.map +1 -1
  9. package/dist/src/data-card/data-card.js +1 -0
  10. package/dist/src/data-card/data-card.js.map +1 -1
  11. package/dist/src/data-card/record-card.js +16 -10
  12. package/dist/src/data-card/record-card.js.map +1 -1
  13. package/dist/src/data-grid/data-grid-field.d.ts +1 -1
  14. package/dist/src/data-grid/data-grid-field.js +3 -1
  15. package/dist/src/data-grid/data-grid-field.js.map +1 -1
  16. package/dist/src/data-grid/data-grid-header.js +4 -2
  17. package/dist/src/data-grid/data-grid-header.js.map +1 -1
  18. package/dist/src/data-grist.js +1 -1
  19. package/dist/src/data-grist.js.map +1 -1
  20. package/dist/src/data-list/data-list.js +1 -0
  21. package/dist/src/data-list/data-list.js.map +1 -1
  22. package/dist/src/editors/registry.d.ts +1 -1
  23. package/dist/src/editors/registry.js.map +1 -1
  24. package/dist/src/filters/filters-form.js +6 -6
  25. package/dist/src/filters/filters-form.js.map +1 -1
  26. package/dist/src/gutters/gutter-button.js +1 -0
  27. package/dist/src/gutters/gutter-button.js.map +1 -1
  28. package/dist/src/gutters/gutter-row-selector.js +1 -0
  29. package/dist/src/gutters/gutter-row-selector.js.map +1 -1
  30. package/dist/src/record-view/record-view-body.d.ts +1 -1
  31. package/dist/src/record-view/record-view-body.js +5 -8
  32. package/dist/src/record-view/record-view-body.js.map +1 -1
  33. package/dist/src/record-view/record-view.d.ts +5 -2
  34. package/dist/src/record-view/record-view.js +99 -41
  35. package/dist/src/record-view/record-view.js.map +1 -1
  36. package/dist/src/types.d.ts +1 -2
  37. package/dist/src/types.js.map +1 -1
  38. package/dist/tsconfig.tsbuildinfo +1 -1
  39. package/package.json +7 -7
  40. package/src/configure/list-option-builder.ts +0 -2
  41. package/src/configure/zero-config.ts +0 -2
  42. package/src/data-card/data-card.ts +2 -0
  43. package/src/data-card/record-card.ts +17 -10
  44. package/src/data-grid/data-grid-field.ts +4 -2
  45. package/src/data-grid/data-grid-header.ts +4 -2
  46. package/src/data-grist.ts +1 -1
  47. package/src/data-list/data-list.ts +2 -0
  48. package/src/editors/registry.ts +2 -3
  49. package/src/filters/filters-form.ts +6 -6
  50. package/src/gutters/gutter-button.ts +3 -2
  51. package/src/gutters/gutter-row-selector.ts +3 -2
  52. package/src/record-view/record-view-body.ts +7 -10
  53. package/src/record-view/record-view.ts +107 -48
  54. package/src/types.ts +1 -2
  55. package/themes/grist-theme.css +2 -22
package/CHANGELOG.md CHANGED
@@ -3,6 +3,67 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [0.3.14](https://github.com/hatiolab/operato/compare/v0.3.13...v0.3.14) (2022-01-16)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * support data-grist record view for thumbnail upload ([5c4f3d9](https://github.com/hatiolab/operato/commit/5c4f3d9e0e58c47619074a287bc6ada6519f11f7))
12
+
13
+
14
+
15
+ ### [0.3.13](https://github.com/hatiolab/operato/compare/v0.3.12...v0.3.13) (2022-01-15)
16
+
17
+ **Note:** Version bump only for package @operato/data-grist
18
+
19
+
20
+
21
+
22
+
23
+ ### [0.3.12](https://github.com/hatiolab/operato/compare/v0.3.11...v0.3.12) (2022-01-15)
24
+
25
+ **Note:** Version bump only for package @operato/data-grist
26
+
27
+
28
+
29
+
30
+
31
+ ### [0.3.11](https://github.com/hatiolab/operato/compare/v0.3.10...v0.3.11) (2022-01-15)
32
+
33
+ **Note:** Version bump only for package @operato/data-grist
34
+
35
+
36
+
37
+
38
+
39
+ ### [0.3.10](https://github.com/hatiolab/operato/compare/v0.3.9...v0.3.10) (2022-01-15)
40
+
41
+
42
+ ### :bug: Bug Fix
43
+
44
+ * avoid exceptions due to undefined data ([4290e19](https://github.com/hatiolab/operato/commit/4290e190f45211ab44ef30244ae680f93e200b85))
45
+ * data-grist record-view ([aa71ec5](https://github.com/hatiolab/operato/commit/aa71ec5600f4dbccd05fcbc249445c73a41d2168))
46
+
47
+
48
+
49
+ ### [0.3.9](https://github.com/hatiolab/operato/compare/v0.3.8...v0.3.9) (2022-01-15)
50
+
51
+
52
+ ### :bug: Bug Fix
53
+
54
+ * move @operato/board/utils to @operato/utils ([06ba865](https://github.com/hatiolab/operato/commit/06ba865ac70bd65166fd20b6d23cc5241d9fca17))
55
+
56
+
57
+
58
+ ### [0.3.8](https://github.com/hatiolab/operato/compare/v0.3.7...v0.3.8) (2022-01-14)
59
+
60
+
61
+ ### :bug: Bug Fix
62
+
63
+ * ox-popup-list ([1e5af96](https://github.com/hatiolab/operato/commit/1e5af96cbd959ffbe7e4b8bf041971bb4e88dd0a))
64
+
65
+
66
+
6
67
  ### [0.3.7](https://github.com/hatiolab/operato/compare/v0.3.6...v0.3.7) (2022-01-09)
7
68
 
8
69
  **Note:** Version bump only for package @operato/data-grist