@bigbinary/neeto-fields-frontend 1.0.6 → 1.0.7
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 +4 -0
- package/dist/index.cjs.js +201 -193
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +186 -178
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +3 -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.7",
|
|
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
|
@@ -103,6 +103,9 @@ interface FieldValuesContainerProps {
|
|
|
103
103
|
formRefs?: React.RefObject<any>
|
|
104
104
|
disabled?: boolean;
|
|
105
105
|
isRequiredColumnName?: string;
|
|
106
|
+
fieldContainerClassName?: string,
|
|
107
|
+
fieldClassName?: string,
|
|
108
|
+
labelClassName?: string,
|
|
106
109
|
}
|
|
107
110
|
|
|
108
111
|
interface FieldInputsProps {
|