@progress/kendo-react-dateinputs 9.3.0-develop.1 → 9.3.0-develop.3
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/dateinput/DateInput.js +1 -1
- package/dateinput/DateInput.mjs +285 -400
- package/daterangepicker/DateRangePicker.js +1 -1
- package/daterangepicker/DateRangePicker.mjs +49 -49
- package/dist/cdn/js/kendo-react-dateinputs.js +1 -1
- package/hooks/usePickerFloatingLabel.js +1 -1
- package/hooks/usePickerFloatingLabel.mjs +1 -1
- package/index.d.mts +150 -319
- package/index.d.ts +150 -319
- package/index.js +1 -1
- package/index.mjs +10 -10
- package/package-metadata.mjs +1 -1
- package/package.json +7 -7
package/index.mjs
CHANGED
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
9
|
import { Calendar as o, CalendarPropsContext as t, CalendarWithoutContext as a } from "./calendar/components/Calendar.mjs";
|
|
10
|
-
import { DateInput as m, DateInputPropsContext as p,
|
|
10
|
+
import { DateInput as m, DateInputPropsContext as p, dateInputDefaultProps as x } from "./dateinput/DateInput.mjs";
|
|
11
11
|
import { DatePicker as f, DatePickerPropsContext as c, datePickerDefaultProps as l } from "./datepicker/DatePicker.mjs";
|
|
12
|
-
import { TimePicker as C, TimePickerPropsContext as d, TimePickerWithoutContext as
|
|
12
|
+
import { TimePicker as C, TimePickerPropsContext as d, TimePickerWithoutContext as P } from "./timepicker/TimePicker.mjs";
|
|
13
13
|
import { MultiViewCalendar as S, MultiViewCalendarPropsContext as T, MultiViewCalendarWithoutContext as D } from "./calendar/components/MultiViewCalendar.mjs";
|
|
14
14
|
import { DateRangePicker as k, DateRangePickerPropsContext as v, DateRangePickerWithoutContext as M } from "./daterangepicker/DateRangePicker.mjs";
|
|
15
15
|
import { CalendarCell as w } from "./calendar/components/CalendarCell.mjs";
|
|
16
16
|
import { CalendarWeekCell as I } from "./calendar/components/CalendarWeekCell.mjs";
|
|
17
|
-
import { CalendarHeaderTitle as
|
|
17
|
+
import { CalendarHeaderTitle as W } from "./calendar/components/CalendarHeaderTitle.mjs";
|
|
18
18
|
import { CalendarNavigationItem as y } from "./calendar/components/CalendarNavigationItem.mjs";
|
|
19
19
|
import { Action as _ } from "./calendar/models/NavigationAction.mjs";
|
|
20
20
|
import { CalendarViewEnum as L } from "./calendar/models/CalendarViewEnum.mjs";
|
|
@@ -29,11 +29,11 @@ import { TodayCommand as ee } from "./calendar/components/TodayCommand.mjs";
|
|
|
29
29
|
import { messages as oe, decreaseValue as te, end as ae, increaseValue as ie, separator as me, start as pe, swapStartEnd as xe, today as ne, toggleCalendar as fe, toggleDateTimeSelector as ce } from "./messages/index.mjs";
|
|
30
30
|
import { ViewList as se } from "./calendar/components/ViewList.mjs";
|
|
31
31
|
import { Virtualization as de } from "./virtualization/Virtualization.mjs";
|
|
32
|
-
import { HorizontalViewList as
|
|
32
|
+
import { HorizontalViewList as ue } from "./calendar/components/HorizontalViewList.mjs";
|
|
33
33
|
import { TimeSelector as Te } from "./timepicker/TimeSelector.mjs";
|
|
34
34
|
import { MAX_DATE as ge, MAX_TIME as ke, MIN_DATE as ve, MIN_TIME as Me, getToday as Ve } from "./utils.mjs";
|
|
35
35
|
import { getNow as Ee } from "./timepicker/utils.mjs";
|
|
36
|
-
import { DayPeriodService as
|
|
36
|
+
import { DayPeriodService as Ne } from "./timepicker/services/DayPeriodService.mjs";
|
|
37
37
|
import { HoursService as he } from "./timepicker/services/HoursService.mjs";
|
|
38
38
|
import { MinutesService as Ae } from "./timepicker/services/MinutesService.mjs";
|
|
39
39
|
import { SecondsService as He } from "./timepicker/services/SecondsService.mjs";
|
|
@@ -51,7 +51,7 @@ export {
|
|
|
51
51
|
Re as BusViewService,
|
|
52
52
|
o as Calendar,
|
|
53
53
|
w as CalendarCell,
|
|
54
|
-
|
|
54
|
+
W as CalendarHeaderTitle,
|
|
55
55
|
y as CalendarNavigationItem,
|
|
56
56
|
t as CalendarPropsContext,
|
|
57
57
|
L as CalendarViewEnum,
|
|
@@ -61,7 +61,6 @@ export {
|
|
|
61
61
|
Ge as DOMService,
|
|
62
62
|
m as DateInput,
|
|
63
63
|
p as DateInputPropsContext,
|
|
64
|
-
x as DateInputWithoutContext,
|
|
65
64
|
f as DatePicker,
|
|
66
65
|
c as DatePickerPropsContext,
|
|
67
66
|
k as DateRangePicker,
|
|
@@ -70,11 +69,11 @@ export {
|
|
|
70
69
|
O as DateTimePicker,
|
|
71
70
|
X as DateTimePickerPropsContext,
|
|
72
71
|
Y as DateTimePickerWithoutContext,
|
|
73
|
-
|
|
72
|
+
Ne as DayPeriodService,
|
|
74
73
|
Xe as DecadeViewService,
|
|
75
74
|
z as EMPTY_SELECTIONRANGE,
|
|
76
75
|
J as Header,
|
|
77
|
-
|
|
76
|
+
ue as HorizontalViewList,
|
|
78
77
|
he as HoursService,
|
|
79
78
|
ge as MAX_DATE,
|
|
80
79
|
ke as MAX_TIME,
|
|
@@ -93,7 +92,7 @@ export {
|
|
|
93
92
|
Z as TimePart,
|
|
94
93
|
C as TimePicker,
|
|
95
94
|
d as TimePickerPropsContext,
|
|
96
|
-
|
|
95
|
+
P as TimePickerWithoutContext,
|
|
97
96
|
Te as TimeSelector,
|
|
98
97
|
ee as TodayCommand,
|
|
99
98
|
b as ToggleButton,
|
|
@@ -101,6 +100,7 @@ export {
|
|
|
101
100
|
de as Virtualization,
|
|
102
101
|
Ue as WeekNamesService,
|
|
103
102
|
$e as YearViewService,
|
|
103
|
+
x as dateInputDefaultProps,
|
|
104
104
|
oe as dateInputsMessages,
|
|
105
105
|
l as datePickerDefaultProps,
|
|
106
106
|
te as decreaseValue,
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-dateinputs",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1737447578,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-dateinputs",
|
|
3
|
-
"version": "9.3.0-develop.
|
|
3
|
+
"version": "9.3.0-develop.3",
|
|
4
4
|
"description": "React DateInput is a perfect input component for handling quick and efficient date values. KendoReact Date Inputs package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"@progress/kendo-date-math": "^1.4.0",
|
|
26
26
|
"@progress/kendo-licensing": "^1.3.4",
|
|
27
27
|
"@progress/kendo-dateinputs-common": "^0.4.0",
|
|
28
|
-
"@progress/kendo-react-buttons": "9.3.0-develop.
|
|
29
|
-
"@progress/kendo-react-common": "9.3.0-develop.
|
|
30
|
-
"@progress/kendo-react-intl": "9.3.0-develop.
|
|
31
|
-
"@progress/kendo-react-labels": "9.3.0-develop.
|
|
32
|
-
"@progress/kendo-react-layout": "9.3.0-develop.
|
|
33
|
-
"@progress/kendo-react-popup": "9.3.0-develop.
|
|
28
|
+
"@progress/kendo-react-buttons": "9.3.0-develop.3",
|
|
29
|
+
"@progress/kendo-react-common": "9.3.0-develop.3",
|
|
30
|
+
"@progress/kendo-react-intl": "9.3.0-develop.3",
|
|
31
|
+
"@progress/kendo-react-labels": "9.3.0-develop.3",
|
|
32
|
+
"@progress/kendo-react-layout": "9.3.0-develop.3",
|
|
33
|
+
"@progress/kendo-react-popup": "9.3.0-develop.3",
|
|
34
34
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
35
35
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
36
36
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|