@operato/property-editor 2.0.0-beta.21 → 2.0.0-beta.23
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 +18 -0
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.0.0-beta.23](https://github.com/hatiolab/operato/compare/v2.0.0-beta.22...v2.0.0-beta.23) (2024-06-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :bug: Bug Fix
|
|
10
|
+
|
|
11
|
+
* export package.json ([538e6e0](https://github.com/hatiolab/operato/commit/538e6e050f5a3d77b8ed805968d66a9093a7d5e9))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [2.0.0-beta.22](https://github.com/hatiolab/operato/compare/v2.0.0-beta.21...v2.0.0-beta.22) (2024-06-13)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### :bug: Bug Fix
|
|
19
|
+
|
|
20
|
+
* operato tag for all package.json ([2334960](https://github.com/hatiolab/operato/commit/2334960db2186ade87ee590796a269fe5f5e9419))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [2.0.0-beta.21](https://github.com/hatiolab/operato/compare/v2.0.0-beta.20...v2.0.0-beta.21) (2024-06-12)
|
|
7
25
|
|
|
8
26
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/property-editor",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.23",
|
|
4
4
|
"description": "Webcomponent for property-editor following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"operato": true,
|
|
9
10
|
"publishConfig": {
|
|
10
11
|
"access": "public",
|
|
11
12
|
"@operato:registry": "https://registry.npmjs.org"
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
},
|
|
18
19
|
"exports": {
|
|
19
20
|
".": "./dist/src/index.js",
|
|
21
|
+
"./package.json": "./package.json",
|
|
20
22
|
"./ox-property-editor.js": "./dist/src/ox-property-editor.js",
|
|
21
23
|
"./ox-property-editor-3axis.js": "./dist/src/ox-property-editor-3axis.js",
|
|
22
24
|
"./ox-property-editor-3dish.js": "./dist/src/ox-property-editor-3dish.js",
|
|
@@ -182,10 +184,10 @@
|
|
|
182
184
|
},
|
|
183
185
|
"dependencies": {
|
|
184
186
|
"@material/web": "^1.4.0",
|
|
185
|
-
"@operato/help": "^2.0.0-beta.
|
|
186
|
-
"@operato/i18n": "^2.0.0-beta.
|
|
187
|
-
"@operato/input": "^2.0.0-beta.
|
|
188
|
-
"@operato/popup": "^2.0.0-beta.
|
|
187
|
+
"@operato/help": "^2.0.0-beta.23",
|
|
188
|
+
"@operato/i18n": "^2.0.0-beta.23",
|
|
189
|
+
"@operato/input": "^2.0.0-beta.23",
|
|
190
|
+
"@operato/popup": "^2.0.0-beta.23",
|
|
189
191
|
"lit": "^3.1.2",
|
|
190
192
|
"lodash-es": "^4.17.21"
|
|
191
193
|
},
|
|
@@ -224,5 +226,5 @@
|
|
|
224
226
|
"prettier --write"
|
|
225
227
|
]
|
|
226
228
|
},
|
|
227
|
-
"gitHead": "
|
|
229
|
+
"gitHead": "f2b3faf23eb7a8c51baa922b1baf6cabf3e6db13"
|
|
228
230
|
}
|