@opengis/form 0.0.194 → 0.1.1

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
@@ -1,20 +1,35 @@
1
1
  # Vue 3 + TypeScript + Vite
2
2
 
3
- Flexible and reusable way to create forms with validation, different input types, and layouts
3
+ Schema Base Form це Vue 3 модуль для створення динамічних форм через schema-конфігурацію. Дозволяє швидко будувати складні форми з валідацією, умовами, локалізацією та кастомними layout без дублювання шаблонів і boilerplate-коду.
4
4
 
5
5
  ## Features
6
6
 
7
- - Schema-based filter rendering (radio, checkbox)
8
- - Slot-based extensibility for custom filters
9
- - Built-in clear/reset support
10
- - Emits `change` and `clear` events
11
- - Popover support with positioning logic
12
- - Show more / limit options logic
13
- - Written in TypeScript
14
- - Fully styleable with Tailwind CSS
15
- - Mobile-friendly and responsive
7
+ ## Pitch
8
+
9
+ Schema Base Form — це Vue 3 модуль для створення динамічних форм через schema-конфігурацію. Дозволяє швидко будувати складні форми з валідацією, умовами, локалізацією та кастомними layout без дублювання шаблонів і boilerplate-коду.
10
+
11
+ ## Feature List
12
+
13
+ * **Schema Definition** — декларативний опис форми через JSON/JS schema.
14
+ * **Dynamic Fields** автоматичний рендер полів на основі конфігурації.
15
+ * **Text Inputs** — підтримка text, email, tel, password, number та інших базових полів.
16
+ * **Advanced Inputs** — richtext, mask, slug, color, file, range та custom input types.
17
+ * **Array Fields** — динамічні списки та repeatable blocks.
18
+ * **Key Value Inputs** — редактор key-value структур.
19
+ * **Select & Options** — select, radio, checkbox та async options.
20
+ * **Conditional Logic** — умовне відображення та поведінка полів.
21
+ * **Layouts** — секції, колонки, групи та вкладені layout-компоненти.
22
+ * **Validation Rules** — built-in та custom правила валідації.
23
+ * **Form Methods** — API для submit, reset, validate та state management.
24
+ * **Localization** — мультимовні labels, placeholders та validation messages.
25
+ * **Reactive State** — повністю reactive form model на Vue 3 Composition API.
26
+ * **Custom Components** — підтримка власних input-компонентів.
27
+ * **Nested Schemas** — вкладені форми та complex object structures.
28
+ * **Async Support** — async validation, loading states та remote data sources.
29
+ * **Static Elements** — текстові блоки, separators та helper content.
30
+ * **Type Safety** — сумісність з TypeScript.
31
+ * **Extensible Architecture** — plugin-based розширення та кастомізація.
16
32
 
17
- ---
18
33
 
19
34
  ## Documentation
20
35