@operato/input 1.0.0-beta.2 → 1.0.0-beta.20

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 (135) hide show
  1. package/.storybook/main.js +2 -2
  2. package/.storybook/server.mjs +4 -4
  3. package/CHANGELOG.md +398 -0
  4. package/demo/index-multiple-colors.html +4 -1
  5. package/demo/index-partition-keys.html +2 -5
  6. package/demo/index-select.html +1 -1
  7. package/demo/index.html +4 -0
  8. package/dist/src/locales/en.d.ts +8 -0
  9. package/dist/src/locales/en.js +8 -0
  10. package/dist/src/locales/en.js.map +1 -1
  11. package/dist/src/locales/ko.d.ts +8 -0
  12. package/dist/src/locales/ko.js +8 -0
  13. package/dist/src/locales/ko.js.map +1 -1
  14. package/dist/src/locales/ms.d.ts +8 -0
  15. package/dist/src/locales/ms.js +8 -0
  16. package/dist/src/locales/ms.js.map +1 -1
  17. package/dist/src/locales/zh.d.ts +8 -0
  18. package/dist/src/locales/zh.js +8 -0
  19. package/dist/src/locales/zh.js.map +1 -1
  20. package/dist/src/ox-input-3dish.js +24 -8
  21. package/dist/src/ox-input-3dish.js.map +1 -1
  22. package/dist/src/ox-input-color.js +16 -11
  23. package/dist/src/ox-input-color.js.map +1 -1
  24. package/dist/src/ox-input-crontab.js +13 -10
  25. package/dist/src/ox-input-crontab.js.map +1 -1
  26. package/dist/src/ox-input-file.js +5 -3
  27. package/dist/src/ox-input-file.js.map +1 -1
  28. package/dist/src/ox-input-multiple-colors.d.ts +1 -0
  29. package/dist/src/ox-input-multiple-colors.js +29 -21
  30. package/dist/src/ox-input-multiple-colors.js.map +1 -1
  31. package/dist/src/ox-input-options.d.ts +1 -0
  32. package/dist/src/ox-input-options.js +54 -14
  33. package/dist/src/ox-input-options.js.map +1 -1
  34. package/dist/src/ox-input-partition-keys.d.ts +1 -0
  35. package/dist/src/ox-input-partition-keys.js +51 -23
  36. package/dist/src/ox-input-partition-keys.js.map +1 -1
  37. package/dist/src/ox-input-range.js +35 -38
  38. package/dist/src/ox-input-range.js.map +1 -1
  39. package/dist/src/ox-input-search.d.ts +0 -1
  40. package/dist/src/ox-input-search.js +14 -7
  41. package/dist/src/ox-input-search.js.map +1 -1
  42. package/dist/src/ox-input-unit.d.ts +17 -0
  43. package/dist/src/ox-input-unit.js +122 -0
  44. package/dist/src/ox-input-unit.js.map +1 -0
  45. package/dist/src/ox-input-work-shift.js +77 -43
  46. package/dist/src/ox-input-work-shift.js.map +1 -1
  47. package/dist/src/ox-select.js +12 -1
  48. package/dist/src/ox-select.js.map +1 -1
  49. package/dist/stories/ox-checkbox.stories.d.ts +39 -0
  50. package/dist/stories/ox-checkbox.stories.js +44 -0
  51. package/dist/stories/ox-checkbox.stories.js.map +1 -0
  52. package/dist/stories/ox-input-3dish.stories.d.ts +26 -0
  53. package/dist/stories/ox-input-3dish.stories.js +59 -0
  54. package/dist/stories/ox-input-3dish.stories.js.map +1 -0
  55. package/dist/stories/{index.stories.d.ts → ox-input-barcode.stories.d.ts} +11 -11
  56. package/dist/stories/ox-input-barcode.stories.js +22 -0
  57. package/dist/stories/ox-input-barcode.stories.js.map +1 -0
  58. package/dist/stories/ox-input-conntab.stories.d.ts +26 -0
  59. package/dist/stories/ox-input-conntab.stories.js +37 -0
  60. package/dist/stories/ox-input-conntab.stories.js.map +1 -0
  61. package/dist/stories/ox-input-crontab.stories.d.ts +26 -0
  62. package/dist/stories/ox-input-crontab.stories.js +37 -0
  63. package/dist/stories/ox-input-crontab.stories.js.map +1 -0
  64. package/dist/stories/ox-input-file.stories.d.ts +49 -0
  65. package/dist/stories/ox-input-file.stories.js +48 -0
  66. package/dist/stories/ox-input-file.stories.js.map +1 -0
  67. package/dist/stories/ox-input-multiple-colors.stories.d.ts +20 -0
  68. package/dist/stories/ox-input-multiple-colors.stories.js +167 -0
  69. package/dist/stories/ox-input-multiple-colors.stories.js.map +1 -0
  70. package/dist/stories/ox-input-options.stories.d.ts +25 -0
  71. package/dist/stories/ox-input-options.stories.js +33 -0
  72. package/dist/stories/ox-input-options.stories.js.map +1 -0
  73. package/dist/stories/ox-input-partition-keys.stories.d.ts +27 -0
  74. package/dist/stories/ox-input-partition-keys.stories.js +55 -0
  75. package/dist/stories/ox-input-partition-keys.stories.js.map +1 -0
  76. package/dist/stories/ox-input-range.stories.d.ts +37 -0
  77. package/dist/stories/ox-input-range.stories.js +28 -0
  78. package/dist/stories/ox-input-range.stories.js.map +1 -0
  79. package/dist/stories/ox-input-search.stories.d.ts +29 -0
  80. package/dist/stories/ox-input-search.stories.js +32 -0
  81. package/dist/stories/ox-input-search.stories.js.map +1 -0
  82. package/dist/stories/ox-input-unit.stories.d.ts +40 -0
  83. package/dist/stories/ox-input-unit.stories.js +42 -0
  84. package/dist/stories/ox-input-unit.stories.js.map +1 -0
  85. package/dist/stories/ox-input-work-shift.stories.d.ts +26 -0
  86. package/dist/stories/ox-input-work-shift.stories.js +59 -0
  87. package/dist/stories/ox-input-work-shift.stories.js.map +1 -0
  88. package/dist/stories/ox-select.stories.d.ts +30 -0
  89. package/dist/stories/ox-select.stories.js +83 -0
  90. package/dist/stories/ox-select.stories.js.map +1 -0
  91. package/dist/themes/common-grist-styles.d.ts +1 -0
  92. package/dist/themes/common-grist-styles.js +110 -0
  93. package/dist/themes/common-grist-styles.js.map +1 -0
  94. package/dist/tsconfig.tsbuildinfo +1 -1
  95. package/package.json +11 -11
  96. package/src/locales/en.ts +8 -0
  97. package/src/locales/ko.ts +8 -0
  98. package/src/locales/ms.ts +8 -0
  99. package/src/locales/zh.ts +8 -0
  100. package/src/ox-input-3dish.ts +24 -8
  101. package/src/ox-input-color.ts +17 -11
  102. package/src/ox-input-crontab.ts +13 -10
  103. package/src/ox-input-file.ts +7 -6
  104. package/src/ox-input-multiple-colors.ts +29 -21
  105. package/src/ox-input-options.ts +53 -13
  106. package/src/ox-input-partition-keys.ts +51 -22
  107. package/src/ox-input-range.ts +35 -38
  108. package/src/ox-input-search.ts +14 -8
  109. package/src/ox-input-unit.ts +123 -0
  110. package/src/ox-input-work-shift.ts +78 -43
  111. package/src/ox-select.ts +15 -3
  112. package/stories/ox-checkbox.stories.ts +69 -0
  113. package/stories/ox-input-3dish.stories.ts +73 -0
  114. package/stories/ox-input-barcode.stories.ts +38 -0
  115. package/stories/ox-input-code.stories.ts_ +71 -0
  116. package/stories/ox-input-crontab.stories.ts +51 -0
  117. package/stories/ox-input-file.stories.ts +77 -0
  118. package/stories/ox-input-multiple-colors.stories.ts +178 -0
  119. package/stories/ox-input-options.stories.ts +47 -0
  120. package/stories/ox-input-partition-keys.stories.ts +71 -0
  121. package/stories/ox-input-range.stories.ts +45 -0
  122. package/stories/ox-input-search.stories.ts +47 -0
  123. package/stories/ox-input-unit.stories.ts +66 -0
  124. package/stories/ox-input-work-shift.stories.ts +73 -0
  125. package/stories/ox-select.stories.ts +101 -0
  126. package/themes/app-theme.css +142 -0
  127. package/themes/common-grist-styles.ts +110 -0
  128. package/themes/input-theme.css +19 -0
  129. package/xliff/en.xlf +24 -0
  130. package/xliff/ko.xlf +32 -0
  131. package/xliff/ms.xlf +24 -0
  132. package/xliff/zh.xlf +24 -0
  133. package/dist/stories/index.stories.js +0 -33
  134. package/dist/stories/index.stories.js.map +0 -1
  135. package/stories/index.stories.ts +0 -52
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- stories: ['../dist/stories/**/*.stories.{js,md,mdx}'],
3
- };
2
+ stories: ['../dist/stories/**/*.stories.{js,md,mdx}']
3
+ }
@@ -1,8 +1,8 @@
1
- import { storybookPlugin } from '@web/dev-server-storybook';
2
- import baseConfig from '../web-dev-server.config.mjs';
1
+ import { storybookPlugin } from '@web/dev-server-storybook'
2
+ import baseConfig from '../web-dev-server.config.mjs'
3
3
 
