@progress/kendo-vue-dateinputs 6.1.0-develop.6 → 6.1.0-develop.8
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/index.d.mts +34 -25
- package/index.d.ts +34 -25
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +8 -8
package/index.d.mts
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
import { ComponentOptionsMixin } from 'vue';
|
|
9
9
|
import { ComponentProvideOptions } from 'vue';
|
|
10
10
|
import { DateFormatOptions } from '@progress/kendo-vue-intl';
|
|
11
|
+
import { DateInputFormatPlaceholder as DateInputFormatPlaceholder_2 } from '..';
|
|
12
|
+
import { DateInputIncrementalSteps as DateInputIncrementalSteps_2 } from './models/incremental-steps';
|
|
13
|
+
import { DateInputsPopupSettings } from '../PopupSettings';
|
|
14
|
+
import { DateRangePickerCalendarSettings as DateRangePickerCalendarSettings_2 } from './models/DateRangePickerCalendarSettings';
|
|
15
|
+
import { DateRangePickerDateInputSettings as DateRangePickerDateInputSettings_2 } from './models/DateRangePickerDateInputSettings';
|
|
16
|
+
import { DateRangePickerPopupSettings as DateRangePickerPopupSettings_2 } from './models/DateRangePickerPopupSettings';
|
|
11
17
|
import { DefineComponent } from 'vue';
|
|
12
18
|
import { ExtractPropTypes } from 'vue';
|
|
13
19
|
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
@@ -18,7 +24,10 @@ import { PopupSettings } from '@progress/kendo-vue-popup';
|
|
|
18
24
|
import { PropType } from 'vue';
|
|
19
25
|
import { PublicProps } from 'vue';
|
|
20
26
|
import { Ref } from 'vue';
|
|
27
|
+
import { SelectionRangeEnd } from '../models/SelectionRangeEnd';
|
|
21
28
|
import { SVGIcon } from '@progress/kendo-vue-common';
|
|
29
|
+
import { TimePickerIncrementalSteps } from './models/IncrementalSteps';
|
|
30
|
+
import { TimePickerIncrementalSteps as TimePickerIncrementalSteps_3 } from '../timepicker/models/IncrementalSteps';
|
|
22
31
|
|
|
23
32
|
/**
|
|
24
33
|
* The literal type that defines all possible Calendar views.
|
|
@@ -307,7 +316,7 @@ export declare interface CalendarChangeEvent {
|
|
|
307
316
|
*/
|
|
308
317
|
declare interface CalendarComputed {
|
|
309
318
|
[key: string]: any;
|
|
310
|
-
activeRange?:
|
|
319
|
+
activeRange?: SelectionRangeEnd_2;
|
|
311
320
|
currentMin: Date;
|
|
312
321
|
currentMax: Date;
|
|
313
322
|
}
|
|
@@ -359,7 +368,7 @@ export declare interface CalendarProps extends CalendarSettings {
|
|
|
359
368
|
*
|
|
360
369
|
* > If the selection range is undefined, the value is ignored.
|
|
361
370
|
*/
|
|
362
|
-
activeRangeEnd?:
|
|
371
|
+
activeRangeEnd?: SelectionRangeEnd_2;
|
|
363
372
|
/**
|
|
364
373
|
* If set to `true`, the component skips the validation of whether the `from` value is after the `to` value.
|
|
365
374
|
*/
|
|
@@ -608,7 +617,7 @@ validator: (value: string) => any;
|
|
|
608
617
|
};
|
|
609
618
|
tabIndex: PropType<number>;
|
|
610
619
|
title: PropType<string>;
|
|
611
|
-
steps: PropType<
|
|
620
|
+
steps: PropType<DateInputIncrementalSteps_2>;
|
|
612
621
|
placeholder: PropType<string>;
|
|
613
622
|
max: {
|
|
614
623
|
type: PropType<Date>;
|
|
@@ -742,7 +751,7 @@ validator: (value: string) => any;
|
|
|
742
751
|
};
|
|
743
752
|
tabIndex: PropType<number>;
|
|
744
753
|
title: PropType<string>;
|
|
745
|
-
steps: PropType<
|
|
754
|
+
steps: PropType<DateInputIncrementalSteps_2>;
|
|
746
755
|
placeholder: PropType<string>;
|
|
747
756
|
max: {
|
|
748
757
|
type: PropType<Date>;
|
|
@@ -1076,7 +1085,7 @@ export declare interface DateInputSettings {
|
|
|
1076
1085
|
inputAttributes?: Object;
|
|
1077
1086
|
}
|
|
1078
1087
|
|
|
1079
|
-
declare interface
|
|
1088
|
+
declare interface DateInputsPopupSettings_2 {
|
|
1080
1089
|
/**
|
|
1081
1090
|
* Controls the popup animation. By default, the open and close animations are enabled.
|
|
1082
1091
|
*/
|
|
@@ -1149,7 +1158,7 @@ format: {
|
|
|
1149
1158
|
type: PropType<string | DateFormatOptions>;
|
|
1150
1159
|
default: () => "d";
|
|
1151
1160
|
};
|
|
1152
|
-
formatPlaceholder: PropType<
|
|
1161
|
+
formatPlaceholder: PropType<DateInputFormatPlaceholder_2>;
|
|
1153
1162
|
id: PropType<string>;
|
|
1154
1163
|
max: {
|
|
1155
1164
|
type: PropType<Date>;
|
|
@@ -1290,7 +1299,7 @@ format: {
|
|
|
1290
1299
|
type: PropType<string | DateFormatOptions>;
|
|
1291
1300
|
default: () => "d";
|
|
1292
1301
|
};
|
|
1293
|
-
formatPlaceholder: PropType<
|
|
1302
|
+
formatPlaceholder: PropType<DateInputFormatPlaceholder_2>;
|
|
1294
1303
|
id: PropType<string>;
|
|
1295
1304
|
max: {
|
|
1296
1305
|
type: PropType<Date>;
|
|
@@ -1555,7 +1564,7 @@ export declare interface DatePickerSettings {
|
|
|
1555
1564
|
* - `appendTo`: — Defines the container to which the Popup will be appended. Defaults to [`body`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body).
|
|
1556
1565
|
* - `popupClass: String`—Specifies a list of CSS classes that are used to style the popup.
|
|
1557
1566
|
*/
|
|
1558
|
-
popupSettings?:
|
|
1567
|
+
popupSettings?: DateInputsPopupSettings_2;
|
|
1559
1568
|
/**
|
|
1560
1569
|
* Specifies if the calendar will be displayed ([see example]({% slug controlled_datepicker %}#toc-controlling-the-popup-state)).
|
|
1561
1570
|
*/
|
|
@@ -1591,7 +1600,7 @@ allowReverse: {
|
|
|
1591
1600
|
type: PropType<boolean>;
|
|
1592
1601
|
default: boolean;
|
|
1593
1602
|
};
|
|
1594
|
-
calendarSettings: PropType<
|
|
1603
|
+
calendarSettings: PropType<DateRangePickerCalendarSettings_2>;
|
|
1595
1604
|
defaultShow: {
|
|
1596
1605
|
type: PropType<boolean>;
|
|
1597
1606
|
default: boolean;
|
|
@@ -1612,7 +1621,7 @@ popup: PropType<any>;
|
|
|
1612
1621
|
calendar: PropType<any>;
|
|
1613
1622
|
startDateInput: PropType<any>;
|
|
1614
1623
|
endDateInput: PropType<any>;
|
|
1615
|
-
endDateInputSettings: PropType<
|
|
1624
|
+
endDateInputSettings: PropType<DateRangePickerDateInputSettings_2>;
|
|
1616
1625
|
focusedDate: PropType<Date>;
|
|
1617
1626
|
format: {
|
|
1618
1627
|
type: PropType<string | DateFormatOptions>;
|
|
@@ -1645,14 +1654,14 @@ default: string;
|
|
|
1645
1654
|
validator: (value: string) => any;
|
|
1646
1655
|
};
|
|
1647
1656
|
popupSettings: {
|
|
1648
|
-
type: PropType<
|
|
1657
|
+
type: PropType<DateRangePickerPopupSettings_2>;
|
|
1649
1658
|
default: () => any;
|
|
1650
1659
|
};
|
|
1651
1660
|
show: {
|
|
1652
1661
|
type: PropType<boolean>;
|
|
1653
1662
|
default: any;
|
|
1654
1663
|
};
|
|
1655
|
-
startDateInputSettings: PropType<
|
|
1664
|
+
startDateInputSettings: PropType<DateRangePickerDateInputSettings_2>;
|
|
1656
1665
|
swapButton: {
|
|
1657
1666
|
type: PropType<boolean>;
|
|
1658
1667
|
default: boolean;
|
|
@@ -1720,7 +1729,7 @@ allowReverse: {
|
|
|
1720
1729
|
type: PropType<boolean>;
|
|
1721
1730
|
default: boolean;
|
|
1722
1731
|
};
|
|
1723
|
-
calendarSettings: PropType<
|
|
1732
|
+
calendarSettings: PropType<DateRangePickerCalendarSettings_2>;
|
|
1724
1733
|
defaultShow: {
|
|
1725
1734
|
type: PropType<boolean>;
|
|
1726
1735
|
default: boolean;
|
|
@@ -1741,7 +1750,7 @@ popup: PropType<any>;
|
|
|
1741
1750
|
calendar: PropType<any>;
|
|
1742
1751
|
startDateInput: PropType<any>;
|
|
1743
1752
|
endDateInput: PropType<any>;
|
|
1744
|
-
endDateInputSettings: PropType<
|
|
1753
|
+
endDateInputSettings: PropType<DateRangePickerDateInputSettings_2>;
|
|
1745
1754
|
focusedDate: PropType<Date>;
|
|
1746
1755
|
format: {
|
|
1747
1756
|
type: PropType<string | DateFormatOptions>;
|
|
@@ -1774,14 +1783,14 @@ default: string;
|
|
|
1774
1783
|
validator: (value: string) => any;
|
|
1775
1784
|
};
|
|
1776
1785
|
popupSettings: {
|
|
1777
|
-
type: PropType<
|
|
1786
|
+
type: PropType<DateRangePickerPopupSettings_2>;
|
|
1778
1787
|
default: () => any;
|
|
1779
1788
|
};
|
|
1780
1789
|
show: {
|
|
1781
1790
|
type: PropType<boolean>;
|
|
1782
1791
|
default: any;
|
|
1783
1792
|
};
|
|
1784
|
-
startDateInputSettings: PropType<
|
|
1793
|
+
startDateInputSettings: PropType<DateRangePickerDateInputSettings_2>;
|
|
1785
1794
|
swapButton: {
|
|
1786
1795
|
type: PropType<boolean>;
|
|
1787
1796
|
default: boolean;
|
|
@@ -1812,7 +1821,7 @@ fillMode: string;
|
|
|
1812
1821
|
disabled: boolean;
|
|
1813
1822
|
defaultValue: SelectionRange;
|
|
1814
1823
|
show: boolean;
|
|
1815
|
-
popupSettings:
|
|
1824
|
+
popupSettings: DateRangePickerPopupSettings_2;
|
|
1816
1825
|
allowReverse: boolean;
|
|
1817
1826
|
modelValue: Date;
|
|
1818
1827
|
defaultShow: boolean;
|
|
@@ -2161,7 +2170,7 @@ type: PropType<string>;
|
|
|
2161
2170
|
default: () => "";
|
|
2162
2171
|
};
|
|
2163
2172
|
steps: {
|
|
2164
|
-
type: PropType<
|
|
2173
|
+
type: PropType<TimePickerIncrementalSteps_3>;
|
|
2165
2174
|
default: () => {};
|
|
2166
2175
|
};
|
|
2167
2176
|
value: PropType<Date>;
|
|
@@ -2320,7 +2329,7 @@ type: PropType<string>;
|
|
|
2320
2329
|
default: () => "";
|
|
2321
2330
|
};
|
|
2322
2331
|
steps: {
|
|
2323
|
-
type: PropType<
|
|
2332
|
+
type: PropType<TimePickerIncrementalSteps_3>;
|
|
2324
2333
|
default: () => {};
|
|
2325
2334
|
};
|
|
2326
2335
|
value: PropType<Date>;
|
|
@@ -2375,7 +2384,7 @@ show: boolean;
|
|
|
2375
2384
|
popupSettings: object;
|
|
2376
2385
|
popup: any;
|
|
2377
2386
|
modelValue: Date;
|
|
2378
|
-
steps:
|
|
2387
|
+
steps: TimePickerIncrementalSteps_3;
|
|
2379
2388
|
maxTime: Date;
|
|
2380
2389
|
minTime: Date;
|
|
2381
2390
|
validityStyles: boolean;
|
|
@@ -2606,7 +2615,7 @@ export declare interface DateTimePickerSettings {
|
|
|
2606
2615
|
*
|
|
2607
2616
|
* > If the incremental step is greater than `1`, the **Now** button will be hidden.
|
|
2608
2617
|
*/
|
|
2609
|
-
steps?:
|
|
2618
|
+
steps?: TimePickerIncrementalSteps_2;
|
|
2610
2619
|
/**
|
|
2611
2620
|
* Determines whether to display a week number column of the Calendar inside the DateTimePicker
|
|
2612
2621
|
* ([see example]({% slug weeksnumbers_calendar %})).
|
|
@@ -2704,7 +2713,7 @@ export declare interface SelectionRange {
|
|
|
2704
2713
|
/**
|
|
2705
2714
|
* The literal type that defines which end of the selection range is active.
|
|
2706
2715
|
*/
|
|
2707
|
-
declare type
|
|
2716
|
+
declare type SelectionRangeEnd_2 = 'start' | 'end' | null;
|
|
2708
2717
|
|
|
2709
2718
|
/**
|
|
2710
2719
|
* @hidden
|
|
@@ -3036,7 +3045,7 @@ export declare interface TimePickerCloseEvent {
|
|
|
3036
3045
|
/**
|
|
3037
3046
|
* The interface which defines all possible incremental steps in the TimePicker.
|
|
3038
3047
|
*/
|
|
3039
|
-
declare interface
|
|
3048
|
+
declare interface TimePickerIncrementalSteps_2 {
|
|
3040
3049
|
hour?: number;
|
|
3041
3050
|
minute?: number;
|
|
3042
3051
|
second?: number;
|
|
@@ -3195,7 +3204,7 @@ export declare interface TimePickerSettings {
|
|
|
3195
3204
|
* - `appendTo:`— Defines the container to which the Popup will be appended. Defaults to [`body`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body).
|
|
3196
3205
|
* - `popupClass: String`—Specifies a list of CSS classes that are used to style the popup.
|
|
3197
3206
|
*/
|
|
3198
|
-
popupSettings?:
|
|
3207
|
+
popupSettings?: DateInputsPopupSettings_2;
|
|
3199
3208
|
/**
|
|
3200
3209
|
* Specifies if a time selector will be displayed ([see example]({% slug controlled_timepicker %}#toc-controlling-the-popup-state)).
|
|
3201
3210
|
*/
|
|
@@ -3205,7 +3214,7 @@ export declare interface TimePickerSettings {
|
|
|
3205
3214
|
*
|
|
3206
3215
|
* > If the incremental step is greater than `1`, the **Now** button will be hidden.
|
|
3207
3216
|
*/
|
|
3208
|
-
steps?:
|
|
3217
|
+
steps?: TimePickerIncrementalSteps_2;
|
|
3209
3218
|
/**
|
|
3210
3219
|
* Toggles the smooth scroll animation on time click. By default, the animation is enabled.
|
|
3211
3220
|
*/
|
package/index.d.ts
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
import { ComponentOptionsMixin } from 'vue';
|
|
9
9
|
import { ComponentProvideOptions } from 'vue';
|
|
10
10
|
import { DateFormatOptions } from '@progress/kendo-vue-intl';
|
|
11
|
+
import { DateInputFormatPlaceholder as DateInputFormatPlaceholder_2 } from '..';
|
|
12
|
+
import { DateInputIncrementalSteps as DateInputIncrementalSteps_2 } from './models/incremental-steps';
|
|
13
|
+
import { DateInputsPopupSettings } from '../PopupSettings';
|
|
14
|
+
import { DateRangePickerCalendarSettings as DateRangePickerCalendarSettings_2 } from './models/DateRangePickerCalendarSettings';
|
|
15
|
+
import { DateRangePickerDateInputSettings as DateRangePickerDateInputSettings_2 } from './models/DateRangePickerDateInputSettings';
|
|
16
|
+
import { DateRangePickerPopupSettings as DateRangePickerPopupSettings_2 } from './models/DateRangePickerPopupSettings';
|
|
11
17
|
import { DefineComponent } from 'vue';
|
|
12
18
|
import { ExtractPropTypes } from 'vue';
|
|
13
19
|
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
@@ -18,7 +24,10 @@ import { PopupSettings } from '@progress/kendo-vue-popup';
|
|
|
18
24
|
import { PropType } from 'vue';
|
|
19
25
|
import { PublicProps } from 'vue';
|
|
20
26
|
import { Ref } from 'vue';
|
|
27
|
+
import { SelectionRangeEnd } from '../models/SelectionRangeEnd';
|
|
21
28
|
import { SVGIcon } from '@progress/kendo-vue-common';
|
|
29
|
+
import { TimePickerIncrementalSteps } from './models/IncrementalSteps';
|
|
30
|
+
import { TimePickerIncrementalSteps as TimePickerIncrementalSteps_3 } from '../timepicker/models/IncrementalSteps';
|
|
22
31
|
|
|
23
32
|
/**
|
|
24
33
|
* The literal type that defines all possible Calendar views.
|
|
@@ -307,7 +316,7 @@ export declare interface CalendarChangeEvent {
|
|
|
307
316
|
*/
|
|
308
317
|
declare interface CalendarComputed {
|
|
309
318
|
[key: string]: any;
|
|
310
|
-
activeRange?:
|
|
319
|
+
activeRange?: SelectionRangeEnd_2;
|
|
311
320
|
currentMin: Date;
|
|
312
321
|
currentMax: Date;
|
|
313
322
|
}
|
|
@@ -359,7 +368,7 @@ export declare interface CalendarProps extends CalendarSettings {
|
|
|
359
368
|
*
|
|
360
369
|
* > If the selection range is undefined, the value is ignored.
|
|
361
370
|
*/
|
|
362
|
-
activeRangeEnd?:
|
|
371
|
+
activeRangeEnd?: SelectionRangeEnd_2;
|
|
363
372
|
/**
|
|
364
373
|
* If set to `true`, the component skips the validation of whether the `from` value is after the `to` value.
|
|
365
374
|
*/
|
|
@@ -608,7 +617,7 @@ validator: (value: string) => any;
|
|
|
608
617
|
};
|
|
609
618
|
tabIndex: PropType<number>;
|
|
610
619
|
title: PropType<string>;
|
|
611
|
-
steps: PropType<
|
|
620
|
+
steps: PropType<DateInputIncrementalSteps_2>;
|
|
612
621
|
placeholder: PropType<string>;
|
|
613
622
|
max: {
|
|
614
623
|
type: PropType<Date>;
|
|
@@ -742,7 +751,7 @@ validator: (value: string) => any;
|
|
|
742
751
|
};
|
|
743
752
|
tabIndex: PropType<number>;
|
|
744
753
|
title: PropType<string>;
|
|
745
|
-
steps: PropType<
|
|
754
|
+
steps: PropType<DateInputIncrementalSteps_2>;
|
|
746
755
|
placeholder: PropType<string>;
|
|
747
756
|
max: {
|
|
748
757
|
type: PropType<Date>;
|
|
@@ -1076,7 +1085,7 @@ export declare interface DateInputSettings {
|
|
|
1076
1085
|
inputAttributes?: Object;
|
|
1077
1086
|
}
|
|
1078
1087
|
|
|
1079
|
-
declare interface
|
|
1088
|
+
declare interface DateInputsPopupSettings_2 {
|
|
1080
1089
|
/**
|
|
1081
1090
|
* Controls the popup animation. By default, the open and close animations are enabled.
|
|
1082
1091
|
*/
|
|
@@ -1149,7 +1158,7 @@ format: {
|
|
|
1149
1158
|
type: PropType<string | DateFormatOptions>;
|
|
1150
1159
|
default: () => "d";
|
|
1151
1160
|
};
|
|
1152
|
-
formatPlaceholder: PropType<
|
|
1161
|
+
formatPlaceholder: PropType<DateInputFormatPlaceholder_2>;
|
|
1153
1162
|
id: PropType<string>;
|
|
1154
1163
|
max: {
|
|
1155
1164
|
type: PropType<Date>;
|
|
@@ -1290,7 +1299,7 @@ format: {
|
|
|
1290
1299
|
type: PropType<string | DateFormatOptions>;
|
|
1291
1300
|
default: () => "d";
|
|
1292
1301
|
};
|
|
1293
|
-
formatPlaceholder: PropType<
|
|
1302
|
+
formatPlaceholder: PropType<DateInputFormatPlaceholder_2>;
|
|
1294
1303
|
id: PropType<string>;
|
|
1295
1304
|
max: {
|
|
1296
1305
|
type: PropType<Date>;
|
|
@@ -1555,7 +1564,7 @@ export declare interface DatePickerSettings {
|
|
|
1555
1564
|
* - `appendTo`: — Defines the container to which the Popup will be appended. Defaults to [`body`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body).
|
|
1556
1565
|
* - `popupClass: String`—Specifies a list of CSS classes that are used to style the popup.
|
|
1557
1566
|
*/
|
|
1558
|
-
popupSettings?:
|
|
1567
|
+
popupSettings?: DateInputsPopupSettings_2;
|
|
1559
1568
|
/**
|
|
1560
1569
|
* Specifies if the calendar will be displayed ([see example]({% slug controlled_datepicker %}#toc-controlling-the-popup-state)).
|
|
1561
1570
|
*/
|
|
@@ -1591,7 +1600,7 @@ allowReverse: {
|
|
|
1591
1600
|
type: PropType<boolean>;
|
|
1592
1601
|
default: boolean;
|
|
1593
1602
|
};
|
|
1594
|
-
calendarSettings: PropType<
|
|
1603
|
+
calendarSettings: PropType<DateRangePickerCalendarSettings_2>;
|
|
1595
1604
|
defaultShow: {
|
|
1596
1605
|
type: PropType<boolean>;
|
|
1597
1606
|
default: boolean;
|
|
@@ -1612,7 +1621,7 @@ popup: PropType<any>;
|
|
|
1612
1621
|
calendar: PropType<any>;
|
|
1613
1622
|
startDateInput: PropType<any>;
|
|
1614
1623
|
endDateInput: PropType<any>;
|
|
1615
|
-
endDateInputSettings: PropType<
|
|
1624
|
+
endDateInputSettings: PropType<DateRangePickerDateInputSettings_2>;
|
|
1616
1625
|
focusedDate: PropType<Date>;
|
|
1617
1626
|
format: {
|
|
1618
1627
|
type: PropType<string | DateFormatOptions>;
|
|
@@ -1645,14 +1654,14 @@ default: string;
|
|
|
1645
1654
|
validator: (value: string) => any;
|
|
1646
1655
|
};
|
|
1647
1656
|
popupSettings: {
|
|
1648
|
-
type: PropType<
|
|
1657
|
+
type: PropType<DateRangePickerPopupSettings_2>;
|
|
1649
1658
|
default: () => any;
|
|
1650
1659
|
};
|
|
1651
1660
|
show: {
|
|
1652
1661
|
type: PropType<boolean>;
|
|
1653
1662
|
default: any;
|
|
1654
1663
|
};
|
|
1655
|
-
startDateInputSettings: PropType<
|
|
1664
|
+
startDateInputSettings: PropType<DateRangePickerDateInputSettings_2>;
|
|
1656
1665
|
swapButton: {
|
|
1657
1666
|
type: PropType<boolean>;
|
|
1658
1667
|
default: boolean;
|
|
@@ -1720,7 +1729,7 @@ allowReverse: {
|
|
|
1720
1729
|
type: PropType<boolean>;
|
|
1721
1730
|
default: boolean;
|
|
1722
1731
|
};
|
|
1723
|
-
calendarSettings: PropType<
|
|
1732
|
+
calendarSettings: PropType<DateRangePickerCalendarSettings_2>;
|
|
1724
1733
|
defaultShow: {
|
|
1725
1734
|
type: PropType<boolean>;
|
|
1726
1735
|
default: boolean;
|
|
@@ -1741,7 +1750,7 @@ popup: PropType<any>;
|
|
|
1741
1750
|
calendar: PropType<any>;
|
|
1742
1751
|
startDateInput: PropType<any>;
|
|
1743
1752
|
endDateInput: PropType<any>;
|
|
1744
|
-
endDateInputSettings: PropType<
|
|
1753
|
+
endDateInputSettings: PropType<DateRangePickerDateInputSettings_2>;
|
|
1745
1754
|
focusedDate: PropType<Date>;
|
|
1746
1755
|
format: {
|
|
1747
1756
|
type: PropType<string | DateFormatOptions>;
|
|
@@ -1774,14 +1783,14 @@ default: string;
|
|
|
1774
1783
|
validator: (value: string) => any;
|
|
1775
1784
|
};
|
|
1776
1785
|
popupSettings: {
|
|
1777
|
-
type: PropType<
|
|
1786
|
+
type: PropType<DateRangePickerPopupSettings_2>;
|
|
1778
1787
|
default: () => any;
|
|
1779
1788
|
};
|
|
1780
1789
|
show: {
|
|
1781
1790
|
type: PropType<boolean>;
|
|
1782
1791
|
default: any;
|
|
1783
1792
|
};
|
|
1784
|
-
startDateInputSettings: PropType<
|
|
1793
|
+
startDateInputSettings: PropType<DateRangePickerDateInputSettings_2>;
|
|
1785
1794
|
swapButton: {
|
|
1786
1795
|
type: PropType<boolean>;
|
|
1787
1796
|
default: boolean;
|
|
@@ -1812,7 +1821,7 @@ fillMode: string;
|
|
|
1812
1821
|
disabled: boolean;
|
|
1813
1822
|
defaultValue: SelectionRange;
|
|
1814
1823
|
show: boolean;
|
|
1815
|
-
popupSettings:
|
|
1824
|
+
popupSettings: DateRangePickerPopupSettings_2;
|
|
1816
1825
|
allowReverse: boolean;
|
|
1817
1826
|
modelValue: Date;
|
|
1818
1827
|
defaultShow: boolean;
|
|
@@ -2161,7 +2170,7 @@ type: PropType<string>;
|
|
|
2161
2170
|
default: () => "";
|
|
2162
2171
|
};
|
|
2163
2172
|
steps: {
|
|
2164
|
-
type: PropType<
|
|
2173
|
+
type: PropType<TimePickerIncrementalSteps_3>;
|
|
2165
2174
|
default: () => {};
|
|
2166
2175
|
};
|
|
2167
2176
|
value: PropType<Date>;
|
|
@@ -2320,7 +2329,7 @@ type: PropType<string>;
|
|
|
2320
2329
|
default: () => "";
|
|
2321
2330
|
};
|
|
2322
2331
|
steps: {
|
|
2323
|
-
type: PropType<
|
|
2332
|
+
type: PropType<TimePickerIncrementalSteps_3>;
|
|
2324
2333
|
default: () => {};
|
|
2325
2334
|
};
|
|
2326
2335
|
value: PropType<Date>;
|
|
@@ -2375,7 +2384,7 @@ show: boolean;
|
|
|
2375
2384
|
popupSettings: object;
|
|
2376
2385
|
popup: any;
|
|
2377
2386
|
modelValue: Date;
|
|
2378
|
-
steps:
|
|
2387
|
+
steps: TimePickerIncrementalSteps_3;
|
|
2379
2388
|
maxTime: Date;
|
|
2380
2389
|
minTime: Date;
|
|
2381
2390
|
validityStyles: boolean;
|
|
@@ -2606,7 +2615,7 @@ export declare interface DateTimePickerSettings {
|
|
|
2606
2615
|
*
|
|
2607
2616
|
* > If the incremental step is greater than `1`, the **Now** button will be hidden.
|
|
2608
2617
|
*/
|
|
2609
|
-
steps?:
|
|
2618
|
+
steps?: TimePickerIncrementalSteps_2;
|
|
2610
2619
|
/**
|
|
2611
2620
|
* Determines whether to display a week number column of the Calendar inside the DateTimePicker
|
|
2612
2621
|
* ([see example]({% slug weeksnumbers_calendar %})).
|
|
@@ -2704,7 +2713,7 @@ export declare interface SelectionRange {
|
|
|
2704
2713
|
/**
|
|
2705
2714
|
* The literal type that defines which end of the selection range is active.
|
|
2706
2715
|
*/
|
|
2707
|
-
declare type
|
|
2716
|
+
declare type SelectionRangeEnd_2 = 'start' | 'end' | null;
|
|
2708
2717
|
|
|
2709
2718
|
/**
|
|
2710
2719
|
* @hidden
|
|
@@ -3036,7 +3045,7 @@ export declare interface TimePickerCloseEvent {
|
|
|
3036
3045
|
/**
|
|
3037
3046
|
* The interface which defines all possible incremental steps in the TimePicker.
|
|
3038
3047
|
*/
|
|
3039
|
-
declare interface
|
|
3048
|
+
declare interface TimePickerIncrementalSteps_2 {
|
|
3040
3049
|
hour?: number;
|
|
3041
3050
|
minute?: number;
|
|
3042
3051
|
second?: number;
|
|
@@ -3195,7 +3204,7 @@ export declare interface TimePickerSettings {
|
|
|
3195
3204
|
* - `appendTo:`— Defines the container to which the Popup will be appended. Defaults to [`body`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body).
|
|
3196
3205
|
* - `popupClass: String`—Specifies a list of CSS classes that are used to style the popup.
|
|
3197
3206
|
*/
|
|
3198
|
-
popupSettings?:
|
|
3207
|
+
popupSettings?: DateInputsPopupSettings_2;
|
|
3199
3208
|
/**
|
|
3200
3209
|
* Specifies if a time selector will be displayed ([see example]({% slug controlled_timepicker %}#toc-controlling-the-popup-state)).
|
|
3201
3210
|
*/
|
|
@@ -3205,7 +3214,7 @@ export declare interface TimePickerSettings {
|
|
|
3205
3214
|
*
|
|
3206
3215
|
* > If the incremental step is greater than `1`, the **Now** button will be hidden.
|
|
3207
3216
|
*/
|
|
3208
|
-
steps?:
|
|
3217
|
+
steps?: TimePickerIncrementalSteps_2;
|
|
3209
3218
|
/**
|
|
3210
3219
|
* Toggles the smooth scroll animation on time click. By default, the animation is enabled.
|
|
3211
3220
|
*/
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-dateinputs",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-dateinputs",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1738924705,version:"6.1.0-develop.8",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"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "6.1.0-develop.
|
|
13
|
+
publishDate: 1738924705,
|
|
14
|
+
version: "6.1.0-develop.8",
|
|
15
15
|
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"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-dateinputs",
|
|
3
|
-
"version": "6.1.0-develop.
|
|
3
|
+
"version": "6.1.0-develop.8",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@progress/kendo-date-math": "^1.4.0",
|
|
22
22
|
"@progress/kendo-licensing": "^1.3.4",
|
|
23
|
-
"@progress/kendo-vue-buttons": "6.1.0-develop.
|
|
24
|
-
"@progress/kendo-vue-common": "6.1.0-develop.
|
|
25
|
-
"@progress/kendo-vue-intl": "6.1.0-develop.
|
|
26
|
-
"@progress/kendo-vue-labels": "6.1.0-develop.
|
|
27
|
-
"@progress/kendo-vue-layout": "6.1.0-develop.
|
|
28
|
-
"@progress/kendo-vue-popup": "6.1.0-develop.
|
|
23
|
+
"@progress/kendo-vue-buttons": "6.1.0-develop.8",
|
|
24
|
+
"@progress/kendo-vue-common": "6.1.0-develop.8",
|
|
25
|
+
"@progress/kendo-vue-intl": "6.1.0-develop.8",
|
|
26
|
+
"@progress/kendo-vue-labels": "6.1.0-develop.8",
|
|
27
|
+
"@progress/kendo-vue-layout": "6.1.0-develop.8",
|
|
28
|
+
"@progress/kendo-vue-popup": "6.1.0-develop.8",
|
|
29
29
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
30
30
|
"vue": "^3.0.2"
|
|
31
31
|
},
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"package": {
|
|
47
47
|
"productName": "Kendo UI for Vue",
|
|
48
48
|
"productCode": "KENDOUIVUE",
|
|
49
|
-
"publishDate":
|
|
49
|
+
"publishDate": 1738924705,
|
|
50
50
|
"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"
|
|
51
51
|
}
|
|
52
52
|
},
|