@progress/kendo-vue-dateinputs 2.5.1-dev.202109301242 → 2.5.1-dev.202110051346

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.
Files changed (40) hide show
  1. package/dist/cdn/js/kendo-vue-dateinputs.js +1 -1
  2. package/dist/es/calendar/components/CalendarCell.d.ts +1 -0
  3. package/dist/es/calendar/components/CalendarHeaderTitle.d.ts +1 -0
  4. package/dist/es/calendar/components/Header.d.ts +2 -0
  5. package/dist/es/calendar/components/View.d.ts +2 -0
  6. package/dist/es/calendar/components/ViewList.d.ts +2 -0
  7. package/dist/es/calendar/components/interfaces/CalendarComputed.d.ts +1 -0
  8. package/dist/es/calendar/components/interfaces/CalendarMethods.d.ts +1 -0
  9. package/dist/es/dateinput/interfaces/DateInputComputed.d.ts +1 -0
  10. package/dist/es/dateinput/interfaces/DateInputMethods.d.ts +1 -0
  11. package/dist/es/datepicker/interfaces/DatePickerComputed.d.ts +1 -0
  12. package/dist/es/datepicker/interfaces/DatePickerMethods.d.ts +1 -0
  13. package/dist/es/datetimepicker/DateTimePicker.d.ts +2 -0
  14. package/dist/es/datetimepicker/DateTimeSelector.d.ts +2 -0
  15. package/dist/es/package-metadata.js +1 -1
  16. package/dist/es/timepicker/TimeList.d.ts +2 -0
  17. package/dist/es/timepicker/TimePart.d.ts +2 -0
  18. package/dist/es/timepicker/TimePicker.d.ts +2 -0
  19. package/dist/es/timepicker/TimeSelector.d.ts +2 -0
  20. package/dist/es/virtualization/Virtualization.d.ts +2 -0
  21. package/dist/npm/calendar/components/CalendarCell.d.ts +1 -0
  22. package/dist/npm/calendar/components/CalendarHeaderTitle.d.ts +1 -0
  23. package/dist/npm/calendar/components/Header.d.ts +2 -0
  24. package/dist/npm/calendar/components/View.d.ts +2 -0
  25. package/dist/npm/calendar/components/ViewList.d.ts +2 -0
  26. package/dist/npm/calendar/components/interfaces/CalendarComputed.d.ts +1 -0
  27. package/dist/npm/calendar/components/interfaces/CalendarMethods.d.ts +1 -0
  28. package/dist/npm/dateinput/interfaces/DateInputComputed.d.ts +1 -0
  29. package/dist/npm/dateinput/interfaces/DateInputMethods.d.ts +1 -0
  30. package/dist/npm/datepicker/interfaces/DatePickerComputed.d.ts +1 -0
  31. package/dist/npm/datepicker/interfaces/DatePickerMethods.d.ts +1 -0
  32. package/dist/npm/datetimepicker/DateTimePicker.d.ts +2 -0
  33. package/dist/npm/datetimepicker/DateTimeSelector.d.ts +2 -0
  34. package/dist/npm/package-metadata.js +1 -1
  35. package/dist/npm/timepicker/TimeList.d.ts +2 -0
  36. package/dist/npm/timepicker/TimePart.d.ts +2 -0
  37. package/dist/npm/timepicker/TimePicker.d.ts +2 -0
  38. package/dist/npm/timepicker/TimeSelector.d.ts +2 -0
  39. package/dist/npm/virtualization/Virtualization.d.ts +2 -0
  40. package/package.json +7 -7
