@blueking/date-picker 0.0.55 → 0.0.57
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/lang/lang.d.ts +2 -1
- package/dist/vue2-full.es.js +537 -528
- package/dist/vue2-light.es.js +55 -46
- package/dist/vue3-full.es.js +4503 -4494
- package/dist/vue3-light.es.js +384 -378
- package/package.json +2 -2
package/dist/lang/lang.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export declare const shortTimeUnitLangData: {
|
|
|
34
34
|
};
|
|
35
35
|
export declare const langData: {
|
|
36
36
|
readonly 前: "Previous";
|
|
37
|
+
readonly 取消: "Cancel";
|
|
37
38
|
readonly 将来: "Future";
|
|
38
39
|
readonly 常用时间: "Common";
|
|
39
40
|
readonly 开始时间: "Start Time";
|
|
@@ -69,6 +70,6 @@ export type TimeUnitDateKey = keyof typeof timeUnitLangData;
|
|
|
69
70
|
export type ShortTimeUnitDateKey = keyof typeof shortTimeUnitLangData;
|
|
70
71
|
export type LangKey = keyof typeof langData;
|
|
71
72
|
export type LangValue = (typeof langData)[LangKey];
|
|
72
|
-
export declare const langValueMap: Record<LangValue, "前" | "将来" | "常用时间" | "开始时间" | "开始时间不能大于结束时间" | "支持多种时间格式自动转换" | "整" | "无匹配数据" | "日期选择" | "时区设置" | "时间格式支持" | "是否清空最近使用?" | "暂无常用时间" | "暂无最近使用记录" | "最近" | "最近使用" | "未来" | "查看支持格式" | "格式" | "此刻" | "浏览器时间" | "确定" | "示例" | "结束时间" | "自然日期" | "至今" | "请输入" | "请输入搜索(国家,城市,简称)" | "近" | "(至今)">;
|
|
73
|
+
export declare const langValueMap: Record<LangValue, "前" | "取消" | "将来" | "常用时间" | "开始时间" | "开始时间不能大于结束时间" | "支持多种时间格式自动转换" | "整" | "无匹配数据" | "日期选择" | "时区设置" | "时间格式支持" | "是否清空最近使用?" | "暂无常用时间" | "暂无最近使用记录" | "最近" | "最近使用" | "未来" | "查看支持格式" | "格式" | "此刻" | "浏览器时间" | "确定" | "示例" | "结束时间" | "自然日期" | "至今" | "请输入" | "请输入搜索(国家,城市,简称)" | "近" | "(至今)">;
|
|
73
74
|
export declare const lang: string;
|
|
74
75
|
export declare const t: (key: LangKey | NaturalDateKey | ShortTimeUnitDateKey | TimeUnitDateKey) => string;
|