@steveesamson/microform 0.0.1 → 0.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/README.md +3 -3
- package/package.json +14 -4
package/README.md
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# In your project directory
|
|
9
|
-
npm install microform
|
|
9
|
+
npm install @steveesamson/microform
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
or
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
# In your project directory
|
|
16
|
-
yarn add microform
|
|
16
|
+
yarn add @steveesamson/microform
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
@@ -24,7 +24,7 @@ Once you've added `microform` to your project, use it as shown below, in your vi
|
|
|
24
24
|
|
|
25
25
|
```ts
|
|
26
26
|
<script lang='ts'>
|
|
27
|
-
import uForm from "microform";
|
|
27
|
+
import uForm from "@steveesamson/microform";
|
|
28
28
|
// default form data, probably passed as props
|
|
29
29
|
export let defaultData:any = {};
|
|
30
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steveesamson/microform",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build && npm run package",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"prettier": "^3.1.1",
|
|
43
43
|
"prettier-plugin-svelte": "^3.1.2",
|
|
44
44
|
"publint": "^0.1.9",
|
|
45
|
+
"shiki": "^0.14.7",
|
|
45
46
|
"svelte": "^4.2.7",
|
|
46
47
|
"svelte-check": "^3.6.0",
|
|
47
48
|
"tslib": "^2.4.1",
|
|
@@ -51,7 +52,16 @@
|
|
|
51
52
|
"svelte": "./dist/index.js",
|
|
52
53
|
"types": "./dist/index.d.ts",
|
|
53
54
|
"type": "module",
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
55
|
+
"keywords": [
|
|
56
|
+
"microform",
|
|
57
|
+
"@steveesamson/microform",
|
|
58
|
+
"svelte",
|
|
59
|
+
"sveltejs",
|
|
60
|
+
"svelte-form",
|
|
61
|
+
"svelte-microform",
|
|
62
|
+
"form",
|
|
63
|
+
"sveltekit",
|
|
64
|
+
"svelte-kit",
|
|
65
|
+
"sveltekit-microform"
|
|
66
|
+
]
|
|
57
67
|
}
|