@operato/utils 1.0.0-beta.1 → 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.
- package/CHANGELOG.md +140 -294
- package/dist/src/clipboard.d.ts +1 -0
- package/dist/src/clipboard.js +20 -0
- package/dist/src/clipboard.js.map +1 -0
- package/dist/src/format.d.ts +1 -0
- package/dist/src/format.js +82 -0
- package/dist/src/format.js.map +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +2 -0
- package/dist/src/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -2
- package/src/clipboard.ts +20 -0
- package/src/format.ts +108 -0
- package/src/index.ts +2 -0
package/CHANGELOG.md
CHANGED
@@ -3,24 +3,16 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
-
## [1.0.0-beta.
|
7
|
-
|
8
|
-
**Note:** Version bump only for package @operato/utils
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
## [1.0.0-beta.0](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.53...v1.0.0-beta.0) (2022-04-10)
|
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)
|
15
7
|
|
16
8
|
|
17
9
|
### :rocket: New Features
|
18
10
|
|
19
|
-
*
|
11
|
+
* add format option for text-renderer ([c58375b](https://github.com/hatiolab/operato/commit/c58375b05fb69db03a9081c41ea4ff11437834b1))
|
20
12
|
|
21
13
|
|
22
14
|
|
23
|
-
## [1.0.0-
|
15
|
+
## [1.0.0-beta.9](https://github.com/hatiolab/operato/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2022-04-28)
|
24
16
|
|
25
17
|
**Note:** Version bump only for package @operato/utils
|
26
18
|
|
@@ -28,7 +20,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
28
20
|
|
29
21
|
|
30
22
|
|
31
|
-
## [1.0.0-
|
23
|
+
## [1.0.0-beta.8](https://github.com/hatiolab/operato/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2022-04-27)
|
32
24
|
|
33
25
|
**Note:** Version bump only for package @operato/utils
|
34
26
|
|
@@ -36,7 +28,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
36
28
|
|
37
29
|
|
38
30
|
|
39
|
-
## [1.0.0-
|
31
|
+
## [1.0.0-beta.7](https://github.com/hatiolab/operato/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2022-04-24)
|
40
32
|
|
41
33
|
**Note:** Version bump only for package @operato/utils
|
42
34
|
|
@@ -44,689 +36,543 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
44
36
|
|
45
37
|
|
46
38
|
|
47
|
-
## [1.0.0-
|
39
|
+
## [1.0.0-beta.6](https://github.com/hatiolab/operato/compare/v0.4.5...v1.0.0-beta.6) (2022-04-22)
|
48
40
|
|
49
|
-
**Note:** Version bump only for package @operato/utils
|
50
41
|
|
42
|
+
### :bug: Bug Fix
|
51
43
|
|
44
|
+
* clipboard fallback ([8d69c1f](https://github.com/hatiolab/operato/commit/8d69c1fd2113d5cd4ede9f60fa4b5ec7e06e9759))
|
52
45
|
|
46
|
+
## [1.0.0-beta.5](https://github.com/hatiolab/operato/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-04-18)
|
53
47
|
|
48
|
+
## [1.0.0-beta.4](https://github.com/hatiolab/operato/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-04-14)
|
54
49
|
|
55
|
-
## [1.0.0-
|
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)
|
56
51
|
|
57
|
-
|
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)
|
58
53
|
|
54
|
+
## [1.0.0-beta.1](https://github.com/hatiolab/operato/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2022-04-11)
|
59
55
|
|
56
|
+
## [1.0.0-beta.0](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.53...v1.0.0-beta.0) (2022-04-10)
|
60
57
|
|
61
58
|
|
59
|
+
### :rocket: New Features
|
62
60
|
|
63
|
-
|
61
|
+
* support undo/redo for data-grist ([b7e6c1f](https://github.com/hatiolab/operato/commit/b7e6c1fb47910a3fc3acb0352472ad19cf4e13d2))
|
64
62
|
|
65
|
-
|
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)
|
66
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)
|
67
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
68
|
|
69
|
+
## [1.0.0-alpha.50](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2022-04-04)
|
69
70
|
|
71
|
+
## [1.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2022-04-04)
|
72
|
+
|
73
|
+
## [1.0.0-alpha.48](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.47...v1.0.0-alpha.48) (2022-04-03)
|
70
74
|
|
71
75
|
## [1.0.0-alpha.47](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.46...v1.0.0-alpha.47) (2022-04-02)
|
72
76
|
|
73
|
-
|
77
|
+
## [1.0.0-alpha.46](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.45...v1.0.0-alpha.46) (2022-04-02)
|
74
78
|
|
79
|
+
## [1.0.0-alpha.45](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.44...v1.0.0-alpha.45) (2022-03-31)
|
75
80
|
|
81
|
+
## [1.0.0-alpha.44](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.43...v1.0.0-alpha.44) (2022-03-31)
|
76
82
|
|
83
|
+
## [1.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.42...v1.0.0-alpha.43) (2022-03-30)
|
77
84
|
|
85
|
+
## [1.0.0-alpha.42](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.41...v1.0.0-alpha.42) (2022-03-29)
|
78
86
|
|
79
|
-
## [1.0.0-alpha.
|
87
|
+
## [1.0.0-alpha.41](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.40...v1.0.0-alpha.41) (2022-03-27)
|
80
88
|
|
81
|
-
|
89
|
+
## [1.0.0-alpha.40](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.39...v1.0.0-alpha.40) (2022-03-26)
|
82
90
|
|
91
|
+
## [1.0.0-alpha.39](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.38...v1.0.0-alpha.39) (2022-03-25)
|
83
92
|
|
93
|
+
## [1.0.0-alpha.38](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.37...v1.0.0-alpha.38) (2022-03-25)
|
84
94
|
|
95
|
+
## [1.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.36...v1.0.0-alpha.37) (2022-03-25)
|
85
96
|
|
97
|
+
## [1.0.0-alpha.36](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.35...v1.0.0-alpha.36) (2022-03-21)
|
86
98
|
|
87
|
-
## [1.0.0-alpha.
|
99
|
+
## [1.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) (2022-03-21)
|
88
100
|
|
89
|
-
|
101
|
+
## [1.0.0-alpha.34](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) (2022-03-20)
|
90
102
|
|
103
|
+
## [1.0.0-alpha.33](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.32...v1.0.0-alpha.33) (2022-03-19)
|
91
104
|
|
105
|
+
## [1.0.0-alpha.32](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2022-03-19)
|
92
106
|
|
107
|
+
## [1.0.0-alpha.31](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.30...v1.0.0-alpha.31) (2022-03-19)
|
93
108
|
|
94
109
|
|
95
|
-
|
110
|
+
### :bug: Bug Fix
|
96
111
|
|
97
|
-
|
112
|
+
* ox-grist-renderer support class type renderer (refer ox-grist-renderer-progress) ([ad7c8e1](https://github.com/hatiolab/operato/commit/ad7c8e1b453d19af9daa13ae4eb7c2059d85dfbb))
|
98
113
|
|
114
|
+
## [1.0.0-alpha.30](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.29...v1.0.0-alpha.30) (2022-03-18)
|
99
115
|
|
116
|
+
## [1.0.0-alpha.29](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2022-03-17)
|
100
117
|
|
118
|
+
## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
|
101
119
|
|
120
|
+
## [1.0.0-alpha.26](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2022-03-17)
|
102
121
|
|
103
|
-
## [1.0.0-alpha.
|
122
|
+
## [1.0.0-alpha.25](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2022-03-17)
|
104
123
|
|
105
|
-
|
124
|
+
## [1.0.0-alpha.24](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2022-03-17)
|
106
125
|
|
126
|
+
## [1.0.0-alpha.23](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2022-03-17)
|
107
127
|
|
128
|
+
## [1.0.0-alpha.22](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2022-03-17)
|
108
129
|
|
130
|
+
## [1.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2022-03-16)
|
109
131
|
|
132
|
+
## [1.0.0-alpha.20](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2022-03-15)
|
110
133
|
|
111
|
-
## [1.0.0-alpha.
|
134
|
+
## [1.0.0-alpha.19](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2022-03-14)
|
112
135
|
|
113
|
-
|
136
|
+
## [1.0.0-alpha.18](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2022-03-14)
|
114
137
|
|
138
|
+
## [1.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2022-03-13)
|
115
139
|
|
140
|
+
## [1.0.0-alpha.16](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2022-03-13)
|
116
141
|
|
142
|
+
## [1.0.0-alpha.15](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2022-03-13)
|
117
143
|
|
144
|
+
## [1.0.0-alpha.14](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2022-03-13)
|
118
145
|
|
119
|
-
## [1.0.0-alpha.
|
146
|
+
## [1.0.0-alpha.13](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2022-03-13)
|
120
147
|
|
121
|
-
|
148
|
+
## [1.0.0-alpha.12](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) (2022-03-13)
|
122
149
|
|
150
|
+
## [1.0.0-alpha.11](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) (2022-03-12)
|
123
151
|
|
152
|
+
## [1.0.0-alpha.10](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2022-03-12)
|
124
153
|
|
154
|
+
## [1.0.0-alpha.9](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) (2022-03-12)
|
125
155
|
|
126
156
|
|
127
|
-
|
157
|
+
### :rocket: New Features
|
128
158
|
|
129
|
-
|
159
|
+
* settled concept for input, property-editor, grist-editor, so on ([0c9e1d0](https://github.com/hatiolab/operato/commit/0c9e1d054c7aef5d965868242cf471667af7a3c3))
|
130
160
|
|
161
|
+
## [1.0.0-alpha.8](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2022-03-11)
|
131
162
|
|
163
|
+
## [1.0.0-alpha.7](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2022-03-11)
|
132
164
|
|
165
|
+
## [1.0.0-alpha.6](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2022-03-11)
|
133
166
|
|
167
|
+
## [1.0.0-alpha.5](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2022-03-11)
|
134
168
|
|
135
|
-
## [1.0.0-alpha.
|
169
|
+
## [1.0.0-alpha.4](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2022-03-11)
|
136
170
|
|
137
|
-
|
171
|
+
## [1.0.0-alpha.3](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2022-03-10)
|
138
172
|
|
173
|
+
## [1.0.0-alpha.2](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2022-03-10)
|
139
174
|
|
175
|
+
## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09)
|
140
176
|
|
141
177
|
|
142
178
|
|
143
|
-
## [1.0.0-
|
179
|
+
## [1.0.0-beta.5](https://github.com/hatiolab/operato/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-04-18)
|
144
180
|
|
145
181
|
**Note:** Version bump only for package @operato/utils
|
146
182
|
|
183
|
+
## [1.0.0-beta.4](https://github.com/hatiolab/operato/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-04-14)
|
147
184
|
|
185
|
+
**Note:** Version bump only for package @operato/utils
|
148
186
|
|
187
|
+
## [1.0.0-beta.3](https://github.com/hatiolab/operato/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2022-04-12)
|
149
188
|
|
189
|
+
**Note:** Version bump only for package @operato/utils
|
150
190
|
|
151
|
-
## [1.0.0-
|
191
|
+
## [1.0.0-beta.2](https://github.com/hatiolab/operato/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2022-04-12)
|
152
192
|
|
153
193
|
**Note:** Version bump only for package @operato/utils
|
154
194
|
|
195
|
+
## [1.0.0-beta.1](https://github.com/hatiolab/operato/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2022-04-11)
|
155
196
|
|
197
|
+
**Note:** Version bump only for package @operato/utils
|
156
198
|
|
199
|
+
## [1.0.0-beta.0](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.53...v1.0.0-beta.0) (2022-04-10)
|
157
200
|
|
201
|
+
### :rocket: New Features
|
158
202
|
|
159
|
-
|
203
|
+
- support undo/redo for data-grist ([b7e6c1f](https://github.com/hatiolab/operato/commit/b7e6c1fb47910a3fc3acb0352472ad19cf4e13d2))
|
204
|
+
|
205
|
+
## [1.0.0-alpha.53](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.52...v1.0.0-alpha.53) (2022-04-08)
|
160
206
|
|
161
207
|
**Note:** Version bump only for package @operato/utils
|
162
208
|
|
209
|
+
## [1.0.0-alpha.52](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.51...v1.0.0-alpha.52) (2022-04-08)
|
163
210
|
|
211
|
+
**Note:** Version bump only for package @operato/utils
|
164
212
|
|
213
|
+
## [1.0.0-alpha.51](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.50...v1.0.0-alpha.51) (2022-04-05)
|
165
214
|
|
215
|
+
**Note:** Version bump only for package @operato/utils
|
166
216
|
|
167
|
-
## [1.0.0-alpha.
|
217
|
+
## [1.0.0-alpha.50](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2022-04-04)
|
168
218
|
|
169
219
|
**Note:** Version bump only for package @operato/utils
|
170
220
|
|
221
|
+
## [1.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2022-04-04)
|
171
222
|
|
223
|
+
**Note:** Version bump only for package @operato/utils
|
172
224
|
|
225
|
+
## [1.0.0-alpha.48](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.47...v1.0.0-alpha.48) (2022-04-03)
|
173
226
|
|
227
|
+
**Note:** Version bump only for package @operato/utils
|
174
228
|
|
175
|
-
## [1.0.0-alpha.
|
229
|
+
## [1.0.0-alpha.47](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.46...v1.0.0-alpha.47) (2022-04-02)
|
176
230
|
|
177
231
|
**Note:** Version bump only for package @operato/utils
|
178
232
|
|
233
|
+
## [1.0.0-alpha.46](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.45...v1.0.0-alpha.46) (2022-04-02)
|
179
234
|
|
235
|
+
**Note:** Version bump only for package @operato/utils
|
180
236
|
|
237
|
+
## [1.0.0-alpha.45](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.44...v1.0.0-alpha.45) (2022-03-31)
|
181
238
|
|
239
|
+
**Note:** Version bump only for package @operato/utils
|
182
240
|
|
183
|
-
## [1.0.0-alpha.
|
241
|
+
## [1.0.0-alpha.44](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.43...v1.0.0-alpha.44) (2022-03-31)
|
184
242
|
|
185
243
|
**Note:** Version bump only for package @operato/utils
|
186
244
|
|
245
|
+
## [1.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.42...v1.0.0-alpha.43) (2022-03-30)
|
187
246
|
|
247
|
+
**Note:** Version bump only for package @operato/utils
|
188
248
|
|
249
|
+
## [1.0.0-alpha.42](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.41...v1.0.0-alpha.42) (2022-03-29)
|
189
250
|
|
251
|
+
**Note:** Version bump only for package @operato/utils
|
190
252
|
|
191
|
-
## [1.0.0-alpha.
|
253
|
+
## [1.0.0-alpha.41](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.40...v1.0.0-alpha.41) (2022-03-27)
|
192
254
|
|
193
255
|
**Note:** Version bump only for package @operato/utils
|
194
256
|
|
257
|
+
## [1.0.0-alpha.40](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.39...v1.0.0-alpha.40) (2022-03-26)
|
195
258
|
|
259
|
+
**Note:** Version bump only for package @operato/utils
|
196
260
|
|
261
|
+
## [1.0.0-alpha.39](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.38...v1.0.0-alpha.39) (2022-03-25)
|
197
262
|
|
263
|
+
**Note:** Version bump only for package @operato/utils
|
198
264
|
|
199
|
-
## [1.0.0-alpha.
|
265
|
+
## [1.0.0-alpha.38](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.37...v1.0.0-alpha.38) (2022-03-25)
|
200
266
|
|
267
|
+
**Note:** Version bump only for package @operato/utils
|
201
268
|
|
202
|
-
|
269
|
+
## [1.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.36...v1.0.0-alpha.37) (2022-03-25)
|
203
270
|
|
204
|
-
|
271
|
+
**Note:** Version bump only for package @operato/utils
|
205
272
|
|
273
|
+
## [1.0.0-alpha.36](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.35...v1.0.0-alpha.36) (2022-03-21)
|
206
274
|
|
275
|
+
**Note:** Version bump only for package @operato/utils
|
207
276
|
|
208
|
-
## [1.0.0-alpha.
|
277
|
+
## [1.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) (2022-03-21)
|
209
278
|
|
210
279
|
**Note:** Version bump only for package @operato/utils
|
211
280
|
|
281
|
+
## [1.0.0-alpha.34](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) (2022-03-20)
|
212
282
|
|
283
|
+
**Note:** Version bump only for package @operato/utils
|
213
284
|
|
285
|
+
## [1.0.0-alpha.33](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.32...v1.0.0-alpha.33) (2022-03-19)
|
214
286
|
|
287
|
+
**Note:** Version bump only for package @operato/utils
|
215
288
|
|
216
|
-
## [1.0.0-alpha.
|
289
|
+
## [1.0.0-alpha.32](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2022-03-19)
|
217
290
|
|
218
291
|
**Note:** Version bump only for package @operato/utils
|
219
292
|
|
293
|
+
## [1.0.0-alpha.31](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.30...v1.0.0-alpha.31) (2022-03-19)
|
220
294
|
|
295
|
+
### :bug: Bug Fix
|
221
296
|
|
297
|
+
- ox-grist-renderer support class type renderer (refer ox-grist-renderer-progress) ([ad7c8e1](https://github.com/hatiolab/operato/commit/ad7c8e1b453d19af9daa13ae4eb7c2059d85dfbb))
|
222
298
|
|
223
|
-
|
224
|
-
## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
|
299
|
+
## [1.0.0-alpha.30](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.29...v1.0.0-alpha.30) (2022-03-18)
|
225
300
|
|
226
301
|
**Note:** Version bump only for package @operato/utils
|
227
302
|
|
303
|
+
## [1.0.0-alpha.29](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2022-03-17)
|
228
304
|
|
305
|
+
**Note:** Version bump only for package @operato/utils
|
229
306
|
|
307
|
+
## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
|
230
308
|
|
309
|
+
**Note:** Version bump only for package @operato/utils
|
231
310
|
|
232
311
|
## [1.0.0-alpha.27](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.27) (2022-03-17)
|
233
312
|
|
234
313
|
**Note:** Version bump only for package @operato/utils
|
235
314
|
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
315
|
## [1.0.0-alpha.26](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2022-03-17)
|
241
316
|
|
242
317
|
**Note:** Version bump only for package @operato/utils
|
243
318
|
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
319
|
## [1.0.0-alpha.25](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2022-03-17)
|
249
320
|
|
250
321
|
**Note:** Version bump only for package @operato/utils
|
251
322
|
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
323
|
## [1.0.0-alpha.24](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2022-03-17)
|
257
324
|
|
258
325
|
**Note:** Version bump only for package @operato/utils
|
259
326
|
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
327
|
## [1.0.0-alpha.23](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2022-03-17)
|
265
328
|
|
266
329
|
**Note:** Version bump only for package @operato/utils
|
267
330
|
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
331
|
## [1.0.0-alpha.22](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2022-03-17)
|
273
332
|
|
274
333
|
**Note:** Version bump only for package @operato/utils
|
275
334
|
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
335
|
## [1.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2022-03-16)
|
281
336
|
|
282
337
|
**Note:** Version bump only for package @operato/utils
|
283
338
|
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
339
|
## [1.0.0-alpha.20](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2022-03-15)
|
289
340
|
|
290
341
|
**Note:** Version bump only for package @operato/utils
|
291
342
|
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
343
|
## [1.0.0-alpha.19](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2022-03-14)
|
297
344
|
|
298
345
|
**Note:** Version bump only for package @operato/utils
|
299
346
|
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
347
|
## [1.0.0-alpha.18](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2022-03-14)
|
305
348
|
|
306
349
|
**Note:** Version bump only for package @operato/utils
|
307
350
|
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
351
|
## [1.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2022-03-13)
|
313
352
|
|
314
353
|
**Note:** Version bump only for package @operato/utils
|
315
354
|
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
355
|
## [1.0.0-alpha.16](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2022-03-13)
|
321
356
|
|
322
357
|
**Note:** Version bump only for package @operato/utils
|
323
358
|
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
359
|
## [1.0.0-alpha.15](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2022-03-13)
|
329
360
|
|
330
361
|
**Note:** Version bump only for package @operato/utils
|
331
362
|
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
363
|
## [1.0.0-alpha.14](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2022-03-13)
|
337
364
|
|
338
365
|
**Note:** Version bump only for package @operato/utils
|
339
366
|
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
367
|
## [1.0.0-alpha.13](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2022-03-13)
|
345
368
|
|
346
369
|
**Note:** Version bump only for package @operato/utils
|
347
370
|
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
371
|
## [1.0.0-alpha.12](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) (2022-03-13)
|
353
372
|
|
354
373
|
**Note:** Version bump only for package @operato/utils
|
355
374
|
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
375
|
## [1.0.0-alpha.11](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) (2022-03-12)
|
361
376
|
|
362
377
|
**Note:** Version bump only for package @operato/utils
|
363
378
|
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
379
|
## [1.0.0-alpha.10](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2022-03-12)
|
369
380
|
|
370
381
|
**Note:** Version bump only for package @operato/utils
|
371
382
|
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
383
|
## [1.0.0-alpha.9](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) (2022-03-12)
|
377
384
|
|
378
|
-
|
379
385
|
### :rocket: New Features
|
380
386
|
|
381
|
-
|
382
|
-
|
383
|
-
|
387
|
+
- settled concept for input, property-editor, grist-editor, so on ([0c9e1d0](https://github.com/hatiolab/operato/commit/0c9e1d054c7aef5d965868242cf471667af7a3c3))
|
384
388
|
|
385
389
|
## [1.0.0-alpha.8](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2022-03-11)
|
386
390
|
|
387
391
|
**Note:** Version bump only for package @operato/utils
|
388
392
|
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
393
|
## [1.0.0-alpha.7](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2022-03-11)
|
394
394
|
|
395
395
|
**Note:** Version bump only for package @operato/utils
|
396
396
|
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
397
|
## [1.0.0-alpha.6](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2022-03-11)
|
402
398
|
|
403
399
|
**Note:** Version bump only for package @operato/utils
|
404
400
|
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
401
|
## [1.0.0-alpha.5](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2022-03-11)
|
410
402
|
|
411
403
|
**Note:** Version bump only for package @operato/utils
|
412
404
|
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
405
|
## [1.0.0-alpha.4](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2022-03-11)
|
418
406
|
|
419
407
|
**Note:** Version bump only for package @operato/utils
|
420
408
|
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
409
|
## [1.0.0-alpha.3](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2022-03-10)
|
426
410
|
|
427
411
|
**Note:** Version bump only for package @operato/utils
|
428
412
|
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
413
|
## [1.0.0-alpha.2](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2022-03-10)
|
434
414
|
|
435
415
|
**Note:** Version bump only for package @operato/utils
|
436
416
|
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
417
|
## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09)
|
442
418
|
|
443
419
|
**Note:** Version bump only for package @operato/utils
|
444
420
|
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
421
|
### [0.4.3](https://github.com/hatiolab/operato/compare/v0.4.2...v0.4.3) (2022-03-06)
|
450
422
|
|
451
423
|
**Note:** Version bump only for package @operato/utils
|
452
424
|
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
425
|
### [0.4.2](https://github.com/hatiolab/operato/compare/v0.4.1...v0.4.2) (2022-03-06)
|
458
426
|
|
459
427
|
**Note:** Version bump only for package @operato/utils
|
460
428
|
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
429
|
### [0.4.1](https://github.com/hatiolab/operato/compare/v0.4.0...v0.4.1) (2022-03-02)
|
466
430
|
|
467
|
-
|
468
431
|
### :bug: Bug Fix
|
469
432
|
|
470
|
-
|
471
|
-
|
472
|
-
|
433
|
+
- lodash => lodash-es, remove underscore ([08cbef1](https://github.com/hatiolab/operato/commit/08cbef1e63e28c96e7341bce1910ae7baed889e2))
|
473
434
|
|
474
435
|
## [0.4.0](https://github.com/hatiolab/operato/compare/v0.3.28...v0.4.0) (2022-02-22)
|
475
436
|
|
476
|
-
|
477
437
|
### :bug: Bug Fix
|
478
438
|
|
479
|
-
|
480
|
-
|
481
|
-
|
439
|
+
- build problem because testing framework confilct with lit 2.2.0 ([596deda](https://github.com/hatiolab/operato/commit/596dedaa29a537c5ec92a2449e8cd08a0b11bfde))
|
482
440
|
|
483
441
|
### [0.3.28](https://github.com/hatiolab/operato/compare/v0.3.27...v0.3.28) (2022-02-08)
|
484
442
|
|
485
443
|
**Note:** Version bump only for package @operato/utils
|
486
444
|
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
445
|
### [0.3.27](https://github.com/hatiolab/operato/compare/v0.3.26...v0.3.27) (2022-02-01)
|
492
446
|
|
493
447
|
**Note:** Version bump only for package @operato/utils
|
494
448
|
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
449
|
### [0.3.26](https://github.com/hatiolab/operato/compare/v0.3.25...v0.3.26) (2022-01-31)
|
500
450
|
|
501
451
|
**Note:** Version bump only for package @operato/utils
|
502
452
|
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
453
|
### [0.3.25](https://github.com/hatiolab/operato/compare/v0.3.24...v0.3.25) (2022-01-31)
|
508
454
|
|
509
455
|
**Note:** Version bump only for package @operato/utils
|
510
456
|
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
457
|
### [0.3.24](https://github.com/hatiolab/operato/compare/v0.3.23...v0.3.24) (2022-01-30)
|
516
458
|
|
517
459
|
**Note:** Version bump only for package @operato/utils
|
518
460
|
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
461
|
### [0.3.23](https://github.com/hatiolab/operato/compare/v0.3.22...v0.3.23) (2022-01-30)
|
524
462
|
|
525
463
|
**Note:** Version bump only for package @operato/utils
|
526
464
|
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
465
|
### [0.3.22](https://github.com/hatiolab/operato/compare/v0.3.21...v0.3.22) (2022-01-30)
|
532
466
|
|
533
467
|
**Note:** Version bump only for package @operato/utils
|
534
468
|
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
469
|
### [0.3.21](https://github.com/hatiolab/operato/compare/v0.3.20...v0.3.21) (2022-01-29)
|
540
470
|
|
541
|
-
|
542
471
|
### :rocket: New Features
|
543
472
|
|
544
|
-
|
545
|
-
|
546
|
-
|
473
|
+
- i18n module added, shell module started to cover client core part ([a976dad](https://github.com/hatiolab/operato/commit/a976dad6353962e489d8e648af9598b6a51e5ec7))
|
547
474
|
|
548
475
|
### [0.3.20](https://github.com/hatiolab/operato/compare/v0.3.19...v0.3.20) (2022-01-28)
|
549
476
|
|
550
477
|
**Note:** Version bump only for package @operato/utils
|
551
478
|
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
479
|
### [0.3.19](https://github.com/hatiolab/operato/compare/v0.3.18...v0.3.19) (2022-01-25)
|
557
480
|
|
558
481
|
**Note:** Version bump only for package @operato/utils
|
559
482
|
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
483
|
### [0.3.18](https://github.com/hatiolab/operato/compare/v0.3.17...v0.3.18) (2022-01-23)
|
565
484
|
|
566
485
|
**Note:** Version bump only for package @operato/utils
|
567
486
|
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
487
|
### [0.3.17](https://github.com/hatiolab/operato/compare/v0.3.16...v0.3.17) (2022-01-20)
|
573
488
|
|
574
489
|
**Note:** Version bump only for package @operato/utils
|
575
490
|
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
491
|
### [0.3.16](https://github.com/hatiolab/operato/compare/v0.3.15...v0.3.16) (2022-01-19)
|
581
492
|
|
582
|
-
|
583
493
|
### :rocket: New Features
|
584
494
|
|
585
|
-
|
586
|
-
|
587
|
-
|
495
|
+
- closest-element in @operato/utils ([f517bde](https://github.com/hatiolab/operato/commit/f517bdea07de913a349da5cb99a25b5eab53548e))
|
588
496
|
|
589
497
|
### [0.3.15](https://github.com/hatiolab/operato/compare/v0.3.14...v0.3.15) (2022-01-17)
|
590
498
|
|
591
499
|
**Note:** Version bump only for package @operato/utils
|
592
500
|
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
501
|
### [0.3.14](https://github.com/hatiolab/operato/compare/v0.3.13...v0.3.14) (2022-01-16)
|
598
502
|
|
599
|
-
|
600
503
|
### :bug: Bug Fix
|
601
504
|
|
602
|
-
|
603
|
-
|
604
|
-
|
505
|
+
- support data-grist record view for thumbnail upload ([5c4f3d9](https://github.com/hatiolab/operato/commit/5c4f3d9e0e58c47619074a287bc6ada6519f11f7))
|
605
506
|
|
606
507
|
### [0.3.13](https://github.com/hatiolab/operato/compare/v0.3.12...v0.3.13) (2022-01-15)
|
607
508
|
|
608
509
|
**Note:** Version bump only for package @operato/utils
|
609
510
|
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
511
|
### [0.3.12](https://github.com/hatiolab/operato/compare/v0.3.11...v0.3.12) (2022-01-15)
|
615
512
|
|
616
513
|
**Note:** Version bump only for package @operato/utils
|
617
514
|
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
515
|
### [0.3.11](https://github.com/hatiolab/operato/compare/v0.3.10...v0.3.11) (2022-01-15)
|
623
516
|
|
624
517
|
**Note:** Version bump only for package @operato/utils
|
625
518
|
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
519
|
### [0.3.10](https://github.com/hatiolab/operato/compare/v0.3.9...v0.3.10) (2022-01-15)
|
631
520
|
|
632
|
-
|
633
521
|
### :bug: Bug Fix
|
634
522
|
|
635
|
-
|
636
|
-
|
637
|
-
|
523
|
+
- data-grist record-view ([aa71ec5](https://github.com/hatiolab/operato/commit/aa71ec5600f4dbccd05fcbc249445c73a41d2168))
|
638
524
|
|
639
525
|
### [0.3.9](https://github.com/hatiolab/operato/compare/v0.3.8...v0.3.9) (2022-01-15)
|
640
526
|
|
641
|
-
|
642
527
|
### :bug: Bug Fix
|
643
528
|
|
644
|
-
|
645
|
-
|
646
|
-
|
529
|
+
- move @operato/board/utils to @operato/utils ([06ba865](https://github.com/hatiolab/operato/commit/06ba865ac70bd65166fd20b6d23cc5241d9fca17))
|
647
530
|
|
648
531
|
### [0.3.8](https://github.com/hatiolab/operato/compare/v0.3.7...v0.3.8) (2022-01-14)
|
649
532
|
|
650
533
|
**Note:** Version bump only for package @operato/utils
|
651
534
|
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
535
|
### [0.3.7](https://github.com/hatiolab/operato/compare/v0.3.6...v0.3.7) (2022-01-09)
|
657
536
|
|
658
537
|
**Note:** Version bump only for package @operato/utils
|
659
538
|
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
539
|
### [0.3.6](https://github.com/hatiolab/operato/compare/v0.3.5...v0.3.6) (2022-01-09)
|
665
540
|
|
666
541
|
**Note:** Version bump only for package @operato/utils
|
667
542
|
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
543
|
### [0.3.5](https://github.com/hatiolab/operato/compare/v0.3.4...v0.3.5) (2022-01-09)
|
673
544
|
|
674
|
-
|
675
545
|
### :rocket: New Features
|
676
546
|
|
677
|
-
|
678
|
-
|
679
|
-
|
547
|
+
- data-grist filter-form support queryFilters property ([e477ede](https://github.com/hatiolab/operato/commit/e477ede184dac7bc6c40d4aab73c2f8156edaef6))
|
680
548
|
|
681
549
|
### [0.3.4](https://github.com/hatiolab/operato/compare/v0.3.3...v0.3.4) (2022-01-03)
|
682
550
|
|
683
551
|
**Note:** Version bump only for package @operato/utils
|
684
552
|
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
553
|
### [0.3.3](https://github.com/hatiolab/operato/compare/v0.3.2...v0.3.3) (2022-01-03)
|
690
554
|
|
691
555
|
**Note:** Version bump only for package @operato/utils
|
692
556
|
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
557
|
### [0.3.2](https://github.com/hatiolab/operato/compare/v0.3.1...v0.3.2) (2022-01-03)
|
698
558
|
|
699
559
|
**Note:** Version bump only for package @operato/utils
|
700
560
|
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
561
|
### [0.3.1](https://github.com/hatiolab/operato/compare/v0.3.0...v0.3.1) (2021-12-31)
|
706
562
|
|
707
563
|
**Note:** Version bump only for package @operato/utils
|
708
564
|
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
565
|
## [0.3.0](https://github.com/hatiolab/operato/compare/v0.2.52...v0.3.0) (2021-12-31)
|
714
566
|
|
715
|
-
|
716
567
|
### :rocket: New Features
|
717
568
|
|
718
|
-
|
719
|
-
|
720
|
-
|
569
|
+
- add tsconfig option useDefineForClassFields ([6291438](https://github.com/hatiolab/operato/commit/6291438571eee0f095064e7d2ada1c620832e092))
|
721
570
|
|
722
571
|
### [0.2.52](https://github.com/hatiolab/operato/compare/v0.2.51...v0.2.52) (2021-12-21)
|
723
572
|
|
724
|
-
|
725
573
|
### :rocket: New Features
|
726
574
|
|
727
|
-
|
728
|
-
|
729
|
-
|
575
|
+
- add @operato/utils and @operato/attachment ([15a9c19](https://github.com/hatiolab/operato/commit/15a9c19ff1237738abd3e3509ba9ede90280b766))
|
730
576
|
|
731
577
|
### [0.2.51](https://github.com/hatiolab/operato/compare/v0.2.50...v0.2.51) (2021-12-16)
|
732
578
|
|