@hexure/ui 1.3.3 → 1.3.4
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/cjs/index.js +2065 -2066
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Field/Field.d.ts +1 -1
- package/dist/esm/index.js +2040 -2041
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Field/Field.d.ts +1 -1
- package/dist/index.d.ts +54 -54
- package/package.json +1 -1
|
@@ -6,8 +6,8 @@ interface ActionProps {
|
|
|
6
6
|
}
|
|
7
7
|
export interface FieldProps extends AccessibleProps {
|
|
8
8
|
action?: ActionProps;
|
|
9
|
-
margin?: string;
|
|
10
9
|
required?: boolean;
|
|
10
|
+
style?: object;
|
|
11
11
|
/** Tie the field label to the nested input. This should match the name defined on the input */
|
|
12
12
|
htmlFor?: string;
|
|
13
13
|
/** It is used to pass child nodes, string values and number as child components. */
|