@blueking/date-picker 3.0.5 → 3.0.7
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 +2 -2
- package/typings/utils/date.d.ts +1 -1
- package/vue2/index.es.min.js +104 -200
- package/vue2/index.iife.min.js +104 -200
- package/vue2/index.umd.min.js +104 -200
- package/vue3/index.es.min.js +8 -8
- package/vue3/index.iife.min.js +104 -200
- package/vue3/index.umd.min.js +8 -8
package/package.json
CHANGED
package/typings/utils/date.d.ts
CHANGED
|
@@ -57,6 +57,6 @@ export declare class DateRange {
|
|
|
57
57
|
}
|
|
58
58
|
export declare const transformValue2Dayjs: (val: DateValue[number], type?: "end" | "start", timezone?: string) => dayjs.Dayjs | undefined;
|
|
59
59
|
export declare const transformDateRange2Dayjs: (dateValue: DateValue, timezone?: string) => (dayjs.Dayjs | undefined)[];
|
|
60
|
-
export declare const inputVal2Dayjs: (val: string, format: string, defaultDate?: Dayjs) => dayjs.Dayjs;
|
|
60
|
+
export declare const inputVal2Dayjs: (val: string, format: string, defaultDate?: Dayjs, timezone?: string) => dayjs.Dayjs;
|
|
61
61
|
export declare function getTimezoneOffset(timezone: string): number;
|
|
62
62
|
export declare const isValidTimeZone: (timeZone: string) => boolean;
|