@thecb/components 8.2.1-beta.5 → 8.2.1
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/package.json +1 -1
- package/src/components/atoms/form-layouts/index.d.ts +5 -1
- package/src/components/atoms/form-select/index.d.ts +5 -1
- package/src/index.d.ts +1 -1
- package/src/types/common/ErrorMessageDictionary.ts +1 -1
- package/src/types/common/FormSelectOption.ts +4 -0
- package/src/types/common/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import Expand from "../../../util/expand";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
ErrorMessageDictionary,
|
|
5
|
+
Field,
|
|
6
|
+
FieldActions
|
|
7
|
+
} from "../../../types/common";
|
|
4
8
|
|
|
5
9
|
export interface FormInputProps {
|
|
6
10
|
extraStyles?: string;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import Expand from "../../../util/expand";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
ErrorMessageDictionary,
|
|
5
|
+
Field,
|
|
6
|
+
FieldActions
|
|
7
|
+
} from "../../../types/common";
|
|
4
8
|
|
|
5
9
|
interface Option {
|
|
6
10
|
text?: string;
|
package/src/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./components";
|
|
2
|
-
export * from
|
|
2
|
+
export * from "./types/common";
|
|
@@ -2,4 +2,4 @@ export { default as Field } from "./Field";
|
|
|
2
2
|
export { default as ReduxAction } from "./ReduxAction";
|
|
3
3
|
export { default as FieldActions } from "./FieldActions";
|
|
4
4
|
export { default as ErrorMessageDictionary } from "./ErrorMessageDictionary";
|
|
5
|
-
export * from
|
|
5
|
+
export * from "./FieldActions";
|