@theroutingcompany/components 0.0.117-alpha.4 → 0.0.117-alpha.6
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/dist/trc-components.es.js +1741 -1740
- package/dist/trc-components.es.js.map +1 -1
- package/dist/trc-components.umd.js +131 -131
- package/dist/trc-components.umd.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/types/components/FormControl/FormControl.d.ts +1 -0
- package/types/components/Input/TextArea/TextArea.d.ts +2 -0
- package/types/components/Page/Page.d.ts +3 -3
- package/types/components/SingleSelect/SingleSelect.d.ts +1 -1
package/package.json
CHANGED
|
@@ -73,6 +73,7 @@ export declare const TextAreaFormControl: import("react").ForwardRefExoticCompon
|
|
|
73
73
|
rows?: number | undefined;
|
|
74
74
|
errorMessage?: ReactNode;
|
|
75
75
|
validationState?: "invalid" | "valid" | "invalid-disabled" | undefined;
|
|
76
|
+
boldLabel?: boolean | undefined;
|
|
76
77
|
} & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
77
78
|
export declare const NumberFormControl: import("react").ForwardRefExoticComponent<{
|
|
78
79
|
errorMessage?: ReactNode;
|
|
@@ -7,10 +7,12 @@ export type TextAreaInputProps = ReactAriaInputProps & InputBaseProps & {
|
|
|
7
7
|
rows?: number;
|
|
8
8
|
errorMessage?: ReactNode;
|
|
9
9
|
validationState?: 'valid' | 'invalid' | 'invalid-disabled';
|
|
10
|
+
boldLabel?: boolean;
|
|
10
11
|
};
|
|
11
12
|
export declare const TextAreaInput: import("react").ForwardRefExoticComponent<ReactAriaInputProps & InputBaseProps & {
|
|
12
13
|
rows?: number | undefined;
|
|
13
14
|
errorMessage?: ReactNode;
|
|
14
15
|
validationState?: "invalid" | "valid" | "invalid-disabled" | undefined;
|
|
16
|
+
boldLabel?: boolean | undefined;
|
|
15
17
|
} & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
16
18
|
export {};
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* |-------------------------|---------------------|---------|
|
|
5
5
|
* | Min width for columns | `--min-col-width` | 0 |
|
|
6
6
|
*/
|
|
7
|
-
export declare const PageGrid: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
|
+
export declare const PageGrid: import("styled-components").StyledComponent<import("../..").ForwardRefComponent<"div", import("components/Box").BoxProps>, any, {}, never>;
|
|
8
8
|
/** CSS for limiting page width
|
|
9
9
|
*
|
|
10
10
|
* | Description | CSS Variable | Default |
|
|
@@ -22,6 +22,6 @@ export declare const pageMinMaxWidth: import("styled-components").FlattenSimpleI
|
|
|
22
22
|
* | Ideal width | `--page-ideal-width`| 85% |
|
|
23
23
|
* | Max width | `--page-max-width` | 1600px |
|
|
24
24
|
*/
|
|
25
|
-
export declare const Page: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
25
|
+
export declare const Page: import("styled-components").StyledComponent<import("../..").ForwardRefComponent<"div", import("components/Box").BoxProps>, any, {}, never>;
|
|
26
26
|
/** This is just a <Box/> with a name for consistent padding on page layouts */
|
|
27
|
-
export declare const PageContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
27
|
+
export declare const PageContent: import("styled-components").StyledComponent<import("../..").ForwardRefComponent<"div", import("components/Box").BoxProps>, any, {}, never>;
|
|
@@ -26,7 +26,7 @@ export declare const TriggerButton: import("styled-components").StyledComponent<
|
|
|
26
26
|
children?: React.ReactNode;
|
|
27
27
|
tabIndex?: number | undefined;
|
|
28
28
|
cursor?: string | undefined;
|
|
29
|
-
} & import("
|
|
29
|
+
} & import("components/Box").BoxProps & React.RefAttributes<HTMLDivElement>>, any, {
|
|
30
30
|
as: string;
|
|
31
31
|
} & TriggerButtonProps, "as">;
|
|
32
32
|
export interface TriggerButtonProps {
|