@toife/vue 3.0.1 → 3.0.2
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 +2 -2
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Usage docs live **next to source** under `src/`. Authoring scaffold: [docs/templ
|
|
|
30
30
|
| [image.md](src/components/image/image.md) | `t-image` |
|
|
31
31
|
| [modal.md](src/components/modal/modal.md) | `t-modal` |
|
|
32
32
|
| [page.md](src/components/page/page.md) | `t-page` |
|
|
33
|
-
| [present.md](src/components/present/present.md) | `
|
|
33
|
+
| [present.md](src/components/present/present.md) | `t-present` |
|
|
34
34
|
| [radio.md](src/components/radio/radio/radio.md) | `t-radio` |
|
|
35
35
|
| [radio-group.md](src/components/radio/radio-group/radio-group.md) | `t-radio-group` |
|
|
36
36
|
| [refresher.md](src/components/refresher/refresher.md) | `t-refresher` |
|
|
@@ -41,7 +41,7 @@ Usage docs live **next to source** under `src/`. Authoring scaffold: [docs/templ
|
|
|
41
41
|
| [segmented-field.md](src/components/segmented-field/segmented-field.md) | `t-segmented-field` |
|
|
42
42
|
| [skeleton.md](src/components/skeleton/skeleton.md) | `t-skeleton` |
|
|
43
43
|
| [switch.md](src/components/switch/switch.md) | `t-switch` |
|
|
44
|
-
| [tab.md](src/components/tabs/tab/tab.md) | `
|
|
44
|
+
| [tab.md](src/components/tabs/tab/tab.md) | `t-tab`) |
|
|
45
45
|
| [tabs.md](src/components/tabs/tabs/tabs.md) | `t-tabs` |
|
|
46
46
|
| [toast.md](src/components/toast/toast/toast.md) | `t-toast` |
|
|
47
47
|
| [toast-content.md](src/components/toast/toast-content/toast-content.md) | `t-toast-content` |
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toife/vue",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "A Frontend framework for Vue",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
+
"main": "./src/index.ts",
|
|
8
|
+
"module": "./src/index.ts",
|
|
9
|
+
"types": "./src/index.ts",
|
|
7
10
|
"exports": {
|
|
8
11
|
".": {
|
|
9
12
|
"types": "./src/index.ts",
|