easybill-ui 1.1.8 → 1.1.9
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.
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
|
|
91
91
|
<script lang="ts" setup>
|
|
92
92
|
import { ArrowDown, Delete, Document, Edit, Plus } from "@element-plus/icons-vue"
|
|
93
|
+
import { useGlobalConfig } from "easybill-ui"
|
|
93
94
|
import { ElLoading, ElMessage, ElMessageBox, ElTable } from "element-plus"
|
|
94
95
|
import { computed, getCurrentInstance, onActivated, onMounted, type PropType, provide, reactive, ref, type Ref, watch } from "vue"
|
|
95
|
-
import { useGlobalConfig } from "../../../utils/hooks/useGlobalConfig"
|
|
96
96
|
import { useLocale } from "../../../utils/hooks/useLocal"
|
|
97
97
|
import type { Fields, FormItem, FormSchema } from "../../CurdForm"
|
|
98
98
|
import FormDialog from "../../FormDialog"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easybill-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "A component library for easybill",
|
|
5
5
|
"author": "tuchongyang <779311998@qq.com>",
|
|
6
6
|
"private": false,
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "571ffc4433847c93488f68b189b83b78dea609b8"
|
|
18
18
|
}
|
package/utils/hooks/useLocal.ts
CHANGED
|
@@ -2,9 +2,9 @@ import { computed, isRef, ref, unref, type ComputedRef } from "vue"
|
|
|
2
2
|
import zhCn from "../../locale/lang/zh-cn"
|
|
3
3
|
|
|
4
4
|
import type { MaybeRef } from "@vueuse/core"
|
|
5
|
+
import { useGlobalConfig } from "easybill-ui"
|
|
5
6
|
import type { Ref } from "vue"
|
|
6
7
|
import type { Language } from "../../locale"
|
|
7
|
-
import { useGlobalConfig } from "./useGlobalConfig"
|
|
8
8
|
|
|
9
9
|
export type TranslatorOption = Record<string, string | number> | string[]
|
|
10
10
|
export type Translator = (path: string, option?: TranslatorOption) => string
|