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.
- package/dist/module.json +3 -3
- package/dist/runtime/components/AlertDisplay.vue +11 -18
- package/dist/runtime/components/AlertDisplay.vue.d.ts +2 -0
- package/dist/runtime/components/CrudAddressSearchField.vue +16 -63
- package/dist/runtime/components/CrudAddressSearchField.vue.d.ts +2 -0
- package/dist/runtime/components/CrudApiSelectorField.vue +11 -24
- package/dist/runtime/components/CrudApiSelectorField.vue.d.ts +30 -0
- package/dist/runtime/components/CrudConfirmDialog.vue +11 -17
- package/dist/runtime/components/CrudConfirmDialog.vue.d.ts +18 -0
- package/dist/runtime/components/CrudErrorDisplay.vue +3 -4
- package/dist/runtime/components/CrudErrorDisplay.vue.d.ts +6 -0
- package/dist/runtime/components/CrudFilter.vue +31 -45
- package/dist/runtime/components/CrudFilter.vue.d.ts +8 -0
- package/dist/runtime/components/CrudFilterList.vue +0 -6
- package/dist/runtime/components/CrudFilterList.vue.d.ts +5 -0
- package/dist/runtime/components/CrudFormDialog.vue +4 -12
- package/dist/runtime/components/CrudFormDialog.vue.d.ts +28 -0
- package/dist/runtime/components/CrudFormLoader.vue +98 -121
- package/dist/runtime/components/CrudFormLoader.vue.d.ts +41 -0
- package/dist/runtime/components/CrudListLoader.vue +15 -26
- package/dist/runtime/components/CrudListLoader.vue.d.ts +36 -0
- package/dist/runtime/components/CrudPaginatedLoader.vue +53 -83
- package/dist/runtime/components/CrudPaginatedLoader.vue.d.ts +70 -0
- package/dist/runtime/components/CrudUploadField.vue +9 -26
- package/dist/runtime/components/CrudUploadField.vue.d.ts +23 -0
- package/dist/runtime/components/CrudUploadFieldSelection.vue +16 -24
- package/dist/runtime/components/CrudUploadFieldSelection.vue.d.ts +18 -0
- package/dist/types.d.mts +4 -2
- package/package.json +17 -18
- package/dist/module.cjs +0 -5
- package/dist/module.d.ts +0 -23
- 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.
|
|
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.
|
|
10
|
+
"types": "./dist/types.d.mts",
|
|
11
11
|
"import": "./dist/module.mjs",
|
|
12
|
-
"require": "./dist/module.
|
|
12
|
+
"require": "./dist/module.mjs"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
|
-
"main": "./dist/module.
|
|
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": "^
|
|
29
|
+
"@azure/msal-browser": "^4.12.0",
|
|
31
30
|
"@nuxt/image": "^1.10.0",
|
|
32
|
-
"@nuxt/kit": "^3.
|
|
33
|
-
"@nuxt/scripts": "^0.11.
|
|
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.
|
|
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.
|
|
45
|
-
"@nuxt/module-builder": "^1.0.
|
|
46
|
-
"@nuxt/schema": "^3.
|
|
47
|
-
"@nuxt/test-utils": "^3.
|
|
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.
|
|
48
|
+
"@types/node": "^22.15.17",
|
|
50
49
|
"@types/uuid": "^10.0.0",
|
|
51
50
|
"changelogen": "^0.6.1",
|
|
52
|
-
"eslint": "^9.
|
|
53
|
-
"sass": "^1.
|
|
51
|
+
"eslint": "^9.26.0",
|
|
52
|
+
"sass": "^1.88.0",
|
|
54
53
|
"typescript": "^5.8.3",
|
|
55
|
-
"vue-tsc": "^2.2.
|
|
56
|
-
"vitest": "^3.1.
|
|
54
|
+
"vue-tsc": "^2.2.10",
|
|
55
|
+
"vitest": "^3.1.3"
|
|
57
56
|
}
|
|
58
57
|
}
|
package/dist/module.cjs
DELETED
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