@tekkare/auriga 0.1.0

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 (45) hide show
  1. package/README.md +89 -0
  2. package/dist/module.cjs +5 -0
  3. package/dist/module.d.mts +7 -0
  4. package/dist/module.d.ts +7 -0
  5. package/dist/module.json +8 -0
  6. package/dist/module.mjs +23 -0
  7. package/dist/runtime/components/argAdvancedSearchBar.vue +866 -0
  8. package/dist/runtime/components/argAdvancedSearchBar.vue.d.ts +4 -0
  9. package/dist/runtime/components/argBtn.vue +108 -0
  10. package/dist/runtime/components/argBtn.vue.d.ts +4 -0
  11. package/dist/runtime/components/argComplexSelect.vue +558 -0
  12. package/dist/runtime/components/argComplexSelect.vue.d.ts +4 -0
  13. package/dist/runtime/components/argDataLoader.vue +337 -0
  14. package/dist/runtime/components/argDataLoader.vue.d.ts +4 -0
  15. package/dist/runtime/components/argDropdownSelect.vue +321 -0
  16. package/dist/runtime/components/argDropdownSelect.vue.d.ts +4 -0
  17. package/dist/runtime/components/argFileBtn.vue +136 -0
  18. package/dist/runtime/components/argFileBtn.vue.d.ts +4 -0
  19. package/dist/runtime/components/argHeaderTabs.vue +216 -0
  20. package/dist/runtime/components/argHeaderTabs.vue.d.ts +4 -0
  21. package/dist/runtime/components/argIcon.vue +3135 -0
  22. package/dist/runtime/components/argIcon.vue.d.ts +4 -0
  23. package/dist/runtime/components/argMultipleChoice.vue +149 -0
  24. package/dist/runtime/components/argMultipleChoice.vue.d.ts +4 -0
  25. package/dist/runtime/components/argNoData.vue +83 -0
  26. package/dist/runtime/components/argNoData.vue.d.ts +4 -0
  27. package/dist/runtime/components/argSearchInput.vue +123 -0
  28. package/dist/runtime/components/argSearchInput.vue.d.ts +4 -0
  29. package/dist/runtime/components/argSimpleLabel.vue +214 -0
  30. package/dist/runtime/components/argSimpleLabel.vue.d.ts +4 -0
  31. package/dist/runtime/components/argStyle.vue +975 -0
  32. package/dist/runtime/components/argStyle.vue.d.ts +4 -0
  33. package/dist/runtime/components/argTable.vue +863 -0
  34. package/dist/runtime/components/argTable.vue.d.ts +4 -0
  35. package/dist/runtime/components/argTags.vue +26 -0
  36. package/dist/runtime/components/argTags.vue.d.ts +4 -0
  37. package/dist/runtime/components/argTekkareLoader.vue +72 -0
  38. package/dist/runtime/components/argTekkareLoader.vue.d.ts +4 -0
  39. package/dist/runtime/components/argTooltip.vue +141 -0
  40. package/dist/runtime/components/argTooltip.vue.d.ts +4 -0
  41. package/dist/runtime/plugin.d.ts +2 -0
  42. package/dist/runtime/plugin.mjs +4 -0
  43. package/dist/types.d.mts +15 -0
  44. package/dist/types.d.ts +15 -0
  45. package/package.json +45 -0
