@operato/data-grist 2.0.0-beta.8 → 7.0.0-rc.0

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 (66) hide show
  1. package/.storybook/preview.js +29 -0
  2. package/CHANGELOG.md +203 -0
  3. package/dist/src/data-grid/data-grid-body.js +3 -0
  4. package/dist/src/data-grid/data-grid-body.js.map +1 -1
  5. package/dist/src/data-grid/data-grid-field.d.ts +1 -0
  6. package/dist/src/data-grid/data-grid-field.js +2 -0
  7. package/dist/src/data-grid/data-grid-field.js.map +1 -1
  8. package/dist/src/data-grid/data-grid-header.d.ts +1 -0
  9. package/dist/src/data-grid/data-grid-header.js +3 -11
  10. package/dist/src/data-grid/data-grid-header.js.map +1 -1
  11. package/dist/src/data-grist.js +1 -1
  12. package/dist/src/data-grist.js.map +1 -1
  13. package/dist/src/editors/ox-grist-editor.js +4 -0
  14. package/dist/src/editors/ox-grist-editor.js.map +1 -1
  15. package/dist/src/filters/filter-checkbox.js +8 -1
  16. package/dist/src/filters/filter-checkbox.js.map +1 -1
  17. package/dist/src/personalizer/ox-grist-filter-personalizer.js +3 -2
  18. package/dist/src/personalizer/ox-grist-filter-personalizer.js.map +1 -1
  19. package/dist/src/personalizer/ox-grist-personalizer.js +46 -12
  20. package/dist/src/personalizer/ox-grist-personalizer.js.map +1 -1
  21. package/dist/src/record-view/record-creator.d.ts +1 -0
  22. package/dist/src/record-view/record-creator.js +6 -1
  23. package/dist/src/record-view/record-creator.js.map +1 -1
  24. package/dist/src/record-view/record-view-body.js +14 -2
  25. package/dist/src/record-view/record-view-body.js.map +1 -1
  26. package/dist/src/record-view/record-view.js +2 -3
  27. package/dist/src/record-view/record-view.js.map +1 -1
  28. package/dist/src/renderers/ox-grist-renderer-json5.js +3 -0
  29. package/dist/src/renderers/ox-grist-renderer-json5.js.map +1 -1
  30. package/dist/src/renderers/ox-grist-renderer-text.js +2 -12
  31. package/dist/src/renderers/ox-grist-renderer-text.js.map +1 -1
  32. package/dist/stories/click-event.stories.d.ts +9 -0
  33. package/dist/stories/click-event.stories.js +22 -8
  34. package/dist/stories/click-event.stories.js.map +1 -1
  35. package/dist/stories/creatable-only-column.stories.d.ts +4 -0
  36. package/dist/stories/creatable-only-column.stories.js +3 -2
  37. package/dist/stories/creatable-only-column.stories.js.map +1 -1
  38. package/dist/stories/dynamic-editable.stories.js +36 -0
  39. package/dist/stories/dynamic-editable.stories.js.map +1 -1
  40. package/dist/stories/grid-setting.stories.js +6 -1
  41. package/dist/stories/grid-setting.stories.js.map +1 -1
  42. package/dist/tsconfig.tsbuildinfo +1 -1
  43. package/package.json +14 -12
  44. package/src/data-grid/data-grid-body.ts +4 -0
  45. package/src/data-grid/data-grid-field.ts +3 -1
  46. package/src/data-grid/data-grid-header.ts +4 -12
  47. package/src/data-grist.ts +1 -1
  48. package/src/editors/ox-grist-editor.ts +4 -0
  49. package/src/filters/filter-checkbox.ts +8 -1
  50. package/src/personalizer/ox-grist-filter-personalizer.ts +3 -2
  51. package/src/personalizer/ox-grist-personalizer.ts +46 -12
  52. package/src/record-view/record-creator.ts +3 -1
  53. package/src/record-view/record-view-body.ts +14 -2
  54. package/src/record-view/record-view.ts +2 -3
  55. package/src/renderers/ox-grist-renderer-json5.ts +4 -0
  56. package/src/renderers/ox-grist-renderer-text.ts +2 -14
  57. package/stories/click-event.stories.ts +43 -22
  58. package/stories/creatable-only-column.stories.ts +4 -2
  59. package/stories/dynamic-editable.stories.ts +36 -0
  60. package/stories/grid-setting.stories.ts +6 -1
  61. package/themes/grist-theme.css +0 -2
  62. package/translations/en.json +3 -0
  63. package/translations/ja.json +2 -0
  64. package/translations/ko.json +2 -0
  65. package/translations/ms.json +2 -0
  66. package/translations/zh.json +2 -0
@@ -1,4 +1,6 @@
1
1
  {
2
+ "button.delete": "삭제",
3
+ "button.save": "저장",
2
4
  "label.accumulator_sum": "합계",
3
5
  "label.accumulator_avg": "평균",
4
6
  "label.accumulator_count": "계수",
@@ -1,4 +1,6 @@
1
1
  {
2
+ "button.delete": "padam",
3
+ "button.save": "simpan",
2
4
  "label.accumulator_sum": "Jumlah",
3
5
  "label.accumulator_avg": "Purata",
4
6
  "label.accumulator_count": "Kiraan",
@@ -1,4 +1,6 @@
1
1
  {
2
+ "button.delete": "删除",
3
+ "button.save": "保存",
2
4
  "label.accumulator_sum": "总和",
3
5
  "label.accumulator_avg": "平均",
4
6
  "label.accumulator_count": "计数",