atom-nuxt 1.0.138 → 1.0.140

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 (32) hide show
  1. package/dist/module.json +3 -3
  2. package/dist/runtime/components/AlertDisplay.vue +11 -18
  3. package/dist/runtime/components/AlertDisplay.vue.d.ts +2 -0
  4. package/dist/runtime/components/CrudAddressSearchField.vue +16 -63
  5. package/dist/runtime/components/CrudAddressSearchField.vue.d.ts +2 -0
  6. package/dist/runtime/components/CrudApiSelectorField.vue +11 -24
  7. package/dist/runtime/components/CrudApiSelectorField.vue.d.ts +30 -0
  8. package/dist/runtime/components/CrudConfirmDialog.vue +11 -17
  9. package/dist/runtime/components/CrudConfirmDialog.vue.d.ts +18 -0
  10. package/dist/runtime/components/CrudErrorDisplay.vue +3 -4
  11. package/dist/runtime/components/CrudErrorDisplay.vue.d.ts +6 -0
  12. package/dist/runtime/components/CrudFilter.vue +31 -45
  13. package/dist/runtime/components/CrudFilter.vue.d.ts +8 -0
  14. package/dist/runtime/components/CrudFilterList.vue +0 -6
  15. package/dist/runtime/components/CrudFilterList.vue.d.ts +5 -0
  16. package/dist/runtime/components/CrudFormDialog.vue +4 -12
  17. package/dist/runtime/components/CrudFormDialog.vue.d.ts +28 -0
  18. package/dist/runtime/components/CrudFormLoader.vue +98 -121
  19. package/dist/runtime/components/CrudFormLoader.vue.d.ts +41 -0
  20. package/dist/runtime/components/CrudListLoader.vue +15 -26
  21. package/dist/runtime/components/CrudListLoader.vue.d.ts +36 -0
  22. package/dist/runtime/components/CrudPaginatedLoader.vue +53 -83
  23. package/dist/runtime/components/CrudPaginatedLoader.vue.d.ts +70 -0
  24. package/dist/runtime/components/CrudUploadField.vue +9 -26
  25. package/dist/runtime/components/CrudUploadField.vue.d.ts +23 -0
  26. package/dist/runtime/components/CrudUploadFieldSelection.vue +16 -24
  27. package/dist/runtime/components/CrudUploadFieldSelection.vue.d.ts +18 -0
  28. package/dist/types.d.mts +4 -2
  29. package/package.json +17 -18
  30. package/dist/module.cjs +0 -5
  31. package/dist/module.d.ts +0 -23
  32. package/dist/types.d.ts +0 -7
package/package.json CHANGED
@@ -1,19 +1,18 @@
1
1
  {
2
2
  "name": "atom-nuxt",
3
- "version": "1.0.138",
3
+ "version": "1.0.140",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "atomengine/atom-nuxt",
6
6
  "license": "MIT",
7
7
  "type": "module",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./dist/types.d.ts",
10
+ "types": "./dist/types.d.mts",
11
11
  "import": "./dist/module.mjs",
12
- "require": "./dist/module.cjs"
12
+ "require": "./dist/module.mjs"
13
13
  }
14
14
  },
15
- "main": "./dist/module.cjs",
16
- "types": "./dist/types.d.ts",
15
+ "main": "./dist/module.mjs",
17
16
  "files": [
18
17
  "dist",
19
18
  "types"
@@ -27,32 +26,32 @@
27
26
  "lint": "eslint ."
28
27
  },
29
28
  "dependencies": {
30
- "@azure/msal-browser": "^3.28.1",
29
+ "@azure/msal-browser": "^4.12.0",
31
30
  "@nuxt/image": "^1.10.0",
32
- "@nuxt/kit": "^3.16.2",
33
- "@nuxt/scripts": "^0.11.5",
31
+ "@nuxt/kit": "^3.17.2",
32
+ "@nuxt/scripts": "^0.11.6",
34
33
  "@vueuse/core": "^13.1.0",
35
34
  "@vueuse/nuxt": "^13.1.0",
36
35
  "luxon": "^3.6.1",
37
- "query-string": "^9.1.1",
36
+ "query-string": "^9.1.2",
38
37
  "ts-luxon": "^6.0.0",
39
38
  "uuid": "^10.0.0",
40
39
  "vuetify-nuxt-module": "^0.18.6"
41
40
  },
42
41
  "devDependencies": {
43
42
  "@nuxt/devtools": "1.7.0",
44
- "@nuxt/eslint-config": "^1.3.0",
45
- "@nuxt/module-builder": "^1.0.0",
46
- "@nuxt/schema": "^3.16.2",
47
- "@nuxt/test-utils": "^3.17.2",
43
+ "@nuxt/eslint-config": "^1.3.1",
44
+ "@nuxt/module-builder": "^1.0.1",
45
+ "@nuxt/schema": "^3.17.2",
46
+ "@nuxt/test-utils": "^3.18.0",
48
47
  "@types/luxon": "^3.6.2",
49
- "@types/node": "^22.14.0",
48
+ "@types/node": "^22.15.17",
50
49
  "@types/uuid": "^10.0.0",
51
50
  "changelogen": "^0.6.1",
52
- "eslint": "^9.24.0",
53
- "sass": "^1.86.3",
51
+ "eslint": "^9.26.0",
52
+ "sass": "^1.88.0",
54
53
  "typescript": "^5.8.3",
55
- "vue-tsc": "^2.2.8",
56
- "vitest": "^3.1.1"
54
+ "vue-tsc": "^2.2.10",
55
+ "vitest": "^3.1.3"
57
56
  }
58
57
  }
package/dist/module.cjs DELETED
@@ -1,5 +0,0 @@
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)
package/dist/module.d.ts DELETED
@@ -1,23 +0,0 @@
1
- import * as _nuxt_schema from '@nuxt/schema';
2
-
3
- interface azureAdB2COptions {
4
- clientId: string;
5
- authority: string;
6
- knownAuthorities?: Array<string>;
7
- redirectUri: string;
8
- postLogoutRedirectUri?: string;
9
- navigateToLoginRequestUrl: boolean;
10
- scopes?: string[];
11
- }
12
- interface AtomCrudModuleOptions {
13
- apiBaseUrl?: string;
14
- storageBaseUrl?: string;
15
- additionalHeaders?: Record<string, string>;
16
- azureAdB2C?: azureAdB2COptions;
17
- googleMapsApiKey?: string;
18
- debug?: boolean;
19
- }
20
- declare const _default: _nuxt_schema.NuxtModule<AtomCrudModuleOptions, AtomCrudModuleOptions, false>;
21
-
22
- export { _default as default };
23
- export type { AtomCrudModuleOptions, azureAdB2COptions };
package/dist/types.d.ts DELETED
@@ -1,7 +0,0 @@
1
- import type { NuxtModule } from '@nuxt/schema'
2
-
3
- import type { default as Module } from './module'
4
-
5
- export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
6
-
7
- export { default } from './module'