@classytic/formkit 1.0.1 → 1.0.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/CHANGELOG.md ADDED
@@ -0,0 +1,56 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.0.3] - 2024-12-04
9
+
10
+ ### Changed
11
+
12
+ - **Complete TypeScript Migration**: Rewrote entire codebase with strict TypeScript
13
+ - **Improved Type Definitions**: Added comprehensive type exports for better DX
14
+ - **Modern Build System**: Updated tsup configuration for better tree-shaking
15
+ - **Enhanced Types**: Added `FieldOption`, `FieldOptionGroup`, `DefineField` utility types
16
+ - **Better Error Messages**: Improved development warnings with actionable messages
17
+
18
+ ### Added
19
+
20
+ - New type exports: `FieldOption`, `FieldOptionGroup`, `DefineField`, `SchemaFieldNames`, `InferSchemaValues`
21
+ - Subcomponent exports: `SectionRenderer`, `GridRenderer`, `FieldWrapper`
22
+ - Hook exports: `useFieldComponent`, `useLayoutComponent`
23
+ - Support for `gap` property in sections
24
+ - Support for `collapsible` and `defaultCollapsed` section properties
25
+ - `FormElement` type for consistent JSX return types
26
+ - `ClassValue` re-export from utils
27
+
28
+ ### Fixed
29
+
30
+ - Package exports configuration for proper ESM/CJS interop
31
+ - TypeScript strict mode compatibility
32
+ - Proper peer dependency declarations
33
+
34
+ ## [1.0.2] - 2024-12-03
35
+
36
+ ### Added
37
+
38
+ - Initial public release
39
+ - FormGenerator component
40
+ - FormSystemProvider context
41
+ - Schema-driven form generation
42
+ - Variant support for components
43
+ - Conditional field rendering
44
+
45
+ ## [1.0.1] - 2024-12-02
46
+
47
+ ### Fixed
48
+
49
+ - Package configuration fixes
50
+
51
+ ## [1.0.0] - 2024-12-01
52
+
53
+ ### Added
54
+
55
+ - Initial release
56
+