@northlight/ui 2.34.3 → 2.35.0
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/es/northlight.d.ts +2 -2
- package/package.json +2 -2
package/dist/es/northlight.d.ts
CHANGED
|
@@ -907,9 +907,9 @@ interface DatePickerSettings {
|
|
|
907
907
|
isClearable?: boolean;
|
|
908
908
|
variant?: 'outline' | 'filled';
|
|
909
909
|
}
|
|
910
|
-
interface DatePickerProps extends AriaDatePickerProps<DateValue>, DatePickerSettings {
|
|
910
|
+
interface DatePickerProps extends Omit<AriaDatePickerProps<DateValue>, 'firstDayOfWeek'>, DatePickerSettings {
|
|
911
911
|
}
|
|
912
|
-
interface DateRangePickerProps extends Omit<AriaDateRangePickerProps<DateValue>, 'onChange' | 'value' | 'minValue' | 'maxValue'>, DatePickerSettings {
|
|
912
|
+
interface DateRangePickerProps extends Omit<AriaDateRangePickerProps<DateValue>, 'firstDayOfWeek' | 'onChange' | 'value' | 'minValue' | 'maxValue'>, DatePickerSettings {
|
|
913
913
|
onChange?: (date: null | DateRange) => void;
|
|
914
914
|
onSave?: () => void;
|
|
915
915
|
value: DateRange | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@northlight/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.35.0",
|
|
4
4
|
"description": "Northlight UI library, based on Chakra-ui",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Camphouse",
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
"react-dom": ">=18.0.0",
|
|
103
103
|
"react-router-dom": "^5.0.0"
|
|
104
104
|
},
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "0bc79eb00acc95eaa7390d5bfa5a267a5c563e5a"
|
|
106
106
|
}
|