x-essential-lib 0.5.77 → 0.5.83

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.
@@ -0,0 +1,116 @@
1
+ const e = {
2
+ badge: "徽章",
3
+ open: "Open",
4
+ close: "关闭",
5
+ dismiss: "Dismiss",
6
+ confirmEdit: {
7
+ ok: "OK",
8
+ cancel: "Cancel"
9
+ },
10
+ dataIterator: {
11
+ noResultsText: "没有符合条件的结果",
12
+ loadingText: "加载中..."
13
+ },
14
+ dataTable: {
15
+ itemsPerPageText: "每页数目:",
16
+ ariaLabel: {
17
+ sortDescending: ":降序排列。",
18
+ sortAscending: ":升序排列。",
19
+ sortNone: ":未排序。",
20
+ activateNone: "点击以移除排序。",
21
+ activateDescending: "点击以降序排列。",
22
+ activateAscending: "点击以升序排列。"
23
+ },
24
+ sortBy: "排序方式"
25
+ },
26
+ dataFooter: {
27
+ itemsPerPageText: "每页数目:",
28
+ itemsPerPageAll: "全部",
29
+ nextPage: "下一页",
30
+ prevPage: "上一页",
31
+ firstPage: "首页",
32
+ lastPage: "尾页",
33
+ pageText: "{0}-{1} 共 {2}"
34
+ },
35
+ dateRangeInput: {
36
+ divider: "to"
37
+ },
38
+ datePicker: {
39
+ itemsSelected: "{0} selected",
40
+ range: {
41
+ title: "Select dates",
42
+ header: "Enter dates"
43
+ },
44
+ title: "Select date",
45
+ header: "Enter date",
46
+ input: {
47
+ placeholder: "Enter date"
48
+ }
49
+ },
50
+ noDataText: "没有数据",
51
+ carousel: {
52
+ prev: "上一张",
53
+ next: "下一张",
54
+ ariaLabel: {
55
+ delimiter: "Carousel slide {0} of {1}"
56
+ }
57
+ },
58
+ calendar: {
59
+ moreEvents: "还有 {0} 项",
60
+ today: "Today"
61
+ },
62
+ input: {
63
+ clear: "Clear {0}",
64
+ prependAction: "{0} prepended action",
65
+ appendAction: "{0} appended action",
66
+ otp: "Please enter OTP character {0}"
67
+ },
68
+ fileInput: {
69
+ counter: "{0} 个文件",
70
+ counterSize: "{0} 个文件(共 {1})"
71
+ },
72
+ timePicker: {
73
+ am: "AM",
74
+ pm: "PM",
75
+ title: "Select Time"
76
+ },
77
+ pagination: {
78
+ ariaLabel: {
79
+ root: "分页导航",
80
+ next: "下一页",
81
+ previous: "上一页",
82
+ page: "转到页面 {0}",
83
+ currentPage: "当前页 {0}",
84
+ first: "First page",
85
+ last: "Last page"
86
+ }
87
+ },
88
+ stepper: {
89
+ next: "Next",
90
+ prev: "Previous"
91
+ },
92
+ rating: {
93
+ ariaLabel: {
94
+ item: "Rating {0} of {1}"
95
+ }
96
+ },
97
+ loading: "Loading...",
98
+ infiniteScroll: {
99
+ loadMore: "Load more",
100
+ empty: "No more"
101
+ }
102
+ }, t = {
103
+ common: {
104
+ cancel: "取消",
105
+ confirm: "确定"
106
+ },
107
+ waiting: {
108
+ text: "等待响应中..."
109
+ }
110
+ }, a = {
111
+ $vuetify: e,
112
+ dlg: t
113
+ };
114
+ export {
115
+ a as default
116
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-essential-lib",
3
3
  "private": false,
4
- "version": "0.5.77",
4
+ "version": "0.5.83",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -22,6 +22,7 @@
22
22
  "*": "prettier --write ."
23
23
  },
24
24
  "dependencies": {
25
+ "@vueuse/core": "^10.11.0",
25
26
  "js-cookie": "^3.0.5",
26
27
  "mitt": "^3.0.1"
27
28
  },