@operato/app 1.0.0-alpha.9 → 1.0.0-beta.10

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 (157) hide show
  1. package/@types/global/index.d.ts +2 -0
  2. package/CHANGELOG.md +642 -15
  3. package/demo/data-grist-test.html +15 -10
  4. package/demo/index.html +1 -10
  5. package/dist/src/filter-renderer/filter-resource-select.d.ts +4 -0
  6. package/dist/src/filter-renderer/filter-resource-select.js +79 -0
  7. package/dist/src/filter-renderer/filter-resource-select.js.map +1 -0
  8. package/dist/src/{grist → filter-renderer}/index.d.ts +0 -0
  9. package/dist/src/filter-renderer/index.js +5 -0
  10. package/dist/src/filter-renderer/index.js.map +1 -0
  11. package/dist/src/grist-editor/index.d.ts +1 -0
  12. package/dist/src/grist-editor/index.js +28 -0
  13. package/dist/src/grist-editor/index.js.map +1 -0
  14. package/dist/src/grist-editor/ox-grist-editor-code.d.ts +7 -0
  15. package/dist/src/grist-editor/ox-grist-editor-code.js +53 -0
  16. package/dist/src/grist-editor/ox-grist-editor-code.js.map +1 -0
  17. package/dist/src/grist-editor/ox-grist-editor-crontab.d.ts +8 -0
  18. package/dist/src/grist-editor/ox-grist-editor-crontab.js +50 -0
  19. package/dist/src/grist-editor/ox-grist-editor-crontab.js.map +1 -0
  20. package/dist/src/grist-editor/ox-grist-editor-json.d.ts +7 -0
  21. package/dist/src/grist-editor/ox-grist-editor-json.js +54 -0
  22. package/dist/src/grist-editor/ox-grist-editor-json.js.map +1 -0
  23. package/dist/src/grist-editor/ox-grist-editor-parameters.d.ts +12 -0
  24. package/dist/src/{grist/parameters-editor.js → grist-editor/ox-grist-editor-parameters.js} +16 -37
  25. package/dist/src/grist-editor/ox-grist-editor-parameters.js.map +1 -0
  26. package/dist/src/grist-editor/ox-grist-editor-partition-keys.d.ts +11 -0
  27. package/dist/src/grist-editor/ox-grist-editor-partition-keys.js +74 -0
  28. package/dist/src/grist-editor/ox-grist-editor-partition-keys.js.map +1 -0
  29. package/dist/src/{grist/code-editor.d.ts → grist-editor/ox-grist-editor-resource-code.d.ts} +2 -2
  30. package/dist/src/{grist/code-editor.js → grist-editor/ox-grist-editor-resource-code.js} +10 -5
  31. package/dist/src/grist-editor/ox-grist-editor-resource-code.js.map +1 -0
  32. package/dist/src/grist-editor/ox-grist-editor-resource-id.d.ts +9 -0
  33. package/dist/src/grist-editor/ox-grist-editor-resource-id.js +72 -0
  34. package/dist/src/grist-editor/ox-grist-editor-resource-id.js.map +1 -0
  35. package/dist/src/grist-editor/ox-grist-editor-resource-object.d.ts +11 -0
  36. package/dist/src/{grist/object-editor.js → grist-editor/ox-grist-editor-resource-object.js} +30 -78
  37. package/dist/src/grist-editor/ox-grist-editor-resource-object.js.map +1 -0
  38. package/dist/src/grist-editor/ox-grist-editor-value-map.d.ts +11 -0
  39. package/dist/src/grist-editor/ox-grist-editor-value-map.js +74 -0
  40. package/dist/src/grist-editor/ox-grist-editor-value-map.js.map +1 -0
  41. package/dist/src/grist-editor/ox-grist-renderer-crontab.d.ts +2 -0
  42. package/dist/src/grist-editor/ox-grist-renderer-crontab.js +26 -0
  43. package/dist/src/grist-editor/ox-grist-renderer-crontab.js.map +1 -0
  44. package/dist/src/grist-editor/ox-grist-renderer-resource-id.d.ts +2 -0
  45. package/dist/src/grist-editor/ox-grist-renderer-resource-id.js +9 -0
  46. package/dist/src/grist-editor/ox-grist-renderer-resource-id.js.map +1 -0
  47. package/dist/src/grist-editor/ox-grist-renderer-resource-object.d.ts +2 -0
  48. package/dist/src/grist-editor/ox-grist-renderer-resource-object.js +22 -0
  49. package/dist/src/grist-editor/ox-grist-renderer-resource-object.js.map +1 -0
  50. package/dist/src/{grist/parameters-editor-builder.d.ts → grist-editor/ox-parameters-builder.d.ts} +1 -1
  51. package/dist/src/{grist/parameters-editor-builder.js → grist-editor/ox-parameters-builder.js} +10 -11
  52. package/dist/src/grist-editor/ox-parameters-builder.js.map +1 -0
  53. package/dist/src/grist-editor/ox-popup-code-input.d.ts +12 -0
  54. package/dist/src/grist-editor/ox-popup-code-input.js +71 -0
  55. package/dist/src/grist-editor/ox-popup-code-input.js.map +1 -0
  56. package/dist/src/grist-editor/ox-popup-crontab-input.d.ts +11 -0
  57. package/dist/src/grist-editor/ox-popup-crontab-input.js +74 -0
  58. package/dist/src/grist-editor/ox-popup-crontab-input.js.map +1 -0
  59. package/dist/src/{grist/parameters-editor-popup.d.ts → grist-editor/ox-popup-parameters-builder.d.ts} +1 -1
  60. package/dist/src/{grist/parameters-editor-popup.js → grist-editor/ox-popup-parameters-builder.js} +15 -15
  61. package/dist/src/grist-editor/ox-popup-parameters-builder.js.map +1 -0
  62. package/dist/src/grist-editor/ox-popup-partition-keys-input.d.ts +12 -0
  63. package/dist/src/grist-editor/ox-popup-partition-keys-input.js +98 -0
  64. package/dist/src/grist-editor/ox-popup-partition-keys-input.js.map +1 -0
  65. package/dist/src/grist-editor/ox-popup-value-map-input.d.ts +12 -0
  66. package/dist/src/grist-editor/ox-popup-value-map-input.js +104 -0
  67. package/dist/src/grist-editor/ox-popup-value-map-input.js.map +1 -0
  68. package/dist/src/{grist/id-selector.d.ts → grist-editor/ox-selector-resource-id.d.ts} +4 -3
  69. package/dist/src/{grist/id-selector.js → grist-editor/ox-selector-resource-id.js} +23 -18
  70. package/dist/src/grist-editor/ox-selector-resource-id.js.map +1 -0
  71. package/dist/src/{grist/object-selector.d.ts → grist-editor/ox-selector-resource-object.d.ts} +4 -3
  72. package/dist/src/{grist/object-selector.js → grist-editor/ox-selector-resource-object.js} +30 -25
  73. package/dist/src/grist-editor/ox-selector-resource-object.js.map +1 -0
  74. package/dist/src/index.d.ts +4 -1
  75. package/dist/src/index.js +4 -1
  76. package/dist/src/index.js.map +1 -1
  77. package/dist/src/input/index.d.ts +3 -0
  78. package/dist/src/input/index.js +4 -0
  79. package/dist/src/input/index.js.map +1 -0
  80. package/dist/src/input/ox-input-background-pattern.d.ts +1 -1
  81. package/dist/src/input/ox-input-background-pattern.js +6 -3
  82. package/dist/src/input/ox-input-background-pattern.js.map +1 -1
  83. package/dist/src/input/ox-input-fill-style.d.ts +2 -3
  84. package/dist/src/input/ox-input-fill-style.js +2 -2
  85. package/dist/src/input/ox-input-fill-style.js.map +1 -1
  86. package/dist/src/input/ox-input-graphql.d.ts +36 -0
  87. package/dist/src/input/ox-input-graphql.js +161 -0
  88. package/dist/src/input/ox-input-graphql.js.map +1 -0
  89. package/dist/src/input/ox-input-resource.d.ts +36 -0
  90. package/dist/src/input/ox-input-resource.js +161 -0
  91. package/dist/src/input/ox-input-resource.js.map +1 -0
  92. package/dist/src/property-editor/index.d.ts +24 -0
  93. package/dist/src/property-editor/index.js +58 -0
  94. package/dist/src/property-editor/index.js.map +1 -0
  95. package/dist/src/property-editor/ox-property-editor-graphql.d.ts +5 -0
  96. package/dist/src/property-editor/ox-property-editor-graphql.js +15 -0
  97. package/dist/src/property-editor/ox-property-editor-graphql.js.map +1 -0
  98. package/dist/tsconfig.tsbuildinfo +1 -1
  99. package/package.json +45 -22
  100. package/src/filter-renderer/filter-resource-select.ts +95 -0
  101. package/src/filter-renderer/index.ts +6 -0
  102. package/src/grist-editor/index.ts +30 -0
  103. package/src/grist-editor/ox-grist-editor-code.ts +62 -0
  104. package/src/grist-editor/ox-grist-editor-crontab.ts +62 -0
  105. package/src/grist-editor/ox-grist-editor-json.ts +62 -0
  106. package/src/{grist/parameters-editor.ts → grist-editor/ox-grist-editor-parameters.ts} +13 -26
  107. package/src/grist-editor/ox-grist-editor-partition-keys.ts +86 -0
  108. package/src/{grist/code-editor.ts → grist-editor/ox-grist-editor-resource-code.ts} +4 -5
  109. package/src/grist-editor/ox-grist-editor-resource-id.ts +85 -0
  110. package/src/{grist/object-editor.ts → grist-editor/ox-grist-editor-resource-object.ts} +28 -63
  111. package/src/grist-editor/ox-grist-editor-value-map.ts +86 -0
  112. package/src/grist-editor/ox-grist-renderer-crontab.ts +30 -0
  113. package/src/{grist/id-renderer.ts → grist-editor/ox-grist-renderer-resource-id.ts} +4 -3
  114. package/src/grist-editor/ox-grist-renderer-resource-object.ts +26 -0
  115. package/src/{grist/parameters-editor-builder.ts → grist-editor/ox-parameters-builder.ts} +4 -6
  116. package/src/grist-editor/ox-popup-code-input.ts +65 -0
  117. package/src/grist-editor/ox-popup-crontab-input.ts +74 -0
  118. package/src/{grist/parameters-editor-popup.ts → grist-editor/ox-popup-parameters-builder.ts} +5 -5
  119. package/src/grist-editor/ox-popup-partition-keys-input.ts +95 -0
  120. package/src/grist-editor/ox-popup-value-map-input.ts +101 -0
  121. package/src/{grist/id-selector.ts → grist-editor/ox-selector-resource-id.ts} +12 -6
  122. package/src/{grist/object-selector.ts → grist-editor/ox-selector-resource-object.ts} +15 -9
  123. package/src/index.ts +4 -1
  124. package/src/input/index.ts +3 -0
  125. package/src/input/ox-input-background-pattern.ts +6 -3
  126. package/src/input/ox-input-fill-style.ts +3 -4
  127. package/src/input/ox-input-graphql.ts +169 -0
  128. package/src/input/ox-input-resource.ts +169 -0
  129. package/src/property-editor/index.ts +59 -0
  130. package/src/property-editor/ox-property-editor-graphql.ts +12 -0
  131. package/themes/app-theme.css +142 -0
  132. package/themes/grist-theme.css +194 -0
  133. package/themes/oops-theme.css +26 -0
  134. package/themes/report-theme.css +47 -0
  135. package/dist/src/grist/code-editor.js.map +0 -1
  136. package/dist/src/grist/id-input.d.ts +0 -19
  137. package/dist/src/grist/id-input.js +0 -119
  138. package/dist/src/grist/id-input.js.map +0 -1
  139. package/dist/src/grist/id-renderer.d.ts +0 -2
  140. package/dist/src/grist/id-renderer.js +0 -9
  141. package/dist/src/grist/id-renderer.js.map +0 -1
  142. package/dist/src/grist/id-selector.js.map +0 -1
  143. package/dist/src/grist/index.js +0 -11
  144. package/dist/src/grist/index.js.map +0 -1
  145. package/dist/src/grist/object-editor.d.ts +0 -18
  146. package/dist/src/grist/object-editor.js.map +0 -1
  147. package/dist/src/grist/object-selector.js.map +0 -1
  148. package/dist/src/grist/parameters-editor-builder.js.map +0 -1
  149. package/dist/src/grist/parameters-editor-popup.js.map +0 -1
  150. package/dist/src/grist/parameters-editor.d.ts +0 -19
  151. package/dist/src/grist/parameters-editor.js.map +0 -1
  152. package/dist/src/input/ox-input-color-gradient.d.ts +0 -25
  153. package/dist/src/input/ox-input-color-gradient.js +0 -318
  154. package/dist/src/input/ox-input-color-gradient.js.map +0 -1
  155. package/src/grist/id-input.ts +0 -135
  156. package/src/grist/index.ts +0 -13
  157. package/src/input/ox-input-color-gradient.ts +0 -341
