jamespot-react-components 1.0.70 → 1.0.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/jamespot-react-components.js +846 -823
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/Common/util/getColor.util.d.ts +1 -1
- package/build/src/components/Form/Input/JRCFormImage/JRCFormImage.d.ts +16 -0
- package/build/src/components/Form/Input/JRCFormImage/JRCFormImage.stories.d.ts +5 -0
- package/build/src/components/Form/Input/JRCFormImage/JRCFormImage.styles.d.ts +4 -0
- package/build/src/components/Form/Input/JRCSelect/JRCAutocompleteCommunity.d.ts +1 -0
- package/build/src/components/Form/Input/JRCSelect/JRCInputSelect.style.d.ts +28 -26
- package/build/src/components/JRCAlert/JRCAlert.d.ts +1 -2
- package/build/src/components/JRCAppLeftColumn/JRCAppLeftColumn.styles.d.ts +1 -1
- package/build/src/components/JRCAvatar/JRCAvatar.d.ts +1 -2
- package/build/src/components/JRCButton/JRCButton.d.ts +3 -4
- package/build/src/components/JRCColumnCenter/JRCColumnCenter.d.ts +1 -2
- package/build/src/components/JRCColumnLeft/JRCColumnLeft.d.ts +1 -2
- package/build/src/components/JRCColumnRight/JRCColumnRight.d.ts +1 -2
- package/build/src/components/JRCFileOpen/JRCFileOpen.d.ts +1 -2
- package/build/src/components/JRCFolders/JRCFolders.d.ts +1 -2
- package/build/src/components/JRCGrid/JRCGrid.d.ts +1 -2
- package/build/src/components/JRCIcon/JRCIcon.d.ts +1 -2
- package/build/src/components/JRCImg/JRCImg.d.ts +3 -2
- package/build/src/components/JRCImg/url.util.d.ts +1 -0
- package/build/src/components/JRCLoader/JRCLoader.d.ts +3 -2
- package/build/src/components/JRCMenu/JRCMenu.d.ts +2 -2
- package/build/src/components/JRCModal/JRCModal.d.ts +1 -2
- package/build/src/components/JRCModalImg/JRCModalImg.d.ts +1 -2
- package/build/src/components/JRCPagination/JRCPagination.d.ts +1 -2
- package/build/src/components/JRCThemeProvider/JRCThemeProvider.d.ts +1 -2
- package/build/src/components/JRCTooltip/JRCTooltip.d.ts +0 -1
- package/build/src/components/Templates/JRCContainer.d.ts +1 -2
- package/build/src/components/Templates/template.styles.d.ts +29 -29
- package/build/src/components/Templates/template.type.d.ts +1 -0
- package/build/src/index.d.ts +51 -75
- package/build/src/types.d.ts +49 -82
- package/package.json +3 -2
- package/storybook-static/344.cdfbe1f1.iframe.bundle.js +2 -0
- package/storybook-static/{174.f2e072e1.iframe.bundle.js.LICENSE.txt → 344.cdfbe1f1.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/main.0cb31935.iframe.bundle.js +1 -0
- package/storybook-static/174.f2e072e1.iframe.bundle.js +0 -2
- package/storybook-static/main.46cf1211.iframe.bundle.js +0 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare type MessageType = 'success' | 'error' | 'warning';
|
|
2
|
-
export declare const getColor: (type: MessageType) => "
|
|
2
|
+
export declare const getColor: (type: MessageType) => "orange" | "yellow" | "green";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export declare type JRCFormInputImageProps = JRCFormInputImageFieldProps;
|
|
3
|
+
/**
|
|
4
|
+
* Props type for JRCFormInputImageFieldProps
|
|
5
|
+
* @member content text used as label
|
|
6
|
+
* @member name text used as name
|
|
7
|
+
*/
|
|
8
|
+
export interface JRCFormInputImageFieldProps extends React.ComponentPropsWithoutRef<'input'> {
|
|
9
|
+
content: string;
|
|
10
|
+
name: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Placeholder field used in studio to edit forms. No logic to transfer images is implemented.
|
|
14
|
+
*/
|
|
15
|
+
export declare const JRCFormInputImage: ({ id, content }: JRCFormInputImageProps) => JSX.Element;
|
|
16
|
+
export declare const JRCFormInputImageField: (props: JRCFormInputImageFieldProps) => JSX.Element;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
+
export declare const ImageContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const LabelContainer: import("styled-components").StyledComponent<"label", any, {}, never>;
|
|
4
|
+
export declare const LabelField: import("styled-components").StyledComponent<"p", any, {}, never>;
|
|
@@ -2,5 +2,6 @@ import * as React from 'react';
|
|
|
2
2
|
import { JRCInputFieldProps } from '../Common/JRCFormFieldRenderer.types';
|
|
3
3
|
export declare type JRCAutocompleteCommunityProps<T> = JRCInputFieldProps<T> & {
|
|
4
4
|
multiple?: boolean;
|
|
5
|
+
searchable?: boolean;
|
|
5
6
|
};
|
|
6
7
|
export declare function JRCInputCommunity<T>(props: JRCAutocompleteCommunityProps<T>, ref: React.ForwardedRef<HTMLInputElement>): JSX.Element;
|
|
@@ -4,6 +4,7 @@ export declare const OptionWrapper: import("styled-components").StyledComponent<
|
|
|
4
4
|
isSelected?: boolean | undefined;
|
|
5
5
|
isFocused?: boolean | undefined;
|
|
6
6
|
}, never>;
|
|
7
|
+
export declare const NoOption: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
8
|
export declare const OptionGroup: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
9
|
export declare const OptionGroupHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
9
10
|
export declare const OptionGroupValues: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -12,22 +13,21 @@ export declare const OptionMenu: import("styled-components").StyledComponent<"di
|
|
|
12
13
|
slot?: string | undefined;
|
|
13
14
|
style?: React.CSSProperties | undefined;
|
|
14
15
|
title?: string | undefined;
|
|
15
|
-
hidden?: boolean | undefined;
|
|
16
|
-
color?: string | undefined;
|
|
17
16
|
key?: React.Key | null | undefined;
|
|
18
17
|
defaultChecked?: boolean | undefined;
|
|
19
18
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
20
19
|
suppressContentEditableWarning?: boolean | undefined;
|
|
21
20
|
suppressHydrationWarning?: boolean | undefined;
|
|
22
21
|
accessKey?: string | undefined;
|
|
23
|
-
contentEditable?:
|
|
22
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
24
23
|
contextMenu?: string | undefined;
|
|
25
24
|
dir?: string | undefined;
|
|
26
|
-
draggable?: (boolean | "
|
|
25
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
26
|
+
hidden?: boolean | undefined;
|
|
27
27
|
id?: string | undefined;
|
|
28
28
|
lang?: string | undefined;
|
|
29
29
|
placeholder?: string | undefined;
|
|
30
|
-
spellCheck?: (boolean | "
|
|
30
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
31
31
|
tabIndex?: number | undefined;
|
|
32
32
|
translate?: "yes" | "no" | undefined;
|
|
33
33
|
radioGroup?: string | undefined;
|
|
@@ -43,6 +43,7 @@ export declare const OptionMenu: import("styled-components").StyledComponent<"di
|
|
|
43
43
|
autoCapitalize?: string | undefined;
|
|
44
44
|
autoCorrect?: string | undefined;
|
|
45
45
|
autoSave?: string | undefined;
|
|
46
|
+
color?: string | undefined;
|
|
46
47
|
itemProp?: string | undefined;
|
|
47
48
|
itemScope?: boolean | undefined;
|
|
48
49
|
itemType?: string | undefined;
|
|
@@ -51,50 +52,50 @@ export declare const OptionMenu: import("styled-components").StyledComponent<"di
|
|
|
51
52
|
results?: number | undefined;
|
|
52
53
|
security?: string | undefined;
|
|
53
54
|
unselectable?: "on" | "off" | undefined;
|
|
54
|
-
inputMode?: "
|
|
55
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
55
56
|
is?: string | undefined;
|
|
56
57
|
'aria-activedescendant'?: string | undefined;
|
|
57
|
-
'aria-atomic'?: (boolean | "
|
|
58
|
-
'aria-autocomplete'?: "
|
|
59
|
-
'aria-busy'?: (boolean | "
|
|
60
|
-
'aria-checked'?: boolean | "
|
|
58
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
59
|
+
'aria-autocomplete'?: "list" | "none" | "both" | "inline" | undefined;
|
|
60
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
61
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
61
62
|
'aria-colcount'?: number | undefined;
|
|
62
63
|
'aria-colindex'?: number | undefined;
|
|
63
64
|
'aria-colspan'?: number | undefined;
|
|
64
65
|
'aria-controls'?: string | undefined;
|
|
65
|
-
'aria-current'?: boolean | "time" | "
|
|
66
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
66
67
|
'aria-describedby'?: string | undefined;
|
|
67
68
|
'aria-details'?: string | undefined;
|
|
68
|
-
'aria-disabled'?: (boolean | "
|
|
69
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
69
70
|
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
70
71
|
'aria-errormessage'?: string | undefined;
|
|
71
|
-
'aria-expanded'?: (boolean | "
|
|
72
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
72
73
|
'aria-flowto'?: string | undefined;
|
|
73
|
-
'aria-grabbed'?: (boolean | "
|
|
74
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
75
|
-
'aria-hidden'?: (boolean | "
|
|
76
|
-
'aria-invalid'?: boolean | "
|
|
74
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
76
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
77
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
77
78
|
'aria-keyshortcuts'?: string | undefined;
|
|
78
79
|
'aria-label'?: string | undefined;
|
|
79
80
|
'aria-labelledby'?: string | undefined;
|
|
80
81
|
'aria-level'?: number | undefined;
|
|
81
82
|
'aria-live'?: "off" | "polite" | "assertive" | undefined;
|
|
82
|
-
'aria-modal'?: (boolean | "
|
|
83
|
-
'aria-multiline'?: (boolean | "
|
|
84
|
-
'aria-multiselectable'?: (boolean | "
|
|
83
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
84
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
85
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
85
86
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
86
87
|
'aria-owns'?: string | undefined;
|
|
87
88
|
'aria-placeholder'?: string | undefined;
|
|
88
89
|
'aria-posinset'?: number | undefined;
|
|
89
|
-
'aria-pressed'?: boolean | "
|
|
90
|
-
'aria-readonly'?: (boolean | "
|
|
90
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
91
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
91
92
|
'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
92
|
-
'aria-required'?: (boolean | "
|
|
93
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
93
94
|
'aria-roledescription'?: string | undefined;
|
|
94
95
|
'aria-rowcount'?: number | undefined;
|
|
95
96
|
'aria-rowindex'?: number | undefined;
|
|
96
97
|
'aria-rowspan'?: number | undefined;
|
|
97
|
-
'aria-selected'?: (boolean | "
|
|
98
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
98
99
|
'aria-setsize'?: number | undefined;
|
|
99
100
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
100
101
|
'aria-valuemax'?: number | undefined;
|
|
@@ -268,7 +269,7 @@ export declare const OptionMenu: import("styled-components").StyledComponent<"di
|
|
|
268
269
|
css?: import("@emotion/core").InterpolationWithTheme<any>;
|
|
269
270
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
270
271
|
theme: any;
|
|
271
|
-
}, "
|
|
272
|
+
}, "slot" | "style" | "title" | "ref" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "theme">;
|
|
272
273
|
export declare const SelectedOptionWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
273
274
|
export declare const SelectedOption: import("styled-components").StyledComponent<"button", any, {
|
|
274
275
|
type: "button";
|
|
@@ -277,6 +278,7 @@ export declare const JRCDefaultSelectedOption: import("styled-components").Style
|
|
|
277
278
|
export declare const TimesIcon: import("styled-components").StyledComponent<"i", any, {
|
|
278
279
|
className: "react-icon icon-times";
|
|
279
280
|
}, "className">;
|
|
280
|
-
export declare const DropdownIndicator: ({ open }: {
|
|
281
|
+
export declare const DropdownIndicator: ({ loading, open }: {
|
|
282
|
+
loading: boolean;
|
|
281
283
|
open: boolean;
|
|
282
284
|
}) => JSX.Element;
|
|
@@ -15,5 +15,4 @@ export interface JRCAlertProps extends React.ComponentPropsWithoutRef<'div'> {
|
|
|
15
15
|
/** Add buttons on the alert */
|
|
16
16
|
buttons?: JRCButtonProps[];
|
|
17
17
|
}
|
|
18
|
-
declare const JRCAlert: ({ label, description, hasLoader, buttons, type, timeout }: JRCAlertProps) => JSX.Element | null;
|
|
19
|
-
export default JRCAlert;
|
|
18
|
+
export declare const JRCAlert: ({ label, description, hasLoader, buttons, type, timeout, }: JRCAlertProps) => JSX.Element | null;
|
|
@@ -29,7 +29,7 @@ export declare const JRCIconButtonAppLeftColumn: import("styled-components").Sty
|
|
|
29
29
|
value?: string | undefined;
|
|
30
30
|
disabled?: boolean | undefined;
|
|
31
31
|
type?: "button" | "reset" | "submit" | undefined;
|
|
32
|
-
color?:
|
|
32
|
+
color?: import("../../styles/theme").Colors | import("../../styles/theme").Shades | "inherit" | undefined;
|
|
33
33
|
tooltip?: Omit<import("../..").JRCTooltipProps, "children"> | undefined;
|
|
34
34
|
variant?: "circle" | "square" | undefined;
|
|
35
35
|
} & {
|
|
@@ -27,5 +27,4 @@ export declare type JRCAvatarProps = Omit<JRCImgProps, 'size' | 'width' | 'heigh
|
|
|
27
27
|
iconWhite?: boolean;
|
|
28
28
|
alt?: string;
|
|
29
29
|
};
|
|
30
|
-
declare const JRCAvatar: (props: JRCAvatarProps) => JSX.Element;
|
|
31
|
-
export default JRCAvatar;
|
|
30
|
+
export declare const JRCAvatar: (props: JRCAvatarProps) => JSX.Element;
|
|
@@ -29,7 +29,7 @@ export declare const Button: import("styled-components").StyledComponent<"button
|
|
|
29
29
|
hasChildren: boolean;
|
|
30
30
|
} & Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & DataCy & {
|
|
31
31
|
/** Color of the background of the button */
|
|
32
|
-
color?: "primary" | "
|
|
32
|
+
color?: "primary" | "secondary" | "valid" | "danger" | undefined;
|
|
33
33
|
/** Indicates loading of content on the button */
|
|
34
34
|
loader?: boolean | undefined;
|
|
35
35
|
/** This Boolean attribute specifies that the button should have input focus when the page loads */
|
|
@@ -45,9 +45,9 @@ export declare const Button: import("styled-components").StyledComponent<"button
|
|
|
45
45
|
/** CSS min-width attribute */
|
|
46
46
|
minWidth?: string | undefined;
|
|
47
47
|
}, never>;
|
|
48
|
-
declare const JRCButton: React.ForwardRefExoticComponent<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & DataCy & {
|
|
48
|
+
export declare const JRCButton: React.ForwardRefExoticComponent<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & DataCy & {
|
|
49
49
|
/** Color of the background of the button */
|
|
50
|
-
color?: "primary" | "
|
|
50
|
+
color?: "primary" | "secondary" | "valid" | "danger" | undefined;
|
|
51
51
|
/** Indicates loading of content on the button */
|
|
52
52
|
loader?: boolean | undefined;
|
|
53
53
|
/** This Boolean attribute specifies that the button should have input focus when the page loads */
|
|
@@ -63,4 +63,3 @@ declare const JRCButton: React.ForwardRefExoticComponent<Pick<React.DetailedHTML
|
|
|
63
63
|
/** CSS min-width attribute */
|
|
64
64
|
minWidth?: string | undefined;
|
|
65
65
|
} & React.RefAttributes<HTMLButtonElement>>;
|
|
66
|
-
export default JRCButton;
|
|
@@ -6,5 +6,4 @@ import * as React from 'react';
|
|
|
6
6
|
export interface JRCColumnCenterProps {
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
}
|
|
9
|
-
declare const JRCColumnCenter: (props: JRCColumnCenterProps) => JSX.Element;
|
|
10
|
-
export default JRCColumnCenter;
|
|
9
|
+
export declare const JRCColumnCenter: (props: JRCColumnCenterProps) => JSX.Element;
|
|
@@ -6,5 +6,4 @@ import * as React from 'react';
|
|
|
6
6
|
export interface JRCColumnLeftProps {
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
}
|
|
9
|
-
declare const JRCColumnLeft: (props: JRCColumnLeftProps) => JSX.Element;
|
|
10
|
-
export default JRCColumnLeft;
|
|
9
|
+
export declare const JRCColumnLeft: (props: JRCColumnLeftProps) => JSX.Element;
|
|
@@ -6,5 +6,4 @@ import * as React from 'react';
|
|
|
6
6
|
export interface JRCColumnRightProps {
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
}
|
|
9
|
-
declare const JRCColumnRight: (props: JRCColumnRightProps) => JSX.Element;
|
|
10
|
-
export default JRCColumnRight;
|
|
9
|
+
export declare const JRCColumnRight: (props: JRCColumnRightProps) => JSX.Element;
|
|
@@ -20,5 +20,4 @@ export interface JRCIconProps {
|
|
|
20
20
|
isMargin?: boolean;
|
|
21
21
|
className?: string;
|
|
22
22
|
}
|
|
23
|
-
declare const JRCIcon: ({ color, variant, name, size, isMargin, className, }: JRCIconProps) => JSX.Element;
|
|
24
|
-
export default JRCIcon;
|
|
23
|
+
export declare const JRCIcon: ({ color, variant, name, size, isMargin, className, }: JRCIconProps) => JSX.Element;
|
|
@@ -14,6 +14,8 @@ import { ImgUrlProps } from './url.util';
|
|
|
14
14
|
* If not provided, the size will be computed from width and height.
|
|
15
15
|
* /!\ This property should not be used unless the image should not be displayed
|
|
16
16
|
* at retina resolution for any reason.
|
|
17
|
+
* @property maxWidth - maxWidth (ex: 100%) adapt the image to parent size
|
|
18
|
+
* /!\ This property should be used only if parent has a responsive size
|
|
17
19
|
*
|
|
18
20
|
* @property format - format of the image (ex: png, jpeg, etc.) - default is png
|
|
19
21
|
*
|
|
@@ -30,5 +32,4 @@ export declare type JRCImgProps = ImgUrlProps & {
|
|
|
30
32
|
alt: string;
|
|
31
33
|
className?: string;
|
|
32
34
|
};
|
|
33
|
-
declare const JRCImg: (props: JRCImgProps) => JSX.Element;
|
|
34
|
-
export default JRCImg;
|
|
35
|
+
export declare const JRCImg: (props: JRCImgProps) => JSX.Element;
|
|
@@ -7,10 +7,11 @@ import { Colors } from '../../styles/theme';
|
|
|
7
7
|
interface JRCSpinnerProps {
|
|
8
8
|
color?: Colors;
|
|
9
9
|
size?: 's' | 'm' | 'l';
|
|
10
|
+
className?: string;
|
|
10
11
|
}
|
|
11
12
|
interface JRCLoaderVariantProps {
|
|
12
13
|
variant?: 'spinner' | 'skeleton';
|
|
13
14
|
}
|
|
14
15
|
export declare type JRCLoaderProps = JRCLoaderVariantProps & JRCSpinnerProps;
|
|
15
|
-
declare const JRCLoader: ({ color, size, variant }: JRCLoaderProps) => JSX.Element;
|
|
16
|
-
export
|
|
16
|
+
export declare const JRCLoader: ({ color, size, variant, className }: JRCLoaderProps) => JSX.Element;
|
|
17
|
+
export {};
|
|
@@ -29,5 +29,5 @@ export declare const MenuItemLabel: import("styled-components").StyledComponent<
|
|
|
29
29
|
* @param {items, defaultActiveItem} Menu props, @see JRCMenuProps interface
|
|
30
30
|
* @returns JSX.Element
|
|
31
31
|
*/
|
|
32
|
-
declare const JRCMenu: ({ items, defaultActiveItem }: JRCMenuProps) => JSX.Element;
|
|
33
|
-
export
|
|
32
|
+
export declare const JRCMenu: ({ items, defaultActiveItem }: JRCMenuProps) => JSX.Element;
|
|
33
|
+
export {};
|
|
@@ -41,5 +41,4 @@ export interface JRCModalProps {
|
|
|
41
41
|
inPlace?: boolean;
|
|
42
42
|
className?: string;
|
|
43
43
|
}
|
|
44
|
-
declare const JRCModal: React.ForwardRefExoticComponent<JRCModalProps & React.RefAttributes<HTMLDivElement>>;
|
|
45
|
-
export default JRCModal;
|
|
44
|
+
export declare const JRCModal: React.ForwardRefExoticComponent<JRCModalProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -40,5 +40,4 @@ export interface JRCModalImgProps {
|
|
|
40
40
|
};
|
|
41
41
|
className?: string;
|
|
42
42
|
}
|
|
43
|
-
declare const JRCModalImg: ({ open, closeHandler, buttons, children, title, showIconClose, img, className, }: JRCModalImgProps) => JSX.Element | null;
|
|
44
|
-
export default JRCModalImg;
|
|
43
|
+
export declare const JRCModalImg: ({ open, closeHandler, buttons, children, title, showIconClose, img, className, }: JRCModalImgProps) => JSX.Element | null;
|
|
@@ -16,5 +16,4 @@ export declare type JRCPaginationProps = DataCy & {
|
|
|
16
16
|
clickHandler: (page: number) => void;
|
|
17
17
|
};
|
|
18
18
|
export declare const PaginationBullet: ({ number, isActive, dataCy, clickHandler }: PaginationBulletProps) => JSX.Element;
|
|
19
|
-
declare const JRCPagination: ({ activePage, nbrOfPage, clickHandler, dataCy }: JRCPaginationProps) => JSX.Element;
|
|
20
|
-
export default JRCPagination;
|
|
19
|
+
export declare const JRCPagination: ({ activePage, nbrOfPage, clickHandler, dataCy }: JRCPaginationProps) => JSX.Element;
|
|
@@ -13,5 +13,4 @@ import './animation.css';
|
|
|
13
13
|
export interface JRCThemeProviderProps {
|
|
14
14
|
children: React.ReactNode;
|
|
15
15
|
}
|
|
16
|
-
declare const JRCThemeProvider: (props: JRCThemeProviderProps) => JSX.Element;
|
|
17
|
-
export default JRCThemeProvider;
|
|
16
|
+
export declare const JRCThemeProvider: (props: JRCThemeProviderProps) => JSX.Element;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { JRCContainerProps } from './template.type';
|
|
3
|
-
export declare
|
|
2
|
+
export declare const JRCContainer: ({ children, scrollRef, ...props }: JRCContainerProps) => JSX.Element;
|
|
@@ -13,7 +13,7 @@ export declare const EasterEggIcon: import("styled-components").StyledComponent<
|
|
|
13
13
|
}, never>;
|
|
14
14
|
export declare const reduce: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<Open, any>>;
|
|
15
15
|
export declare const AppTitle: import("styled-components").StyledComponent<"h1", any, {}, never>;
|
|
16
|
-
export declare const
|
|
16
|
+
export declare const DisappearP: import("styled-components").StyledComponent<"p", any, Open, never>;
|
|
17
17
|
export declare const DisappearSpan: import("styled-components").StyledComponent<"span", any, Open, never>;
|
|
18
18
|
export declare function DisappearDescription({ children, open }: {
|
|
19
19
|
children: any;
|
|
@@ -24,11 +24,6 @@ export declare const OpenCloseButton: import("styled-components").StyledComponen
|
|
|
24
24
|
slot?: string | undefined;
|
|
25
25
|
style?: React.CSSProperties | undefined;
|
|
26
26
|
title?: string | undefined;
|
|
27
|
-
type?: "button" | "reset" | "submit" | undefined;
|
|
28
|
-
name?: string | undefined;
|
|
29
|
-
hidden?: boolean | undefined;
|
|
30
|
-
color?: string | undefined;
|
|
31
|
-
disabled?: boolean | undefined;
|
|
32
27
|
key?: React.Key | null | undefined;
|
|
33
28
|
defaultChecked?: boolean | undefined;
|
|
34
29
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -36,14 +31,15 @@ export declare const OpenCloseButton: import("styled-components").StyledComponen
|
|
|
36
31
|
suppressHydrationWarning?: boolean | undefined;
|
|
37
32
|
accessKey?: string | undefined;
|
|
38
33
|
className?: string | undefined;
|
|
39
|
-
contentEditable?:
|
|
34
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
40
35
|
contextMenu?: string | undefined;
|
|
41
36
|
dir?: string | undefined;
|
|
42
|
-
draggable?: (boolean | "
|
|
37
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
38
|
+
hidden?: boolean | undefined;
|
|
43
39
|
id?: string | undefined;
|
|
44
40
|
lang?: string | undefined;
|
|
45
41
|
placeholder?: string | undefined;
|
|
46
|
-
spellCheck?: (boolean | "
|
|
42
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
47
43
|
tabIndex?: number | undefined;
|
|
48
44
|
translate?: "yes" | "no" | undefined;
|
|
49
45
|
radioGroup?: string | undefined;
|
|
@@ -59,6 +55,7 @@ export declare const OpenCloseButton: import("styled-components").StyledComponen
|
|
|
59
55
|
autoCapitalize?: string | undefined;
|
|
60
56
|
autoCorrect?: string | undefined;
|
|
61
57
|
autoSave?: string | undefined;
|
|
58
|
+
color?: string | undefined;
|
|
62
59
|
itemProp?: string | undefined;
|
|
63
60
|
itemScope?: boolean | undefined;
|
|
64
61
|
itemType?: string | undefined;
|
|
@@ -67,50 +64,50 @@ export declare const OpenCloseButton: import("styled-components").StyledComponen
|
|
|
67
64
|
results?: number | undefined;
|
|
68
65
|
security?: string | undefined;
|
|
69
66
|
unselectable?: "on" | "off" | undefined;
|
|
70
|
-
inputMode?: "
|
|
67
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
71
68
|
is?: string | undefined;
|
|
72
69
|
'aria-activedescendant'?: string | undefined;
|
|
73
|
-
'aria-atomic'?: (boolean | "
|
|
74
|
-
'aria-autocomplete'?: "
|
|
75
|
-
'aria-busy'?: (boolean | "
|
|
76
|
-
'aria-checked'?: boolean | "
|
|
70
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
71
|
+
'aria-autocomplete'?: "list" | "none" | "both" | "inline" | undefined;
|
|
72
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
77
74
|
'aria-colcount'?: number | undefined;
|
|
78
75
|
'aria-colindex'?: number | undefined;
|
|
79
76
|
'aria-colspan'?: number | undefined;
|
|
80
77
|
'aria-controls'?: string | undefined;
|
|
81
|
-
'aria-current'?: boolean | "time" | "
|
|
78
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
82
79
|
'aria-describedby'?: string | undefined;
|
|
83
80
|
'aria-details'?: string | undefined;
|
|
84
|
-
'aria-disabled'?: (boolean | "
|
|
81
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
85
82
|
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
86
83
|
'aria-errormessage'?: string | undefined;
|
|
87
|
-
'aria-expanded'?: (boolean | "
|
|
84
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
88
85
|
'aria-flowto'?: string | undefined;
|
|
89
|
-
'aria-grabbed'?: (boolean | "
|
|
90
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
91
|
-
'aria-hidden'?: (boolean | "
|
|
92
|
-
'aria-invalid'?: boolean | "
|
|
86
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
87
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
88
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
89
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
93
90
|
'aria-keyshortcuts'?: string | undefined;
|
|
94
91
|
'aria-label'?: string | undefined;
|
|
95
92
|
'aria-labelledby'?: string | undefined;
|
|
96
93
|
'aria-level'?: number | undefined;
|
|
97
94
|
'aria-live'?: "off" | "polite" | "assertive" | undefined;
|
|
98
|
-
'aria-modal'?: (boolean | "
|
|
99
|
-
'aria-multiline'?: (boolean | "
|
|
100
|
-
'aria-multiselectable'?: (boolean | "
|
|
95
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
96
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
97
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
101
98
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
102
99
|
'aria-owns'?: string | undefined;
|
|
103
100
|
'aria-placeholder'?: string | undefined;
|
|
104
101
|
'aria-posinset'?: number | undefined;
|
|
105
|
-
'aria-pressed'?: boolean | "
|
|
106
|
-
'aria-readonly'?: (boolean | "
|
|
102
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
103
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
107
104
|
'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
108
|
-
'aria-required'?: (boolean | "
|
|
105
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
109
106
|
'aria-roledescription'?: string | undefined;
|
|
110
107
|
'aria-rowcount'?: number | undefined;
|
|
111
108
|
'aria-rowindex'?: number | undefined;
|
|
112
109
|
'aria-rowspan'?: number | undefined;
|
|
113
|
-
'aria-selected'?: (boolean | "
|
|
110
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
114
111
|
'aria-setsize'?: number | undefined;
|
|
115
112
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
116
113
|
'aria-valuemax'?: number | undefined;
|
|
@@ -282,17 +279,20 @@ export declare const OpenCloseButton: import("styled-components").StyledComponen
|
|
|
282
279
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
283
280
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
284
281
|
css?: import("@emotion/core").InterpolationWithTheme<any>;
|
|
282
|
+
type?: "button" | "reset" | "submit" | undefined;
|
|
285
283
|
autoFocus?: boolean | undefined;
|
|
284
|
+
disabled?: boolean | undefined;
|
|
286
285
|
formAction?: string | undefined;
|
|
287
286
|
formEncType?: string | undefined;
|
|
288
287
|
formMethod?: string | undefined;
|
|
289
288
|
formNoValidate?: boolean | undefined;
|
|
290
289
|
formTarget?: string | undefined;
|
|
290
|
+
name?: string | undefined;
|
|
291
291
|
value?: string | number | readonly string[] | undefined;
|
|
292
292
|
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
293
293
|
theme: any;
|
|
294
294
|
offset: string;
|
|
295
|
-
} & Open & Closing, "
|
|
295
|
+
} & Open & Closing, "form" | "slot" | "style" | "title" | "ref" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "type" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "theme" | "offset">;
|
|
296
296
|
export declare const AppTabLabel: import("styled-components").StyledComponent<"p", any, Open, never>;
|
|
297
297
|
export declare const AppTabContainer: import("styled-components").StyledComponent<"div", any, Open, never>;
|
|
298
298
|
export declare const AppTab: import("styled-components").StyledComponent<"button", any, Open & {
|