vue3-schema-forms 0.0.23 → 0.0.24
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/README.md +10 -3
- package/dist/main.cjs.js +49 -58
- package/dist/main.es.js +9459 -13633
- package/dist/main.umd.js +50 -59
- package/dist/src/components/controls/Autocomplete.vue.d.ts +4 -0
- package/dist/src/components/controls/Autocomplete.vue.d.ts.map +1 -0
- package/dist/src/components/controls/RadioButton.vue.d.ts +1 -1
- package/dist/src/components/controls/Select.vue.d.ts +4 -0
- package/dist/src/components/controls/Select.vue.d.ts.map +1 -0
- package/dist/src/components/controls/base/BaseAutocomplete.vue.d.ts +4 -0
- package/dist/src/components/controls/base/BaseAutocomplete.vue.d.ts.map +1 -0
- package/dist/src/components/controls/base/Pagination.d.ts +19 -0
- package/dist/src/components/controls/base/SliceResponse.d.ts +9 -0
- package/dist/src/components/controls/duplicated-section/DuplicatedSection.vue.d.ts +1 -1
- package/dist/src/components/controls/editable-section/EditableSection.vue.d.ts +5 -0
- package/dist/src/components/controls/editable-section/EditableSection.vue.d.ts.map +1 -0
- package/dist/src/core/composables/useDictionarySource.d.ts +30 -0
- package/dist/src/core/composables/useResolveVariables.d.ts +4 -0
- package/dist/src/core/composables/useSource.d.ts +9 -0
- package/dist/src/main.d.ts +6 -2
- package/dist/src/stories/controls/Select.stories.d.ts +78 -0
- package/dist/src/stories/development.stories.d.ts +2 -4
- package/dist/src/vocabulary/engine/controls.d.ts +4 -1
- package/dist/src/vocabulary/engine/index.d.ts +1 -0
- package/dist/src/vocabulary/schema/elements.d.ts +19 -7
- package/dist/style.css +1 -1
- package/package.json +19 -16
- package/dist/src/core/composables/useApiData.d.ts +0 -8
package/README.md
CHANGED
|
@@ -58,7 +58,14 @@ The documentation and some of the testing was based on the Storybook application
|
|
|
58
58
|
2. Install development dependencies: ```npm install```
|
|
59
59
|
3. Run the tests: ```npm test```
|
|
60
60
|
4. Run the storybook: ```npm run storybook```
|
|
61
|
-
5. Run storybook tests:
|
|
61
|
+
5. Run storybook tests: ```npm run test-storybook```
|
|
62
|
+
|
|
63
|
+
## Contributing
|
|
64
|
+
1. Fork it!
|
|
65
|
+
2. Create your feature branch: ```git checkout -b my-new-feature```
|
|
66
|
+
3. Commit your changes: ```git commit -am 'Add some feature'```
|
|
67
|
+
4. Push to the branch: ```git push origin my-new-feature```
|
|
68
|
+
5. Submit a pull request
|
|
62
69
|
|
|
63
70
|
|
|
64
71
|
## ToDo List
|
|
@@ -67,10 +74,10 @@ The documentation and some of the testing was based on the Storybook application
|
|
|
67
74
|
- [ ] Create editable sections
|
|
68
75
|
- [ ] Change to use Engine props (decomposition)
|
|
69
76
|
- [ ] i18n [warnings] how to resolve message -> test on library
|
|
70
|
-
- [ ] create logger and variable to manage
|
|
71
77
|
|
|
72
78
|
In progress:
|
|
73
|
-
|
|
79
|
+
- [ ] section
|
|
80
|
+
- [ ] hide fields
|
|
74
81
|
|
|
75
82
|
|
|
76
83
|
Przypadki testowe
|