@uniformdev/design-system 17.4.1-alpha.230 → 17.4.1-alpha.250
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/esm/index.js +93 -89
- package/dist/index.d.ts +4 -0
- package/dist/index.js +89 -85
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -489,6 +489,8 @@ declare type FieldsetProps = React$1.HTMLAttributes<HTMLFieldSetElement> & {
|
|
|
489
489
|
disabled?: boolean;
|
|
490
490
|
actionButton?: React$1.ReactElement;
|
|
491
491
|
children: React$1.ReactNode;
|
|
492
|
+
/** Inverts the background to white for use on forms that already have a gray background */
|
|
493
|
+
invert?: boolean;
|
|
492
494
|
};
|
|
493
495
|
/** @example <Fieldset legend={<Legend>what a legend</Legend>}>some child component</Fieldset> */
|
|
494
496
|
declare const Fieldset: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLFieldSetElement> & {
|
|
@@ -498,6 +500,8 @@ declare const Fieldset: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes
|
|
|
498
500
|
disabled?: boolean | undefined;
|
|
499
501
|
actionButton?: React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>> | undefined;
|
|
500
502
|
children: React$1.ReactNode;
|
|
503
|
+
/** Inverts the background to white for use on forms that already have a gray background */
|
|
504
|
+
invert?: boolean | undefined;
|
|
501
505
|
} & React$1.RefAttributes<HTMLFieldSetElement>>;
|
|
502
506
|
|
|
503
507
|
declare type LegendProps = {
|