@blueking/date-picker 0.0.37 → 0.0.38
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/components/common-tab.vue.d.ts +1 -1
- package/dist/components/date-picker.vue.d.ts +2 -2
- package/dist/components/natural-picker.vue.d.ts +2 -2
- package/dist/components/panel-wrapper.vue.d.ts +3 -3
- package/dist/components/recent-picker.vue.d.ts +2 -2
- package/dist/components/timezone-picker.vue.d.ts +1 -1
- package/dist/date-picker.vue.d.ts +2 -2
- package/dist/vue2-full.es.js +10347 -10215
- package/dist/vue2-light.es.js +10909 -10798
- package/dist/vue2.d.ts +1 -1
- package/dist/vue3-full.es.js +7013 -6909
- package/dist/vue3-light.es.js +2 -3
- package/dist/vue3.d.ts +3 -3
- package/package.json +3 -3
- /package/dist/{typings → utils}/constant.d.ts +0 -0
- /package/dist/{typings → utils}/cookie.d.ts +0 -0
- /package/dist/{typings → utils}/date.d.ts +0 -0
- /package/dist/{typings → utils}/index.d.ts +0 -0
- /package/dist/{typings → utils}/store.d.ts +0 -0
- /package/dist/{typings → utils}/timezone.d.ts +0 -0
- /package/dist/{typings → utils}/types.d.ts +0 -0
- /package/dist/{typings → utils}/utils.d.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DateValue } from '../
|
|
2
|
-
import { DateRange } from '../
|
|
1
|
+
import { type DateValue } from '../utils';
|
|
2
|
+
import { DateRange } from '../utils/date';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
value: DateRange;
|
|
5
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DateValue } from '../
|
|
2
|
-
import { DateRange } from '../
|
|
3
|
-
import { ITimezoneItem } from '../
|
|
1
|
+
import { type DateValue } from '../utils';
|
|
2
|
+
import { DateRange } from '../utils/date';
|
|
3
|
+
import { type ITimezoneItem } from '../utils/timezone';
|
|
4
4
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
5
5
|
defaultDate: DateRange;
|
|
6
6
|
needTimezone?: boolean | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DateMode, FutureDateValue, RecentDateValue } from '../
|
|
2
|
-
import { DateRange } from '../
|
|
1
|
+
import { DateMode, type FutureDateValue, type RecentDateValue } from '../utils';
|
|
2
|
+
import { DateRange } from '../utils/date';
|
|
3
3
|
interface IProps {
|
|
4
4
|
type: DateMode.FUTURE | DateMode.RECENT;
|
|
5
5
|
value?: DateRange;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ITimezoneItem } from '../
|
|
1
|
+
import { type ITimezoneItem } from '../utils/timezone';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
value?: string | undefined;
|
|
4
4
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'bkui-vue/lib/styles/reset.css';
|
|
2
2
|
import dayjs from 'dayjs';
|
|
3
|
-
import { type DateValue, type IDatePickerProps } from './
|
|
4
|
-
import { ITimezoneItem } from './
|
|
3
|
+
import { type DateValue, type IDatePickerProps } from './utils';
|
|
4
|
+
import { type ITimezoneItem } from './utils/timezone';
|
|
5
5
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDatePickerProps>, {
|
|
6
6
|
behavior: string;
|
|
7
7
|
format: string;
|