@veeqo/ui 14.3.0-beta-6 → 14.3.0-beta-7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Accordion/styled.d.ts +5 -5
- package/dist/components/Action/Action.d.ts +4 -4
- package/dist/components/AnimatedDropdown/components/styled.d.ts +1 -1
- package/dist/components/AnimatedDropdown/styled.d.ts +2 -2
- package/dist/components/Badge/styled.d.ts +3 -3
- package/dist/components/Banner/styled.d.ts +7 -7
- package/dist/components/BaseContainer/BaseContainer.cjs +4 -1
- package/dist/components/BaseContainer/BaseContainer.cjs.map +1 -1
- package/dist/components/BaseContainer/BaseContainer.d.ts +2 -1
- package/dist/components/BaseContainer/BaseContainer.js +4 -1
- package/dist/components/BaseContainer/BaseContainer.js.map +1 -1
- package/dist/components/BaseContainer/index.d.ts +1 -0
- package/dist/components/BaseContainer/types.d.ts +15 -0
- package/dist/components/DimensionsInput/DimensionsInput.d.ts +10 -10
- package/dist/components/FilterTag/styled.d.ts +5 -5
- package/dist/components/Grid/index.d.ts +1 -1
- package/dist/components/LegacyDataTable/SpecificState/styled.d.ts +4 -4
- package/dist/components/Pagination/styled.d.ts +10 -10
- package/dist/components/PhoneInput/index.d.ts +10 -10
- package/dist/components/Search/Search.d.ts +10 -10
- package/dist/components/Search/styled.d.ts +11 -11
- package/dist/components/SegmentedControl/styled.d.ts +1 -1
- package/dist/components/Stack/Stack.cjs +2 -1
- package/dist/components/Stack/Stack.cjs.map +1 -1
- package/dist/components/Stack/Stack.d.ts +1 -0
- package/dist/components/Stack/Stack.js +2 -1
- package/dist/components/Stack/Stack.js.map +1 -1
- package/dist/components/Stack/types.d.ts +6 -0
- package/dist/components/Stepper/styled.d.ts +1 -0
- package/dist/components/Text/Text.d.ts +1 -1
- package/dist/components/TextField/TextField.d.ts +10 -10
- package/dist/components/TextField/index.d.ts +10 -10
- package/dist/components/ToastsLayout/components/styled.d.ts +5 -2
- package/dist/components/Toggle/styled.d.ts +1 -1
- package/dist/components/VideoModal/components/styled.d.ts +3 -3
- package/dist/components/View/styled.d.ts +4 -4
- package/dist/components/index.d.ts +1 -1
- package/dist/hoc/withLabels/styled.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Text } from '../Text';
|
|
3
|
-
declare const Left: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
3
|
+
declare const Left: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
4
4
|
glyphColor: string;
|
|
5
5
|
}, never>;
|
|
6
6
|
declare const Right: import("styled-components").StyledComponent<any, any, object, string | number | symbol>;
|
|
@@ -9,7 +9,7 @@ declare const Right: import("styled-components").StyledComponent<any, any, objec
|
|
|
9
9
|
* the accordion is focussed.
|
|
10
10
|
*/
|
|
11
11
|
declare const AccordionSummary: import("styled-components").StyledComponent<"summary", any, {}, never>;
|
|
12
|
-
declare const Top: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
12
|
+
declare const Top: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
13
13
|
declare const Description: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
14
14
|
/**
|
|
15
15
|
* Due to unique behaviour observed in Safari, we override the outline property when
|
|
@@ -17,10 +17,10 @@ declare const Description: import("styled-components").StyledComponent<import("r
|
|
|
17
17
|
*/
|
|
18
18
|
as?: import("../Text").ValidTextTag | undefined;
|
|
19
19
|
muted?: boolean | undefined;
|
|
20
|
-
variant?: "
|
|
20
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
21
21
|
} & import("react").HTMLAttributes<HTMLElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
|
|
22
|
-
declare const AccordionContent: import("styled-components").StyledComponent<import("framer-motion").CustomDomComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
22
|
+
declare const AccordionContent: import("styled-components").StyledComponent<import("framer-motion").CustomDomComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
23
23
|
declare const AccordionDetails: import("styled-components").StyledComponent<"details", any, {}, never>;
|
|
24
|
-
declare const UnstyledAccordionContent: import("styled-components").StyledComponent<import("framer-motion").CustomDomComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
24
|
+
declare const UnstyledAccordionContent: import("styled-components").StyledComponent<import("framer-motion").CustomDomComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
25
25
|
declare const UnstyledAccordionSummary: import("styled-components").StyledComponent<"summary", any, {}, never>;
|
|
26
26
|
export { AccordionSummary, Top, Text, Left, Right, Description, AccordionDetails, AccordionContent, UnstyledAccordionContent, UnstyledAccordionSummary, };
|
|
@@ -14,7 +14,7 @@ export declare const ActionBase: React.ForwardRefExoticComponent<(Omit<{
|
|
|
14
14
|
size?: import("./types").ActionSize | undefined;
|
|
15
15
|
type?: "button" | "submit" | "reset" | undefined;
|
|
16
16
|
variant?: import("./types").ActionVariant | undefined;
|
|
17
|
-
} & Omit<Omit<any, "ref">, "href" | "rel" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
17
|
+
} & Omit<Omit<any, "ref">, "href" | "rel" | "slot" | "style" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "rev" | "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" | "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" | keyof {
|
|
18
18
|
appearance?: import("./types").ActionAppearance | undefined;
|
|
19
19
|
as?: C | undefined;
|
|
20
20
|
children?: React.ReactNode;
|
|
@@ -42,7 +42,7 @@ export declare const ActionBase: React.ForwardRefExoticComponent<(Omit<{
|
|
|
42
42
|
size?: import("./types").ActionSize | undefined;
|
|
43
43
|
type?: "button" | "submit" | "reset" | undefined;
|
|
44
44
|
variant?: import("./types").ActionVariant | undefined;
|
|
45
|
-
} & Omit<Omit<any, "ref">, "href" | "rel" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
45
|
+
} & Omit<Omit<any, "ref">, "href" | "rel" | "slot" | "style" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "rev" | "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" | "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" | keyof {
|
|
46
46
|
appearance?: import("./types").ActionAppearance | undefined;
|
|
47
47
|
as?: C | undefined;
|
|
48
48
|
children?: React.ReactNode;
|
|
@@ -69,7 +69,7 @@ export declare const Action: React.ForwardRefExoticComponent<(Omit<Omit<Omit<{
|
|
|
69
69
|
size?: import("./types").ActionSize | undefined;
|
|
70
70
|
type?: "button" | "submit" | "reset" | undefined;
|
|
71
71
|
variant?: import("./types").ActionVariant | undefined;
|
|
72
|
-
} & Omit<Omit<any, "ref">, "href" | "rel" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
72
|
+
} & Omit<Omit<any, "ref">, "href" | "rel" | "slot" | "style" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "rev" | "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" | "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" | keyof {
|
|
73
73
|
appearance?: import("./types").ActionAppearance | undefined;
|
|
74
74
|
as?: C | undefined;
|
|
75
75
|
children?: React.ReactNode;
|
|
@@ -97,7 +97,7 @@ export declare const Action: React.ForwardRefExoticComponent<(Omit<Omit<Omit<{
|
|
|
97
97
|
size?: import("./types").ActionSize | undefined;
|
|
98
98
|
type?: "button" | "submit" | "reset" | undefined;
|
|
99
99
|
variant?: import("./types").ActionVariant | undefined;
|
|
100
|
-
} & Omit<Omit<any, "ref">, "href" | "rel" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
100
|
+
} & Omit<Omit<any, "ref">, "href" | "rel" | "slot" | "style" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "rev" | "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" | "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" | keyof {
|
|
101
101
|
appearance?: import("./types").ActionAppearance | undefined;
|
|
102
102
|
as?: C | undefined;
|
|
103
103
|
children?: React.ReactNode;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
2
|
+
export declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../..").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
3
|
-
declare const Wrap: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
2
|
+
declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("..").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
3
|
+
declare const Wrap: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("..").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
4
4
|
declare const Dropdown: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../types").EventHandlerProps & {
|
|
5
5
|
className?: string | undefined;
|
|
6
6
|
children: import("react").ReactNode;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
type BaseBadgeProps = {
|
|
3
3
|
hideBorder: boolean;
|
|
4
4
|
};
|
|
5
|
-
export declare const DefaultBadge: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, BaseBadgeProps, never>;
|
|
6
|
-
export declare const PrimaryBadge: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, BaseBadgeProps, never>;
|
|
7
|
-
export declare const WarningBadge: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, BaseBadgeProps, never>;
|
|
5
|
+
export declare const DefaultBadge: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, BaseBadgeProps, never>;
|
|
6
|
+
export declare const PrimaryBadge: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, BaseBadgeProps, never>;
|
|
7
|
+
export declare const WarningBadge: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, BaseBadgeProps, never>;
|
|
8
8
|
export {};
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const BannerLayout: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
2
|
+
declare const BannerLayout: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
3
3
|
children?: import("react").ReactNode;
|
|
4
4
|
className?: string | undefined;
|
|
5
5
|
accentColor?: string | undefined;
|
|
6
6
|
backgroundColor?: string | undefined;
|
|
7
7
|
}, never>;
|
|
8
|
-
declare const Row: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
9
|
-
declare const Col: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
10
|
-
export declare const IconCol: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
8
|
+
declare const Row: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
9
|
+
declare const Col: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
10
|
+
export declare const IconCol: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
11
11
|
accentColor: string;
|
|
12
12
|
}, never>;
|
|
13
|
-
export declare const ChildContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
14
|
-
declare const HeaderCol: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
13
|
+
export declare const ChildContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
14
|
+
declare const HeaderCol: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
15
15
|
declare const StyledText: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
16
16
|
as?: import("../Text").ValidTextTag | undefined;
|
|
17
17
|
muted?: boolean | undefined;
|
|
18
|
-
variant?: "
|
|
18
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
19
19
|
} & import("react").HTMLAttributes<HTMLElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
|
|
20
20
|
export { BannerLayout as Pill, StyledText as Text, Row, Col, HeaderCol };
|
|
@@ -9,7 +9,10 @@ function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'defau
|
|
|
9
9
|
|
|
10
10
|
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
11
11
|
|
|
12
|
-
const BaseContainer = React__default.default.forwardRef(({ className, children,
|
|
12
|
+
const BaseContainer = React__default.default.forwardRef(({ className, children, as = 'div', forwardedAs, ...rest }, ref) => {
|
|
13
|
+
const Element = forwardedAs || as;
|
|
14
|
+
return (React__default.default.createElement(Element, { className: buildClassnames.buildClassnames([BaseContainer_module.base, className]), ref: ref, ...rest }, children));
|
|
15
|
+
});
|
|
13
16
|
BaseContainer.displayName = 'BaseContainer';
|
|
14
17
|
|
|
15
18
|
exports.BaseContainer = BaseContainer;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseContainer.cjs","sources":["../../../src/components/BaseContainer/BaseContainer.tsx"],"sourcesContent":["import React from 'react';\nimport { buildClassnames } from '../../utils';\nimport styles from './BaseContainer.module.scss';\n\nexport const BaseContainer = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, children, ...rest }, ref) => (\n
|
|
1
|
+
{"version":3,"file":"BaseContainer.cjs","sources":["../../../src/components/BaseContainer/BaseContainer.tsx"],"sourcesContent":["import React from 'react';\nimport { buildClassnames } from '../../utils';\nimport styles from './BaseContainer.module.scss';\nimport { BaseContainerProps } from './types';\n\nexport const BaseContainer = React.forwardRef<\n HTMLDivElement,\n BaseContainerProps & React.HTMLAttributes<HTMLDivElement>\n>(({ className, children, as = 'div', forwardedAs, ...rest }, ref) => {\n const Element = forwardedAs || as;\n\n return (\n <Element className={buildClassnames([styles.base, className])} ref={ref} {...rest}>\n {children}\n </Element>\n );\n});\n\nBaseContainer.displayName = 'BaseContainer';\n"],"names":["React","buildClassnames","styles"],"mappings":";;;;;;;;;;;AAKO,MAAM,aAAa,GAAGA,sBAAK,CAAC,UAAU,CAG3C,CAAC,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,GAAG,KAAK,EAAE,WAAW,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG,KAAI;AACnE,IAAA,MAAM,OAAO,GAAG,WAAW,IAAI,EAAE;IAEjC,QACEA,sBAAA,CAAA,aAAA,CAAC,OAAO,EAAA,EAAC,SAAS,EAAEC,+BAAe,CAAC,CAACC,oBAAM,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,EAAA,GAAM,IAAI,EAAA,EAC9E,QAAQ,CACD;AAEd,CAAC;AAED,aAAa,CAAC,WAAW,GAAG,eAAe;;;;"}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
2
|
+
import { BaseContainerProps } from './types';
|
|
3
|
+
export declare const BaseContainer: React.ForwardRefExoticComponent<BaseContainerProps & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -3,7 +3,10 @@ import { buildClassnames } from '../../utils/buildClassnames.js';
|
|
|
3
3
|
import 'uid/secure';
|
|
4
4
|
import styles from './BaseContainer.module.scss.js';
|
|
5
5
|
|
|
6
|
-
const BaseContainer = React__default.forwardRef(({ className, children,
|
|
6
|
+
const BaseContainer = React__default.forwardRef(({ className, children, as = 'div', forwardedAs, ...rest }, ref) => {
|
|
7
|
+
const Element = forwardedAs || as;
|
|
8
|
+
return (React__default.createElement(Element, { className: buildClassnames([styles.base, className]), ref: ref, ...rest }, children));
|
|
9
|
+
});
|
|
7
10
|
BaseContainer.displayName = 'BaseContainer';
|
|
8
11
|
|
|
9
12
|
export { BaseContainer };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseContainer.js","sources":["../../../src/components/BaseContainer/BaseContainer.tsx"],"sourcesContent":["import React from 'react';\nimport { buildClassnames } from '../../utils';\nimport styles from './BaseContainer.module.scss';\n\nexport const BaseContainer = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, children, ...rest }, ref) => (\n
|
|
1
|
+
{"version":3,"file":"BaseContainer.js","sources":["../../../src/components/BaseContainer/BaseContainer.tsx"],"sourcesContent":["import React from 'react';\nimport { buildClassnames } from '../../utils';\nimport styles from './BaseContainer.module.scss';\nimport { BaseContainerProps } from './types';\n\nexport const BaseContainer = React.forwardRef<\n HTMLDivElement,\n BaseContainerProps & React.HTMLAttributes<HTMLDivElement>\n>(({ className, children, as = 'div', forwardedAs, ...rest }, ref) => {\n const Element = forwardedAs || as;\n\n return (\n <Element className={buildClassnames([styles.base, className])} ref={ref} {...rest}>\n {children}\n </Element>\n );\n});\n\nBaseContainer.displayName = 'BaseContainer';\n"],"names":["React"],"mappings":";;;;;AAKO,MAAM,aAAa,GAAGA,cAAK,CAAC,UAAU,CAG3C,CAAC,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,GAAG,KAAK,EAAE,WAAW,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG,KAAI;AACnE,IAAA,MAAM,OAAO,GAAG,WAAW,IAAI,EAAE;IAEjC,QACEA,cAAA,CAAA,aAAA,CAAC,OAAO,EAAA,EAAC,SAAS,EAAE,eAAe,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,EAAA,GAAM,IAAI,EAAA,EAC9E,QAAQ,CACD;AAEd,CAAC;AAED,aAAa,CAAC,WAAW,GAAG,eAAe;;;;"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
export type BaseContainerProps = {
|
|
3
|
+
children?: ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
/**
|
|
6
|
+
* Polymorphic element type. Defaults to 'div'.
|
|
7
|
+
*/
|
|
8
|
+
as?: React.ElementType;
|
|
9
|
+
/**
|
|
10
|
+
* @internal Used by styled-components v5 when wrapping this component
|
|
11
|
+
* with styled(BaseContainer).attrs({ forwardedAs: 'element' }).
|
|
12
|
+
* Consumers should use `as` directly for polymorphic rendering.
|
|
13
|
+
*/
|
|
14
|
+
forwardedAs?: React.ElementType;
|
|
15
|
+
};
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const DimensionsInput: React.ForwardRefExoticComponent<{
|
|
3
3
|
rel?: string | undefined;
|
|
4
|
+
form?: string | undefined;
|
|
5
|
+
slot?: string | undefined;
|
|
6
|
+
style?: React.CSSProperties | undefined;
|
|
7
|
+
title?: string | undefined;
|
|
8
|
+
pattern?: string | undefined;
|
|
4
9
|
className?: string | undefined;
|
|
5
10
|
children?: React.ReactNode;
|
|
6
11
|
defaultChecked?: boolean | undefined;
|
|
@@ -9,7 +14,7 @@ export declare const DimensionsInput: React.ForwardRefExoticComponent<{
|
|
|
9
14
|
suppressHydrationWarning?: boolean | undefined;
|
|
10
15
|
accessKey?: string | undefined;
|
|
11
16
|
autoFocus?: boolean | undefined;
|
|
12
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
17
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
13
18
|
contextMenu?: string | undefined;
|
|
14
19
|
dir?: string | undefined;
|
|
15
20
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -18,12 +23,9 @@ export declare const DimensionsInput: React.ForwardRefExoticComponent<{
|
|
|
18
23
|
lang?: string | undefined;
|
|
19
24
|
nonce?: string | undefined;
|
|
20
25
|
placeholder?: string | undefined;
|
|
21
|
-
slot?: string | undefined;
|
|
22
26
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
23
|
-
style?: React.CSSProperties | undefined;
|
|
24
27
|
tabIndex?: number | undefined;
|
|
25
|
-
|
|
26
|
-
translate?: "yes" | "no" | undefined;
|
|
28
|
+
translate?: "no" | "yes" | undefined;
|
|
27
29
|
radioGroup?: string | undefined;
|
|
28
30
|
role?: React.AriaRole | undefined;
|
|
29
31
|
about?: string | undefined;
|
|
@@ -48,7 +50,7 @@ export declare const DimensionsInput: React.ForwardRefExoticComponent<{
|
|
|
48
50
|
results?: number | undefined;
|
|
49
51
|
security?: string | undefined;
|
|
50
52
|
unselectable?: "on" | "off" | undefined;
|
|
51
|
-
inputMode?: "
|
|
53
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
52
54
|
is?: string | undefined;
|
|
53
55
|
'aria-activedescendant'?: string | undefined;
|
|
54
56
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -68,7 +70,7 @@ export declare const DimensionsInput: React.ForwardRefExoticComponent<{
|
|
|
68
70
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
69
71
|
'aria-flowto'?: string | undefined;
|
|
70
72
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
71
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
73
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
72
74
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
73
75
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
74
76
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -260,9 +262,6 @@ export declare const DimensionsInput: React.ForwardRefExoticComponent<{
|
|
|
260
262
|
onAnimationIterationCapture?: (React.AnimationEventHandler<HTMLInputElement> & React.AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
261
263
|
onTransitionEnd?: (React.TransitionEventHandler<HTMLInputElement> & React.TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
262
264
|
onTransitionEndCapture?: (React.TransitionEventHandler<HTMLInputElement> & React.TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
263
|
-
form?: string | undefined;
|
|
264
|
-
pattern?: string | undefined;
|
|
265
|
-
list?: string | undefined;
|
|
266
265
|
alt?: string | undefined;
|
|
267
266
|
disabled?: boolean | undefined;
|
|
268
267
|
formAction?: string | undefined;
|
|
@@ -281,6 +280,7 @@ export declare const DimensionsInput: React.ForwardRefExoticComponent<{
|
|
|
281
280
|
maxLength?: number | undefined;
|
|
282
281
|
minLength?: number | undefined;
|
|
283
282
|
src?: string | undefined;
|
|
283
|
+
list?: string | undefined;
|
|
284
284
|
name?: string | undefined;
|
|
285
285
|
height?: string | number | undefined;
|
|
286
286
|
max?: string | number | undefined;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Text } from '../Text';
|
|
3
3
|
import { AnimatedDropdown } from '../AnimatedDropdown';
|
|
4
|
-
declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
5
|
-
as:
|
|
4
|
+
declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
5
|
+
as: "button";
|
|
6
6
|
}, "as">;
|
|
7
7
|
declare const GroupLabel: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
8
8
|
as?: import("../Text").ValidTextTag | undefined;
|
|
9
9
|
muted?: boolean | undefined;
|
|
10
|
-
variant?: "
|
|
10
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
11
11
|
} & import("react").HTMLAttributes<HTMLElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
|
|
12
12
|
declare const MainIcon: import("styled-components").StyledComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react").JSX.Element, any, {
|
|
13
13
|
$shouldShow?: boolean | undefined;
|
|
14
14
|
}, never>;
|
|
15
15
|
declare const StyledCrossIcon: import("styled-components").StyledComponent<(props: import("react").SVGProps<SVGSVGElement>) => import("react").JSX.Element, any, {}, never>;
|
|
16
|
-
declare const Content: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
17
|
-
declare const Header: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
16
|
+
declare const Content: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
17
|
+
declare const Header: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
18
18
|
color: string;
|
|
19
19
|
}, never>;
|
|
20
20
|
export { Container, Text, AnimatedDropdown as Dropdown, GroupLabel, Content, Header, MainIcon, StyledCrossIcon as CrossIcon, };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { GridProps } from './types';
|
|
3
|
-
export declare const Grid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, GridProps, never>;
|
|
3
|
+
export declare const Grid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, GridProps, never>;
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
type SpecificStateContainerPropTypes = {
|
|
3
3
|
height: number;
|
|
4
4
|
};
|
|
5
|
-
declare const SpecificStateContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, SpecificStateContainerPropTypes, never>;
|
|
6
|
-
declare const EllipseContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
5
|
+
declare const SpecificStateContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, SpecificStateContainerPropTypes, never>;
|
|
6
|
+
declare const EllipseContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
7
7
|
declare const TitleText: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
8
8
|
as?: import("../../Text").ValidTextTag | undefined;
|
|
9
9
|
muted?: boolean | undefined;
|
|
10
|
-
variant?: "
|
|
10
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
11
11
|
} & import("react").HTMLAttributes<HTMLElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
|
|
12
12
|
declare const SubTitleText: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
13
13
|
as?: import("../../Text").ValidTextTag | undefined;
|
|
14
14
|
muted?: boolean | undefined;
|
|
15
|
-
variant?: "
|
|
15
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
16
16
|
} & import("react").HTMLAttributes<HTMLElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
|
|
17
17
|
export { SpecificStateContainer, EllipseContainer, TitleText, SubTitleText };
|
|
@@ -17,6 +17,11 @@ export declare const PaginationButton: import("styled-components").StyledCompone
|
|
|
17
17
|
} & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("../../hoc/withTokens").WithTokensProps & import("react").RefAttributes<HTMLButtonElement>>, any, {}, never>;
|
|
18
18
|
export declare const PageInput: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<{
|
|
19
19
|
rel?: string | undefined;
|
|
20
|
+
form?: string | undefined;
|
|
21
|
+
slot?: string | undefined;
|
|
22
|
+
style?: import("react").CSSProperties | undefined;
|
|
23
|
+
title?: string | undefined;
|
|
24
|
+
pattern?: string | undefined;
|
|
20
25
|
className?: string | undefined;
|
|
21
26
|
children?: import("react").ReactNode;
|
|
22
27
|
defaultChecked?: boolean | undefined;
|
|
@@ -25,7 +30,7 @@ export declare const PageInput: import("styled-components").StyledComponent<impo
|
|
|
25
30
|
suppressHydrationWarning?: boolean | undefined;
|
|
26
31
|
accessKey?: string | undefined;
|
|
27
32
|
autoFocus?: boolean | undefined;
|
|
28
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
33
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
29
34
|
contextMenu?: string | undefined;
|
|
30
35
|
dir?: string | undefined;
|
|
31
36
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -34,12 +39,9 @@ export declare const PageInput: import("styled-components").StyledComponent<impo
|
|
|
34
39
|
lang?: string | undefined;
|
|
35
40
|
nonce?: string | undefined;
|
|
36
41
|
placeholder?: string | undefined;
|
|
37
|
-
slot?: string | undefined;
|
|
38
42
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
39
|
-
style?: import("react").CSSProperties | undefined;
|
|
40
43
|
tabIndex?: number | undefined;
|
|
41
|
-
|
|
42
|
-
translate?: "yes" | "no" | undefined;
|
|
44
|
+
translate?: "no" | "yes" | undefined;
|
|
43
45
|
radioGroup?: string | undefined;
|
|
44
46
|
role?: import("react").AriaRole | undefined;
|
|
45
47
|
about?: string | undefined;
|
|
@@ -64,7 +66,7 @@ export declare const PageInput: import("styled-components").StyledComponent<impo
|
|
|
64
66
|
results?: number | undefined;
|
|
65
67
|
security?: string | undefined;
|
|
66
68
|
unselectable?: "on" | "off" | undefined;
|
|
67
|
-
inputMode?: "
|
|
69
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
68
70
|
is?: string | undefined;
|
|
69
71
|
'aria-activedescendant'?: string | undefined;
|
|
70
72
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -84,7 +86,7 @@ export declare const PageInput: import("styled-components").StyledComponent<impo
|
|
|
84
86
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
85
87
|
'aria-flowto'?: string | undefined;
|
|
86
88
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
87
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
89
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
88
90
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
89
91
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
90
92
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -276,9 +278,6 @@ export declare const PageInput: import("styled-components").StyledComponent<impo
|
|
|
276
278
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
277
279
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
278
280
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
279
|
-
form?: string | undefined;
|
|
280
|
-
pattern?: string | undefined;
|
|
281
|
-
list?: string | undefined;
|
|
282
281
|
alt?: string | undefined;
|
|
283
282
|
disabled?: boolean | undefined;
|
|
284
283
|
formAction?: string | undefined;
|
|
@@ -297,6 +296,7 @@ export declare const PageInput: import("styled-components").StyledComponent<impo
|
|
|
297
296
|
maxLength?: number | undefined;
|
|
298
297
|
minLength?: number | undefined;
|
|
299
298
|
src?: string | undefined;
|
|
299
|
+
list?: string | undefined;
|
|
300
300
|
name?: string | undefined;
|
|
301
301
|
height?: string | number | undefined;
|
|
302
302
|
max?: string | number | undefined;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const PhoneInput: import("react").ForwardRefExoticComponent<{
|
|
3
3
|
rel?: string | undefined;
|
|
4
|
+
form?: string | undefined;
|
|
5
|
+
slot?: string | undefined;
|
|
6
|
+
style?: import("react").CSSProperties | undefined;
|
|
7
|
+
title?: string | undefined;
|
|
8
|
+
pattern?: string | undefined;
|
|
4
9
|
className?: string | undefined;
|
|
5
10
|
children?: import("react").ReactNode;
|
|
6
11
|
defaultChecked?: boolean | undefined;
|
|
@@ -9,7 +14,7 @@ export declare const PhoneInput: import("react").ForwardRefExoticComponent<{
|
|
|
9
14
|
suppressHydrationWarning?: boolean | undefined;
|
|
10
15
|
accessKey?: string | undefined;
|
|
11
16
|
autoFocus?: boolean | undefined;
|
|
12
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
17
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
13
18
|
contextMenu?: string | undefined;
|
|
14
19
|
dir?: string | undefined;
|
|
15
20
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -18,12 +23,9 @@ export declare const PhoneInput: import("react").ForwardRefExoticComponent<{
|
|
|
18
23
|
lang?: string | undefined;
|
|
19
24
|
nonce?: string | undefined;
|
|
20
25
|
placeholder?: string | undefined;
|
|
21
|
-
slot?: string | undefined;
|
|
22
26
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
23
|
-
style?: import("react").CSSProperties | undefined;
|
|
24
27
|
tabIndex?: number | undefined;
|
|
25
|
-
|
|
26
|
-
translate?: "yes" | "no" | undefined;
|
|
28
|
+
translate?: "no" | "yes" | undefined;
|
|
27
29
|
radioGroup?: string | undefined;
|
|
28
30
|
role?: import("react").AriaRole | undefined;
|
|
29
31
|
about?: string | undefined;
|
|
@@ -48,7 +50,7 @@ export declare const PhoneInput: import("react").ForwardRefExoticComponent<{
|
|
|
48
50
|
results?: number | undefined;
|
|
49
51
|
security?: string | undefined;
|
|
50
52
|
unselectable?: "on" | "off" | undefined;
|
|
51
|
-
inputMode?: "
|
|
53
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
52
54
|
is?: string | undefined;
|
|
53
55
|
'aria-activedescendant'?: string | undefined;
|
|
54
56
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -68,7 +70,7 @@ export declare const PhoneInput: import("react").ForwardRefExoticComponent<{
|
|
|
68
70
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
69
71
|
'aria-flowto'?: string | undefined;
|
|
70
72
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
71
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
73
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
72
74
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
73
75
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
74
76
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -260,9 +262,6 @@ export declare const PhoneInput: import("react").ForwardRefExoticComponent<{
|
|
|
260
262
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
261
263
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
262
264
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
263
|
-
form?: string | undefined;
|
|
264
|
-
pattern?: string | undefined;
|
|
265
|
-
list?: string | undefined;
|
|
266
265
|
alt?: string | undefined;
|
|
267
266
|
disabled?: boolean | undefined;
|
|
268
267
|
formAction?: string | undefined;
|
|
@@ -281,6 +280,7 @@ export declare const PhoneInput: import("react").ForwardRefExoticComponent<{
|
|
|
281
280
|
maxLength?: number | undefined;
|
|
282
281
|
minLength?: number | undefined;
|
|
283
282
|
src?: string | undefined;
|
|
283
|
+
list?: string | undefined;
|
|
284
284
|
name?: string | undefined;
|
|
285
285
|
height?: string | number | undefined;
|
|
286
286
|
max?: string | number | undefined;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const Search: React.ForwardRefExoticComponent<{
|
|
3
3
|
rel?: string | undefined;
|
|
4
|
+
form?: string | undefined;
|
|
5
|
+
slot?: string | undefined;
|
|
6
|
+
style?: React.CSSProperties | undefined;
|
|
7
|
+
title?: string | undefined;
|
|
8
|
+
pattern?: string | undefined;
|
|
4
9
|
className?: string | undefined;
|
|
5
10
|
children?: React.ReactNode;
|
|
6
11
|
defaultChecked?: boolean | undefined;
|
|
@@ -9,7 +14,7 @@ export declare const Search: React.ForwardRefExoticComponent<{
|
|
|
9
14
|
suppressHydrationWarning?: boolean | undefined;
|
|
10
15
|
accessKey?: string | undefined;
|
|
11
16
|
autoFocus?: boolean | undefined;
|
|
12
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
17
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
13
18
|
contextMenu?: string | undefined;
|
|
14
19
|
dir?: string | undefined;
|
|
15
20
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -18,12 +23,9 @@ export declare const Search: React.ForwardRefExoticComponent<{
|
|
|
18
23
|
lang?: string | undefined;
|
|
19
24
|
nonce?: string | undefined;
|
|
20
25
|
placeholder?: string | undefined;
|
|
21
|
-
slot?: string | undefined;
|
|
22
26
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
23
|
-
style?: React.CSSProperties | undefined;
|
|
24
27
|
tabIndex?: number | undefined;
|
|
25
|
-
|
|
26
|
-
translate?: "yes" | "no" | undefined;
|
|
28
|
+
translate?: "no" | "yes" | undefined;
|
|
27
29
|
radioGroup?: string | undefined;
|
|
28
30
|
role?: React.AriaRole | undefined;
|
|
29
31
|
about?: string | undefined;
|
|
@@ -48,7 +50,7 @@ export declare const Search: React.ForwardRefExoticComponent<{
|
|
|
48
50
|
results?: number | undefined;
|
|
49
51
|
security?: string | undefined;
|
|
50
52
|
unselectable?: "on" | "off" | undefined;
|
|
51
|
-
inputMode?: "
|
|
53
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
52
54
|
is?: string | undefined;
|
|
53
55
|
'aria-activedescendant'?: string | undefined;
|
|
54
56
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -68,7 +70,7 @@ export declare const Search: React.ForwardRefExoticComponent<{
|
|
|
68
70
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
69
71
|
'aria-flowto'?: string | undefined;
|
|
70
72
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
71
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
73
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
72
74
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
73
75
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
74
76
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -260,9 +262,6 @@ export declare const Search: React.ForwardRefExoticComponent<{
|
|
|
260
262
|
onAnimationIterationCapture?: (React.AnimationEventHandler<HTMLInputElement> & React.AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
261
263
|
onTransitionEnd?: (React.TransitionEventHandler<HTMLInputElement> & React.TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
262
264
|
onTransitionEndCapture?: (React.TransitionEventHandler<HTMLInputElement> & React.TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
263
|
-
form?: string | undefined;
|
|
264
|
-
pattern?: string | undefined;
|
|
265
|
-
list?: string | undefined;
|
|
266
265
|
alt?: string | undefined;
|
|
267
266
|
disabled?: boolean | undefined;
|
|
268
267
|
formAction?: string | undefined;
|
|
@@ -281,6 +280,7 @@ export declare const Search: React.ForwardRefExoticComponent<{
|
|
|
281
280
|
maxLength?: number | undefined;
|
|
282
281
|
minLength?: number | undefined;
|
|
283
282
|
src?: string | undefined;
|
|
283
|
+
list?: string | undefined;
|
|
284
284
|
name?: string | undefined;
|
|
285
285
|
height?: string | number | undefined;
|
|
286
286
|
max?: string | number | undefined;
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
import { Loader } from '../Loader';
|
|
3
3
|
declare const Input: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<{
|
|
4
4
|
rel?: string | undefined;
|
|
5
|
+
form?: string | undefined;
|
|
6
|
+
slot?: string | undefined;
|
|
7
|
+
style?: import("react").CSSProperties | undefined;
|
|
8
|
+
title?: string | undefined;
|
|
9
|
+
pattern?: string | undefined;
|
|
5
10
|
className?: string | undefined;
|
|
6
11
|
children?: import("react").ReactNode;
|
|
7
12
|
defaultChecked?: boolean | undefined;
|
|
@@ -10,7 +15,7 @@ declare const Input: import("styled-components").StyledComponent<import("react")
|
|
|
10
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
11
16
|
accessKey?: string | undefined;
|
|
12
17
|
autoFocus?: boolean | undefined;
|
|
13
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
18
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
14
19
|
contextMenu?: string | undefined;
|
|
15
20
|
dir?: string | undefined;
|
|
16
21
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -19,12 +24,9 @@ declare const Input: import("styled-components").StyledComponent<import("react")
|
|
|
19
24
|
lang?: string | undefined;
|
|
20
25
|
nonce?: string | undefined;
|
|
21
26
|
placeholder?: string | undefined;
|
|
22
|
-
slot?: string | undefined;
|
|
23
27
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
24
|
-
style?: import("react").CSSProperties | undefined;
|
|
25
28
|
tabIndex?: number | undefined;
|
|
26
|
-
|
|
27
|
-
translate?: "yes" | "no" | undefined;
|
|
29
|
+
translate?: "no" | "yes" | undefined;
|
|
28
30
|
radioGroup?: string | undefined;
|
|
29
31
|
role?: import("react").AriaRole | undefined;
|
|
30
32
|
about?: string | undefined;
|
|
@@ -49,7 +51,7 @@ declare const Input: import("styled-components").StyledComponent<import("react")
|
|
|
49
51
|
results?: number | undefined;
|
|
50
52
|
security?: string | undefined;
|
|
51
53
|
unselectable?: "on" | "off" | undefined;
|
|
52
|
-
inputMode?: "
|
|
54
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
53
55
|
is?: string | undefined;
|
|
54
56
|
'aria-activedescendant'?: string | undefined;
|
|
55
57
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -69,7 +71,7 @@ declare const Input: import("styled-components").StyledComponent<import("react")
|
|
|
69
71
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
70
72
|
'aria-flowto'?: string | undefined;
|
|
71
73
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
72
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
74
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
73
75
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
74
76
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
75
77
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -261,9 +263,6 @@ declare const Input: import("styled-components").StyledComponent<import("react")
|
|
|
261
263
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
262
264
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
263
265
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
264
|
-
form?: string | undefined;
|
|
265
|
-
pattern?: string | undefined;
|
|
266
|
-
list?: string | undefined;
|
|
267
266
|
alt?: string | undefined;
|
|
268
267
|
disabled?: boolean | undefined;
|
|
269
268
|
formAction?: string | undefined;
|
|
@@ -282,6 +281,7 @@ declare const Input: import("styled-components").StyledComponent<import("react")
|
|
|
282
281
|
maxLength?: number | undefined;
|
|
283
282
|
minLength?: number | undefined;
|
|
284
283
|
src?: string | undefined;
|
|
284
|
+
list?: string | undefined;
|
|
285
285
|
name?: string | undefined;
|
|
286
286
|
height?: string | number | undefined;
|
|
287
287
|
max?: string | number | undefined;
|
|
@@ -301,7 +301,7 @@ declare const Input: import("styled-components").StyledComponent<import("react")
|
|
|
301
301
|
multiline?: boolean | undefined;
|
|
302
302
|
} & import("react").RefAttributes<HTMLInputElement> & import("../../hoc/withLabels/withLabels").WithLabelsProps, "ref"> & import("react").RefAttributes<unknown>>, any, {}, never>;
|
|
303
303
|
declare const IconContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
304
|
-
declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
304
|
+
declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
305
305
|
iconPosition: 'left' | 'right';
|
|
306
306
|
}, never>;
|
|
307
307
|
export { Container, Input, IconContainer, Loader };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const SegmentedControlContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
2
|
+
export declare const SegmentedControlContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
@@ -14,7 +14,8 @@ var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
|
14
14
|
* @deprecated Replaced by {@link FlexCol} and {@link FlexRow}.
|
|
15
15
|
* Layout component.
|
|
16
16
|
*/
|
|
17
|
-
const Stack = React__default.default.forwardRef(({ direction = 'vertical', alignX = 'start', alignY = 'start', spacing = 'base', as
|
|
17
|
+
const Stack = React__default.default.forwardRef(({ direction = 'vertical', alignX = 'start', alignY = 'start', spacing = 'base', as = 'div', forwardedAs, className, children, style, ...rest }, ref) => {
|
|
18
|
+
const Element = forwardedAs || as;
|
|
18
19
|
const isVertical = direction === 'vertical';
|
|
19
20
|
const alignItemsKey = isVertical ? alignX : alignY;
|
|
20
21
|
const justifyContentKey = isVertical ? alignY : alignX;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Stack.cjs","sources":["../../../src/components/Stack/Stack.tsx"],"sourcesContent":["import React from 'react';\n\nimport { StackProps } from './types';\n\nimport { theme } from '../../theme';\nimport { buildClassnames } from '../../utils';\nimport styles from './Stack.module.scss';\n\n/**\n * @deprecated Replaced by {@link FlexCol} and {@link FlexRow}.\n * Layout component.\n */\nexport const Stack = React.forwardRef<HTMLDivElement, StackProps>(\n (\n {\n direction = 'vertical',\n alignX = 'start',\n alignY = 'start',\n spacing = 'base',\n as
|
|
1
|
+
{"version":3,"file":"Stack.cjs","sources":["../../../src/components/Stack/Stack.tsx"],"sourcesContent":["import React from 'react';\n\nimport { StackProps } from './types';\n\nimport { theme } from '../../theme';\nimport { buildClassnames } from '../../utils';\nimport styles from './Stack.module.scss';\n\n/**\n * @deprecated Replaced by {@link FlexCol} and {@link FlexRow}.\n * Layout component.\n */\nexport const Stack = React.forwardRef<HTMLDivElement, StackProps>(\n (\n {\n direction = 'vertical',\n alignX = 'start',\n alignY = 'start',\n spacing = 'base',\n as = 'div',\n forwardedAs,\n className,\n children,\n style,\n ...rest\n },\n ref,\n ) => {\n const Element = forwardedAs || as;\n const isVertical = direction === 'vertical';\n\n const alignItemsKey = isVertical ? alignX : alignY;\n const justifyContentKey = isVertical ? alignY : alignX;\n\n const isStretch = isVertical ? alignY === 'stretch' : alignX === 'stretch';\n\n const spacingValue = theme.sizes[spacing];\n\n const spacingStyle = isVertical\n ? { rowGap: spacingValue }\n : { columnGap: spacingValue };\n\n return (\n <Element\n className={buildClassnames([\n styles.base,\n styles[`${direction}-direction`],\n styles[`alignItems-${alignItemsKey}`],\n styles[`justifyContent-${justifyContentKey}`],\n isStretch ? styles['stretch-children'] : undefined,\n className,\n ])}\n style={{\n ...spacingStyle,\n ...style,\n }}\n ref={ref}\n {...rest}\n >\n {children}\n </Element>\n );\n },\n);\n\nStack.displayName = 'Stack';\n"],"names":["React","theme","buildClassnames","styles"],"mappings":";;;;;;;;;;;;AAQA;;;AAGG;MACU,KAAK,GAAGA,sBAAK,CAAC,UAAU,CACnC,CACE,EACE,SAAS,GAAG,UAAU,EACtB,MAAM,GAAG,OAAO,EAChB,MAAM,GAAG,OAAO,EAChB,OAAO,GAAG,MAAM,EAChB,EAAE,GAAG,KAAK,EACV,WAAW,EACX,SAAS,EACT,QAAQ,EACR,KAAK,EACL,GAAG,IAAI,EACR,EACD,GAAG,KACD;AACF,IAAA,MAAM,OAAO,GAAG,WAAW,IAAI,EAAE;AACjC,IAAA,MAAM,UAAU,GAAG,SAAS,KAAK,UAAU;IAE3C,MAAM,aAAa,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM;IAClD,MAAM,iBAAiB,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM;AAEtD,IAAA,MAAM,SAAS,GAAG,UAAU,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,KAAK,SAAS;IAE1E,MAAM,YAAY,GAAGC,WAAK,CAAC,KAAK,CAAC,OAAO,CAAC;IAEzC,MAAM,YAAY,GAAG;AACnB,UAAE,EAAE,MAAM,EAAE,YAAY;AACxB,UAAE,EAAE,SAAS,EAAE,YAAY,EAAE;AAE/B,IAAA,QACED,sBAAA,CAAA,aAAA,CAAC,OAAO,IACN,SAAS,EAAEE,+BAAe,CAAC;AACzB,YAAAC,YAAM,CAAC,IAAI;AACX,YAAAA,YAAM,CAAC,CAAA,EAAG,SAAS,CAAA,UAAA,CAAY,CAAC;AAChC,YAAAA,YAAM,CAAC,CAAA,WAAA,EAAc,aAAa,CAAA,CAAE,CAAC;AACrC,YAAAA,YAAM,CAAC,CAAA,eAAA,EAAkB,iBAAiB,CAAA,CAAE,CAAC;YAC7C,SAAS,GAAGA,YAAM,CAAC,kBAAkB,CAAC,GAAG,SAAS;YAClD,SAAS;SACV,CAAC,EACF,KAAK,EAAE;AACL,YAAA,GAAG,YAAY;AACf,YAAA,GAAG,KAAK;SACT,EACD,GAAG,EAAE,GAAG,EAAA,GACJ,IAAI,EAAA,EAEP,QAAQ,CACD;AAEd,CAAC;AAGH,KAAK,CAAC,WAAW,GAAG,OAAO;;;;"}
|
|
@@ -9,4 +9,5 @@ export declare const Stack: React.ForwardRefExoticComponent<{
|
|
|
9
9
|
alignY?: "start" | "end" | "center" | "stretch" | "between" | "around" | undefined;
|
|
10
10
|
spacing?: keyof import("./types").SizeScale | undefined;
|
|
11
11
|
as?: React.ElementType<any> | undefined;
|
|
12
|
+
forwardedAs?: React.ElementType<any> | undefined;
|
|
12
13
|
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -8,7 +8,8 @@ import styles from './Stack.module.scss.js';
|
|
|
8
8
|
* @deprecated Replaced by {@link FlexCol} and {@link FlexRow}.
|
|
9
9
|
* Layout component.
|
|
10
10
|
*/
|
|
11
|
-
const Stack = React__default.forwardRef(({ direction = 'vertical', alignX = 'start', alignY = 'start', spacing = 'base', as
|
|
11
|
+
const Stack = React__default.forwardRef(({ direction = 'vertical', alignX = 'start', alignY = 'start', spacing = 'base', as = 'div', forwardedAs, className, children, style, ...rest }, ref) => {
|
|
12
|
+
const Element = forwardedAs || as;
|
|
12
13
|
const isVertical = direction === 'vertical';
|
|
13
14
|
const alignItemsKey = isVertical ? alignX : alignY;
|
|
14
15
|
const justifyContentKey = isVertical ? alignY : alignX;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Stack.js","sources":["../../../src/components/Stack/Stack.tsx"],"sourcesContent":["import React from 'react';\n\nimport { StackProps } from './types';\n\nimport { theme } from '../../theme';\nimport { buildClassnames } from '../../utils';\nimport styles from './Stack.module.scss';\n\n/**\n * @deprecated Replaced by {@link FlexCol} and {@link FlexRow}.\n * Layout component.\n */\nexport const Stack = React.forwardRef<HTMLDivElement, StackProps>(\n (\n {\n direction = 'vertical',\n alignX = 'start',\n alignY = 'start',\n spacing = 'base',\n as
|
|
1
|
+
{"version":3,"file":"Stack.js","sources":["../../../src/components/Stack/Stack.tsx"],"sourcesContent":["import React from 'react';\n\nimport { StackProps } from './types';\n\nimport { theme } from '../../theme';\nimport { buildClassnames } from '../../utils';\nimport styles from './Stack.module.scss';\n\n/**\n * @deprecated Replaced by {@link FlexCol} and {@link FlexRow}.\n * Layout component.\n */\nexport const Stack = React.forwardRef<HTMLDivElement, StackProps>(\n (\n {\n direction = 'vertical',\n alignX = 'start',\n alignY = 'start',\n spacing = 'base',\n as = 'div',\n forwardedAs,\n className,\n children,\n style,\n ...rest\n },\n ref,\n ) => {\n const Element = forwardedAs || as;\n const isVertical = direction === 'vertical';\n\n const alignItemsKey = isVertical ? alignX : alignY;\n const justifyContentKey = isVertical ? alignY : alignX;\n\n const isStretch = isVertical ? alignY === 'stretch' : alignX === 'stretch';\n\n const spacingValue = theme.sizes[spacing];\n\n const spacingStyle = isVertical\n ? { rowGap: spacingValue }\n : { columnGap: spacingValue };\n\n return (\n <Element\n className={buildClassnames([\n styles.base,\n styles[`${direction}-direction`],\n styles[`alignItems-${alignItemsKey}`],\n styles[`justifyContent-${justifyContentKey}`],\n isStretch ? styles['stretch-children'] : undefined,\n className,\n ])}\n style={{\n ...spacingStyle,\n ...style,\n }}\n ref={ref}\n {...rest}\n >\n {children}\n </Element>\n );\n },\n);\n\nStack.displayName = 'Stack';\n"],"names":["React"],"mappings":";;;;;;AAQA;;;AAGG;MACU,KAAK,GAAGA,cAAK,CAAC,UAAU,CACnC,CACE,EACE,SAAS,GAAG,UAAU,EACtB,MAAM,GAAG,OAAO,EAChB,MAAM,GAAG,OAAO,EAChB,OAAO,GAAG,MAAM,EAChB,EAAE,GAAG,KAAK,EACV,WAAW,EACX,SAAS,EACT,QAAQ,EACR,KAAK,EACL,GAAG,IAAI,EACR,EACD,GAAG,KACD;AACF,IAAA,MAAM,OAAO,GAAG,WAAW,IAAI,EAAE;AACjC,IAAA,MAAM,UAAU,GAAG,SAAS,KAAK,UAAU;IAE3C,MAAM,aAAa,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM;IAClD,MAAM,iBAAiB,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM;AAEtD,IAAA,MAAM,SAAS,GAAG,UAAU,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,KAAK,SAAS;IAE1E,MAAM,YAAY,GAAG,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC;IAEzC,MAAM,YAAY,GAAG;AACnB,UAAE,EAAE,MAAM,EAAE,YAAY;AACxB,UAAE,EAAE,SAAS,EAAE,YAAY,EAAE;AAE/B,IAAA,QACEA,cAAA,CAAA,aAAA,CAAC,OAAO,IACN,SAAS,EAAE,eAAe,CAAC;AACzB,YAAA,MAAM,CAAC,IAAI;AACX,YAAA,MAAM,CAAC,CAAA,EAAG,SAAS,CAAA,UAAA,CAAY,CAAC;AAChC,YAAA,MAAM,CAAC,CAAA,WAAA,EAAc,aAAa,CAAA,CAAE,CAAC;AACrC,YAAA,MAAM,CAAC,CAAA,eAAA,EAAkB,iBAAiB,CAAA,CAAE,CAAC;YAC7C,SAAS,GAAG,MAAM,CAAC,kBAAkB,CAAC,GAAG,SAAS;YAClD,SAAS;SACV,CAAC,EACF,KAAK,EAAE;AACL,YAAA,GAAG,YAAY;AACf,YAAA,GAAG,KAAK;SACT,EACD,GAAG,EAAE,GAAG,EAAA,GACJ,IAAI,EAAA,EAEP,QAAQ,CACD;AAEd,CAAC;AAGH,KAAK,CAAC,WAAW,GAAG,OAAO;;;;"}
|
|
@@ -33,5 +33,11 @@ export type StackProps = {
|
|
|
33
33
|
* Polymorphic element type. Defaults to 'div'.
|
|
34
34
|
*/
|
|
35
35
|
as?: React.ElementType;
|
|
36
|
+
/**
|
|
37
|
+
* @internal Used by styled-components v5 when wrapping this component
|
|
38
|
+
* with styled(Stack).attrs({ forwardedAs: 'element' }).
|
|
39
|
+
* Consumers should use `as` directly for polymorphic rendering.
|
|
40
|
+
*/
|
|
41
|
+
forwardedAs?: React.ElementType;
|
|
36
42
|
} & HTMLAttributes<HTMLDivElement>;
|
|
37
43
|
export {};
|
|
@@ -6,6 +6,7 @@ export declare const ContainerStack: import("styled-components").StyledComponent
|
|
|
6
6
|
alignY?: "start" | "end" | "center" | "stretch" | "between" | "around" | undefined;
|
|
7
7
|
spacing?: keyof import("../Stack").SizeScale | undefined;
|
|
8
8
|
as?: import("react").ElementType<any> | undefined;
|
|
9
|
+
forwardedAs?: import("react").ElementType<any> | undefined;
|
|
9
10
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, FormComponentProps, never>;
|
|
10
11
|
export declare const StepButton: import("styled-components").StyledComponent<"button", any, FormComponentProps, never>;
|
|
11
12
|
export declare const StepperDivider: import("styled-components").StyledComponent<"div", any, Pick<FormComponentProps, "compact">, never>;
|
|
@@ -7,5 +7,5 @@ import React from 'react';
|
|
|
7
7
|
export declare const Text: React.ForwardRefExoticComponent<{
|
|
8
8
|
as?: import("./types").ValidTextTag | undefined;
|
|
9
9
|
muted?: boolean | undefined;
|
|
10
|
-
variant?: "
|
|
10
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
11
11
|
} & React.HTMLAttributes<HTMLElement> & React.LabelHTMLAttributes<HTMLLabelElement> & React.RefAttributes<HTMLElement>>;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const TextField: React.ForwardRefExoticComponent<{
|
|
3
3
|
rel?: string | undefined;
|
|
4
|
+
form?: string | undefined;
|
|
5
|
+
slot?: string | undefined;
|
|
6
|
+
style?: React.CSSProperties | undefined;
|
|
7
|
+
title?: string | undefined;
|
|
8
|
+
pattern?: string | undefined;
|
|
4
9
|
className?: string | undefined;
|
|
5
10
|
children?: React.ReactNode;
|
|
6
11
|
defaultChecked?: boolean | undefined;
|
|
@@ -9,7 +14,7 @@ export declare const TextField: React.ForwardRefExoticComponent<{
|
|
|
9
14
|
suppressHydrationWarning?: boolean | undefined;
|
|
10
15
|
accessKey?: string | undefined;
|
|
11
16
|
autoFocus?: boolean | undefined;
|
|
12
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
17
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
13
18
|
contextMenu?: string | undefined;
|
|
14
19
|
dir?: string | undefined;
|
|
15
20
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -18,12 +23,9 @@ export declare const TextField: React.ForwardRefExoticComponent<{
|
|
|
18
23
|
lang?: string | undefined;
|
|
19
24
|
nonce?: string | undefined;
|
|
20
25
|
placeholder?: string | undefined;
|
|
21
|
-
slot?: string | undefined;
|
|
22
26
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
23
|
-
style?: React.CSSProperties | undefined;
|
|
24
27
|
tabIndex?: number | undefined;
|
|
25
|
-
|
|
26
|
-
translate?: "yes" | "no" | undefined;
|
|
28
|
+
translate?: "no" | "yes" | undefined;
|
|
27
29
|
radioGroup?: string | undefined;
|
|
28
30
|
role?: React.AriaRole | undefined;
|
|
29
31
|
about?: string | undefined;
|
|
@@ -48,7 +50,7 @@ export declare const TextField: React.ForwardRefExoticComponent<{
|
|
|
48
50
|
results?: number | undefined;
|
|
49
51
|
security?: string | undefined;
|
|
50
52
|
unselectable?: "on" | "off" | undefined;
|
|
51
|
-
inputMode?: "
|
|
53
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
52
54
|
is?: string | undefined;
|
|
53
55
|
'aria-activedescendant'?: string | undefined;
|
|
54
56
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -68,7 +70,7 @@ export declare const TextField: React.ForwardRefExoticComponent<{
|
|
|
68
70
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
69
71
|
'aria-flowto'?: string | undefined;
|
|
70
72
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
71
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
73
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
72
74
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
73
75
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
74
76
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -260,9 +262,6 @@ export declare const TextField: React.ForwardRefExoticComponent<{
|
|
|
260
262
|
onAnimationIterationCapture?: (React.AnimationEventHandler<HTMLInputElement> & React.AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
261
263
|
onTransitionEnd?: (React.TransitionEventHandler<HTMLInputElement> & React.TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
262
264
|
onTransitionEndCapture?: (React.TransitionEventHandler<HTMLInputElement> & React.TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
263
|
-
form?: string | undefined;
|
|
264
|
-
pattern?: string | undefined;
|
|
265
|
-
list?: string | undefined;
|
|
266
265
|
alt?: string | undefined;
|
|
267
266
|
disabled?: boolean | undefined;
|
|
268
267
|
formAction?: string | undefined;
|
|
@@ -281,6 +280,7 @@ export declare const TextField: React.ForwardRefExoticComponent<{
|
|
|
281
280
|
maxLength?: number | undefined;
|
|
282
281
|
minLength?: number | undefined;
|
|
283
282
|
src?: string | undefined;
|
|
283
|
+
list?: string | undefined;
|
|
284
284
|
name?: string | undefined;
|
|
285
285
|
height?: string | number | undefined;
|
|
286
286
|
max?: string | number | undefined;
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
export type * from './types';
|
|
3
3
|
export declare const TextField: import("react").ForwardRefExoticComponent<Omit<{
|
|
4
4
|
rel?: string | undefined;
|
|
5
|
+
form?: string | undefined;
|
|
6
|
+
slot?: string | undefined;
|
|
7
|
+
style?: import("react").CSSProperties | undefined;
|
|
8
|
+
title?: string | undefined;
|
|
9
|
+
pattern?: string | undefined;
|
|
5
10
|
className?: string | undefined;
|
|
6
11
|
children?: import("react").ReactNode;
|
|
7
12
|
defaultChecked?: boolean | undefined;
|
|
@@ -10,7 +15,7 @@ export declare const TextField: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
10
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
11
16
|
accessKey?: string | undefined;
|
|
12
17
|
autoFocus?: boolean | undefined;
|
|
13
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
18
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
14
19
|
contextMenu?: string | undefined;
|
|
15
20
|
dir?: string | undefined;
|
|
16
21
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -19,12 +24,9 @@ export declare const TextField: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
19
24
|
lang?: string | undefined;
|
|
20
25
|
nonce?: string | undefined;
|
|
21
26
|
placeholder?: string | undefined;
|
|
22
|
-
slot?: string | undefined;
|
|
23
27
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
24
|
-
style?: import("react").CSSProperties | undefined;
|
|
25
28
|
tabIndex?: number | undefined;
|
|
26
|
-
|
|
27
|
-
translate?: "yes" | "no" | undefined;
|
|
29
|
+
translate?: "no" | "yes" | undefined;
|
|
28
30
|
radioGroup?: string | undefined;
|
|
29
31
|
role?: import("react").AriaRole | undefined;
|
|
30
32
|
about?: string | undefined;
|
|
@@ -49,7 +51,7 @@ export declare const TextField: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
49
51
|
results?: number | undefined;
|
|
50
52
|
security?: string | undefined;
|
|
51
53
|
unselectable?: "on" | "off" | undefined;
|
|
52
|
-
inputMode?: "
|
|
54
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
53
55
|
is?: string | undefined;
|
|
54
56
|
'aria-activedescendant'?: string | undefined;
|
|
55
57
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -69,7 +71,7 @@ export declare const TextField: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
69
71
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
70
72
|
'aria-flowto'?: string | undefined;
|
|
71
73
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
72
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
74
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
73
75
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
74
76
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
75
77
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -261,9 +263,6 @@ export declare const TextField: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
261
263
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLInputElement> & import("react").AnimationEventHandler<HTMLTextAreaElement>) | undefined;
|
|
262
264
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
263
265
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLInputElement> & import("react").TransitionEventHandler<HTMLTextAreaElement>) | undefined;
|
|
264
|
-
form?: string | undefined;
|
|
265
|
-
pattern?: string | undefined;
|
|
266
|
-
list?: string | undefined;
|
|
267
266
|
alt?: string | undefined;
|
|
268
267
|
disabled?: boolean | undefined;
|
|
269
268
|
formAction?: string | undefined;
|
|
@@ -282,6 +281,7 @@ export declare const TextField: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
282
281
|
maxLength?: number | undefined;
|
|
283
282
|
minLength?: number | undefined;
|
|
284
283
|
src?: string | undefined;
|
|
284
|
+
list?: string | undefined;
|
|
285
285
|
name?: string | undefined;
|
|
286
286
|
height?: string | number | undefined;
|
|
287
287
|
max?: string | number | undefined;
|
|
@@ -5,6 +5,7 @@ export declare const ToastsLayoutContainer: import("styled-components").StyledCo
|
|
|
5
5
|
alignY?: "start" | "end" | "center" | "stretch" | "between" | "around" | undefined;
|
|
6
6
|
spacing?: keyof import("../../Stack").SizeScale | undefined;
|
|
7
7
|
as?: import("react").ElementType<any> | undefined;
|
|
8
|
+
forwardedAs?: import("react").ElementType<any> | undefined;
|
|
8
9
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
9
10
|
export declare const Toast: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
10
11
|
direction?: "horizontal" | "vertical" | undefined;
|
|
@@ -12,11 +13,12 @@ export declare const Toast: import("styled-components").StyledComponent<import("
|
|
|
12
13
|
alignY?: "start" | "end" | "center" | "stretch" | "between" | "around" | undefined;
|
|
13
14
|
spacing?: keyof import("../../Stack").SizeScale | undefined;
|
|
14
15
|
as?: import("react").ElementType<any> | undefined;
|
|
16
|
+
forwardedAs?: import("react").ElementType<any> | undefined;
|
|
15
17
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
16
18
|
minWidth: number | string;
|
|
17
19
|
last: boolean;
|
|
18
20
|
}, never>;
|
|
19
|
-
export declare const IconWrap: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
21
|
+
export declare const IconWrap: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
20
22
|
color: string;
|
|
21
23
|
}, never>;
|
|
22
24
|
export declare const ContentStack: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
@@ -25,9 +27,10 @@ export declare const ContentStack: import("styled-components").StyledComponent<i
|
|
|
25
27
|
alignY?: "start" | "end" | "center" | "stretch" | "between" | "around" | undefined;
|
|
26
28
|
spacing?: keyof import("../../Stack").SizeScale | undefined;
|
|
27
29
|
as?: import("react").ElementType<any> | undefined;
|
|
30
|
+
forwardedAs?: import("react").ElementType<any> | undefined;
|
|
28
31
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
29
32
|
export declare const StyledText: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
30
33
|
as?: import("../../Text").ValidTextTag | undefined;
|
|
31
34
|
muted?: boolean | undefined;
|
|
32
|
-
variant?: "
|
|
35
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
33
36
|
} & import("react").HTMLAttributes<HTMLElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
|
|
@@ -6,7 +6,7 @@ declare const Slider: import("styled-components").StyledComponent<"span", any, {
|
|
|
6
6
|
}, never>;
|
|
7
7
|
declare const Input: import("styled-components").StyledComponent<"input", any, {}, never>;
|
|
8
8
|
declare const Switch: import("styled-components").StyledComponent<"span", any, ToggleProps, never>;
|
|
9
|
-
declare const Wrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
9
|
+
declare const Wrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
10
10
|
disabled?: boolean | undefined;
|
|
11
11
|
}, never>;
|
|
12
12
|
export { Switch, Slider, Input, Wrapper };
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
interface IContainer {
|
|
3
3
|
shouldShow: boolean;
|
|
4
4
|
}
|
|
5
|
-
export declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, IContainer, never>;
|
|
6
|
-
export declare const Shadow: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
7
|
-
export declare const Wrap: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
5
|
+
export declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, IContainer, never>;
|
|
6
|
+
export declare const Shadow: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
7
|
+
export declare const Wrap: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
8
8
|
export {};
|
|
@@ -12,20 +12,20 @@ export type CounterProps = {
|
|
|
12
12
|
$active?: boolean;
|
|
13
13
|
$customTextColour?: string;
|
|
14
14
|
} & RequiredPalette;
|
|
15
|
-
declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
15
|
+
declare const Container: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
16
16
|
declare const CounterText: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
17
17
|
as?: import("../Text").ValidTextTag | undefined;
|
|
18
18
|
muted?: boolean | undefined;
|
|
19
|
-
variant?: "
|
|
19
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
20
20
|
} & import("react").HTMLAttributes<HTMLElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & import("react").RefAttributes<HTMLElement>>, any, {}, never>;
|
|
21
|
-
declare const Contour: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
21
|
+
declare const Contour: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../BaseContainer").BaseContainerProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
22
22
|
$active?: boolean | undefined;
|
|
23
23
|
$customTextColour?: string | undefined;
|
|
24
24
|
} & RequiredPalette, never>;
|
|
25
25
|
declare const CounterContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
26
26
|
as?: import("../Text").ValidTextTag | undefined;
|
|
27
27
|
muted?: boolean | undefined;
|
|
28
|
-
variant?: "
|
|
28
|
+
variant?: "body" | "button" | "link" | "placeholder" | "headingXXL" | "headingXL" | "headingLarge" | "headingMedium" | "headingSmall" | "headingTable" | "subheadingLarge" | "subheadingMedium" | "subheadingSmall" | "subheadingSmallBold" | "bodySmall" | "bodyBold" | "bodyBoldDark" | "bodySmallBold" | "inputLabel" | "inputLabelSmall" | "hintText" | "placeholderSmall" | "placeholderCode" | "placeholderCodeSmall" | "error" | "errorSmall" | "successSmall" | "buttonSmall" | "linkLarge" | "linkMedium" | "linkSmall" | undefined;
|
|
29
29
|
} & import("react").HTMLAttributes<HTMLElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & import("react").RefAttributes<HTMLElement>>, any, {
|
|
30
30
|
$active?: boolean | undefined;
|
|
31
31
|
$customTextColour?: string | undefined;
|
|
@@ -9,7 +9,7 @@ export { Avatar } from './Avatar';
|
|
|
9
9
|
export { IconGroup } from './IconGroup';
|
|
10
10
|
export { Badge } from './Badge';
|
|
11
11
|
export { Banner } from './Banner';
|
|
12
|
-
export { BaseContainer } from './BaseContainer';
|
|
12
|
+
export { BaseContainer, type BaseContainerProps } from './BaseContainer';
|
|
13
13
|
export { Breadcrumbs } from './Breadcrumbs';
|
|
14
14
|
export { Button, type ButtonProps } from './Button';
|
|
15
15
|
export { RangeCalendar, Calendar, useIsDateUnavailable } from './Calendars';
|
|
@@ -5,6 +5,7 @@ export declare const RootStack: import("styled-components").StyledComponent<impo
|
|
|
5
5
|
alignY?: "start" | "end" | "center" | "stretch" | "between" | "around" | undefined;
|
|
6
6
|
spacing?: keyof import("../../components/Stack").SizeScale | undefined;
|
|
7
7
|
as?: import("react").ElementType<any> | undefined;
|
|
8
|
+
forwardedAs?: import("react").ElementType<any> | undefined;
|
|
8
9
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
|
|
9
10
|
export declare const Label: import("styled-components").StyledComponent<"label", any, {}, never>;
|
|
10
11
|
export declare const Hint: import("styled-components").StyledComponent<"span", any, {}, never>;
|