@antify/template-module 0.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 +163 -0
- package/dist/module.d.mts +10 -0
- package/dist/module.d.ts +10 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +101 -0
- package/dist/runtime/assets/antify.css +1 -0
- package/dist/runtime/components/Main.mdx +6 -0
- package/dist/runtime/components/buttons/ActionButton.d.vue.ts +52 -0
- package/dist/runtime/components/buttons/ActionButton.vue +74 -0
- package/dist/runtime/components/buttons/ActionButton.vue.d.ts +52 -0
- package/dist/runtime/components/buttons/CreateButton.d.vue.ts +25 -0
- package/dist/runtime/components/buttons/CreateButton.vue +67 -0
- package/dist/runtime/components/buttons/CreateButton.vue.d.ts +25 -0
- package/dist/runtime/components/buttons/DeleteButton.d.vue.ts +25 -0
- package/dist/runtime/components/buttons/DeleteButton.vue +67 -0
- package/dist/runtime/components/buttons/DeleteButton.vue.d.ts +25 -0
- package/dist/runtime/components/buttons/DuplicateButton.d.vue.ts +25 -0
- package/dist/runtime/components/buttons/DuplicateButton.vue +67 -0
- package/dist/runtime/components/buttons/DuplicateButton.vue.d.ts +25 -0
- package/dist/runtime/components/buttons/EditButton.d.vue.ts +25 -0
- package/dist/runtime/components/buttons/EditButton.vue +67 -0
- package/dist/runtime/components/buttons/EditButton.vue.d.ts +25 -0
- package/dist/runtime/components/buttons/SaveAndNewButton.d.vue.ts +25 -0
- package/dist/runtime/components/buttons/SaveAndNewButton.vue +70 -0
- package/dist/runtime/components/buttons/SaveAndNewButton.vue.d.ts +25 -0
- package/dist/runtime/components/buttons/SaveButton.d.vue.ts +25 -0
- package/dist/runtime/components/buttons/SaveButton.vue +68 -0
- package/dist/runtime/components/buttons/SaveButton.vue.d.ts +25 -0
- package/dist/runtime/components/crud/Crud.d.vue.ts +24 -0
- package/dist/runtime/components/crud/Crud.vue +43 -0
- package/dist/runtime/components/crud/Crud.vue.d.ts +24 -0
- package/dist/runtime/components/crud/CrudDetail.d.vue.ts +17 -0
- package/dist/runtime/components/crud/CrudDetail.vue +14 -0
- package/dist/runtime/components/crud/CrudDetail.vue.d.ts +17 -0
- package/dist/runtime/components/crud/CrudDetailActions.d.vue.ts +40 -0
- package/dist/runtime/components/crud/CrudDetailActions.vue +72 -0
- package/dist/runtime/components/crud/CrudDetailActions.vue.d.ts +40 -0
- package/dist/runtime/components/crud/CrudDetailNav.d.vue.ts +40 -0
- package/dist/runtime/components/crud/CrudDetailNav.vue +65 -0
- package/dist/runtime/components/crud/CrudDetailNav.vue.d.ts +40 -0
- package/dist/runtime/components/crud/CrudTableFilter.d.vue.ts +48 -0
- package/dist/runtime/components/crud/CrudTableFilter.vue +153 -0
- package/dist/runtime/components/crud/CrudTableFilter.vue.d.ts +48 -0
- package/dist/runtime/components/crud/CrudTableNav.d.vue.ts +23 -0
- package/dist/runtime/components/crud/CrudTableNav.vue +121 -0
- package/dist/runtime/components/crud/CrudTableNav.vue.d.ts +23 -0
- package/dist/runtime/components/dialogs/DeleteDialog.d.vue.ts +15 -0
- package/dist/runtime/components/dialogs/DeleteDialog.vue +64 -0
- package/dist/runtime/components/dialogs/DeleteDialog.vue.d.ts +15 -0
- package/dist/runtime/components/index.d.ts +15 -0
- package/dist/runtime/components/index.js +30 -0
- package/dist/runtime/composables/useUiClient.d.ts +90 -0
- package/dist/runtime/composables/useUiClient.js +151 -0
- package/dist/runtime/index.css +1 -0
- package/dist/runtime/index.d.ts +2 -0
- package/dist/runtime/index.js +2 -0
- package/dist/runtime/plugins/template-module.d.ts +48 -0
- package/dist/runtime/plugins/template-module.js +14 -0
- package/dist/runtime/types.d.ts +1 -0
- package/dist/runtime/types.js +0 -0
- package/dist/runtime/utils.d.ts +15 -0
- package/dist/runtime/utils.js +22 -0
- package/dist/types.d.mts +9 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@antify/template-module",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"types": "./dist/module.d.mts",
|
|
8
|
+
"import": "./dist/module.mjs"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/module.mjs",
|
|
12
|
+
"types": "./dist/module.d.mts",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@antify/ui": "4.1.25",
|
|
18
|
+
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
|
19
|
+
"@nuxt/kit": "3.16.2",
|
|
20
|
+
"@tailwindcss/vite": "4.0.7",
|
|
21
|
+
"@vueuse/core": "^13.0.0",
|
|
22
|
+
"ofetch": "^1.3.3",
|
|
23
|
+
"vue": "^3.4.29"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@chromatic-com/storybook": "^3.2.7",
|
|
27
|
+
"@eslint/js": "^9.16.0",
|
|
28
|
+
"@fortawesome/vue-fontawesome": "^3.0.8",
|
|
29
|
+
"@nuxt/eslint-config": "^0.4.0",
|
|
30
|
+
"@nuxt/eslint-plugin": "^0.7.6",
|
|
31
|
+
"@nuxt/module-builder": "latest",
|
|
32
|
+
"@nuxtjs/storybook": "8.3.5",
|
|
33
|
+
"@storybook/addon-essentials": "8.6.15",
|
|
34
|
+
"@storybook/vue3": "8.6.15",
|
|
35
|
+
"@stylistic/eslint-plugin": "^2.11.0",
|
|
36
|
+
"autoprefixer": "^10.4.20",
|
|
37
|
+
"chromatic": "^15.0.0",
|
|
38
|
+
"eslint": "8.57.0",
|
|
39
|
+
"eslint-plugin-vue": "^9.32.0",
|
|
40
|
+
"globals": "^15.13.0",
|
|
41
|
+
"nuxt": "3.16.2",
|
|
42
|
+
"standard-version": "^9.5.0",
|
|
43
|
+
"storybook": "8.6.15",
|
|
44
|
+
"storybook-vue3-router": "^5.0.0",
|
|
45
|
+
"typescript": "^5.5.4",
|
|
46
|
+
"typescript-eslint": "^8.54.0",
|
|
47
|
+
"unbuild": "^2.0.0",
|
|
48
|
+
"vue-tsc": "^3.2.4"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "nuxt-module-build build",
|
|
52
|
+
"dev": "nuxi dev playground",
|
|
53
|
+
"dev:build": "nuxi build playground",
|
|
54
|
+
"dev:prepare": "nuxi prepare playground",
|
|
55
|
+
"release": "standard-version && git push --follow-tags && pnpm publish --access public",
|
|
56
|
+
"build-storybook": "storybook build -c playground/.storybook",
|
|
57
|
+
"lint": "eslint . --fix",
|
|
58
|
+
"chromatic": "npx chromatic --project-token=chpt_d8f6b870f8bdcd8"
|
|
59
|
+
}
|
|
60
|
+
}
|