ynotsoft-dynamic-form 1.0.32 → 1.0.34
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 +24 -0
- package/dist/dynamic-form.js +895 -851
- package/dist/dynamic-form.umd.cjs +29 -25
- package/dist/index.css +1 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -10,6 +10,30 @@ npm install react-hot-toast dayjs react-select react-day-picker dompurify @radix
|
|
|
10
10
|
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
### Build the Library
|
|
14
|
+
|
|
15
|
+
From the root of the library (dynamic-form/):
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
npm run build
|
|
19
|
+
npm link
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Link It Inside the Example App
|
|
23
|
+
|
|
24
|
+
Now connect the example app to the linked library:
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
cd ../example
|
|
28
|
+
npm link ynotsoft-dynamic-form
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Start the Example App
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
npm run dev
|
|
35
|
+
```
|
|
36
|
+
|
|
13
37
|
### TODO:
|
|
14
38
|
|
|
15
39
|
- remove radixui as dependency, maybe replace with ShadCN and maintain it ourselves
|