@qiwi/pijma-mobile 1.151.0 → 1.152.1
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/lib/dts/core/src/block/Block.d.ts +2 -1
- package/lib/dts/core/src/breaker/Breaker.d.ts +5 -2
- package/lib/dts/core/src/field/OptionField.d.ts +1 -0
- package/lib/dts/core/src/form/Form.d.ts +2 -1
- package/lib/dts/core/src/grid/Grid.d.ts +2 -1
- package/lib/dts/core/src/primitive/Card.d.ts +0 -2
- package/lib/dts/core/src/primitive/Combos.d.ts +0 -18
- package/lib/dts/core/src/primitive/Flex.d.ts +0 -2
- package/lib/dts/core/src/primitive/FlexItem.d.ts +0 -2
- package/lib/dts/core/src/primitive/MaskInput.d.ts +0 -2
- package/lib/dts/core/src/primitive/Pos.d.ts +0 -2
- package/lib/dts/core/src/primitive/Svg.d.ts +3 -3
- package/lib/dts/core/src/spacer/Spacer.d.ts +2 -1
- package/lib/dts/core/src/striper/Striper.d.ts +5 -2
- package/lib/dts/mobile/src/actions/Actions.d.ts +2 -1
- package/lib/dts/mobile/src/block-content/BlockContent.d.ts +2 -1
- package/lib/dts/mobile/src/drop-up/DropUp.d.ts +1 -0
- package/lib/dts/mobile/src/header/Header.d.ts +2 -1
- package/lib/dts/mobile/src/header/HeaderMenu.d.ts +1 -0
- package/lib/dts/mobile/src/input-modal/InputModal.d.ts +2 -1
- package/lib/dts/mobile/src/link/FileLink.d.ts +2 -1
- package/lib/dts/mobile/src/link/Link.d.ts +2 -1
- package/lib/dts/mobile/src/menu/MenuContainer.d.ts +5 -2
- package/lib/dts/mobile/src/modal/SimpleModal.d.ts +2 -1
- package/lib/dts/mobile/src/nav-link/NavLink.d.ts +2 -1
- package/lib/dts/mobile/src/notice/Notice.d.ts +1 -0
- package/lib/dts/mobile/src/status/Status.d.ts +1 -0
- package/lib/dts/mobile/src/typography/Caption.d.ts +2 -1
- package/lib/dts/mobile/src/typography/Heading.d.ts +2 -1
- package/lib/dts/mobile/src/typography/Paragraph.d.ts +2 -1
- package/lib/dts/mobile/src/typography/Text.d.ts +2 -1
- package/lib/dts/mobile/src/typography/Title.d.ts +2 -1
- package/lib/es5/button/Button.js +1 -0
- package/lib/es5/drop-up/DropUp.js +2 -0
- package/lib/es5/input-modal/InputModal.js +2 -0
- package/lib/es5/modal/SimpleModal.js +21 -21
- package/lib/es5/suggest-field/SuggestField.js +3 -1
- package/lib/es6/button/Button.js +1 -0
- package/lib/es6/drop-up/DropUp.js +2 -0
- package/lib/es6/input-modal/InputModal.js +2 -0
- package/lib/es6/modal/SimpleModal.js +20 -20
- package/lib/es6/suggest-field/SuggestField.js +3 -1
- package/package.json +3 -3
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
export interface BlockProps {
|
|
3
3
|
hover?: boolean;
|
|
4
4
|
active?: boolean;
|
|
5
5
|
focus?: boolean;
|
|
6
6
|
accent?: boolean;
|
|
7
7
|
bg?: string;
|
|
8
|
+
children?: ReactNode;
|
|
8
9
|
}
|
|
9
10
|
export declare const Block: FC<BlockProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
import { Value } from '../primitive';
|
|
3
3
|
export interface FormProps {
|
|
4
4
|
width?: Value;
|
|
@@ -8,5 +8,6 @@ export interface FormProps {
|
|
|
8
8
|
minHeight?: Value;
|
|
9
9
|
maxHeight?: Value;
|
|
10
10
|
onSubmit?: () => void;
|
|
11
|
+
children?: ReactNode;
|
|
11
12
|
}
|
|
12
13
|
export declare const Form: FC<FormProps>;
|
|
@@ -25,7 +25,5 @@ export declare const Card: import("@emotion/styled/types/base").StyledComponent<
|
|
|
25
25
|
theme?: Theme | undefined;
|
|
26
26
|
as?: import("react").ElementType<any> | undefined;
|
|
27
27
|
} & BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
28
|
-
children?: import("react").ReactNode;
|
|
29
|
-
} & {
|
|
30
28
|
theme?: Theme | undefined;
|
|
31
29
|
} & CardProps, {}, {}>;
|
|
@@ -3,71 +3,53 @@ export declare const BoxLnk: import("@emotion/styled/types/base").StyledComponen
|
|
|
3
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
4
|
as?: import("react").ElementType<any> | undefined;
|
|
5
5
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
6
|
-
children?: import("react").ReactNode;
|
|
7
|
-
} & {
|
|
8
6
|
theme?: import("@emotion/react").Theme | undefined;
|
|
9
7
|
} & import("./Lnk").LnkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, {}, {}>;
|
|
10
8
|
export declare const CardLnk: import("@emotion/styled/types/base").StyledComponent<{
|
|
11
9
|
theme?: import("@emotion/react").Theme | undefined;
|
|
12
10
|
as?: import("react").ElementType<any> | undefined;
|
|
13
11
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
14
|
-
children?: import("react").ReactNode;
|
|
15
|
-
} & {
|
|
16
12
|
theme?: import("@emotion/react").Theme | undefined;
|
|
17
13
|
} & import("./Card").CardProps & import("./Lnk").LnkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, {}, {}>;
|
|
18
14
|
export declare const PosLnk: import("@emotion/styled/types/base").StyledComponent<{
|
|
19
15
|
theme?: import("@emotion/react").Theme | undefined;
|
|
20
16
|
as?: import("react").ElementType<any> | undefined;
|
|
21
17
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
22
|
-
children?: import("react").ReactNode;
|
|
23
|
-
} & {
|
|
24
18
|
theme?: import("@emotion/react").Theme | undefined;
|
|
25
19
|
} & import("./Pos").PosProps & import("./Lnk").LnkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, {}, {}>;
|
|
26
20
|
export declare const FlexLnk: import("@emotion/styled/types/base").StyledComponent<{
|
|
27
21
|
theme?: import("@emotion/react").Theme | undefined;
|
|
28
22
|
as?: import("react").ElementType<any> | undefined;
|
|
29
23
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
30
|
-
children?: import("react").ReactNode;
|
|
31
|
-
} & {
|
|
32
24
|
theme?: import("@emotion/react").Theme | undefined;
|
|
33
25
|
} & import("./Flex").FlexProps & import("./Lnk").LnkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, {}, {}>;
|
|
34
26
|
export declare const TypoLnk: import("@emotion/styled/types/base").StyledComponent<{
|
|
35
27
|
theme?: import("@emotion/react").Theme | undefined;
|
|
36
28
|
as?: import("react").ElementType<any> | undefined;
|
|
37
29
|
} & import("./Typo").TypoProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
38
|
-
children?: import("react").ReactNode;
|
|
39
|
-
} & {
|
|
40
30
|
theme?: import("@emotion/react").Theme | undefined;
|
|
41
31
|
} & import("./Lnk").LnkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, {}, {}>;
|
|
42
32
|
export declare const BoxPos: import("@emotion/styled/types/base").StyledComponent<{
|
|
43
33
|
theme?: import("@emotion/react").Theme | undefined;
|
|
44
34
|
as?: import("react").ElementType<any> | undefined;
|
|
45
35
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
46
|
-
children?: import("react").ReactNode;
|
|
47
|
-
} & {
|
|
48
36
|
theme?: import("@emotion/react").Theme | undefined;
|
|
49
37
|
} & import("./Pos").PosProps, {}, {}>;
|
|
50
38
|
export declare const CardPos: import("@emotion/styled/types/base").StyledComponent<{
|
|
51
39
|
theme?: import("@emotion/react").Theme | undefined;
|
|
52
40
|
as?: import("react").ElementType<any> | undefined;
|
|
53
41
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
54
|
-
children?: import("react").ReactNode;
|
|
55
|
-
} & {
|
|
56
42
|
theme?: import("@emotion/react").Theme | undefined;
|
|
57
43
|
} & import("./Card").CardProps & import("./Pos").PosProps, {}, {}>;
|
|
58
44
|
export declare const FlexPos: import("@emotion/styled/types/base").StyledComponent<{
|
|
59
45
|
theme?: import("@emotion/react").Theme | undefined;
|
|
60
46
|
as?: import("react").ElementType<any> | undefined;
|
|
61
47
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
62
|
-
children?: import("react").ReactNode;
|
|
63
|
-
} & {
|
|
64
48
|
theme?: import("@emotion/react").Theme | undefined;
|
|
65
49
|
} & import("./Flex").FlexProps & import("./Pos").PosProps, {}, {}>;
|
|
66
50
|
export declare const FlexCard: import("@emotion/styled/types/base").StyledComponent<{
|
|
67
51
|
theme?: import("@emotion/react").Theme | undefined;
|
|
68
52
|
as?: import("react").ElementType<any> | undefined;
|
|
69
53
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
70
|
-
children?: import("react").ReactNode;
|
|
71
|
-
} & {
|
|
72
54
|
theme?: import("@emotion/react").Theme | undefined;
|
|
73
55
|
} & import("./Flex").FlexProps & import("./Card").CardProps, {}, {}>;
|
|
@@ -13,7 +13,5 @@ export declare const Flex: import("@emotion/styled/types/base").StyledComponent<
|
|
|
13
13
|
theme?: import("@emotion/react").Theme | undefined;
|
|
14
14
|
as?: import("react").ElementType<any> | undefined;
|
|
15
15
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
16
|
-
children?: import("react").ReactNode;
|
|
17
|
-
} & {
|
|
18
16
|
theme?: import("@emotion/react").Theme | undefined;
|
|
19
17
|
} & FlexProps, {}, {}>;
|
|
@@ -14,7 +14,5 @@ export declare const FlexItem: import("@emotion/styled/types/base").StyledCompon
|
|
|
14
14
|
theme?: import("@emotion/react").Theme | undefined;
|
|
15
15
|
as?: import("react").ElementType<any> | undefined;
|
|
16
16
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
17
|
-
children?: import("react").ReactNode;
|
|
18
|
-
} & {
|
|
19
17
|
theme?: import("@emotion/react").Theme | undefined;
|
|
20
18
|
} & FlexItemProps, {}, {}>;
|
|
@@ -3,7 +3,5 @@ export declare const MaskInput: import("@emotion/styled/types/base").StyledCompo
|
|
|
3
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
4
|
as?: import("react").ElementType<any> | undefined;
|
|
5
5
|
} & import("./Input").InputProps & import("react").ClassAttributes<HTMLInputElement> & import("react").InputHTMLAttributes<HTMLInputElement> & {
|
|
6
|
-
children?: import("react").ReactNode;
|
|
7
|
-
} & {
|
|
8
6
|
theme?: import("@emotion/react").Theme | undefined;
|
|
9
7
|
} & import("../mask").MaskedInputProps & import("react").RefAttributes<HTMLInputElement>, {}, {}>;
|
|
@@ -15,7 +15,5 @@ export declare const Pos: import("@emotion/styled/types/base").StyledComponent<{
|
|
|
15
15
|
theme?: import("@emotion/react").Theme | undefined;
|
|
16
16
|
as?: import("react").ElementType<any> | undefined;
|
|
17
17
|
} & import("./Box").BoxProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
18
|
-
children?: import("react").ReactNode;
|
|
19
|
-
} & {
|
|
20
18
|
theme?: import("@emotion/react").Theme | undefined;
|
|
21
19
|
} & PosProps, {}, {}>;
|
|
@@ -26,13 +26,13 @@ export declare const SvgItemOptions: StyledOptions<SvgItemProps>;
|
|
|
26
26
|
export declare const Path: import("@emotion/styled/types/base").StyledComponent<{
|
|
27
27
|
theme?: import("@emotion/react").Theme | undefined;
|
|
28
28
|
as?: import("react").ElementType<any> | undefined;
|
|
29
|
-
} & SvgItemProps, import("react").SVGProps<SVGSymbolElement> | import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement> | import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement> | import("react").SVGProps<SVGFilterElement> | import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement> | import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement> | import("react").SVGProps<SVGStopElement> | import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement> | import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement> | import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> | import("react").SVGProps<SVGViewElement> | import("react").SVGProps<SVGClipPathElement> | import("react").SVGProps<SVGMarkerElement> | import("react").SVGProps<SVGMaskElement> | import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> | import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement> | import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement> | import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement> | import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement> | import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement> | import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement> | import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement> | import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement> | import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement> | import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement> | import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement> | import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement> | import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> | import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement> | import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement> | import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement> | import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement> | import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement> | import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement> | import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement> | import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement> | import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement> | import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement> | import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement> | import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement> | import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement> | import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> | import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement> | import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement> | import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement> | import("react").SVGProps<SVGElement> | import("react").SVGProps<SVGCircleElement> | import("react").SVGProps<SVGDefsElement> | import("react").SVGProps<SVGDescElement> | import("react").SVGProps<SVGEllipseElement> | import("react").SVGProps<SVGFEBlendElement> | import("react").SVGProps<SVGFEColorMatrixElement> | import("react").SVGProps<SVGFEComponentTransferElement> | import("react").SVGProps<SVGFECompositeElement> | import("react").SVGProps<SVGFEConvolveMatrixElement> | import("react").SVGProps<SVGFEDiffuseLightingElement> | import("react").SVGProps<SVGFEDisplacementMapElement> | import("react").SVGProps<SVGFEDistantLightElement> | import("react").SVGProps<SVGFEDropShadowElement> | import("react").SVGProps<SVGFEFloodElement> | import("react").SVGProps<SVGFEFuncAElement> | import("react").SVGProps<SVGFEFuncBElement> | import("react").SVGProps<SVGFEFuncGElement> | import("react").SVGProps<SVGFEFuncRElement> | import("react").SVGProps<SVGFEGaussianBlurElement> | import("react").SVGProps<SVGFEImageElement> | import("react").SVGProps<SVGFEMergeElement> | import("react").SVGProps<SVGFEMergeNodeElement> | import("react").SVGProps<SVGFEMorphologyElement> | import("react").SVGProps<SVGFEOffsetElement> | import("react").SVGProps<SVGFEPointLightElement> | import("react").SVGProps<SVGFESpecularLightingElement> | import("react").SVGProps<SVGFESpotLightElement> | import("react").SVGProps<SVGFETileElement> | import("react").SVGProps<SVGFETurbulenceElement> | import("react").SVGProps<SVGForeignObjectElement> | import("react").SVGProps<SVGGElement> | import("react").SVGProps<SVGImageElement> | import("react").SVGProps<SVGLineElement> | import("react").SVGProps<SVGLinearGradientElement> | import("react").SVGProps<SVGMetadataElement> | import("react").SVGProps<SVGPathElement> | import("react").SVGProps<SVGPatternElement> | import("react").SVGProps<SVGPolygonElement> | import("react").SVGProps<SVGPolylineElement> | import("react").SVGProps<SVGRadialGradientElement> | import("react").SVGProps<SVGRectElement> | import("react").SVGProps<SVGSVGElement> | import("react").SVGProps<SVGSwitchElement> | import("react").SVGProps<SVGTextElement> | import("react").SVGProps<SVGTextPathElement> | import("react").SVGProps<SVGTSpanElement> | import("react").SVGProps<SVGUseElement> | import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, {}>;
|
|
29
|
+
} & SvgItemProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement> | import("react").SVGProps<SVGSymbolElement> | import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement> | import("react").SVGProps<SVGClipPathElement> | import("react").SVGProps<SVGFilterElement> | import("react").SVGProps<SVGMaskElement> | import("react").SVGProps<SVGMarkerElement> | import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> | import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement> | import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> | import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement> | import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement> | import("react").SVGProps<SVGTextElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement> | import("react").SVGProps<SVGCircleElement> | import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement> | import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement> | import("react").SVGProps<SVGSVGElement> | import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> | import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement> | import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement> | import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement> | import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement> | import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement> | import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement> | import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement> | import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement> | import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement> | import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement> | import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement> | import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement> | import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> | import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement> | import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement> | import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement> | import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement> | import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement> | import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement> | import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement> | import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement> | import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement> | import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement> | import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement> | import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement> | import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement> | import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement> | import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement> | import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement> | import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement> | import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement> | import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement> | import("react").SVGProps<SVGElement> | import("react").SVGProps<SVGDefsElement> | import("react").SVGProps<SVGDescElement> | import("react").SVGProps<SVGEllipseElement> | import("react").SVGProps<SVGFEBlendElement> | import("react").SVGProps<SVGFEColorMatrixElement> | import("react").SVGProps<SVGFEComponentTransferElement> | import("react").SVGProps<SVGFECompositeElement> | import("react").SVGProps<SVGFEConvolveMatrixElement> | import("react").SVGProps<SVGFEDiffuseLightingElement> | import("react").SVGProps<SVGFEDisplacementMapElement> | import("react").SVGProps<SVGFEDistantLightElement> | import("react").SVGProps<SVGFEDropShadowElement> | import("react").SVGProps<SVGFEFloodElement> | import("react").SVGProps<SVGFEFuncAElement> | import("react").SVGProps<SVGFEFuncBElement> | import("react").SVGProps<SVGFEFuncGElement> | import("react").SVGProps<SVGFEFuncRElement> | import("react").SVGProps<SVGFEGaussianBlurElement> | import("react").SVGProps<SVGFEImageElement> | import("react").SVGProps<SVGFEMergeElement> | import("react").SVGProps<SVGFEMergeNodeElement> | import("react").SVGProps<SVGFEMorphologyElement> | import("react").SVGProps<SVGFEOffsetElement> | import("react").SVGProps<SVGFEPointLightElement> | import("react").SVGProps<SVGFESpecularLightingElement> | import("react").SVGProps<SVGFESpotLightElement> | import("react").SVGProps<SVGFETileElement> | import("react").SVGProps<SVGFETurbulenceElement> | import("react").SVGProps<SVGForeignObjectElement> | import("react").SVGProps<SVGGElement> | import("react").SVGProps<SVGImageElement> | import("react").SVGProps<SVGLineElement> | import("react").SVGProps<SVGLinearGradientElement> | import("react").SVGProps<SVGMetadataElement> | import("react").SVGProps<SVGPathElement> | import("react").SVGProps<SVGPatternElement> | import("react").SVGProps<SVGPolygonElement> | import("react").SVGProps<SVGPolylineElement> | import("react").SVGProps<SVGRadialGradientElement> | import("react").SVGProps<SVGRectElement> | import("react").SVGProps<SVGStopElement> | import("react").SVGProps<SVGSwitchElement> | import("react").SVGProps<SVGTextPathElement> | import("react").SVGProps<SVGTSpanElement> | import("react").SVGProps<SVGUseElement> | import("react").SVGProps<SVGViewElement>, {}>;
|
|
30
30
|
export declare const Rect: import("@emotion/styled/types/base").StyledComponent<{
|
|
31
31
|
theme?: import("@emotion/react").Theme | undefined;
|
|
32
32
|
as?: import("react").ElementType<any> | undefined;
|
|
33
|
-
} & SvgItemProps, import("react").SVGProps<SVGSymbolElement> | import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement> | import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement> | import("react").SVGProps<SVGFilterElement> | import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement> | import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement> | import("react").SVGProps<SVGStopElement> | import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement> | import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement> | import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> | import("react").SVGProps<SVGViewElement> | import("react").SVGProps<SVGClipPathElement> | import("react").SVGProps<SVGMarkerElement> | import("react").SVGProps<SVGMaskElement> | import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> | import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement> | import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement> | import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement> | import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement> | import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement> | import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement> | import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement> | import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement> | import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement> | import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement> | import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement> | import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement> | import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> | import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement> | import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement> | import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement> | import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement> | import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement> | import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement> | import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement> | import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement> | import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement> | import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement> | import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement> | import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement> | import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement> | import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> | import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement> | import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement> | import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement> | import("react").SVGProps<SVGElement> | import("react").SVGProps<SVGCircleElement> | import("react").SVGProps<SVGDefsElement> | import("react").SVGProps<SVGDescElement> | import("react").SVGProps<SVGEllipseElement> | import("react").SVGProps<SVGFEBlendElement> | import("react").SVGProps<SVGFEColorMatrixElement> | import("react").SVGProps<SVGFEComponentTransferElement> | import("react").SVGProps<SVGFECompositeElement> | import("react").SVGProps<SVGFEConvolveMatrixElement> | import("react").SVGProps<SVGFEDiffuseLightingElement> | import("react").SVGProps<SVGFEDisplacementMapElement> | import("react").SVGProps<SVGFEDistantLightElement> | import("react").SVGProps<SVGFEDropShadowElement> | import("react").SVGProps<SVGFEFloodElement> | import("react").SVGProps<SVGFEFuncAElement> | import("react").SVGProps<SVGFEFuncBElement> | import("react").SVGProps<SVGFEFuncGElement> | import("react").SVGProps<SVGFEFuncRElement> | import("react").SVGProps<SVGFEGaussianBlurElement> | import("react").SVGProps<SVGFEImageElement> | import("react").SVGProps<SVGFEMergeElement> | import("react").SVGProps<SVGFEMergeNodeElement> | import("react").SVGProps<SVGFEMorphologyElement> | import("react").SVGProps<SVGFEOffsetElement> | import("react").SVGProps<SVGFEPointLightElement> | import("react").SVGProps<SVGFESpecularLightingElement> | import("react").SVGProps<SVGFESpotLightElement> | import("react").SVGProps<SVGFETileElement> | import("react").SVGProps<SVGFETurbulenceElement> | import("react").SVGProps<SVGForeignObjectElement> | import("react").SVGProps<SVGGElement> | import("react").SVGProps<SVGImageElement> | import("react").SVGProps<SVGLineElement> | import("react").SVGProps<SVGLinearGradientElement> | import("react").SVGProps<SVGMetadataElement> | import("react").SVGProps<SVGPathElement> | import("react").SVGProps<SVGPatternElement> | import("react").SVGProps<SVGPolygonElement> | import("react").SVGProps<SVGPolylineElement> | import("react").SVGProps<SVGRadialGradientElement> | import("react").SVGProps<SVGRectElement> | import("react").SVGProps<SVGSVGElement> | import("react").SVGProps<SVGSwitchElement> | import("react").SVGProps<SVGTextElement> | import("react").SVGProps<SVGTextPathElement> | import("react").SVGProps<SVGTSpanElement> | import("react").SVGProps<SVGUseElement> | import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, {}>;
|
|
33
|
+
} & SvgItemProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement> | import("react").SVGProps<SVGSymbolElement> | import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement> | import("react").SVGProps<SVGClipPathElement> | import("react").SVGProps<SVGFilterElement> | import("react").SVGProps<SVGMaskElement> | import("react").SVGProps<SVGMarkerElement> | import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> | import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement> | import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> | import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement> | import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement> | import("react").SVGProps<SVGTextElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement> | import("react").SVGProps<SVGCircleElement> | import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement> | import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement> | import("react").SVGProps<SVGSVGElement> | import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> | import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement> | import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement> | import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement> | import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement> | import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement> | import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement> | import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement> | import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement> | import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement> | import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement> | import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement> | import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement> | import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> | import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement> | import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement> | import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement> | import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement> | import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement> | import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement> | import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement> | import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement> | import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement> | import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement> | import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement> | import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement> | import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement> | import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement> | import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement> | import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement> | import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement> | import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement> | import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement> | import("react").SVGProps<SVGElement> | import("react").SVGProps<SVGDefsElement> | import("react").SVGProps<SVGDescElement> | import("react").SVGProps<SVGEllipseElement> | import("react").SVGProps<SVGFEBlendElement> | import("react").SVGProps<SVGFEColorMatrixElement> | import("react").SVGProps<SVGFEComponentTransferElement> | import("react").SVGProps<SVGFECompositeElement> | import("react").SVGProps<SVGFEConvolveMatrixElement> | import("react").SVGProps<SVGFEDiffuseLightingElement> | import("react").SVGProps<SVGFEDisplacementMapElement> | import("react").SVGProps<SVGFEDistantLightElement> | import("react").SVGProps<SVGFEDropShadowElement> | import("react").SVGProps<SVGFEFloodElement> | import("react").SVGProps<SVGFEFuncAElement> | import("react").SVGProps<SVGFEFuncBElement> | import("react").SVGProps<SVGFEFuncGElement> | import("react").SVGProps<SVGFEFuncRElement> | import("react").SVGProps<SVGFEGaussianBlurElement> | import("react").SVGProps<SVGFEImageElement> | import("react").SVGProps<SVGFEMergeElement> | import("react").SVGProps<SVGFEMergeNodeElement> | import("react").SVGProps<SVGFEMorphologyElement> | import("react").SVGProps<SVGFEOffsetElement> | import("react").SVGProps<SVGFEPointLightElement> | import("react").SVGProps<SVGFESpecularLightingElement> | import("react").SVGProps<SVGFESpotLightElement> | import("react").SVGProps<SVGFETileElement> | import("react").SVGProps<SVGFETurbulenceElement> | import("react").SVGProps<SVGForeignObjectElement> | import("react").SVGProps<SVGGElement> | import("react").SVGProps<SVGImageElement> | import("react").SVGProps<SVGLineElement> | import("react").SVGProps<SVGLinearGradientElement> | import("react").SVGProps<SVGMetadataElement> | import("react").SVGProps<SVGPathElement> | import("react").SVGProps<SVGPatternElement> | import("react").SVGProps<SVGPolygonElement> | import("react").SVGProps<SVGPolylineElement> | import("react").SVGProps<SVGRadialGradientElement> | import("react").SVGProps<SVGRectElement> | import("react").SVGProps<SVGStopElement> | import("react").SVGProps<SVGSwitchElement> | import("react").SVGProps<SVGTextPathElement> | import("react").SVGProps<SVGTSpanElement> | import("react").SVGProps<SVGUseElement> | import("react").SVGProps<SVGViewElement>, {}>;
|
|
34
34
|
export declare const Circle: import("@emotion/styled/types/base").StyledComponent<{
|
|
35
35
|
theme?: import("@emotion/react").Theme | undefined;
|
|
36
36
|
as?: import("react").ElementType<any> | undefined;
|
|
37
|
-
} & SvgItemProps, import("react").SVGProps<SVGSymbolElement> | import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement> | import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement> | import("react").SVGProps<SVGFilterElement> | import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement> | import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement> | import("react").SVGProps<SVGStopElement> | import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement> | import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement> | import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> | import("react").SVGProps<SVGViewElement> | import("react").SVGProps<SVGClipPathElement> | import("react").SVGProps<SVGMarkerElement> | import("react").SVGProps<SVGMaskElement> | import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> | import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement> | import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement> | import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement> | import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement> | import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement> | import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement> | import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement> | import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement> | import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement> | import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement> | import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement> | import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement> | import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> | import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement> | import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement> | import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement> | import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement> | import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement> | import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement> | import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement> | import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement> | import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement> | import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement> | import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement> | import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement> | import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement> | import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> | import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement> | import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement> | import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement> | import("react").SVGProps<SVGElement> | import("react").SVGProps<SVGCircleElement> | import("react").SVGProps<SVGDefsElement> | import("react").SVGProps<SVGDescElement> | import("react").SVGProps<SVGEllipseElement> | import("react").SVGProps<SVGFEBlendElement> | import("react").SVGProps<SVGFEColorMatrixElement> | import("react").SVGProps<SVGFEComponentTransferElement> | import("react").SVGProps<SVGFECompositeElement> | import("react").SVGProps<SVGFEConvolveMatrixElement> | import("react").SVGProps<SVGFEDiffuseLightingElement> | import("react").SVGProps<SVGFEDisplacementMapElement> | import("react").SVGProps<SVGFEDistantLightElement> | import("react").SVGProps<SVGFEDropShadowElement> | import("react").SVGProps<SVGFEFloodElement> | import("react").SVGProps<SVGFEFuncAElement> | import("react").SVGProps<SVGFEFuncBElement> | import("react").SVGProps<SVGFEFuncGElement> | import("react").SVGProps<SVGFEFuncRElement> | import("react").SVGProps<SVGFEGaussianBlurElement> | import("react").SVGProps<SVGFEImageElement> | import("react").SVGProps<SVGFEMergeElement> | import("react").SVGProps<SVGFEMergeNodeElement> | import("react").SVGProps<SVGFEMorphologyElement> | import("react").SVGProps<SVGFEOffsetElement> | import("react").SVGProps<SVGFEPointLightElement> | import("react").SVGProps<SVGFESpecularLightingElement> | import("react").SVGProps<SVGFESpotLightElement> | import("react").SVGProps<SVGFETileElement> | import("react").SVGProps<SVGFETurbulenceElement> | import("react").SVGProps<SVGForeignObjectElement> | import("react").SVGProps<SVGGElement> | import("react").SVGProps<SVGImageElement> | import("react").SVGProps<SVGLineElement> | import("react").SVGProps<SVGLinearGradientElement> | import("react").SVGProps<SVGMetadataElement> | import("react").SVGProps<SVGPathElement> | import("react").SVGProps<SVGPatternElement> | import("react").SVGProps<SVGPolygonElement> | import("react").SVGProps<SVGPolylineElement> | import("react").SVGProps<SVGRadialGradientElement> | import("react").SVGProps<SVGRectElement> | import("react").SVGProps<SVGSVGElement> | import("react").SVGProps<SVGSwitchElement> | import("react").SVGProps<SVGTextElement> | import("react").SVGProps<SVGTextPathElement> | import("react").SVGProps<SVGTSpanElement> | import("react").SVGProps<SVGUseElement> | import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, {}>;
|
|
37
|
+
} & SvgItemProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement> | import("react").SVGProps<SVGSymbolElement> | import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement> | import("react").SVGProps<SVGClipPathElement> | import("react").SVGProps<SVGFilterElement> | import("react").SVGProps<SVGMaskElement> | import("react").SVGProps<SVGMarkerElement> | import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> | import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement> | import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> | import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement> | import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement> | import("react").SVGProps<SVGTextElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement> | import("react").SVGProps<SVGCircleElement> | import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement> | import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement> | import("react").SVGProps<SVGSVGElement> | import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> | import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement> | import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement> | import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement> | import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement> | import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement> | import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement> | import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement> | import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement> | import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement> | import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement> | import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement> | import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement> | import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement> | import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> | import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement> | import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement> | import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement> | import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement> | import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement> | import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement> | import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement> | import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement> | import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement> | import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement> | import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement> | import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement> | import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement> | import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement> | import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement> | import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement> | import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement> | import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement> | import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement> | import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement> | import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement> | import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement> | import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement> | import("react").SVGProps<SVGElement> | import("react").SVGProps<SVGDefsElement> | import("react").SVGProps<SVGDescElement> | import("react").SVGProps<SVGEllipseElement> | import("react").SVGProps<SVGFEBlendElement> | import("react").SVGProps<SVGFEColorMatrixElement> | import("react").SVGProps<SVGFEComponentTransferElement> | import("react").SVGProps<SVGFECompositeElement> | import("react").SVGProps<SVGFEConvolveMatrixElement> | import("react").SVGProps<SVGFEDiffuseLightingElement> | import("react").SVGProps<SVGFEDisplacementMapElement> | import("react").SVGProps<SVGFEDistantLightElement> | import("react").SVGProps<SVGFEDropShadowElement> | import("react").SVGProps<SVGFEFloodElement> | import("react").SVGProps<SVGFEFuncAElement> | import("react").SVGProps<SVGFEFuncBElement> | import("react").SVGProps<SVGFEFuncGElement> | import("react").SVGProps<SVGFEFuncRElement> | import("react").SVGProps<SVGFEGaussianBlurElement> | import("react").SVGProps<SVGFEImageElement> | import("react").SVGProps<SVGFEMergeElement> | import("react").SVGProps<SVGFEMergeNodeElement> | import("react").SVGProps<SVGFEMorphologyElement> | import("react").SVGProps<SVGFEOffsetElement> | import("react").SVGProps<SVGFEPointLightElement> | import("react").SVGProps<SVGFESpecularLightingElement> | import("react").SVGProps<SVGFESpotLightElement> | import("react").SVGProps<SVGFETileElement> | import("react").SVGProps<SVGFETurbulenceElement> | import("react").SVGProps<SVGForeignObjectElement> | import("react").SVGProps<SVGGElement> | import("react").SVGProps<SVGImageElement> | import("react").SVGProps<SVGLineElement> | import("react").SVGProps<SVGLinearGradientElement> | import("react").SVGProps<SVGMetadataElement> | import("react").SVGProps<SVGPathElement> | import("react").SVGProps<SVGPatternElement> | import("react").SVGProps<SVGPolygonElement> | import("react").SVGProps<SVGPolylineElement> | import("react").SVGProps<SVGRadialGradientElement> | import("react").SVGProps<SVGRectElement> | import("react").SVGProps<SVGStopElement> | import("react").SVGProps<SVGSwitchElement> | import("react").SVGProps<SVGTextPathElement> | import("react").SVGProps<SVGTSpanElement> | import("react").SVGProps<SVGUseElement> | import("react").SVGProps<SVGViewElement>, {}>;
|
|
38
38
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { FunctionComponent } from 'react';
|
|
1
|
+
import { FunctionComponent, ReactNode } from 'react';
|
|
2
2
|
export interface SpacerProps {
|
|
3
3
|
size?: 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
|
|
4
|
+
children?: ReactNode;
|
|
4
5
|
}
|
|
5
6
|
export declare const Spacer: FunctionComponent<SpacerProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { ChangeEventHandler, FocusEventHandler, FunctionComponent, KeyboardEventHandler, MouseEventHandler, RefObject } from 'react';
|
|
1
|
+
import React, { ChangeEventHandler, FocusEventHandler, FunctionComponent, KeyboardEventHandler, MouseEventHandler, ReactNode, RefObject } from 'react';
|
|
2
2
|
interface InputModalProps {
|
|
3
3
|
value: string;
|
|
4
4
|
tabIndex?: number;
|
|
@@ -18,6 +18,7 @@ interface InputModalProps {
|
|
|
18
18
|
onShow?: React.MouseEventHandler;
|
|
19
19
|
onHide?: () => void;
|
|
20
20
|
onEscape?: () => void;
|
|
21
|
+
children?: ReactNode;
|
|
21
22
|
}
|
|
22
23
|
export declare const InputModal: FunctionComponent<InputModalProps>;
|
|
23
24
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
export interface FileLinkProps {
|
|
3
3
|
onClick?: (href?: string, target?: string, download?: string | boolean, rel?: string) => void;
|
|
4
4
|
onFocus?: () => void;
|
|
@@ -9,5 +9,6 @@ export interface FileLinkProps {
|
|
|
9
9
|
download?: string | boolean;
|
|
10
10
|
rel?: string;
|
|
11
11
|
title?: string;
|
|
12
|
+
children?: ReactNode;
|
|
12
13
|
}
|
|
13
14
|
export declare const FileLink: FC<FileLinkProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
export interface LinkProps {
|
|
3
3
|
onClick?: (href?: string, target?: string, download?: string | boolean, rel?: string) => void;
|
|
4
4
|
onFocus?: () => void;
|
|
@@ -14,5 +14,6 @@ export interface LinkProps {
|
|
|
14
14
|
bold?: boolean;
|
|
15
15
|
stub?: boolean;
|
|
16
16
|
inverse?: boolean;
|
|
17
|
+
children?: ReactNode;
|
|
17
18
|
}
|
|
18
19
|
export declare const Link: FC<LinkProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FunctionComponent } from 'react';
|
|
1
|
+
import { FunctionComponent, ReactNode } from 'react';
|
|
2
2
|
interface SimpleModalProps {
|
|
3
3
|
show: boolean;
|
|
4
4
|
closable?: boolean;
|
|
@@ -8,6 +8,7 @@ interface SimpleModalProps {
|
|
|
8
8
|
zIndex?: number;
|
|
9
9
|
onShow?: () => void;
|
|
10
10
|
onHide?: () => void;
|
|
11
|
+
children?: ReactNode;
|
|
11
12
|
}
|
|
12
13
|
export declare const SimpleModal: FunctionComponent<SimpleModalProps>;
|
|
13
14
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
export interface NavLinkProps {
|
|
3
3
|
onClick?: (href?: string, target?: string, download?: string | boolean, rel?: string) => void;
|
|
4
4
|
onFocus?: () => void;
|
|
@@ -10,5 +10,6 @@ export interface NavLinkProps {
|
|
|
10
10
|
rel?: string;
|
|
11
11
|
title?: string;
|
|
12
12
|
stub?: boolean;
|
|
13
|
+
children?: ReactNode;
|
|
13
14
|
}
|
|
14
15
|
export declare const NavLink: FC<NavLinkProps>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { TypoProps } from '@qiwi/pijma-core';
|
|
2
|
-
import { FunctionComponent } from 'react';
|
|
2
|
+
import { FunctionComponent, ReactNode } from 'react';
|
|
3
3
|
export interface CaptionProps {
|
|
4
4
|
color?: 'default' | 'support' | 'inverse';
|
|
5
5
|
align?: TypoProps['align'];
|
|
6
6
|
clamp?: number;
|
|
7
7
|
stub?: boolean;
|
|
8
|
+
children?: ReactNode;
|
|
8
9
|
}
|
|
9
10
|
export declare const Caption: FunctionComponent<CaptionProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypoProps } from '@qiwi/pijma-core';
|
|
2
|
-
import { FunctionComponent } from 'react';
|
|
2
|
+
import { FunctionComponent, ReactNode } from 'react';
|
|
3
3
|
export interface HeadingProps {
|
|
4
4
|
tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
5
5
|
size: '1' | '2' | '3' | '4';
|
|
@@ -7,5 +7,6 @@ export interface HeadingProps {
|
|
|
7
7
|
align?: TypoProps['align'];
|
|
8
8
|
clamp?: number;
|
|
9
9
|
stub?: boolean;
|
|
10
|
+
children?: ReactNode;
|
|
10
11
|
}
|
|
11
12
|
export declare const Heading: FunctionComponent<HeadingProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypoProps } from '@qiwi/pijma-core';
|
|
2
|
-
import { FunctionComponent } from 'react';
|
|
2
|
+
import { FunctionComponent, ReactNode } from 'react';
|
|
3
3
|
export interface ParagraphProps {
|
|
4
4
|
size?: 's' | 'm' | 'l';
|
|
5
5
|
bold?: boolean;
|
|
@@ -9,5 +9,6 @@ export interface ParagraphProps {
|
|
|
9
9
|
align?: TypoProps['align'];
|
|
10
10
|
clamp?: number;
|
|
11
11
|
stub?: boolean;
|
|
12
|
+
children?: ReactNode;
|
|
12
13
|
}
|
|
13
14
|
export declare const Paragraph: FunctionComponent<ParagraphProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypoProps } from '@qiwi/pijma-core';
|
|
2
|
-
import { FunctionComponent } from 'react';
|
|
2
|
+
import { FunctionComponent, ReactNode } from 'react';
|
|
3
3
|
export interface TextProps {
|
|
4
4
|
display?: 'block' | 'inline' | 'inline-block';
|
|
5
5
|
size?: 's' | 'm' | 'l';
|
|
@@ -12,5 +12,6 @@ export interface TextProps {
|
|
|
12
12
|
align?: TypoProps['align'];
|
|
13
13
|
clamp?: number;
|
|
14
14
|
stub?: boolean;
|
|
15
|
+
children?: ReactNode;
|
|
15
16
|
}
|
|
16
17
|
export declare const Text: FunctionComponent<TextProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypoProps } from '@qiwi/pijma-core';
|
|
2
|
-
import { FunctionComponent } from 'react';
|
|
2
|
+
import { FunctionComponent, ReactNode } from 'react';
|
|
3
3
|
export interface TitleProps {
|
|
4
4
|
tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
5
5
|
size: '1' | '2';
|
|
@@ -7,5 +7,6 @@ export interface TitleProps {
|
|
|
7
7
|
align?: TypoProps['align'];
|
|
8
8
|
stub?: boolean;
|
|
9
9
|
clamp?: number;
|
|
10
|
+
children?: ReactNode;
|
|
10
11
|
}
|
|
11
12
|
export declare const Title: FunctionComponent<TitleProps>;
|
package/lib/es5/button/Button.js
CHANGED
|
@@ -157,6 +157,7 @@ var Button = function(props) {
|
|
|
157
157
|
width: iconSize[props.size],
|
|
158
158
|
height: iconSize[props.size],
|
|
159
159
|
transition: "all 300ms cubic-bezier(0.4, 0.0, 0.2, 1)",
|
|
160
|
+
transform: "translateZ(0)",
|
|
160
161
|
children: /*#__PURE__*/ _react.default.cloneElement(props.icon, {
|
|
161
162
|
color: props.disabled ? "#666" : props.kind === "brand" ? "#fff" : "#000",
|
|
162
163
|
size: 1
|
|
@@ -109,6 +109,7 @@ var DropUp = function(props) {
|
|
|
109
109
|
onKeyDown: props.onKeyDown
|
|
110
110
|
}, dialogProps, {
|
|
111
111
|
children: /*#__PURE__*/ (0, _jsxRuntime.jsxs)(FlexPosCard, {
|
|
112
|
+
role: "document",
|
|
112
113
|
display: "flex",
|
|
113
114
|
direction: "column",
|
|
114
115
|
width: 1,
|
|
@@ -144,6 +145,7 @@ var DropUp = function(props) {
|
|
|
144
145
|
children: props.title
|
|
145
146
|
}),
|
|
146
147
|
/*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Box, {
|
|
148
|
+
"aria-label": "close",
|
|
147
149
|
width: 6,
|
|
148
150
|
height: 6,
|
|
149
151
|
ml: "auto",
|
|
@@ -59,6 +59,7 @@ var InputModal = function(props) {
|
|
|
59
59
|
overflow: "auto"
|
|
60
60
|
}, dialogProps, {
|
|
61
61
|
children: /*#__PURE__*/ (0, _jsxRuntime.jsxs)(_pijmaCore.Card, {
|
|
62
|
+
role: "document",
|
|
62
63
|
width: 1,
|
|
63
64
|
height: 1,
|
|
64
65
|
bg: "#fff",
|
|
@@ -73,6 +74,7 @@ var InputModal = function(props) {
|
|
|
73
74
|
s: "0 0 25px 0 rgba(0, 0, 0, 0.08)",
|
|
74
75
|
children: [
|
|
75
76
|
props.onBack ? /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.FlexItem, {
|
|
77
|
+
"aria-label": "back",
|
|
76
78
|
shrink: 0,
|
|
77
79
|
mr: 4,
|
|
78
80
|
onClick: props.onBack,
|
|
@@ -9,10 +9,10 @@ Object.defineProperty(exports, "SimpleModal", {
|
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
11
|
var _extends = require("@swc/helpers/lib/_extends.js").default;
|
|
12
|
-
var
|
|
12
|
+
var _interopRequireDefault = require("@swc/helpers/lib/_interop_require_default.js").default;
|
|
13
13
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
14
14
|
var _pijmaCore = require("@qiwi/pijma-core");
|
|
15
|
-
var _react = /*#__PURE__*/
|
|
15
|
+
var _react = /*#__PURE__*/ _interopRequireDefault(require("react"));
|
|
16
16
|
var ContentTransition = function(props) {
|
|
17
17
|
return /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.SimpleTransition, _extends({}, props));
|
|
18
18
|
};
|
|
@@ -100,33 +100,33 @@ var SimpleModal = function(param) {
|
|
|
100
100
|
zIndex: zIndex
|
|
101
101
|
}, dialogProps, {
|
|
102
102
|
children: /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Pos, {
|
|
103
|
+
role: "document",
|
|
103
104
|
type: "relative",
|
|
104
105
|
width: 1,
|
|
105
106
|
height: 1,
|
|
106
|
-
children: /*#__PURE__*/ (0, _jsxRuntime.
|
|
107
|
+
children: /*#__PURE__*/ (0, _jsxRuntime.jsxs)(_pijmaCore.Card, {
|
|
107
108
|
bg: "#fff",
|
|
108
109
|
p: 6,
|
|
109
110
|
width: 1,
|
|
110
111
|
height: 1,
|
|
111
112
|
overflow: "auto",
|
|
112
|
-
children:
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
})
|
|
113
|
+
children: [
|
|
114
|
+
closable && onHide ? /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Pos, {
|
|
115
|
+
"aria-label": "close",
|
|
116
|
+
type: "absolute",
|
|
117
|
+
top: 6,
|
|
118
|
+
right: 6,
|
|
119
|
+
width: 6,
|
|
120
|
+
height: 6,
|
|
121
|
+
cursor: "pointer",
|
|
122
|
+
onClick: onHide,
|
|
123
|
+
children: /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Icon, {
|
|
124
|
+
name: "cross",
|
|
125
|
+
color: "#000"
|
|
126
|
+
})
|
|
127
|
+
}) : null,
|
|
128
|
+
children
|
|
129
|
+
]
|
|
130
130
|
})
|
|
131
131
|
})
|
|
132
132
|
}));
|
|
@@ -115,9 +115,11 @@ var SuggestField = function(_param) {
|
|
|
115
115
|
}) : /*#__PURE__*/ (0, _jsxRuntime.jsxs)(_pijmaCore.Spacer, {
|
|
116
116
|
size: "s",
|
|
117
117
|
children: [
|
|
118
|
-
menuRenderProps.items.length > 0 ? /*#__PURE__*/ (0, _jsxRuntime.jsx)(
|
|
118
|
+
menuRenderProps.items.length > 0 ? /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Box, {
|
|
119
|
+
role: "listbox",
|
|
119
120
|
children: menuRenderProps.items.map(function(item, key) {
|
|
120
121
|
return /*#__PURE__*/ (0, _jsxRuntime.jsx)(CardItem, {
|
|
122
|
+
role: "option",
|
|
121
123
|
ref: item.ref,
|
|
122
124
|
onClick: item.onClick,
|
|
123
125
|
onMouseEnter: item.onMouseEnter,
|
package/lib/es6/button/Button.js
CHANGED
|
@@ -144,6 +144,7 @@ export const Button = (props)=>{
|
|
|
144
144
|
width: iconSize[props.size],
|
|
145
145
|
height: iconSize[props.size],
|
|
146
146
|
transition: "all 300ms cubic-bezier(0.4, 0.0, 0.2, 1)",
|
|
147
|
+
transform: "translateZ(0)",
|
|
147
148
|
children: /*#__PURE__*/ React.cloneElement(props.icon, {
|
|
148
149
|
color: props.disabled ? '#666' : props.kind === 'brand' ? '#fff' : '#000',
|
|
149
150
|
size: 1
|
|
@@ -83,6 +83,7 @@ export const DropUp = (props)=>/*#__PURE__*/ _jsx(Modal, {
|
|
|
83
83
|
onKeyDown: props.onKeyDown,
|
|
84
84
|
...dialogProps,
|
|
85
85
|
children: /*#__PURE__*/ _jsxs(FlexPosCard, {
|
|
86
|
+
role: "document",
|
|
86
87
|
display: "flex",
|
|
87
88
|
direction: "column",
|
|
88
89
|
width: 1,
|
|
@@ -118,6 +119,7 @@ export const DropUp = (props)=>/*#__PURE__*/ _jsx(Modal, {
|
|
|
118
119
|
children: props.title
|
|
119
120
|
}),
|
|
120
121
|
/*#__PURE__*/ _jsx(Box, {
|
|
122
|
+
"aria-label": "close",
|
|
121
123
|
width: 6,
|
|
122
124
|
height: 6,
|
|
123
125
|
ml: "auto",
|
|
@@ -41,6 +41,7 @@ export const InputModal = (props)=>/*#__PURE__*/ _jsx(Modal, {
|
|
|
41
41
|
overflow: "auto",
|
|
42
42
|
...dialogProps,
|
|
43
43
|
children: /*#__PURE__*/ _jsxs(Card, {
|
|
44
|
+
role: "document",
|
|
44
45
|
width: 1,
|
|
45
46
|
height: 1,
|
|
46
47
|
bg: "#fff",
|
|
@@ -55,6 +56,7 @@ export const InputModal = (props)=>/*#__PURE__*/ _jsx(Modal, {
|
|
|
55
56
|
s: "0 0 25px 0 rgba(0, 0, 0, 0.08)",
|
|
56
57
|
children: [
|
|
57
58
|
props.onBack ? /*#__PURE__*/ _jsx(FlexItem, {
|
|
59
|
+
"aria-label": "back",
|
|
58
60
|
shrink: 0,
|
|
59
61
|
mr: 4,
|
|
60
62
|
onClick: props.onBack,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Box, Card, css, Icon, Modal, Pos, SimpleTransition } from '@qiwi/pijma-core';
|
|
3
|
-
import React
|
|
3
|
+
import React from 'react';
|
|
4
4
|
const ContentTransition = (props)=>/*#__PURE__*/ _jsx(SimpleTransition, {
|
|
5
5
|
...props
|
|
6
6
|
});
|
|
@@ -75,33 +75,33 @@ export const SimpleModal = ({ stub , children , show , escapeClose , onShow , on
|
|
|
75
75
|
zIndex: zIndex,
|
|
76
76
|
...dialogProps,
|
|
77
77
|
children: /*#__PURE__*/ _jsx(Pos, {
|
|
78
|
+
role: "document",
|
|
78
79
|
type: "relative",
|
|
79
80
|
width: 1,
|
|
80
81
|
height: 1,
|
|
81
|
-
children: /*#__PURE__*/
|
|
82
|
+
children: /*#__PURE__*/ _jsxs(Card, {
|
|
82
83
|
bg: "#fff",
|
|
83
84
|
p: 6,
|
|
84
85
|
width: 1,
|
|
85
86
|
height: 1,
|
|
86
87
|
overflow: "auto",
|
|
87
|
-
children:
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
})
|
|
88
|
+
children: [
|
|
89
|
+
closable && onHide ? /*#__PURE__*/ _jsx(Pos, {
|
|
90
|
+
"aria-label": "close",
|
|
91
|
+
type: "absolute",
|
|
92
|
+
top: 6,
|
|
93
|
+
right: 6,
|
|
94
|
+
width: 6,
|
|
95
|
+
height: 6,
|
|
96
|
+
cursor: "pointer",
|
|
97
|
+
onClick: onHide,
|
|
98
|
+
children: /*#__PURE__*/ _jsx(Icon, {
|
|
99
|
+
name: "cross",
|
|
100
|
+
color: "#000"
|
|
101
|
+
})
|
|
102
|
+
}) : null,
|
|
103
|
+
children
|
|
104
|
+
]
|
|
105
105
|
})
|
|
106
106
|
})
|
|
107
107
|
})
|
|
@@ -93,8 +93,10 @@ export const SuggestField = ({ equals =(a, b)=>a === b , ...props })=>props.stub
|
|
|
93
93
|
}, key)) : /*#__PURE__*/ _jsxs(Spacer, {
|
|
94
94
|
size: "s",
|
|
95
95
|
children: [
|
|
96
|
-
menuRenderProps.items.length > 0 ? /*#__PURE__*/ _jsx(
|
|
96
|
+
menuRenderProps.items.length > 0 ? /*#__PURE__*/ _jsx(Box, {
|
|
97
|
+
role: "listbox",
|
|
97
98
|
children: menuRenderProps.items.map((item, key)=>/*#__PURE__*/ _jsx(CardItem, {
|
|
99
|
+
role: "option",
|
|
98
100
|
ref: item.ref,
|
|
99
101
|
onClick: item.onClick,
|
|
100
102
|
onMouseEnter: item.onMouseEnter,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qiwi/pijma-mobile",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.152.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./lib/es5/index.js",
|
|
6
6
|
"module": "./lib/es6/index.js",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"lib"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@qiwi/pijma-core": "1.
|
|
40
|
+
"@qiwi/pijma-core": "1.154.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@qiwi/pijma-infra": "1.
|
|
43
|
+
"@qiwi/pijma-infra": "1.9.0",
|
|
44
44
|
"concurrently": "7.2.2",
|
|
45
45
|
"css-loader": "4.3.0",
|
|
46
46
|
"eslint": "8.19.0",
|