indicator-ui 1.1.29 → 1.1.31
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 +7 -7
- package/dist/index.js +9043 -8841
- package/dist/indicator-ui.css +1 -1
- package/dist/types/src/ui/CheckboxV2/index.d.ts +1 -0
- package/dist/types/src/ui/CheckboxV2/styles/components/index.d.ts +5 -0
- package/dist/types/src/ui/CheckboxV2/ui/CheckboxMain.d.ts +5 -0
- package/dist/types/src/ui/CheckboxV2/ui/CheckboxV2.d.ts +7 -0
- package/dist/types/src/ui/CheckboxV2/ui/components/InfoWrapper.d.ts +4 -0
- package/dist/types/src/ui/CheckboxV2/ui/components/MainWrapper.d.ts +5 -0
- package/dist/types/src/ui/CheckboxV2/ui/components/Mark.d.ts +7 -0
- package/dist/types/src/ui/CheckboxV2/ui/components/Subtitle.d.ts +8 -0
- package/dist/types/src/ui/CheckboxV2/ui/components/Title.d.ts +7 -0
- package/dist/types/src/ui/CheckboxV2/ui/components/index.d.ts +5 -0
- package/dist/types/src/ui/CheckboxV2/ui/index.d.ts +1 -0
- package/dist/types/src/ui/RoundButton/context/index.d.ts +7 -0
- package/dist/types/src/ui/RoundButton/index.d.ts +1 -0
- package/dist/types/src/ui/RoundButton/styles/components/index.d.ts +3 -0
- package/dist/types/src/ui/RoundButton/styles/hierarchy/index.d.ts +6 -0
- package/dist/types/src/ui/RoundButton/styles/index.d.ts +0 -0
- package/dist/types/src/ui/RoundButton/ui/RoundButton.d.ts +12 -0
- package/dist/types/src/ui/RoundButton/ui/components/BaseRoundButton.d.ts +10 -0
- package/dist/types/src/ui/RoundButton/ui/components/IconBlock.d.ts +7 -0
- package/dist/types/src/ui/RoundButton/ui/components/TextBlock.d.ts +7 -0
- package/dist/types/src/ui/RoundButton/ui/components/index.d.ts +3 -0
- package/dist/types/src/ui/RoundButton/ui/hierarchy/OutlineColor.d.ts +5 -0
- package/dist/types/src/ui/RoundButton/ui/hierarchy/Primary.d.ts +5 -0
- package/dist/types/src/ui/RoundButton/ui/hierarchy/SecondaryColor.d.ts +5 -0
- package/dist/types/src/ui/RoundButton/ui/hierarchy/SecondaryGray.d.ts +5 -0
- package/dist/types/src/ui/RoundButton/ui/hierarchy/SecondaryLight.d.ts +5 -0
- package/dist/types/src/ui/RoundButton/ui/hierarchy/Tooltip.d.ts +5 -0
- package/dist/types/src/ui/RoundButton/ui/hierarchy/index.d.ts +6 -0
- package/dist/types/src/ui/RoundButton/ui/index.d.ts +1 -0
- package/dist/types/src/ui/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ui';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { default as MarkStyle } from './Mark.module.scss';
|
|
2
|
+
export { default as InfoWrapperStyle } from './InfoWrapper.module.scss';
|
|
3
|
+
export { default as TitleStyle } from './Title.module.scss';
|
|
4
|
+
export { default as SubtitleStyle } from './Subtitle.module.scss';
|
|
5
|
+
export { default as MainWrapperStyle } from './MainWrapper.module.scss';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Mark, Title, Subtitle, MainWrapper } from './components';
|
|
3
|
+
type PropsType = React.ComponentProps<typeof MainWrapper> & Pick<React.ComponentProps<typeof Mark>, 'status' | 'error' | 'disabled'> & Pick<React.ComponentProps<typeof Title>, 'title'> & Pick<React.ComponentProps<typeof Subtitle>, 'subtitle'>;
|
|
4
|
+
export declare function CheckboxMain(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { PropsForWithInstanceRef } from '../../../../types';
|
|
3
|
+
type PropsType = PropsForWithInstanceRef<'div', React.ComponentRef<'div'>>;
|
|
4
|
+
export declare function MainWrapper(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CheckboxV2';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ui';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { default as PrimaryStyle } from './Primary.module.scss';
|
|
2
|
+
export { default as SecondaryColorStyle } from './SecondaryColor.module.scss';
|
|
3
|
+
export { default as SecondaryGrayStyle } from './SecondaryGray.module.scss';
|
|
4
|
+
export { default as SecondaryLightStyle } from './SecondaryLight.module.scss';
|
|
5
|
+
export { default as OutlineColorStyle } from './OutlineColor.module.scss';
|
|
6
|
+
export { default as TooltipStyle } from './Tooltip.module.scss';
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Primary, SecondaryColor, SecondaryGray, SecondaryLight, Tooltip, OutlineColor } from './hierarchy';
|
|
2
|
+
import { IconBlock, TextBlock } from './components';
|
|
3
|
+
export declare const RoundButton: {
|
|
4
|
+
Primary: typeof Primary;
|
|
5
|
+
SecondaryColor: typeof SecondaryColor;
|
|
6
|
+
SecondaryGray: typeof SecondaryGray;
|
|
7
|
+
SecondaryLight: typeof SecondaryLight;
|
|
8
|
+
OutlineColor: typeof OutlineColor;
|
|
9
|
+
Tooltip: typeof Tooltip;
|
|
10
|
+
TextBlock: typeof TextBlock;
|
|
11
|
+
IconBlock: typeof IconBlock;
|
|
12
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as React, ElementType } from 'react';
|
|
2
|
+
import { PolyPropsWithInstanceRef } from '../../../../types';
|
|
3
|
+
type PropsType<T extends ElementType> = PolyPropsWithInstanceRef<T, React.ComponentRef<T>, {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
className?: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
onClick?: React.MouseEventHandler<ElementType>;
|
|
8
|
+
}>;
|
|
9
|
+
export declare function BaseRoundButton<T extends ElementType = 'button'>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { PropsFor } from '../../../../types';
|
|
3
|
+
type PropsType = PropsFor<'span', {
|
|
4
|
+
text?: React.ReactNode;
|
|
5
|
+
}>;
|
|
6
|
+
export declare function TextBlock(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React, ElementType } from 'react';
|
|
2
|
+
import { BaseRoundButton } from '../components';
|
|
3
|
+
type PropsType<T extends ElementType> = React.ComponentProps<typeof BaseRoundButton<T>>;
|
|
4
|
+
export declare function OutlineColor<T extends ElementType>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React, ElementType } from 'react';
|
|
2
|
+
import { BaseRoundButton } from '../components';
|
|
3
|
+
type PropsType<T extends ElementType> = React.ComponentProps<typeof BaseRoundButton<T>>;
|
|
4
|
+
export declare function Primary<T extends ElementType>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React, ElementType } from 'react';
|
|
2
|
+
import { BaseRoundButton } from '../components';
|
|
3
|
+
type PropsType<T extends ElementType> = React.ComponentProps<typeof BaseRoundButton<T>>;
|
|
4
|
+
export declare function SecondaryColor<T extends ElementType>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React, ElementType } from 'react';
|
|
2
|
+
import { BaseRoundButton } from '../components';
|
|
3
|
+
type PropsType<T extends ElementType> = React.ComponentProps<typeof BaseRoundButton<T>>;
|
|
4
|
+
export declare function SecondaryGray<T extends ElementType>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React, ElementType } from 'react';
|
|
2
|
+
import { BaseRoundButton } from '../components';
|
|
3
|
+
type PropsType<T extends ElementType> = React.ComponentProps<typeof BaseRoundButton<T>>;
|
|
4
|
+
export declare function SecondaryLight<T extends ElementType>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React, ElementType } from 'react';
|
|
2
|
+
import { BaseRoundButton } from '../components';
|
|
3
|
+
type PropsType<T extends ElementType> = React.ComponentProps<typeof BaseRoundButton<T>>;
|
|
4
|
+
export declare function Tooltip<T extends ElementType>(props: PropsType<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { Primary } from './Primary';
|
|
2
|
+
export { SecondaryColor } from './SecondaryColor';
|
|
3
|
+
export { SecondaryGray } from './SecondaryGray';
|
|
4
|
+
export { SecondaryLight } from './SecondaryLight';
|
|
5
|
+
export { OutlineColor } from './OutlineColor';
|
|
6
|
+
export { Tooltip } from './Tooltip';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './RoundButton';
|