@drax/settings-vue 0.43.0 → 0.45.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/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.45.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"format": "prettier --write src/"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@drax/common-front": "^0.
|
|
28
|
-
"@drax/crud-vue": "^0.
|
|
29
|
-
"@drax/identity-vue": "^0.
|
|
30
|
-
"@drax/settings-front": "^0.
|
|
31
|
-
"@drax/settings-share": "^0.
|
|
27
|
+
"@drax/common-front": "^0.45.0",
|
|
28
|
+
"@drax/crud-vue": "^0.45.0",
|
|
29
|
+
"@drax/identity-vue": "^0.45.0",
|
|
30
|
+
"@drax/settings-front": "^0.45.0",
|
|
31
|
+
"@drax/settings-share": "^0.45.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"pinia": "^2.2.2",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"vue-tsc": "^2.1.10",
|
|
66
66
|
"vuetify": "^3.7.1"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "b05b1b2c982bad40a6d93496266c652f77749279"
|
|
69
69
|
}
|
|
@@ -3,7 +3,7 @@ import {useSetting} from "../composables/UseSetting";
|
|
|
3
3
|
import {onMounted, reactive, ref} from "vue";
|
|
4
4
|
import {useI18n} from "vue-i18n";
|
|
5
5
|
import type {ISetting} from "@drax/settings-share";
|
|
6
|
-
import
|
|
6
|
+
import {formatDateTime} from "@drax/common-front";
|
|
7
7
|
import SettingField from "./SettingField.vue";
|
|
8
8
|
|
|
9
9
|
const {fetchSettings, settingsGrouped, updateSettingValue} = useSetting()
|
|
@@ -235,7 +235,7 @@ const updateSetting = async (setting?: ISetting) => {
|
|
|
235
235
|
</v-col>
|
|
236
236
|
<v-col cols="2" class="pr-4">
|
|
237
237
|
<span>
|
|
238
|
-
{{
|
|
238
|
+
{{ setting?.updatedAt ? formatDateTime(setting?.updatedAt) : '' }}<br>
|
|
239
239
|
{{ setting.updatedBy }}
|
|
240
240
|
</span>
|
|
241
241
|
</v-col>
|