@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 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
- | `ATextarea` | Multi-line text input |
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 ATextarea from './components/form/ATextarea.vue';
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 { ATextarea }
78
+ export { ATextboxInput }
79
79
 
80
80
  export { ATextInput }
81
81