@@ -15,6 +15,7 @@ export interface CalendarCellProps extends CellContext {
15
15
  * @hidden
16
16
  */
17
17
  export interface CalendarCellMethods {
18
+ [key: string]: any;
18
19
  handleClick?: (e: any) => void;
19
20
  handleMouseDown?: (e: any) => void;
20
21
  handleMouseEnter?: () => void;
@@ -15,6 +15,7 @@ export interface CalendarHeaderTitleProps {
15
15
  * @hidden
16
16
  */
17
17
  export interface CalendarHeaderTitleMethods {
18
+ [key: string]: any;
18
19
  handleClick: (e: any) => void;
19
20
  }
20
21
  /**
@@ -33,6 +33,7 @@ export interface HeaderProps {
33
33
  * @hidden
34
34
  */
35
35
  export interface HeaderMethods {
36
+ [key: string]: any;
36
37
  getTitle: () => string;
37
38
  handleTitleClick: (event: any) => void;
38
39
  handleTodayClick: (event: any) => void;
@@ -47,6 +48,7 @@ export interface HeaderMethods {
47
48
  * @hidden
48
49
  */
49
50
  export interface HeaderComputed {
51
+ [key: string]: any;
50
52
  navigate?: () => void;
51
53
  todayIsInRange?: () => boolean;
52
54
  }
@@ -61,6 +61,7 @@ export interface ViewProps {
61
61
  * @hidden
62
62
  */
63
63
  export interface ViewComputed {
64
+ [key: string]: any;
64
65
  isMonthView?: boolean;
65
66
  weekNumber?: boolean;
66
67
  isHorizontal?: boolean;
@@ -69,6 +70,7 @@ export interface ViewComputed {
69
70
  * @hidden
70
71
  */
71
72
  export interface ViewMethods {
73
+ [key: string]: any;
72
74
  buildWeekNumber: (row: any, idx: number) => void;
73
75
  buildRow: (row: any) => void;
74
76
  firstDate: (row: any) => any;
@@ -69,6 +69,7 @@ export interface ViewListState {
69
69
  * @hidden
70
70
  */
71
71
  export interface ViewListComputed {
72
+ [key: string]: any;
72
73
  weekNames?: string[];
73
74
  weekNumber?: boolean;
74
75
  animate?: boolean;
@@ -77,6 +78,7 @@ export interface ViewListComputed {
77
78
  * @hidden
78
79
  */
79
80
  export interface ViewListMethods {
81
+ [key: string]: any;
80
82
  blurActiveDate: () => void;
81
83
  focusActiveDate: (event: any) => void;
82
84
  handleCellEnter: (event: any) => void;
@@ -3,6 +3,7 @@ import { SelectionRangeEnd } from '../../models';
3
3
  * @hidden
4
4
  */
5
5
  export interface CalendarComputed {
6
+ [key: string]: any;
6
7
  activeRange?: SelectionRangeEnd;
7
8
  currentMin: Date;
8
9
  currentMax: Date;
@@ -4,6 +4,7 @@ import { ViewListEventArguments } from '../ViewList';
4
4
  * @hidden
5
5
  */
6
6
  export interface CalendarMethods {
7
+ [key: string]: any;
7
8
  computedValue: () => Date | Date[] | SelectionRange | null;
8
9
  focus: (event?: any) => void;
9
10
  handleTodayClick: (e: any) => void;
@@ -2,6 +2,7 @@
2
2
  * @hidden
3
3
  */
4
4
  export interface DateInputComputed {
5
+ [key: string]: any;
5
6
  computedValue: any;
6
7
  wrapperClassNames: object;
7
8
  }
@@ -5,6 +5,7 @@ import { Selection } from '../models';
5
5
  * @hidden
6
6
  */
7
7
  export interface DateInputMethods {
8
+ [key: string]: any;
8
9
  handleFocus?: (_: any) => void;
9
10
  handleBlur?: (_: any) => void;
10
11
  element: () => HTMLInputElement | null;
@@ -2,6 +2,7 @@
2
2
  * @hidden
3
3
  */
4
4
  export interface DatePickerComputed {
5
+ [key: string]: any;
5
6
  computedValue: Date | null;
6
7
  computedShow: boolean;
7
8
  wrapperClassNames: object;
@@ -5,6 +5,7 @@ import { DatePickerState } from './DatePickerState';
5
5
  * @hidden
6
6
  */
7
7
  export interface DatePickerMethods {
8
+ [key: string]: any;
8
9
  emitBlur?: (_: any) => void;
9
10
  validity: () => FormComponentValidity;
10
11
  nextValue: (nextProps: DatePickerProps, nextState: DatePickerState) => any;
@@ -72,6 +72,7 @@ export interface DateTimePickerState {
72
72
  * @hidden
73
73
  */
74
74
  export interface DateTimePickerComputed {
75
+ [key: string]: any;
75
76
  computedValue: Date | null;
76
77
  computedShow: boolean;
77
78
  }
@@ -79,6 +80,7 @@ export interface DateTimePickerComputed {
79
80
  * @hidden
80
81
  */
81
82
  export interface DateTimePickerMethods {
83
+ [key: string]: any;
82
84
  validity: () => FormComponentValidity;
83
85
  focus: () => void;
84
86
  setShow: (show: boolean) => void;
@@ -63,6 +63,7 @@ export interface DateTimeSelectorState {
63
63
  * @hidden
64
64
  */
65
65
  export interface DateTimeSelectorComputed {
66
+ [key: string]: any;
66
67
  hasDateValue: boolean;
67
68
  computedMinTime: Date | null;
68
69
  computedMaxTime: Date | null;
@@ -71,6 +72,7 @@ export interface DateTimeSelectorComputed {
71
72
  * @hidden
72
73
  */
73
74
  export interface DateTimeSelectorMethods {
75
+ [key: string]: any;
74
76
  focus: (args?: any) => void;
75
77
  calendarElement: () => any;
76
78
  normalizeRange: (candidate: Date, value: Date | null) => Date | null;
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-dateinputs',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1633005442,
8
+ publishDate: 1633441296,
9
9
  version: '',
10
10
  licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
11
11
  };
@@ -46,6 +46,7 @@ export interface TimeListState {
46
46
  * @hidden
47
47
  */
48
48
  export interface TimeListComputed {
49
+ [key: string]: any;
49
50
  animate: boolean;
50
51
  }
51
52
  /**
@@ -58,6 +59,7 @@ export interface TimeListData {
58
59
  * @hidden
59
60
  */
60
61
  export interface TimeListMethods {
62
+ [key: string]: any;
61
63
  focus: (args?: any) => void;
62
64
  itemOffset: (scrollTop: number) => number;
63
65
  calculateHeights: () => void;
@@ -58,6 +58,7 @@ export interface TimePartData {
58
58
  * @hidden
59
59
  */
60
60
  export interface TimePartComputed {
61
+ [key: string]: any;
61
62
  element: HTMLSpanElement | null;
62
63
  computedValue: Date;
63
64
  intl: IntlService;
@@ -68,6 +69,7 @@ export interface TimePartComputed {
68
69
  * @hidden
69
70
  */
70
71
  export interface TimePartMethods {
72
+ [key: string]: any;
71
73
  focus: (args?: any) => void;
72
74
  timeFormatReducer: (acc: string, current: DateFormatPart) => any;
73
75
  timeFormatFilter: (part: DateFormatPart, index: number, all: DateFormatPart[]) => boolean;
@@ -63,6 +63,7 @@ export interface TimePickerState {
63
63
  * @hidden
64
64
  */
65
65
  export interface TimePickerMethods {
66
+ [key: string]: any;
66
67
  validity: () => FormComponentValidity;
67
68
  focus: () => void;
68
69
  setDateInputRef: (dateInput: any) => void;
@@ -97,6 +98,7 @@ export interface TimePickerData {
97
98
  * @hidden
98
99
  */
99
100
  export interface TimePickerComputed {
101
+ [key: string]: any;
100
102
  timeSelector: any;
101
103
  computedValue: Date | null;
102
104
  computedShow: boolean;
@@ -61,6 +61,7 @@ export interface TimeSelectorData {
61
61
  * @hidden
62
62
  */
63
63
  export interface TimeSelectorMethods {
64
+ [key: string]: any;
64
65
  focusActiveList: () => void;
65
66
  hasActiveButton: () => any;
66
67
  handleKeyDown: (event: any) => void;
@@ -75,6 +76,7 @@ export interface TimeSelectorMethods {
75
76
  * @hidden
76
77
  */
77
78
  export interface TimeSelectorComputed {
79
+ [key: string]: any;
78
80
  computedValue: Date | null;
79
81
  intl: IntlService;
80
82
  current: Date | null;
@@ -50,6 +50,7 @@ export interface VirtualizationData {
50
50
  * @hidden
51
51
  */
52
52
  export interface VirtualizationMethods {
53
+ [key: string]: any;
53
54
  activeIndex: () => number;
54
55
  itemIndex: (offset: number) => number;
55
56
  itemOffset: (index: number) => number;
@@ -76,6 +77,7 @@ export interface VirtualizationMethods {
76
77
  * @hidden
77
78
  */
78
79
  export interface VirtualizationComputed {
80
+ [key: string]: any;
79
81
  element: HTMLDivElement | null;
80
82
  }
81
83
  /**
@@ -15,6 +15,7 @@ export interface CalendarCellProps extends CellContext {
15
15
  * @hidden
16
16
  */
17
17
  export interface CalendarCellMethods {
18
+ [key: string]: any;
18
19
  handleClick?: (e: any) => void;
19
20
  handleMouseDown?: (e: any) => void;
20
21
  handleMouseEnter?: () => void;
@@ -15,6 +15,7 @@ export interface CalendarHeaderTitleProps {
15
15
  * @hidden
16
16
  */
17
17
  export interface CalendarHeaderTitleMethods {
18
+ [key: string]: any;
18
19
  handleClick: (e: any) => void;
19
20
  }
20
21
  /**
@@ -33,6 +33,7 @@ export interface HeaderProps {
33
33
  * @hidden
34
34
  */
35
35
  export interface HeaderMethods {
36
+ [key: string]: any;
36
37
  getTitle: () => string;
37
38
  handleTitleClick: (event: any) => void;
38
39
  handleTodayClick: (event: any) => void;
@@ -47,6 +48,7 @@ export interface HeaderMethods {
47
48
  * @hidden
48
49
  */
49
50
  export interface HeaderComputed {
51
+ [key: string]: any;
50
52
  navigate?: () => void;
51
53
  todayIsInRange?: () => boolean;
52
54
  }
@@ -61,6 +61,7 @@ export interface ViewProps {
61
61
  * @hidden
62
62
  */
63
63
  export interface ViewComputed {
64
+ [key: string]: any;
64
65
  isMonthView?: boolean;
65
66
  weekNumber?: boolean;
66
67
  isHorizontal?: boolean;
@@ -69,6 +70,7 @@ export interface ViewComputed {
69
70
  * @hidden
70
71
  */
71
72
  export interface ViewMethods {
73
+ [key: string]: any;
72
74
  buildWeekNumber: (row: any, idx: number) => void;
73
75
  buildRow: (row: any) => void;
74
76
  firstDate: (row: any) => any;
@@ -69,6 +69,7 @@ export interface ViewListState {
69
69
  * @hidden
70
70
  */
71
71
  export interface ViewListComputed {
72
+ [key: string]: any;
72
73
  weekNames?: string[];
73
74
  weekNumber?: boolean;
74
75
  animate?: boolean;
@@ -77,6 +78,7 @@ export interface ViewListComputed {
77
78
  * @hidden
78
79
  */
79
80
  export interface ViewListMethods {
81
+ [key: string]: any;
80
82
  blurActiveDate: () => void;
81
83
  focusActiveDate: (event: any) => void;
82
84
  handleCellEnter: (event: any) => void;
@@ -3,6 +3,7 @@ import { SelectionRangeEnd } from '../../models';
3
3
  * @hidden
4
4
  */
5
5
  export interface CalendarComputed {
6
+ [key: string]: any;
6
7
  activeRange?: SelectionRangeEnd;
7
8
  currentMin: Date;
8
9
  currentMax: Date;
@@ -4,6 +4,7 @@ import { ViewListEventArguments } from '../ViewList';
4
4
  * @hidden
5
5
  */
6
6
  export interface CalendarMethods {
7
+ [key: string]: any;
7
8
  computedValue: () => Date | Date[] | SelectionRange | null;
8
9
  focus: (event?: any) => void;
9
10
  handleTodayClick: (e: any) => void;
@@ -2,6 +2,7 @@
2
2
  * @hidden
3
3
  */
4
4
  export interface DateInputComputed {
5
+ [key: string]: any;
5
6
  computedValue: any;
6
7
  wrapperClassNames: object;
7
8
  }
@@ -5,6 +5,7 @@ import { Selection } from '../models';
5
5
  * @hidden
6
6
  */
7
7
  export interface DateInputMethods {
8
+ [key: string]: any;
8
9
  handleFocus?: (_: any) => void;
9
10
  handleBlur?: (_: any) => void;
10
11
  element: () => HTMLInputElement | null;
@@ -2,6 +2,7 @@
2
2
  * @hidden
3
3
  */
4
4
  export interface DatePickerComputed {
5
+ [key: string]: any;
5
6
  computedValue: Date | null;
6
7
  computedShow: boolean;
7
8
  wrapperClassNames: object;
@@ -5,6 +5,7 @@ import { DatePickerState } from './DatePickerState';
5
5
  * @hidden
6
6
  */
7
7
  export interface DatePickerMethods {
8
+ [key: string]: any;
8
9
  emitBlur?: (_: any) => void;
9
10
  validity: () => FormComponentValidity;
10
11
  nextValue: (nextProps: DatePickerProps, nextState: DatePickerState) => any;
@@ -72,6 +72,7 @@ export interface DateTimePickerState {
72
72
  * @hidden
73
73
  */
74
74
  export interface DateTimePickerComputed {
75
+ [key: string]: any;
75
76
  computedValue: Date | null;
76
77
  computedShow: boolean;
77
78
  }
@@ -79,6 +80,7 @@ export interface DateTimePickerComputed {
79
80
  * @hidden
80
81
  */
81
82
  export interface DateTimePickerMethods {
83
+ [key: string]: any;
82
84
  validity: () => FormComponentValidity;
83
85
  focus: () => void;
84
86
  setShow: (show: boolean) => void;
@@ -63,6 +63,7 @@ export interface DateTimeSelectorState {
63
63
  * @hidden
64
64
  */
65
65
  export interface DateTimeSelectorComputed {
66
+ [key: string]: any;
66
67
  hasDateValue: boolean;
67
68
  computedMinTime: Date | null;
68
69
  computedMaxTime: Date | null;
@@ -71,6 +72,7 @@ export interface DateTimeSelectorComputed {
71
72
  * @hidden
72
73
  */
73
74
  export interface DateTimeSelectorMethods {
75
+ [key: string]: any;
74
76
  focus: (args?: any) => void;
75
77
  calendarElement: () => any;
76
78
  normalizeRange: (candidate: Date, value: Date | null) => Date | null;
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-dateinputs',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1633005442,
11
+ publishDate: 1633441296,
12
12
  version: '',
13
13
  licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
14
14
  };
@@ -46,6 +46,7 @@ export interface TimeListState {
46
46
  * @hidden
47
47
  */
48
48
  export interface TimeListComputed {
49
+ [key: string]: any;
49
50
  animate: boolean;
50
51
  }
51
52
  /**
@@ -58,6 +59,7 @@ export interface TimeListData {
58
59
  * @hidden
59
60
  */
60
61
  export interface TimeListMethods {
62
+ [key: string]: any;
61
63
  focus: (args?: any) => void;
62
64
  itemOffset: (scrollTop: number) => number;
63
65
  calculateHeights: () => void;
@@ -58,6 +58,7 @@ export interface TimePartData {
58
58
  * @hidden
59
59
  */
60
60
  export interface TimePartComputed {
61
+ [key: string]: any;
61
62
  element: HTMLSpanElement | null;
62
63
  computedValue: Date;
63
64
  intl: IntlService;
@@ -68,6 +69,7 @@ export interface TimePartComputed {
68
69
  * @hidden
69
70
  */
70
71
  export interface TimePartMethods {
72
+ [key: string]: any;
71
73
  focus: (args?: any) => void;
72
74
  timeFormatReducer: (acc: string, current: DateFormatPart) => any;
73
75
  timeFormatFilter: (part: DateFormatPart, index: number, all: DateFormatPart[]) => boolean;
@@ -63,6 +63,7 @@ export interface TimePickerState {
63
63
  * @hidden
64
64
  */
65
65
  export interface TimePickerMethods {
66
+ [key: string]: any;
66
67
  validity: () => FormComponentValidity;
67
68
  focus: () => void;
68
69
  setDateInputRef: (dateInput: any) => void;
@@ -97,6 +98,7 @@ export interface TimePickerData {
97
98
  * @hidden
98
99
  */
99
100
  export interface TimePickerComputed {
101
+ [key: string]: any;
100
102
  timeSelector: any;
101
103
  computedValue: Date | null;
102
104
  computedShow: boolean;
@@ -61,6 +61,7 @@ export interface TimeSelectorData {
61
61
  * @hidden
62
62
  */
63
63
  export interface TimeSelectorMethods {
64
+ [key: string]: any;
64
65
  focusActiveList: () => void;
65
66
  hasActiveButton: () => any;
66
67
  handleKeyDown: (event: any) => void;
@@ -75,6 +76,7 @@ export interface TimeSelectorMethods {
75
76
  * @hidden
76
77
  */
77
78
  export interface TimeSelectorComputed {
79
+ [key: string]: any;
78
80
  computedValue: Date | null;
79
81
  intl: IntlService;
80
82
  current: Date | null;
@@ -50,6 +50,7 @@ export interface VirtualizationData {
50
50
  * @hidden
51
51
  */
52
52
  export interface VirtualizationMethods {
53
+ [key: string]: any;
53
54
  activeIndex: () => number;
54
55
  itemIndex: (offset: number) => number;
55
56
  itemOffset: (index: number) => number;
@@ -76,6 +77,7 @@ export interface VirtualizationMethods {
76
77
  * @hidden
77
78
  */
78
79
  export interface VirtualizationComputed {
80
+ [key: string]: any;
79
81
  element: HTMLDivElement | null;
80
82
  }
81
83
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-dateinputs",
3
3
  "description": "Kendo UI for Vue Date Inputs package",
4
- "version": "2.5.1-dev.202109301242",
4
+ "version": "2.5.1-dev.202110051346",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -46,16 +46,16 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@progress/kendo-date-math": "1.5.1",
49
- "@progress/kendo-vue-buttons": "2.5.1-dev.202109301242",
50
- "@progress/kendo-vue-common": "2.5.1-dev.202109301242",
51
- "@progress/kendo-vue-labels": "2.5.1-dev.202109301242",
52
- "@progress/kendo-vue-popup": "2.5.1-dev.202109301242"
49
+ "@progress/kendo-vue-buttons": "2.5.1-dev.202110051346",
50
+ "@progress/kendo-vue-common": "2.5.1-dev.202110051346",
51
+ "@progress/kendo-vue-labels": "2.5.1-dev.202110051346",
52
+ "@progress/kendo-vue-popup": "2.5.1-dev.202110051346"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@progress/kendo-data-query": "^1.5.4",
56
56
  "@progress/kendo-licensing": "^1.1.0",
57
- "@progress/kendo-vue-dropdowns": "2.5.1-dev.202109301242",
58
- "@progress/kendo-vue-intl": "2.5.1-dev.202109301242"
57
+ "@progress/kendo-vue-dropdowns": "2.5.1-dev.202110051346",
58
+ "@progress/kendo-vue-intl": "2.5.1-dev.202110051346"
59
59
  },
60
60
  "author": "Progress",
61
61
  "license": "SEE LICENSE IN LICENSE.md",