wini-web-components 2.6.1 → 2.6.2
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/component/button/button.d.ts +2 -1
- package/dist/component/button/button.js +1 -1
- package/dist/component/calendar/calendar.d.ts +0 -6
- package/dist/component/calendar/calendar.js +1 -8
- package/dist/component/date-time-picker/date-time-picker.d.ts +36 -0
- package/dist/component/date-time-picker/date-time-picker.js +572 -0
- package/dist/component/popup/popup.d.ts +0 -1
- package/dist/component/popup/popup.js +1 -2
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/language/i18n.js +20 -1
- package/package.json +1 -1
package/dist/language/i18n.js
CHANGED
|
@@ -60,6 +60,15 @@ const resources = {
|
|
|
60
60
|
loginTo: "Log in to",
|
|
61
61
|
signup: "Sign up",
|
|
62
62
|
signupFor: "Sign up for",
|
|
63
|
+
"start-date": "Start date",
|
|
64
|
+
"end-date": "End date",
|
|
65
|
+
reset: "Reset",
|
|
66
|
+
date: "Date",
|
|
67
|
+
on: "On",
|
|
68
|
+
daily: "Daily",
|
|
69
|
+
weekly: "Weekly",
|
|
70
|
+
monthly: "Monthly",
|
|
71
|
+
last: "Last",
|
|
63
72
|
},
|
|
64
73
|
},
|
|
65
74
|
vi: {
|
|
@@ -112,7 +121,16 @@ const resources = {
|
|
|
112
121
|
login: "Đăng nhập",
|
|
113
122
|
loginTo: "Đăng nhập vào",
|
|
114
123
|
signup: "Đăng ký",
|
|
115
|
-
signupFor: "Đăng ký"
|
|
124
|
+
signupFor: "Đăng ký",
|
|
125
|
+
"start-date": "Ngày bắt đầu",
|
|
126
|
+
"end-date": "Ngày kết thúc",
|
|
127
|
+
reset: "Mặc định",
|
|
128
|
+
date: "Ngày",
|
|
129
|
+
on: "Vào",
|
|
130
|
+
daily: "Hàng ngày",
|
|
131
|
+
weekly: "Hàng tuần",
|
|
132
|
+
monthly: "Hàng tháng",
|
|
133
|
+
last: "Cuối tháng",
|
|
116
134
|
},
|
|
117
135
|
},
|
|
118
136
|
};
|
|
@@ -121,6 +139,7 @@ i18next_1.default.use(react_i18next_1.initReactI18next).init({
|
|
|
121
139
|
resources,
|
|
122
140
|
lng: 'en', // Default language
|
|
123
141
|
fallbackLng: 'en', // Fallback language
|
|
142
|
+
// backend: {loadPath: "somevariables"},
|
|
124
143
|
interpolation: {
|
|
125
144
|
escapeValue: false, // React already escapes values
|
|
126
145
|
},
|