@drax/dashboard-vue 0.37.3 → 0.38.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 +4 -4
- package/src/index.ts +0 -3
- package/src/i18n/Dashboard-i18n.ts +0 -55
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.38.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"format": "prettier --write src/"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@drax/crud-front": "^0.
|
|
28
|
-
"@drax/crud-share": "^0.
|
|
27
|
+
"@drax/crud-front": "^0.38.0",
|
|
28
|
+
"@drax/crud-share": "^0.38.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"pinia": "^2.2.2",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"vue-tsc": "^2.0.11",
|
|
63
63
|
"vuetify": "^3.7.1"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "43c90f3c12165e7527edefbc80dd327a59236dd5"
|
|
66
66
|
}
|
package/src/index.ts
CHANGED
|
@@ -6,7 +6,6 @@ import DashboardCombobox from './combobox/DashboardCombobox.vue'
|
|
|
6
6
|
import {useDashboardCard} from './composables/UseDashboardCard'
|
|
7
7
|
import {useDashboardStore} from './stores/UseDashboardStore'
|
|
8
8
|
import DashboardCrud from './cruds/DashboardCrud'
|
|
9
|
-
import DashboardI18n from './i18n/Dashboard-i18n'
|
|
10
9
|
|
|
11
10
|
|
|
12
11
|
export {
|
|
@@ -20,8 +19,6 @@ export {
|
|
|
20
19
|
DashboardCombobox,
|
|
21
20
|
//CRUD
|
|
22
21
|
DashboardCrud,
|
|
23
|
-
//I18N
|
|
24
|
-
DashboardI18n,
|
|
25
22
|
//STORES
|
|
26
23
|
useDashboardStore,
|
|
27
24
|
//COMPOSABLES
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
const messages = {
|
|
2
|
-
en: {
|
|
3
|
-
|
|
4
|
-
dashboard: {
|
|
5
|
-
entity: 'Dashboard',
|
|
6
|
-
menu: 'Dashboard',
|
|
7
|
-
crud: 'Manage Dashboard',
|
|
8
|
-
field: {
|
|
9
|
-
identifier: 'identifier',
|
|
10
|
-
title: 'title',
|
|
11
|
-
cards: 'cards',
|
|
12
|
-
entity: 'entity',
|
|
13
|
-
type: 'type',
|
|
14
|
-
filters: 'filters',
|
|
15
|
-
layout: 'layout',
|
|
16
|
-
groupBy: 'groupBy',
|
|
17
|
-
paginate: 'paginate'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
permission: {
|
|
21
|
-
'dashboard:view': 'View Dashboard',
|
|
22
|
-
'dashboard:create': 'Create Dashboard',
|
|
23
|
-
'dashboard:update': 'Edit Dashboard',
|
|
24
|
-
'dashboard:delete': 'Delete Dashboard',
|
|
25
|
-
'dashboard:manage': 'Manage Dashboard',
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
es: {
|
|
29
|
-
dashboard: {
|
|
30
|
-
entity: 'Dashboard',
|
|
31
|
-
menu: 'Dashboard',
|
|
32
|
-
crud: 'Gestionar Dashboard',
|
|
33
|
-
field: {
|
|
34
|
-
identifier: 'identifier',
|
|
35
|
-
title: 'title',
|
|
36
|
-
cards: 'cards',
|
|
37
|
-
entity: 'entity',
|
|
38
|
-
type: 'type',
|
|
39
|
-
filters: 'filters',
|
|
40
|
-
layout: 'layout',
|
|
41
|
-
groupBy: 'groupBy',
|
|
42
|
-
paginate: 'paginate'
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
permission: {
|
|
46
|
-
'dashboard:view': 'Ver Dashboard',
|
|
47
|
-
'dashboard:create': 'Crear Dashboard',
|
|
48
|
-
'dashboard:update': 'Editar Dashboard',
|
|
49
|
-
'dashboard:delete': 'Eliminar Dashboard',
|
|
50
|
-
'dashboard:manage': 'Gestionar Dashboard',
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export default messages;
|