@adminforth/i18n 1.6.1 → 1.6.3
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/build.log
CHANGED
|
@@ -17,5 +17,5 @@ custom/package-lock.json
|
|
|
17
17
|
custom/package.json
|
|
18
18
|
custom/tsconfig.json
|
|
19
19
|
|
|
20
|
-
sent 33,
|
|
21
|
-
total size is 32,
|
|
20
|
+
sent 33,150 bytes received 248 bytes 66,796.00 bytes/sec
|
|
21
|
+
total size is 32,230 speedup is 0.97
|
|
@@ -24,7 +24,7 @@ import type {
|
|
|
24
24
|
AdminForthResourceCommon,
|
|
25
25
|
AdminUser,
|
|
26
26
|
} from "@/types/Common";
|
|
27
|
-
import { computed,
|
|
27
|
+
import { computed, type Ref, watch, nextTick, ref, onMounted } from "vue";
|
|
28
28
|
|
|
29
29
|
const shortValue: Ref<boolean> = computed(() => (props.record[props.column.name]?.length || 0) < 50);
|
|
30
30
|
|
package/custom/tsconfig.json
CHANGED
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"baseUrl": ".",
|
|
3
|
+
"baseUrl": ".",
|
|
4
4
|
"paths": {
|
|
5
5
|
"@/*": [
|
|
6
|
-
// "node_modules/adminforth/dist/spa/src/*"
|
|
7
6
|
"../../../adminforth/spa/src/*"
|
|
8
7
|
],
|
|
9
8
|
"*": [
|
|
10
|
-
// "node_modules/adminforth/dist/spa/node_modules/*"
|
|
11
9
|
"../../../adminforth/spa/node_modules/*"
|
|
12
10
|
],
|
|
13
11
|
"@@/*": [
|
|
14
|
-
// "node_modules/adminforth/dist/spa/src/*"
|
|
15
12
|
"."
|
|
16
13
|
]
|
|
17
14
|
}
|
|
18
|
-
}
|
|
15
|
+
},
|
|
16
|
+
"include": [
|
|
17
|
+
"./**/*.ts",
|
|
18
|
+
"./**/*.tsx",
|
|
19
|
+
"./**/*.vue",
|
|
20
|
+
"../**/*.ts",
|
|
21
|
+
"../**/*.tsx",
|
|
22
|
+
"../**/*.vue",
|
|
23
|
+
"../*.vue",
|
|
24
|
+
"../*.ts",
|
|
25
|
+
"../*.tsx"
|
|
26
|
+
]
|
|
19
27
|
}
|
|
@@ -24,7 +24,7 @@ import type {
|
|
|
24
24
|
AdminForthResourceCommon,
|
|
25
25
|
AdminUser,
|
|
26
26
|
} from "@/types/Common";
|
|
27
|
-
import { computed,
|
|
27
|
+
import { computed, type Ref, watch, nextTick, ref, onMounted } from "vue";
|
|
28
28
|
|
|
29
29
|
const shortValue: Ref<boolean> = computed(() => (props.record[props.column.name]?.length || 0) < 50);
|
|
30
30
|
|
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"baseUrl": ".",
|
|
3
|
+
"baseUrl": ".",
|
|
4
4
|
"paths": {
|
|
5
5
|
"@/*": [
|
|
6
|
-
// "node_modules/adminforth/dist/spa/src/*"
|
|
7
6
|
"../../../adminforth/spa/src/*"
|
|
8
7
|
],
|
|
9
8
|
"*": [
|
|
10
|
-
// "node_modules/adminforth/dist/spa/node_modules/*"
|
|
11
9
|
"../../../adminforth/spa/node_modules/*"
|
|
12
10
|
],
|
|
13
11
|
"@@/*": [
|
|
14
|
-
// "node_modules/adminforth/dist/spa/src/*"
|
|
15
12
|
"."
|
|
16
13
|
]
|
|
17
14
|
}
|
|
18
|
-
}
|
|
15
|
+
},
|
|
16
|
+
"include": [
|
|
17
|
+
"./**/*.ts",
|
|
18
|
+
"./**/*.tsx",
|
|
19
|
+
"./**/*.vue",
|
|
20
|
+
"../**/*.ts",
|
|
21
|
+
"../**/*.tsx",
|
|
22
|
+
"../**/*.vue",
|
|
23
|
+
"../*.vue",
|
|
24
|
+
"../*.ts",
|
|
25
|
+
"../*.tsx"
|
|
26
|
+
]
|
|
19
27
|
}
|