@operato/input 1.0.0-beta.5 → 1.0.0-beta.50

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 (189) hide show
  1. package/.storybook/main.js +2 -2
  2. package/.storybook/server.mjs +4 -4
  3. package/CHANGELOG.md +648 -0
  4. package/demo/index-multiple-colors.html +4 -1
  5. package/demo/index-partition-keys.html +2 -5
  6. package/demo/index-select.html +1 -1
  7. package/demo/index.html +4 -0
  8. package/dist/src/index.d.ts +4 -2
  9. package/dist/src/index.js +4 -2
  10. package/dist/src/index.js.map +1 -1
  11. package/dist/src/locales/en.d.ts +8 -0
  12. package/dist/src/locales/en.js +8 -0
  13. package/dist/src/locales/en.js.map +1 -1
  14. package/dist/src/locales/ko.d.ts +8 -0
  15. package/dist/src/locales/ko.js +8 -0
  16. package/dist/src/locales/ko.js.map +1 -1
  17. package/dist/src/locales/ms.d.ts +8 -0
  18. package/dist/src/locales/ms.js +8 -0
  19. package/dist/src/locales/ms.js.map +1 -1
  20. package/dist/src/locales/zh.d.ts +8 -0
  21. package/dist/src/locales/zh.js +8 -0
  22. package/dist/src/locales/zh.js.map +1 -1
  23. package/dist/src/ox-input-3dish.js +24 -8
  24. package/dist/src/ox-input-3dish.js.map +1 -1
  25. package/dist/src/ox-input-barcode.d.ts +5 -2
  26. package/dist/src/ox-input-barcode.js +61 -31
  27. package/dist/src/ox-input-barcode.js.map +1 -1
  28. package/dist/src/ox-input-color.js +16 -11
  29. package/dist/src/ox-input-color.js.map +1 -1
  30. package/dist/src/ox-input-crontab.js +28 -10
  31. package/dist/src/ox-input-crontab.js.map +1 -1
  32. package/dist/src/ox-input-data.js +1 -1
  33. package/dist/src/ox-input-data.js.map +1 -1
  34. package/dist/src/ox-input-duration.d.ts +13 -0
  35. package/dist/src/ox-input-duration.js +163 -0
  36. package/dist/src/ox-input-duration.js.map +1 -0
  37. package/dist/src/ox-input-file.js +5 -3
  38. package/dist/src/ox-input-file.js.map +1 -1
  39. package/dist/src/ox-input-key-values.d.ts +41 -0
  40. package/dist/src/ox-input-key-values.js +233 -0
  41. package/dist/src/ox-input-key-values.js.map +1 -0
  42. package/dist/src/ox-input-multiple-colors.d.ts +1 -0
  43. package/dist/src/ox-input-multiple-colors.js +29 -21
  44. package/dist/src/ox-input-multiple-colors.js.map +1 -1
  45. package/dist/src/ox-input-options.d.ts +1 -0
  46. package/dist/src/ox-input-options.js +55 -14
  47. package/dist/src/ox-input-options.js.map +1 -1
  48. package/dist/src/ox-input-partition-keys.d.ts +1 -0
  49. package/dist/src/ox-input-partition-keys.js +51 -23
  50. package/dist/src/ox-input-partition-keys.js.map +1 -1
  51. package/dist/src/ox-input-quantifier.d.ts +11 -0
  52. package/dist/src/ox-input-quantifier.js +67 -0
  53. package/dist/src/ox-input-quantifier.js.map +1 -0
  54. package/dist/src/ox-input-range.js +35 -38
  55. package/dist/src/ox-input-range.js.map +1 -1
  56. package/dist/src/ox-input-search.d.ts +1 -0
  57. package/dist/src/ox-input-search.js +27 -5
  58. package/dist/src/ox-input-search.js.map +1 -1
  59. package/dist/src/ox-input-unit.d.ts +17 -0
  60. package/dist/src/ox-input-unit.js +122 -0
  61. package/dist/src/ox-input-unit.js.map +1 -0
  62. package/dist/src/ox-input-value-map.d.ts +2 -2
  63. package/dist/src/ox-input-value-map.js +51 -15
  64. package/dist/src/ox-input-value-map.js.map +1 -1
  65. package/dist/src/ox-input-value-ranges.d.ts +2 -2
  66. package/dist/src/ox-input-value-ranges.js +50 -23
  67. package/dist/src/ox-input-value-ranges.js.map +1 -1
  68. package/dist/src/ox-input-work-shift.js +79 -44
  69. package/dist/src/ox-input-work-shift.js.map +1 -1
  70. package/dist/src/ox-select.js +12 -3
  71. package/dist/src/ox-select.js.map +1 -1
  72. package/dist/stories/ox-checkbox.stories.d.ts +39 -0
  73. package/dist/stories/ox-checkbox.stories.js +44 -0
  74. package/dist/stories/ox-checkbox.stories.js.map +1 -0
  75. package/dist/stories/ox-input-3dish.stories.d.ts +26 -0
  76. package/dist/stories/ox-input-3dish.stories.js +59 -0
  77. package/dist/stories/ox-input-3dish.stories.js.map +1 -0
  78. package/dist/stories/ox-input-barcode.stories.d.ts +43 -0
  79. package/dist/stories/ox-input-barcode.stories.js +59 -0
  80. package/dist/stories/ox-input-barcode.stories.js.map +1 -0
  81. package/dist/stories/ox-input-crontab.stories.d.ts +25 -0
  82. package/dist/stories/ox-input-crontab.stories.js +35 -0
  83. package/dist/stories/ox-input-crontab.stories.js.map +1 -0
  84. package/dist/stories/ox-input-duration.stories.d.ts +26 -0
  85. package/dist/stories/ox-input-duration.stories.js +37 -0
  86. package/dist/stories/ox-input-duration.stories.js.map +1 -0
  87. package/dist/stories/ox-input-file.stories.d.ts +49 -0
  88. package/dist/stories/ox-input-file.stories.js +48 -0
  89. package/dist/stories/ox-input-file.stories.js.map +1 -0
  90. package/dist/stories/{index.stories.d.ts → ox-input-key-values.stories.d.ts} +7 -11
  91. package/dist/stories/ox-input-key-values.stories.js +49 -0
  92. package/dist/stories/ox-input-key-values.stories.js.map +1 -0
  93. package/dist/stories/ox-input-multiple-colors.stories.d.ts +20 -0
  94. package/dist/stories/ox-input-multiple-colors.stories.js +167 -0
  95. package/dist/stories/ox-input-multiple-colors.stories.js.map +1 -0
  96. package/dist/stories/ox-input-options.stories.d.ts +25 -0
  97. package/dist/stories/ox-input-options.stories.js +33 -0
  98. package/dist/stories/ox-input-options.stories.js.map +1 -0
  99. package/dist/stories/ox-input-partition-keys.stories.d.ts +25 -0
  100. package/dist/stories/ox-input-partition-keys.stories.js +37 -0
  101. package/dist/stories/ox-input-partition-keys.stories.js.map +1 -0
  102. package/dist/stories/ox-input-quantifier.stories.d.ts +25 -0
  103. package/dist/stories/ox-input-quantifier.stories.js +27 -0
  104. package/dist/stories/ox-input-quantifier.stories.js.map +1 -0
  105. package/dist/stories/ox-input-range.stories.d.ts +37 -0
  106. package/dist/stories/ox-input-range.stories.js +28 -0
  107. package/dist/stories/ox-input-range.stories.js.map +1 -0
  108. package/dist/stories/ox-input-search.stories.d.ts +33 -0
  109. package/dist/stories/ox-input-search.stories.js +35 -0
  110. package/dist/stories/ox-input-search.stories.js.map +1 -0
  111. package/dist/stories/ox-input-unit.stories.d.ts +40 -0
  112. package/dist/stories/ox-input-unit.stories.js +42 -0
  113. package/dist/stories/ox-input-unit.stories.js.map +1 -0
  114. package/dist/stories/ox-input-value-map.stories.d.ts +35 -0
  115. package/dist/stories/ox-input-value-map.stories.js +37 -0
  116. package/dist/stories/ox-input-value-map.stories.js.map +1 -0
  117. package/dist/stories/ox-input-value-ranges.stories.d.ts +35 -0
  118. package/dist/stories/ox-input-value-ranges.stories.js +37 -0
  119. package/dist/stories/ox-input-value-ranges.stories.js.map +1 -0
  120. package/dist/stories/ox-input-work-shift.stories.d.ts +26 -0
  121. package/dist/stories/ox-input-work-shift.stories.js +59 -0
  122. package/dist/stories/ox-input-work-shift.stories.js.map +1 -0
  123. package/dist/stories/ox-select-dynamic.stories.d.ts +28 -0
  124. package/dist/stories/ox-select-dynamic.stories.js +60 -0
  125. package/dist/stories/ox-select-dynamic.stories.js.map +1 -0
  126. package/dist/stories/ox-select.stories copy.d.ts +30 -0
  127. package/dist/stories/ox-select.stories copy.js +83 -0
  128. package/dist/stories/ox-select.stories copy.js.map +1 -0
  129. package/dist/stories/ox-select.stories.d.ts +30 -0
  130. package/dist/stories/ox-select.stories.js +83 -0
  131. package/dist/stories/ox-select.stories.js.map +1 -0
  132. package/dist/tsconfig.tsbuildinfo +1 -1
  133. package/package.json +16 -13
  134. package/src/index.ts +4 -2
  135. package/src/locales/en.ts +8 -0
  136. package/src/locales/ko.ts +8 -0
  137. package/src/locales/ms.ts +8 -0
  138. package/src/locales/zh.ts +8 -0
  139. package/src/ox-input-3dish.ts +24 -8
  140. package/src/ox-input-barcode.ts +67 -34
  141. package/src/ox-input-color.ts +17 -11
  142. package/src/ox-input-crontab.ts +30 -10
  143. package/src/ox-input-data.ts +2 -2
  144. package/src/ox-input-duration.ts +168 -0
  145. package/src/ox-input-file.ts +7 -6
  146. package/src/ox-input-key-values.ts +270 -0
  147. package/src/ox-input-multiple-colors.ts +29 -21
  148. package/src/ox-input-options.ts +54 -13
  149. package/src/ox-input-partition-keys.ts +51 -22
  150. package/src/ox-input-quantifier.ts +62 -0
  151. package/src/ox-input-range.ts +35 -38
  152. package/src/ox-input-search.ts +29 -5
  153. package/src/ox-input-unit.ts +123 -0
  154. package/src/ox-input-value-map.ts +52 -16
  155. package/src/ox-input-value-ranges.ts +52 -25
  156. package/src/ox-input-work-shift.ts +81 -44
  157. package/src/ox-select.ts +19 -5
  158. package/stories/ox-checkbox.stories.ts +69 -0
  159. package/stories/ox-input-3dish.stories.ts +73 -0
  160. package/stories/ox-input-barcode.stories.ts +85 -0
  161. package/stories/ox-input-code.stories.ts_ +51 -0
  162. package/stories/ox-input-crontab.stories.ts +49 -0
  163. package/stories/ox-input-duration.stories.ts +51 -0
  164. package/stories/ox-input-file.stories.ts +77 -0
  165. package/stories/ox-input-key-values.stories.ts +64 -0
  166. package/stories/ox-input-multiple-colors.stories.ts +178 -0
  167. package/stories/ox-input-options.stories.ts +47 -0
  168. package/stories/ox-input-partition-keys.stories.ts +51 -0
  169. package/stories/ox-input-quantifier.stories.ts +43 -0
  170. package/stories/ox-input-range.stories.ts +45 -0
  171. package/stories/ox-input-search.stories.ts +56 -0
  172. package/stories/ox-input-unit.stories.ts +66 -0
  173. package/stories/ox-input-value-map.stories.ts +58 -0
  174. package/stories/ox-input-value-ranges.stories.ts +58 -0
  175. package/stories/ox-input-work-shift.stories.ts +73 -0
  176. package/stories/ox-select.stories.ts +101 -0
  177. package/themes/app-theme.css +142 -0
  178. package/themes/input-theme.css +19 -0
  179. package/translations/en.json +45 -1
  180. package/translations/ko.json +43 -1
  181. package/translations/ms.json +43 -1
  182. package/translations/zh.json +43 -1
  183. package/xliff/en.xlf +24 -0
  184. package/xliff/ko.xlf +32 -0
  185. package/xliff/ms.xlf +24 -0
  186. package/xliff/zh.xlf +24 -0
  187. package/dist/stories/index.stories.js +0 -33
  188. package/dist/stories/index.stories.js.map +0 -1
  189. package/stories/index.stories.ts +0 -52
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- stories: ['../dist/stories/**/*.stories.{js,md,mdx}'],
3
- };
2
+ stories: ['../dist/stories/**/*.stories.{js,md,mdx}']
3
+ }
@@ -1,8 +1,8 @@
1
- import { storybookPlugin } from '@web/dev-server-storybook';
2
- import baseConfig from '../web-dev-server.config.mjs';
1
+ import { storybookPlugin } from '@web/dev-server-storybook'
2
+ import baseConfig from '../web-dev-server.config.mjs'
3
3
 
