adminforth 1.2.74 → 1.2.76
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adminforth",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.76",
|
|
4
4
|
"description": "OpenSource Vue3 powered forth-generation admin panel",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"rollout": "tsc && npm version patch && npm publish && npm run rollout-doc",
|
|
12
12
|
"rollout-doc": "cd documentation && npm run build && npm run deploy",
|
|
13
13
|
"docs": "typedoc",
|
|
14
|
-
"postinstall": "cd spa/src && ln -sf ../../types types"
|
|
14
|
+
"postinstall": "cd ./spa/src/ && test ! -d ./types && ln -sf ../../types ./types || echo 'types linked'"
|
|
15
15
|
},
|
|
16
16
|
"author": "devforth.io",
|
|
17
17
|
"license": "ISC",
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<!-- table -->
|
|
3
|
-
<div class="relative overflow-x-auto shadow-listTableShadow dark:shadow-darkListTableShadow overflow-y-hidden
|
|
3
|
+
<div class="relative overflow-x-auto shadow-listTableShadow dark:shadow-darkListTableShadow overflow-y-hidden"
|
|
4
|
+
:class="{'rounded-default': !noRoundings}"
|
|
5
|
+
>
|
|
4
6
|
|
|
5
7
|
<!-- skelet loader -->
|
|
6
8
|
<div role="status" v-if="!resource || !resource.columns"
|
|
@@ -255,7 +257,8 @@ const props = defineProps([
|
|
|
255
257
|
'totalRows',
|
|
256
258
|
'pageSize',
|
|
257
259
|
'checkboxes',
|
|
258
|
-
'sort'
|
|
260
|
+
'sort',
|
|
261
|
+
'noRoundings'
|
|
259
262
|
])
|
|
260
263
|
|
|
261
264
|
// emits, update page
|