@uniformdev/design-system 16.2.1-nuxt.338 → 17.1.0
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/esm/index.js +332 -239
- package/dist/index.d.ts +140 -11
- package/dist/index.js +352 -259
- package/package.json +12 -12
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { StateManagerProps } from 'react-select/dist/declarations/src/useStateMa
|
|
|
10
10
|
import InternalSelect from 'react-select/dist/declarations/src/Select';
|
|
11
11
|
import { MenuHTMLProps, MenuProps as MenuProps$1, MenuStateReturn } from 'reakit/Menu';
|
|
12
12
|
import { MenuItemHTMLProps, MenuProps as MenuProps$2 } from 'reakit';
|
|
13
|
+
import * as url from 'url';
|
|
13
14
|
|
|
14
15
|
/** @todo: line 144 onwards will be brought into a title, paragraph, list and link components */
|
|
15
16
|
declare type ThemeProps = {
|
|
@@ -47,13 +48,37 @@ declare const mq: (size: breakpointSizeProps) => string;
|
|
|
47
48
|
declare const supports: (cssProp: string) => string;
|
|
48
49
|
|
|
49
50
|
declare const labelText: _emotion_react.SerializedStyles;
|
|
50
|
-
declare const input: _emotion_react.SerializedStyles;
|
|
51
|
+
declare const input: (whiteSpaceWrap: 'wrap' | 'nowrap') => _emotion_react.SerializedStyles;
|
|
51
52
|
declare const inputError: _emotion_react.SerializedStyles;
|
|
52
53
|
declare const inputSelect: _emotion_react.SerializedStyles;
|
|
53
54
|
|
|
54
55
|
/** Custom scrollbar styles */
|
|
55
56
|
declare const scrollbarStyles: _emotion_react.SerializedStyles;
|
|
56
57
|
|
|
58
|
+
/**
|
|
59
|
+
* growSubtle animation
|
|
60
|
+
* @description - increases the size of an element from scale(1) - scale(1.15) and back down to scale(1) using transform: scale(1)
|
|
61
|
+
*/
|
|
62
|
+
declare const growSubtle: _emotion_react.Keyframes;
|
|
63
|
+
/**
|
|
64
|
+
* fadeInBottom animation
|
|
65
|
+
* @description - fades in an element from the Y axis by 10px
|
|
66
|
+
*/
|
|
67
|
+
declare const fadeInBottom: _emotion_react.Keyframes;
|
|
68
|
+
/**
|
|
69
|
+
* fadeOutBottom animation
|
|
70
|
+
* @description - fades out an element from the Y axis by 10px
|
|
71
|
+
*/
|
|
72
|
+
declare const fadeOutBottom: _emotion_react.Keyframes;
|
|
73
|
+
/**
|
|
74
|
+
* fadeIn animation
|
|
75
|
+
* @description - fade in an element from 0 to 1 opacity
|
|
76
|
+
*/
|
|
77
|
+
declare const fadeIn: _emotion_react.Keyframes;
|
|
78
|
+
declare const ripple: _emotion_react.Keyframes;
|
|
79
|
+
declare const skeletonLoading: _emotion_react.Keyframes;
|
|
80
|
+
declare const fadeInLtr: _emotion_react.Keyframes;
|
|
81
|
+
|
|
57
82
|
declare type UniformLogoProps = {
|
|
58
83
|
/** sets a light or dark theme for the uniform badge or logo component
|
|
59
84
|
* @default "light"
|
|
@@ -333,12 +358,14 @@ declare type InputToggleProps = React$1.HTMLAttributes<HTMLInputElement> & {
|
|
|
333
358
|
* @default 'bold'
|
|
334
359
|
*/
|
|
335
360
|
fontWeight?: 'normal' | 'medium' | 'bold';
|
|
361
|
+
/** (optional) sets test id for test automation*/
|
|
362
|
+
testId?: string;
|
|
336
363
|
};
|
|
337
364
|
/**
|
|
338
365
|
* Component that creates a checkbox or radio input field
|
|
339
366
|
* @example <InputToggle label="Do you like ice cream?" type="checkbox" name="ice-cream" />
|
|
340
367
|
*/
|
|
341
|
-
declare const InputToggle: ({ label, type, disabled, checked, name, caption, errorMessage, fontWeight, ...props }: InputToggleProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
368
|
+
declare const InputToggle: ({ label, type, disabled, checked, name, caption, errorMessage, testId, fontWeight, ...props }: InputToggleProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
342
369
|
|
|
343
370
|
declare type TextareaProps = React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
344
371
|
/** (optional) sets the label value */
|
|
@@ -474,12 +501,16 @@ declare type HeadingProps = {
|
|
|
474
501
|
level?: LevelProps;
|
|
475
502
|
/** sets the title value */
|
|
476
503
|
children: React$1.ReactNode;
|
|
504
|
+
/** (optional) sets whether to use the default margin for the heading element
|
|
505
|
+
* @default true
|
|
506
|
+
*/
|
|
507
|
+
withMarginBottom?: boolean;
|
|
477
508
|
} & React$1.HTMLAttributes<HTMLHeadingElement>;
|
|
478
509
|
/**
|
|
479
510
|
* Component that sets the heading tag
|
|
480
511
|
* @example <Heading level={1}>Blog Post Title</Heading>
|
|
481
512
|
*/
|
|
482
|
-
declare const Heading: ({ level, children, ...hAttributes }: HeadingProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
513
|
+
declare const Heading: ({ level, withMarginBottom, children, ...hAttributes }: HeadingProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
483
514
|
|
|
484
515
|
declare type ParagraphProps = {
|
|
485
516
|
/** (optional) adds child elements to the paragraph tag */
|
|
@@ -505,8 +536,9 @@ declare type PageHeaderSectionProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
|
505
536
|
children?: React$1.ReactNode;
|
|
506
537
|
linkProps?: RouteProps;
|
|
507
538
|
linkText?: string;
|
|
539
|
+
level?: LevelProps;
|
|
508
540
|
};
|
|
509
|
-
declare const PageHeaderSection: ({ title, desc, children, linkText, linkProps, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
541
|
+
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
510
542
|
|
|
511
543
|
declare type LinkColorProps = 'currentColor' | 'red' | 'green';
|
|
512
544
|
declare type LinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
@@ -520,9 +552,45 @@ declare type LinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
|
520
552
|
external?: boolean;
|
|
521
553
|
/** (optional) For supporting inside next/link component */
|
|
522
554
|
ref?: React$1.ForwardedRef<HTMLAnchorElement>;
|
|
555
|
+
/** (optional) sets react child elements */
|
|
556
|
+
children?: React$1.ReactNode;
|
|
523
557
|
};
|
|
524
|
-
|
|
525
|
-
|
|
558
|
+
/** Uniform Link Component
|
|
559
|
+
* @example <Link text="my link" href="#" />
|
|
560
|
+
*/
|
|
561
|
+
declare const Link: ({ external, text, linkColor, children, ...props }: LinkProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
562
|
+
/** Uniform LinkWithRef Component
|
|
563
|
+
* We recommend using this link `next/link`
|
|
564
|
+
* @example <NextLink {...someProps} passHref><LinkWithRef text="my link" /></NextLink>
|
|
565
|
+
*/
|
|
566
|
+
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Pick<{
|
|
567
|
+
href: string | url.UrlObject;
|
|
568
|
+
as?: (string | url.UrlObject) | undefined;
|
|
569
|
+
replace?: boolean | undefined;
|
|
570
|
+
soft?: boolean | undefined;
|
|
571
|
+
scroll?: boolean | undefined;
|
|
572
|
+
shallow?: boolean | undefined;
|
|
573
|
+
passHref?: boolean | undefined;
|
|
574
|
+
prefetch?: boolean | undefined;
|
|
575
|
+
locale?: string | false | undefined;
|
|
576
|
+
legacyBehavior?: boolean | undefined;
|
|
577
|
+
onMouseEnter?: ((e: any) => void) | undefined;
|
|
578
|
+
onTouchStart?: ((e: any) => void) | undefined;
|
|
579
|
+
onClick?: ((e: any) => void) | undefined;
|
|
580
|
+
} & React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
581
|
+
/** sets the link text and title text */
|
|
582
|
+
text: string;
|
|
583
|
+
/** (optional) sets the link color
|
|
584
|
+
* @default 'currentColor'
|
|
585
|
+
*/
|
|
586
|
+
linkColor?: LinkColorProps | undefined;
|
|
587
|
+
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
588
|
+
external?: boolean | undefined;
|
|
589
|
+
/** (optional) For supporting inside next/link component */
|
|
590
|
+
ref?: React$1.ForwardedRef<HTMLAnchorElement> | undefined;
|
|
591
|
+
/** (optional) sets react child elements */
|
|
592
|
+
children?: React$1.ReactNode;
|
|
593
|
+
}, "slot" | "style" | "title" | "text" | "className" | "as" | "href" | "hrefLang" | "media" | "referrerPolicy" | "rel" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "replace" | "target" | "external" | "scroll" | "soft" | "shallow" | "passHref" | "prefetch" | "locale" | "legacyBehavior" | "download" | "ping" | "linkColor"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
526
594
|
|
|
527
595
|
declare type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
528
596
|
/** sets the title text of the integration */
|
|
@@ -805,7 +873,7 @@ declare type IntegrationTileProps = IntegrationTileFields & React$1.ButtonHTMLAt
|
|
|
805
873
|
};
|
|
806
874
|
declare const IntegrationTile: ({ id, icon, name, requiedEntitlement, onAddIntegration, isPublic, isInstalled, authorIcon, ...btnProps }: IntegrationTileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
807
875
|
|
|
808
|
-
declare type CreateTeamIntegrationTileProps = {
|
|
876
|
+
declare type CreateTeamIntegrationTileProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
809
877
|
/** (optional) sets the title value
|
|
810
878
|
* @default 'Create a custom integration'
|
|
811
879
|
*/
|
|
@@ -821,7 +889,7 @@ declare type CreateTeamIntegrationTileProps = {
|
|
|
821
889
|
*/
|
|
822
890
|
asDeepLink?: boolean;
|
|
823
891
|
};
|
|
824
|
-
declare const CreateTeamIntegrationTile: ({ title, buttonText, onClick, asDeepLink, }: CreateTeamIntegrationTileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
892
|
+
declare const CreateTeamIntegrationTile: ({ title, buttonText, onClick, asDeepLink, ...props }: CreateTeamIntegrationTileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
825
893
|
|
|
826
894
|
declare type EditTeamIntegrationTileProps = IntegrationTileFields & {
|
|
827
895
|
/** sets the id value */
|
|
@@ -848,7 +916,7 @@ declare type TileContainerProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
|
848
916
|
*/
|
|
849
917
|
declare const TileContainer: ({ children, ...props }: TileContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
850
918
|
|
|
851
|
-
declare type IntegrationComingSoonProps = IntegrationTileFields & {
|
|
919
|
+
declare type IntegrationComingSoonProps = IntegrationTileFields & React.HTMLAttributes<HTMLDivElement> & {
|
|
852
920
|
/** sets the id and data-testid value */
|
|
853
921
|
id: string;
|
|
854
922
|
/** click event used for tracking analytics data */
|
|
@@ -862,7 +930,7 @@ declare type IntegrationComingSoonProps = IntegrationTileFields & {
|
|
|
862
930
|
* Uniform Integration Coming Soon Component
|
|
863
931
|
* @example <IntegrationComingSoon id="piedpiper" name="Pied Piper" icon="./piedpiper.svg" onUpVoteClick={() => someFunc()} />
|
|
864
932
|
*/
|
|
865
|
-
declare const IntegrationComingSoon: ({ name, icon, id, onUpVoteClick, timing, }: IntegrationComingSoonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
933
|
+
declare const IntegrationComingSoon: ({ name, icon, id, onUpVoteClick, timing, ...props }: IntegrationComingSoonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
866
934
|
|
|
867
935
|
declare type ClassNameOptions = 'logo' | 'author';
|
|
868
936
|
declare type ResolveIconProps = IntegrationTileFields & React__default.SVGAttributes<SVGElement> & React__default.ImgHTMLAttributes<HTMLImageElement> & {
|
|
@@ -890,6 +958,17 @@ declare type IntegrationModalIconProps = React$1.ImgHTMLAttributes<HTMLImageElem
|
|
|
890
958
|
*/
|
|
891
959
|
declare const IntegrationModalIcon: ({ icon, name, ...imgProps }: IntegrationModalIconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
892
960
|
|
|
961
|
+
declare type IntegrationLoadingTileProps = {
|
|
962
|
+
/** (optional) sets the number of skeletal loading elements to show
|
|
963
|
+
* @default 1
|
|
964
|
+
*/
|
|
965
|
+
count?: number;
|
|
966
|
+
};
|
|
967
|
+
/** Uniform Integration Loading Tile
|
|
968
|
+
* @example <IntegrationLoadingTile count={10} />
|
|
969
|
+
*/
|
|
970
|
+
declare const IntegrationLoadingTile: ({ count }: IntegrationLoadingTileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
971
|
+
|
|
893
972
|
declare type BadgeProps = {
|
|
894
973
|
/** sets the text of the badge */
|
|
895
974
|
text: string;
|
|
@@ -919,4 +998,54 @@ declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) => _em
|
|
|
919
998
|
*/
|
|
920
999
|
declare const IntegrationModalHeader: ({ icon, name, menu, children }: IntegrationModalHeaderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
921
1000
|
|
|
922
|
-
|
|
1001
|
+
declare type CardProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1002
|
+
/** (optional) sets the title value of the card */
|
|
1003
|
+
title?: string;
|
|
1004
|
+
/** (optional) sets react child components */
|
|
1005
|
+
children?: React$1.ReactNode;
|
|
1006
|
+
/** (optional) sets options for a dropdown menu */
|
|
1007
|
+
menuItems?: JSX.Element;
|
|
1008
|
+
/** (optional) sets the data-test-id attribute on the button element
|
|
1009
|
+
* @default 'list-card-menu'
|
|
1010
|
+
*/
|
|
1011
|
+
menuButtonTestId?: string;
|
|
1012
|
+
/** (optional) sets the menu button disabled state */
|
|
1013
|
+
disabled?: boolean;
|
|
1014
|
+
};
|
|
1015
|
+
declare const Card: ({ title, menuItems, children, disabled, menuButtonTestId, ...props }: CardProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1016
|
+
|
|
1017
|
+
declare type CardContainerBgColorProps = 'gray' | 'white';
|
|
1018
|
+
declare type CardContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1019
|
+
/** (optional): sets the background colour of the wrapping element
|
|
1020
|
+
* @default 'white'
|
|
1021
|
+
*/
|
|
1022
|
+
bgColor?: CardContainerBgColorProps;
|
|
1023
|
+
/** (optional): sets react child components */
|
|
1024
|
+
children?: React$1.ReactNode;
|
|
1025
|
+
/** (optional): sets the padding values of the inner container
|
|
1026
|
+
* @example 'when set to true padding: var(--spacing-2xl) var(--spacing-lg)'
|
|
1027
|
+
* @default true
|
|
1028
|
+
*/
|
|
1029
|
+
padding?: boolean;
|
|
1030
|
+
/** (optional): sets the padding values of the inner container
|
|
1031
|
+
* @example `when set to true`
|
|
1032
|
+
* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) [last-col] minmax(300px, 1fr);
|
|
1033
|
+
* grid-template-rows: auto [last-line];
|
|
1034
|
+
* @default false
|
|
1035
|
+
*/
|
|
1036
|
+
withLastColumn?: boolean;
|
|
1037
|
+
};
|
|
1038
|
+
/** Uniform Card Container
|
|
1039
|
+
* @example <CardContainer><Card title="card title" /></CardContainer>
|
|
1040
|
+
*/
|
|
1041
|
+
declare const CardContainer: ({ bgColor, padding, withLastColumn, children, ...props }: CardContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1042
|
+
|
|
1043
|
+
declare type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1044
|
+
/** sets the title field */
|
|
1045
|
+
title: string;
|
|
1046
|
+
/** (optional) sets react child component */
|
|
1047
|
+
children?: React$1.ReactNode;
|
|
1048
|
+
};
|
|
1049
|
+
declare const LinkList: ({ title, children, ...props }: LinkListProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1050
|
+
|
|
1051
|
+
export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, ArrowPositionProps, Badge, BadgeProps, BoxHeightProps, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, ChildFunction, ComboBoxGroupBase, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Heading, HeadingProps, HexModalBackground, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, Label, LabelProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkProps, LinkWithRef, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuItem, MenuItemProps, MenuItemTextThemeProps, MenuProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ResolveIcon, ResolveIconProps, ScrollableList, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, ShortcutContext, ShortcutRevealer, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, UniformBadge, UniformLogo, UniformLogoProps, breakpointSizeProps, breakpoints, breakpointsProps, button, buttonGhost, buttonPrimary, buttonRippleEffect, buttonSecondary, buttonTertiary, buttonUnimportant, fadeIn, fadeInBottom, fadeInLtr, fadeOutBottom, growSubtle, input, inputError, inputSelect, labelText, mq, ripple, scrollbarStyles, skeletonLoading, supports, useIconContext, useMenuContext };
|