4
4
  export default /** @type {import('@web/dev-server').DevServerConfig} */ ({
5
5
  ...baseConfig,
6
6
  open: '/',
7
- plugins: [storybookPlugin({ type: 'web-components' }), ...baseConfig.plugins],
8
- });
7
+ plugins: [storybookPlugin({ type: 'web-components' }), ...baseConfig.plugins]
8
+ })
package/CHANGELOG.md CHANGED
@@ -3,6 +3,654 @@
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.50](https://github.com/hatiolab/operato/compare/v1.0.0-beta.49...v1.0.0-beta.50) (2022-07-18)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * ox-select label ([6dde9bb](https://github.com/hatiolab/operato/commit/6dde9bb629ca81fa6ac69d70efbe3c5d6c08e80a))
12
+
13
+
14
+
15
+ ## [1.0.0-beta.49](https://github.com/hatiolab/operato/compare/v1.0.0-beta.48...v1.0.0-beta.49) (2022-07-17)
16
+
17
+ **Note:** Version bump only for package @operato/input
18
+
19
+
20
+
21
+
22
+
23
+ ## [1.0.0-beta.48](https://github.com/hatiolab/operato/compare/v1.0.0-beta.47...v1.0.0-beta.48) (2022-07-17)
24
+
25
+ **Note:** Version bump only for package @operato/input
26
+
27
+
28
+
29
+
30
+
31
+ ## [1.0.0-beta.47](https://github.com/hatiolab/operato/compare/v1.0.0-beta.46...v1.0.0-beta.47) (2022-07-15)
32
+
33
+
34
+ ### :bug: Bug Fix
35
+
36
+ * data-grist autofocus and gutter button title ([142c2cd](https://github.com/hatiolab/operato/commit/142c2cd02b14e1d0d2df11f722dc36bad18a82c2))
37
+
38
+
39
+
40
+ ## [1.0.0-beta.46](https://github.com/hatiolab/operato/compare/v1.0.0-beta.45...v1.0.0-beta.46) (2022-07-11)
41
+
42
+
43
+ ### :bug: Bug Fix
44
+
45
+ * property-editor spec. changed ([b10e4ef](https://github.com/hatiolab/operato/commit/b10e4ef151450a0ca19cbf00c9c96da80ddaaed8))
46
+
47
+
48
+
49
+ ## [1.0.0-beta.45](https://github.com/hatiolab/operato/compare/v1.0.0-beta.44...v1.0.0-beta.45) (2022-07-09)
50
+
51
+
52
+ ### :bug: Bug Fix
53
+
54
+ * upgrade dependencies ([4986392](https://github.com/hatiolab/operato/commit/4986392e64524b5602cc9a144def239e85524bee))
55
+
56
+
57
+
58
+ ## [1.0.0-beta.44](https://github.com/hatiolab/operato/compare/v1.0.0-beta.43...v1.0.0-beta.44) (2022-07-07)
59
+
60
+
61
+ ### :bug: Bug Fix
62
+
63
+ * board property-editor style, option-able fullwidth, ox-input-select event ([6d181de](https://github.com/hatiolab/operato/commit/6d181de26467ee0f1733f6367049517c69383f31))
64
+ * escape ('' == 0) case for ox-grist-renderer-select ([70a2a3a](https://github.com/hatiolab/operato/commit/70a2a3ac9d52fcf1a2067160e9ea02c9a4e3c482))
65
+ * ox-input-barcode story ([3720aa9](https://github.com/hatiolab/operato/commit/3720aa9bed30e2e8e9955695b0760ec421e6dbb5))
66
+
67
+
68
+
69
+ ## [1.0.0-beta.43](https://github.com/hatiolab/operato/compare/v1.0.0-beta.42...v1.0.0-beta.43) (2022-07-03)
70
+
71
+ **Note:** Version bump only for package @operato/input
72
+
73
+
74
+
75
+
76
+
77
+ ## [1.0.0-beta.42](https://github.com/hatiolab/operato/compare/v1.0.0-beta.41...v1.0.0-beta.42) (2022-07-03)
78
+
79
+
80
+ ### :bug: Bug Fix
81
+
82
+ * ox-input-barcode ([e7aa50f](https://github.com/hatiolab/operato/commit/e7aa50fd1d5c034b81173e1b7db8837d0babd0e8))
83
+
84
+
85
+
86
+ ## [1.0.0-beta.41](https://github.com/hatiolab/operato/compare/v1.0.0-beta.40...v1.0.0-beta.41) (2022-06-30)
87
+
88
+ **Note:** Version bump only for package @operato/input
89
+
90
+
91
+
92
+
93
+
94
+ ## [1.0.0-beta.40](https://github.com/hatiolab/operato/compare/v1.0.0-beta.39...v1.0.0-beta.40) (2022-06-29)
95
+
96
+
97
+ ### :bug: Bug Fix
98
+
99
+ * [#43](https://github.com/hatiolab/operato/issues/43)-datasample ([14ab019](https://github.com/hatiolab/operato/commit/14ab0199311f340c784018b9fc78b70e57b09567))
100
+ * duration editor for grist and property editor ([db2a59e](https://github.com/hatiolab/operato/commit/db2a59eca05c3d5c324d351ad9c201f5f93113c4))
101
+
102
+
103
+
104
+ ## [1.0.0-beta.39](https://github.com/hatiolab/operato/compare/v1.0.0-beta.38...v1.0.0-beta.39) (2022-06-22)
105
+
106
+ **Note:** Version bump only for package @operato/input
107
+
108
+
109
+
110
+
111
+
112
+ ## [1.0.0-beta.38](https://github.com/hatiolab/operato/compare/v1.0.0-beta.37...v1.0.0-beta.38) (2022-06-20)
113
+
114
+ **Note:** Version bump only for package @operato/input
115
+
116
+
117
+
118
+
119
+
120
+ ## [1.0.0-beta.37](https://github.com/hatiolab/operato/compare/v1.0.0-beta.36...v1.0.0-beta.37) (2022-06-20)
121
+
122
+
123
+ ### :bug: Bug Fix
124
+
125
+ * input duration style ([cc49506](https://github.com/hatiolab/operato/commit/cc49506ca87e784cd04c49cfa52fbc77c940d187))
126
+ * translate for input ([588b271](https://github.com/hatiolab/operato/commit/588b27165cd40c7ed8608e5272b03e79e754a03c))
127
+ * translations for inputs ([377a0ba](https://github.com/hatiolab/operato/commit/377a0badca1084f8951c4222c5ac5f665eb31fd6))
128
+
129
+
130
+
131
+ ## [1.0.0-beta.36](https://github.com/hatiolab/operato/compare/v1.0.0-beta.35...v1.0.0-beta.36) (2022-06-16)
132
+
133
+
134
+ ### :bug: Bug Fix
135
+
136
+ * ox-input-barcode ([9a4150b](https://github.com/hatiolab/operato/commit/9a4150bf5e1c28b78b1cd864361115dada03a36d))
137
+ * 다국어 문자 입력시 keyDown/Up 두번씩 발생하는 것에 대한 대응 ([de67ef4](https://github.com/hatiolab/operato/commit/de67ef4b43f4249e3164dd09c5c778368b7d1a7e))
138
+
139
+
140
+
141
+ ## [1.0.0-beta.35](https://github.com/hatiolab/operato/compare/v1.0.0-beta.34...v1.0.0-beta.35) (2022-06-16)
142
+
143
+
144
+ ### :bug: Bug Fix
145
+
146
+ * select-after-change error ([15b9c05](https://github.com/hatiolab/operato/commit/15b9c059de161d8e42aee9a03ea99c2da714f1b7))
147
+
148
+
149
+
150
+ ## [1.0.0-beta.34](https://github.com/hatiolab/operato/compare/v1.0.0-beta.33...v1.0.0-beta.34) (2022-06-16)
151
+
152
+
153
+ ### :bug: Bug Fix
154
+
155
+ * support select-after-change from ox-input-search ([fc907e1](https://github.com/hatiolab/operato/commit/fc907e1e28b85923f5530e76d4d4fb15e16444db))
156
+
157
+
158
+
159
+ ## [1.0.0-beta.33](https://github.com/hatiolab/operato/compare/v1.0.0-beta.32...v1.0.0-beta.33) (2022-06-16)
160
+
161
+
162
+ ### :rocket: New Features
163
+
164
+ * ox-input-barcode select-over-change ([4ea095e](https://github.com/hatiolab/operato/commit/4ea095e2f2d77152e041c5fe8ec43f09074f08d3))
165
+
166
+
167
+ ### :bug: Bug Fix
168
+
169
+ * ox-input-barcode ([08da2b1](https://github.com/hatiolab/operato/commit/08da2b1ab66d9fe167c26315ea2241f28156fb82))
170
+ * ox-input-barcode ([8c4290d](https://github.com/hatiolab/operato/commit/8c4290d58ef6aa257398ddcc97a00e640668bc3f))
171
+ * select-over-change => select-after-change ([eda7ad0](https://github.com/hatiolab/operato/commit/eda7ad06a761e91888113e8a445a6092ac9e7613))
172
+
173
+
174
+
175
+ ## [1.0.0-beta.32](https://github.com/hatiolab/operato/compare/v1.0.0-beta.31...v1.0.0-beta.32) (2022-06-15)
176
+
177
+ **Note:** Version bump only for package @operato/input
178
+
179
+
180
+
181
+
182
+
183
+ ## [1.0.0-beta.31](https://github.com/hatiolab/operato/compare/v1.0.0-beta.30...v1.0.0-beta.31) (2022-06-15)
184
+
185
+
186
+ ### :rocket: New Features
187
+
188
+ * add ox-input-duration ([34e727f](https://github.com/hatiolab/operato/commit/34e727fff77c5a6764b5fba63c56564919766373))
189
+ * ox-input-barcode english-only ([c062ab9](https://github.com/hatiolab/operato/commit/c062ab99be827e8d5e4f55a6f95a0df7c2dd10d8))
190
+
191
+
192
+
193
+ ## [1.0.0-beta.30](https://github.com/hatiolab/operato/compare/v1.0.0-beta.29...v1.0.0-beta.30) (2022-06-13)
194
+
195
+
196
+ ### :bug: Bug Fix
197
+
198
+ * input barcode style ([3a7e27b](https://github.com/hatiolab/operato/commit/3a7e27b1e4589fc7a9ccfd0eceda93d76e4c0a4b))
199
+
200
+
201
+
202
+ ## [1.0.0-beta.29](https://github.com/hatiolab/operato/compare/v1.0.0-beta.28...v1.0.0-beta.29) (2022-06-10)
203
+
204
+ **Note:** Version bump only for package @operato/input
205
+
206
+
207
+
208
+
209
+
210
+ ## [1.0.0-beta.28](https://github.com/hatiolab/operato/compare/v1.0.0-beta.27...v1.0.0-beta.28) (2022-06-10)
211
+
212
+ **Note:** Version bump only for package @operato/input
213
+
214
+
215
+
216
+
217
+
218
+ ## [1.0.0-beta.27](https://github.com/hatiolab/operato/compare/v1.0.0-beta.26...v1.0.0-beta.27) (2022-06-09)
219
+
220
+
221
+ ### :bug: Bug Fix
222
+
223
+ * input style ([a5d9c0e](https://github.com/hatiolab/operato/commit/a5d9c0eacc89522e26fe5e982b3a5ece9666b85f))
224
+ * value range style ([fcad7e0](https://github.com/hatiolab/operato/commit/fcad7e0f84904516bc3cd154b578725648663207))
225
+
226
+
227
+
228
+ ## [1.0.0-beta.26](https://github.com/hatiolab/operato/compare/v1.0.0-beta.25...v1.0.0-beta.26) (2022-06-04)
229
+
230
+
231
+ ### :bug: Bug Fix
232
+
233
+ * form, input style ([b94efe5](https://github.com/hatiolab/operato/commit/b94efe5bb844f2a410918d4a464c2a1e6530d4cd))
234
+
235
+
236
+
237
+ ## [1.0.0-beta.25](https://github.com/hatiolab/operato/compare/v1.0.0-beta.24...v1.0.0-beta.25) (2022-06-02)
238
+
239
+ **Note:** Version bump only for package @operato/input
240
+
241
+
242
+
243
+
244
+
245
+ ## [1.0.0-beta.24](https://github.com/hatiolab/operato/compare/v1.0.0-beta.23...v1.0.0-beta.24) (2022-06-02)
246
+
247
+ **Note:** Version bump only for package @operato/input
248
+
249
+
250
+
251
+
252
+
253
+ ## [1.0.0-beta.23](https://github.com/hatiolab/operato/compare/v1.0.0-beta.22...v1.0.0-beta.23) (2022-06-02)
254
+
255
+ **Note:** Version bump only for package @operato/input
256
+
257
+
258
+
259
+
260
+
261
+ ## [1.0.0-beta.22](https://github.com/hatiolab/operato/compare/v1.0.0-beta.21...v1.0.0-beta.22) (2022-05-31)
262
+
263
+
264
+ ### :bug: Bug Fix
265
+
266
+ * grid click handler, crontab clear button, ox-input-key-values ([16079b9](https://github.com/hatiolab/operato/commit/16079b94fef2860627aded1888960f3e7e1bf418))
267
+
268
+
269
+
270
+ ## [1.0.0-beta.21](https://github.com/hatiolab/operato/compare/v1.0.0-beta.20...v1.0.0-beta.21) (2022-05-31)
271
+
272
+
273
+ ### :bug: Bug Fix
274
+
275
+ * add ox-input-key-values, ox-property-editor-key-values and so on ([d26b2e9](https://github.com/hatiolab/operato/commit/d26b2e94a5e43935e5e80a1ebb0948642624ca92))
276
+ * add stories for input - ox-input-value-map, ox-input-value-ranges ([9f07403](https://github.com/hatiolab/operato/commit/9f07403087e4bc0761bfb0eb10991ad09ccf97d9))
277
+
278
+
279
+
280
+ ## [1.0.0-beta.20](https://github.com/hatiolab/operato/compare/v1.0.0-beta.19...v1.0.0-beta.20) (2022-05-30)
281
+
282
+ **Note:** Version bump only for package @operato/input
283
+
284
+
285
+
286
+
287
+
288
+ ## [1.0.0-beta.19](https://github.com/hatiolab/operato/compare/v1.0.0-beta.18...v1.0.0-beta.19) (2022-05-29)
289
+
290
+ **Note:** Version bump only for package @operato/input
291
+
292
+
293
+
294
+
295
+
296
+ ## [1.0.0-beta.18](https://github.com/hatiolab/operato/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2022-05-27)
297
+
298
+
299
+ ### :bug: Bug Fix
300
+
301
+ * add ox-input-files story ([e450dce](https://github.com/hatiolab/operato/commit/e450dce3b4403d00f1b91bf3d5ae88d28eb6a40e))
302
+ * pagination limit for data-grist ([a1dad87](https://github.com/hatiolab/operato/commit/a1dad87289f26d2f69b6831bcb601e5e9938aef1))
303
+
304
+
305
+
306
+ ## [1.0.0-beta.17](https://github.com/hatiolab/operato/compare/v1.0.0-beta.16...v1.0.0-beta.17) (2022-05-25)
307
+
308
+
309
+ ### :bug: Bug Fix
310
+
311
+ * ox input work shift, select ([3f68c47](https://github.com/hatiolab/operato/commit/3f68c47a165555c7715bfdd602387cee353b8b54))
312
+ * ox-input range, unit style ([e295f1c](https://github.com/hatiolab/operato/commit/e295f1c4e04c761f8a6267792ac7aa39cfdb7706))
313
+
314
+
315
+
316
+ ## [1.0.0-beta.16](https://github.com/hatiolab/operato/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-05-23)
317
+
318
+ **Note:** Version bump only for package @operato/input
319
+
320
+
321
+
322
+
323
+
324
+ ## [1.0.0-beta.15](https://github.com/hatiolab/operato/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-05-20)
325
+
326
+ **Note:** Version bump only for package @operato/input
327
+
328
+
329
+
330
+
331
+
332
+ ## [1.0.0-beta.14](https://github.com/hatiolab/operato/compare/v1.0.0-beta.13...v1.0.0-beta.14) (2022-05-19)
333
+
334
+ **Note:** Version bump only for package @operato/input
335
+
336
+
337
+
338
+
339
+
340
+ ## [1.0.0-beta.13](https://github.com/hatiolab/operato/compare/v1.0.0-beta.12...v1.0.0-beta.13) (2022-05-19)
341
+
342
+
343
+ ### :rocket: New Features
344
+
345
+ * add ox-input-unit ([06f5f56](https://github.com/hatiolab/operato/commit/06f5f56fa0dd56fed973b399ac4dc42a383c8ad4))
346
+
347
+
348
+ ### :bug: Bug Fix
349
+
350
+ * incorrect package.json scripts for storybooks ([8c8c405](https://github.com/hatiolab/operato/commit/8c8c405443247108b9c411b8161c008d9b6a2261))
351
+ * input partition keys style ([191bba8](https://github.com/hatiolab/operato/commit/191bba85a9f2d214f4bceaadde4e013cad50789a))
352
+ * input partition keys style ([393a59d](https://github.com/hatiolab/operato/commit/393a59d1229045067c06cd06285c92770a8631c1))
353
+ * multiple color style ([e558bb4](https://github.com/hatiolab/operato/commit/e558bb4470b6542a2562f9929575ef436f3d3a0f))
354
+ * ox input style ([989bdbb](https://github.com/hatiolab/operato/commit/989bdbb9bfd4ca7b4bdb1f3391bd96b75cbbffed))
355
+ * storyboard for inputs ([c38e6e7](https://github.com/hatiolab/operato/commit/c38e6e70b5351955a4d0571e6cb0fe3875d2f254))
356
+ * storybook & input multiple colors ([a7e4319](https://github.com/hatiolab/operato/commit/a7e431953479156979ae48c9bad0a213519bca2b))
357
+ * storybook for data-grist ([ae0ad52](https://github.com/hatiolab/operato/commit/ae0ad52d642454c70a4e27f262b8811f7e53f420))
358
+ * storybook for inputs ([72f7992](https://github.com/hatiolab/operato/commit/72f7992d902528e3a5ca0f3f0f3897902b6b13bd))
359
+ * storybook for ox-input-range ([4f3c44f](https://github.com/hatiolab/operato/commit/4f3c44ff285b4bfb61a03d93df3f73551b75b62a))
360
+ * upgrade @zxing/library ([b9749cb](https://github.com/hatiolab/operato/commit/b9749cb2986067ffa1c2d03e91d3eb18e6729f56))
361
+
362
+
363
+
364
+ ## [1.0.0-beta.12](https://github.com/hatiolab/operato/compare/v1.0.0-beta.11...v1.0.0-beta.12) (2022-05-13)
365
+
366
+
367
+ ### :rocket: New Features
368
+
369
+ * storybook started ([90c08c9](https://github.com/hatiolab/operato/commit/90c08c9a15e5fe554baaa1becca07793e8434799))
370
+
371
+
372
+
373
+ ## [1.0.0-beta.11](https://github.com/hatiolab/operato/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2022-05-01)
374
+
375
+ **Note:** Version bump only for package @operato/input
376
+
377
+
378
+
379
+
380
+
381
+ ## [1.0.0-beta.10](https://github.com/hatiolab/operato/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2022-04-28)
382
+
383
+ **Note:** Version bump only for package @operato/input
384
+
385
+
386
+
387
+
388
+
389
+ ## [1.0.0-beta.9](https://github.com/hatiolab/operato/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2022-04-28)
390
+
391
+
392
+ ### :bug: Bug Fix
393
+
394
+ * search value for filters-form ([a3a0ed5](https://github.com/hatiolab/operato/commit/a3a0ed59a924a1b13f304705a27137af98638bd0))
395
+
396
+
397
+
398
+ ## [1.0.0-beta.8](https://github.com/hatiolab/operato/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2022-04-27)
399
+
400
+
401
+ ### :bug: Bug Fix
402
+
403
+ * filters-form style ([b02c530](https://github.com/hatiolab/operato/commit/b02c530fc7e106c42f0f87d1b62f3707063e03ca))
404
+
405
+
406
+
407
+ ## [1.0.0-beta.7](https://github.com/hatiolab/operato/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2022-04-24)
408
+
409
+ **Note:** Version bump only for package @operato/input
410
+
411
+
412
+
413
+
414
+
415
+ ## [1.0.0-beta.6](https://github.com/hatiolab/operato/compare/v0.4.5...v1.0.0-beta.6) (2022-04-22)
416
+
417
+ ## [1.0.0-beta.5](https://github.com/hatiolab/operato/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-04-18)
418
+
419
+ ## [1.0.0-beta.4](https://github.com/hatiolab/operato/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-04-14)
420
+
421
+ ## [1.0.0-beta.3](https://github.com/hatiolab/operato/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2022-04-12)
422
+
423
+ ## [1.0.0-beta.2](https://github.com/hatiolab/operato/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2022-04-12)
424
+
425
+
426
+ ### :rocket: New Features
427
+
428
+ * add 'empty' button into ox-grist-editor-resource-object ([d739d23](https://github.com/hatiolab/operato/commit/d739d23686ea9487e2b9d887c451290638d3633e))
429
+
430
+ ## [1.0.0-beta.1](https://github.com/hatiolab/operato/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2022-04-11)
431
+
432
+ ## [1.0.0-beta.0](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.53...v1.0.0-beta.0) (2022-04-10)
433
+
434
+ ## [1.0.0-alpha.53](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.52...v1.0.0-alpha.53) (2022-04-08)
435
+
436
+ ## [1.0.0-alpha.52](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.51...v1.0.0-alpha.52) (2022-04-08)
437
+
438
+ ## [1.0.0-alpha.51](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.50...v1.0.0-alpha.51) (2022-04-05)
439
+
440
+ ## [1.0.0-alpha.50](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2022-04-04)
441
+
442
+ ## [1.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2022-04-04)
443
+
444
+
445
+ ### :bug: Bug Fix
446
+
447
+ * lit@2.2.1 ([6707752](https://github.com/hatiolab/operato/commit/6707752907d24f7ecbe248cba18a4b18cfda282f))
448
+
449
+
450
+ ### :rocket: New Features
451
+
452
+ * translation crontab for ox-grist-renderer-crontab ([c13d6ef](https://github.com/hatiolab/operato/commit/c13d6efab9ff02ceb4b4d244455a480070a80a3e))
453
+
454
+ ## [1.0.0-alpha.48](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.47...v1.0.0-alpha.48) (2022-04-03)
455
+
456
+
457
+ ### :bug: Bug Fix
458
+
459
+ * event handling for clicking magnify icon in filters-form - fetch data forcely ([cc17a05](https://github.com/hatiolab/operato/commit/cc17a056807a6e5018ee89d1f6be91e463671bac))
460
+
461
+
462
+ ### :rocket: New Features
463
+
464
+ * support copy and paste in data-grid ([9dd686f](https://github.com/hatiolab/operato/commit/9dd686f6817500863a1c36140ef01b39fcafef9f))
465
+
466
+ ## [1.0.0-alpha.47](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.46...v1.0.0-alpha.47) (2022-04-02)
467
+
468
+
469
+ ### :bug: Bug Fix
470
+
471
+ * ox-input-work-shift bug ([0a7ae96](https://github.com/hatiolab/operato/commit/0a7ae96e404eb6c846291075e12ac7fcfb9f88f9))
472
+ * ox-input-work-shift header ([816dbd0](https://github.com/hatiolab/operato/commit/816dbd06e53a44a29413e7605431ad62f2090a43))
473
+
474
+ ## [1.0.0-alpha.46](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.45...v1.0.0-alpha.46) (2022-04-02)
475
+
476
+
477
+ ### :rocket: New Features
478
+
479
+ * add ox-input-work-shift ([f5c78e7](https://github.com/hatiolab/operato/commit/f5c78e7e9bfcbc456e9da269d069f843ee3e043c))
480
+
481
+ ## [1.0.0-alpha.45](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.44...v1.0.0-alpha.45) (2022-03-31)
482
+
483
+ ## [1.0.0-alpha.44](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.43...v1.0.0-alpha.44) (2022-03-31)
484
+
485
+ ## [1.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.42...v1.0.0-alpha.43) (2022-03-30)
486
+
487
+ ## [1.0.0-alpha.42](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.41...v1.0.0-alpha.42) (2022-03-29)
488
+
489
+ ## [1.0.0-alpha.41](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.40...v1.0.0-alpha.41) (2022-03-27)
490
+
491
+
492
+ ### :rocket: New Features
493
+
494
+ * grid-header filter integrated with filters-form ([ebecb71](https://github.com/hatiolab/operato/commit/ebecb71133d38bb8358909660319de6cb5b45d7d))
495
+
496
+ ## [1.0.0-alpha.40](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.39...v1.0.0-alpha.40) (2022-03-26)
497
+
498
+
499
+ ### :bug: Bug Fix
500
+
501
+ * ox-select label ([7f4a208](https://github.com/hatiolab/operato/commit/7f4a208d4ebadf459c48331774c88e68a72ae90d))
502
+
503
+ ## [1.0.0-alpha.39](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.38...v1.0.0-alpha.39) (2022-03-25)
504
+
505
+ ## [1.0.0-alpha.38](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.37...v1.0.0-alpha.38) (2022-03-25)
506
+
507
+ ## [1.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.36...v1.0.0-alpha.37) (2022-03-25)
508
+
509
+
510
+ ### :bug: Bug Fix
511
+
512
+ * ox-input-partition-keys ([65883a3](https://github.com/hatiolab/operato/commit/65883a3a8419390c8cd7eb37177fe1b3e0530e1a))
513
+
514
+ ## [1.0.0-alpha.36](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.35...v1.0.0-alpha.36) (2022-03-21)
515
+
516
+ ## [1.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) (2022-03-21)
517
+
518
+ ## [1.0.0-alpha.34](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) (2022-03-20)
519
+
520
+ ## [1.0.0-alpha.33](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.32...v1.0.0-alpha.33) (2022-03-19)
521
+
522
+ ## [1.0.0-alpha.32](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2022-03-19)
523
+
524
+ ## [1.0.0-alpha.31](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.30...v1.0.0-alpha.31) (2022-03-19)
525
+
526
+
527
+ ### :bug: Bug Fix
528
+
529
+ * partition-keys related ui components ([c21b4d2](https://github.com/hatiolab/operato/commit/c21b4d292ca4a6d6b4bf774a570dbabd349528fc))
530
+
531
+ ## [1.0.0-alpha.30](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.29...v1.0.0-alpha.30) (2022-03-18)
532
+
533
+ ## [1.0.0-alpha.29](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2022-03-17)
534
+
535
+
536
+ ### :bug: Bug Fix
537
+
538
+ * datalist in ox-input-partition-keys ([a25e3a6](https://github.com/hatiolab/operato/commit/a25e3a66cf5f7a25bca057be90ef336b29e915a7))
539
+
540
+ ## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
541
+
542
+
543
+ ### :rocket: New Features
544
+
545
+ * add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
546
+
547
+ ## [1.0.0-alpha.26](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2022-03-17)
548
+
549
+ ## [1.0.0-alpha.25](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2022-03-17)
550
+
551
+ ## [1.0.0-alpha.24](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2022-03-17)
552
+
553
+
554
+ ### :bug: Bug Fix
555
+
556
+ * refactoring grist-editor, property-editor and input ([ea7431a](https://github.com/hatiolab/operato/commit/ea7431a5e2dfd96ef392c1905e9622df7c2ef88c))
557
+
558
+ ## [1.0.0-alpha.23](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2022-03-17)
559
+
560
+ ## [1.0.0-alpha.22](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2022-03-17)
561
+
562
+ ## [1.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2022-03-16)
563
+
564
+
565
+ ### :rocket: New Features
566
+
567
+ * @operato/ccp module added ([f08ba5a](https://github.com/hatiolab/operato/commit/f08ba5a464c04b7fb132c6f18de975997087846a))
568
+ * add ccp module ([cbea635](https://github.com/hatiolab/operato/commit/cbea635d5f638d49fc99d68cc1727ac3e06ddf22))
569
+
570
+
571
+ ### :bug: Bug Fix
572
+
573
+ * add missing exporting ([844d9e7](https://github.com/hatiolab/operato/commit/844d9e7331c2e966eb7a5351a8755b7f1e599e3e))
574
+ * demo ([6fa3eac](https://github.com/hatiolab/operato/commit/6fa3eac612bd98ce25e3ef6d8ce89527d7152fb4))
575
+
576
+ ## [1.0.0-alpha.20](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2022-03-15)
577
+
578
+ ## [1.0.0-alpha.19](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2022-03-14)
579
+
580
+ ## [1.0.0-alpha.18](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2022-03-14)
581
+
582
+ ## [1.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2022-03-13)
583
+
584
+ ## [1.0.0-alpha.16](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2022-03-13)
585
+
586
+ ## [1.0.0-alpha.15](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2022-03-13)
587
+
588
+
589
+ ### :rocket: New Features
590
+
591
+ * migrate input, property-editor from things-factory ([dbd5e73](https://github.com/hatiolab/operato/commit/dbd5e73eac328e72c4bb7abd113a819532bc894d))
592
+
593
+ ## [1.0.0-alpha.14](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2022-03-13)
594
+
595
+ ## [1.0.0-alpha.13](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2022-03-13)
596
+
597
+
598
+ ### :bug: Bug Fix
599
+
600
+ * typos ([71447fa](https://github.com/hatiolab/operato/commit/71447fa2dfb52c5e45909baac735c2e195856256))
601
+
602
+ ## [1.0.0-alpha.12](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) (2022-03-13)
603
+
604
+
605
+ ### :rocket: New Features
606
+
607
+ * migrate input, property-editor from things-factory ([4800d85](https://github.com/hatiolab/operato/commit/4800d859473bf623325233a7f2af851e5d093dcb))
608
+
609
+ ## [1.0.0-alpha.11](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) (2022-03-12)
610
+
611
+ ## [1.0.0-alpha.10](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2022-03-12)
612
+
613
+
614
+ ### :bug: Bug Fix
615
+
616
+ * style ([89ba680](https://github.com/hatiolab/operato/commit/89ba68072c3141b6bbcad3378cc6980670ef4198))
617
+
618
+ ## [1.0.0-alpha.9](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) (2022-03-12)
619
+
620
+
621
+ ### :rocket: New Features
622
+
623
+ * settled concept for input, property-editor, grist-editor, so on ([0c9e1d0](https://github.com/hatiolab/operato/commit/0c9e1d054c7aef5d965868242cf471667af7a3c3))
624
+
625
+ ## [1.0.0-alpha.8](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2022-03-11)
626
+
627
+ ## [1.0.0-alpha.7](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2022-03-11)
628
+
629
+ ## [1.0.0-alpha.6](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2022-03-11)
630
+
631
+ ## [1.0.0-alpha.5](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2022-03-11)
632
+
633
+
634
+ ### :rocket: New Features
635
+
636
+ * migrate property-editor from things-factory ([272cdaa](https://github.com/hatiolab/operato/commit/272cdaafd74f3c3c597403f88655cb5cf4a81313))
637
+ * migrated property-editors from things-factory ([9d0b73a](https://github.com/hatiolab/operato/commit/9d0b73a8c05187e7ca8db874ddde8c977ec52a55))
638
+
639
+ ## [1.0.0-alpha.4](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2022-03-11)
640
+
641
+ ## [1.0.0-alpha.3](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2022-03-10)
642
+
643
+ ## [1.0.0-alpha.2](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2022-03-10)
644
+
645
+ ## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09)
646
+
647
+
648
+ ### :rocket: New Features
649
+
650
+ * 1.0-alpha ([42f87cf](https://github.com/hatiolab/operato/commit/42f87cf6a3cef0381db91ecb1179e63c64c01370))
651
+
652
+
653
+
6
654
  ## [1.0.0-beta.5](https://github.com/hatiolab/operato/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-04-18)
7
655
 
8
656
  **Note:** Version bump only for package @operato/input