4
4
  export default /** @type {import('@web/dev-server').DevServerConfig} */ ({
5
5
  ...baseConfig,
6
6
  open: '/',
7
- plugins: [storybookPlugin({ type: 'web-components' }), ...baseConfig.plugins],
8
- });
7
+ plugins: [storybookPlugin({ type: 'web-components' }), ...baseConfig.plugins]
8
+ })
package/CHANGELOG.md CHANGED
@@ -3,6 +3,404 @@
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.20](https://github.com/hatiolab/operato/compare/v1.0.0-beta.19...v1.0.0-beta.20) (2022-05-30)
7
+
8
+ **Note:** Version bump only for package @operato/input
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.0.0-beta.19](https://github.com/hatiolab/operato/compare/v1.0.0-beta.18...v1.0.0-beta.19) (2022-05-29)
15
+
16
+ **Note:** Version bump only for package @operato/input
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.0.0-beta.18](https://github.com/hatiolab/operato/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2022-05-27)
23
+
24
+
25
+ ### :bug: Bug Fix
26
+
27
+ * add ox-input-files story ([e450dce](https://github.com/hatiolab/operato/commit/e450dce3b4403d00f1b91bf3d5ae88d28eb6a40e))
28
+ * pagination limit for data-grist ([a1dad87](https://github.com/hatiolab/operato/commit/a1dad87289f26d2f69b6831bcb601e5e9938aef1))
29
+
30
+
31
+
32
+ ## [1.0.0-beta.17](https://github.com/hatiolab/operato/compare/v1.0.0-beta.16...v1.0.0-beta.17) (2022-05-25)
33
+
34
+
35
+ ### :bug: Bug Fix
36
+
37
+ * ox input work shift, select ([3f68c47](https://github.com/hatiolab/operato/commit/3f68c47a165555c7715bfdd602387cee353b8b54))
38
+ * ox-input range, unit style ([e295f1c](https://github.com/hatiolab/operato/commit/e295f1c4e04c761f8a6267792ac7aa39cfdb7706))
39
+
40
+
41
+
42
+ ## [1.0.0-beta.16](https://github.com/hatiolab/operato/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-05-23)
43
+
44
+ **Note:** Version bump only for package @operato/input
45
+
46
+
47
+
48
+
49
+
50
+ ## [1.0.0-beta.15](https://github.com/hatiolab/operato/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-05-20)
51
+
52
+ **Note:** Version bump only for package @operato/input
53
+
54
+
55
+
56
+
57
+
58
+ ## [1.0.0-beta.14](https://github.com/hatiolab/operato/compare/v1.0.0-beta.13...v1.0.0-beta.14) (2022-05-19)
59
+
60
+ **Note:** Version bump only for package @operato/input
61
+
62
+
63
+
64
+
65
+
66
+ ## [1.0.0-beta.13](https://github.com/hatiolab/operato/compare/v1.0.0-beta.12...v1.0.0-beta.13) (2022-05-19)
67
+
68
+
69
+ ### :rocket: New Features
70
+
71
+ * add ox-input-unit ([06f5f56](https://github.com/hatiolab/operato/commit/06f5f56fa0dd56fed973b399ac4dc42a383c8ad4))
72
+
73
+
74
+ ### :bug: Bug Fix
75
+
76
+ * incorrect package.json scripts for storybooks ([8c8c405](https://github.com/hatiolab/operato/commit/8c8c405443247108b9c411b8161c008d9b6a2261))
77
+ * input partition keys style ([191bba8](https://github.com/hatiolab/operato/commit/191bba85a9f2d214f4bceaadde4e013cad50789a))
78
+ * input partition keys style ([393a59d](https://github.com/hatiolab/operato/commit/393a59d1229045067c06cd06285c92770a8631c1))
79
+ * multiple color style ([e558bb4](https://github.com/hatiolab/operato/commit/e558bb4470b6542a2562f9929575ef436f3d3a0f))
80
+ * ox input style ([989bdbb](https://github.com/hatiolab/operato/commit/989bdbb9bfd4ca7b4bdb1f3391bd96b75cbbffed))
81
+ * storyboard for inputs ([c38e6e7](https://github.com/hatiolab/operato/commit/c38e6e70b5351955a4d0571e6cb0fe3875d2f254))
82
+ * storybook & input multiple colors ([a7e4319](https://github.com/hatiolab/operato/commit/a7e431953479156979ae48c9bad0a213519bca2b))
83
+ * storybook for data-grist ([ae0ad52](https://github.com/hatiolab/operato/commit/ae0ad52d642454c70a4e27f262b8811f7e53f420))
84
+ * storybook for inputs ([72f7992](https://github.com/hatiolab/operato/commit/72f7992d902528e3a5ca0f3f0f3897902b6b13bd))
85
+ * storybook for ox-input-range ([4f3c44f](https://github.com/hatiolab/operato/commit/4f3c44ff285b4bfb61a03d93df3f73551b75b62a))
86
+ * upgrade @zxing/library ([b9749cb](https://github.com/hatiolab/operato/commit/b9749cb2986067ffa1c2d03e91d3eb18e6729f56))
87
+
88
+
89
+
90
+ ## [1.0.0-beta.12](https://github.com/hatiolab/operato/compare/v1.0.0-beta.11...v1.0.0-beta.12) (2022-05-13)
91
+
92
+
93
+ ### :rocket: New Features
94
+
95
+ * storybook started ([90c08c9](https://github.com/hatiolab/operato/commit/90c08c9a15e5fe554baaa1becca07793e8434799))
96
+
97
+
98
+
99
+ ## [1.0.0-beta.11](https://github.com/hatiolab/operato/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2022-05-01)
100
+
101
+ **Note:** Version bump only for package @operato/input
102
+
103
+
104
+
105
+
106
+
107
+ ## [1.0.0-beta.10](https://github.com/hatiolab/operato/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2022-04-28)
108
+
109
+ **Note:** Version bump only for package @operato/input
110
+
111
+
112
+
113
+
114
+
115
+ ## [1.0.0-beta.9](https://github.com/hatiolab/operato/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2022-04-28)
116
+
117
+
118
+ ### :bug: Bug Fix
119
+
120
+ * search value for filters-form ([a3a0ed5](https://github.com/hatiolab/operato/commit/a3a0ed59a924a1b13f304705a27137af98638bd0))
121
+
122
+
123
+
124
+ ## [1.0.0-beta.8](https://github.com/hatiolab/operato/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2022-04-27)
125
+
126
+
127
+ ### :bug: Bug Fix
128
+
129
+ * filters-form style ([b02c530](https://github.com/hatiolab/operato/commit/b02c530fc7e106c42f0f87d1b62f3707063e03ca))
130
+
131
+
132
+
133
+ ## [1.0.0-beta.7](https://github.com/hatiolab/operato/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2022-04-24)
134
+
135
+ **Note:** Version bump only for package @operato/input
136
+
137
+
138
+
139
+
140
+
141
+ ## [1.0.0-beta.6](https://github.com/hatiolab/operato/compare/v0.4.5...v1.0.0-beta.6) (2022-04-22)
142
+
143
+ ## [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
+
145
+ ## [1.0.0-beta.4](https://github.com/hatiolab/operato/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-04-14)
146
+
147
+ ## [1.0.0-beta.3](https://github.com/hatiolab/operato/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2022-04-12)
148
+
149
+ ## [1.0.0-beta.2](https://github.com/hatiolab/operato/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2022-04-12)
150
+
151
+
152
+ ### :rocket: New Features
153
+
154
+ * add 'empty' button into ox-grist-editor-resource-object ([d739d23](https://github.com/hatiolab/operato/commit/d739d23686ea9487e2b9d887c451290638d3633e))
155
+
156
+ ## [1.0.0-beta.1](https://github.com/hatiolab/operato/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2022-04-11)
157
+
158
+ ## [1.0.0-beta.0](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.53...v1.0.0-beta.0) (2022-04-10)
159
+
160
+ ## [1.0.0-alpha.53](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.52...v1.0.0-alpha.53) (2022-04-08)
161
+
162
+ ## [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
+
164
+ ## [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
+
166
+ ## [1.0.0-alpha.50](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2022-04-04)
167
+
168
+ ## [1.0.0-alpha.49](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2022-04-04)
169
+
170
+
171
+ ### :bug: Bug Fix
172
+
173
+ * lit@2.2.1 ([6707752](https://github.com/hatiolab/operato/commit/6707752907d24f7ecbe248cba18a4b18cfda282f))
174
+
175
+
176
+ ### :rocket: New Features
177
+
178
+ * translation crontab for ox-grist-renderer-crontab ([c13d6ef](https://github.com/hatiolab/operato/commit/c13d6efab9ff02ceb4b4d244455a480070a80a3e))
179
+
180
+ ## [1.0.0-alpha.48](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.47...v1.0.0-alpha.48) (2022-04-03)
181
+
182
+
183
+ ### :bug: Bug Fix
184
+
185
+ * event handling for clicking magnify icon in filters-form - fetch data forcely ([cc17a05](https://github.com/hatiolab/operato/commit/cc17a056807a6e5018ee89d1f6be91e463671bac))
186
+
187
+
188
+ ### :rocket: New Features
189
+
190
+ * support copy and paste in data-grid ([9dd686f](https://github.com/hatiolab/operato/commit/9dd686f6817500863a1c36140ef01b39fcafef9f))
191
+
192
+ ## [1.0.0-alpha.47](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.46...v1.0.0-alpha.47) (2022-04-02)
193
+
194
+
195
+ ### :bug: Bug Fix
196
+
197
+ * ox-input-work-shift bug ([0a7ae96](https://github.com/hatiolab/operato/commit/0a7ae96e404eb6c846291075e12ac7fcfb9f88f9))
198
+ * ox-input-work-shift header ([816dbd0](https://github.com/hatiolab/operato/commit/816dbd06e53a44a29413e7605431ad62f2090a43))
199
+
200
+ ## [1.0.0-alpha.46](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.45...v1.0.0-alpha.46) (2022-04-02)
201
+
202
+
203
+ ### :rocket: New Features
204
+
205
+ * add ox-input-work-shift ([f5c78e7](https://github.com/hatiolab/operato/commit/f5c78e7e9bfcbc456e9da269d069f843ee3e043c))
206
+
207
+ ## [1.0.0-alpha.45](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.44...v1.0.0-alpha.45) (2022-03-31)
208
+
209
+ ## [1.0.0-alpha.44](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.43...v1.0.0-alpha.44) (2022-03-31)
210
+
211
+ ## [1.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.42...v1.0.0-alpha.43) (2022-03-30)
212
+
213
+ ## [1.0.0-alpha.42](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.41...v1.0.0-alpha.42) (2022-03-29)
214
+
215
+ ## [1.0.0-alpha.41](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.40...v1.0.0-alpha.41) (2022-03-27)
216
+
217
+
218
+ ### :rocket: New Features
219
+
220
+ * grid-header filter integrated with filters-form ([ebecb71](https://github.com/hatiolab/operato/commit/ebecb71133d38bb8358909660319de6cb5b45d7d))
221
+
222
+ ## [1.0.0-alpha.40](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.39...v1.0.0-alpha.40) (2022-03-26)
223
+
224
+
225
+ ### :bug: Bug Fix
226
+
227
+ * ox-select label ([7f4a208](https://github.com/hatiolab/operato/commit/7f4a208d4ebadf459c48331774c88e68a72ae90d))
228
+
229
+ ## [1.0.0-alpha.39](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.38...v1.0.0-alpha.39) (2022-03-25)
230
+
231
+ ## [1.0.0-alpha.38](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.37...v1.0.0-alpha.38) (2022-03-25)
232
+
233
+ ## [1.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.36...v1.0.0-alpha.37) (2022-03-25)
234
+
235
+
236
+ ### :bug: Bug Fix
237
+
238
+ * ox-input-partition-keys ([65883a3](https://github.com/hatiolab/operato/commit/65883a3a8419390c8cd7eb37177fe1b3e0530e1a))
239
+
240
+ ## [1.0.0-alpha.36](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.35...v1.0.0-alpha.36) (2022-03-21)
241
+
242
+ ## [1.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) (2022-03-21)
243
+
244
+ ## [1.0.0-alpha.34](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) (2022-03-20)
245
+
246
+ ## [1.0.0-alpha.33](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.32...v1.0.0-alpha.33) (2022-03-19)
247
+
248
+ ## [1.0.0-alpha.32](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2022-03-19)
249
+
250
+ ## [1.0.0-alpha.31](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.30...v1.0.0-alpha.31) (2022-03-19)
251
+
252
+
253
+ ### :bug: Bug Fix
254
+
255
+ * partition-keys related ui components ([c21b4d2](https://github.com/hatiolab/operato/commit/c21b4d292ca4a6d6b4bf774a570dbabd349528fc))
256
+
257
+ ## [1.0.0-alpha.30](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.29...v1.0.0-alpha.30) (2022-03-18)
258
+
259
+ ## [1.0.0-alpha.29](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2022-03-17)
260
+
261
+
262
+ ### :bug: Bug Fix
263
+
264
+ * datalist in ox-input-partition-keys ([a25e3a6](https://github.com/hatiolab/operato/commit/a25e3a66cf5f7a25bca057be90ef336b29e915a7))
265
+
266
+ ## [1.0.0-alpha.28](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.26...v1.0.0-alpha.28) (2022-03-17)
267
+
268
+
269
+ ### :rocket: New Features
270
+
271
+ * add ox-grist-editor for partition-keys ([7672a27](https://github.com/hatiolab/operato/commit/7672a2729f78475602733a83779f6a7a96e128fd))
272
+
273
+ ## [1.0.0-alpha.26](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2022-03-17)
274
+
275
+ ## [1.0.0-alpha.25](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2022-03-17)
276
+
277
+ ## [1.0.0-alpha.24](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2022-03-17)
278
+
279
+
280
+ ### :bug: Bug Fix
281
+
282
+ * refactoring grist-editor, property-editor and input ([ea7431a](https://github.com/hatiolab/operato/commit/ea7431a5e2dfd96ef392c1905e9622df7c2ef88c))
283
+
284
+ ## [1.0.0-alpha.23](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2022-03-17)
285
+
286
+ ## [1.0.0-alpha.22](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2022-03-17)
287
+
288
+ ## [1.0.0-alpha.21](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2022-03-16)
289
+
290
+
291
+ ### :rocket: New Features
292
+
293
+ * @operato/ccp module added ([f08ba5a](https://github.com/hatiolab/operato/commit/f08ba5a464c04b7fb132c6f18de975997087846a))
294
+ * add ccp module ([cbea635](https://github.com/hatiolab/operato/commit/cbea635d5f638d49fc99d68cc1727ac3e06ddf22))
295
+
296
+
297
+ ### :bug: Bug Fix
298
+
299
+ * add missing exporting ([844d9e7](https://github.com/hatiolab/operato/commit/844d9e7331c2e966eb7a5351a8755b7f1e599e3e))
300
+ * demo ([6fa3eac](https://github.com/hatiolab/operato/commit/6fa3eac612bd98ce25e3ef6d8ce89527d7152fb4))
301
+
302
+ ## [1.0.0-alpha.20](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2022-03-15)
303
+
304
+ ## [1.0.0-alpha.19](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2022-03-14)
305
+
306
+ ## [1.0.0-alpha.18](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2022-03-14)
307
+
308
+ ## [1.0.0-alpha.17](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2022-03-13)
309
+
310
+ ## [1.0.0-alpha.16](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2022-03-13)
311
+
312
+ ## [1.0.0-alpha.15](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2022-03-13)
313
+
314
+
315
+ ### :rocket: New Features
316
+
317
+ * migrate input, property-editor from things-factory ([dbd5e73](https://github.com/hatiolab/operato/commit/dbd5e73eac328e72c4bb7abd113a819532bc894d))
318
+
319
+ ## [1.0.0-alpha.14](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2022-03-13)
320
+
321
+ ## [1.0.0-alpha.13](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2022-03-13)
322
+
323
+
324
+ ### :bug: Bug Fix
325
+
326
+ * typos ([71447fa](https://github.com/hatiolab/operato/commit/71447fa2dfb52c5e45909baac735c2e195856256))
327
+
328
+ ## [1.0.0-alpha.12](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) (2022-03-13)
329
+
330
+
331
+ ### :rocket: New Features
332
+
333
+ * migrate input, property-editor from things-factory ([4800d85](https://github.com/hatiolab/operato/commit/4800d859473bf623325233a7f2af851e5d093dcb))
334
+
335
+ ## [1.0.0-alpha.11](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) (2022-03-12)
336
+
337
+ ## [1.0.0-alpha.10](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2022-03-12)
338
+
339
+
340
+ ### :bug: Bug Fix
341
+
342
+ * style ([89ba680](https://github.com/hatiolab/operato/commit/89ba68072c3141b6bbcad3378cc6980670ef4198))
343
+
344
+ ## [1.0.0-alpha.9](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) (2022-03-12)
345
+
346
+
347
+ ### :rocket: New Features
348
+
349
+ * settled concept for input, property-editor, grist-editor, so on ([0c9e1d0](https://github.com/hatiolab/operato/commit/0c9e1d054c7aef5d965868242cf471667af7a3c3))
350
+
351
+ ## [1.0.0-alpha.8](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2022-03-11)
352
+
353
+ ## [1.0.0-alpha.7](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2022-03-11)
354
+
355
+ ## [1.0.0-alpha.6](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2022-03-11)
356
+
357
+ ## [1.0.0-alpha.5](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2022-03-11)
358
+
359
+
360
+ ### :rocket: New Features
361
+
362
+ * migrate property-editor from things-factory ([272cdaa](https://github.com/hatiolab/operato/commit/272cdaafd74f3c3c597403f88655cb5cf4a81313))
363
+ * migrated property-editors from things-factory ([9d0b73a](https://github.com/hatiolab/operato/commit/9d0b73a8c05187e7ca8db874ddde8c977ec52a55))
364
+
365
+ ## [1.0.0-alpha.4](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2022-03-11)
366
+
367
+ ## [1.0.0-alpha.3](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2022-03-10)
368
+
369
+ ## [1.0.0-alpha.2](https://github.com/hatiolab/operato/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2022-03-10)
370
+
371
+ ## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09)
372
+
373
+
374
+ ### :rocket: New Features
375
+
376
+ * 1.0-alpha ([42f87cf](https://github.com/hatiolab/operato/commit/42f87cf6a3cef0381db91ecb1179e63c64c01370))
377
+
378
+
379
+
380
+ ## [1.0.0-beta.5](https://github.com/hatiolab/operato/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-04-18)
381
+
382
+ **Note:** Version bump only for package @operato/input
383
+
384
+
385
+
386
+
387
+
388
+ ## [1.0.0-beta.4](https://github.com/hatiolab/operato/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2022-04-14)
389
+
390
+ **Note:** Version bump only for package @operato/input
391
+
392
+
393
+
394
+
395
+
396
+ ## [1.0.0-beta.3](https://github.com/hatiolab/operato/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2022-04-12)
397
+
398
+ **Note:** Version bump only for package @operato/input
399
+
400
+
401
+
402
+
403
+
6
404
  ## [1.0.0-beta.2](https://github.com/hatiolab/operato/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2022-04-12)
7
405
 
8
406
 
@@ -7,13 +7,16 @@
7
7
  background: #fafafa;
8
8
  }
9
9
  </style>
10
+ <link href="/themes/app-theme.css" rel="stylesheet" />
11
+ <link href="/themes/input-theme.css" rel="stylesheet" />
12
+ <link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet" />
10
13
  <script src="https://cdnjs.cloudflare.com/ajax/libs/web-animations/2.3.2/web-animations-next-lite.min.js"></script>
11
14
  </head>
12
15
  <body>
13
16
  <form id="demo"></form>
14
17
 
15
18
  <script type="module">
16
- import { html, render } from 'lit'
19
+ import { html, css, render } from 'lit'
17
20
  import '../dist/src/ox-input-multiple-colors.js'
18
21
 
19
22
  const form = document.querySelector('#demo')
@@ -2,11 +2,8 @@
2
2
  <html lang="en-GB">
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <style>
6
- body {
7
- background: #fafafa;
8
- }
9
- </style>
5
+ <link href="/themes/app-theme.css" rel="stylesheet" />
6
+ <link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet" />
10
7
  </head>
11
8
  <body>
12
9
  <form id="demo"></form>
@@ -70,7 +70,7 @@
70
70
  'B',
71
71
  'TOO LONG VALUE'
72
72
  ]}>
73
- <ox-popup-list multiple>
73
+ <ox-popup-list multiple with-search>
74
74
  <div option value="A">A</div>
75
75
  <div option value="B">B</div>
76
76
  <div option value="C">C</div>
package/demo/index.html CHANGED
@@ -2,6 +2,7 @@
2
2
  <html lang="en-GB">
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1" />
5
6
  <style>
6
7
  body {
7
8
  background: #fafafa;
@@ -11,6 +12,9 @@
11
12
  display: block;
12
13
  }
13
14
  </style>
15
+ <link href="/themes/app-theme.css" rel="stylesheet" />
16
+ <link href="/themes/input-theme.css" rel="stylesheet" />
17
+ <link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet" />
14
18
  </head>
15
19
  <body>
16
20
  <a href="./index-3dish.html">3dish</a>
@@ -6,4 +6,12 @@ export declare const templates: {
6
6
  sf95fdd7da4fc2295: string;
7
7
  s6aacb9fbb71a1d91: string;
8
8
  s075cb2f53173bd8a: string;
9
+ sc4bcadba8e631b86: string;
10
+ s63c6e58ec805a9eb: string;
11
+ sfcc01216c601ec9e: string;
12
+ s685db98545dc9448: string;
13
+ s77c8560cf63a372d: string;
14
+ s42670fc325584e15: string;
15
+ s29ec9210c8a8222e: string;
16
+ scff69aa7239287b0: string;
9
17
  };
@@ -10,5 +10,13 @@ export const templates = {
10
10
  'sf95fdd7da4fc2295': `translate`,
11
11
  's6aacb9fbb71a1d91': `scale`,
12
12
  's075cb2f53173bd8a': `rotate`,
13
+ 'sc4bcadba8e631b86': `name`,
14
+ 's63c6e58ec805a9eb': `from date`,
15
+ 'sfcc01216c601ec9e': `from time`,
16
+ 's685db98545dc9448': `to date`,
17
+ 's77c8560cf63a372d': `to time`,
18
+ 's42670fc325584e15': `The day before`,
19
+ 's29ec9210c8a8222e': `The day`,
20
+ 'scff69aa7239287b0': `The day after`,
13
21
  };
14
22
  //# sourceMappingURL=en.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"en.js","sourceRoot":"","sources":["../../../src/locales/en.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,QAAQ;IACnC,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,OAAO;IAC5B,mBAAmB,EAAE,QAAQ;CACxB,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 'sf9b52aece5aed0f7': `x-axes`,\n's9f41d726ecec72c2': `y-axes`,\n's31be7a0b4a5853dd': `z-axes`,\n'sd793f87f18747a63': `dimension`,\n'sf95fdd7da4fc2295': `translate`,\n's6aacb9fbb71a1d91': `scale`,\n's075cb2f53173bd8a': `rotate`,\n };\n "]}
1
+ {"version":3,"file":"en.js","sourceRoot":"","sources":["../../../src/locales/en.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,QAAQ;IACnC,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,OAAO;IAC5B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,MAAM;IAC3B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,gBAAgB;IACrC,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,eAAe;CAC/B,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 'sf9b52aece5aed0f7': `x-axes`,\n's9f41d726ecec72c2': `y-axes`,\n's31be7a0b4a5853dd': `z-axes`,\n'sd793f87f18747a63': `dimension`,\n'sf95fdd7da4fc2295': `translate`,\n's6aacb9fbb71a1d91': `scale`,\n's075cb2f53173bd8a': `rotate`,\n'sc4bcadba8e631b86': `name`,\n's63c6e58ec805a9eb': `from date`,\n'sfcc01216c601ec9e': `from time`,\n's685db98545dc9448': `to date`,\n's77c8560cf63a372d': `to time`,\n's42670fc325584e15': `The day before`,\n's29ec9210c8a8222e': `The day`,\n'scff69aa7239287b0': `The day after`,\n };\n "]}
@@ -1,9 +1,17 @@
1
1
  export declare const templates: {
2
2
  s075cb2f53173bd8a: string;
3
+ s29ec9210c8a8222e: string;
3
4
  s31be7a0b4a5853dd: string;
5
+ s42670fc325584e15: string;
6
+ s63c6e58ec805a9eb: string;
7
+ s685db98545dc9448: string;
4
8
  s6aacb9fbb71a1d91: string;
9
+ s77c8560cf63a372d: string;
5
10
  s9f41d726ecec72c2: string;
11
+ sc4bcadba8e631b86: string;
12
+ scff69aa7239287b0: string;
6
13
  sd793f87f18747a63: string;
7
14
  sf95fdd7da4fc2295: string;
8
15
  sf9b52aece5aed0f7: string;
16
+ sfcc01216c601ec9e: string;
9
17
  };
@@ -4,11 +4,19 @@
4
4
  /* eslint-disable @typescript-eslint/no-explicit-any */
5
5
  export const templates = {
6
6
  's075cb2f53173bd8a': `회전`,
7
+ 's29ec9210c8a8222e': `당일`,
7
8
  's31be7a0b4a5853dd': `z 축`,
9
+ 's42670fc325584e15': `전날`,
10
+ 's63c6e58ec805a9eb': `시작일`,
11
+ 's685db98545dc9448': `완료일`,
8
12
  's6aacb9fbb71a1d91': `스케일`,
13
+ 's77c8560cf63a372d': `완료시간`,
9
14
  's9f41d726ecec72c2': `y 축`,
15
+ 'sc4bcadba8e631b86': `이름`,
16
+ 'scff69aa7239287b0': `다음날`,
10
17
  'sd793f87f18747a63': `체적`,
11
18
  'sf95fdd7da4fc2295': `변환`,
12
19
  'sf9b52aece5aed0f7': `x 축`,
20
+ 'sfcc01216c601ec9e': `시작시간`,
13
21
  };
14
22
  //# sourceMappingURL=ko.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ko.js","sourceRoot":"","sources":["../../../src/locales/ko.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,IAAI;IAC/B,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,IAAI;IACzB,mBAAmB,EAAE,IAAI;IACzB,mBAAmB,EAAE,KAAK;CACrB,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 's075cb2f53173bd8a': `회전`,\n's31be7a0b4a5853dd': `z 축`,\n's6aacb9fbb71a1d91': `스케일`,\n's9f41d726ecec72c2': `y 축`,\n'sd793f87f18747a63': `체적`,\n'sf95fdd7da4fc2295': `변환`,\n'sf9b52aece5aed0f7': `x 축`,\n };\n "]}
1
+ {"version":3,"file":"ko.js","sourceRoot":"","sources":["../../../src/locales/ko.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,IAAI;IAC/B,mBAAmB,EAAE,IAAI;IACzB,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,IAAI;IACzB,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,MAAM;IAC3B,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,IAAI;IACzB,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,IAAI;IACzB,mBAAmB,EAAE,IAAI;IACzB,mBAAmB,EAAE,KAAK;IAC1B,mBAAmB,EAAE,MAAM;CACtB,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 's075cb2f53173bd8a': `회전`,\n's29ec9210c8a8222e': `당일`,\n's31be7a0b4a5853dd': `z 축`,\n's42670fc325584e15': `전날`,\n's63c6e58ec805a9eb': `시작일`,\n's685db98545dc9448': `완료일`,\n's6aacb9fbb71a1d91': `스케일`,\n's77c8560cf63a372d': `완료시간`,\n's9f41d726ecec72c2': `y 축`,\n'sc4bcadba8e631b86': `이름`,\n'scff69aa7239287b0': `다음날`,\n'sd793f87f18747a63': `체적`,\n'sf95fdd7da4fc2295': `변환`,\n'sf9b52aece5aed0f7': `x 축`,\n'sfcc01216c601ec9e': `시작시간`,\n };\n "]}
@@ -6,4 +6,12 @@ export declare const templates: {
6
6
  sf95fdd7da4fc2295: string;
7
7
  s6aacb9fbb71a1d91: string;
8
8
  s075cb2f53173bd8a: string;
9
+ sc4bcadba8e631b86: string;
10
+ s63c6e58ec805a9eb: string;
11
+ sfcc01216c601ec9e: string;
12
+ s685db98545dc9448: string;
13
+ s77c8560cf63a372d: string;
14
+ s42670fc325584e15: string;
15
+ s29ec9210c8a8222e: string;
16
+ scff69aa7239287b0: string;
9
17
  };
@@ -10,5 +10,13 @@ export const templates = {
10
10
  'sf95fdd7da4fc2295': `translate`,
11
11
  's6aacb9fbb71a1d91': `scale`,
12
12
  's075cb2f53173bd8a': `rotate`,
13
+ 'sc4bcadba8e631b86': `name`,
14
+ 's63c6e58ec805a9eb': `from date`,
15
+ 'sfcc01216c601ec9e': `from time`,
16
+ 's685db98545dc9448': `to date`,
17
+ 's77c8560cf63a372d': `to time`,
18
+ 's42670fc325584e15': `The day before`,
19
+ 's29ec9210c8a8222e': `The day`,
20
+ 'scff69aa7239287b0': `The day after`,
13
21
  };
14
22
  //# sourceMappingURL=ms.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ms.js","sourceRoot":"","sources":["../../../src/locales/ms.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,QAAQ;IACnC,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,OAAO;IAC5B,mBAAmB,EAAE,QAAQ;CACxB,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 'sf9b52aece5aed0f7': `x-axes`,\n's9f41d726ecec72c2': `y-axes`,\n's31be7a0b4a5853dd': `z-axes`,\n'sd793f87f18747a63': `dimension`,\n'sf95fdd7da4fc2295': `translate`,\n's6aacb9fbb71a1d91': `scale`,\n's075cb2f53173bd8a': `rotate`,\n };\n "]}
1
+ {"version":3,"file":"ms.js","sourceRoot":"","sources":["../../../src/locales/ms.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,QAAQ;IACnC,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,OAAO;IAC5B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,MAAM;IAC3B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,gBAAgB;IACrC,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,eAAe;CAC/B,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 'sf9b52aece5aed0f7': `x-axes`,\n's9f41d726ecec72c2': `y-axes`,\n's31be7a0b4a5853dd': `z-axes`,\n'sd793f87f18747a63': `dimension`,\n'sf95fdd7da4fc2295': `translate`,\n's6aacb9fbb71a1d91': `scale`,\n's075cb2f53173bd8a': `rotate`,\n'sc4bcadba8e631b86': `name`,\n's63c6e58ec805a9eb': `from date`,\n'sfcc01216c601ec9e': `from time`,\n's685db98545dc9448': `to date`,\n's77c8560cf63a372d': `to time`,\n's42670fc325584e15': `The day before`,\n's29ec9210c8a8222e': `The day`,\n'scff69aa7239287b0': `The day after`,\n };\n "]}
@@ -6,4 +6,12 @@ export declare const templates: {
6
6
  sf95fdd7da4fc2295: string;
7
7
  s6aacb9fbb71a1d91: string;
8
8
  s075cb2f53173bd8a: string;
9
+ sc4bcadba8e631b86: string;
10
+ s63c6e58ec805a9eb: string;
11
+ sfcc01216c601ec9e: string;
12
+ s685db98545dc9448: string;
13
+ s77c8560cf63a372d: string;
14
+ s42670fc325584e15: string;
15
+ s29ec9210c8a8222e: string;
16
+ scff69aa7239287b0: string;
9
17
  };
@@ -10,5 +10,13 @@ export const templates = {
10
10
  'sf95fdd7da4fc2295': `translate`,
11
11
  's6aacb9fbb71a1d91': `scale`,
12
12
  's075cb2f53173bd8a': `rotate`,
13
+ 'sc4bcadba8e631b86': `name`,
14
+ 's63c6e58ec805a9eb': `from date`,
15
+ 'sfcc01216c601ec9e': `from time`,
16
+ 's685db98545dc9448': `to date`,
17
+ 's77c8560cf63a372d': `to time`,
18
+ 's42670fc325584e15': `The day before`,
19
+ 's29ec9210c8a8222e': `The day`,
20
+ 'scff69aa7239287b0': `The day after`,
13
21
  };
14
22
  //# sourceMappingURL=zh.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"zh.js","sourceRoot":"","sources":["../../../src/locales/zh.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,QAAQ;IACnC,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,OAAO;IAC5B,mBAAmB,EAAE,QAAQ;CACxB,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 'sf9b52aece5aed0f7': `x-axes`,\n's9f41d726ecec72c2': `y-axes`,\n's31be7a0b4a5853dd': `z-axes`,\n'sd793f87f18747a63': `dimension`,\n'sf95fdd7da4fc2295': `translate`,\n's6aacb9fbb71a1d91': `scale`,\n's075cb2f53173bd8a': `rotate`,\n };\n "]}
1
+ {"version":3,"file":"zh.js","sourceRoot":"","sources":["../../../src/locales/zh.ts"],"names":[],"mappings":"AACI,mCAAmC;AACnC,gDAAgD;AAKhD,4CAA4C;AAC5C,uDAAuD;AAEvD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,mBAAmB,EAAE,QAAQ;IACnC,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,OAAO;IAC5B,mBAAmB,EAAE,QAAQ;IAC7B,mBAAmB,EAAE,MAAM;IAC3B,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,WAAW;IAChC,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,gBAAgB;IACrC,mBAAmB,EAAE,SAAS;IAC9B,mBAAmB,EAAE,eAAe;CAC/B,CAAC","sourcesContent":["\n // Do not modify this file by hand!\n // Re-generate this file by running lit-localize\n\n \n \n\n /* eslint-disable no-irregular-whitespace */\n /* eslint-disable @typescript-eslint/no-explicit-any */\n\n export const templates = {\n 'sf9b52aece5aed0f7': `x-axes`,\n's9f41d726ecec72c2': `y-axes`,\n's31be7a0b4a5853dd': `z-axes`,\n'sd793f87f18747a63': `dimension`,\n'sf95fdd7da4fc2295': `translate`,\n's6aacb9fbb71a1d91': `scale`,\n's075cb2f53173bd8a': `rotate`,\n'sc4bcadba8e631b86': `name`,\n's63c6e58ec805a9eb': `from date`,\n'sfcc01216c601ec9e': `from time`,\n's685db98545dc9448': `to date`,\n's77c8560cf63a372d': `to time`,\n's42670fc325584e15': `The day before`,\n's29ec9210c8a8222e': `The day`,\n'scff69aa7239287b0': `The day after`,\n };\n "]}