@oc-digital/react-component-library 8.17.3 → 8.17.4

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.
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface IAlphabeticalListProps {
2
3
  array: any[] | undefined | null;
3
4
  sortFn?: (arg1: any, arg2: any) => number;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IAuthoriserProp } from "../globals";
2
3
  import type { ButtonProps } from "@mui/material/Button";
3
4
  export type IButtonProps<C extends React.ElementType = React.ElementType> = ButtonProps<C, {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IAuthoriserProp } from "../globals";
2
3
  import { ButtonProps } from "@mui/material";
3
4
  export interface IButtonWithConfirmProps extends ButtonProps, IAuthoriserProp {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface IContentBoxProps {
2
3
  id?: string;
3
4
  children: React.ReactNode;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface IContentLabelProps {
2
3
  children: React.ReactNode;
3
4
  styling?: null | string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  interface ITableCheckboxProps {
2
3
  disabled?: boolean;
3
4
  value: boolean | null | undefined;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface ISearchBarProps {
2
3
  array: any[] | undefined | null;
3
4
  sortFn?: (arg1: any, arg2: any) => number;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { OutlinedTextFieldProps } from "@mui/material";
2
3
  import { IAuthoriserProp } from "../globals";
3
4
  export interface ISelectProps extends IAuthoriserProp, Omit<OutlinedTextFieldProps, "variant"> {