@letar/forms 1.0.0

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/offline.js ADDED
@@ -0,0 +1,3 @@
1
+ export { FormOfflineIndicator, FormSyncStatus, addToQueue, clearQueue, createSyncQueueStore, getOfflineStatus, getQueueFromStorage, processQueueItem, removeFromQueue, subscribeToStatusChanges, useOfflineForm, useOfflineStatus, useSyncQueue } from './chunk-G3HYXHCZ.js';
2
+ //# sourceMappingURL=offline.js.map
3
+ //# sourceMappingURL=offline.js.map
package/offline.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"offline.js"}
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@letar/forms",
3
+ "version": "1.0.0",
4
+ "description": "Declarative form components for React with 40+ field types, powered by TanStack Form and Chakra UI v3",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "exports": {
9
+ ".": {
10
+ "types": "./index.d.ts",
11
+ "import": "./index.js"
12
+ },
13
+ "./offline": {
14
+ "types": "./offline.d.ts",
15
+ "import": "./offline.js"
16
+ },
17
+ "./i18n": {
18
+ "types": "./i18n.d.ts",
19
+ "import": "./i18n.js"
20
+ },
21
+ "./package.json": "./package.json"
22
+ },
23
+ "main": "./index.js",
24
+ "types": "./index.d.ts",
25
+ "files": [
26
+ "**/*.js",
27
+ "**/*.js.map",
28
+ "**/*.d.ts",
29
+ "**/*.d.ts.map",
30
+ "README.md",
31
+ "CHANGELOG.md",
32
+ "LICENSE"
33
+ ],
34
+ "keywords": [
35
+ "react",
36
+ "forms",
37
+ "form-components",
38
+ "tanstack-form",
39
+ "chakra-ui",
40
+ "zod",
41
+ "declarative",
42
+ "typescript",
43
+ "validation",
44
+ "multi-step",
45
+ "offline",
46
+ "i18n"
47
+ ],
48
+ "homepage": "https://forms.letar.best",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/kamiletar/letar-forms"
52
+ },
53
+ "bugs": {
54
+ "url": "https://github.com/kamiletar/letar-forms/issues"
55
+ },
56
+ "peerDependencies": {
57
+ "@chakra-ui/react": ">=3.0.0",
58
+ "@dnd-kit/core": ">=6.0.0",
59
+ "@dnd-kit/sortable": ">=10.0.0",
60
+ "@dnd-kit/utilities": ">=3.0.0",
61
+ "@tanstack/react-form": ">=1.0.0",
62
+ "framer-motion": ">=10.0.0",
63
+ "react": ">=18.0.0",
64
+ "react-icons": ">=5.0.0",
65
+ "use-mask-input": ">=3.0.0",
66
+ "zod": ">=3.24.0"
67
+ },
68
+ "peerDependenciesMeta": {
69
+ "@dnd-kit/core": {
70
+ "optional": true
71
+ },
72
+ "@dnd-kit/sortable": {
73
+ "optional": true
74
+ },
75
+ "@dnd-kit/utilities": {
76
+ "optional": true
77
+ },
78
+ "@tiptap/react": {
79
+ "optional": true
80
+ },
81
+ "@tiptap/starter-kit": {
82
+ "optional": true
83
+ },
84
+ "next-intl": {
85
+ "optional": true
86
+ },
87
+ "use-mask-input": {
88
+ "optional": true
89
+ }
90
+ },
91
+ "devDependencies": {
92
+ "@types/react": "^19.2.14",
93
+ "tsup": "^8.5.1",
94
+ "typescript": "^6.0.2"
95
+ }
96
+ }