indicator-ui 1.0.37 → 1.0.39
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.cjs +6 -6
- package/dist/index.js +790 -783
- package/dist/indicator-ui.css +1 -1
- package/dist/types/src/ui/UserPick/ui/UserPick.d.ts +3 -5
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { AsProps } from '../../../types';
|
|
2
|
+
export type PropsType = AsProps<'div', {
|
|
2
3
|
/**
|
|
3
4
|
* Ссылка на изображение.
|
|
4
5
|
*
|
|
@@ -10,9 +11,6 @@ export type PropsType = {
|
|
|
10
11
|
* которому будет равна длинна и высота картинки.
|
|
11
12
|
* */
|
|
12
13
|
size?: '20' | '24' | '32' | '40' | '48' | '64' | '72' | '80' | '96' | '120' | '144' | '160' | number;
|
|
13
|
-
/** Дополнительные имена стилей */
|
|
14
|
-
additionStyles?: string | string[];
|
|
15
|
-
className?: string;
|
|
16
14
|
disabled?: boolean;
|
|
17
|
-
}
|
|
15
|
+
}>;
|
|
18
16
|
export declare function UserPick(props: PropsType): import("react/jsx-runtime").JSX.Element;
|