@hexure/ui 1.3.2 → 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 +21 -22
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Field/Field.d.ts +1 -1
- package/dist/esm/index.js +21 -22
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Field/Field.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- 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. */
|
package/dist/index.d.ts
CHANGED
|
@@ -166,8 +166,8 @@ interface ActionProps {
|
|
|
166
166
|
}
|
|
167
167
|
interface FieldProps extends AccessibleProps {
|
|
168
168
|
action?: ActionProps;
|
|
169
|
-
margin?: string;
|
|
170
169
|
required?: boolean;
|
|
170
|
+
style?: object;
|
|
171
171
|
/** Tie the field label to the nested input. This should match the name defined on the input */
|
|
172
172
|
htmlFor?: string;
|
|
173
173
|
/** It is used to pass child nodes, string values and number as child components. */
|