@react-types/datepicker 3.13.1 → 3.13.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/package.json +6 -6
- package/src/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-types/datepicker",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.3",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"url": "https://github.com/adobe/react-spectrum"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@internationalized/date": "^3.
|
|
13
|
-
"@react-types/calendar": "^3.
|
|
14
|
-
"@react-types/overlays": "^3.9.
|
|
15
|
-
"@react-types/shared": "^3.32.
|
|
12
|
+
"@internationalized/date": "^3.10.1",
|
|
13
|
+
"@react-types/calendar": "^3.8.1",
|
|
14
|
+
"@react-types/overlays": "^3.9.2",
|
|
15
|
+
"@react-types/shared": "^3.32.1"
|
|
16
16
|
},
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public"
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "4d838da5bfe36abb35aed166995a9ef63825370f"
|
|
24
24
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ export interface DateRangePickerProps<T extends DateValue> extends Omit<DatePick
|
|
|
109
109
|
endName?: string
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
-
export interface AriaDateRangePickerProps<T extends DateValue> extends Omit<AriaDatePickerBaseProps<T>, 'validate'>, DateRangePickerProps<T> {}
|
|
112
|
+
export interface AriaDateRangePickerProps<T extends DateValue> extends Omit<AriaDatePickerBaseProps<T>, 'validate' | 'name'>, DateRangePickerProps<T> {}
|
|
113
113
|
|
|
114
114
|
interface SpectrumDateFieldBase<T extends DateValue> extends SpectrumLabelableProps, HelpTextProps, SpectrumFieldValidation<MappedDateValue<T>>, StyleProps {
|
|
115
115
|
/**
|