@blueking/date-picker 2.0.0-beta.42 → 2.0.0-beta.43
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/package.json +1 -1
- package/typings/lang/lang.d.ts +2 -1
- package/vue2/index.es.min.js +607 -463
- package/vue2/index.iife.min.js +588 -444
- package/vue2/index.umd.min.js +588 -444
- package/vue2/vue2.css +8 -6
- package/vue3/index.es.min.js +19 -43
- package/vue3/index.iife.min.js +588 -444
- package/vue3/index.umd.min.js +19 -43
- package/vue3/vue3.css +8 -6
package/package.json
CHANGED
package/typings/lang/lang.d.ts
CHANGED
|
@@ -75,12 +75,13 @@ export declare const langData: {
|
|
|
75
75
|
readonly '\uFF0C\u65E0\u6CD5\u9009\u62E9': ", cannot be selected";
|
|
76
76
|
readonly 时间范围不能小于: "Time range cannot be less than";
|
|
77
77
|
readonly 时间范围不能大于: "Time range cannot be greater than";
|
|
78
|
+
readonly 时间格式转换: "Time format conversion";
|
|
78
79
|
};
|
|
79
80
|
export type NaturalDateKey = keyof typeof naturalDateLangData;
|
|
80
81
|
export type TimeUnitDateKey = keyof typeof timeUnitLangData;
|
|
81
82
|
export type ShortTimeUnitDateKey = keyof typeof shortTimeUnitLangData;
|
|
82
83
|
export type LangKey = keyof typeof langData;
|
|
83
84
|
export type LangValue = (typeof langData)[LangKey];
|
|
84
|
-
export declare const langValueMap: Record<LangValue, "前" | "取消" | "将来" | "常用时间" | "开始时间" | "开始时间不能大于结束时间" | "支持多种时间格式自动转换" | "整" | "无匹配数据" | "日期选择" | "时区设置" | "时差:早 $n 小时" | "时差:晚 $n 小时" | "时间格式支持" | "是否清空最近使用?" | "暂无常用时间" | "暂无最近使用记录" | "最近" | "最近使用" | "未来" | "查看支持格式" | "格式" | "此刻" | "浏览器时区" | "的最近" | "确定" | "示例" | "结束时间" | "自然日期" | "至今" | "请输入" | "请输入搜索(国家,城市,简称)" | "超出可选范围" | "近" | "(至今)" | ",无法选择" | "时间范围不能小于" | "时间范围不能大于">;
|
|
85
|
+
export declare const langValueMap: Record<LangValue, "前" | "取消" | "将来" | "常用时间" | "开始时间" | "开始时间不能大于结束时间" | "支持多种时间格式自动转换" | "整" | "无匹配数据" | "日期选择" | "时区设置" | "时差:早 $n 小时" | "时差:晚 $n 小时" | "时间格式支持" | "是否清空最近使用?" | "暂无常用时间" | "暂无最近使用记录" | "最近" | "最近使用" | "未来" | "查看支持格式" | "格式" | "此刻" | "浏览器时区" | "的最近" | "确定" | "示例" | "结束时间" | "自然日期" | "至今" | "请输入" | "请输入搜索(国家,城市,简称)" | "超出可选范围" | "近" | "(至今)" | ",无法选择" | "时间范围不能小于" | "时间范围不能大于" | "时间格式转换">;
|
|
85
86
|
export declare const lang: string;
|
|
86
87
|
export declare const t: (key: LangKey | NaturalDateKey | ShortTimeUnitDateKey | TimeUnitDateKey) => string;
|