aq-fe-framework 0.1.821 → 0.1.823
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/{MySelect-wDc5_mvd.d.mts → MySelect-CEgpggSF.d.mts} +1 -5
- package/dist/{chunk-Z4ANBHUG.mjs → chunk-TDWUIY6G.mjs} +1293 -1274
- package/dist/components/index.d.mts +4 -0
- package/dist/components/index.mjs +1 -1
- package/dist/core/index.d.mts +10 -4
- package/dist/core/index.mjs +3 -1
- package/dist/coreService/index.mjs +1 -1
- package/dist/modules-features/index.mjs +1 -1
- package/dist/shared/index.d.mts +1 -1
- package/dist/shared/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -4,13 +4,9 @@ import { ReactNode } from 'react';
|
|
|
4
4
|
|
|
5
5
|
interface MySelectProps extends SelectProps {
|
|
6
6
|
label?: ReactNode;
|
|
7
|
-
data?: Array<string | {
|
|
8
|
-
value: string;
|
|
9
|
-
label: string;
|
|
10
|
-
}>;
|
|
11
7
|
isLoading?: boolean;
|
|
12
8
|
isError?: boolean;
|
|
13
9
|
}
|
|
14
|
-
declare function MySelect({ label,
|
|
10
|
+
declare function MySelect({ label, isLoading, isError, ...rest }: MySelectProps): react_jsx_runtime.JSX.Element;
|
|
15
11
|
|
|
16
12
|
export { type MySelectProps as M, MySelect as a };
|