@operato/data-grist 0.3.17 → 0.3.21

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 +38 -0
  2. package/custom-elements.json +343 -336
  3. package/demo/data-grist-test.html +142 -85
  4. package/demo/index.html +60 -95
  5. package/dist/src/configure/column-builder.js +26 -2
  6. package/dist/src/configure/column-builder.js.map +1 -1
  7. package/dist/src/data-grid/data-grid-header.js +5 -3
  8. package/dist/src/data-grid/data-grid-header.js.map +1 -1
  9. package/dist/src/data-grist.js +5 -0
  10. package/dist/src/data-grist.js.map +1 -1
  11. package/dist/src/filters/filter-checkbox.js +2 -2
  12. package/dist/src/filters/filter-checkbox.js.map +1 -1
  13. package/dist/src/filters/filter-input.js +1 -1
  14. package/dist/src/filters/filter-input.js.map +1 -1
  15. package/dist/src/filters/filter-range-date.js +1 -1
  16. package/dist/src/filters/filter-range-date.js.map +1 -1
  17. package/dist/src/filters/filter-range-number.js +1 -1
  18. package/dist/src/filters/filter-range-number.js.map +1 -1
  19. package/dist/src/filters/filter-select.js +2 -2
  20. package/dist/src/filters/filter-select.js.map +1 -1
  21. package/dist/src/filters/filters-form.d.ts +9 -5
  22. package/dist/src/filters/filters-form.js +63 -15
  23. package/dist/src/filters/filters-form.js.map +1 -1
  24. package/dist/src/record-view/record-view-body.js +4 -2
  25. package/dist/src/record-view/record-view-body.js.map +1 -1
  26. package/dist/src/sorters/sorters-control.js +22 -8
  27. package/dist/src/sorters/sorters-control.js.map +1 -1
  28. package/dist/src/types.d.ts +6 -3
  29. package/dist/src/types.js.map +1 -1
  30. package/dist/tsconfig.tsbuildinfo +1 -1
  31. package/package.json +8 -8
  32. package/src/configure/column-builder.ts +29 -3
  33. package/src/data-grid/data-grid-header.ts +7 -5
  34. package/src/data-grist.ts +8 -0
  35. package/src/filters/filter-checkbox.ts +3 -2
  36. package/src/filters/filter-input.ts +3 -3
  37. package/src/filters/filter-range-date.ts +3 -3
  38. package/src/filters/filter-range-number.ts +3 -3
  39. package/src/filters/filter-select.ts +3 -2
  40. package/src/filters/filters-form.ts +77 -41
  41. package/src/record-view/record-view-body.ts +4 -2
  42. package/src/sorters/sorters-control.ts +22 -8
  43. package/src/types.ts +33 -30
  44. package/dist/src/editors/image-editor.d.ts +0 -9
  45. package/dist/src/editors/image-editor.js +0 -53
  46. package/dist/src/editors/image-editor.js.map +0 -1
  47. package/dist/src/editors/input-editors copy.d.ts +0 -75
  48. package/dist/src/editors/input-editors copy.js +0 -373
  49. package/dist/src/editors/input-editors copy.js.map +0 -1
  50. package/dist/src/record-view/record-creator copy.d.ts +0 -13
  51. package/dist/src/record-view/record-creator copy.js +0 -90
  52. package/dist/src/record-view/record-creator copy.js.map +0 -1
  53. package/dist/src/record-view/record-creator-backup.d.ts +0 -13
  54. package/dist/src/record-view/record-creator-backup.js +0 -90
  55. package/dist/src/record-view/record-creator-backup.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,44 @@
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.21](https://github.com/hatiolab/operato/compare/v0.3.20...v0.3.21) (2022-01-29)
7
+
8
+
9
+ ### :rocket: New Features
10
+
11
+ * i18n module added, shell module started to cover client core part ([a976dad](https://github.com/hatiolab/operato/commit/a976dad6353962e489d8e648af9598b6a51e5ec7))
12
+
13
+
14
+
15
+ ### [0.3.20](https://github.com/hatiolab/operato/compare/v0.3.19...v0.3.20) (2022-01-28)
16
+
17
+ **Note:** Version bump only for package @operato/data-grist
18
+
19
+
20
+
21
+
22
+
23
+ ### [0.3.19](https://github.com/hatiolab/operato/compare/v0.3.18...v0.3.19) (2022-01-25)
24
+
25
+
26
+ ### :bug: Bug Fix
27
+
28
+ * add mandatory option for data-grist column config ([7992412](https://github.com/hatiolab/operato/commit/7992412aa56942cda5d5796daf9e90463dd6cfbc))
29
+ * data-grist data-grist-test.html ([9c89a0a](https://github.com/hatiolab/operato/commit/9c89a0a206f5c7426ad60c62eefdeef24098978a))
30
+ * data-grist sorters-control style ([2414f22](https://github.com/hatiolab/operato/commit/2414f22c9ace1822b5b26ecaafb49c035c0820ef))
31
+ * search type filter not displayed on grid-header ([45b9f96](https://github.com/hatiolab/operato/commit/45b9f96e0c3bedc4bbf27e752ce56db267c31ed9))
32
+
33
+
34
+
35
+ ### [0.3.18](https://github.com/hatiolab/operato/compare/v0.3.17...v0.3.18) (2022-01-23)
36
+
37
+
38
+ ### :rocket: New Features
39
+
40
+ * full-text search in @operato/data-grist ([15c922f](https://github.com/hatiolab/operato/commit/15c922f80e5766d52475d10f3ed5a6c64e4b7291))
41
+
42
+
43
+
6
44
  ### [0.3.17](https://github.com/hatiolab/operato/compare/v0.3.16...v0.3.17) (2022-01-20)
7
45
 
8
46