@qiwi/pijma-desktop 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.
Files changed (50) hide show
  1. package/lib/dts/core/src/block/Block.d.ts +2 -1
  2. package/lib/dts/core/src/breaker/Breaker.d.ts +5 -2
  3. package/lib/dts/core/src/field/OptionField.d.ts +1 -0
  4. package/lib/dts/core/src/form/Form.d.ts +2 -1
  5. package/lib/dts/core/src/grid/Grid.d.ts +2 -1
  6. package/lib/dts/core/src/primitive/Card.d.ts +0 -2
  7. package/lib/dts/core/src/primitive/Combos.d.ts +0 -18
  8. package/lib/dts/core/src/primitive/Flex.d.ts +0 -2
  9. package/lib/dts/core/src/primitive/FlexItem.d.ts +0 -2
  10. package/lib/dts/core/src/primitive/MaskInput.d.ts +0 -2
  11. package/lib/dts/core/src/primitive/Pos.d.ts +0 -2
  12. package/lib/dts/core/src/primitive/Svg.d.ts +3 -3
  13. package/lib/dts/core/src/spacer/Spacer.d.ts +2 -1
  14. package/lib/dts/core/src/striper/Striper.d.ts +5 -2
  15. package/lib/dts/desktop/src/actions/Actions.d.ts +2 -1
  16. package/lib/dts/desktop/src/annotation/Annotation.d.ts +5 -2
  17. package/lib/dts/desktop/src/block-content/BlockContent.d.ts +2 -1
  18. package/lib/dts/desktop/src/header/Header.d.ts +2 -1
  19. package/lib/dts/desktop/src/link/FileLink.d.ts +2 -1
  20. package/lib/dts/desktop/src/link/Link.d.ts +2 -1
  21. package/lib/dts/desktop/src/modal/SimpleModal.d.ts +2 -1
  22. package/lib/dts/desktop/src/nav-link/NavLink.d.ts +2 -1
  23. package/lib/dts/desktop/src/notice/Notice.d.ts +1 -0
  24. package/lib/dts/desktop/src/status/Status.d.ts +1 -0
  25. package/lib/dts/desktop/src/typography/Caption.d.ts +2 -1
  26. package/lib/dts/desktop/src/typography/Heading.d.ts +2 -1
  27. package/lib/dts/desktop/src/typography/Paragraph.d.ts +2 -1
  28. package/lib/dts/desktop/src/typography/Text.d.ts +2 -1
  29. package/lib/dts/desktop/src/typography/Title.d.ts +2 -1
  30. package/lib/es5/button/Button.js +1 -0
  31. package/lib/es5/content-suggest/ContentSuggest.js +6 -2
  32. package/lib/es5/drop-down/DropDown.js +1 -0
  33. package/lib/es5/header-drop-down/HeaderDropDown.js +2 -0
  34. package/lib/es5/header-menu/HeaderMenu.js +1 -0
  35. package/lib/es5/header-menu/HeaderMenuItem.js +1 -0
  36. package/lib/es5/modal/SimpleModal.js +21 -21
  37. package/lib/es5/phone-field/PhoneField.js +6 -2
  38. package/lib/es5/select-field/SelectField.js +6 -2
  39. package/lib/es5/suggest-field/SuggestField.js +8 -4
  40. package/lib/es6/button/Button.js +1 -0
  41. package/lib/es6/content-suggest/ContentSuggest.js +2 -2
  42. package/lib/es6/drop-down/DropDown.js +1 -0
  43. package/lib/es6/header-drop-down/HeaderDropDown.js +2 -0
  44. package/lib/es6/header-menu/HeaderMenu.js +1 -0
  45. package/lib/es6/header-menu/HeaderMenuItem.js +1 -0
  46. package/lib/es6/modal/SimpleModal.js +20 -20
  47. package/lib/es6/phone-field/PhoneField.js +2 -2
  48. package/lib/es6/select-field/SelectField.js +2 -2
  49. package/lib/es6/suggest-field/SuggestField.js +4 -4
  50. 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,2 +1,5 @@
