@theroutingcompany/components 0.0.121 → 0.0.122-alpha.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/dist/trc-components.es.js +937 -915
- package/dist/trc-components.es.js.map +1 -1
- package/dist/trc-components.umd.js +296 -287
- package/dist/trc-components.umd.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/types/components/GoogleInput/GoogleInput.d.ts +1 -0
- package/types/components/Input/InputBase.d.ts +4 -0
package/package.json
CHANGED
|
@@ -30,6 +30,10 @@ export declare function defaultFormInput({ paddingSize, }: {
|
|
|
30
30
|
}): FlattenSimpleInterpolation;
|
|
31
31
|
export declare const InputBase: import("styled-components").StyledComponent<"input", any, InputBaseProps, never>;
|
|
32
32
|
export declare const InputWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
33
|
+
export declare const InputDescriptionWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
34
|
+
export declare const InputDescription: ({ children }: {
|
|
35
|
+
children: any;
|
|
36
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
33
37
|
export declare const InputErrorMessageWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
34
38
|
export declare const InputErrorMessage: ({ children }: {
|
|
35
39
|
children: any;
|