@ansible/ansible-ui-framework 2.4.2315 → 2.4.2317
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/PageForm/Inputs/PageFormCheckbox.d.ts +1 -0
- package/index.js +1 -0
- package/index.umd.cjs +125 -125
- package/package.json +1 -1
|
@@ -10,5 +10,6 @@ export type PageFormCheckboxProps<TFieldValues extends FieldValues = FieldValues
|
|
|
10
10
|
label?: string;
|
|
11
11
|
defaultValue?: boolean;
|
|
12
12
|
enableReset?: boolean;
|
|
13
|
+
className?: string;
|
|
13
14
|
} & Pick<CheckboxProps, 'description' | 'readOnly' | 'isDisabled' | 'isRequired'>;
|
|
14
15
|
export declare function PageFormCheckbox<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: PageFormCheckboxProps<TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
|
package/index.js
CHANGED
|
@@ -41419,6 +41419,7 @@ function iOe(e) {
|
|
|
41419
41419
|
id: e.id ?? t.split(".").join("-"),
|
|
41420
41420
|
"data-cy": e.id ?? t.split(".").join("-"),
|
|
41421
41421
|
"aria-label": e.label,
|
|
41422
|
+
className: e.className,
|
|
41422
41423
|
label: /* @__PURE__ */ g.jsxs("div", { style: { display: "flex" }, children: [
|
|
41423
41424
|
/* @__PURE__ */ g.jsxs("div", { children: [
|
|
41424
41425
|
e.label,
|