1
- import { FC } from 'react';
2
- export declare const Breaker: FC;
1
+ import { FC, ReactNode } from 'react';
2
+ export interface BreakerProps {
3
+ children?: ReactNode;
4
+ }
5
+ export declare const Breaker: FC<BreakerProps>;
@@ -8,5 +8,6 @@ export interface OptionFieldProps {
8
8
  onFocus: FocusEventHandler;
9
9
  onBlur: FocusEventHandler;
10
10
  onKeyDown: KeyboardEventHandler;
11
+ children?: ReactNode;
11
12
  }
12
13
  export declare const OptionField: React.FunctionComponent<OptionFieldProps>;
@@ -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>;
@@ -1,7 +1,8 @@
1
- import { FC } from 'react';
1
+ import { FC, ReactNode } from 'react';
2
2
  export interface GridProps {
3
3
  gutter?: number;
4
4
  columns?: number;
5
5
  layout?: number | number[];
6
+ children?: ReactNode;
6
7
  }
7
8
  export declare const Grid: FC<GridProps>;
@@ -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,2 +1,5 @@
1
- import { FC } from 'react';
2
- export declare const Striper: FC;
1
+ import { FC, ReactNode } from 'react';
2
+ export interface StriperProps {
3
+ children?: ReactNode;
4
+ }
5
+ export declare const Striper: FC<StriperProps>;
@@ -1,6 +1,7 @@
1
- import { FunctionComponent } from 'react';
1
+ import { FunctionComponent, ReactNode } from 'react';
2
2
  export interface ActionsProps {
3
3
  size: 'accent' | 'normal' | 'minor';
4
4
  vertical?: boolean;
5
+ children?: ReactNode;
5
6
  }
6
7
  export declare const Actions: FunctionComponent<ActionsProps>;
@@ -1,2 +1,5 @@
1
- import { FC } from 'react';
2
- export declare const Annotation: FC;
1
+ import { FC, ReactNode } from 'react';
2
+ export interface AnnotationProps {
3
+ children?: ReactNode;
4
+ }
5
+ export declare const Annotation: FC<AnnotationProps>;
@@ -1,5 +1,6 @@
1
- import { FC } from 'react';
1
+ import { FC, ReactNode } from 'react';
2
2
  export interface BlockContentProps {
3
3
  indent?: 's' | 'm' | 'l';
4
+ children?: ReactNode;
4
5
  }
5
6
  export declare const BlockContent: FC<BlockContentProps>;
@@ -1,5 +1,6 @@
1
- import { FunctionComponent } from 'react';
1
+ import { FunctionComponent, ReactNode } from 'react';
2
2
  export interface HeaderProps {
3
3
  underline?: boolean;
4
+ children?: ReactNode;
4
5
  }
5
6
  export declare const Header: FunctionComponent<HeaderProps>;
@@ -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
  stub?: boolean;
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>;
@@ -2,5 +2,6 @@ import { FC, ReactNode } from 'react';
2
2
  export interface NoticeProps {
3
3
  icon: ReactNode;
4
4
  title?: ReactNode;
5
+ children?: ReactNode;
5
6
  }
6
7
  export declare const Notice: FC<NoticeProps>;
@@ -4,5 +4,6 @@ export interface StatusProps {
4
4
  title?: string;
5
5
  actions?: ReactNode;
6
6
  content?: ReactNode;
7
+ children?: ReactNode;
7
8
  }
8
9
  export declare const Status: FC<StatusProps>;
@@ -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' | '5';
@@ -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
  clamp?: number;
9
9
  stub?: boolean;
10
+ children?: ReactNode;
10
11
  }
11
12
  export declare const Title: FunctionComponent<TitleProps>;
