@vtj/materials 0.10.1-alpha.7 → 0.10.1
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/dist/assets/antdv/index.umd.js +2 -2
- package/dist/assets/charts/index.umd.js +2 -2
- package/dist/assets/element/index.umd.js +2 -2
- package/dist/assets/ui/index.umd.js +2 -2
- package/dist/assets/uni-h5/index.umd.js +2 -2
- package/dist/assets/uni-ui/index.umd.js +2 -2
- package/dist/assets/vant/index.umd.js +5 -5
- package/dist/deps/@vtj/charts/index.umd.js +2 -2
- package/dist/deps/@vtj/icons/index.umd.js +2 -2
- package/dist/deps/@vtj/ui/index.umd.js +2 -2
- package/dist/deps/@vtj/utils/index.umd.js +2 -2
- package/package.json +6 -6
- package/src/uni-ui/lib/uni-datetime-picker/calendar-item.vue +177 -177
- package/src/uni-ui/lib/uni-datetime-picker/calendar.vue +947 -947
- package/src/uni-ui/lib/uni-datetime-picker/i18n/en.json +22 -22
- package/src/uni-ui/lib/uni-datetime-picker/i18n/index.js +7 -7
- package/src/uni-ui/lib/uni-datetime-picker/time-picker.vue +939 -939
- package/src/uni-ui/lib/uni-datetime-picker/util.js +419 -419
- package/src/uni-ui/lib/uni-forms/uni-forms.vue +416 -416
- package/src/uni-ui/lib/uni-forms/utils.js +281 -281
- package/src/uni-ui/lib/uni-forms/validate.js +485 -485
- package/src/uni-ui/lib/uni-popup-dialog/keypress.js +45 -45
- package/src/uni-ui/lib/uni-popup-dialog/uni-popup-dialog.vue +324 -324
- package/src/version.ts +2 -2
@@ -1,22 +1,22 @@
|
|
1
|
-
{
|
2
|
-
"uni-datetime-picker.selectDate": "select date",
|
3
|
-
"uni-datetime-picker.selectTime": "select time",
|
4
|
-
"uni-datetime-picker.selectDateTime": "select date and time",
|
5
|
-
"uni-datetime-picker.startDate": "start date",
|
6
|
-
"uni-datetime-picker.endDate": "end date",
|
7
|
-
"uni-datetime-picker.startTime": "start time",
|
8
|
-
"uni-datetime-picker.endTime": "end time",
|
9
|
-
"uni-datetime-picker.ok": "ok",
|
10
|
-
"uni-datetime-picker.clear": "clear",
|
11
|
-
"uni-datetime-picker.cancel": "cancel",
|
12
|
-
"uni-datetime-picker.year": "-",
|
13
|
-
"uni-datetime-picker.month": "",
|
14
|
-
"uni-calender.MON": "MON",
|
15
|
-
"uni-calender.TUE": "TUE",
|
16
|
-
"uni-calender.WED": "WED",
|
17
|
-
"uni-calender.THU": "THU",
|
18
|
-
"uni-calender.FRI": "FRI",
|
19
|
-
"uni-calender.SAT": "SAT",
|
20
|
-
"uni-calender.SUN": "SUN",
|
21
|
-
"uni-calender.confirm": "confirm"
|
22
|
-
}
|
1
|
+
{
|
2
|
+
"uni-datetime-picker.selectDate": "select date",
|
3
|
+
"uni-datetime-picker.selectTime": "select time",
|
4
|
+
"uni-datetime-picker.selectDateTime": "select date and time",
|
5
|
+
"uni-datetime-picker.startDate": "start date",
|
6
|
+
"uni-datetime-picker.endDate": "end date",
|
7
|
+
"uni-datetime-picker.startTime": "start time",
|
8
|
+
"uni-datetime-picker.endTime": "end time",
|
9
|
+
"uni-datetime-picker.ok": "ok",
|
10
|
+
"uni-datetime-picker.clear": "clear",
|
11
|
+
"uni-datetime-picker.cancel": "cancel",
|
12
|
+
"uni-datetime-picker.year": "-",
|
13
|
+
"uni-datetime-picker.month": "",
|
14
|
+
"uni-calender.MON": "MON",
|
15
|
+
"uni-calender.TUE": "TUE",
|
16
|
+
"uni-calender.WED": "WED",
|
17
|
+
"uni-calender.THU": "THU",
|
18
|
+
"uni-calender.FRI": "FRI",
|
19
|
+
"uni-calender.SAT": "SAT",
|
20
|
+
"uni-calender.SUN": "SUN",
|
21
|
+
"uni-calender.confirm": "confirm"
|
22
|
+
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import en from './en.json'
|
2
|
-
import zhHans from './zh-Hans.json'
|
3
|
-
import zhHant from './zh-Hant.json'
|
4
|
-
export default {
|
5
|
-
en,
|
6
|
-
'zh-Hans': zhHans,
|
7
|
-
'zh-Hant': zhHant
|
1
|
+
import en from './en.json'
|
2
|
+
import zhHans from './zh-Hans.json'
|
3
|
+
import zhHant from './zh-Hant.json'
|
4
|
+
export default {
|
5
|
+
en,
|
6
|
+
'zh-Hans': zhHans,
|
7
|
+
'zh-Hant': zhHant
|
8
8
|
}
|