adminforth 1.3.49 → 1.3.51-next.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.
package/modules/restApi.ts
CHANGED
|
@@ -21,7 +21,6 @@ import {
|
|
|
21
21
|
import { ADMINFORTH_VERSION, listify } from './utils.js';
|
|
22
22
|
|
|
23
23
|
import AdminForthAuth from "../auth.js";
|
|
24
|
-
import { time } from "console";
|
|
25
24
|
|
|
26
25
|
|
|
27
26
|
export async function interpretResource(adminUser: AdminUser, resource: AdminForthResource, meta: any, source: ActionCheckSource): Promise<{allowedActions: AllowedActionsResolved}> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adminforth",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.51-next.0",
|
|
4
4
|
"description": "OpenSource Vue3 powered forth-generation admin panel",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"---prepareDist": "cp -rL spa dist/",
|
|
11
11
|
"rollout": "tsc && npm version patch && npm publish && npm run rollout-doc",
|
|
12
|
-
"rollout-next": "tsc && npm publish --tag next",
|
|
12
|
+
"rollout-next": "tsc && npm version prerelease --preid=next && npm publish --tag next",
|
|
13
13
|
"rollout-doc": "cd documentation && npm run build && npm run deploy",
|
|
14
14
|
"docs": "typedoc",
|
|
15
15
|
"postinstall": "cd ./spa/src/ && test ! -d ./types && ln -sf ../../types ./types || echo 'types linked'"
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
1
|
|
218
218
|
</button>
|
|
219
219
|
<input type="text"
|
|
220
|
-
class="w-10 py-1.5
|
|
220
|
+
class="w-12 min-w-10 py-1.5 px-3 text-sm text-center text-gray-700 border border-gray-300 dark:border-gray-700 dark:text-gray-400 dark:bg-gray-800 z-10"
|
|
221
221
|
v-model="page"/>
|
|
222
222
|
|
|
223
223
|
<button
|