vue3-schema-forms 0.0.20 → 0.0.22
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 +8 -2
- package/dist/components/main.d.ts +1 -0
- package/dist/main.cjs.js +99 -0
- package/dist/main.d.ts +24 -0
- package/dist/main.es.js +17965 -0
- package/dist/main.umd.js +100 -0
- package/dist/src/components/controls/CheckboxButton.vue.d.ts +4 -0
- package/dist/src/components/controls/CheckboxButton.vue.d.ts.map +1 -0
- package/dist/src/components/controls/RadioButton.vue.d.ts +5 -0
- package/dist/src/components/controls/RadioButton.vue.d.ts.map +1 -0
- package/dist/src/components/controls/StaticContent.vue.d.ts +4 -0
- package/dist/src/components/controls/StaticContent.vue.d.ts.map +1 -0
- package/dist/src/components/controls/TextArea.vue.d.ts +4 -0
- package/dist/src/components/controls/TextArea.vue.d.ts.map +1 -0
- package/dist/src/components/controls/TextField.vue.d.ts +4 -0
- package/dist/src/components/controls/TextField.vue.d.ts.map +1 -0
- package/dist/src/components/controls/duplicated-section/DraggableContextMenu.vue.d.ts +5 -0
- package/dist/src/components/controls/duplicated-section/DraggableContextMenu.vue.d.ts.map +1 -0
- package/dist/src/components/controls/duplicated-section/DraggableIcon.vue.d.ts +5 -0
- package/dist/src/components/controls/duplicated-section/DraggableIcon.vue.d.ts.map +1 -0
- package/dist/src/components/controls/duplicated-section/DuplicatedSection.vue.d.ts +5 -0
- package/dist/src/components/controls/duplicated-section/DuplicatedSection.vue.d.ts.map +1 -0
- package/dist/src/components/controls/duplicated-section/HoverWrapper.vue.d.ts +4 -0
- package/dist/src/components/controls/duplicated-section/HoverWrapper.vue.d.ts.map +1 -0
- package/dist/src/components/engine/FormNode.vue.d.ts +4 -0
- package/dist/src/components/engine/FormNode.vue.d.ts.map +1 -0
- package/dist/src/components/engine/FormRoot.vue.d.ts +4 -0
- package/dist/src/components/engine/FormRoot.vue.d.ts.map +1 -0
- package/dist/src/components/engine/VueSchemaForms.vue.d.ts +5 -0
- package/dist/src/components/engine/VueSchemaForms.vue.d.ts.map +1 -0
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/core/composables/useApiData.d.ts +8 -0
- package/dist/src/core/composables/useCalculation.d.ts +2 -0
- package/dist/src/core/composables/useConditionalRendering.d.ts +2 -0
- package/dist/src/core/composables/usePerformanceAPI.d.ts +3 -0
- package/dist/src/core/composables/useProps.d.ts +3 -0
- package/dist/src/core/composables/useResolveDependency.d.ts +1 -0
- package/dist/src/core/composables/useRules.d.ts +12 -0
- package/dist/src/core/engine/evalExprParser.d.ts +3 -0
- package/dist/src/core/engine/jsonSchemaResolver.d.ts +3 -0
- package/dist/src/core/engine/utils.d.ts +10 -0
- package/dist/src/main.d.ts +5 -0
- package/dist/src/stories/controls/Checkbox.stories.d.ts +78 -0
- package/dist/src/stories/controls/DuplicatedSection.stories.d.ts +73 -0
- package/dist/src/stories/controls/RadioButton.stories.d.ts +78 -0
- package/dist/src/stories/controls/StaticContent.stories.d.ts +66 -0
- package/dist/src/stories/controls/TextField.stories.d.ts +78 -0
- package/dist/src/stories/development.stories.d.ts +45 -0
- package/dist/src/stories/features/Calculation.stories.d.ts +90 -0
- package/dist/src/stories/features/ConditionalRendering.stories.d.ts +71 -0
- package/dist/src/stories/features/Layouts.stories.d.ts +73 -0
- package/dist/src/stories/features/Translations.stories.d.ts +72 -0
- package/dist/src/stories/features/Validation.stories.d.ts +69 -0
- package/dist/src/stories/schemas.d.ts +10 -0
- package/dist/src/stories/templates/story-template.d.ts +6 -0
- package/dist/src/tests/render.test.d.ts +1 -0
- package/dist/src/tests/test-schemas.d.ts +5 -0
- package/dist/src/vocabulary/engine/controls.d.ts +13 -0
- package/dist/src/vocabulary/engine/index.d.ts +25 -0
- package/dist/src/vocabulary/schema/elements.d.ts +55 -0
- package/dist/src/vocabulary/schema/index.d.ts +13 -0
- package/dist/style.css +1 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ createApp(App)
|
|
|
27
27
|
.mount('#app');
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
After importing the plugin, we can invoke the form-generating component and pass the appropriate props.
|
|
31
31
|
|
|
32
32
|
```javascript
|
|
33
33
|
// someComponent.vue
|
|
@@ -64,7 +64,13 @@ The documentation and some of the testing was based on the Storybook application
|
|
|
64
64
|
## ToDo List
|
|
65
65
|
- [ ] Create many basics fields like data/radio/checkbox/combo etc.
|
|
66
66
|
- [ ] Use resolveDepsComposable for deps on fields
|
|
67
|
+
- [ ] Create editable sections
|
|
67
68
|
|
|
68
69
|
In progress:
|
|
69
|
-
- [ ]
|
|
70
|
+
- [ ] Required in Duplicated-section
|
|
71
|
+
- [ ] More tests for new fields
|
|
72
|
+
- [ ] Write Homepage mdx
|
|
73
|
+
- [ ] i18n [warnings] how to resolve message -> test on library
|
|
74
|
+
- [ ] npm link and test
|
|
75
|
+
- [ ] create logger and variable to manage
|
|
70
76
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../src/main'
|