react-luminus-components 2.0.3-beta.r19-3 → 2.0.3-beta.r19-5

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.
@@ -8,6 +8,6 @@ type Props = React.ButtonHTMLAttributes<HTMLLabelElement> & {
8
8
  children: React.ReactNode;
9
9
  };
10
10
  declare const FileUploadContextButton: ({ ref, color, icon, inputId, accept, onUpload, className, children, multiple, ...props }: Props & {
11
- ref?: React.RefObject<HTMLLabelElement>;
11
+ ref?: React.RefObject<HTMLLabelElement | null>;
12
12
  }) => import("react").JSX.Element;
13
13
  export default FileUploadContextButton;
@@ -3,7 +3,7 @@ import { default as React } from 'react';
3
3
 
4
4
  declare const FloatingLabelInput: {
5
5
  ({ ref, hidden, children, className, isInvalid, isForRadioInput, inputContainerClassName, isForCheckInput, hint, required, disabled, ...props }: InputContainerProps & {
6
- ref?: React.RefObject<HTMLDivElement>;
6
+ ref?: React.RefObject<HTMLDivElement | null>;
7
7
  }): React.JSX.Element;
8
8
  displayName: string;
9
9
  };
@@ -2,7 +2,7 @@ import { default as InputContainerProps } from '../../../models/prop-types/Input
2
2
 
3
3
  declare const NoInputContainer: {
4
4
  ({ ref, children, className, hidden, }: InputContainerProps & {
5
- ref?: React.RefObject<HTMLDivElement>;
5
+ ref?: React.RefObject<HTMLDivElement | null>;
6
6
  }): import("react").JSX.Element;
7
7
  displayName: string;
8
8
  };
@@ -2,7 +2,7 @@ import { default as InputContainerProps } from '../../../models/prop-types/Input
2
2
 
3
3
  declare const RowLabelInput: {
4
4
  ({ ref, hidden, children, required, disabled, className, isInvalid, isForRadioInput, isForTextAreaInput, inputContainerClassName, hint, ...props }: InputContainerProps & {
5
- ref?: React.RefObject<HTMLDivElement>;
5
+ ref?: React.RefObject<HTMLDivElement | null>;
6
6
  }): import("react").JSX.Element;
7
7
  displayName: string;
8
8
  };
@@ -5,6 +5,6 @@ type FromToDatePickerDropdownToggleProps = {
5
5
  text?: string;
6
6
  };
7
7
  declare const FromToDatePickerDropdownToggle: ({ ref, onClick, text, }: FromToDatePickerDropdownToggleProps & {
8
- ref?: React.RefObject<HTMLDivElement>;
8
+ ref?: React.RefObject<HTMLDivElement | null>;
9
9
  }) => React.JSX.Element;
10
10
  export default FromToDatePickerDropdownToggle;
@@ -3,7 +3,7 @@ import { default as InputContainerProps } from '../InputContainerProps';
3
3
 
4
4
  type InputBaseProps = {
5
5
  InputContainer?: React.FC<InputContainerProps & {
6
- ref?: React.RefObject<HTMLDivElement>;
6
+ ref?: React.RefObject<HTMLDivElement | null>;
7
7
  }>;
8
8
  label?: string;
9
9
  withoutLabel?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-luminus-components",
3
- "version": "2.0.3-beta.r19-3",
3
+ "version": "2.0.3-beta.r19-5",
4
4
  "description": "Library of React Components reusable in Luminus projects (Fleetman, CAFM)",
5
5
  "type": "module",
6
6
  "repository": {
@@ -68,7 +68,7 @@
68
68
  "react-qrcode-logo": "^3.0.0",
69
69
  "react-responsive": "^10.0.0",
70
70
  "react-router": "7.x",
71
- "tanstack-bnf-table": ">=0.2.3",
71
+ "tanstack-bnf-table": "0.x",
72
72
  "zod": "^3.25.76"
73
73
  },
74
74
  "dependencies": {