adminforth 1.2.48 → 1.2.50
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/spa/spa/src/assets/base.css +2 -0
- package/dist/spa/spa/src/components/ResourceForm.vue +2 -2
- package/dist/spa/spa/src/views/ShowView.vue +1 -1
- package/package.json +2 -1
- package/spa/src/assets/base.css +2 -0
- package/spa/src/components/ResourceForm.vue +2 -2
- package/spa/src/views/ShowView.vue +1 -1
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
>
|
|
6
6
|
<form autocomplete="off" @submit.prevent>
|
|
7
7
|
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 ">
|
|
8
|
-
<thead class="text-xs text-gray-700 uppercase bg-lightFormHeading dark:bg-gray-700 dark:text-gray-400 block md:table-row">
|
|
8
|
+
<thead class="text-xs text-gray-700 uppercase bg-lightFormHeading dark:bg-gray-700 dark:text-gray-400 block md:table-row-group">
|
|
9
9
|
<tr>
|
|
10
10
|
<th scope="col" class="px-6 py-3 hidden md:table-cell">
|
|
11
11
|
Field
|
|
12
12
|
</th>
|
|
13
|
-
<th scope="col" class="px-6 py-3 w-
|
|
13
|
+
<th scope="col" class="px-6 py-3 w-5/6 hidden md:table-cell">
|
|
14
14
|
Value
|
|
15
15
|
</th>
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adminforth",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.50",
|
|
4
4
|
"description": "OpenSource Vue3 powered forth-generation admin panel",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"prepareDist": "cp -r spa dist/spa",
|
|
11
11
|
"rollout": "tsc && npm run prepareDist && npm version patch && npm publish && cd documentation && npm run build && npm run deploy",
|
|
12
|
+
"rollout-doc": "cd documentation && npm run build && npm run deploy",
|
|
12
13
|
"docs": "typedoc"
|
|
13
14
|
},
|
|
14
15
|
"author": "devforth.io",
|
package/spa/src/assets/base.css
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
>
|
|
6
6
|
<form autocomplete="off" @submit.prevent>
|
|
7
7
|
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 ">
|
|
8
|
-
<thead class="text-xs text-gray-700 uppercase bg-lightFormHeading dark:bg-gray-700 dark:text-gray-400 block md:table-row">
|
|
8
|
+
<thead class="text-xs text-gray-700 uppercase bg-lightFormHeading dark:bg-gray-700 dark:text-gray-400 block md:table-row-group">
|
|
9
9
|
<tr>
|
|
10
10
|
<th scope="col" class="px-6 py-3 hidden md:table-cell">
|
|
11
11
|
Field
|
|
12
12
|
</th>
|
|
13
|
-
<th scope="col" class="px-6 py-3 w-
|
|
13
|
+
<th scope="col" class="px-6 py-3 w-5/6 hidden md:table-cell">
|
|
14
14
|
Value
|
|
15
15
|
</th>
|
|
16
16
|
|