@@ -155,6 +155,7 @@ var Button = function(props) {
155
155
  width: 6,
156
156
  height: 6,
157
157
  transition: "all 300ms cubic-bezier(0.4, 0.0, 0.2, 1)",
158
+ transform: "translateZ(0)",
158
159
  children: /*#__PURE__*/ _react.default.cloneElement(props.icon, {
159
160
  color: props.disabled ? "#666" : props.kind === "brand" ? "#fff" : "#000",
160
161
  size: 1
@@ -93,8 +93,12 @@ var ContentSuggest = function(_param) /*#__PURE__*/ {
93
93
  minWidth: 1,
94
94
  show: props.items !== undefined && renderProps.focused && (props.items.length > 0 || props.empty !== undefined || props.loading === true),
95
95
  rootClose: false,
96
- container: renderProps.containerRef.current,
97
- target: renderProps.inputRef.current,
96
+ container: function() {
97
+ return renderProps.containerRef.current;
98
+ },
99
+ target: function() {
100
+ return renderProps.inputRef.current;
101
+ },
98
102
  onHide: renderProps.onHide,
99
103
  children: /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Card, {
100
104
  height: 1,
@@ -50,6 +50,7 @@ var DropDown = function(param) {
50
50
  transition: Transition,
51
51
  children: function(renderProps) {
52
52
  return /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Pos, {
53
+ role: "listbox",
53
54
  type: "absolute",
54
55
  width: width,
55
56
  minWidth: minWidth,
@@ -57,6 +57,7 @@ var HeaderDropDown = function(param) {
57
57
  },
58
58
  children: function(renderProps) {
59
59
  return /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Pos, {
60
+ role: "listbox",
60
61
  type: "absolute",
61
62
  zIndex: 600,
62
63
  ref: renderProps.props.ref,
@@ -74,6 +75,7 @@ var HeaderDropDown = function(param) {
74
75
  children: children
75
76
  }),
76
77
  /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Pos, {
78
+ "aria-label": "close",
77
79
  mb: "auto",
78
80
  type: "absolute",
79
81
  width: 6,
@@ -20,6 +20,7 @@ var HeaderMenu = function(props) {
20
20
  height: 1,
21
21
  width: 1,
22
22
  justify: "flex-start",
23
+ role: "menu",
23
24
  children: props.stub ? (typeof props.stub === "boolean" ? [
24
25
  32,
25
26
  44,
@@ -24,6 +24,7 @@ var HeaderMenuItem = /*#__PURE__*/ (0, _react.forwardRef)(function(props, ref) {
24
24
  onBlur: props.onBlur,
25
25
  children: function(renderProps) {
26
26
  return /*#__PURE__*/ (0, _jsxRuntime.jsxs)(_pijmaCore.PosLnk, {
27
+ role: "menuitem",
27
28
  as: props.href ? "a" : "div",
28
29
  ref: ref,
29
30
  height: 1,
@@ -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 _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
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__*/ _interopRequireWildcard(require("react"));
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
  };
@@ -119,7 +119,8 @@ var SimpleModal = function(props) {
119
119
  verticalAlign: "middle",
120
120
  textAlign: "left"
121
121
  },
122
- children: /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Card, {
122
+ children: /*#__PURE__*/ (0, _jsxRuntime.jsxs)(_pijmaCore.Card, {
123
+ role: "document",
123
124
  s: "0 20px 64px 8px rgba(0, 0, 0, 0.16)",
124
125
  r: 10,
125
126
  bg: "#fff",
@@ -127,24 +128,23 @@ var SimpleModal = function(props) {
127
128
  pb: 12,
128
129
  px: 11,
129
130
  width: ModalWidth[props.size],
130
- children: /*#__PURE__*/ (0, _jsxRuntime.jsxs)(_react.Fragment, {
131
- children: [
132
- props.closable && props.onHide ? /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Pos, {
133
- type: "absolute",
134
- top: 16,
135
- right: 16,
136
- width: 6,
137
- height: 6,
138
- cursor: "pointer",
139
- onClick: props.onHide,
140
- children: /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Icon, {
141
- name: "cross",
142
- color: "#000"
143
- })
144
- }) : null,
145
- props.children
146
- ]
147
- })
131
+ children: [
132
+ props.closable && props.onHide ? /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Pos, {
133
+ "aria-label": "close",
134
+ type: "absolute",
135
+ top: 16,
136
+ right: 16,
137
+ width: 6,
138
+ height: 6,
139
+ cursor: "pointer",
140
+ onClick: props.onHide,
141
+ children: /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Icon, {
142
+ name: "cross",
143
+ color: "#000"
144
+ })
145
+ }) : null,
146
+ props.children
147
+ ]
148
148
  })
149
149
  })
150
150
  }));
@@ -86,8 +86,12 @@ var PhoneField = function(_param) {
86
86
  }),
87
87
  /*#__PURE__*/ (0, _jsxRuntime.jsx)(_dropDown.DropDown, {
88
88
  offset: 4,
89
- container: renderProps.containerRef.current,
90
- target: renderProps.inputRef.current,
89
+ container: function() {
90
+ return renderProps.containerRef.current;
91
+ },
92
+ target: function() {
93
+ return renderProps.inputRef.current;
94
+ },
91
95
  show: renderProps.showCountries,
92
96
  onHide: renderProps.onCountriesHide,
93
97
  children: /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Card, {
@@ -118,8 +118,12 @@ var SelectField = function(props) {
118
118
  /*#__PURE__*/ (0, _jsxRuntime.jsx)(_pijmaCore.Overlay, {
119
119
  show: renderProps.show,
120
120
  placement: "bottom",
121
- target: renderProps.targetRef.current,
122
- container: renderProps.containerRef.current,
121
+ target: function() {
122
+ return renderProps.targetRef.current;
123
+ },
124
+ container: function() {
125
+ return renderProps.containerRef.current;
126
+ },
123
127
  popperConfig: {
124
128
  modifiers: {
125
129
  computeStyle: {
@@ -88,10 +88,14 @@ var SuggestField = function(_param) {
88
88
  })
89
89
  }),
90
90
  /*#__PURE__*/ (0, _jsxRuntime.jsx)(_dropDown.DropDown, {
91
- target: renderProps.inputRef.current,
92
- container: renderProps.containerRef.current,
91
+ target: function() {
92
+ return renderProps.inputRef.current;
93
+ },
94
+ container: function() {
95
+ return renderProps.containerRef.current;
96
+ },
93
97
  minWidth: 1,
94
- width: 1,
98
+ width: "calc(100% + 48px)",
95
99
  offset: 3,
96
100
  show: props.items !== undefined && renderProps.focused && (props.items.length > 0 || props.empty !== undefined || props.loading === true),
97
101
  rootClose: true,
@@ -101,7 +105,6 @@ var SuggestField = function(_param) {
101
105
  maxHeight: 98,
102
106
  bg: "#fff",
103
107
  py: 3,
104
- mx: -6,
105
108
  s: "0 28px 52px 0 rgba(0, 0, 0, 0.16)",
106
109
  r: 10,
107
110
  overflow: "auto",
@@ -119,6 +122,7 @@ var SuggestField = function(_param) {
119
122
  menuRenderProps.items.length > 0 ? /*#__PURE__*/ (0, _jsxRuntime.jsx)(_react.Fragment, {
120
123
  children: menuRenderProps.items.map(function(item, key) {
121
124
  return /*#__PURE__*/ (0, _jsxRuntime.jsx)(CardMenuItem, {
125
+ role: "option",
122
126
  ref: item.ref,
123
127
  onClick: item.onClick,
124
128
  onMouseDown: item.onMouseDown,
@@ -142,6 +142,7 @@ export const Button = (props)=>{
142
142
  width: 6,
143
143
  height: 6,
144
144
  transition: "all 300ms cubic-bezier(0.4, 0.0, 0.2, 1)",
145
+ transform: "translateZ(0)",
145
146
  children: /*#__PURE__*/ React.cloneElement(props.icon, {
146
147
  color: props.disabled ? '#666' : props.kind === 'brand' ? '#fff' : '#000',
147
148
  size: 1
@@ -73,8 +73,8 @@ export const ContentSuggest = ({ equals =(a, b)=>a === b , ...props })=>/*#__PUR
73
73
  minWidth: 1,
74
74
  show: props.items !== undefined && renderProps.focused && (props.items.length > 0 || props.empty !== undefined || props.loading === true),
75
75
  rootClose: false,
76
- container: renderProps.containerRef.current,
77
- target: renderProps.inputRef.current,
76
+ container: ()=>renderProps.containerRef.current,
77
+ target: ()=>renderProps.inputRef.current,
78
78
  onHide: renderProps.onHide,
79
79
  children: /*#__PURE__*/ _jsx(Card, {
80
80
  height: 1,
@@ -31,6 +31,7 @@ export const DropDown = ({ show , offset , width , minWidth , maxWidth , rootClo
31
31
  onHide: onHide,
32
32
  transition: Transition,
33
33
  children: (renderProps)=>/*#__PURE__*/ _jsx(Pos, {
34
+ role: "listbox",
34
35
  type: "absolute",
35
36
  width: width,
36
37
  minWidth: minWidth,
@@ -38,6 +38,7 @@ export const HeaderDropDown = ({ show , target , container , onHide , children ,
38
38
  }
39
39
  },
40
40
  children: (renderProps)=>/*#__PURE__*/ _jsx(Pos, {
41
+ role: "listbox",
41
42
  type: "absolute",
42
43
  zIndex: 600,
43
44
  ref: renderProps.props.ref,
@@ -55,6 +56,7 @@ export const HeaderDropDown = ({ show , target , container , onHide , children ,
55
56
  children: children
56
57
  }),
57
58
  /*#__PURE__*/ _jsx(Pos, {
59
+ "aria-label": "close",
58
60
  mb: "auto",
59
61
  type: "absolute",
60
62
  width: 6,
@@ -7,6 +7,7 @@ export const HeaderMenu = (props)=>/*#__PURE__*/ _jsx(Flex, {
7
7
  height: 1,
8
8
  width: 1,
9
9
  justify: "flex-start",
10
+ role: "menu",
10
11
  children: props.stub ? (typeof props.stub === 'boolean' ? [
11
12
  32,
12
13
  44,
@@ -11,6 +11,7 @@ export const HeaderMenuItem = /*#__PURE__*/ forwardRef((props, ref)=>/*#__PURE__
11
11
  onFocus: props.onFocus,
12
12
  onBlur: props.onBlur,
13
13
  children: (renderProps)=>/*#__PURE__*/ _jsxs(PosLnk, {
14
+ role: "menuitem",
14
15
  as: props.href ? 'a' : 'div',
15
16
  ref: ref,
16
17
  height: 1,
@@ -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, { Fragment } from 'react';
3
+ import React from 'react';
4
4
  const ContentTransition = (props)=>/*#__PURE__*/ _jsx(SimpleTransition, {
5
5
  ...props
6
6
  });
@@ -95,7 +95,8 @@ export const SimpleModal = (props)=>props.stub ? /*#__PURE__*/ _jsx(Box, {
95
95
  verticalAlign: 'middle',
96
96
  textAlign: 'left'
97
97
  },
98
- children: /*#__PURE__*/ _jsx(Card, {
98
+ children: /*#__PURE__*/ _jsxs(Card, {
99
+ role: "document",
99
100
  s: "0 20px 64px 8px rgba(0, 0, 0, 0.16)",
100
101
  r: 10,
101
102
  bg: "#fff",
@@ -103,24 +104,23 @@ export const SimpleModal = (props)=>props.stub ? /*#__PURE__*/ _jsx(Box, {
103
104
  pb: 12,
104
105
  px: 11,
105
106
  width: ModalWidth[props.size],
106
- children: /*#__PURE__*/ _jsxs(Fragment, {
107
- children: [
108
- props.closable && props.onHide ? /*#__PURE__*/ _jsx(Pos, {
109
- type: "absolute",
110
- top: 16,
111
- right: 16,
112
- width: 6,
113
- height: 6,
114
- cursor: "pointer",
115
- onClick: props.onHide,
116
- children: /*#__PURE__*/ _jsx(Icon, {
117
- name: "cross",
118
- color: "#000"
119
- })
120
- }) : null,
121
- props.children
122
- ]
123
- })
107
+ children: [
108
+ props.closable && props.onHide ? /*#__PURE__*/ _jsx(Pos, {
109
+ "aria-label": "close",
110
+ type: "absolute",
111
+ top: 16,
112
+ right: 16,
113
+ width: 6,
114
+ height: 6,
115
+ cursor: "pointer",
116
+ onClick: props.onHide,
117
+ children: /*#__PURE__*/ _jsx(Icon, {
118
+ name: "cross",
119
+ color: "#000"
120
+ })
121
+ }) : null,
122
+ props.children
123
+ ]
124
124
  })
125
125
  })
126
126
  })
@@ -67,8 +67,8 @@ export const PhoneField = ({ tabIndex =0 , code ='ru' , ...props })=>props.stub
67
67
  }),
68
68
  /*#__PURE__*/ _jsx(DropDown, {
69
69
  offset: 4,
70
- container: renderProps.containerRef.current,
71
- target: renderProps.inputRef.current,
70
+ container: ()=>renderProps.containerRef.current,
71
+ target: ()=>renderProps.inputRef.current,
72
72
  show: renderProps.showCountries,
73
73
  onHide: renderProps.onCountriesHide,
74
74
  children: /*#__PURE__*/ _jsx(Card, {
@@ -95,8 +95,8 @@ export const SelectField = (props)=>props.stub ? /*#__PURE__*/ _jsx(InputField,
95
95
  /*#__PURE__*/ _jsx(Overlay, {
96
96
  show: renderProps.show,
97
97
  placement: "bottom",
98
- target: renderProps.targetRef.current,
99
- container: renderProps.containerRef.current,
98
+ target: ()=>renderProps.targetRef.current,
99
+ container: ()=>renderProps.containerRef.current,
100
100
  popperConfig: {
101
101
  modifiers: {
102
102
  computeStyle: {
@@ -68,10 +68,10 @@ export const SuggestField = ({ equals =(a, b)=>a === b , ...props })=>props.stub
68
68
  })
69
69
  }),
70
70
  /*#__PURE__*/ _jsx(DropDown, {
71
- target: renderProps.inputRef.current,
72
- container: renderProps.containerRef.current,
71
+ target: ()=>renderProps.inputRef.current,
72
+ container: ()=>renderProps.containerRef.current,
73
73
  minWidth: 1,
74
- width: 1,
74
+ width: "calc(100% + 48px)",
75
75
  offset: 3,
76
76
  show: props.items !== undefined && renderProps.focused && (props.items.length > 0 || props.empty !== undefined || props.loading === true),
77
77
  rootClose: true,
@@ -81,7 +81,6 @@ export const SuggestField = ({ equals =(a, b)=>a === b , ...props })=>props.stub
81
81
  maxHeight: 98,
82
82
  bg: "#fff",
83
83
  py: 3,
84
- mx: -6,
85
84
  s: "0 28px 52px 0 rgba(0, 0, 0, 0.16)",
86
85
  r: 10,
87
86
  overflow: "auto",
@@ -96,6 +95,7 @@ export const SuggestField = ({ equals =(a, b)=>a === b , ...props })=>props.stub
96
95
  children: [
97
96
  menuRenderProps.items.length > 0 ? /*#__PURE__*/ _jsx(Fragment, {
98
97
  children: menuRenderProps.items.map((item, key)=>/*#__PURE__*/ _jsx(CardMenuItem, {
98
+ role: "option",
99
99
  ref: item.ref,
100
100
  onClick: item.onClick,
101
101
  onMouseDown: item.onMouseDown,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qiwi/pijma-desktop",
3
- "version": "1.151.0",
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.153.0"
40
+ "@qiwi/pijma-core": "1.154.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@qiwi/pijma-infra": "1.8.0",
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",