@northlight/ui 2.43.1 → 2.43.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.
@@ -1274,6 +1274,7 @@ interface DatePickerSettings {
1274
1274
  variant?: 'outline' | 'filled';
1275
1275
  }
1276
1276
  interface DatePickerProps extends Omit<AriaDatePickerProps<DateValue>, 'firstDayOfWeek'>, DatePickerSettings {
1277
+ 'data-testid': string;
1277
1278
  }
1278
1279
  interface DateRangePickerProps extends Omit<AriaDateRangePickerProps<DateValue>, 'firstDayOfWeek' | 'onChange' | 'value' | 'minValue' | 'maxValue'>, DatePickerSettings {
1279
1280
  /**
@@ -4835,8 +4836,8 @@ declare const useArrowFocus: (columns: number) => {
4835
4836
  wrap: boolean;
4836
4837
  repeat: number;
4837
4838
  }) => void;
4838
- focusFirst: (opts?: _react_aria_focus.FocusManagerOptions | undefined) => _react_types_shared.FocusableElement;
4839
- focusLast: (opts?: _react_aria_focus.FocusManagerOptions | undefined) => _react_types_shared.FocusableElement;
4839
+ focusFirst: (opts?: _react_aria_focus.FocusManagerOptions | undefined) => _react_types_shared.FocusableElement | null;
4840
+ focusLast: (opts?: _react_aria_focus.FocusManagerOptions | undefined) => _react_types_shared.FocusableElement | null;
4840
4841
  };
4841
4842
 
4842
4843
  interface UseSelectCallbacksProps<T, K extends boolean = false> extends Omit<Props<T, boolean, GroupBase<T>>, 'onChange' | 'value'> {