react-semaphor 0.0.84 → 0.0.86
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/react-semaphor.d.ts +4 -2
- package/dist/react-semaphor.js +2844 -2833
- package/dist/react-semaphor.umd.cjs +46 -46
- package/package.json +1 -1
package/dist/react-semaphor.d.ts
CHANGED
|
@@ -324,12 +324,12 @@ export declare type LoadingProps = {
|
|
|
324
324
|
export declare const NUMBER_DATA_TYPES: string[];
|
|
325
325
|
|
|
326
326
|
declare type Params = {
|
|
327
|
-
[key: string]: string | number;
|
|
327
|
+
[key: string]: string | number | string[] | number[];
|
|
328
328
|
};
|
|
329
329
|
|
|
330
330
|
export declare const resolveDataType: (value: any) => string;
|
|
331
331
|
|
|
332
|
-
export declare function SelectComponent({ title, items, value, isLoading, isError, onChange, }: SelectProps): JSX_2.Element;
|
|
332
|
+
export declare function SelectComponent({ title, items, value, isLoading, isError, onChange, className, showIcon, }: SelectProps): JSX_2.Element;
|
|
333
333
|
|
|
334
334
|
declare type SelectProps = {
|
|
335
335
|
title: string;
|
|
@@ -341,6 +341,8 @@ declare type SelectProps = {
|
|
|
341
341
|
isLoading: boolean;
|
|
342
342
|
isError: boolean;
|
|
343
343
|
onChange?: (value: string) => void;
|
|
344
|
+
className?: string;
|
|
345
|
+
showIcon?: boolean;
|
|
344
346
|
};
|
|
345
347
|
|
|
346
348
|
export declare function SemaphorQueryClient({ children, }: {
|