@bigbinary/neeto-fields-frontend 1.0.6 → 1.0.8
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/README.md +16 -10
- package/dist/index.cjs.js +208 -196
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +193 -181
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-fields-frontend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A repo acts as the source of truth for the new nano's structure, configs, data etc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-fields-nano",
|
package/types.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ interface FieldValuesContainerProps {
|
|
|
95
95
|
resourceType: string;
|
|
96
96
|
fieldValues: KeyValuePair[];
|
|
97
97
|
resourceId: string;
|
|
98
|
+
fields?: KeyValuePair[];
|
|
98
99
|
ownerId?: string;
|
|
99
100
|
queryKeysToBeInvalidatedOnSuccess?: string[];
|
|
100
101
|
customComponents?: KeyValuePair;
|
|
@@ -103,6 +104,9 @@ interface FieldValuesContainerProps {
|
|
|
103
104
|
formRefs?: React.RefObject<any>
|
|
104
105
|
disabled?: boolean;
|
|
105
106
|
isRequiredColumnName?: string;
|
|
107
|
+
fieldContainerClassName?: string,
|
|
108
|
+
fieldClassName?: string,
|
|
109
|
+
labelClassName?: string,
|
|
106
110
|
}
|
|
107
111
|
|
|
108
112
|
interface FieldInputsProps {
|