package/CHANGELOG.md CHANGED
@@ -3,6 +3,249 @@
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
+ ## [1.0.0-beta.10](https://github.com/hatiolab/operato/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2022-04-28)
7
+
8
+ **Note:** Version bump only for package @operato/app
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.0.0-beta.9](https://github.com/hatiolab/operato/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2022-04-28)
15
+
16
+ **Note:** Version bump only for package @operato/app
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.0.0-beta.8](https://github.com/hatiolab/operato/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2022-04-27)
23
+
24
+ **Note:** Version bump only for package @operato/app
25
+
26
+
27
+
28
+
29
+
30
+ ## [1.0.0-beta.7](https://github.com/hatiolab/operato/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2022-04-24)
31
+
32
+ **Note:** Version bump only for package @operato/app
33
+
34
+
35
+
36
+
37
+
38
+ ## [1.0.0-beta.6](https://github.com/hatiolab/operato/compare/v0.4.5...v1.0.0-beta.6) (2022-04-22)
39
+
40
+ ## [1.0.0-beta.5](https://github.com/hatiolab/operato/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-04-18)
41
+
42
+ ## [1.0.0-beta.4](https://github.com/hatiolab/operato/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-04-14)
43
+
44
+
45
+ ### :rocket: New Features
46
+
47
+ * resource-object filter ([c70a727](https://github.com/hatiolab/operato/commit/c70a7270d9b28e51d78d3831bd2f563160d010ef))
48
+ * search for relation fields ([7dc99fd](https://github.com/hatiolab/operato/commit/7dc99fd6df1a96faab4f44ea65c3837934fabc5b))
49
+
50
+ ## [1.0.0-beta.3](https://github.com/hatiolab/operato/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2022-04-12)
51
+
52
+ ## [1.0.0-beta.2](https://github.com/hatiolab/operato/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2022-04-12)
53
+
54
+
55
+ ### :rocket: New Features
56
+
57
+ * add 'empty' button into ox-grist-editor-resource-object ([d739d23](https://github.com/hatiolab/operato/commit/d739d23686ea9487e2b9d887c451290638d3633e))
58
+
59
+ ## [1.0.0-beta.1](https://github.com/hatiolab/operato/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2022-04-11)
60
+
61
+ ## [1.0.0-beta.0](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.53...v1.0.0-beta.0) (2022-04-10)
62
+
63
+ ## [1.0.0-alpha.53](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.52...v1.0.0-alpha.53) (2022-04-08)
64
+
65
+ ## [1.0.0-alpha.52](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.51...v1.0.0-alpha.52) (2022-04-08)
66
+
67
+ ## [1.0.0-alpha.51](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.50...v1.0.0-alpha.51) (2022-04-05)
68
+
69
+
70
+ ### :bug: Bug Fix
71
+
72
+ * crontab translation ([e87b431](https://github.com/hatiolab/operato/commit/e87b43145f5d01c4b71c4498578b4b172c50ae03))
73
+ * export ox-grist-renderer-crontab.js ([3615720](https://github.com/hatiolab/operato/commit/3615720d119526a17272db2369bd80340b6cbc31))
74
+
75
+ ## [1.0.0-alpha.50](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2022-04-04)
76
+
77
+ ## [1.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2022-04-04)
78
+
79
+
80
+ ### :bug: Bug Fix
81
+
82
+ * lit@2.2.1 ([6707752](https://github.com/hatiolab/operato/commit/6707752907d24f7ecbe248cba18a4b18cfda282f))
83
+
84
+
85
+ ### :rocket: New Features
86
+
87
+ * translation crontab for ox-grist-renderer-crontab ([c13d6ef](https://github.com/hatiolab/operato/commit/c13d6efab9ff02ceb4b4d244455a480070a80a3e))
88
+
89
+ ## [1.0.0-alpha.48](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.47...v1.0.0-alpha.48) (2022-04-03)
90
+
91
+
92
+ ### :rocket: New Features
93
+
94
+ * support copy and paste in data-grid ([9dd686f](https://github.com/hatiolab/operato/commit/9dd686f6817500863a1c36140ef01b39fcafef9f))
95
+
96
+ ## [1.0.0-alpha.47](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.46...v1.0.0-alpha.47) (2022-04-02)
97
+
98
+ ## [1.0.0-alpha.46](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.45...v1.0.0-alpha.46) (2022-04-02)
99
+
100
+ ## [1.0.0-alpha.45](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.44...v1.0.0-alpha.45) (2022-03-31)
101
+
102
+ ## [1.0.0-alpha.44](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.43...v1.0.0-alpha.44) (2022-03-31)
103
+
104
+ ## [1.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.42...v1.0.0-alpha.43) (2022-03-30)
105
+
106
+ ## [1.0.0-alpha.42](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.41...v1.0.0-alpha.42) (2022-03-29)
107
+
108
+ ## [1.0.0-alpha.41](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.40...v1.0.0-alpha.41) (2022-03-27)
109
+
110
+ ## [1.0.0-alpha.40](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.39...v1.0.0-alpha.40) (2022-03-26)
111
+
112
+ ## [1.0.0-alpha.39](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.38...v1.0.0-alpha.39) (2022-03-25)
113
+
114
+ ## [1.0.0-alpha.38](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.37...v1.0.0-alpha.38) (2022-03-25)
115
+
116
+ ## [1.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.36...v1.0.0-alpha.37) (2022-03-25)
117
+
118
+ ## [1.0.0-alpha.36](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.35...v1.0.0-alpha.36) (2022-03-21)
119
+
120
+ ## [1.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) (2022-03-21)
121
+
122
+
123
+ ### :bug: Bug Fix
124
+
125
+ * prevent text overflow of grist-renderers ([73e7538](https://github.com/hatiolab/operato/commit/73e7538f9a0c8941689fefd3d4212529a75c413d))
126
+
127
+ ## [1.0.0-alpha.34](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) (2022-03-20)
128
+
129
+ ## [1.0.0-alpha.33](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.32...v1.0.0-alpha.33) (2022-03-19)
130
+
131
+ ## [1.0.0-alpha.32](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2022-03-19)
132
+
133
+
134
+ ### :bug: Bug Fix
135
+
136
+ * typo ([2f2e3fc](https://github.com/hatiolab/operato/commit/2f2e3fcce771dcbfe2f1d09cbd25638094a6dc99))
137
+
138
+ ## [1.0.0-alpha.31](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.30...v1.0.0-alpha.31) (2022-03-19)
139
+
140
+
141
+ ### :bug: Bug Fix
142
+
143
+ * ox-grist-renderer support class type renderer (refer ox-grist-renderer-progress) ([ad7c8e1](https://github.com/hatiolab/operato/commit/ad7c8e1b453d19af9daa13ae4eb7c2059d85dfbb))
144
+ * partition-keys related ui components ([c21b4d2](https://github.com/hatiolab/operato/commit/c21b4d292ca4a6d6b4bf774a570dbabd349528fc))
145
+
146
+ ## [1.0.0-alpha.30](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.29...v1.0.0-alpha.30) (2022-03-18)
147
+
148
+ ## [1.0.0-alpha.29](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2022-03-17)
149
+
150
+
151
+ ### :bug: Bug Fix
152
+
153
+ * datalist in ox-input-partition-keys ([a25e3a6](https://github.com/hatiolab/operato/commit/a25e3a66cf5f7a25bca057be90ef336b29e915a7))
154
+ * typo ([1f8f2da](https://github.com/hatiolab/operato/commit/1f8f2da3b4780df9f747065a457f6cafb5d9e9cf))
155
+
156
+ ## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
157
+
158
+
159
+ ### :rocket: New Features
160
+
161
+ * add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
162
+
163
+ ## [1.0.0-alpha.26](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2022-03-17)
164
+
165
+ ## [1.0.0-alpha.25](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2022-03-17)
166
+
167
+
168
+ ### :bug: Bug Fix
169
+
170
+ * typo ([907aceb](https://github.com/hatiolab/operato/commit/907acebaf882613991bce064efea435c2d148543))
171
+
172
+ ## [1.0.0-alpha.24](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2022-03-17)
173
+
174
+
175
+ ### :bug: Bug Fix
176
+
177
+ * refactoring grist-editor, property-editor and input ([bdc3197](https://github.com/hatiolab/operato/commit/bdc31977d148c80a3ac0bea4b33160bac277df1e))
178
+ * refactoring grist-editor, property-editor and input ([ea7431a](https://github.com/hatiolab/operato/commit/ea7431a5e2dfd96ef392c1905e9622df7c2ef88c))
179
+
180
+ ## [1.0.0-alpha.23](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2022-03-17)
181
+
182
+ ## [1.0.0-alpha.22](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2022-03-17)
183
+
184
+ ## [1.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2022-03-16)
185
+
186
+
187
+ ### :rocket: New Features
188
+
189
+ * @operato/ccp module added ([f08ba5a](https://github.com/hatiolab/operato/commit/f08ba5a464c04b7fb132c6f18de975997087846a))
190
+
191
+ ## [1.0.0-alpha.20](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2022-03-15)
192
+
193
+ ## [1.0.0-alpha.19](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2022-03-14)
194
+
195
+
196
+ ### :bug: Bug Fix
197
+
198
+ * image-selector in ox-input-background-pattern ([b88c6e1](https://github.com/hatiolab/operato/commit/b88c6e141d5d636bff4b29fbae3c790d80b641bc))
199
+
200
+ ## [1.0.0-alpha.18](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2022-03-14)
201
+
202
+
203
+ ### :bug: Bug Fix
204
+
205
+ * missing font module import ([a5348cf](https://github.com/hatiolab/operato/commit/a5348cf0d567927f18bf31bba09994f3fbf742f6))
206
+
207
+ ## [1.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2022-03-13)
208
+
209
+
210
+ ### :bug: Bug Fix
211
+
212
+ * some missings in font module ([6c1ba6d](https://github.com/hatiolab/operato/commit/6c1ba6d89b8ff75b03c6b4ce813f5d3d09c7437b))
213
+
214
+ ## [1.0.0-alpha.16](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2022-03-13)
215
+
216
+
217
+ ### :bug: Bug Fix
218
+
219
+ * downgrad graphql related libraries ([d26b80f](https://github.com/hatiolab/operato/commit/d26b80fc31b10bfd3bf31b6473151af52f857c66))
220
+
221
+ ## [1.0.0-alpha.15](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2022-03-13)
222
+
223
+
224
+ ### :rocket: New Features
225
+
226
+ * migrate input, property-editor from things-factory ([dbd5e73](https://github.com/hatiolab/operato/commit/dbd5e73eac328e72c4bb7abd113a819532bc894d))
227
+
228
+ ## [1.0.0-alpha.14](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2022-03-13)
229
+
230
+ ## [1.0.0-alpha.13](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2022-03-13)
231
+
232
+ ## [1.0.0-alpha.12](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) (2022-03-13)
233
+
234
+
235
+ ### :rocket: New Features
236
+
237
+ * migrate input, property-editor from things-factory ([4800d85](https://github.com/hatiolab/operato/commit/4800d859473bf623325233a7f2af851e5d093dcb))
238
+
239
+ ## [1.0.0-alpha.11](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) (2022-03-12)
240
+
241
+
242
+ ### :bug: Bug Fix
243
+
244
+ * code-editor for grist ([cb80692](https://github.com/hatiolab/operato/commit/cb80692039e41d7b94b98ac1845822563e179e24))
245
+ * ox-property-editor-attachment-selector ([a1a2d20](https://github.com/hatiolab/operato/commit/a1a2d20640746c891248fdb729097614676c9cff))
246
+
247
+ ## [1.0.0-alpha.10](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2022-03-12)
248
+
6
249
  ## [1.0.0-alpha.9](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) (2022-03-12)
7
250
 
8
251
 
@@ -10,9 +253,40 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
10
253
 
11
254
  * settled concept for input, property-editor, grist-editor, so on ([0c9e1d0](https://github.com/hatiolab/operato/commit/0c9e1d054c7aef5d965868242cf471667af7a3c3))
12
255
 
256
+ ## [1.0.0-alpha.8](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2022-03-11)
13
257
 
258
+ ## [1.0.0-alpha.7](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2022-03-11)
14
259
 
15
- ## [1.0.0-alpha.8](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2022-03-11)
260
+ ## [1.0.0-alpha.6](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2022-03-11)
261
+
262
+ ## [1.0.0-alpha.5](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2022-03-11)
263
+
264
+
265
+ ### :bug: Bug Fix
266
+
267
+ * migrate parameter-editor from things-factory ([019a30d](https://github.com/hatiolab/operato/commit/019a30df6fd4c8a273d4194d13f5784ed6f8d956))
268
+
269
+ ## [1.0.0-alpha.4](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2022-03-11)
270
+
271
+
272
+ ### :rocket: New Features
273
+
274
+ * start migration grist editors from things-factory ([8b31c7f](https://github.com/hatiolab/operato/commit/8b31c7f00ae9b32e68f6860c559a768c3d456704))
275
+
276
+ ## [1.0.0-alpha.3](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2022-03-10)
277
+
278
+ ## [1.0.0-alpha.2](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2022-03-10)
279
+
280
+ ## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09)
281
+
282
+
283
+ ### :rocket: New Features
284
+
285
+ * 1.0-alpha ([42f87cf](https://github.com/hatiolab/operato/commit/42f87cf6a3cef0381db91ecb1179e63c64c01370))
286
+
287
+
288
+
289
+ ## [1.0.0-beta.5](https://github.com/hatiolab/operato/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-04-18)
16
290
 
17
291
  **Note:** Version bump only for package @operato/app
18
292
 
@@ -20,7 +294,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
20
294
 
21
295
 
22
296
 
23
- ## [1.0.0-alpha.7](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2022-03-11)
297
+ ## [1.0.0-beta.4](https://github.com/hatiolab/operato/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-04-14)
298
+
299
+
300
+ ### :rocket: New Features
301
+
302
+ * resource-object filter ([c70a727](https://github.com/hatiolab/operato/commit/c70a7270d9b28e51d78d3831bd2f563160d010ef))
303
+ * search for relation fields ([7dc99fd](https://github.com/hatiolab/operato/commit/7dc99fd6df1a96faab4f44ea65c3837934fabc5b))
304
+
305
+
306
+
307
+ ## [1.0.0-beta.3](https://github.com/hatiolab/operato/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2022-04-12)
24
308
 
25
309
  **Note:** Version bump only for package @operato/app
26
310
 
@@ -28,7 +312,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
28
312
 
29
313
 
30
314
 
31
- ## [1.0.0-alpha.6](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2022-03-11)
315
+ ## [1.0.0-beta.2](https://github.com/hatiolab/operato/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2022-04-12)
316
+
317
+
318
+ ### :rocket: New Features
319
+
320
+ * add 'empty' button into ox-grist-editor-resource-object ([d739d23](https://github.com/hatiolab/operato/commit/d739d23686ea9487e2b9d887c451290638d3633e))
321
+
322
+
323
+
324
+ ## [1.0.0-beta.1](https://github.com/hatiolab/operato/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2022-04-11)
32
325
 
33
326
  **Note:** Version bump only for package @operato/app
34
327
 
@@ -36,21 +329,177 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
36
329
 
37
330
 
38
331
 
39
- ## [1.0.0-alpha.5](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2022-03-11)
332
+ ## [1.0.0-beta.0](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.53...v1.0.0-beta.0) (2022-04-10)
333
+
334
+ **Note:** Version bump only for package @operato/app
335
+
336
+
337
+
338
+
339
+
340
+ ## [1.0.0-alpha.53](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.52...v1.0.0-alpha.53) (2022-04-08)
341
+
342
+ **Note:** Version bump only for package @operato/app
343
+
344
+
345
+
346
+
347
+
348
+ ## [1.0.0-alpha.52](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.51...v1.0.0-alpha.52) (2022-04-08)
349
+
350
+ **Note:** Version bump only for package @operato/app
351
+
352
+
353
+
354
+
355
+
356
+ ## [1.0.0-alpha.51](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.50...v1.0.0-alpha.51) (2022-04-05)
357
+
358
+
359
+ ### :bug: Bug Fix
360
+
361
+ * crontab translation ([e87b431](https://github.com/hatiolab/operato/commit/e87b43145f5d01c4b71c4498578b4b172c50ae03))
362
+ * export ox-grist-renderer-crontab.js ([3615720](https://github.com/hatiolab/operato/commit/3615720d119526a17272db2369bd80340b6cbc31))
363
+
364
+
365
+
366
+ ## [1.0.0-alpha.50](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2022-04-04)
367
+
368
+ **Note:** Version bump only for package @operato/app
369
+
370
+
371
+
372
+
373
+
374
+ ## [1.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2022-04-04)
375
+
376
+
377
+ ### :bug: Bug Fix
378
+
379
+ * lit@2.2.1 ([6707752](https://github.com/hatiolab/operato/commit/6707752907d24f7ecbe248cba18a4b18cfda282f))
40
380
 
41
381
 
42
382
  ### :rocket: New Features
43
383
 
44
- * start migration grist editors from things-factory ([8b31c7f](https://github.com/hatiolab/operato/commit/8b31c7f00ae9b32e68f6860c559a768c3d456704))
384
+ * translation crontab for ox-grist-renderer-crontab ([c13d6ef](https://github.com/hatiolab/operato/commit/c13d6efab9ff02ceb4b4d244455a480070a80a3e))
385
+
386
+
387
+
388
+ ## [1.0.0-alpha.48](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.47...v1.0.0-alpha.48) (2022-04-03)
389
+
390
+
391
+ ### :rocket: New Features
392
+
393
+ * support copy and paste in data-grid ([9dd686f](https://github.com/hatiolab/operato/commit/9dd686f6817500863a1c36140ef01b39fcafef9f))
394
+
395
+
396
+
397
+ ## [1.0.0-alpha.47](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.46...v1.0.0-alpha.47) (2022-04-02)
398
+
399
+ **Note:** Version bump only for package @operato/app
400
+
401
+
402
+
403
+
404
+
405
+ ## [1.0.0-alpha.46](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.45...v1.0.0-alpha.46) (2022-04-02)
406
+
407
+ **Note:** Version bump only for package @operato/app
408
+
409
+
410
+
411
+
412
+
413
+ ## [1.0.0-alpha.45](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.44...v1.0.0-alpha.45) (2022-03-31)
414
+
415
+ **Note:** Version bump only for package @operato/app
416
+
417
+
418
+
419
+
420
+
421
+ ## [1.0.0-alpha.44](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.43...v1.0.0-alpha.44) (2022-03-31)
422
+
423
+ **Note:** Version bump only for package @operato/app
424
+
425
+
426
+
427
+
428
+
429
+ ## [1.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.42...v1.0.0-alpha.43) (2022-03-30)
430
+
431
+ **Note:** Version bump only for package @operato/app
432
+
433
+
434
+
435
+
436
+
437
+ ## [1.0.0-alpha.42](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.41...v1.0.0-alpha.42) (2022-03-29)
438
+
439
+ **Note:** Version bump only for package @operato/app
440
+
441
+
442
+
443
+
444
+
445
+ ## [1.0.0-alpha.41](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.40...v1.0.0-alpha.41) (2022-03-27)
446
+
447
+ **Note:** Version bump only for package @operato/app
448
+
449
+
450
+
451
+
452
+
453
+ ## [1.0.0-alpha.40](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.39...v1.0.0-alpha.40) (2022-03-26)
454
+
455
+ **Note:** Version bump only for package @operato/app
456
+
457
+
458
+
459
+
460
+
461
+ ## [1.0.0-alpha.39](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.38...v1.0.0-alpha.39) (2022-03-25)
462
+
463
+ **Note:** Version bump only for package @operato/app
464
+
465
+
466
+
467
+
468
+
469
+ ## [1.0.0-alpha.38](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.37...v1.0.0-alpha.38) (2022-03-25)
470
+
471
+ **Note:** Version bump only for package @operato/app
472
+
473
+
474
+
475
+
476
+
477
+ ## [1.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.36...v1.0.0-alpha.37) (2022-03-25)
478
+
479
+ **Note:** Version bump only for package @operato/app
480
+
481
+
482
+
483
+
484
+
485
+ ## [1.0.0-alpha.36](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.35...v1.0.0-alpha.36) (2022-03-21)
486
+
487
+ **Note:** Version bump only for package @operato/app
488
+
489
+
490
+
491
+
492
+
493
+ ## [1.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) (2022-03-21)
45
494
 
46
495
 
47
496
  ### :bug: Bug Fix
48
497
 
49
- * migrate parameter-editor from things-factory ([019a30d](https://github.com/hatiolab/operato/commit/019a30df6fd4c8a273d4194d13f5784ed6f8d956))
498
+ * prevent text overflow of grist-renderers ([73e7538](https://github.com/hatiolab/operato/commit/73e7538f9a0c8941689fefd3d4212529a75c413d))
50
499
 
51
500
 
52
501
 
53
- ## [1.0.0-alpha.4](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2022-03-11)
502
+ ## [1.0.0-alpha.34](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) (2022-03-20)
54
503
 
55
504
  **Note:** Version bump only for package @operato/app
56
505
 
@@ -58,7 +507,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
58
507
 
59
508
 
60
509
 
61
- ## [1.0.0-alpha.3](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2022-03-10)
510
+ ## [1.0.0-alpha.33](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.32...v1.0.0-alpha.33) (2022-03-19)
62
511
 
63
512
  **Note:** Version bump only for package @operato/app
64
513
 
@@ -66,7 +515,26 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
66
515
 
67
516
 
68
517
 
69
- ## [1.0.0-alpha.2](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2022-03-10)
518
+ ## [1.0.0-alpha.32](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2022-03-19)
519
+
520
+
521
+ ### :bug: Bug Fix
522
+
523
+ * typo ([2f2e3fc](https://github.com/hatiolab/operato/commit/2f2e3fcce771dcbfe2f1d09cbd25638094a6dc99))
524
+
525
+
526
+
527
+ ## [1.0.0-alpha.31](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.30...v1.0.0-alpha.31) (2022-03-19)
528
+
529
+
530
+ ### :bug: Bug Fix
531
+
532
+ * ox-grist-renderer support class type renderer (refer ox-grist-renderer-progress) ([ad7c8e1](https://github.com/hatiolab/operato/commit/ad7c8e1b453d19af9daa13ae4eb7c2059d85dfbb))
533
+ * partition-keys related ui components ([c21b4d2](https://github.com/hatiolab/operato/commit/c21b4d292ca4a6d6b4bf774a570dbabd349528fc))
534
+
535
+
536
+
537
+ ## [1.0.0-alpha.30](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.29...v1.0.0-alpha.30) (2022-03-18)
70
538
 
71
539
  **Note:** Version bump only for package @operato/app
72
540
 
@@ -74,16 +542,35 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
74
542
 
75
543
 
76
544
 
77
- ## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09)
545
+ ## [1.0.0-alpha.29](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2022-03-17)
546
+
547
+
548
+ ### :bug: Bug Fix
549
+
550
+ * datalist in ox-input-partition-keys ([a25e3a6](https://github.com/hatiolab/operato/commit/a25e3a66cf5f7a25bca057be90ef336b29e915a7))
551
+ * typo ([1f8f2da](https://github.com/hatiolab/operato/commit/1f8f2da3b4780df9f747065a457f6cafb5d9e9cf))
552
+
553
+
554
+
555
+ ## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
78
556
 
79
557
 
80
558
  ### :rocket: New Features
81
559
 
82
- * 1.0-alpha ([42f87cf](https://github.com/hatiolab/operato/commit/42f87cf6a3cef0381db91ecb1179e63c64c01370))
560
+ * add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
83
561
 
84
562
 
85
563
 
86
- ### [0.4.3](https://github.com/hatiolab/operato/compare/v0.4.2...v0.4.3) (2022-03-06)
564
+ ## [1.0.0-alpha.27](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.27) (2022-03-17)
565
+
566
+
567
+ ### :rocket: New Features
568
+
569
+ * add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
570
+
571
+
572
+
573
+ ## [1.0.0-alpha.26](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2022-03-17)
87
574
 
88
575
  **Note:** Version bump only for package @operato/app
89
576
 
@@ -91,14 +578,154 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
91
578
 
92
579
 
93
580
 
94
- ### [0.4.2](https://github.com/hatiolab/operato/compare/v0.4.1...v0.4.2) (2022-03-06)
581
+ ## [1.0.0-alpha.25](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2022-03-17)
582
+
583
+
584
+ ### :bug: Bug Fix
585
+
586
+ * typo ([907aceb](https://github.com/hatiolab/operato/commit/907acebaf882613991bce064efea435c2d148543))
587
+
588
+
589
+
590
+ ## [1.0.0-alpha.24](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2022-03-17)
591
+
592
+
593
+ ### :bug: Bug Fix
594
+
595
+ * refactoring grist-editor, property-editor and input ([bdc3197](https://github.com/hatiolab/operato/commit/bdc31977d148c80a3ac0bea4b33160bac277df1e))
596
+ * refactoring grist-editor, property-editor and input ([ea7431a](https://github.com/hatiolab/operato/commit/ea7431a5e2dfd96ef392c1905e9622df7c2ef88c))
597
+
598
+
599
+
600
+ ## [1.0.0-alpha.23](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2022-03-17)
601
+
602
+ **Note:** Version bump only for package @operato/app
603
+
604
+ ## [1.0.0-alpha.22](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2022-03-17)
605
+
606
+ **Note:** Version bump only for package @operato/app
607
+
608
+ ## [1.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2022-03-16)
609
+
610
+ ### :rocket: New Features
611
+
612
+ - @operato/ccp module added ([f08ba5a](https://github.com/hatiolab/operato/commit/f08ba5a464c04b7fb132c6f18de975997087846a))
613
+
614
+ ## [1.0.0-alpha.20](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2022-03-15)
615
+
616
+ **Note:** Version bump only for package @operato/app
617
+
618
+ ## [1.0.0-alpha.19](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2022-03-14)
619
+
620
+ ### :bug: Bug Fix
621
+
622
+ - image-selector in ox-input-background-pattern ([b88c6e1](https://github.com/hatiolab/operato/commit/b88c6e141d5d636bff4b29fbae3c790d80b641bc))
623
+
624
+ ## [1.0.0-alpha.18](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2022-03-14)
625
+
626
+ ### :bug: Bug Fix
627
+
628
+ - missing font module import ([a5348cf](https://github.com/hatiolab/operato/commit/a5348cf0d567927f18bf31bba09994f3fbf742f6))
629
+
630
+ ## [1.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2022-03-13)
631
+
632
+ ### :bug: Bug Fix
633
+
634
+ - some missings in font module ([6c1ba6d](https://github.com/hatiolab/operato/commit/6c1ba6d89b8ff75b03c6b4ce813f5d3d09c7437b))
635
+
636
+ ## [1.0.0-alpha.16](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2022-03-13)
637
+
638
+ ### :bug: Bug Fix
639
+
640
+ - downgrad graphql related libraries ([d26b80f](https://github.com/hatiolab/operato/commit/d26b80fc31b10bfd3bf31b6473151af52f857c66))
641
+
642
+ ## [1.0.0-alpha.15](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2022-03-13)
643
+
644
+ ### :rocket: New Features
645
+
646
+ - migrate input, property-editor from things-factory ([dbd5e73](https://github.com/hatiolab/operato/commit/dbd5e73eac328e72c4bb7abd113a819532bc894d))
647
+
648
+ ## [1.0.0-alpha.14](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2022-03-13)
649
+
650
+ **Note:** Version bump only for package @operato/app
651
+
652
+ ## [1.0.0-alpha.13](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2022-03-13)
653
+
654
+ **Note:** Version bump only for package @operato/app
655
+
656
+ ## [1.0.0-alpha.12](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) (2022-03-13)
657
+
658
+ ### :rocket: New Features
659
+
660
+ - migrate input, property-editor from things-factory ([4800d85](https://github.com/hatiolab/operato/commit/4800d859473bf623325233a7f2af851e5d093dcb))
95
661
 
662
+ ## [1.0.0-alpha.11](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) (2022-03-12)
663
+
664
+ ### :bug: Bug Fix
665
+
666
+ - ox-grist-editor-resource-code for grist ([cb80692](https://github.com/hatiolab/operato/commit/cb80692039e41d7b94b98ac1845822563e179e24))
667
+ - ox-property-editor-attachment-selector ([a1a2d20](https://github.com/hatiolab/operato/commit/a1a2d20640746c891248fdb729097614676c9cff))
668
+
669
+ ## [1.0.0-alpha.10](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2022-03-12)
670
+
671
+ **Note:** Version bump only for package @operato/app
672
+
673
+ ## [1.0.0-alpha.9](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) (2022-03-12)
96
674
 
97
675
  ### :rocket: New Features
98
676
 
99
- * add @operato/app module to support productivity for web application ([217d1f2](https://github.com/hatiolab/operato/commit/217d1f2d99ff75dcd8da1293814653f4758c04b8))
677
+ - settled concept for input, property-editor, grist-editor, so on ([0c9e1d0](https://github.com/hatiolab/operato/commit/0c9e1d054c7aef5d965868242cf471667af7a3c3))
678
+
679
+ ## [1.0.0-alpha.8](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2022-03-11)
680
+
681
+ **Note:** Version bump only for package @operato/app
682
+
683
+ ## [1.0.0-alpha.7](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2022-03-11)
684
+
685
+ **Note:** Version bump only for package @operato/app
686
+
687
+ ## [1.0.0-alpha.6](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2022-03-11)
688
+
689
+ **Note:** Version bump only for package @operato/app
690
+
691
+ ## [1.0.0-alpha.5](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2022-03-11)
692
+
693
+ ### :rocket: New Features
694
+
695
+ - start migration grist editors from things-factory ([8b31c7f](https://github.com/hatiolab/operato/commit/8b31c7f00ae9b32e68f6860c559a768c3d456704))
696
+
697
+ ### :bug: Bug Fix
698
+
699
+ - migrate parameter-editor from things-factory ([019a30d](https://github.com/hatiolab/operato/commit/019a30df6fd4c8a273d4194d13f5784ed6f8d956))
700
+
701
+ ## [1.0.0-alpha.4](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2022-03-11)
702
+
703
+ **Note:** Version bump only for package @operato/app
704
+
705
+ ## [1.0.0-alpha.3](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2022-03-10)
706
+
707
+ **Note:** Version bump only for package @operato/app
708
+
709
+ ## [1.0.0-alpha.2](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2022-03-10)
710
+
711
+ **Note:** Version bump only for package @operato/app
712
+
713
+ ## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09)
714
+
715
+ ### :rocket: New Features
716
+
717
+ - 1.0-alpha ([42f87cf](https://github.com/hatiolab/operato/commit/42f87cf6a3cef0381db91ecb1179e63c64c01370))
718
+
719
+ ### [0.4.3](https://github.com/hatiolab/operato/compare/v0.4.2...v0.4.3) (2022-03-06)
720
+
721
+ **Note:** Version bump only for package @operato/app
722
+
723
+ ### [0.4.2](https://github.com/hatiolab/operato/compare/v0.4.1...v0.4.2) (2022-03-06)
724
+
725
+ ### :rocket: New Features
100
726
 
727
+ - add @operato/app module to support productivity for web application ([217d1f2](https://github.com/hatiolab/operato/commit/217d1f2d99ff75dcd8da1293814653f4758c04b8))
101
728
 
102
729
  ### :mega: Other
103
730
 
104
- * delete unused ([0c23746](https://github.com/hatiolab/operato/commit/0c237461b67a8b9cc69304ea963cb230e7c143e4))
731
+ - delete unused ([0c23746](https://github.com/hatiolab/operato/commit/0c237461b67a8b9cc69304ea963cb230e7c143e4))