fui-material 0.1.88 → 0.1.89
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/material/FNative/FNative.d.ts +5 -1
- package/dist/cjs/types/material/FNative/FNative.stories.d.ts +5 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/material/FNative/FNative.d.ts +5 -1
- package/dist/esm/types/material/FNative/FNative.stories.d.ts +5 -0
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -486,7 +486,11 @@ interface IFNative {
|
|
|
486
486
|
st?: React.CSSProperties;
|
|
487
487
|
children?: React.ReactChild | React.ReactNode;
|
|
488
488
|
value?: string[];
|
|
489
|
-
|
|
489
|
+
singleChoice?: (element: string[]) => void;
|
|
490
|
+
multipleChoice?: (element: string[]) => void;
|
|
491
|
+
disabled?: boolean;
|
|
492
|
+
size?: number;
|
|
493
|
+
overflowX?: boolean;
|
|
490
494
|
}
|
|
491
495
|
declare const FNative: FC<IFNative>;
|
|
492
496
|
|