@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.
Files changed (64) hide show
  1. package/README.md +163 -0
  2. package/dist/module.d.mts +10 -0
  3. package/dist/module.d.ts +10 -0
  4. package/dist/module.json +9 -0
  5. package/dist/module.mjs +101 -0
  6. package/dist/runtime/assets/antify.css +1 -0
  7. package/dist/runtime/components/Main.mdx +6 -0
  8. package/dist/runtime/components/buttons/ActionButton.d.vue.ts +52 -0
  9. package/dist/runtime/components/buttons/ActionButton.vue +74 -0
  10. package/dist/runtime/components/buttons/ActionButton.vue.d.ts +52 -0
  11. package/dist/runtime/components/buttons/CreateButton.d.vue.ts +25 -0
  12. package/dist/runtime/components/buttons/CreateButton.vue +67 -0
  13. package/dist/runtime/components/buttons/CreateButton.vue.d.ts +25 -0
  14. package/dist/runtime/components/buttons/DeleteButton.d.vue.ts +25 -0
  15. package/dist/runtime/components/buttons/DeleteButton.vue +67 -0
  16. package/dist/runtime/components/buttons/DeleteButton.vue.d.ts +25 -0
  17. package/dist/runtime/components/buttons/DuplicateButton.d.vue.ts +25 -0
  18. package/dist/runtime/components/buttons/DuplicateButton.vue +67 -0
  19. package/dist/runtime/components/buttons/DuplicateButton.vue.d.ts +25 -0
  20. package/dist/runtime/components/buttons/EditButton.d.vue.ts +25 -0
  21. package/dist/runtime/components/buttons/EditButton.vue +67 -0
  22. package/dist/runtime/components/buttons/EditButton.vue.d.ts +25 -0
  23. package/dist/runtime/components/buttons/SaveAndNewButton.d.vue.ts +25 -0
  24. package/dist/runtime/components/buttons/SaveAndNewButton.vue +70 -0
  25. package/dist/runtime/components/buttons/SaveAndNewButton.vue.d.ts +25 -0
  26. package/dist/runtime/components/buttons/SaveButton.d.vue.ts +25 -0
  27. package/dist/runtime/components/buttons/SaveButton.vue +68 -0
  28. package/dist/runtime/components/buttons/SaveButton.vue.d.ts +25 -0
  29. package/dist/runtime/components/crud/Crud.d.vue.ts +24 -0
  30. package/dist/runtime/components/crud/Crud.vue +43 -0
  31. package/dist/runtime/components/crud/Crud.vue.d.ts +24 -0
  32. package/dist/runtime/components/crud/CrudDetail.d.vue.ts +17 -0
  33. package/dist/runtime/components/crud/CrudDetail.vue +14 -0
  34. package/dist/runtime/components/crud/CrudDetail.vue.d.ts +17 -0
  35. package/dist/runtime/components/crud/CrudDetailActions.d.vue.ts +40 -0
  36. package/dist/runtime/components/crud/CrudDetailActions.vue +72 -0
  37. package/dist/runtime/components/crud/CrudDetailActions.vue.d.ts +40 -0
  38. package/dist/runtime/components/crud/CrudDetailNav.d.vue.ts +40 -0
  39. package/dist/runtime/components/crud/CrudDetailNav.vue +65 -0
  40. package/dist/runtime/components/crud/CrudDetailNav.vue.d.ts +40 -0
  41. package/dist/runtime/components/crud/CrudTableFilter.d.vue.ts +48 -0
  42. package/dist/runtime/components/crud/CrudTableFilter.vue +153 -0
  43. package/dist/runtime/components/crud/CrudTableFilter.vue.d.ts +48 -0
  44. package/dist/runtime/components/crud/CrudTableNav.d.vue.ts +23 -0
  45. package/dist/runtime/components/crud/CrudTableNav.vue +121 -0
  46. package/dist/runtime/components/crud/CrudTableNav.vue.d.ts +23 -0
  47. package/dist/runtime/components/dialogs/DeleteDialog.d.vue.ts +15 -0
  48. package/dist/runtime/components/dialogs/DeleteDialog.vue +64 -0
  49. package/dist/runtime/components/dialogs/DeleteDialog.vue.d.ts +15 -0
  50. package/dist/runtime/components/index.d.ts +15 -0
  51. package/dist/runtime/components/index.js +30 -0
  52. package/dist/runtime/composables/useUiClient.d.ts +90 -0
  53. package/dist/runtime/composables/useUiClient.js +151 -0
  54. package/dist/runtime/index.css +1 -0
  55. package/dist/runtime/index.d.ts +2 -0
  56. package/dist/runtime/index.js +2 -0
  57. package/dist/runtime/plugins/template-module.d.ts +48 -0
  58. package/dist/runtime/plugins/template-module.js +14 -0
  59. package/dist/runtime/types.d.ts +1 -0
  60. package/dist/runtime/types.js +0 -0
  61. package/dist/runtime/utils.d.ts +15 -0
  62. package/dist/runtime/utils.js +22 -0
  63. package/dist/types.d.mts +9 -0
  64. 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
+ }