@operato/property-editor 9.0.18 → 9.0.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.
- package/CHANGELOG.md +17 -0
- package/package.json +9 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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
|
+
### [9.0.20](https://github.com/hatiolab/operato/compare/v9.0.19...v9.0.20) (2025-08-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @operato/property-editor
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### [9.0.19](https://github.com/hatiolab/operato/compare/v9.0.18...v9.0.19) (2025-08-02)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### :bug: Bug Fix
|
|
18
|
+
|
|
19
|
+
* add ox-input-secret, ox-property-editor-secret, ox-grist-secret ([32f732a](https://github.com/hatiolab/operato/commit/32f732a7cea8d898647c03aaa052e01afc0510aa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
### [9.0.18](https://github.com/hatiolab/operato/compare/v9.0.17...v9.0.18) (2025-08-02)
|
|
7
24
|
|
|
8
25
|
**Note:** Version bump only for package @operato/property-editor
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/property-editor",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.20",
|
|
4
4
|
"description": "Webcomponent for property-editor following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"type": "module",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"./ox-property-editor-password.js": "./dist/src/ox-property-editor-password.js",
|
|
48
48
|
"./ox-property-editor-range.js": "./dist/src/ox-property-editor-range.js",
|
|
49
49
|
"./ox-property-editor-select.js": "./dist/src/ox-property-editor-select.js",
|
|
50
|
+
"./ox-property-editor-secret.js": "./dist/src/ox-property-editor-secret.js",
|
|
50
51
|
"./ox-property-editor-string.js": "./dist/src/ox-property-editor-string.js",
|
|
51
52
|
"./ox-property-editor-textarea.js": "./dist/src/ox-property-editor-textarea.js",
|
|
52
53
|
"./ox-property-editor-scene-component-id.js": "./dist/src/ox-property-editor-scene-component-id.js",
|
|
@@ -139,6 +140,9 @@
|
|
|
139
140
|
"ox-property-editor-select.js": [
|
|
140
141
|
"dist/src/ox-property-editor-select.d.ts"
|
|
141
142
|
],
|
|
143
|
+
"ox-property-editor-secret.js": [
|
|
144
|
+
"dist/src/ox-property-editor-secret.d.ts"
|
|
145
|
+
],
|
|
142
146
|
"ox-property-editor-string.js": [
|
|
143
147
|
"dist/src/ox-property-editor-string.d.ts"
|
|
144
148
|
],
|
|
@@ -197,10 +201,10 @@
|
|
|
197
201
|
},
|
|
198
202
|
"dependencies": {
|
|
199
203
|
"@material/web": "^2.0.0",
|
|
200
|
-
"@operato/help": "^9.0.
|
|
204
|
+
"@operato/help": "^9.0.20",
|
|
201
205
|
"@operato/i18n": "^9.0.1",
|
|
202
|
-
"@operato/input": "^9.0.
|
|
203
|
-
"@operato/popup": "^9.0.
|
|
206
|
+
"@operato/input": "^9.0.20",
|
|
207
|
+
"@operato/popup": "^9.0.20",
|
|
204
208
|
"lit": "^3.1.2",
|
|
205
209
|
"lodash-es": "^4.17.21"
|
|
206
210
|
},
|
|
@@ -239,5 +243,5 @@
|
|
|
239
243
|
"prettier --write"
|
|
240
244
|
]
|
|
241
245
|
},
|
|
242
|
-
"gitHead": "
|
|
246
|
+
"gitHead": "1be0bcbff776f7222f85cfc92c68680919d221b5"
|
|
243
247
|
}
|