@lax-wp/design-system 0.3.98 → 0.3.99
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,12 +1,7 @@
|
|
|
1
|
-
import { FC, ReactNode } from 'react';
|
|
1
|
+
import type { FC, ReactNode } from 'react';
|
|
2
2
|
export interface PageNotFoundProps {
|
|
3
3
|
/** Custom icon to display */
|
|
4
4
|
icon?: ReactNode;
|
|
5
|
-
/** Link component for the back to home button (e.g., from react-router-dom) */
|
|
6
|
-
linkComponent?: FC<{
|
|
7
|
-
to: string;
|
|
8
|
-
children: ReactNode;
|
|
9
|
-
}>;
|
|
10
5
|
/** Path to navigate on back to home click */
|
|
11
6
|
homePath?: string;
|
|
12
7
|
/** Custom back to home text */
|
|
@@ -43,4 +43,4 @@ export interface MdInputProps {
|
|
|
43
43
|
* />
|
|
44
44
|
* ```
|
|
45
45
|
*/
|
|
46
|
-
export declare const MdInput: ({ id, value, onChange, placeholder, rows, disabled, className, textareaClassName, previewClassName, defaultMode, mode: modeProp, label, required, }: MdInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
+
export declare const MdInput: ({ id, value, onChange, placeholder, rows: minRows, disabled, className, textareaClassName, previewClassName, defaultMode, mode: modeProp, label, required, }: MdInputProps) => import("react/jsx-runtime").JSX.Element;
|