@koumoul/vjsf 2.12.0-beta.0 → 2.12.0-beta.11
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/CONTRIBUTE.md +1 -1
- package/README.md +0 -10
- package/dist/main.js +1 -1
- package/lib/VJsfNoDeps.js +10 -8
- package/lib/mixins/EditableArray.js +136 -38
- package/lib/mixins/ObjectContainer.js +2 -1
- package/lib/mixins/Tooltip.js +3 -1
- package/lib/utils/options.js +38 -8
- package/package.json +2 -1
- package/test-apps/compiled/README.me +0 -10
- package/test-apps/compiled/index.html +0 -85
- package/test-apps/compiled/package-lock.json +0 -37386
- package/test-apps/compiled/package.json +0 -7
package/CONTRIBUTE.md
CHANGED
|
@@ -55,7 +55,7 @@ git push && git push --tags
|
|
|
55
55
|
To publish a beta version, use prerelease versioning with a npm tag:
|
|
56
56
|
|
|
57
57
|
```
|
|
58
|
-
npm version preminor --preid=beta
|
|
58
|
+
npm version preminor --preid=beta # use prerelease instead of preminor to increment
|
|
59
59
|
npm publish --tag=beta
|
|
60
60
|
git push && git push --tags
|
|
61
61
|
```
|
package/README.md
CHANGED
|
@@ -10,16 +10,6 @@ See [the documentation](https://koumoul-dev.github.io/vuetify-jsonschema-form/la
|
|
|
10
10
|
|
|
11
11
|

|
|
12
12
|
|
|
13
|
-
## Development server
|
|
14
|
-
|
|
15
|
-
The documentation serves as development server too.
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
cd doc
|
|
19
|
-
npm install
|
|
20
|
-
npm run dev
|
|
21
|
-
```
|
|
22
|
-
|
|
23
13
|
## Bug reports
|
|
24
14
|
|
|
25
15
|
Bug reports are created using github issues. The examples in the documentation include codepen links, as much as possible please save a duplicate codepen with the minimal schema/config to reproduce your problem.
|