@croquiscom/pds 8.36.0 → 8.37.0
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/CHANGELOG.md +6 -0
- package/dist/components/form/FormField.d.ts +6 -1
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/plugin/ui.html +1 -1
- package/plugin/ui.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -47,6 +47,11 @@ export interface FormFieldProps {
|
|
|
47
47
|
*/
|
|
48
48
|
position?: FormFieldPosition;
|
|
49
49
|
children?: ReactNode;
|
|
50
|
+
/**
|
|
51
|
+
* FormField Container의 너비를 지정할 수 있습니다.
|
|
52
|
+
* @default 100%
|
|
53
|
+
*/
|
|
54
|
+
width?: CSSValueWithLength;
|
|
50
55
|
}
|
|
51
|
-
export declare const FormField: ({ className, label, status, rightAddon, required, helper, formHelperText, labelWidth, alignment, position, children, }: PropsWithChildren<FormFieldProps>) => React.JSX.Element;
|
|
56
|
+
export declare const FormField: ({ className, label, status, rightAddon, required, helper, formHelperText, width, labelWidth, alignment, position, children, }: PropsWithChildren<FormFieldProps>) => React.JSX.Element;
|
|
52
57
|
export {};
|