package/README.md ADDED
@@ -0,0 +1,89 @@
1
+ <!--
2
+ Get your module up and running quickly.
3
+
4
+ Find and replace all on all files (CMD+SHIFT+F):
5
+ - Name: My Module
6
+ - Package name: my-module
7
+ - Description: My new Nuxt module
8
+ -->
9
+
10
+ # Auriga UI
11
+
12
+ [![npm version][npm-version-src]][npm-version-href]
13
+ [![License][license-src]][license-href]
14
+ [![Nuxt][nuxt-src]][nuxt-href]
15
+
16
+ Auriga UI kit developed by Tekkare
17
+
18
+ - [✨ &nbsp;Release Notes](/CHANGELOG.md)
19
+ <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
20
+ <!-- - [📖 &nbsp;Documentation](https://example.com) -->
21
+
22
+ ## Features
23
+
24
+ <!-- Highlight some of the features your module provide here -->
25
+ <!-- - ⛰ &nbsp;Foo
26
+ - 🚠 &nbsp;Bar
27
+ - 🌲 &nbsp;Baz -->
28
+
29
+ ## Quick Setup
30
+
31
+ 1. Add `@tekkare/auriga` dependency to your project
32
+
33
+ ```bash
34
+
35
+
36
+ # Using npm
37
+ npm install --save-dev @tekkare/auriga
38
+ ```
39
+
40
+ 2. Add `@tekkare/auriga` to the `modules` section of `nuxt.config.ts`
41
+
42
+ ```js
43
+ export default defineNuxtConfig({
44
+ modules: [
45
+ '@tekkare/auriga'
46
+ ]
47
+ })
48
+ ```
49
+
50
+ That's it! You can now use @tekkare/auriga in your Nuxt app ✨
51
+
52
+ ## Development
53
+
54
+ ```bash
55
+ # Install dependencies
56
+ npm install
57
+
58
+ # Generate type stubs
59
+ npm run dev:prepare
60
+
61
+ # Develop with the playground
62
+ npm run dev
63
+
64
+ # Build the playground
65
+ npm run dev:build
66
+
67
+ # Run ESLint
68
+ npm run lint
69
+
70
+ # Run Vitest
71
+ npm run test
72
+ npm run test:watch
73
+
74
+ # Release new version
75
+ npm run release
76
+ ```
77
+
78
+ <!-- Badges -->
79
+ [npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
80
+ [npm-version-href]: https://npmjs.com/package/my-module
81
+
82
+ [npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=18181B&colorB=28CF8D
83
+ [npm-downloads-href]: https://npmjs.com/package/my-module
84
+
85
+ [license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=18181B&colorB=28CF8D
86
+ [license-href]: https://npmjs.com/package/my-module
87
+
88
+ [nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js
89
+ [nuxt-href]: https://nuxt.com
@@ -0,0 +1,5 @@
1
+ module.exports = function(...args) {
2
+ return import('./module.mjs').then(m => m.default.call(this, ...args))
3
+ }
4
+ const _meta = module.exports.meta = require('./module.json')
5
+ module.exports.getMeta = () => Promise.resolve(_meta)
@@ -0,0 +1,7 @@
1
+ import * as _nuxt_schema from '@nuxt/schema';
2
+
3
+ interface ModuleOptions {
4
+ }
5
+ declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
6
+
7
+ export { type ModuleOptions, _default as default };
@@ -0,0 +1,7 @@
1
+ import * as _nuxt_schema from '@nuxt/schema';
2
+
3
+ interface ModuleOptions {
4
+ }
5
+ declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
6
+
7
+ export { type ModuleOptions, _default as default };
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "@tekkare/auriga",
3
+ "configKey": "@tekkare/auriga",
4
+ "compatibility": {
5
+ "nuxt": "^3.0.0"
6
+ },
7
+ "version": "0.1.0"
8
+ }
@@ -0,0 +1,23 @@
1
+ import { defineNuxtModule, createResolver, addComponentsDir } from '@nuxt/kit';
2
+
3
+ const module = defineNuxtModule({
4
+ meta: {
5
+ name: "@tekkare/auriga",
6
+ configKey: "@tekkare/auriga",
7
+ compatibility: {
8
+ nuxt: "^3.0.0"
9
+ }
10
+ },
11
+ // Default configuration options of the Nuxt module
12
+ defaults: {},
13
+ setup(options, nuxt) {
14
+ const { resolve } = createResolver(import.meta.url);
15
+ const runtimeDir = resolve("./runtime");
16
+ addComponentsDir({
17
+ path: resolve(runtimeDir, "components"),
18
+ watch: false
19
+ });
20
+ }
21
+ });
22
+
23
+ export { module as default };