@inceptionbg/iui 2.0.49 → 2.0.51
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/index.d.ts +7 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/iui.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -722,6 +722,7 @@ type BaseProps = {
|
|
|
722
722
|
noBackgroundClick?: boolean;
|
|
723
723
|
noOverflow?: boolean;
|
|
724
724
|
type?: IInfoType;
|
|
725
|
+
typeIcon?: IconDefinition;
|
|
725
726
|
size?: 'm' | 'l' | 'xl';
|
|
726
727
|
className?: string;
|
|
727
728
|
classNameContent?: string;
|
|
@@ -882,7 +883,9 @@ declare const RadioLarge: FC<Props$i>;
|
|
|
882
883
|
|
|
883
884
|
interface IProps {
|
|
884
885
|
label?: string;
|
|
886
|
+
placeholder?: string;
|
|
885
887
|
onSearch: (searchText: string) => void;
|
|
888
|
+
size?: 's' | 'm';
|
|
886
889
|
className?: string;
|
|
887
890
|
ref?: Ref<HTMLInputElement>;
|
|
888
891
|
}
|
|
@@ -1283,6 +1286,10 @@ interface IPageLayoutProps {
|
|
|
1283
1286
|
title: string;
|
|
1284
1287
|
descEl: ReactNode;
|
|
1285
1288
|
};
|
|
1289
|
+
search?: {
|
|
1290
|
+
placeholder?: string;
|
|
1291
|
+
onSearch: (search: string) => void;
|
|
1292
|
+
};
|
|
1286
1293
|
noAccess?: boolean;
|
|
1287
1294
|
isInitiallyLoading?: boolean;
|
|
1288
1295
|
isLoading?: boolean;
|