@providame/vue 0.0.8 → 0.0.9
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 +295 -0
- package/dist/components/Can.vue.d.ts +22 -0
- package/dist/components/CreateOrganization.vue.d.ts +14 -0
- package/dist/components/OrganizationProfile.vue.d.ts +14 -0
- package/dist/components/OrganizationSwitcher.vue.d.ts +21 -0
- package/dist/components/Protect.vue.d.ts +2 -0
- package/dist/composables/useCan.d.ts +16 -0
- package/dist/composables/useOrganization.d.ts +36 -0
- package/dist/composables/useOrganizationList.d.ts +29 -0
- package/dist/index.d.ts +7 -0
- package/dist/providame-vue.cjs +1 -1
- package/dist/providame-vue.css +1 -1
- package/dist/providame-vue.js +1888 -1186
- package/package.json +16 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@providame/vue",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Providame Vue 3 bindings — headless composables and prebuilt auth components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@floating-ui/vue": "^2.0.1",
|
|
42
|
-
"@providame/core": "0.0.
|
|
42
|
+
"@providame/core": "0.0.9"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/node": "^26.0.1",
|
|
@@ -52,5 +52,19 @@
|
|
|
52
52
|
"vitest": "^4.1.9",
|
|
53
53
|
"vue": "^3.5.39",
|
|
54
54
|
"vue-tsc": "^3.3.5"
|
|
55
|
+
},
|
|
56
|
+
"comments": {
|
|
57
|
+
"overrides": [
|
|
58
|
+
"Clears GHSA-mh99-v99m-4gvg (brace-expansion DoS) reached via",
|
|
59
|
+
"@vue/test-utils -> js-beautify -> editorconfig -> minimatch@9. These move the",
|
|
60
|
+
"chain onto minimatch@10, which uses brace-expansion@5.",
|
|
61
|
+
"brace-expansion itself cannot be overridden: v1/v2 export the expand function",
|
|
62
|
+
"directly while v3+ export an object, so forcing 5.x breaks minimatch.",
|
|
63
|
+
"npm's own suggestion is a semver-major DOWNGRADE of @vue/test-utils."
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"overrides": {
|
|
67
|
+
"js-beautify": "^2.0.3",
|
|
68
|
+
"editorconfig": "^3.0.2"
|
|
55
69
|
}
|
|
56
70
|
}
|