@oc-digital/react-component-library 4.6.0-beta.2 → 4.7.0-beta.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/build/Button/Button.d.ts +2 -2
- package/build/EditableTable/defaultCells.d.ts +9 -5
- package/build/NavbarLayout/Navbar.d.ts +2 -2
- package/build/NavbarLayout/NavbarLayout.d.ts +1 -1
- package/build/StaticTable/StaticTable.types.d.ts +1 -1
- package/build/TextField/TextField.d.ts +1 -1
- package/build/ThemeProvider/index.d.ts +5 -0
- package/build/index.d.ts +2 -3
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/build/EditableTable/components/TableDateInput.d.ts +0 -9
- package/build/EditableTable/components/styled/Input.d.ts +0 -5
- package/build/EditableTable/components/styled/SmallError.d.ts +0 -5
- package/build/styles/colours.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
interface ITableDateInputProps {
|
|
3
|
-
disabled: boolean;
|
|
4
|
-
value: Date | string | null | undefined;
|
|
5
|
-
error: string | false;
|
|
6
|
-
onChange: (value: Date | string) => void;
|
|
7
|
-
}
|
|
8
|
-
export declare const TableDateInput: ({ disabled, value, error, onChange, }: ITableDateInputProps) => JSX.Element;
|
|
9
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const Input: import("@emotion/styled").StyledComponent<{
|
|
3
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
-
as?: import("react").ElementType<any> | undefined;
|
|
5
|
-
}, import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {}>;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const SmallError: import("@emotion/styled").StyledComponent<{
|
|
3
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
-
as?: import("react").ElementType<any> | undefined;
|
|
5
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, {}>;
|