@mongoosejs/studio 0.0.102 → 0.0.104
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.
|
@@ -24,7 +24,7 @@ const UpdateDocumentsParams = new Archetype({
|
|
|
24
24
|
module.exports = ({ db }) => async function updateDocuments(params) {
|
|
25
25
|
const { model, _id, update, roles } = new UpdateDocumentsParams(params);
|
|
26
26
|
|
|
27
|
-
await authorize('
|
|
27
|
+
await authorize('Model.updateDocuments', roles);
|
|
28
28
|
|
|
29
29
|
const Model = db.models[model];
|
|
30
30
|
if (Model == null) {
|
package/frontend/public/app.js
CHANGED
|
@@ -4193,7 +4193,7 @@ module.exports = ".document-details {\n width: 100%;\n }\n \n .document-de
|
|
|
4193
4193
|
/***/ ((module) => {
|
|
4194
4194
|
|
|
4195
4195
|
"use strict";
|
|
4196
|
-
module.exports = "<div>\n <div class=\"relative path-key p-1 flex\">\n <div class=\"grow\">\n {{path.path}}\n
|
|
4196
|
+
module.exports = "<div>\n <div class=\"relative path-key p-1 flex\">\n <div class=\"grow flex justify-between items-center\">\n <div>\n {{path.path}}\n <span class=\"path-type\">\n ({{(path.instance || 'unknown').toLowerCase()}})\n </span>\n </div>\n <div>\n <router-link\n v-if=\"path.ref && getValueForPath(path.path)\"\n :to=\"`/model/${path.ref}/document/${getValueForPath(path.path)}`\"\n class=\"bg-ultramarine-600 hover:bg-ultramarine-500 text-white px-2 py-1 text-sm mr-1 rounded-md\"\n >View Document\n </router-link>\n </div>\n </div>\n <div v-if=\"editting && path.instance === 'Date'\" class=\"flex gap-1.5\">\n <div\n @click=\"dateType = 'picker'\"\n :class=\"dateType === 'picker' ? 'bg-teal-600' : ''\"\n class=\"self-stretch px-2 py-1 rounded-sm justify-center items-center gap-1.5 flex cursor-pointer\">\n <div\n :class=\"dateType === 'picker' ? 'text-white' : ''\"\n class=\"text-xs font-medium font-['Lato'] capitalize leading-tight\">\n Date Picker\n </div>\n </div>\n <div\n @click=\"dateType = 'iso'\"\n :class=\"dateType === 'iso' ? 'bg-teal-600' : ''\"\n class=\"self-stretch px-2 py-1 rounded-sm justify-center items-center gap-1.5 flex cursor-pointer\">\n <div\n :class=\"dateType === 'iso' ? 'text-white' : ''\"\n class=\"text-xs font-medium font-['Lato'] capitalize leading-tight\">\n ISO String\n </div>\n </div>\n </div>\n </div>\n <div v-if=\"editting && path.path !== '_id'\" class=\"pl-1\">\n <component\n :is=\"getEditComponentForPath(path)\"\n :value=\"getEditValueForPath(path)\"\n :format=\"dateType\"\n @input=\"changes[path.path] = $event; delete invalid[path.path];\"\n @error=\"invalid[path.path] = $event;\"\n >\n </component>\n </div>\n <div v-else class=\"pl-1\">\n <component :is=\"getComponentForPath(path)\" :value=\"getValueForPath(path.path)\"></component>\n </div>\n</div>\n";
|
|
4197
4197
|
|
|
4198
4198
|
/***/ }),
|
|
4199
4199
|
|
|
@@ -14619,7 +14619,7 @@ var bson = /*#__PURE__*/Object.freeze({
|
|
|
14619
14619
|
/***/ ((module) => {
|
|
14620
14620
|
|
|
14621
14621
|
"use strict";
|
|
14622
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@mongoosejs/studio","version":"0.0.
|
|
14622
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@mongoosejs/studio","version":"0.0.104","description":"A sleek, powerful MongoDB UI with built-in dashboarding and auth, seamlessly integrated with your Express, Vercel, or Netlify app.","homepage":"https://studio.mongoosejs.io/","repository":{"type":"git","url":"https://github.com/mongoosejs/studio"},"dependencies":{"archetype":"0.13.1","csv-stringify":"6.3.0","ejson":"^2.2.3","extrovert":"0.0.26","marked":"15.0.12","node-inspect-extracted":"3.x","tailwindcss":"3.4.0","vanillatoasts":"^1.6.0","vue":"3.x","webpack":"5.x"},"peerDependencies":{"bson":"^5.5.1 || 6.x","express":"4.x","mongoose":"7.x || 8.x"},"devDependencies":{"@masteringjs/eslint-config":"0.1.1","axios":"1.2.2","eslint":"9.30.0","express":"4.x","mocha":"10.2.0","mongoose":"8.x"},"scripts":{"lint":"eslint .","tailwind":"tailwindcss -o ./frontend/public/tw.css","tailwind:watch":"tailwindcss -o ./frontend/public/tw.css --watch","test":"mocha test/*.test.js"}}');
|
|
14623
14623
|
|
|
14624
14624
|
/***/ })
|
|
14625
14625
|
|
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
<div>
|
|
2
2
|
<div class="relative path-key p-1 flex">
|
|
3
|
-
<div class="grow">
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
<div class="grow flex justify-between items-center">
|
|
4
|
+
<div>
|
|
5
|
+
{{path.path}}
|
|
6
|
+
<span class="path-type">
|
|
7
|
+
({{(path.instance || 'unknown').toLowerCase()}})
|
|
8
|
+
</span>
|
|
9
|
+
</div>
|
|
10
|
+
<div>
|
|
11
|
+
<router-link
|
|
12
|
+
v-if="path.ref && getValueForPath(path.path)"
|
|
13
|
+
:to="`/model/${path.ref}/document/${getValueForPath(path.path)}`"
|
|
14
|
+
class="bg-ultramarine-600 hover:bg-ultramarine-500 text-white px-2 py-1 text-sm mr-1 rounded-md"
|
|
15
|
+
>View Document
|
|
16
|
+
</router-link>
|
|
17
|
+
</div>
|
|
8
18
|
</div>
|
|
9
19
|
<div v-if="editting && path.instance === 'Date'" class="flex gap-1.5">
|
|
10
20
|
<div
|
|
@@ -42,4 +52,4 @@
|
|
|
42
52
|
<div v-else class="pl-1">
|
|
43
53
|
<component :is="getComponentForPath(path)" :value="getValueForPath(path.path)"></component>
|
|
44
54
|
</div>
|
|
45
|
-
</div>
|
|
55
|
+
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mongoosejs/studio",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.104",
|
|
4
4
|
"description": "A sleek, powerful MongoDB UI with built-in dashboarding and auth, seamlessly integrated with your Express, Vercel, or Netlify app.",
|
|
5
5
|
"homepage": "https://studio.mongoosejs.io/",
|
|
6
6
|
"repository": {
|