@operato/input 1.0.0-beta.7 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.storybook/main.js +2 -2
- package/.storybook/server.mjs +4 -4
- package/CHANGELOG.md +417 -0
- package/demo/index-multiple-colors.html +4 -1
- package/demo/index-partition-keys.html +2 -5
- package/demo/index-select.html +1 -1
- package/demo/index.html +4 -0
- package/dist/src/index.d.ts +4 -2
- package/dist/src/index.js +4 -2
- package/dist/src/index.js.map +1 -1
- package/dist/src/locales/en.d.ts +8 -0
- package/dist/src/locales/en.js +8 -0
- package/dist/src/locales/en.js.map +1 -1
- package/dist/src/locales/ko.d.ts +8 -0
- package/dist/src/locales/ko.js +8 -0
- package/dist/src/locales/ko.js.map +1 -1
- package/dist/src/locales/ms.d.ts +8 -0
- package/dist/src/locales/ms.js +8 -0
- package/dist/src/locales/ms.js.map +1 -1
- package/dist/src/locales/zh.d.ts +8 -0
- package/dist/src/locales/zh.js +8 -0
- package/dist/src/locales/zh.js.map +1 -1
- package/dist/src/ox-input-3dish.js +24 -8
- package/dist/src/ox-input-3dish.js.map +1 -1
- package/dist/src/ox-input-barcode.d.ts +5 -2
- package/dist/src/ox-input-barcode.js +61 -31
- package/dist/src/ox-input-barcode.js.map +1 -1
- package/dist/src/ox-input-color.js +16 -11
- package/dist/src/ox-input-color.js.map +1 -1
- package/dist/src/ox-input-crontab.js +28 -10
- package/dist/src/ox-input-crontab.js.map +1 -1
- package/dist/src/ox-input-data.js +1 -1
- package/dist/src/ox-input-data.js.map +1 -1
- package/dist/src/ox-input-duration.d.ts +13 -0
- package/dist/src/ox-input-duration.js +163 -0
- package/dist/src/ox-input-duration.js.map +1 -0
- package/dist/src/ox-input-file.js +5 -3
- package/dist/src/ox-input-file.js.map +1 -1
- package/dist/src/ox-input-key-values.d.ts +41 -0
- package/dist/src/ox-input-key-values.js +233 -0
- package/dist/src/ox-input-key-values.js.map +1 -0
- package/dist/src/ox-input-multiple-colors.d.ts +1 -0
- package/dist/src/ox-input-multiple-colors.js +29 -21
- package/dist/src/ox-input-multiple-colors.js.map +1 -1
- package/dist/src/ox-input-options.d.ts +1 -0
- package/dist/src/ox-input-options.js +55 -14
- package/dist/src/ox-input-options.js.map +1 -1
- package/dist/src/ox-input-partition-keys.d.ts +1 -0
- package/dist/src/ox-input-partition-keys.js +51 -23
- package/dist/src/ox-input-partition-keys.js.map +1 -1
- package/dist/src/ox-input-quantifier.d.ts +11 -0
- package/dist/src/ox-input-quantifier.js +67 -0
- package/dist/src/ox-input-quantifier.js.map +1 -0
- package/dist/src/ox-input-range.js +35 -38
- package/dist/src/ox-input-range.js.map +1 -1
- package/dist/src/ox-input-search.d.ts +1 -0
- package/dist/src/ox-input-search.js +27 -5
- package/dist/src/ox-input-search.js.map +1 -1
- package/dist/src/ox-input-unit.d.ts +17 -0
- package/dist/src/ox-input-unit.js +122 -0
- package/dist/src/ox-input-unit.js.map +1 -0
- package/dist/src/ox-input-value-map.d.ts +2 -2
- package/dist/src/ox-input-value-map.js +51 -15
- package/dist/src/ox-input-value-map.js.map +1 -1
- package/dist/src/ox-input-value-ranges.d.ts +2 -2
- package/dist/src/ox-input-value-ranges.js +50 -23
- package/dist/src/ox-input-value-ranges.js.map +1 -1
- package/dist/src/ox-input-work-shift.js +79 -44
- package/dist/src/ox-input-work-shift.js.map +1 -1
- package/dist/src/ox-select.js +12 -3
- package/dist/src/ox-select.js.map +1 -1
- package/dist/stories/ox-checkbox.stories.d.ts +39 -0
- package/dist/stories/ox-checkbox.stories.js +44 -0
- package/dist/stories/ox-checkbox.stories.js.map +1 -0
- package/dist/stories/ox-input-3dish.stories.d.ts +26 -0
- package/dist/stories/ox-input-3dish.stories.js +59 -0
- package/dist/stories/ox-input-3dish.stories.js.map +1 -0
- package/dist/stories/ox-input-barcode.stories.d.ts +43 -0
- package/dist/stories/ox-input-barcode.stories.js +59 -0
- package/dist/stories/ox-input-barcode.stories.js.map +1 -0
- package/dist/stories/ox-input-crontab.stories.d.ts +25 -0
- package/dist/stories/ox-input-crontab.stories.js +35 -0
- package/dist/stories/ox-input-crontab.stories.js.map +1 -0
- package/dist/stories/ox-input-duration.stories.d.ts +26 -0
- package/dist/stories/ox-input-duration.stories.js +37 -0
- package/dist/stories/ox-input-duration.stories.js.map +1 -0
- package/dist/stories/ox-input-file.stories.d.ts +49 -0
- package/dist/stories/ox-input-file.stories.js +48 -0
- package/dist/stories/ox-input-file.stories.js.map +1 -0
- package/dist/stories/{index.stories.d.ts → ox-input-key-values.stories.d.ts} +7 -11
- package/dist/stories/ox-input-key-values.stories.js +49 -0
- package/dist/stories/ox-input-key-values.stories.js.map +1 -0
- package/dist/stories/ox-input-multiple-colors.stories.d.ts +20 -0
- package/dist/stories/ox-input-multiple-colors.stories.js +167 -0
- package/dist/stories/ox-input-multiple-colors.stories.js.map +1 -0
- package/dist/stories/ox-input-options.stories.d.ts +25 -0
- package/dist/stories/ox-input-options.stories.js +33 -0
- package/dist/stories/ox-input-options.stories.js.map +1 -0
- package/dist/stories/ox-input-partition-keys.stories.d.ts +25 -0
- package/dist/stories/ox-input-partition-keys.stories.js +37 -0
- package/dist/stories/ox-input-partition-keys.stories.js.map +1 -0
- package/dist/stories/ox-input-quantifier.stories.d.ts +25 -0
- package/dist/stories/ox-input-quantifier.stories.js +27 -0
- package/dist/stories/ox-input-quantifier.stories.js.map +1 -0
- package/dist/stories/ox-input-range.stories.d.ts +37 -0
- package/dist/stories/ox-input-range.stories.js +28 -0
- package/dist/stories/ox-input-range.stories.js.map +1 -0
- package/dist/stories/ox-input-search.stories.d.ts +33 -0
- package/dist/stories/ox-input-search.stories.js +35 -0
- package/dist/stories/ox-input-search.stories.js.map +1 -0
- package/dist/stories/ox-input-unit.stories.d.ts +40 -0
- package/dist/stories/ox-input-unit.stories.js +42 -0
- package/dist/stories/ox-input-unit.stories.js.map +1 -0
- package/dist/stories/ox-input-value-map.stories.d.ts +35 -0
- package/dist/stories/ox-input-value-map.stories.js +37 -0
- package/dist/stories/ox-input-value-map.stories.js.map +1 -0
- package/dist/stories/ox-input-value-ranges.stories.d.ts +35 -0
- package/dist/stories/ox-input-value-ranges.stories.js +37 -0
- package/dist/stories/ox-input-value-ranges.stories.js.map +1 -0
- package/dist/stories/ox-input-work-shift.stories.d.ts +26 -0
- package/dist/stories/ox-input-work-shift.stories.js +59 -0
- package/dist/stories/ox-input-work-shift.stories.js.map +1 -0
- package/dist/stories/ox-select.stories.d.ts +30 -0
- package/dist/stories/ox-select.stories.js +83 -0
- package/dist/stories/ox-select.stories.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +16 -13
- package/src/index.ts +4 -2
- package/src/locales/en.ts +8 -0
- package/src/locales/ko.ts +8 -0
- package/src/locales/ms.ts +8 -0
- package/src/locales/zh.ts +8 -0
- package/src/ox-input-3dish.ts +24 -8
- package/src/ox-input-barcode.ts +67 -34
- package/src/ox-input-color.ts +17 -11
- package/src/ox-input-crontab.ts +30 -10
- package/src/ox-input-data.ts +2 -2
- package/src/ox-input-duration.ts +168 -0
- package/src/ox-input-file.ts +7 -6
- package/src/ox-input-key-values.ts +270 -0
- package/src/ox-input-multiple-colors.ts +29 -21
- package/src/ox-input-options.ts +54 -13
- package/src/ox-input-partition-keys.ts +51 -22
- package/src/ox-input-quantifier.ts +62 -0
- package/src/ox-input-range.ts +35 -38
- package/src/ox-input-search.ts +29 -5
- package/src/ox-input-unit.ts +123 -0
- package/src/ox-input-value-map.ts +52 -16
- package/src/ox-input-value-ranges.ts +52 -25
- package/src/ox-input-work-shift.ts +81 -44
- package/src/ox-select.ts +19 -5
- package/stories/ox-checkbox.stories.ts +69 -0
- package/stories/ox-input-3dish.stories.ts +73 -0
- package/stories/ox-input-barcode.stories.ts +85 -0
- package/stories/ox-input-code.stories.ts_ +51 -0
- package/stories/ox-input-crontab.stories.ts +49 -0
- package/stories/ox-input-duration.stories.ts +51 -0
- package/stories/ox-input-file.stories.ts +77 -0
- package/stories/ox-input-key-values.stories.ts +64 -0
- package/stories/ox-input-multiple-colors.stories.ts +178 -0
- package/stories/ox-input-options.stories.ts +47 -0
- package/stories/ox-input-partition-keys.stories.ts +51 -0
- package/stories/ox-input-quantifier.stories.ts +43 -0
- package/stories/ox-input-range.stories.ts +45 -0
- package/stories/ox-input-search.stories.ts +56 -0
- package/stories/ox-input-unit.stories.ts +66 -0
- package/stories/ox-input-value-map.stories.ts +58 -0
- package/stories/ox-input-value-ranges.stories.ts +58 -0
- package/stories/ox-input-work-shift.stories.ts +73 -0
- package/stories/ox-select.stories.ts +101 -0
- package/themes/app-theme.css +142 -0
- package/themes/input-theme.css +19 -0
- package/translations/en.json +45 -1
- package/translations/ko.json +43 -1
- package/translations/ms.json +43 -1
- package/translations/zh.json +43 -1
- package/xliff/en.xlf +24 -0
- package/xliff/ko.xlf +32 -0
- package/xliff/ms.xlf +24 -0
- package/xliff/zh.xlf +24 -0
- package/dist/stories/index.stories.js +0 -33
- package/dist/stories/index.stories.js.map +0 -1
- package/stories/index.stories.ts +0 -52
package/.storybook/main.js
CHANGED
@@ -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
|
+
}
|
package/.storybook/server.mjs
CHANGED
@@ -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,423 @@
|
|
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](https://github.com/hatiolab/operato/compare/v1.0.0-beta.51...v1.0.0) (2022-07-24)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @operato/input
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [1.0.0-beta.51](https://github.com/hatiolab/operato/compare/v1.0.0-beta.50...v1.0.0-beta.51) (2022-07-22)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @operato/input
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
## [1.0.0-beta.50](https://github.com/hatiolab/operato/compare/v1.0.0-beta.49...v1.0.0-beta.50) (2022-07-18)
|
23
|
+
|
24
|
+
|
25
|
+
### :bug: Bug Fix
|
26
|
+
|
27
|
+
* ox-select label ([6dde9bb](https://github.com/hatiolab/operato/commit/6dde9bb629ca81fa6ac69d70efbe3c5d6c08e80a))
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
## [1.0.0-beta.49](https://github.com/hatiolab/operato/compare/v1.0.0-beta.48...v1.0.0-beta.49) (2022-07-17)
|
32
|
+
|
33
|
+
**Note:** Version bump only for package @operato/input
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
## [1.0.0-beta.48](https://github.com/hatiolab/operato/compare/v1.0.0-beta.47...v1.0.0-beta.48) (2022-07-17)
|
40
|
+
|
41
|
+
**Note:** Version bump only for package @operato/input
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
## [1.0.0-beta.47](https://github.com/hatiolab/operato/compare/v1.0.0-beta.46...v1.0.0-beta.47) (2022-07-15)
|
48
|
+
|
49
|
+
|
50
|
+
### :bug: Bug Fix
|
51
|
+
|
52
|
+
* data-grist autofocus and gutter button title ([142c2cd](https://github.com/hatiolab/operato/commit/142c2cd02b14e1d0d2df11f722dc36bad18a82c2))
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
## [1.0.0-beta.46](https://github.com/hatiolab/operato/compare/v1.0.0-beta.45...v1.0.0-beta.46) (2022-07-11)
|
57
|
+
|
58
|
+
|
59
|
+
### :bug: Bug Fix
|
60
|
+
|
61
|
+
* property-editor spec. changed ([b10e4ef](https://github.com/hatiolab/operato/commit/b10e4ef151450a0ca19cbf00c9c96da80ddaaed8))
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
## [1.0.0-beta.45](https://github.com/hatiolab/operato/compare/v1.0.0-beta.44...v1.0.0-beta.45) (2022-07-09)
|
66
|
+
|
67
|
+
|
68
|
+
### :bug: Bug Fix
|
69
|
+
|
70
|
+
* upgrade dependencies ([4986392](https://github.com/hatiolab/operato/commit/4986392e64524b5602cc9a144def239e85524bee))
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
## [1.0.0-beta.44](https://github.com/hatiolab/operato/compare/v1.0.0-beta.43...v1.0.0-beta.44) (2022-07-07)
|
75
|
+
|
76
|
+
|
77
|
+
### :bug: Bug Fix
|
78
|
+
|
79
|
+
* board property-editor style, option-able fullwidth, ox-input-select event ([6d181de](https://github.com/hatiolab/operato/commit/6d181de26467ee0f1733f6367049517c69383f31))
|
80
|
+
* escape ('' == 0) case for ox-grist-renderer-select ([70a2a3a](https://github.com/hatiolab/operato/commit/70a2a3ac9d52fcf1a2067160e9ea02c9a4e3c482))
|
81
|
+
* ox-input-barcode story ([3720aa9](https://github.com/hatiolab/operato/commit/3720aa9bed30e2e8e9955695b0760ec421e6dbb5))
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
## [1.0.0-beta.43](https://github.com/hatiolab/operato/compare/v1.0.0-beta.42...v1.0.0-beta.43) (2022-07-03)
|
86
|
+
|
87
|
+
**Note:** Version bump only for package @operato/input
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
## [1.0.0-beta.42](https://github.com/hatiolab/operato/compare/v1.0.0-beta.41...v1.0.0-beta.42) (2022-07-03)
|
94
|
+
|
95
|
+
|
96
|
+
### :bug: Bug Fix
|
97
|
+
|
98
|
+
* ox-input-barcode ([e7aa50f](https://github.com/hatiolab/operato/commit/e7aa50fd1d5c034b81173e1b7db8837d0babd0e8))
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
## [1.0.0-beta.41](https://github.com/hatiolab/operato/compare/v1.0.0-beta.40...v1.0.0-beta.41) (2022-06-30)
|
103
|
+
|
104
|
+
**Note:** Version bump only for package @operato/input
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
## [1.0.0-beta.40](https://github.com/hatiolab/operato/compare/v1.0.0-beta.39...v1.0.0-beta.40) (2022-06-29)
|
111
|
+
|
112
|
+
|
113
|
+
### :bug: Bug Fix
|
114
|
+
|
115
|
+
* [#43](https://github.com/hatiolab/operato/issues/43)-datasample ([14ab019](https://github.com/hatiolab/operato/commit/14ab0199311f340c784018b9fc78b70e57b09567))
|
116
|
+
* duration editor for grist and property editor ([db2a59e](https://github.com/hatiolab/operato/commit/db2a59eca05c3d5c324d351ad9c201f5f93113c4))
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
## [1.0.0-beta.39](https://github.com/hatiolab/operato/compare/v1.0.0-beta.38...v1.0.0-beta.39) (2022-06-22)
|
121
|
+
|
122
|
+
**Note:** Version bump only for package @operato/input
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
## [1.0.0-beta.38](https://github.com/hatiolab/operato/compare/v1.0.0-beta.37...v1.0.0-beta.38) (2022-06-20)
|
129
|
+
|
130
|
+
**Note:** Version bump only for package @operato/input
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
## [1.0.0-beta.37](https://github.com/hatiolab/operato/compare/v1.0.0-beta.36...v1.0.0-beta.37) (2022-06-20)
|
137
|
+
|
138
|
+
|
139
|
+
### :bug: Bug Fix
|
140
|
+
|
141
|
+
* input duration style ([cc49506](https://github.com/hatiolab/operato/commit/cc49506ca87e784cd04c49cfa52fbc77c940d187))
|
142
|
+
* translate for input ([588b271](https://github.com/hatiolab/operato/commit/588b27165cd40c7ed8608e5272b03e79e754a03c))
|
143
|
+
* translations for inputs ([377a0ba](https://github.com/hatiolab/operato/commit/377a0badca1084f8951c4222c5ac5f665eb31fd6))
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
## [1.0.0-beta.36](https://github.com/hatiolab/operato/compare/v1.0.0-beta.35...v1.0.0-beta.36) (2022-06-16)
|
148
|
+
|
149
|
+
|
150
|
+
### :bug: Bug Fix
|
151
|
+
|
152
|
+
* ox-input-barcode ([9a4150b](https://github.com/hatiolab/operato/commit/9a4150bf5e1c28b78b1cd864361115dada03a36d))
|
153
|
+
* 다국어 문자 입력시 keyDown/Up 두번씩 발생하는 것에 대한 대응 ([de67ef4](https://github.com/hatiolab/operato/commit/de67ef4b43f4249e3164dd09c5c778368b7d1a7e))
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
## [1.0.0-beta.35](https://github.com/hatiolab/operato/compare/v1.0.0-beta.34...v1.0.0-beta.35) (2022-06-16)
|
158
|
+
|
159
|
+
|
160
|
+
### :bug: Bug Fix
|
161
|
+
|
162
|
+
* select-after-change error ([15b9c05](https://github.com/hatiolab/operato/commit/15b9c059de161d8e42aee9a03ea99c2da714f1b7))
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
## [1.0.0-beta.34](https://github.com/hatiolab/operato/compare/v1.0.0-beta.33...v1.0.0-beta.34) (2022-06-16)
|
167
|
+
|
168
|
+
|
169
|
+
### :bug: Bug Fix
|
170
|
+
|
171
|
+
* support select-after-change from ox-input-search ([fc907e1](https://github.com/hatiolab/operato/commit/fc907e1e28b85923f5530e76d4d4fb15e16444db))
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
## [1.0.0-beta.33](https://github.com/hatiolab/operato/compare/v1.0.0-beta.32...v1.0.0-beta.33) (2022-06-16)
|
176
|
+
|
177
|
+
|
178
|
+
### :rocket: New Features
|
179
|
+
|
180
|
+
* ox-input-barcode select-over-change ([4ea095e](https://github.com/hatiolab/operato/commit/4ea095e2f2d77152e041c5fe8ec43f09074f08d3))
|
181
|
+
|
182
|
+
|
183
|
+
### :bug: Bug Fix
|
184
|
+
|
185
|
+
* ox-input-barcode ([08da2b1](https://github.com/hatiolab/operato/commit/08da2b1ab66d9fe167c26315ea2241f28156fb82))
|
186
|
+
* ox-input-barcode ([8c4290d](https://github.com/hatiolab/operato/commit/8c4290d58ef6aa257398ddcc97a00e640668bc3f))
|
187
|
+
* select-over-change => select-after-change ([eda7ad0](https://github.com/hatiolab/operato/commit/eda7ad06a761e91888113e8a445a6092ac9e7613))
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
## [1.0.0-beta.32](https://github.com/hatiolab/operato/compare/v1.0.0-beta.31...v1.0.0-beta.32) (2022-06-15)
|
192
|
+
|
193
|
+
**Note:** Version bump only for package @operato/input
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
## [1.0.0-beta.31](https://github.com/hatiolab/operato/compare/v1.0.0-beta.30...v1.0.0-beta.31) (2022-06-15)
|
200
|
+
|
201
|
+
|
202
|
+
### :rocket: New Features
|
203
|
+
|
204
|
+
* add ox-input-duration ([34e727f](https://github.com/hatiolab/operato/commit/34e727fff77c5a6764b5fba63c56564919766373))
|
205
|
+
* ox-input-barcode english-only ([c062ab9](https://github.com/hatiolab/operato/commit/c062ab99be827e8d5e4f55a6f95a0df7c2dd10d8))
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
## [1.0.0-beta.30](https://github.com/hatiolab/operato/compare/v1.0.0-beta.29...v1.0.0-beta.30) (2022-06-13)
|
210
|
+
|
211
|
+
|
212
|
+
### :bug: Bug Fix
|
213
|
+
|
214
|
+
* input barcode style ([3a7e27b](https://github.com/hatiolab/operato/commit/3a7e27b1e4589fc7a9ccfd0eceda93d76e4c0a4b))
|
215
|
+
|
216
|
+
|
217
|
+
|
218
|
+
## [1.0.0-beta.29](https://github.com/hatiolab/operato/compare/v1.0.0-beta.28...v1.0.0-beta.29) (2022-06-10)
|
219
|
+
|
220
|
+
**Note:** Version bump only for package @operato/input
|
221
|
+
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
|
226
|
+
## [1.0.0-beta.28](https://github.com/hatiolab/operato/compare/v1.0.0-beta.27...v1.0.0-beta.28) (2022-06-10)
|
227
|
+
|
228
|
+
**Note:** Version bump only for package @operato/input
|
229
|
+
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
|
234
|
+
## [1.0.0-beta.27](https://github.com/hatiolab/operato/compare/v1.0.0-beta.26...v1.0.0-beta.27) (2022-06-09)
|
235
|
+
|
236
|
+
|
237
|
+
### :bug: Bug Fix
|
238
|
+
|
239
|
+
* input style ([a5d9c0e](https://github.com/hatiolab/operato/commit/a5d9c0eacc89522e26fe5e982b3a5ece9666b85f))
|
240
|
+
* value range style ([fcad7e0](https://github.com/hatiolab/operato/commit/fcad7e0f84904516bc3cd154b578725648663207))
|
241
|
+
|
242
|
+
|
243
|
+
|
244
|
+
## [1.0.0-beta.26](https://github.com/hatiolab/operato/compare/v1.0.0-beta.25...v1.0.0-beta.26) (2022-06-04)
|
245
|
+
|
246
|
+
|
247
|
+
### :bug: Bug Fix
|
248
|
+
|
249
|
+
* form, input style ([b94efe5](https://github.com/hatiolab/operato/commit/b94efe5bb844f2a410918d4a464c2a1e6530d4cd))
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
## [1.0.0-beta.25](https://github.com/hatiolab/operato/compare/v1.0.0-beta.24...v1.0.0-beta.25) (2022-06-02)
|
254
|
+
|
255
|
+
**Note:** Version bump only for package @operato/input
|
256
|
+
|
257
|
+
|
258
|
+
|
259
|
+
|
260
|
+
|
261
|
+
## [1.0.0-beta.24](https://github.com/hatiolab/operato/compare/v1.0.0-beta.23...v1.0.0-beta.24) (2022-06-02)
|
262
|
+
|
263
|
+
**Note:** Version bump only for package @operato/input
|
264
|
+
|
265
|
+
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
## [1.0.0-beta.23](https://github.com/hatiolab/operato/compare/v1.0.0-beta.22...v1.0.0-beta.23) (2022-06-02)
|
270
|
+
|
271
|
+
**Note:** Version bump only for package @operato/input
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
## [1.0.0-beta.22](https://github.com/hatiolab/operato/compare/v1.0.0-beta.21...v1.0.0-beta.22) (2022-05-31)
|
278
|
+
|
279
|
+
|
280
|
+
### :bug: Bug Fix
|
281
|
+
|
282
|
+
* grid click handler, crontab clear button, ox-input-key-values ([16079b9](https://github.com/hatiolab/operato/commit/16079b94fef2860627aded1888960f3e7e1bf418))
|
283
|
+
|
284
|
+
|
285
|
+
|
286
|
+
## [1.0.0-beta.21](https://github.com/hatiolab/operato/compare/v1.0.0-beta.20...v1.0.0-beta.21) (2022-05-31)
|
287
|
+
|
288
|
+
|
289
|
+
### :bug: Bug Fix
|
290
|
+
|
291
|
+
* add ox-input-key-values, ox-property-editor-key-values and so on ([d26b2e9](https://github.com/hatiolab/operato/commit/d26b2e94a5e43935e5e80a1ebb0948642624ca92))
|
292
|
+
* add stories for input - ox-input-value-map, ox-input-value-ranges ([9f07403](https://github.com/hatiolab/operato/commit/9f07403087e4bc0761bfb0eb10991ad09ccf97d9))
|
293
|
+
|
294
|
+
|
295
|
+
|
296
|
+
## [1.0.0-beta.20](https://github.com/hatiolab/operato/compare/v1.0.0-beta.19...v1.0.0-beta.20) (2022-05-30)
|
297
|
+
|
298
|
+
**Note:** Version bump only for package @operato/input
|
299
|
+
|
300
|
+
|
301
|
+
|
302
|
+
|
303
|
+
|
304
|
+
## [1.0.0-beta.19](https://github.com/hatiolab/operato/compare/v1.0.0-beta.18...v1.0.0-beta.19) (2022-05-29)
|
305
|
+
|
306
|
+
**Note:** Version bump only for package @operato/input
|
307
|
+
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
|
312
|
+
## [1.0.0-beta.18](https://github.com/hatiolab/operato/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2022-05-27)
|
313
|
+
|
314
|
+
|
315
|
+
### :bug: Bug Fix
|
316
|
+
|
317
|
+
* add ox-input-files story ([e450dce](https://github.com/hatiolab/operato/commit/e450dce3b4403d00f1b91bf3d5ae88d28eb6a40e))
|
318
|
+
* pagination limit for data-grist ([a1dad87](https://github.com/hatiolab/operato/commit/a1dad87289f26d2f69b6831bcb601e5e9938aef1))
|
319
|
+
|
320
|
+
|
321
|
+
|
322
|
+
## [1.0.0-beta.17](https://github.com/hatiolab/operato/compare/v1.0.0-beta.16...v1.0.0-beta.17) (2022-05-25)
|
323
|
+
|
324
|
+
|
325
|
+
### :bug: Bug Fix
|
326
|
+
|
327
|
+
* ox input work shift, select ([3f68c47](https://github.com/hatiolab/operato/commit/3f68c47a165555c7715bfdd602387cee353b8b54))
|
328
|
+
* ox-input range, unit style ([e295f1c](https://github.com/hatiolab/operato/commit/e295f1c4e04c761f8a6267792ac7aa39cfdb7706))
|
329
|
+
|
330
|
+
|
331
|
+
|
332
|
+
## [1.0.0-beta.16](https://github.com/hatiolab/operato/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-05-23)
|
333
|
+
|
334
|
+
**Note:** Version bump only for package @operato/input
|
335
|
+
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
|
340
|
+
## [1.0.0-beta.15](https://github.com/hatiolab/operato/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-05-20)
|
341
|
+
|
342
|
+
**Note:** Version bump only for package @operato/input
|
343
|
+
|
344
|
+
|
345
|
+
|
346
|
+
|
347
|
+
|
348
|
+
## [1.0.0-beta.14](https://github.com/hatiolab/operato/compare/v1.0.0-beta.13...v1.0.0-beta.14) (2022-05-19)
|
349
|
+
|
350
|
+
**Note:** Version bump only for package @operato/input
|
351
|
+
|
352
|
+
|
353
|
+
|
354
|
+
|
355
|
+
|
356
|
+
## [1.0.0-beta.13](https://github.com/hatiolab/operato/compare/v1.0.0-beta.12...v1.0.0-beta.13) (2022-05-19)
|
357
|
+
|
358
|
+
|
359
|
+
### :rocket: New Features
|
360
|
+
|
361
|
+
* add ox-input-unit ([06f5f56](https://github.com/hatiolab/operato/commit/06f5f56fa0dd56fed973b399ac4dc42a383c8ad4))
|
362
|
+
|
363
|
+
|
364
|
+
### :bug: Bug Fix
|
365
|
+
|
366
|
+
* incorrect package.json scripts for storybooks ([8c8c405](https://github.com/hatiolab/operato/commit/8c8c405443247108b9c411b8161c008d9b6a2261))
|
367
|
+
* input partition keys style ([191bba8](https://github.com/hatiolab/operato/commit/191bba85a9f2d214f4bceaadde4e013cad50789a))
|
368
|
+
* input partition keys style ([393a59d](https://github.com/hatiolab/operato/commit/393a59d1229045067c06cd06285c92770a8631c1))
|
369
|
+
* multiple color style ([e558bb4](https://github.com/hatiolab/operato/commit/e558bb4470b6542a2562f9929575ef436f3d3a0f))
|
370
|
+
* ox input style ([989bdbb](https://github.com/hatiolab/operato/commit/989bdbb9bfd4ca7b4bdb1f3391bd96b75cbbffed))
|
371
|
+
* storyboard for inputs ([c38e6e7](https://github.com/hatiolab/operato/commit/c38e6e70b5351955a4d0571e6cb0fe3875d2f254))
|
372
|
+
* storybook & input multiple colors ([a7e4319](https://github.com/hatiolab/operato/commit/a7e431953479156979ae48c9bad0a213519bca2b))
|
373
|
+
* storybook for data-grist ([ae0ad52](https://github.com/hatiolab/operato/commit/ae0ad52d642454c70a4e27f262b8811f7e53f420))
|
374
|
+
* storybook for inputs ([72f7992](https://github.com/hatiolab/operato/commit/72f7992d902528e3a5ca0f3f0f3897902b6b13bd))
|
375
|
+
* storybook for ox-input-range ([4f3c44f](https://github.com/hatiolab/operato/commit/4f3c44ff285b4bfb61a03d93df3f73551b75b62a))
|
376
|
+
* upgrade @zxing/library ([b9749cb](https://github.com/hatiolab/operato/commit/b9749cb2986067ffa1c2d03e91d3eb18e6729f56))
|
377
|
+
|
378
|
+
|
379
|
+
|
380
|
+
## [1.0.0-beta.12](https://github.com/hatiolab/operato/compare/v1.0.0-beta.11...v1.0.0-beta.12) (2022-05-13)
|
381
|
+
|
382
|
+
|
383
|
+
### :rocket: New Features
|
384
|
+
|
385
|
+
* storybook started ([90c08c9](https://github.com/hatiolab/operato/commit/90c08c9a15e5fe554baaa1becca07793e8434799))
|
386
|
+
|
387
|
+
|
388
|
+
|
389
|
+
## [1.0.0-beta.11](https://github.com/hatiolab/operato/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2022-05-01)
|
390
|
+
|
391
|
+
**Note:** Version bump only for package @operato/input
|
392
|
+
|
393
|
+
|
394
|
+
|
395
|
+
|
396
|
+
|
397
|
+
## [1.0.0-beta.10](https://github.com/hatiolab/operato/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2022-04-28)
|
398
|
+
|
399
|
+
**Note:** Version bump only for package @operato/input
|
400
|
+
|
401
|
+
|
402
|
+
|
403
|
+
|
404
|
+
|
405
|
+
## [1.0.0-beta.9](https://github.com/hatiolab/operato/compare/v1.0.0-beta.8...v1.0.0-beta.9) (2022-04-28)
|
406
|
+
|
407
|
+
|
408
|
+
### :bug: Bug Fix
|
409
|
+
|
410
|
+
* search value for filters-form ([a3a0ed5](https://github.com/hatiolab/operato/commit/a3a0ed59a924a1b13f304705a27137af98638bd0))
|
411
|
+
|
412
|
+
|
413
|
+
|
414
|
+
## [1.0.0-beta.8](https://github.com/hatiolab/operato/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2022-04-27)
|
415
|
+
|
416
|
+
|
417
|
+
### :bug: Bug Fix
|
418
|
+
|
419
|
+
* filters-form style ([b02c530](https://github.com/hatiolab/operato/commit/b02c530fc7e106c42f0f87d1b62f3707063e03ca))
|
420
|
+
|
421
|
+
|
422
|
+
|
6
423
|
## [1.0.0-beta.7](https://github.com/hatiolab/operato/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2022-04-24)
|
7
424
|
|
8
425
|
**Note:** Version bump only for package @operato/input
|
@@ -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
|
-
<
|
6
|
-
|
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>
|
package/demo/index-select.html
CHANGED
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>
|
package/dist/src/index.d.ts
CHANGED
@@ -17,5 +17,7 @@ export * from './ox-input-value-ranges.js';
|
|
17
17
|
export * from './ox-input-value-map.js';
|
18
18
|
export * from './ox-input-table.js';
|
19
19
|
export * from './ox-input-scene-component-id.js';
|
20
|
-
export * from './ox-input-crontab';
|
21
|
-
export * from './ox-input-partition-keys';
|
20
|
+
export * from './ox-input-crontab.js';
|
21
|
+
export * from './ox-input-partition-keys.js';
|
22
|
+
export * from './ox-input-duration.js';
|
23
|
+
export * from './ox-input-quantifier.js';
|
package/dist/src/index.js
CHANGED
@@ -17,6 +17,8 @@ export * from './ox-input-value-ranges.js';
|
|
17
17
|
export * from './ox-input-value-map.js';
|
18
18
|
export * from './ox-input-table.js';
|
19
19
|
export * from './ox-input-scene-component-id.js';
|
20
|
-
export * from './ox-input-crontab';
|
21
|
-
export * from './ox-input-partition-keys';
|
20
|
+
export * from './ox-input-crontab.js';
|
21
|
+
export * from './ox-input-partition-keys.js';
|
22
|
+
export * from './ox-input-duration.js';
|
23
|
+
export * from './ox-input-quantifier.js';
|
22
24
|
//# sourceMappingURL=index.js.map
|
package/dist/src/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAA;AAClC,cAAc,uBAAuB,CAAA;AACrC,cAAc,kBAAkB,CAAA;AAChC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA;AACrC,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2BAA2B,CAAA;AACzC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA;AACvC,cAAc,qBAAqB,CAAA;AACnC,cAAc,kCAAkC,CAAA;AAChD,cAAc,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAA;AAClC,cAAc,uBAAuB,CAAA;AACrC,cAAc,kBAAkB,CAAA;AAChC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA;AACrC,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2BAA2B,CAAA;AACzC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA;AACvC,cAAc,qBAAqB,CAAA;AACnC,cAAc,kCAAkC,CAAA;AAChD,cAAc,uBAAuB,CAAA;AACrC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,wBAAwB,CAAA;AACtC,cAAc,0BAA0B,CAAA","sourcesContent":["export * from './ox-form-field.js'\nexport * from './ox-buttons-radio.js'\nexport * from './ox-checkbox.js'\nexport * from './ox-select.js'\nexport * from './ox-input-angle.js'\nexport * from './ox-input-3dish.js'\nexport * from './ox-input-stack.js'\nexport * from './ox-input-barcode.js'\nexport * from './ox-input-code.js'\nexport * from './ox-input-color.js'\nexport * from './ox-input-multiple-colors.js'\nexport * from './ox-input-color-stops.js'\nexport * from './ox-input-color-gradient.js'\nexport * from './ox-input-file.js'\nexport * from './ox-input-image.js'\nexport * from './ox-input-value-ranges.js'\nexport * from './ox-input-value-map.js'\nexport * from './ox-input-table.js'\nexport * from './ox-input-scene-component-id.js'\nexport * from './ox-input-crontab.js'\nexport * from './ox-input-partition-keys.js'\nexport * from './ox-input-duration.js'\nexport * from './ox-input-quantifier.js'\n"]}
|
package/dist/src/locales/en.d.ts
CHANGED
@@ -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
|
};
|
package/dist/src/locales/en.js
CHANGED
@@ -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;
|
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 "]}
|
package/dist/src/locales/ko.d.ts
CHANGED
@@ -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
|
};
|
package/dist/src/locales/ko.js
CHANGED
@@ -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;
|
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 "]}
|
package/dist/src/locales/ms.d.ts
CHANGED
@@ -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
|
};
|
package/dist/src/locales/ms.js
CHANGED
@@ -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;
|
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 "]}
|