@factoringplus/pl-components-pack-v3 1.2.2-pre-01 → 1.2.2-pre-02
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/README.md +17 -17
- package/dist/components/pl-date-picker-plus/common/components/PlDatePickerRangeWrapper.vue.d.ts +16 -5
- package/dist/components/pl-date-picker-plus/common/components/PlDatePickerWrapper.vue.d.ts +12 -3
- package/dist/components/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +18 -8
- package/dist/components/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +23 -5
- package/dist/components/pl-input-plus/pl-input-plus.vue.d.ts +1 -1
- package/dist/components/pl-tab-pane/pl-tab-pane.vue.d.ts +3 -0
- package/dist/components/pl-tab-pane/types/index.d.ts +1 -0
- package/dist/components/pl-tabs/components/pl-tab.vue.d.ts +4 -0
- package/dist/pl-components-pack-v3.es.js +11214 -11299
- package/dist/pl-components-pack-v3.umd.js +35 -35
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/pl-date-picker-plus/common/types/index.d.ts +0 -50
- package/dist/components/pl-date-picker-plus/common/utils/changeDropDownDirection.d.ts +0 -5
- package/dist/components/pl-date-picker-plus/common/utils/wrapperFunctions.d.ts +0 -14
package/package.json
CHANGED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
declare type Item = {
|
|
2
|
-
day: number;
|
|
3
|
-
month: number;
|
|
4
|
-
year: number;
|
|
5
|
-
type?: string;
|
|
6
|
-
};
|
|
7
|
-
declare interface IDefaultPickerProps {
|
|
8
|
-
width?: string;
|
|
9
|
-
placeholder?: string;
|
|
10
|
-
label?: string;
|
|
11
|
-
optional?: string;
|
|
12
|
-
helpertext?: string;
|
|
13
|
-
tooltip?: string;
|
|
14
|
-
showInput?: boolean;
|
|
15
|
-
monthSwitch?: boolean;
|
|
16
|
-
yearSwitch?: boolean;
|
|
17
|
-
prop?: string;
|
|
18
|
-
clearable?: boolean;
|
|
19
|
-
disabledDate?: Function;
|
|
20
|
-
disabled?: boolean;
|
|
21
|
-
disableTeleport?: boolean;
|
|
22
|
-
}
|
|
23
|
-
declare interface IPickerProps extends IDefaultPickerProps {
|
|
24
|
-
modelValue: string | null;
|
|
25
|
-
}
|
|
26
|
-
declare interface IPickerRangeProps extends IDefaultPickerProps {
|
|
27
|
-
modelValue: string[] | null;
|
|
28
|
-
focusOnReset?: boolean;
|
|
29
|
-
periods?: boolean;
|
|
30
|
-
periodOptions?: string[];
|
|
31
|
-
}
|
|
32
|
-
declare interface IDefaultWrapperProps {
|
|
33
|
-
isOpen: boolean;
|
|
34
|
-
dateValue: string;
|
|
35
|
-
idProp: string;
|
|
36
|
-
mobile?: boolean;
|
|
37
|
-
inputElement?: HTMLElement;
|
|
38
|
-
monthSwitch?: boolean;
|
|
39
|
-
yearSwitch?: boolean;
|
|
40
|
-
disabledDate?: Function;
|
|
41
|
-
}
|
|
42
|
-
declare interface IWrapperRangeProps extends IDefaultWrapperProps {
|
|
43
|
-
modelValue: string[] | null;
|
|
44
|
-
periods?: boolean;
|
|
45
|
-
periodOptions?: string[];
|
|
46
|
-
}
|
|
47
|
-
declare interface IWrapperProps extends IDefaultWrapperProps {
|
|
48
|
-
modelValue: string | null;
|
|
49
|
-
}
|
|
50
|
-
export { Item, IPickerProps, IPickerRangeProps, IWrapperRangeProps, IWrapperProps };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import dayjs, { Dayjs } from 'dayjs';
|
|
2
|
-
import { Item } from '../types';
|
|
3
|
-
declare const WEEK_DAYS: string[];
|
|
4
|
-
declare const isCurrentDate: (item: Item) => boolean;
|
|
5
|
-
declare const isDisabledDate: (item: Item, disabledDate: Function) => any;
|
|
6
|
-
declare const dayjsFormat: (value: Item) => Dayjs;
|
|
7
|
-
declare const capitalize: (value: string) => string;
|
|
8
|
-
declare const switchPrevMonth: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
9
|
-
declare const switchNextMonth: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
10
|
-
declare const switchPrevYear: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
11
|
-
declare const switchNextYear: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
12
|
-
declare const isCurrentItem: (item: Item, disabledDate: Function) => boolean;
|
|
13
|
-
declare const getArrayOfDays: (date: Dayjs) => Item[];
|
|
14
|
-
export { WEEK_DAYS, isCurrentDate, isDisabledDate, dayjsFormat, capitalize, switchPrevMonth, switchNextMonth, switchPrevYear, switchNextYear, isCurrentItem, getArrayOfDays, };
|