@stonecrop/aform 0.16.1 → 0.16.3
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 +1 -1
- package/dist/aform.d.ts +2 -2
- package/dist/aform.js +924 -3731
- package/dist/aform.js.map +1 -1
- package/dist/assets/index.css +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +3 -3
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +7 -7
- package/src/components/AForm.vue +12 -4
- package/src/components/form/ADatePicker.vue +1 -1
- package/src/components/form/ADropdown.vue +1 -0
- package/src/components/form/AFormLink.vue +1 -1
- package/src/components/form/AQuantityInput.vue +4 -4
- package/src/components/form/ATextboxInput.vue +66 -0
- package/src/index.ts +3 -3
- package/src/components/form/ATextarea.vue +0 -31
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Schema-driven form components for the Stonecrop framework. Renders a `ResolvedFi
|
|
|
20
20
|
| `AFormLink` | Linked document selector with search dropdown and navigation arrow |
|
|
21
21
|
| `ANumericInput` | Numeric input with type-specific formatting |
|
|
22
22
|
| `ATextInput` | Single-line text input |
|
|
23
|
-
| `
|
|
23
|
+
| `ATextboxInput` | Multi-line long-text input |
|
|
24
24
|
|
|
25
25
|
## Installation
|
|
26
26
|
|
package/dist/aform.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import AFormLoading from './components/AFormLoading.vue';
|
|
|
14
14
|
import ANumericInput from './components/form/ANumericInput.vue';
|
|
15
15
|
import type { App } from 'vue';
|
|
16
16
|
import AQuantityInput from './components/form/AQuantityInput.vue';
|
|
17
|
-
import
|
|
17
|
+
import ATextboxInput from './components/form/ATextboxInput.vue';
|
|
18
18
|
import ATextInput from './components/form/ATextInput.vue';
|
|
19
19
|
import type { ColumnSchema } from '@stonecrop/schema';
|
|
20
20
|
import type { FieldValidation } from '@stonecrop/schema';
|
|
@@ -75,7 +75,7 @@ export { ANumericInput }
|
|
|
75
75
|
|
|
76
76
|
export { AQuantityInput }
|
|
77
77
|
|
|
78
|
-
export {
|
|
78
|
+
export { ATextboxInput }
|
|
79
79
|
|
|
80
80
|
export { ATextInput }
|
|
81
81
|
|