@operato/input 8.0.0-beta.5 → 8.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -142
- package/assets/images/icon-editor-gradient-direction.png +0 -0
- package/assets/images/icon-properties-label.png +0 -0
- package/assets/images/icon-properties-line-type.png +0 -0
- package/assets/images/icon-properties-table.png +0 -0
- package/dist/src/index.d.ts +0 -1
- package/dist/src/index.js +0 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/ox-input-color-stops.d.ts +1 -1
- package/dist/src/ox-input-color-stops.js +2 -2
- package/dist/src/ox-input-color-stops.js.map +1 -1
- package/dist/src/ox-input-direction.d.ts +0 -1
- package/dist/src/ox-input-direction.js +4 -37
- package/dist/src/ox-input-direction.js.map +1 -1
- package/dist/src/ox-input-select-buttons.d.ts +1 -1
- package/dist/src/ox-input-select-buttons.js +2 -2
- package/dist/src/ox-input-select-buttons.js.map +1 -1
- package/dist/src/ox-input-signature.d.ts +2 -4
- package/dist/src/ox-input-signature.js +14 -34
- package/dist/src/ox-input-signature.js.map +1 -1
- package/dist/src/ox-zoomable-image.d.ts +17 -0
- package/dist/src/ox-zoomable-image.js +80 -0
- package/dist/src/ox-zoomable-image.js.map +1 -0
- package/dist/stories/ox-input-direction.stories.js +0 -11
- package/dist/stories/ox-input-direction.stories.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +15 -23
- package/yarn-error.log +17084 -0
- package/dist/src/ox-input-switch.d.ts +0 -10
- package/dist/src/ox-input-switch.js +0 -125
- package/dist/src/ox-input-switch.js.map +0 -1
- package/dist/src/ox-select-floor.d.ts +0 -35
- package/dist/src/ox-select-floor.js +0 -238
- package/dist/src/ox-select-floor.js.map +0 -1
- package/dist/stories/image-for-select-floor.d.ts +0 -1
- package/dist/stories/image-for-select-floor.js +0 -2
- package/dist/stories/image-for-select-floor.js.map +0 -1
- package/dist/stories/ox-input-switch.stories.d.ts +0 -38
- package/dist/stories/ox-input-switch.stories.js +0 -68
- package/dist/stories/ox-input-switch.stories.js.map +0 -1
- package/dist/stories/ox-select-floor.stories.d.ts +0 -45
- package/dist/stories/ox-select-floor.stories.js +0 -166
- package/dist/stories/ox-select-floor.stories.js.map +0 -1
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@operato/input",
|
3
3
|
"description": "Webcomponents for input following open-wc recommendations",
|
4
4
|
"author": "heartyoh@hatiolab.com",
|
5
|
-
"version": "8.0.
|
5
|
+
"version": "8.0.2",
|
6
6
|
"main": "dist/src/index.js",
|
7
7
|
"module": "dist/src/index.js",
|
8
8
|
"license": "MIT",
|
@@ -42,7 +42,6 @@
|
|
42
42
|
"./ox-input-key-values.js": "./dist/src/ox-input-key-values.js",
|
43
43
|
"./ox-select.js": "./dist/src/ox-select.js",
|
44
44
|
"./ox-input-file.js": "./dist/src/ox-input-file.js",
|
45
|
-
"./ox-input-switch.js": "./dist/src/ox-input-switch.js",
|
46
45
|
"./ox-input-image.js": "./dist/src/ox-input-image.js",
|
47
46
|
"./ox-input-options.js": "./dist/src/ox-input-options.js",
|
48
47
|
"./ox-input-select-buttons.js": "./dist/src/ox-input-select-buttons.js",
|
@@ -59,7 +58,6 @@
|
|
59
58
|
"./ox-input-textarea.js": "./dist/src/ox-input-textarea.js",
|
60
59
|
"./ox-input-direction.js": "./dist/src/ox-input-direction.js",
|
61
60
|
"./ox-input-signature.js": "./dist/src/ox-input-signature.js",
|
62
|
-
"./ox-select-floor.js": "./dist/src/ox-select-floor.js",
|
63
61
|
"./ox-input-table-column-config.js": "./dist/src/ox-input-table-column-config.js"
|
64
62
|
},
|
65
63
|
"typesVersions": {
|
@@ -133,9 +131,6 @@
|
|
133
131
|
"./ox-input-file.js": [
|
134
132
|
"./dist/src/ox-input-file.d.ts"
|
135
133
|
],
|
136
|
-
"./ox-input-switch.js": [
|
137
|
-
"./dist/src/ox-input-switch.d.ts"
|
138
|
-
],
|
139
134
|
"./ox-input-image.js": [
|
140
135
|
"./dist/src/ox-input-image.d.ts"
|
141
136
|
],
|
@@ -184,9 +179,6 @@
|
|
184
179
|
"./ox-input-signature.js": [
|
185
180
|
"./dist/src/ox-input-signature.d.ts"
|
186
181
|
],
|
187
|
-
"./ox-select-floor.js": [
|
188
|
-
"./dist/src/ox-select-floor.d.ts"
|
189
|
-
],
|
190
182
|
"./ox-input-table-column-config.js": [
|
191
183
|
"./dist/src/ox-input-table-column-config.d.ts"
|
192
184
|
]
|
@@ -218,11 +210,11 @@
|
|
218
210
|
"@ctrl/tinycolor": "^4.1.0",
|
219
211
|
"@lit/localize": "^0.12.1",
|
220
212
|
"@material/web": "^2.0.0",
|
221
|
-
"@operato/color-picker": "^8.0.0
|
222
|
-
"@operato/i18n": "^8.0.0
|
223
|
-
"@operato/popup": "^8.0.
|
224
|
-
"@operato/styles": "^8.0.0
|
225
|
-
"@operato/utils": "^8.0.0
|
213
|
+
"@operato/color-picker": "^8.0.0",
|
214
|
+
"@operato/i18n": "^8.0.0",
|
215
|
+
"@operato/popup": "^8.0.2",
|
216
|
+
"@operato/styles": "^8.0.0",
|
217
|
+
"@operato/utils": "^8.0.0",
|
226
218
|
"@polymer/paper-dropdown-menu": "^3.2.0",
|
227
219
|
"@polymer/paper-item": "^3.0.1",
|
228
220
|
"@thebespokepixel/es-tinycolor": "^3.1.0",
|
@@ -233,18 +225,18 @@
|
|
233
225
|
"lodash-es": "^4.17.21"
|
234
226
|
},
|
235
227
|
"devDependencies": {
|
236
|
-
"@custom-elements-manifest/analyzer": "^0.
|
228
|
+
"@custom-elements-manifest/analyzer": "^0.9.2",
|
237
229
|
"@hatiolab/prettier-config": "^1.0.0",
|
238
230
|
"@lit/localize-tools": "^0.7.2",
|
239
231
|
"@open-wc/eslint-config": "^12.0.3",
|
240
|
-
"@open-wc/testing": "^
|
241
|
-
"@typescript-eslint/eslint-plugin": "^
|
242
|
-
"@typescript-eslint/parser": "^
|
243
|
-
"@web/dev-server": "^0.
|
232
|
+
"@open-wc/testing": "^3.1.6",
|
233
|
+
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
234
|
+
"@typescript-eslint/parser": "^7.0.1",
|
235
|
+
"@web/dev-server": "^0.3.0",
|
244
236
|
"@web/dev-server-storybook": "^2.0.1",
|
245
|
-
"@web/test-runner": "^0.
|
246
|
-
"concurrently": "^
|
247
|
-
"eslint": "^
|
237
|
+
"@web/test-runner": "^0.18.0",
|
238
|
+
"concurrently": "^8.0.1",
|
239
|
+
"eslint": "^8.39.0",
|
248
240
|
"eslint-config-prettier": "^9.1.0",
|
249
241
|
"husky": "^9.0.11",
|
250
242
|
"lint-staged": "^15.2.2",
|
@@ -266,5 +258,5 @@
|
|
266
258
|
"prettier --write"
|
267
259
|
]
|
268
260
|
},
|
269
|
-
"gitHead": "
|
261
|
+
"gitHead": "fde85dca498f57fb4aa2c1edf25d18bbbce14c15"
|
270
262
|
}
|