@operato/grist-editor 2.0.0-alpha.11 → 2.0.0-alpha.110

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 +551 -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,557 @@
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.110](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.109...v2.0.0-alpha.110) (2024-05-02)
7
+
8
+ **Note:** Version bump only for package @operato/grist-editor
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.0.0-alpha.109](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.108...v2.0.0-alpha.109) (2024-05-02)
15
+
16
+ **Note:** Version bump only for package @operato/grist-editor
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.0.0-alpha.108](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.107...v2.0.0-alpha.108) (2024-05-02)
23
+
24
+ **Note:** Version bump only for package @operato/grist-editor
25
+
26
+
27
+
28
+
29
+
30
+ ## [2.0.0-alpha.107](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.106...v2.0.0-alpha.107) (2024-05-01)
31
+
32
+ **Note:** Version bump only for package @operato/grist-editor
33
+
34
+
35
+
36
+
37
+
38
+ ## [2.0.0-alpha.106](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.105...v2.0.0-alpha.106) (2024-04-26)
39
+
40
+ **Note:** Version bump only for package @operato/grist-editor
41
+
42
+
43
+
44
+
45
+
46
+ ## [2.0.0-alpha.105](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.104...v2.0.0-alpha.105) (2024-04-26)
47
+
48
+ **Note:** Version bump only for package @operato/grist-editor
49
+
50
+
51
+
52
+
53
+
54
+ ## [2.0.0-alpha.104](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.103...v2.0.0-alpha.104) (2024-04-26)
55
+
56
+ **Note:** Version bump only for package @operato/grist-editor
57
+
58
+
59
+
60
+
61
+
62
+ ## [2.0.0-alpha.103](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.102...v2.0.0-alpha.103) (2024-04-26)
63
+
64
+ **Note:** Version bump only for package @operato/grist-editor
65
+
66
+
67
+
68
+
69
+
70
+ ## [2.0.0-alpha.102](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.101...v2.0.0-alpha.102) (2024-04-22)
71
+
72
+ **Note:** Version bump only for package @operato/grist-editor
73
+
74
+
75
+
76
+
77
+
78
+ ## [2.0.0-alpha.100](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.99...v2.0.0-alpha.100) (2024-04-21)
79
+
80
+ **Note:** Version bump only for package @operato/grist-editor
81
+
82
+
83
+
84
+
85
+
86
+ ## [2.0.0-alpha.99](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.98...v2.0.0-alpha.99) (2024-04-21)
87
+
88
+ **Note:** Version bump only for package @operato/grist-editor
89
+
90
+
91
+
92
+
93
+
94
+ ## [2.0.0-alpha.98](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.97...v2.0.0-alpha.98) (2024-04-21)
95
+
96
+ **Note:** Version bump only for package @operato/grist-editor
97
+
98
+
99
+
100
+
101
+
102
+ ## [2.0.0-alpha.97](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.96...v2.0.0-alpha.97) (2024-04-21)
103
+
104
+ **Note:** Version bump only for package @operato/grist-editor
105
+
106
+
107
+
108
+
109
+
110
+ ## [2.0.0-alpha.96](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.95...v2.0.0-alpha.96) (2024-04-21)
111
+
112
+
113
+ ### :bug: Bug Fix
114
+
115
+ * style for ox-parameters-builder ([6a9a3fb](https://github.com/hatiolab/operato/commit/6a9a3fb74493257790677ecc2664f27beb6b849e))
116
+
117
+
118
+
119
+ ## [2.0.0-alpha.95](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.94...v2.0.0-alpha.95) (2024-04-21)
120
+
121
+
122
+ ### :bug: Bug Fix
123
+
124
+ * add styles for CSStyles property into PropertySpec ([1c18564](https://github.com/hatiolab/operato/commit/1c185645c2f8e8b0c8a654d15e3b7603b80d2864))
125
+
126
+
127
+
128
+ ## [2.0.0-alpha.94](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.93...v2.0.0-alpha.94) (2024-04-20)
129
+
130
+ **Note:** Version bump only for package @operato/grist-editor
131
+
132
+
133
+
134
+
135
+
136
+ ## [2.0.0-alpha.93](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.92...v2.0.0-alpha.93) (2024-04-19)
137
+
138
+
139
+ ### :bug: Bug Fix
140
+
141
+ * grid body border-bottom style ([708a937](https://github.com/hatiolab/operato/commit/708a93789d23417a318e2ac9f499bec85d7e4776))
142
+
143
+
144
+
145
+ ## [2.0.0-alpha.92](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.91...v2.0.0-alpha.92) (2024-04-19)
146
+
147
+ **Note:** Version bump only for package @operato/grist-editor
148
+
149
+
150
+
151
+
152
+
153
+ ## [2.0.0-alpha.90](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.89...v2.0.0-alpha.90) (2024-04-18)
154
+
155
+ **Note:** Version bump only for package @operato/grist-editor
156
+
157
+
158
+
159
+
160
+
161
+ ## [2.0.0-alpha.89](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.88...v2.0.0-alpha.89) (2024-04-18)
162
+
163
+ **Note:** Version bump only for package @operato/grist-editor
164
+
165
+
166
+
167
+
168
+
169
+ ## [2.0.0-alpha.88](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.87...v2.0.0-alpha.88) (2024-04-18)
170
+
171
+ **Note:** Version bump only for package @operato/grist-editor
172
+
173
+
174
+
175
+
176
+
177
+ ## [2.0.0-alpha.87](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.86...v2.0.0-alpha.87) (2024-04-17)
178
+
179
+ **Note:** Version bump only for package @operato/grist-editor
180
+
181
+
182
+
183
+
184
+
185
+ ## [2.0.0-alpha.86](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.85...v2.0.0-alpha.86) (2024-04-16)
186
+
187
+ **Note:** Version bump only for package @operato/grist-editor
188
+
189
+
190
+
191
+
192
+
193
+ ## [2.0.0-alpha.85](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.84...v2.0.0-alpha.85) (2024-04-16)
194
+
195
+ **Note:** Version bump only for package @operato/grist-editor
196
+
197
+
198
+
199
+
200
+
201
+ ## [2.0.0-alpha.82](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.81...v2.0.0-alpha.82) (2024-04-15)
202
+
203
+
204
+ ### :bug: Bug Fix
205
+
206
+ * correct import ([a3587dd](https://github.com/hatiolab/operato/commit/a3587dd65903a0acaa7b25aa4ef15b2d85aaf418))
207
+
208
+
209
+
210
+ ## [2.0.0-alpha.81](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.80...v2.0.0-alpha.81) (2024-04-15)
211
+
212
+
213
+ ### :bug: Bug Fix
214
+
215
+ * use button-container styles ([bd91be3](https://github.com/hatiolab/operato/commit/bd91be3eaf5337a0ffe8cfc3b37191b6427ce5f6))
216
+
217
+
218
+
219
+ ## [2.0.0-alpha.80](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.79...v2.0.0-alpha.80) (2024-04-15)
220
+
221
+ **Note:** Version bump only for package @operato/grist-editor
222
+
223
+
224
+
225
+
226
+
227
+ ## [2.0.0-alpha.77](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.76...v2.0.0-alpha.77) (2024-04-14)
228
+
229
+ **Note:** Version bump only for package @operato/grist-editor
230
+
231
+
232
+
233
+
234
+
235
+ ## [2.0.0-alpha.71](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.70...v2.0.0-alpha.71) (2024-04-13)
236
+
237
+ **Note:** Version bump only for package @operato/grist-editor
238
+
239
+
240
+
241
+
242
+
243
+ ## [2.0.0-alpha.69](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.68...v2.0.0-alpha.69) (2024-04-13)
244
+
245
+
246
+ ### :bug: Bug Fix
247
+
248
+ * mwc=>md for context ([972f5fd](https://github.com/hatiolab/operato/commit/972f5fd8da02820b6d6238cf1dd099591f97d8df))
249
+
250
+
251
+
252
+ ## [2.0.0-alpha.68](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.67...v2.0.0-alpha.68) (2024-04-13)
253
+
254
+
255
+ ### :bug: Bug Fix
256
+
257
+ * mwc=>md for context ([2bc13f2](https://github.com/hatiolab/operato/commit/2bc13f285f257782f73e5d7b5d1ddd197df85393))
258
+
259
+
260
+
261
+ ## [2.0.0-alpha.64](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.63...v2.0.0-alpha.64) (2024-04-13)
262
+
263
+ **Note:** Version bump only for package @operato/grist-editor
264
+
265
+
266
+
267
+
268
+
269
+ ## [2.0.0-alpha.63](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.62...v2.0.0-alpha.63) (2024-04-12)
270
+
271
+ **Note:** Version bump only for package @operato/grist-editor
272
+
273
+
274
+
275
+
276
+
277
+ ## [2.0.0-alpha.62](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.61...v2.0.0-alpha.62) (2024-04-12)
278
+
279
+ **Note:** Version bump only for package @operato/grist-editor
280
+
281
+
282
+
283
+
284
+
285
+ ## [2.0.0-alpha.61](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.60...v2.0.0-alpha.61) (2024-04-11)
286
+
287
+ **Note:** Version bump only for package @operato/grist-editor
288
+
289
+
290
+
291
+
292
+
293
+ ## [2.0.0-alpha.60](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.59...v2.0.0-alpha.60) (2024-04-11)
294
+
295
+ **Note:** Version bump only for package @operato/grist-editor
296
+
297
+
298
+
299
+
300
+
301
+ ## [2.0.0-alpha.59](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.58...v2.0.0-alpha.59) (2024-04-11)
302
+
303
+ **Note:** Version bump only for package @operato/grist-editor
304
+
305
+
306
+
307
+
308
+
309
+ ## [2.0.0-alpha.57](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.56...v2.0.0-alpha.57) (2024-04-07)
310
+
311
+ **Note:** Version bump only for package @operato/grist-editor
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+ **Note:** Version bump only for package @operato/grist-editor
320
+
321
+
322
+
323
+
324
+
325
+ ## [2.0.0-alpha.54](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.53...v2.0.0-alpha.54) (2024-04-01)
326
+
327
+ **Note:** Version bump only for package @operato/grist-editor
328
+
329
+
330
+
331
+
332
+
333
+ ## [2.0.0-alpha.52](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.51...v2.0.0-alpha.52) (2024-03-29)
334
+
335
+ **Note:** Version bump only for package @operato/grist-editor
336
+
337
+
338
+
339
+
340
+
341
+ ## [2.0.0-alpha.51](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.50...v2.0.0-alpha.51) (2024-03-29)
342
+
343
+
344
+ ### :bug: Bug Fix
345
+
346
+ * upgrade lit ([e661c33](https://github.com/hatiolab/operato/commit/e661c333d2bb97f784b5ac2c0e365714ee5e80ff))
347
+
348
+
349
+
350
+ ## [2.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.48...v2.0.0-alpha.49) (2024-03-28)
351
+
352
+
353
+ ### :bug: Bug Fix
354
+
355
+ * i18n label ([fd48ef2](https://github.com/hatiolab/operato/commit/fd48ef2bd9bde7846a032fed5d34283fbb27a065))
356
+
357
+
358
+
359
+ ## [2.0.0-alpha.48](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.47...v2.0.0-alpha.48) (2024-03-28)
360
+
361
+ **Note:** Version bump only for package @operato/grist-editor
362
+
363
+
364
+
365
+
366
+
367
+ ## [2.0.0-alpha.47](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.46...v2.0.0-alpha.47) (2024-03-27)
368
+
369
+ **Note:** Version bump only for package @operato/grist-editor
370
+
371
+
372
+
373
+
374
+
375
+ ## [2.0.0-alpha.46](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.45...v2.0.0-alpha.46) (2024-03-26)
376
+
377
+ **Note:** Version bump only for package @operato/grist-editor
378
+
379
+
380
+
381
+
382
+
383
+ ## [2.0.0-alpha.44](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.43...v2.0.0-alpha.44) (2024-03-24)
384
+
385
+ **Note:** Version bump only for package @operato/grist-editor
386
+
387
+
388
+
389
+
390
+
391
+ ## [2.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.42...v2.0.0-alpha.43) (2024-03-24)
392
+
393
+ **Note:** Version bump only for package @operato/grist-editor
394
+
395
+
396
+
397
+
398
+
399
+ ## [2.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.36...v2.0.0-alpha.37) (2024-03-18)
400
+
401
+ **Note:** Version bump only for package @operato/grist-editor
402
+
403
+
404
+
405
+
406
+
407
+ ## [2.0.0-alpha.36](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.35...v2.0.0-alpha.36) (2024-03-14)
408
+
409
+
410
+ ### :bug: Bug Fix
411
+
412
+ * multilingual common-code ([89ee53b](https://github.com/hatiolab/operato/commit/89ee53b448560a148483d11a3d0182410b952609))
413
+
414
+
415
+
416
+ ## [2.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.34...v2.0.0-alpha.35) (2024-03-13)
417
+
418
+ **Note:** Version bump only for package @operato/grist-editor
419
+
420
+
421
+
422
+
423
+
424
+ ## [2.0.0-alpha.34](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.33...v2.0.0-alpha.34) (2024-03-12)
425
+
426
+
427
+ ### :bug: Bug Fix
428
+
429
+ * multilingual common-code ([80ca17f](https://github.com/hatiolab/operato/commit/80ca17f32f87808d78ac23ff2737584d6ac8098e))
430
+
431
+
432
+
433
+ ## [2.0.0-alpha.33](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.32...v2.0.0-alpha.33) (2024-03-12)
434
+
435
+
436
+ ### :bug: Bug Fix
437
+
438
+ * multilingual common-code ([b1305f1](https://github.com/hatiolab/operato/commit/b1305f11baa70cd437734d46d9dcdfc3c68e1924))
439
+
440
+
441
+
442
+ ## [2.0.0-alpha.32](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.31...v2.0.0-alpha.32) (2024-03-12)
443
+
444
+
445
+ ### :bug: Bug Fix
446
+
447
+ * multilingual common-code ([184bcd9](https://github.com/hatiolab/operato/commit/184bcd9ce23ead50e46d9b6cc7bf6788e63b6e21))
448
+
449
+
450
+
451
+ ## [2.0.0-alpha.31](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.30...v2.0.0-alpha.31) (2024-03-03)
452
+
453
+ **Note:** Version bump only for package @operato/grist-editor
454
+
455
+
456
+
457
+
458
+
459
+ ## [2.0.0-alpha.30](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.29...v2.0.0-alpha.30) (2024-03-03)
460
+
461
+ **Note:** Version bump only for package @operato/grist-editor
462
+
463
+
464
+
465
+
466
+
467
+ ## [2.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.27...v2.0.0-alpha.28) (2024-02-20)
468
+
469
+
470
+ ### :bug: Bug Fix
471
+
472
+ * upgrade devDependencies for webcomponents ([1489b8b](https://github.com/hatiolab/operato/commit/1489b8b790d9bcee779a070a630697f25c01728f))
473
+
474
+
475
+
476
+ ## [2.0.0-alpha.27](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.26...v2.0.0-alpha.27) (2024-02-17)
477
+
478
+ **Note:** Version bump only for package @operato/grist-editor
479
+
480
+
481
+
482
+
483
+
484
+ ## [2.0.0-alpha.23](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.22...v2.0.0-alpha.23) (2024-02-10)
485
+
486
+ **Note:** Version bump only for package @operato/grist-editor
487
+
488
+
489
+
490
+
491
+
492
+ ## [2.0.0-alpha.22](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.21...v2.0.0-alpha.22) (2024-02-10)
493
+
494
+ **Note:** Version bump only for package @operato/grist-editor
495
+
496
+
497
+
498
+
499
+
500
+ ## [2.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.20...v2.0.0-alpha.21) (2024-02-09)
501
+
502
+ **Note:** Version bump only for package @operato/grist-editor
503
+
504
+
505
+
506
+
507
+
508
+ ## [2.0.0-alpha.20](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.19...v2.0.0-alpha.20) (2024-02-05)
509
+
510
+ **Note:** Version bump only for package @operato/grist-editor
511
+
512
+
513
+
514
+
515
+
516
+ ## [2.0.0-alpha.19](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.18...v2.0.0-alpha.19) (2024-02-05)
517
+
518
+ **Note:** Version bump only for package @operato/grist-editor
519
+
520
+
521
+
522
+
523
+
524
+ ## [2.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.16...v2.0.0-alpha.17) (2024-02-04)
525
+
526
+ **Note:** Version bump only for package @operato/grist-editor
527
+
528
+
529
+
530
+
531
+
532
+ ## [2.0.0-alpha.16](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.15...v2.0.0-alpha.16) (2024-02-03)
533
+
534
+ **Note:** Version bump only for package @operato/grist-editor
535
+
536
+
537
+
538
+
539
+
540
+ ## [2.0.0-alpha.13](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.12...v2.0.0-alpha.13) (2024-01-28)
541
+
542
+
543
+ ### :bug: Bug Fix
544
+
545
+ * css-variable --grid-record-padding ([b057312](https://github.com/hatiolab/operato/commit/b0573120fcb46c71b6b283065f08ae926e9f826f))
546
+
547
+
548
+
549
+ ## [2.0.0-alpha.12](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-01-24)
550
+
551
+ **Note:** Version bump only for package @operato/grist-editor
552
+
553
+
554
+
555
+
556
+
6
557
  ## [2.0.0-alpha.11](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-01-24)
7
558
 
8
559
  **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;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @license Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+ import './ox-popup-i18n-label-input.js';
5
+ import { OxGristEditor } from '@operato/data-grist';
6
+ export declare class OxGristEditorI18nLabel extends OxGristEditor {
7
+ private popup?;
8
+ get options(): any;
9
+ get editorTemplate(): import("lit-html").TemplateResult<1>;
10
+ _onclick(e: Event): void;
11
+ _onkeydown(e: KeyboardEvent): void;
12
+ openSelector(): Promise<void>;
13
+ }