@operato/grist-editor 2.0.0-alpha.12 → 2.0.0-alpha.121

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 (70) hide show
  1. package/CHANGELOG.md +623 -0
  2. package/dist/src/index.js +4 -0
  3. package/dist/src/index.js.map +1 -1
  4. package/dist/src/ox-grist-editor-crontab.d.ts +1 -1
  5. package/dist/src/ox-grist-editor-duration.d.ts +1 -1
  6. package/dist/src/ox-grist-editor-hashtags.d.ts +1 -1
  7. package/dist/src/ox-grist-editor-i18n-label.d.ts +13 -0
  8. package/dist/src/ox-grist-editor-i18n-label.js +85 -0
  9. package/dist/src/ox-grist-editor-i18n-label.js.map +1 -0
  10. package/dist/src/ox-grist-editor-parameters.d.ts +1 -1
  11. package/dist/src/ox-grist-editor-partition-keys.d.ts +1 -1
  12. package/dist/src/ox-grist-editor-partition-keys.js +1 -1
  13. package/dist/src/ox-grist-editor-partition-keys.js.map +1 -1
  14. package/dist/src/ox-grist-editor-quantifier.d.ts +1 -1
  15. package/dist/src/ox-grist-editor-value-map.d.ts +1 -1
  16. package/dist/src/ox-grist-editor-value-ranges.d.ts +1 -1
  17. package/dist/src/ox-grist-renderer-i18n-label.d.ts +2 -0
  18. package/dist/src/ox-grist-renderer-i18n-label.js +9 -0
  19. package/dist/src/ox-grist-renderer-i18n-label.js.map +1 -0
  20. package/dist/src/ox-grist-renderer-partition-keys.d.ts +1 -1
  21. package/dist/src/ox-grist-renderer-partition-keys.js +4 -4
  22. package/dist/src/ox-grist-renderer-partition-keys.js.map +1 -1
  23. package/dist/src/ox-parameters-builder.d.ts +15 -1
  24. package/dist/src/ox-parameters-builder.js +6 -0
  25. package/dist/src/ox-parameters-builder.js.map +1 -1
  26. package/dist/src/ox-popup-crontab-input.d.ts +2 -1
  27. package/dist/src/ox-popup-crontab-input.js +7 -8
  28. package/dist/src/ox-popup-crontab-input.js.map +1 -1
  29. package/dist/src/ox-popup-duration-input.d.ts +2 -1
  30. package/dist/src/ox-popup-duration-input.js +7 -8
  31. package/dist/src/ox-popup-duration-input.js.map +1 -1
  32. package/dist/src/ox-popup-hashtags-input.d.ts +2 -1
  33. package/dist/src/ox-popup-hashtags-input.js +8 -9
  34. package/dist/src/ox-popup-hashtags-input.js.map +1 -1
  35. package/dist/src/ox-popup-i18n-label-input.d.ts +16 -0
  36. package/dist/src/ox-popup-i18n-label-input.js +100 -0
  37. package/dist/src/ox-popup-i18n-label-input.js.map +1 -0
  38. package/dist/src/ox-popup-parameters-builder.d.ts +2 -1
  39. package/dist/src/ox-popup-parameters-builder.js +10 -8
  40. package/dist/src/ox-popup-parameters-builder.js.map +1 -1
  41. package/dist/src/ox-popup-partition-keys-input.d.ts +2 -1
  42. package/dist/src/ox-popup-partition-keys-input.js +7 -8
  43. package/dist/src/ox-popup-partition-keys-input.js.map +1 -1
  44. package/dist/src/ox-popup-value-map-input.d.ts +2 -1
  45. package/dist/src/ox-popup-value-map-input.js +7 -8
  46. package/dist/src/ox-popup-value-map-input.js.map +1 -1
  47. package/dist/src/ox-popup-value-ranges-input.d.ts +2 -1
  48. package/dist/src/ox-popup-value-ranges-input.js +7 -8
  49. package/dist/src/ox-popup-value-ranges-input.js.map +1 -1
  50. package/dist/stories/ox-grist-editor-crontab.stories.d.ts +1 -1
  51. package/dist/stories/ox-grist-editor-crontab.stories.js +66 -54
  52. package/dist/stories/ox-grist-editor-crontab.stories.js.map +1 -1
  53. package/dist/tsconfig.tsbuildinfo +1 -1
  54. package/package.json +44 -36
  55. package/src/index.ts +4 -0
  56. package/src/ox-grist-editor-i18n-label.ts +101 -0
  57. package/src/ox-grist-editor-partition-keys.ts +1 -1
  58. package/src/ox-grist-renderer-i18n-label.ts +12 -0
  59. package/src/ox-grist-renderer-partition-keys.ts +4 -4
  60. package/src/ox-parameters-builder.ts +8 -2
  61. package/src/ox-popup-crontab-input.ts +7 -8
  62. package/src/ox-popup-duration-input.ts +7 -8
  63. package/src/ox-popup-hashtags-input.ts +8 -9
  64. package/src/ox-popup-i18n-label-input.ts +97 -0
  65. package/src/ox-popup-parameters-builder.ts +10 -8
  66. package/src/ox-popup-partition-keys-input.ts +7 -8
  67. package/src/ox-popup-value-map-input.ts +8 -8
  68. package/src/ox-popup-value-ranges-input.ts +7 -8
  69. package/stories/ox-grist-editor-crontab.stories.ts +71 -60
  70. package/themes/grist-theme.css +3 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,629 @@
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
+ ## [2.0.0-alpha.121](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.120...v2.0.0-alpha.121) (2024-05-05)
7
+
8
+ **Note:** Version bump only for package @operato/grist-editor
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.0.0-alpha.120](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.119...v2.0.0-alpha.120) (2024-05-05)
15
+
16
+ **Note:** Version bump only for package @operato/grist-editor
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.0.0-alpha.119](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.118...v2.0.0-alpha.119) (2024-05-04)
23
+
24
+ **Note:** Version bump only for package @operato/grist-editor
25
+
26
+
27
+
28
+
29
+
30
+ ## [2.0.0-alpha.118](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.117...v2.0.0-alpha.118) (2024-05-04)
31
+
32
+ **Note:** Version bump only for package @operato/grist-editor
33
+
34
+
35
+
36
+
37
+
38
+ ## [2.0.0-alpha.117](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.116...v2.0.0-alpha.117) (2024-05-04)
39
+
40
+ **Note:** Version bump only for package @operato/grist-editor
41
+
42
+
43
+
44
+
45
+
46
+ ## [2.0.0-alpha.116](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.115...v2.0.0-alpha.116) (2024-05-04)
47
+
48
+ **Note:** Version bump only for package @operato/grist-editor
49
+
50
+
51
+
52
+
53
+
54
+ ## [2.0.0-alpha.115](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.114...v2.0.0-alpha.115) (2024-05-04)
55
+
56
+ **Note:** Version bump only for package @operato/grist-editor
57
+
58
+
59
+
60
+
61
+
62
+ ## [2.0.0-alpha.114](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.113...v2.0.0-alpha.114) (2024-05-04)
63
+
64
+ **Note:** Version bump only for package @operato/grist-editor
65
+
66
+
67
+
68
+
69
+
70
+ ## [2.0.0-alpha.112](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.111...v2.0.0-alpha.112) (2024-05-02)
71
+
72
+ **Note:** Version bump only for package @operato/grist-editor
73
+
74
+
75
+
76
+
77
+
78
+ ## [2.0.0-alpha.111](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.110...v2.0.0-alpha.111) (2024-05-02)
79
+
80
+ **Note:** Version bump only for package @operato/grist-editor
81
+
82
+
83
+
84
+
85
+
86
+ ## [2.0.0-alpha.110](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.109...v2.0.0-alpha.110) (2024-05-02)
87
+
88
+ **Note:** Version bump only for package @operato/grist-editor
89
+
90
+
91
+
92
+
93
+
94
+ ## [2.0.0-alpha.109](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.108...v2.0.0-alpha.109) (2024-05-02)
95
+
96
+ **Note:** Version bump only for package @operato/grist-editor
97
+
98
+
99
+
100
+
101
+
102
+ ## [2.0.0-alpha.108](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.107...v2.0.0-alpha.108) (2024-05-02)
103
+
104
+ **Note:** Version bump only for package @operato/grist-editor
105
+
106
+
107
+
108
+
109
+
110
+ ## [2.0.0-alpha.107](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.106...v2.0.0-alpha.107) (2024-05-01)
111
+
112
+ **Note:** Version bump only for package @operato/grist-editor
113
+
114
+
115
+
116
+
117
+
118
+ ## [2.0.0-alpha.106](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.105...v2.0.0-alpha.106) (2024-04-26)
119
+
120
+ **Note:** Version bump only for package @operato/grist-editor
121
+
122
+
123
+
124
+
125
+
126
+ ## [2.0.0-alpha.105](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.104...v2.0.0-alpha.105) (2024-04-26)
127
+
128
+ **Note:** Version bump only for package @operato/grist-editor
129
+
130
+
131
+
132
+
133
+
134
+ ## [2.0.0-alpha.104](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.103...v2.0.0-alpha.104) (2024-04-26)
135
+
136
+ **Note:** Version bump only for package @operato/grist-editor
137
+
138
+
139
+
140
+
141
+
142
+ ## [2.0.0-alpha.103](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.102...v2.0.0-alpha.103) (2024-04-26)
143
+
144
+ **Note:** Version bump only for package @operato/grist-editor
145
+
146
+
147
+
148
+
149
+
150
+ ## [2.0.0-alpha.102](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.101...v2.0.0-alpha.102) (2024-04-22)
151
+
152
+ **Note:** Version bump only for package @operato/grist-editor
153
+
154
+
155
+
156
+
157
+
158
+ ## [2.0.0-alpha.100](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.99...v2.0.0-alpha.100) (2024-04-21)
159
+
160
+ **Note:** Version bump only for package @operato/grist-editor
161
+
162
+
163
+
164
+
165
+
166
+ ## [2.0.0-alpha.99](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.98...v2.0.0-alpha.99) (2024-04-21)
167
+
168
+ **Note:** Version bump only for package @operato/grist-editor
169
+
170
+
171
+
172
+
173
+
174
+ ## [2.0.0-alpha.98](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.97...v2.0.0-alpha.98) (2024-04-21)
175
+
176
+ **Note:** Version bump only for package @operato/grist-editor
177
+
178
+
179
+
180
+
181
+
182
+ ## [2.0.0-alpha.97](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.96...v2.0.0-alpha.97) (2024-04-21)
183
+
184
+ **Note:** Version bump only for package @operato/grist-editor
185
+
186
+
187
+
188
+
189
+
190
+ ## [2.0.0-alpha.96](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.95...v2.0.0-alpha.96) (2024-04-21)
191
+
192
+
193
+ ### :bug: Bug Fix
194
+
195
+ * style for ox-parameters-builder ([6a9a3fb](https://github.com/hatiolab/operato/commit/6a9a3fb74493257790677ecc2664f27beb6b849e))
196
+
197
+
198
+
199
+ ## [2.0.0-alpha.95](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.94...v2.0.0-alpha.95) (2024-04-21)
200
+
201
+
202
+ ### :bug: Bug Fix
203
+
204
+ * add styles for CSStyles property into PropertySpec ([1c18564](https://github.com/hatiolab/operato/commit/1c185645c2f8e8b0c8a654d15e3b7603b80d2864))
205
+
206
+
207
+
208
+ ## [2.0.0-alpha.94](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.93...v2.0.0-alpha.94) (2024-04-20)
209
+
210
+ **Note:** Version bump only for package @operato/grist-editor
211
+
212
+
213
+
214
+
215
+
216
+ ## [2.0.0-alpha.93](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.92...v2.0.0-alpha.93) (2024-04-19)
217
+
218
+
219
+ ### :bug: Bug Fix
220
+
221
+ * grid body border-bottom style ([708a937](https://github.com/hatiolab/operato/commit/708a93789d23417a318e2ac9f499bec85d7e4776))
222
+
223
+
224
+
225
+ ## [2.0.0-alpha.92](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.91...v2.0.0-alpha.92) (2024-04-19)
226
+
227
+ **Note:** Version bump only for package @operato/grist-editor
228
+
229
+
230
+
231
+
232
+
233
+ ## [2.0.0-alpha.90](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.89...v2.0.0-alpha.90) (2024-04-18)
234
+
235
+ **Note:** Version bump only for package @operato/grist-editor
236
+
237
+
238
+
239
+
240
+
241
+ ## [2.0.0-alpha.89](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.88...v2.0.0-alpha.89) (2024-04-18)
242
+
243
+ **Note:** Version bump only for package @operato/grist-editor
244
+
245
+
246
+
247
+
248
+
249
+ ## [2.0.0-alpha.88](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.87...v2.0.0-alpha.88) (2024-04-18)
250
+
251
+ **Note:** Version bump only for package @operato/grist-editor
252
+
253
+
254
+
255
+
256
+
257
+ ## [2.0.0-alpha.87](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.86...v2.0.0-alpha.87) (2024-04-17)
258
+
259
+ **Note:** Version bump only for package @operato/grist-editor
260
+
261
+
262
+
263
+
264
+
265
+ ## [2.0.0-alpha.86](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.85...v2.0.0-alpha.86) (2024-04-16)
266
+
267
+ **Note:** Version bump only for package @operato/grist-editor
268
+
269
+
270
+
271
+
272
+
273
+ ## [2.0.0-alpha.85](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.84...v2.0.0-alpha.85) (2024-04-16)
274
+
275
+ **Note:** Version bump only for package @operato/grist-editor
276
+
277
+
278
+
279
+
280
+
281
+ ## [2.0.0-alpha.82](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.81...v2.0.0-alpha.82) (2024-04-15)
282
+
283
+
284
+ ### :bug: Bug Fix
285
+
286
+ * correct import ([a3587dd](https://github.com/hatiolab/operato/commit/a3587dd65903a0acaa7b25aa4ef15b2d85aaf418))
287
+
288
+
289
+
290
+ ## [2.0.0-alpha.81](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.80...v2.0.0-alpha.81) (2024-04-15)
291
+
292
+
293
+ ### :bug: Bug Fix
294
+
295
+ * use button-container styles ([bd91be3](https://github.com/hatiolab/operato/commit/bd91be3eaf5337a0ffe8cfc3b37191b6427ce5f6))
296
+
297
+
298
+
299
+ ## [2.0.0-alpha.80](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.79...v2.0.0-alpha.80) (2024-04-15)
300
+
301
+ **Note:** Version bump only for package @operato/grist-editor
302
+
303
+
304
+
305
+
306
+
307
+ ## [2.0.0-alpha.77](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.76...v2.0.0-alpha.77) (2024-04-14)
308
+
309
+ **Note:** Version bump only for package @operato/grist-editor
310
+
311
+
312
+
313
+
314
+
315
+ ## [2.0.0-alpha.71](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.70...v2.0.0-alpha.71) (2024-04-13)
316
+
317
+ **Note:** Version bump only for package @operato/grist-editor
318
+
319
+
320
+
321
+
322
+
323
+ ## [2.0.0-alpha.69](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.68...v2.0.0-alpha.69) (2024-04-13)
324
+
325
+
326
+ ### :bug: Bug Fix
327
+
328
+ * mwc=>md for context ([972f5fd](https://github.com/hatiolab/operato/commit/972f5fd8da02820b6d6238cf1dd099591f97d8df))
329
+
330
+
331
+
332
+ ## [2.0.0-alpha.68](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.67...v2.0.0-alpha.68) (2024-04-13)
333
+
334
+
335
+ ### :bug: Bug Fix
336
+
337
+ * mwc=>md for context ([2bc13f2](https://github.com/hatiolab/operato/commit/2bc13f285f257782f73e5d7b5d1ddd197df85393))
338
+
339
+
340
+
341
+ ## [2.0.0-alpha.64](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.63...v2.0.0-alpha.64) (2024-04-13)
342
+
343
+ **Note:** Version bump only for package @operato/grist-editor
344
+
345
+
346
+
347
+
348
+
349
+ ## [2.0.0-alpha.63](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.62...v2.0.0-alpha.63) (2024-04-12)
350
+
351
+ **Note:** Version bump only for package @operato/grist-editor
352
+
353
+
354
+
355
+
356
+
357
+ ## [2.0.0-alpha.62](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.61...v2.0.0-alpha.62) (2024-04-12)
358
+
359
+ **Note:** Version bump only for package @operato/grist-editor
360
+
361
+
362
+
363
+
364
+
365
+ ## [2.0.0-alpha.61](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.60...v2.0.0-alpha.61) (2024-04-11)
366
+
367
+ **Note:** Version bump only for package @operato/grist-editor
368
+
369
+
370
+
371
+
372
+
373
+ ## [2.0.0-alpha.60](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.59...v2.0.0-alpha.60) (2024-04-11)
374
+
375
+ **Note:** Version bump only for package @operato/grist-editor
376
+
377
+
378
+
379
+
380
+
381
+ ## [2.0.0-alpha.59](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.58...v2.0.0-alpha.59) (2024-04-11)
382
+
383
+ **Note:** Version bump only for package @operato/grist-editor
384
+
385
+
386
+
387
+
388
+
389
+ ## [2.0.0-alpha.57](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.56...v2.0.0-alpha.57) (2024-04-07)
390
+
391
+ **Note:** Version bump only for package @operato/grist-editor
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+ **Note:** Version bump only for package @operato/grist-editor
400
+
401
+
402
+
403
+
404
+
405
+ ## [2.0.0-alpha.54](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.53...v2.0.0-alpha.54) (2024-04-01)
406
+
407
+ **Note:** Version bump only for package @operato/grist-editor
408
+
409
+
410
+
411
+
412
+
413
+ ## [2.0.0-alpha.52](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.51...v2.0.0-alpha.52) (2024-03-29)
414
+
415
+ **Note:** Version bump only for package @operato/grist-editor
416
+
417
+
418
+
419
+
420
+
421
+ ## [2.0.0-alpha.51](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.50...v2.0.0-alpha.51) (2024-03-29)
422
+
423
+
424
+ ### :bug: Bug Fix
425
+
426
+ * upgrade lit ([e661c33](https://github.com/hatiolab/operato/commit/e661c333d2bb97f784b5ac2c0e365714ee5e80ff))
427
+
428
+
429
+
430
+ ## [2.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.48...v2.0.0-alpha.49) (2024-03-28)
431
+
432
+
433
+ ### :bug: Bug Fix
434
+
435
+ * i18n label ([fd48ef2](https://github.com/hatiolab/operato/commit/fd48ef2bd9bde7846a032fed5d34283fbb27a065))
436
+
437
+
438
+
439
+ ## [2.0.0-alpha.48](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.47...v2.0.0-alpha.48) (2024-03-28)
440
+
441
+ **Note:** Version bump only for package @operato/grist-editor
442
+
443
+
444
+
445
+
446
+
447
+ ## [2.0.0-alpha.47](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.46...v2.0.0-alpha.47) (2024-03-27)
448
+
449
+ **Note:** Version bump only for package @operato/grist-editor
450
+
451
+
452
+
453
+
454
+
455
+ ## [2.0.0-alpha.46](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.45...v2.0.0-alpha.46) (2024-03-26)
456
+
457
+ **Note:** Version bump only for package @operato/grist-editor
458
+
459
+
460
+
461
+
462
+
463
+ ## [2.0.0-alpha.44](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.43...v2.0.0-alpha.44) (2024-03-24)
464
+
465
+ **Note:** Version bump only for package @operato/grist-editor
466
+
467
+
468
+
469
+
470
+
471
+ ## [2.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.42...v2.0.0-alpha.43) (2024-03-24)
472
+
473
+ **Note:** Version bump only for package @operato/grist-editor
474
+
475
+
476
+
477
+
478
+
479
+ ## [2.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.36...v2.0.0-alpha.37) (2024-03-18)
480
+
481
+ **Note:** Version bump only for package @operato/grist-editor
482
+
483
+
484
+
485
+
486
+
487
+ ## [2.0.0-alpha.36](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.35...v2.0.0-alpha.36) (2024-03-14)
488
+
489
+
490
+ ### :bug: Bug Fix
491
+
492
+ * multilingual common-code ([89ee53b](https://github.com/hatiolab/operato/commit/89ee53b448560a148483d11a3d0182410b952609))
493
+
494
+
495
+
496
+ ## [2.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.34...v2.0.0-alpha.35) (2024-03-13)
497
+
498
+ **Note:** Version bump only for package @operato/grist-editor
499
+
500
+
501
+
502
+
503
+
504
+ ## [2.0.0-alpha.34](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.33...v2.0.0-alpha.34) (2024-03-12)
505
+
506
+
507
+ ### :bug: Bug Fix
508
+
509
+ * multilingual common-code ([80ca17f](https://github.com/hatiolab/operato/commit/80ca17f32f87808d78ac23ff2737584d6ac8098e))
510
+
511
+
512
+
513
+ ## [2.0.0-alpha.33](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.32...v2.0.0-alpha.33) (2024-03-12)
514
+
515
+
516
+ ### :bug: Bug Fix
517
+
518
+ * multilingual common-code ([b1305f1](https://github.com/hatiolab/operato/commit/b1305f11baa70cd437734d46d9dcdfc3c68e1924))
519
+
520
+
521
+
522
+ ## [2.0.0-alpha.32](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.31...v2.0.0-alpha.32) (2024-03-12)
523
+
524
+
525
+ ### :bug: Bug Fix
526
+
527
+ * multilingual common-code ([184bcd9](https://github.com/hatiolab/operato/commit/184bcd9ce23ead50e46d9b6cc7bf6788e63b6e21))
528
+
529
+
530
+
531
+ ## [2.0.0-alpha.31](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.30...v2.0.0-alpha.31) (2024-03-03)
532
+
533
+ **Note:** Version bump only for package @operato/grist-editor
534
+
535
+
536
+
537
+
538
+
539
+ ## [2.0.0-alpha.30](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.29...v2.0.0-alpha.30) (2024-03-03)
540
+
541
+ **Note:** Version bump only for package @operato/grist-editor
542
+
543
+
544
+
545
+
546
+
547
+ ## [2.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.27...v2.0.0-alpha.28) (2024-02-20)
548
+
549
+
550
+ ### :bug: Bug Fix
551
+
552
+ * upgrade devDependencies for webcomponents ([1489b8b](https://github.com/hatiolab/operato/commit/1489b8b790d9bcee779a070a630697f25c01728f))
553
+
554
+
555
+
556
+ ## [2.0.0-alpha.27](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.26...v2.0.0-alpha.27) (2024-02-17)
557
+
558
+ **Note:** Version bump only for package @operato/grist-editor
559
+
560
+
561
+
562
+
563
+
564
+ ## [2.0.0-alpha.23](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.22...v2.0.0-alpha.23) (2024-02-10)
565
+
566
+ **Note:** Version bump only for package @operato/grist-editor
567
+
568
+
569
+
570
+
571
+
572
+ ## [2.0.0-alpha.22](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.21...v2.0.0-alpha.22) (2024-02-10)
573
+
574
+ **Note:** Version bump only for package @operato/grist-editor
575
+
576
+
577
+
578
+
579
+
580
+ ## [2.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.20...v2.0.0-alpha.21) (2024-02-09)
581
+
582
+ **Note:** Version bump only for package @operato/grist-editor
583
+
584
+
585
+
586
+
587
+
588
+ ## [2.0.0-alpha.20](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.19...v2.0.0-alpha.20) (2024-02-05)
589
+
590
+ **Note:** Version bump only for package @operato/grist-editor
591
+
592
+
593
+
594
+
595
+
596
+ ## [2.0.0-alpha.19](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.18...v2.0.0-alpha.19) (2024-02-05)
597
+
598
+ **Note:** Version bump only for package @operato/grist-editor
599
+
600
+
601
+
602
+
603
+
604
+ ## [2.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.16...v2.0.0-alpha.17) (2024-02-04)
605
+
606
+ **Note:** Version bump only for package @operato/grist-editor
607
+
608
+
609
+
610
+
611
+
612
+ ## [2.0.0-alpha.16](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.15...v2.0.0-alpha.16) (2024-02-03)
613
+
614
+ **Note:** Version bump only for package @operato/grist-editor
615
+
616
+
617
+
618
+
619
+
620
+ ## [2.0.0-alpha.13](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.12...v2.0.0-alpha.13) (2024-01-28)
621
+
622
+
623
+ ### :bug: Bug Fix
624
+
625
+ * css-variable --grid-record-padding ([b057312](https://github.com/hatiolab/operato/commit/b0573120fcb46c71b6b283065f08ae926e9f826f))
626
+
627
+
628
+
6
629
  ## [2.0.0-alpha.12](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-01-24)
7
630
 
8
631
  **Note:** Version bump only for package @operato/grist-editor
package/dist/src/index.js CHANGED
@@ -11,6 +11,8 @@ import { OxGristRendererQuantifier } from './ox-grist-renderer-quantifier';
11
11
  import { OxGristRendererHashtags } from './ox-grist-renderer-hashtags';
12
12
  import { OxGristRendererPartitionKeys } from './ox-grist-renderer-partition-keys.js';
13
13
  import { OxGristEditorValueRanges } from './ox-grist-editor-value-ranges.js';
14
+ import { OxGristEditorI18nLabel } from './ox-grist-editor-i18n-label.js';
15
+ import { OxGristRendererI18nLabel } from './ox-grist-renderer-i18n-label.js';
14
16
  /* register grist renderer/editor for id */
15
17
  registerEditor('parameters', OxGristEditorParameters);
16
18
  registerEditor('value-map', OxGristEditorValueMap);
@@ -20,6 +22,7 @@ registerEditor('crontab', OxGristEditorCrontab);
20
22
  registerEditor('duration', OxGristEditorDuration);
21
23
  registerEditor('quantifier', OxGristEditorQuantifier);
22
24
  registerEditor('hashtags', OxGristEditorHashtags);
25
+ registerEditor('i18n-label', OxGristEditorI18nLabel);
23
26
  registerRenderer('parameters', OxGristRendererJson5);
24
27
  registerRenderer('value-map', OxGristRendererJson5);
25
28
  registerRenderer('value-ranges', OxGristRendererJson5);
@@ -27,4 +30,5 @@ registerRenderer('partition-keys', OxGristRendererPartitionKeys);
27
30
  registerRenderer('duration', OxGristRendererDuration);
28
31
  registerRenderer('quantifier', OxGristRendererQuantifier);
29
32
  registerRenderer('hashtags', OxGristRendererHashtags);
33
+ registerRenderer('i18n-label', OxGristRendererI18nLabel);
30
34
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAE5F,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAA;AACrE,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAA;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAA;AAChF,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAA;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAA;AAC1E,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;AACtE,OAAO,EAAE,4BAA4B,EAAE,MAAM,uCAAuC,CAAA;AACpF,OAAO,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAA;AAE5E,2CAA2C;AAC3C,cAAc,CAAC,YAAY,EAAE,uBAAuB,CAAC,CAAA;AACrD,cAAc,CAAC,WAAW,EAAE,qBAAqB,CAAC,CAAA;AAClD,cAAc,CAAC,cAAc,EAAE,wBAAwB,CAAC,CAAA;AACxD,cAAc,CAAC,gBAAgB,EAAE,0BAA0B,CAAC,CAAA;AAC5D,cAAc,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAA;AAC/C,cAAc,CAAC,UAAU,EAAE,qBAAqB,CAAC,CAAA;AACjD,cAAc,CAAC,YAAY,EAAE,uBAAuB,CAAC,CAAA;AACrD,cAAc,CAAC,UAAU,EAAE,qBAAqB,CAAC,CAAA;AAEjD,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,CAAA;AACpD,gBAAgB,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAA;AACnD,gBAAgB,CAAC,cAAc,EAAE,oBAAoB,CAAC,CAAA;AACtD,gBAAgB,CAAC,gBAAgB,EAAE,4BAA4B,CAAC,CAAA;AAChE,gBAAgB,CAAC,UAAU,EAAE,uBAAuB,CAAC,CAAA;AACrD,gBAAgB,CAAC,YAAY,EAAE,yBAAyB,CAAC,CAAA;AACzD,gBAAgB,CAAC,UAAU,EAAE,uBAAuB,CAAC,CAAA","sourcesContent":["import { OxGristRendererJson5, registerEditor, registerRenderer } from '@operato/data-grist'\n\nimport { OxGristEditorCrontab } from './ox-grist-editor-crontab.js'\nimport { OxGristEditorDuration } from './ox-grist-editor-duration.js'\nimport { OxGristEditorHashtags } from './ox-grist-editor-hashtags.js'\nimport { OxGristEditorParameters } from './ox-grist-editor-parameters.js'\nimport { OxGristEditorPartitionKeys } from './ox-grist-editor-partition-keys.js'\nimport { OxGristEditorQuantifier } from './ox-grist-editor-quantifier.js'\nimport { OxGristEditorValueMap } from './ox-grist-editor-value-map.js'\nimport { OxGristRendererDuration } from './ox-grist-renderer-duration.js'\nimport { OxGristRendererQuantifier } from './ox-grist-renderer-quantifier'\nimport { OxGristRendererHashtags } from './ox-grist-renderer-hashtags'\nimport { OxGristRendererPartitionKeys } from './ox-grist-renderer-partition-keys.js'\nimport { OxGristEditorValueRanges } from './ox-grist-editor-value-ranges.js'\n\n/* register grist renderer/editor for id */\nregisterEditor('parameters', OxGristEditorParameters)\nregisterEditor('value-map', OxGristEditorValueMap)\nregisterEditor('value-ranges', OxGristEditorValueRanges)\nregisterEditor('partition-keys', OxGristEditorPartitionKeys)\nregisterEditor('crontab', OxGristEditorCrontab)\nregisterEditor('duration', OxGristEditorDuration)\nregisterEditor('quantifier', OxGristEditorQuantifier)\nregisterEditor('hashtags', OxGristEditorHashtags)\n\nregisterRenderer('parameters', OxGristRendererJson5)\nregisterRenderer('value-map', OxGristRendererJson5)\nregisterRenderer('value-ranges', OxGristRendererJson5)\nregisterRenderer('partition-keys', OxGristRendererPartitionKeys)\nregisterRenderer('duration', OxGristRendererDuration)\nregisterRenderer('quantifier', OxGristRendererQuantifier)\nregisterRenderer('hashtags', OxGristRendererHashtags)\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAE5F,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAA;AACrE,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAA;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAA;AAChF,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAA;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAA;AAC1E,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;AACtE,OAAO,EAAE,4BAA4B,EAAE,MAAM,uCAAuC,CAAA;AACpF,OAAO,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAA;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAA;AACxE,OAAO,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAA;AAE5E,2CAA2C;AAC3C,cAAc,CAAC,YAAY,EAAE,uBAAuB,CAAC,CAAA;AACrD,cAAc,CAAC,WAAW,EAAE,qBAAqB,CAAC,CAAA;AAClD,cAAc,CAAC,cAAc,EAAE,wBAAwB,CAAC,CAAA;AACxD,cAAc,CAAC,gBAAgB,EAAE,0BAA0B,CAAC,CAAA;AAC5D,cAAc,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAA;AAC/C,cAAc,CAAC,UAAU,EAAE,qBAAqB,CAAC,CAAA;AACjD,cAAc,CAAC,YAAY,EAAE,uBAAuB,CAAC,CAAA;AACrD,cAAc,CAAC,UAAU,EAAE,qBAAqB,CAAC,CAAA;AACjD,cAAc,CAAC,YAAY,EAAE,sBAAsB,CAAC,CAAA;AAEpD,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,CAAA;AACpD,gBAAgB,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAA;AACnD,gBAAgB,CAAC,cAAc,EAAE,oBAAoB,CAAC,CAAA;AACtD,gBAAgB,CAAC,gBAAgB,EAAE,4BAA4B,CAAC,CAAA;AAChE,gBAAgB,CAAC,UAAU,EAAE,uBAAuB,CAAC,CAAA;AACrD,gBAAgB,CAAC,YAAY,EAAE,yBAAyB,CAAC,CAAA;AACzD,gBAAgB,CAAC,UAAU,EAAE,uBAAuB,CAAC,CAAA;AACrD,gBAAgB,CAAC,YAAY,EAAE,wBAAwB,CAAC,CAAA","sourcesContent":["import { OxGristRendererJson5, registerEditor, registerRenderer } from '@operato/data-grist'\n\nimport { OxGristEditorCrontab } from './ox-grist-editor-crontab.js'\nimport { OxGristEditorDuration } from './ox-grist-editor-duration.js'\nimport { OxGristEditorHashtags } from './ox-grist-editor-hashtags.js'\nimport { OxGristEditorParameters } from './ox-grist-editor-parameters.js'\nimport { OxGristEditorPartitionKeys } from './ox-grist-editor-partition-keys.js'\nimport { OxGristEditorQuantifier } from './ox-grist-editor-quantifier.js'\nimport { OxGristEditorValueMap } from './ox-grist-editor-value-map.js'\nimport { OxGristRendererDuration } from './ox-grist-renderer-duration.js'\nimport { OxGristRendererQuantifier } from './ox-grist-renderer-quantifier'\nimport { OxGristRendererHashtags } from './ox-grist-renderer-hashtags'\nimport { OxGristRendererPartitionKeys } from './ox-grist-renderer-partition-keys.js'\nimport { OxGristEditorValueRanges } from './ox-grist-editor-value-ranges.js'\nimport { OxGristEditorI18nLabel } from './ox-grist-editor-i18n-label.js'\nimport { OxGristRendererI18nLabel } from './ox-grist-renderer-i18n-label.js'\n\n/* register grist renderer/editor for id */\nregisterEditor('parameters', OxGristEditorParameters)\nregisterEditor('value-map', OxGristEditorValueMap)\nregisterEditor('value-ranges', OxGristEditorValueRanges)\nregisterEditor('partition-keys', OxGristEditorPartitionKeys)\nregisterEditor('crontab', OxGristEditorCrontab)\nregisterEditor('duration', OxGristEditorDuration)\nregisterEditor('quantifier', OxGristEditorQuantifier)\nregisterEditor('hashtags', OxGristEditorHashtags)\nregisterEditor('i18n-label', OxGristEditorI18nLabel)\n\nregisterRenderer('parameters', OxGristRendererJson5)\nregisterRenderer('value-map', OxGristRendererJson5)\nregisterRenderer('value-ranges', OxGristRendererJson5)\nregisterRenderer('partition-keys', OxGristRendererPartitionKeys)\nregisterRenderer('duration', OxGristRendererDuration)\nregisterRenderer('quantifier', OxGristRendererQuantifier)\nregisterRenderer('hashtags', OxGristRendererHashtags)\nregisterRenderer('i18n-label', OxGristRendererI18nLabel)\n"]}
@@ -2,7 +2,7 @@ import './ox-popup-crontab-input.js';
2
2
  import { OxGristEditor } from '@operato/data-grist';
3
3
  export declare class OxGristEditorCrontab extends OxGristEditor {
4
4
  private popup?;
5
- get editorTemplate(): import("lit").TemplateResult<1>;
5
+ get editorTemplate(): import("lit-html").TemplateResult<1>;
6
6
  _onclick(e: Event): void;
7
7
  _onkeydown(e: KeyboardEvent): void;
8
8
  showEditorPopup(): void;
@@ -2,7 +2,7 @@ import './ox-popup-duration-input.js';
2
2
  import { OxGristEditor } from '@operato/data-grist';
3
3
  export declare class OxGristEditorDuration extends OxGristEditor {
4
4
  private popup?;
5
- get editorTemplate(): import("lit").TemplateResult<1>;
5
+ get editorTemplate(): import("lit-html").TemplateResult<1>;
6
6
  _onclick(e: Event): void;
7
7
  _onkeydown(e: KeyboardEvent): void;
8
8
  showEditorPopup(): void;
@@ -2,7 +2,7 @@ import './ox-popup-hashtags-input.js';
2
2
  import { OxGristEditor } from '@operato/data-grist';
3
3
  export declare class OxGristEditorHashtags extends OxGristEditor {
4
4
  private popup?;
5
- get editorTemplate(): import("lit").TemplateResult<1>;
5
+ get editorTemplate(): import("lit-html").TemplateResult<1>;
6
6
  _onclick(e: Event): void;
7
7
  _onkeydown(e: KeyboardEvent): void;
8
8
  showEditorPopup(): void;