@entur/datepicker 11.8.1 → 12.0.0-next.1
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/DatePicker/Calendar.d.ts +1 -1
- package/dist/DatePicker/CalendarBase.d.ts +1 -1
- package/dist/DatePicker/CalendarCell.d.ts +1 -2
- package/dist/DatePicker/CalendarGrid.d.ts +1 -2
- package/dist/DatePicker/DateField.d.ts +1 -1
- package/dist/DatePicker/DatePicker.d.ts +1 -1
- package/dist/DatePicker/RangeCalendar.d.ts +1 -1
- package/dist/DatePicker/RangeCalendarCell.d.ts +1 -2
- package/dist/TimePicker/SimpleTimePicker.d.ts +1 -1
- package/dist/TimePicker/TimePicker.d.ts +1 -1
- package/dist/TimePicker/TimePickerArrowButton.d.ts +1 -2
- package/dist/datepicker.cjs.js +6 -6
- package/dist/datepicker.cjs.js.map +1 -1
- package/dist/datepicker.esm.js +8 -8
- package/dist/datepicker.esm.js.map +1 -1
- package/dist/shared/CalendarButton.d.ts +1 -1
- package/dist/shared/FieldSegment.d.ts +1 -2
- package/package.json +25 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/datepicker",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0-next.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/datepicker.cjs.js",
|
|
6
6
|
"module": "dist/datepicker.esm.js",
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"test": "jest"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"react": ">=
|
|
26
|
-
"react-dom": ">=
|
|
25
|
+
"react": ">=18.0.0",
|
|
26
|
+
"react-dom": ">=18.0.0"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@entur/a11y": "^0.
|
|
30
|
-
"@entur/button": "^
|
|
31
|
-
"@entur/form": "^
|
|
32
|
-
"@entur/icons": "^
|
|
33
|
-
"@entur/modal": "^
|
|
34
|
-
"@entur/tokens": "^
|
|
35
|
-
"@entur/tooltip": "^
|
|
36
|
-
"@entur/typography": "^
|
|
37
|
-
"@entur/utils": "^0.
|
|
29
|
+
"@entur/a11y": "^1.0.0-next.1",
|
|
30
|
+
"@entur/button": "^5.0.0-next.1",
|
|
31
|
+
"@entur/form": "^10.0.0-next.1",
|
|
32
|
+
"@entur/icons": "^10.0.0-next.1",
|
|
33
|
+
"@entur/modal": "^2.0.0-next.1",
|
|
34
|
+
"@entur/tokens": "^4.0.0-next.0",
|
|
35
|
+
"@entur/tooltip": "^6.0.0-next.1",
|
|
36
|
+
"@entur/typography": "^3.0.0-next.1",
|
|
37
|
+
"@entur/utils": "^1.0.0-next.1",
|
|
38
38
|
"@floating-ui/react-dom": "^2.1.6",
|
|
39
39
|
"@internationalized/date": "^3.11.0",
|
|
40
40
|
"@react-aria/button": "^3.14.4",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@react-types/datepicker": "^3.13.4",
|
|
51
51
|
"@testing-library/jest-dom": "^5.17.0",
|
|
52
|
-
"@testing-library/react": "^
|
|
52
|
+
"@testing-library/react": "^16.3.0",
|
|
53
53
|
"@testing-library/user-event": "14.6.1",
|
|
54
54
|
"@vitejs/plugin-react": "^5.0.1",
|
|
55
55
|
"jest": "^29.0.0",
|
|
@@ -59,5 +59,16 @@
|
|
|
59
59
|
"vite": "^7.3.2",
|
|
60
60
|
"vite-plugin-dts": "^4.5.4"
|
|
61
61
|
},
|
|
62
|
-
"
|
|
62
|
+
"exports": {
|
|
63
|
+
".": {
|
|
64
|
+
"types": "./dist/index.d.ts",
|
|
65
|
+
"import": "./dist/datepicker.esm.js",
|
|
66
|
+
"require": "./dist/datepicker.cjs.js",
|
|
67
|
+
"default": "./dist/datepicker.esm.js"
|
|
68
|
+
},
|
|
69
|
+
"./styles": "./dist/styles.css",
|
|
70
|
+
"./dist/styles.css": "./dist/styles.css",
|
|
71
|
+
"./package.json": "./package.json"
|
|
72
|
+
},
|
|
73
|
+
"gitHead": "0696d63a328007af9797bc57b63c8e1c65ecfa5a"
|
|
63
74
|
}
|