@v-c/picker 1.2.1 → 1.2.2
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/PickerInput/Popup/index.d.ts +1 -1
- package/dist/PickerInput/RangePicker.d.ts +1 -1
- package/dist/PickerInput/Selector/Icon.d.ts +1 -1
- package/dist/PickerInput/Selector/RangeSelector.d.ts +1 -1
- package/dist/PickerInput/Selector/SingleSelector/MultipleDates.d.ts +1 -1
- package/dist/PickerInput/Selector/hooks/useClearIcon.d.ts +1 -1
- package/dist/PickerInput/Selector/hooks/useInputHooks.d.ts +1 -1
- package/dist/PickerPanel/index.d.ts +1 -1
- package/dist/PickerTrigger/index.d.ts +1 -1
- package/dist/interface.d.ts +2 -2
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MouseEventHandler } from '
|
|
1
|
+
import { MouseEventHandler } from '@v-c/util/dist/EventInterface';
|
|
2
2
|
import { InputHTMLAttributes } from 'vue';
|
|
3
3
|
import { RangeTimeProps, SharedPickerProps, SharedTimeProps, ValueDate } from '../../interface';
|
|
4
4
|
import { FooterProps } from './Footer';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VueNode } from '
|
|
1
|
+
import { VueNode } from '@v-c/util/dist/type';
|
|
2
2
|
import { BaseInfo, PanelMode, RangeTimeProps, SharedPickerProps, ValueDate } from '../interface';
|
|
3
3
|
import { SelectorIdType } from './Selector/RangeSelector';
|
|
4
4
|
export interface BaseRangePickerProps<DateType extends object> extends Omit<SharedPickerProps<DateType>, 'showTime' | 'id'> {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VueNode } from '
|
|
1
|
+
import { VueNode } from '@v-c/util/dist/type';
|
|
2
2
|
import { CSSProperties, HTMLAttributes } from 'vue';
|
|
3
3
|
import { CellRender, Components, Locale, OnPanelChange, PanelMode, PanelSemanticName, PickerMode, SharedPanelProps, SharedTimeProps } from '../interface';
|
|
4
4
|
export interface PickerPanelRef {
|
package/dist/interface.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AlignType, BuildInPlacements } from '
|
|
2
|
-
import { VueNode } from '
|
|
1
|
+
import { AlignType, BuildInPlacements } from '@v-c/trigger';
|
|
2
|
+
import { VueNode } from '@v-c/util/dist/type';
|
|
3
3
|
import { CSSProperties, DefineComponent, HTMLAttributes, InputHTMLAttributes, VNode } from 'vue';
|
|
4
4
|
import { GenerateConfig } from './generate';
|
|
5
5
|
export type NullableDateType<DateType> = DateType | null | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@v-c/picker",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.2",
|
|
5
5
|
"description": "picker ui component for vue",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -77,10 +77,10 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@v-c/
|
|
81
|
-
"@v-c/
|
|
82
|
-
"@v-c/trigger": "^1.0.
|
|
83
|
-
"@v-c/
|
|
80
|
+
"@v-c/util": "^1.0.21",
|
|
81
|
+
"@v-c/resize-observer": "^1.1.3",
|
|
82
|
+
"@v-c/trigger": "^1.0.18",
|
|
83
|
+
"@v-c/overflow": "^1.1.1"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@types/luxon": "^3.7.2"
|