@romainbx/wpic-components 0.0.104 → 0.0.106
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/src/components/form/ChoiceList.vue.d.ts +4 -0
- package/dist/src/components/form/FormField.vue.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/wpic-components.js +4845 -4818
- package/dist/wpic-components.umd.cjs +35 -35
- package/locales/en.json +3 -2
- package/locales/ja.json +3 -2
- package/locales/ko.json +3 -2
- package/locales/zh-CN.json +3 -2
- package/package.json +1 -1
package/locales/en.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"wpiccomponents": {
|
|
3
3
|
"select_all": "Select all",
|
|
4
4
|
"select_none": "Select none",
|
|
5
5
|
"select_date": "Select date",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"pagination": "Results {start}-{end} of {total}",
|
|
12
12
|
"per_page": "{count} per page",
|
|
13
13
|
"cancel": "Cancel",
|
|
14
|
-
"confirm": "Confirm"
|
|
14
|
+
"confirm": "Confirm",
|
|
15
|
+
"summary_items": "{count} {type}"
|
|
15
16
|
}
|
|
16
17
|
}
|
package/locales/ja.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"wpiccomponents": {
|
|
3
3
|
"select_all": "すべて選択",
|
|
4
4
|
"select_none": "選択を解除",
|
|
5
5
|
"select_date": "日付を選択",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"pagination": "{total}件中{start}~{end}件",
|
|
12
12
|
"per_page": "1ページあたり{count}件",
|
|
13
13
|
"cancel": "キャンセル",
|
|
14
|
-
"confirm": "確認"
|
|
14
|
+
"confirm": "確認",
|
|
15
|
+
"summary_items": "{type}を{count}件"
|
|
15
16
|
}
|
|
16
17
|
}
|
package/locales/ko.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"wpiccomponents": {
|
|
3
3
|
"select_all": "전체 선택",
|
|
4
4
|
"select_none": "선택 해제",
|
|
5
5
|
"select_date": "날짜 선택",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"pagination": "{total}개 중 {start}~{end}번째",
|
|
12
12
|
"per_page": "페이지당 {count}개",
|
|
13
13
|
"cancel": "취소",
|
|
14
|
-
"confirm": "확인"
|
|
14
|
+
"confirm": "확인",
|
|
15
|
+
"summary_items": "{count}개의 {type}"
|
|
15
16
|
}
|
|
16
17
|
}
|
package/locales/zh-CN.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"wpiccomponents": {
|
|
3
3
|
"select_all": "全选",
|
|
4
4
|
"select_none": "取消全选",
|
|
5
5
|
"select_date": "选择日期",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"pagination": "第{start}到{end}条,共{total}条",
|
|
12
12
|
"per_page": "每页 {count} 条",
|
|
13
13
|
"cancel": "取消",
|
|
14
|
-
"confirm": "确认"
|
|
14
|
+
"confirm": "确认",
|
|
15
|
+
"summary_items": "{count}个{type}"
|
|
15
16
|
}
|
|
16
17
|
}
|