@operato/data-grist 0.3.16 → 0.3.17

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 (80) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/custom-elements.json +939 -927
  3. package/demo/index.html +5 -2
  4. package/dist/src/data-card/record-card.d.ts +0 -2
  5. package/dist/src/data-card/record-card.js +7 -59
  6. package/dist/src/data-card/record-card.js.map +1 -1
  7. package/dist/src/data-grid/data-grid-body.d.ts +7 -1
  8. package/dist/src/data-grid/data-grid-body.js +21 -0
  9. package/dist/src/data-grid/data-grid-body.js.map +1 -1
  10. package/dist/src/data-grid/data-grid.d.ts +1 -0
  11. package/dist/src/data-grid/data-grid.js +6 -0
  12. package/dist/src/data-grid/data-grid.js.map +1 -1
  13. package/dist/src/data-list/record-partial.d.ts +0 -2
  14. package/dist/src/data-list/record-partial.js +7 -58
  15. package/dist/src/data-list/record-partial.js.map +1 -1
  16. package/dist/src/editors/image-editor.d.ts +9 -0
  17. package/dist/src/editors/image-editor.js +53 -0
  18. package/dist/src/editors/image-editor.js.map +1 -0
  19. package/dist/src/editors/image-input.d.ts +7 -0
  20. package/dist/src/editors/image-input.js +31 -0
  21. package/dist/src/editors/image-input.js.map +1 -0
  22. package/dist/src/editors/index.d.ts +1 -0
  23. package/dist/src/editors/index.js +1 -0
  24. package/dist/src/editors/index.js.map +1 -1
  25. package/dist/src/editors/input-editors copy.d.ts +75 -0
  26. package/dist/src/editors/input-editors copy.js +373 -0
  27. package/dist/src/editors/input-editors copy.js.map +1 -0
  28. package/dist/src/editors/input-editors.d.ts +1 -8
  29. package/dist/src/editors/input-editors.js +3 -47
  30. package/dist/src/editors/input-editors.js.map +1 -1
  31. package/dist/src/editors/registry.js +2 -1
  32. package/dist/src/editors/registry.js.map +1 -1
  33. package/dist/src/handlers/record-view-handler.d.ts +1 -2
  34. package/dist/src/handlers/record-view-handler.js +5 -35
  35. package/dist/src/handlers/record-view-handler.js.map +1 -1
  36. package/dist/src/handlers/select-row-toggle.d.ts +1 -1
  37. package/dist/src/handlers/select-row-toggle.js.map +1 -1
  38. package/dist/src/record-view/event-handlers/record-view-body-click-handler.js +3 -1
  39. package/dist/src/record-view/event-handlers/record-view-body-click-handler.js.map +1 -1
  40. package/dist/src/record-view/event-handlers/record-view-body-keydown-handler.js +0 -74
  41. package/dist/src/record-view/event-handlers/record-view-body-keydown-handler.js.map +1 -1
  42. package/dist/src/record-view/index.d.ts +1 -0
  43. package/dist/src/record-view/index.js +1 -0
  44. package/dist/src/record-view/index.js.map +1 -1
  45. package/dist/src/record-view/record-creator copy.d.ts +13 -0
  46. package/dist/src/record-view/record-creator copy.js +90 -0
  47. package/dist/src/record-view/record-creator copy.js.map +1 -0
  48. package/dist/src/record-view/record-creator-backup.d.ts +13 -0
  49. package/dist/src/record-view/record-creator-backup.js +90 -0
  50. package/dist/src/record-view/record-creator-backup.js.map +1 -0
  51. package/dist/src/record-view/record-creator.d.ts +5 -2
  52. package/dist/src/record-view/record-creator.js +69 -14
  53. package/dist/src/record-view/record-creator.js.map +1 -1
  54. package/dist/src/record-view/record-view-body.js +2 -4
  55. package/dist/src/record-view/record-view-body.js.map +1 -1
  56. package/dist/src/record-view/record-view-handler.d.ts +9 -0
  57. package/dist/src/record-view/record-view-handler.js +57 -0
  58. package/dist/src/record-view/record-view-handler.js.map +1 -0
  59. package/dist/src/record-view/record-view.d.ts +2 -3
  60. package/dist/src/record-view/record-view.js +11 -61
  61. package/dist/src/record-view/record-view.js.map +1 -1
  62. package/dist/tsconfig.tsbuildinfo +1 -1
  63. package/package.json +7 -7
  64. package/src/data-card/record-card.ts +14 -74
  65. package/src/data-grid/data-grid-body.ts +38 -1
  66. package/src/data-grid/data-grid.ts +12 -0
  67. package/src/data-list/record-partial.ts +14 -73
  68. package/src/editors/image-input.ts +29 -0
  69. package/src/editors/index.ts +1 -0
  70. package/src/editors/input-editors.ts +5 -48
  71. package/src/editors/registry.ts +1 -1
  72. package/src/handlers/record-view-handler.ts +8 -44
  73. package/src/handlers/select-row-toggle.ts +1 -2
  74. package/src/record-view/event-handlers/record-view-body-click-handler.ts +3 -1
  75. package/src/record-view/event-handlers/record-view-body-keydown-handler.ts +0 -89
  76. package/src/record-view/index.ts +1 -0
  77. package/src/record-view/record-creator.ts +85 -16
  78. package/src/record-view/record-view-body.ts +2 -4
  79. package/src/record-view/record-view-handler.ts +86 -0
  80. package/src/record-view/record-view.ts +12 -62
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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.17](https://github.com/hatiolab/operato/compare/v0.3.16...v0.3.17) (2022-01-20)
7
+
8
+
9
+ ### :rocket: New Features
10
+
11
+ * @operato/data-grist/record-view for grid/list/card ([1a8a002](https://github.com/hatiolab/operato/commit/1a8a00223c8f5b46685297237e4c6937c10defac))
12
+ * added @operato/input/ox-input-image component ([5389de3](https://github.com/hatiolab/operato/commit/5389de312c072283e17b192f6d59597c81ebaf0c))
13
+
14
+
15
+
6
16
  ### [0.3.16](https://github.com/hatiolab/operato/compare/v0.3.15...v0.3.16) (2022-01-19)
7
17
 
8
18