@uniformdev/design-system 18.38.2-alpha.6 → 19.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 +818 -566
- package/dist/index.d.ts +313 -185
- package/dist/index.js +918 -662
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -20249,8 +20249,6 @@ type ButtonProps = ButtonProps$1 & {
|
|
|
20249
20249
|
* @default "md"
|
|
20250
20250
|
* @deprecated size might no longer be used as we are trying to consolidate button designs */
|
|
20251
20251
|
size?: ButtonSizeProps;
|
|
20252
|
-
/** @deprecated rounded is no longer used */
|
|
20253
|
-
rounded?: boolean;
|
|
20254
20252
|
};
|
|
20255
20253
|
/**
|
|
20256
20254
|
* Uniform Button Component
|
|
@@ -20855,7 +20853,30 @@ type InputToggleProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
20855
20853
|
* Component that creates a checkbox or radio input field
|
|
20856
20854
|
* @example <InputToggle label="Do you like ice cream?" type="checkbox" name="ice-cream" />
|
|
20857
20855
|
*/
|
|
20858
|
-
declare const InputToggle:
|
|
20856
|
+
declare const InputToggle: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
20857
|
+
/** sets the label value */
|
|
20858
|
+
label: string;
|
|
20859
|
+
/** sets the type of input to use, either radio or checkbox */
|
|
20860
|
+
type: 'radio' | 'checkbox';
|
|
20861
|
+
/** sets the name value of the radio/checkbox input */
|
|
20862
|
+
name: string;
|
|
20863
|
+
/** (optional) sets the disabled state */
|
|
20864
|
+
disabled?: boolean | undefined;
|
|
20865
|
+
/** (optional) sets the checked state of the input */
|
|
20866
|
+
checked?: boolean | undefined;
|
|
20867
|
+
/** (optional) sets caption text value */
|
|
20868
|
+
caption?: string | JSX.Element | undefined;
|
|
20869
|
+
/** (optional) sets shows the the error message value */
|
|
20870
|
+
errorMessage?: string | undefined;
|
|
20871
|
+
/** (optional) sets and shows the the warning message value */
|
|
20872
|
+
warningMessage?: string | undefined;
|
|
20873
|
+
/** (optional) sets the font weight of the label text
|
|
20874
|
+
* @default 'bold'
|
|
20875
|
+
*/
|
|
20876
|
+
fontWeight?: "bold" | "medium" | "normal" | undefined;
|
|
20877
|
+
/** (optional) sets test id for test automation*/
|
|
20878
|
+
testId?: string | undefined;
|
|
20879
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
20859
20880
|
|
|
20860
20881
|
type LabelProps = React$1.LabelHTMLAttributes<HTMLLabelElement> & {
|
|
20861
20882
|
/** sets child elements within the label tag, normally the default label text */
|
|
@@ -20998,10 +21019,14 @@ declare const LimitsBar: ({ current, max, label }: LimitsBarProps) => _emotion_r
|
|
|
20998
21019
|
type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
20999
21020
|
/** sets the title field */
|
|
21000
21021
|
title: string;
|
|
21022
|
+
/** sets padding value
|
|
21023
|
+
* @default 'var(--spacing-md)'
|
|
21024
|
+
*/
|
|
21025
|
+
padding?: string;
|
|
21001
21026
|
/** (optional) sets react child component */
|
|
21002
21027
|
children?: React$1.ReactNode;
|
|
21003
21028
|
};
|
|
21004
|
-
declare const LinkList: ({ title, children, ...props }: LinkListProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21029
|
+
declare const LinkList: ({ title, padding, children, ...props }: LinkListProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21005
21030
|
|
|
21006
21031
|
type ScrollableListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
21007
21032
|
/** (optional) sets the label value */
|
|
@@ -21172,6 +21197,280 @@ declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) => _em
|
|
|
21172
21197
|
*/
|
|
21173
21198
|
declare const IntegrationModalHeader: ({ icon, name, menu, children }: IntegrationModalHeaderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21174
21199
|
|
|
21200
|
+
/** Available heading weights e.g. 1 - 6 */
|
|
21201
|
+
type LevelProps = 1 | 2 | 3 | 4 | 5 | 6;
|
|
21202
|
+
type HeadingProps = {
|
|
21203
|
+
/** sets the type of heading tag between h1 to h6, defaults to <h2>
|
|
21204
|
+
* @default 2
|
|
21205
|
+
*/
|
|
21206
|
+
level?: LevelProps;
|
|
21207
|
+
/** sets whether to display a span with the defined heading styles
|
|
21208
|
+
* @default undefined
|
|
21209
|
+
*/
|
|
21210
|
+
asSpan?: boolean;
|
|
21211
|
+
/** sets the title value */
|
|
21212
|
+
children: React$1.ReactNode;
|
|
21213
|
+
/** (optional) sets whether to use the default margin for the heading element
|
|
21214
|
+
* @default true
|
|
21215
|
+
*/
|
|
21216
|
+
withMarginBottom?: boolean;
|
|
21217
|
+
} & React$1.HTMLAttributes<HTMLHeadingElement>;
|
|
21218
|
+
/**
|
|
21219
|
+
* Component that sets the heading tag
|
|
21220
|
+
* @example <Heading level={1}>Blog Post Title</Heading>
|
|
21221
|
+
*/
|
|
21222
|
+
declare const Heading: ({ level, asSpan, withMarginBottom, children, ...hAttributes }: HeadingProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21223
|
+
|
|
21224
|
+
type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
21225
|
+
/** sets the title text of the integration */
|
|
21226
|
+
title: string;
|
|
21227
|
+
/** sets the description text of the integration */
|
|
21228
|
+
description: string | string[];
|
|
21229
|
+
/** (optional) sets the icon of the integration */
|
|
21230
|
+
icon?: string | React$1.ComponentType<{
|
|
21231
|
+
className?: string;
|
|
21232
|
+
}>;
|
|
21233
|
+
/** (optional) sets the react child elements*/
|
|
21234
|
+
children?: React$1.ReactNode;
|
|
21235
|
+
/** (optional) sets an external link to documentation */
|
|
21236
|
+
docsLink?: string;
|
|
21237
|
+
/** (optional) sets the badge text of the integration */
|
|
21238
|
+
badgeText?: string;
|
|
21239
|
+
/** (optional) location for the menu options to be positioned */
|
|
21240
|
+
menu?: React$1.ReactNode;
|
|
21241
|
+
};
|
|
21242
|
+
/**
|
|
21243
|
+
* Uniform Integration Header Section Component
|
|
21244
|
+
* @Example <IntegrationHeaderSection title="custom integration" description="custom integration description text" />
|
|
21245
|
+
*/
|
|
21246
|
+
declare const IntegrationHeaderSection: ({ title, description, icon, docsLink, badgeText, menu, children, ...props }: IntegrationHeaderSectionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21247
|
+
|
|
21248
|
+
type LinkColorProps = 'currentColor' | 'red' | 'green';
|
|
21249
|
+
type LinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
21250
|
+
/** sets the link text and title text */
|
|
21251
|
+
text: string;
|
|
21252
|
+
/** (optional) sets the link color
|
|
21253
|
+
* @default 'currentColor'
|
|
21254
|
+
*/
|
|
21255
|
+
linkColor?: LinkColorProps;
|
|
21256
|
+
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
21257
|
+
external?: boolean;
|
|
21258
|
+
/** (optional) For supporting inside next/link component */
|
|
21259
|
+
ref?: React$1.ForwardedRef<HTMLAnchorElement>;
|
|
21260
|
+
/** (optional) sets react child elements */
|
|
21261
|
+
children?: React$1.ReactNode;
|
|
21262
|
+
};
|
|
21263
|
+
/** Uniform Link Component
|
|
21264
|
+
* @example <Link text="my link" href="#" />
|
|
21265
|
+
*/
|
|
21266
|
+
declare const Link: React$1.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21267
|
+
type LinkManagerWithRefType = (props: Partial<LinkProps> & {
|
|
21268
|
+
as?: string;
|
|
21269
|
+
href: string;
|
|
21270
|
+
passHref: true;
|
|
21271
|
+
legacyBehavior?: boolean;
|
|
21272
|
+
} & React$1.RefAttributes<HTMLAnchorElement>) => JSX.Element | null;
|
|
21273
|
+
/** Uniform LinkWithRef Component
|
|
21274
|
+
* We recommend using this link `next/link`
|
|
21275
|
+
* @example <LinkWithRef linkManagerComponent={NextLink} href="some-url" text="my link" />
|
|
21276
|
+
*/
|
|
21277
|
+
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
21278
|
+
/** sets the link text and title text */
|
|
21279
|
+
text: string;
|
|
21280
|
+
/** (optional) sets the link color
|
|
21281
|
+
* @default 'currentColor'
|
|
21282
|
+
*/
|
|
21283
|
+
linkColor?: LinkColorProps | undefined;
|
|
21284
|
+
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
21285
|
+
external?: boolean | undefined;
|
|
21286
|
+
/** (optional) For supporting inside next/link component */
|
|
21287
|
+
ref?: React$1.ForwardedRef<HTMLAnchorElement> | undefined;
|
|
21288
|
+
/** (optional) sets react child elements */
|
|
21289
|
+
children?: React$1.ReactNode;
|
|
21290
|
+
} & {
|
|
21291
|
+
href: string;
|
|
21292
|
+
as?: string | undefined;
|
|
21293
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21294
|
+
}, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21295
|
+
|
|
21296
|
+
interface RouteProps {
|
|
21297
|
+
as: string;
|
|
21298
|
+
href: string;
|
|
21299
|
+
}
|
|
21300
|
+
type PageHeaderSectionProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
21301
|
+
title: string | undefined;
|
|
21302
|
+
desc?: React$1.ReactNode;
|
|
21303
|
+
children?: React$1.ReactNode;
|
|
21304
|
+
linkProps?: RouteProps;
|
|
21305
|
+
linkText?: string;
|
|
21306
|
+
level?: LevelProps;
|
|
21307
|
+
linkManagerComponent?: LinkManagerWithRefType;
|
|
21308
|
+
};
|
|
21309
|
+
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21310
|
+
|
|
21311
|
+
type ParagraphProps = {
|
|
21312
|
+
/** (optional) adds child elements to the paragraph tag */
|
|
21313
|
+
children?: React$1.ReactNode;
|
|
21314
|
+
/** (optional) sets raw html values */
|
|
21315
|
+
htmlContent?: string | string[];
|
|
21316
|
+
/** (optional) allows user to set overriding class names or emotion styles */
|
|
21317
|
+
className?: SerializedStyles | string;
|
|
21318
|
+
} & React$1.HTMLAttributes<HTMLParagraphElement>;
|
|
21319
|
+
/**
|
|
21320
|
+
* Component for generic paragraph tags
|
|
21321
|
+
* @example <Paragraph>This is the text that was be inside the paragraph tag.</Paragraph>
|
|
21322
|
+
*/
|
|
21323
|
+
declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21324
|
+
|
|
21325
|
+
type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan';
|
|
21326
|
+
type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
21327
|
+
/** sets the current status */
|
|
21328
|
+
status: StatusTypeProps;
|
|
21329
|
+
/** sets an overriding message */
|
|
21330
|
+
message?: string;
|
|
21331
|
+
/** sets whether to show or hide the status text
|
|
21332
|
+
* @default false
|
|
21333
|
+
*/
|
|
21334
|
+
hideText?: boolean;
|
|
21335
|
+
/** sets the size of the status message and icon
|
|
21336
|
+
* @default 'base'
|
|
21337
|
+
*/
|
|
21338
|
+
size?: 'sm' | 'base';
|
|
21339
|
+
};
|
|
21340
|
+
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21341
|
+
|
|
21342
|
+
type ObjectCompositionListItemProps = {
|
|
21343
|
+
/** sets the title value */
|
|
21344
|
+
title: string;
|
|
21345
|
+
/** sets the date value with date formatting */
|
|
21346
|
+
date: Date;
|
|
21347
|
+
/** sets the component name if present */
|
|
21348
|
+
componentName?: string;
|
|
21349
|
+
/** sets the icon to use if present */
|
|
21350
|
+
icon?: IconName;
|
|
21351
|
+
/** sets the publish status if present */
|
|
21352
|
+
publishStatus?: StatusTypeProps;
|
|
21353
|
+
/** sets the href value */
|
|
21354
|
+
href: string;
|
|
21355
|
+
/** sets the as value when using a link manager e.g. next/link */
|
|
21356
|
+
as?: string;
|
|
21357
|
+
/** sets the link manager component to use e.g. next/link */
|
|
21358
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21359
|
+
} & React.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
21360
|
+
/**
|
|
21361
|
+
* @description used for displaying composition data on the project dashboard page
|
|
21362
|
+
* @example <ObjectCompositionListItem title="my title" date={new Date()} href="https://uniform.app" linkManagerComponent={NextLink} />
|
|
21363
|
+
*/
|
|
21364
|
+
declare const ObjectCompositionListItem: React$1.ForwardRefExoticComponent<{
|
|
21365
|
+
/** sets the title value */
|
|
21366
|
+
title: string;
|
|
21367
|
+
/** sets the date value with date formatting */
|
|
21368
|
+
date: Date;
|
|
21369
|
+
/** sets the component name if present */
|
|
21370
|
+
componentName?: string | undefined;
|
|
21371
|
+
/** sets the icon to use if present */
|
|
21372
|
+
icon?: "code" | "data" | "link" | "menu" | "select" | "style" | "template" | "time" | "track" | "image" | "key" | "search" | "repeat" | "anchor" | "close" | "copy" | "drop" | "server" | "shortcut" | "feed" | "list" | "presentation" | "tab" | "timer" | "tree" | "add-r" | "add" | "airplane" | "alarm" | "album" | "align-bottom" | "align-center" | "align-left" | "align-middle" | "align-right" | "align-top" | "apple-watch" | "arrange-back" | "arrange-front" | "arrow-align-h" | "arrow-align-v" | "arrow-bottom-left-o" | "arrow-bottom-left-r" | "arrow-bottom-left" | "arrow-bottom-right-o" | "arrow-bottom-right-r" | "arrow-bottom-right" | "arrow-down-o" | "arrow-down-r" | "arrow-down" | "arrow-left-o" | "arrow-left-r" | "arrow-left" | "arrow-long-down-c" | "arrow-long-down-e" | "arrow-long-down-l" | "arrow-long-down-r" | "arrow-long-down" | "arrow-long-left-c" | "arrow-long-left-e" | "arrow-long-left-l" | "arrow-long-left-r" | "arrow-long-left" | "arrow-long-right-c" | "arrow-long-right-e" | "arrow-long-right-l" | "arrow-long-right-r" | "arrow-long-right" | "arrow-long-up-c" | "arrow-long-up-e" | "arrow-long-up-l" | "arrow-long-up-r" | "arrow-long-up" | "arrow-right-o" | "arrow-right-r" | "arrow-right" | "arrow-top-left-o" | "arrow-top-left-r" | "arrow-top-left" | "arrow-top-right-o" | "arrow-top-right-r" | "arrow-top-right" | "arrow-up-o" | "arrow-up-r" | "arrow-up" | "arrows-breake-h" | "arrows-breake-v" | "arrows-exchange-alt-v" | "arrows-exchange-alt" | "arrows-exchange-v" | "arrows-exchange" | "arrows-expand-down-left" | "arrows-expand-down-right" | "arrows-expand-left-alt" | "arrows-expand-left" | "arrows-expand-right-alt" | "arrows-expand-right" | "arrows-expand-up-left" | "arrows-expand-up-right" | "arrows-h-alt" | "arrows-h" | "arrows-merge-alt-h" | "arrows-merge-alt-v" | "arrows-scroll-h" | "arrows-scroll-v" | "arrows-shrink-h" | "arrows-shrink-v" | "arrows-v-alt" | "arrows-v" | "assign" | "asterisk" | "attachment" | "attribution" | "awards" | "backspace" | "band-aid" | "battery-empty" | "battery-full" | "battery" | "bee" | "bell" | "bitbucket" | "block" | "board" | "bolt" | "bookmark" | "border-all" | "border-bottom" | "border-left" | "border-right" | "border-style-dashed" | "border-style-dotted" | "border-style-solid" | "border-top" | "bot" | "bowl" | "box" | "boy" | "briefcase" | "browse" | "browser" | "brush" | "bulb" | "c-plus-plus" | "calculator" | "calendar-dates" | "calendar-due" | "calendar-next" | "calendar-today" | "calendar-two" | "calendar" | "calibrate" | "camera" | "cap" | "captions" | "card-clubs" | "card-diamonds" | "card-hearts" | "card-spades" | "carousel" | "cast" | "chart" | "check-o" | "check-r" | "check" | "chevron-double-down-o" | "chevron-double-down-r" | "chevron-double-down" | "chevron-double-left-o" | "chevron-double-left-r" | "chevron-double-left" | "chevron-double-right-o" | "chevron-double-right-r" | "chevron-double-right" | "chevron-double-up-o" | "chevron-double-up-r" | "chevron-double-up" | "chevron-down-o" | "chevron-down-r" | "chevron-down" | "chevron-left-o" | "chevron-left-r" | "chevron-left" | "chevron-right-o" | "chevron-right-r" | "chevron-right" | "chevron-up-o" | "chevron-up-r" | "chevron-up" | "clapper-board" | "clipboard" | "close-o" | "close-r" | "cloud" | "code-slash" | "coffee" | "collage" | "color-bucket" | "color-picker" | "comment" | "community" | "components" | "compress-left" | "compress-right" | "compress-v" | "compress" | "controller" | "copyright" | "corner-double-down-left" | "corner-double-down-right" | "corner-double-left-down" | "corner-double-left-up" | "corner-double-right-down" | "corner-double-right-up" | "corner-double-up-left" | "corner-double-up-right" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "credit-card" | "crop" | "cross" | "crown" | "danger" | "dark-mode" | "database" | "debug" | "desktop" | "details-less" | "details-more" | "dialpad" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "disc" | "display-flex" | "display-fullwidth" | "display-grid" | "display-spacing" | "distribute-horizontal" | "distribute-vertical" | "dock-bottom" | "dock-left" | "dock-right" | "dock-window" | "dollar" | "drive" | "drop-invert" | "drop-opacity" | "duplicate" | "edit-black-point" | "edit-contrast" | "edit-exposure" | "edit-fade" | "edit-flip-h" | "edit-flip-v" | "edit-highlight" | "edit-markup" | "edit-mask" | "edit-noise" | "edit-shadows" | "edit-straight" | "edit-unmask" | "eject" | "enter" | "erase" | "ereader" | "ericsson" | "ethernet" | "euro" | "expand" | "export" | "extension-add" | "extension-alt" | "extension-remove" | "extension" | "external" | "eye-alt" | "eye" | "file-add" | "file-document" | "file-remove" | "file" | "film" | "filters" | "flag-alt" | "flag" | "folder-add" | "folder-remove" | "folder" | "font-height" | "font-spacing" | "format-bold" | "format-center" | "format-color" | "format-heading" | "format-indent-decrease" | "format-indent-increase" | "format-italic" | "format-justify" | "format-left" | "format-line-height" | "format-right" | "format-separator" | "format-slash" | "format-strike" | "format-text" | "format-underline" | "format-uppercase" | "games" | "gender-female" | "gender-male" | "ghost-character" | "gift" | "girl" | "git-branch" | "git-commit" | "git-fork" | "git-pull" | "glass-alt" | "glass" | "globe-alt" | "globe" | "gym" | "hashtag" | "headset" | "heart" | "home-alt" | "home-screen" | "home" | "icecream" | "import" | "inbox" | "infinity" | "info" | "inpicture" | "insert-after-o" | "insert-after-r" | "insert-after" | "insert-before-o" | "insert-before-r" | "insert-before" | "insights" | "internal" | "keyboard" | "keyhole" | "laptop" | "layout-grid-small" | "layout-grid" | "layout-list" | "layout-pin" | "list-tree" | "live-photo" | "loadbar-alt" | "loadbar-doc" | "loadbar-sound" | "loadbar" | "lock-unlock" | "lock" | "log-in" | "log-off" | "log-out" | "loupe" | "magnet" | "mail-forward" | "mail-open" | "mail-reply" | "mail" | "math-divide" | "math-equal" | "math-minus" | "math-percent" | "math-plus" | "maximize-alt" | "maximize" | "media-live" | "media-podcast" | "menu-boxed" | "menu-cake" | "menu-cheese" | "menu-grid-o" | "menu-grid-r" | "menu-hotdog" | "menu-left-alt" | "menu-left" | "menu-motion" | "menu-oreos" | "menu-right-alt" | "menu-right" | "menu-round" | "merge-horizontal" | "merge-vertical" | "mic" | "mini-player" | "minimize-alt" | "minimize" | "modem" | "moon" | "more-alt" | "more-o" | "more-r" | "more-vertical-alt" | "more-vertical-o" | "more-vertical-r" | "more-vertical" | "more" | "mouse" | "move-down" | "move-left" | "move-right" | "move-task" | "move-up" | "music-note" | "music-speaker" | "music" | "nametag" | "notes" | "notifications" | "options" | "organisation" | "password" | "path-back" | "path-crop" | "path-divide" | "path-exclude" | "path-front" | "path-intersect" | "path-outline" | "path-trim" | "path-unite" | "pen" | "pentagon-bottom-left" | "pentagon-bottom-right" | "pentagon-down" | "pentagon-left" | "pentagon-right" | "pentagon-top-left" | "pentagon-top-right" | "pentagon-up" | "performance" | "phone" | "photoscan" | "piano" | "pill" | "pin-alt" | "pin-bottom" | "pin-top" | "pin" | "play-backwards" | "play-button-o" | "play-button-r" | "play-button" | "play-forwards" | "play-list-add" | "play-list-check" | "play-list-remove" | "play-list-search" | "play-list" | "play-pause-o" | "play-pause-r" | "play-pause" | "play-stop-o" | "play-stop-r" | "play-stop" | "play-track-next-o" | "play-track-next-r" | "play-track-next" | "play-track-prev-o" | "play-track-prev-r" | "play-track-prev" | "plug" | "polaroid" | "poll" | "printer" | "profile" | "pull-clear" | "push-chevron-down-o" | "push-chevron-down-r" | "push-chevron-down" | "push-chevron-left-o" | "push-chevron-left-r" | "push-chevron-left" | "push-chevron-right-o" | "push-chevron-right-r" | "push-chevron-right" | "push-chevron-up-o" | "push-chevron-up-r" | "push-chevron-up" | "push-down" | "push-left" | "push-right" | "push-up" | "qr" | "quote-o" | "quote" | "radio-check" | "radio-checked" | "ratio" | "read" | "readme" | "record" | "redo" | "remote" | "remove-r" | "remove" | "rename" | "reorder" | "ring" | "row-first" | "row-last" | "ruler" | "sand-clock" | "scan" | "screen-mirror" | "screen-shot" | "screen-wide" | "screen" | "scroll-h" | "scroll-v" | "search-found" | "search-loading" | "select-o" | "select-r" | "shape-circle" | "shape-half-circle" | "shape-hexagon" | "shape-rhombus" | "shape-square" | "shape-triangle" | "shape-zigzag" | "share" | "shield" | "shopping-bag" | "shopping-cart" | "sidebar-open" | "sidebar-right" | "sidebar" | "signal" | "size" | "sleep" | "smart-home-boiler" | "smart-home-cooker" | "smart-home-heat" | "smart-home-light" | "smart-home-refrigerator" | "smart-home-wash-machine" | "smartphone-chip" | "smartphone-ram" | "smartphone-shake" | "smartphone" | "smile-mouth-open" | "smile-neutral" | "smile-no-mouth" | "smile-none" | "smile-sad" | "smile-upside" | "smile" | "software-download" | "software-upload" | "sort-az" | "sort-za" | "space-between-v" | "space-between" | "spinner-alt" | "spinner-two-alt" | "spinner-two" | "spinner" | "stack" | "stopwatch" | "stories" | "sun" | "support" | "swap-vertical" | "swap" | "sweden" | "swiss" | "sync" | "tag" | "tap-double" | "tap-single" | "tennis" | "terminal" | "terrain" | "thermometer" | "thermostat" | "tikcode" | "timelapse" | "today" | "toggle-off" | "toggle-on" | "toggle-square-off" | "toggle-square" | "toolbar-bottom" | "toolbar-left" | "toolbar-right" | "toolbar-top" | "toolbox" | "touchpad" | "transcript" | "trash-empty" | "trash" | "trees" | "trending-down" | "trending" | "trophy" | "tv" | "ui-kit" | "umbrella" | "unavailable" | "unblock" | "undo" | "unsplash" | "usb-c" | "usb" | "user-add" | "user-list" | "user-remove" | "user" | "view-cols" | "view-comfortable" | "view-day" | "view-grid" | "view-list" | "view-month" | "view-split" | "vinyl" | "voicemail-o" | "voicemail-r" | "voicemail" | "volume" | "webcam" | "website" | "work-alt" | "yinyang" | "zoom-in" | "zoom-out" | "rectangle-rounded" | "card" | "image-text" | "full-width-screen" | "text-input" | "number-input" | "canvas-alert" | "warning" | "settings" | undefined;
|
|
21373
|
+
/** sets the publish status if present */
|
|
21374
|
+
publishStatus?: StatusTypeProps | undefined;
|
|
21375
|
+
/** sets the href value */
|
|
21376
|
+
href: string;
|
|
21377
|
+
/** sets the as value when using a link manager e.g. next/link */
|
|
21378
|
+
as?: string | undefined;
|
|
21379
|
+
/** sets the link manager component to use e.g. next/link */
|
|
21380
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21381
|
+
} & React$1.AnchorHTMLAttributes<HTMLAnchorElement> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21382
|
+
|
|
21383
|
+
type SegmentedControlOption<TValue extends string = string> = {
|
|
21384
|
+
value: TValue;
|
|
21385
|
+
label?: string;
|
|
21386
|
+
icon?: IconType$1;
|
|
21387
|
+
tooltip?: string;
|
|
21388
|
+
disabled?: boolean;
|
|
21389
|
+
};
|
|
21390
|
+
type SegmentedControlProps<TValue extends string = string> = Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> & {
|
|
21391
|
+
/** A unique name for the component, used to group the options */
|
|
21392
|
+
name: string;
|
|
21393
|
+
/** The options to show */
|
|
21394
|
+
options: SegmentedControlOption<TValue>[];
|
|
21395
|
+
/** The value of the option to be selected */
|
|
21396
|
+
value?: TValue;
|
|
21397
|
+
/** Called when the user selects a different option */
|
|
21398
|
+
onChange: (value: TValue) => void;
|
|
21399
|
+
/** Doesn't show a checkmark next to the selected item */
|
|
21400
|
+
noCheckmark?: boolean;
|
|
21401
|
+
/** Disables all the options */
|
|
21402
|
+
disabled?: boolean;
|
|
21403
|
+
/**
|
|
21404
|
+
* The orientation by which the items are rendered
|
|
21405
|
+
* @default 'horizontal'
|
|
21406
|
+
*/
|
|
21407
|
+
orientation?: 'horizontal' | 'vertical';
|
|
21408
|
+
/**
|
|
21409
|
+
* The size of the input
|
|
21410
|
+
* @default 'md'
|
|
21411
|
+
*/
|
|
21412
|
+
size?: 'sm' | 'md' | 'lg';
|
|
21413
|
+
};
|
|
21414
|
+
/**
|
|
21415
|
+
* Horizontal control with multiple segments. Can be used as a replacement of radio buttons.
|
|
21416
|
+
* @example <SegmentedControl name="mySegmentedControl" value={value} options={[{label: 'Option 1', value: 'option1',label: 'Option 2', value: 'option2'}]} onChange={setValue} />
|
|
21417
|
+
*/
|
|
21418
|
+
declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, ...props }: SegmentedControlProps<TValue>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21419
|
+
|
|
21420
|
+
type ObjectListContainerProps = {
|
|
21421
|
+
/** sets the heading text
|
|
21422
|
+
* @default 'Recent Compositions'
|
|
21423
|
+
*/
|
|
21424
|
+
title?: string;
|
|
21425
|
+
/** sets the filter options */
|
|
21426
|
+
filterOptions: Array<SegmentedControlOption>;
|
|
21427
|
+
/** sets the current selected filter value */
|
|
21428
|
+
filterValue: string;
|
|
21429
|
+
/** sets the loading state */
|
|
21430
|
+
isLoading: boolean;
|
|
21431
|
+
/** sets the onChange function takes a string argument */
|
|
21432
|
+
onSetFilterOption: (value: string) => void;
|
|
21433
|
+
/** sets the list of data to render */
|
|
21434
|
+
list: Array<ObjectCompositionListItemProps>;
|
|
21435
|
+
/** allows different components to be passed as the results list item
|
|
21436
|
+
* @default 'ObjectCompositionListItem'
|
|
21437
|
+
*/
|
|
21438
|
+
resolveDefaultComponent?: (value: ObjectCompositionListItemProps) => React$1.ReactNode;
|
|
21439
|
+
/** sets the disabled state on the segmented control filter options */
|
|
21440
|
+
isDisabled?: boolean;
|
|
21441
|
+
/** sets whether to show or hide the controls */
|
|
21442
|
+
hideControls?: boolean;
|
|
21443
|
+
children?: React$1.ReactNode;
|
|
21444
|
+
} & React$1.HTMLAttributes<HTMLDivElement>;
|
|
21445
|
+
/**
|
|
21446
|
+
* @description
|
|
21447
|
+
* @example <ObjectListContainer
|
|
21448
|
+
*/
|
|
21449
|
+
declare const ObjectListContainer: ({ title, list, filterOptions, filterValue, isLoading, isDisabled, hideControls, onSetFilterOption, resolveDefaultComponent, children, ...props }: ObjectListContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21450
|
+
|
|
21451
|
+
declare const ObjectListItemLoadingSkeleton: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21452
|
+
|
|
21453
|
+
type ObjectPersonalizationListItemProps = {
|
|
21454
|
+
title: string;
|
|
21455
|
+
id: string;
|
|
21456
|
+
date: Date;
|
|
21457
|
+
data: {
|
|
21458
|
+
[key: string]: string | number;
|
|
21459
|
+
};
|
|
21460
|
+
as?: string;
|
|
21461
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21462
|
+
} & React.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
21463
|
+
declare const ObjectPersonalizationListItem: React$1.ForwardRefExoticComponent<{
|
|
21464
|
+
title: string;
|
|
21465
|
+
id: string;
|
|
21466
|
+
date: Date;
|
|
21467
|
+
data: {
|
|
21468
|
+
[key: string]: string | number;
|
|
21469
|
+
};
|
|
21470
|
+
as?: string | undefined;
|
|
21471
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21472
|
+
} & React$1.AnchorHTMLAttributes<HTMLAnchorElement> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21473
|
+
|
|
21175
21474
|
type ConnectToDataElementButtonProps = HTMLAttributes<HTMLButtonElement> & {
|
|
21176
21475
|
icon?: IconType;
|
|
21177
21476
|
iconColor?: IconColor;
|
|
@@ -21495,6 +21794,14 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
21495
21794
|
* @default 'green'
|
|
21496
21795
|
*/
|
|
21497
21796
|
iconColor?: IconColor;
|
|
21797
|
+
/** sets the icon type
|
|
21798
|
+
* @default 'info'
|
|
21799
|
+
*/
|
|
21800
|
+
icon?: IconType;
|
|
21801
|
+
/** sets the icon size
|
|
21802
|
+
* @default '1rem'
|
|
21803
|
+
*/
|
|
21804
|
+
iconSize?: string;
|
|
21498
21805
|
/** sets the aria label attribute on the popover */
|
|
21499
21806
|
ariaLabel?: string;
|
|
21500
21807
|
/** sets the title attr and text of the button */
|
|
@@ -21505,7 +21812,7 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
21505
21812
|
placement?: PopoverInitialState['placement'];
|
|
21506
21813
|
children: ReactNode;
|
|
21507
21814
|
};
|
|
21508
|
-
declare const Popover: ({ iconColor, buttonText, ariaLabel, placement, children, }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21815
|
+
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, children, }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21509
21816
|
|
|
21510
21817
|
type ProgressListItemStatus = 'completed' | 'inProgress' | 'queued';
|
|
21511
21818
|
type ProgressListProps = React__default.HTMLAttributes<HTMLOListElement> & {
|
|
@@ -21544,43 +21851,6 @@ type ProgressListItem<IdType extends string = string> = {
|
|
|
21544
21851
|
};
|
|
21545
21852
|
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21546
21853
|
|
|
21547
|
-
type SegmentedControlOption<TValue extends string = string> = {
|
|
21548
|
-
value: TValue;
|
|
21549
|
-
label?: string;
|
|
21550
|
-
icon?: IconType$1;
|
|
21551
|
-
tooltip?: string;
|
|
21552
|
-
disabled?: boolean;
|
|
21553
|
-
};
|
|
21554
|
-
type SegmentedControlProps<TValue extends string = string> = Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> & {
|
|
21555
|
-
/** A unique name for the component, used to group the options */
|
|
21556
|
-
name: string;
|
|
21557
|
-
/** The options to show */
|
|
21558
|
-
options: SegmentedControlOption<TValue>[];
|
|
21559
|
-
/** The value of the option to be selected */
|
|
21560
|
-
value?: TValue;
|
|
21561
|
-
/** Called when the user selects a different option */
|
|
21562
|
-
onChange: (value: TValue) => void;
|
|
21563
|
-
/** Doesn't show a checkmark next to the selected item */
|
|
21564
|
-
noCheckmark?: boolean;
|
|
21565
|
-
/** Disables all the options */
|
|
21566
|
-
disabled?: boolean;
|
|
21567
|
-
/**
|
|
21568
|
-
* The orientation by which the items are rendered
|
|
21569
|
-
* @default 'horizontal'
|
|
21570
|
-
*/
|
|
21571
|
-
orientation?: 'horizontal' | 'vertical';
|
|
21572
|
-
/**
|
|
21573
|
-
* The size of the input
|
|
21574
|
-
* @default 'md'
|
|
21575
|
-
*/
|
|
21576
|
-
size?: 'sm' | 'md' | 'lg';
|
|
21577
|
-
};
|
|
21578
|
-
/**
|
|
21579
|
-
* Horizontal control with multiple segments. Can be used as a replacement of radio buttons.
|
|
21580
|
-
* @example <SegmentedControl name="mySegmentedControl" value={value} options={[{label: 'Option 1', value: 'option1',label: 'Option 2', value: 'option2'}]} onChange={setValue} />
|
|
21581
|
-
*/
|
|
21582
|
-
declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, ...props }: SegmentedControlProps<TValue>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21583
|
-
|
|
21584
21854
|
declare function ShortcutContext({ children }: {
|
|
21585
21855
|
children: React__default.ReactNode;
|
|
21586
21856
|
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
@@ -21825,146 +22095,4 @@ type TooltipProps = TooltipOptions & {
|
|
|
21825
22095
|
};
|
|
21826
22096
|
declare function Tooltip({ children, title, placement, visible, ...props }: TooltipProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21827
22097
|
|
|
21828
|
-
|
|
21829
|
-
type LevelProps = 1 | 2 | 3 | 4 | 5 | 6;
|
|
21830
|
-
type HeadingProps = {
|
|
21831
|
-
/** sets the type of heading tag between h1 to h6, defaults to <h2>
|
|
21832
|
-
* @default 2
|
|
21833
|
-
*/
|
|
21834
|
-
level?: LevelProps;
|
|
21835
|
-
/** sets whether to display a span with the defined heading styles
|
|
21836
|
-
* @default undefined
|
|
21837
|
-
*/
|
|
21838
|
-
asSpan?: boolean;
|
|
21839
|
-
/** sets the title value */
|
|
21840
|
-
children: React$1.ReactNode;
|
|
21841
|
-
/** (optional) sets whether to use the default margin for the heading element
|
|
21842
|
-
* @default true
|
|
21843
|
-
*/
|
|
21844
|
-
withMarginBottom?: boolean;
|
|
21845
|
-
} & React$1.HTMLAttributes<HTMLHeadingElement>;
|
|
21846
|
-
/**
|
|
21847
|
-
* Component that sets the heading tag
|
|
21848
|
-
* @example <Heading level={1}>Blog Post Title</Heading>
|
|
21849
|
-
*/
|
|
21850
|
-
declare const Heading: ({ level, asSpan, withMarginBottom, children, ...hAttributes }: HeadingProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21851
|
-
|
|
21852
|
-
type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
21853
|
-
/** sets the title text of the integration */
|
|
21854
|
-
title: string;
|
|
21855
|
-
/** sets the description text of the integration */
|
|
21856
|
-
description: string | string[];
|
|
21857
|
-
/** (optional) sets the icon of the integration */
|
|
21858
|
-
icon?: string | React$1.ComponentType<{
|
|
21859
|
-
className?: string;
|
|
21860
|
-
}>;
|
|
21861
|
-
/** (optional) sets the react child elements*/
|
|
21862
|
-
children?: React$1.ReactNode;
|
|
21863
|
-
/** (optional) sets an external link to documentation */
|
|
21864
|
-
docsLink?: string;
|
|
21865
|
-
/** (optional) sets the badge text of the integration */
|
|
21866
|
-
badgeText?: string;
|
|
21867
|
-
/** (optional) location for the menu options to be positioned */
|
|
21868
|
-
menu?: React$1.ReactNode;
|
|
21869
|
-
};
|
|
21870
|
-
/**
|
|
21871
|
-
* Uniform Integration Header Section Component
|
|
21872
|
-
* @Example <IntegrationHeaderSection title="custom integration" description="custom integration description text" />
|
|
21873
|
-
*/
|
|
21874
|
-
declare const IntegrationHeaderSection: ({ title, description, icon, docsLink, badgeText, menu, children, ...props }: IntegrationHeaderSectionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21875
|
-
|
|
21876
|
-
type LinkColorProps = 'currentColor' | 'red' | 'green';
|
|
21877
|
-
type LinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
21878
|
-
/** sets the link text and title text */
|
|
21879
|
-
text: string;
|
|
21880
|
-
/** (optional) sets the link color
|
|
21881
|
-
* @default 'currentColor'
|
|
21882
|
-
*/
|
|
21883
|
-
linkColor?: LinkColorProps;
|
|
21884
|
-
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
21885
|
-
external?: boolean;
|
|
21886
|
-
/** (optional) For supporting inside next/link component */
|
|
21887
|
-
ref?: React$1.ForwardedRef<HTMLAnchorElement>;
|
|
21888
|
-
/** (optional) sets react child elements */
|
|
21889
|
-
children?: React$1.ReactNode;
|
|
21890
|
-
};
|
|
21891
|
-
/** Uniform Link Component
|
|
21892
|
-
* @example <Link text="my link" href="#" />
|
|
21893
|
-
*/
|
|
21894
|
-
declare const Link: React$1.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21895
|
-
type LinkManagerWithRefType = (props: Partial<LinkProps> & {
|
|
21896
|
-
as?: string;
|
|
21897
|
-
href: string;
|
|
21898
|
-
passHref: true;
|
|
21899
|
-
legacyBehavior?: boolean;
|
|
21900
|
-
} & React$1.RefAttributes<HTMLAnchorElement>) => JSX.Element | null;
|
|
21901
|
-
/** Uniform LinkWithRef Component
|
|
21902
|
-
* We recommend using this link `next/link`
|
|
21903
|
-
* @example <LinkWithRef linkManagerComponent={NextLink} href="some-url" text="my link" />
|
|
21904
|
-
*/
|
|
21905
|
-
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
21906
|
-
/** sets the link text and title text */
|
|
21907
|
-
text: string;
|
|
21908
|
-
/** (optional) sets the link color
|
|
21909
|
-
* @default 'currentColor'
|
|
21910
|
-
*/
|
|
21911
|
-
linkColor?: LinkColorProps | undefined;
|
|
21912
|
-
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
21913
|
-
external?: boolean | undefined;
|
|
21914
|
-
/** (optional) For supporting inside next/link component */
|
|
21915
|
-
ref?: React$1.ForwardedRef<HTMLAnchorElement> | undefined;
|
|
21916
|
-
/** (optional) sets react child elements */
|
|
21917
|
-
children?: React$1.ReactNode;
|
|
21918
|
-
} & {
|
|
21919
|
-
href: string;
|
|
21920
|
-
as?: string | undefined;
|
|
21921
|
-
linkManagerComponent: LinkManagerWithRefType;
|
|
21922
|
-
}, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21923
|
-
|
|
21924
|
-
interface RouteProps {
|
|
21925
|
-
as: string;
|
|
21926
|
-
href: string;
|
|
21927
|
-
}
|
|
21928
|
-
type PageHeaderSectionProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
21929
|
-
title: string | undefined;
|
|
21930
|
-
desc?: React$1.ReactNode;
|
|
21931
|
-
children?: React$1.ReactNode;
|
|
21932
|
-
linkProps?: RouteProps;
|
|
21933
|
-
linkText?: string;
|
|
21934
|
-
level?: LevelProps;
|
|
21935
|
-
linkManagerComponent?: LinkManagerWithRefType;
|
|
21936
|
-
};
|
|
21937
|
-
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21938
|
-
|
|
21939
|
-
type ParagraphProps = {
|
|
21940
|
-
/** (optional) adds child elements to the paragraph tag */
|
|
21941
|
-
children?: React$1.ReactNode;
|
|
21942
|
-
/** (optional) sets raw html values */
|
|
21943
|
-
htmlContent?: string | string[];
|
|
21944
|
-
/** (optional) allows user to set overriding class names or emotion styles */
|
|
21945
|
-
className?: SerializedStyles | string;
|
|
21946
|
-
} & React$1.HTMLAttributes<HTMLParagraphElement>;
|
|
21947
|
-
/**
|
|
21948
|
-
* Component for generic paragraph tags
|
|
21949
|
-
* @example <Paragraph>This is the text that was be inside the paragraph tag.</Paragraph>
|
|
21950
|
-
*/
|
|
21951
|
-
declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21952
|
-
|
|
21953
|
-
type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan';
|
|
21954
|
-
type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
21955
|
-
/** sets the current status */
|
|
21956
|
-
status: StatusTypeProps;
|
|
21957
|
-
/** sets an overriding message */
|
|
21958
|
-
message?: string;
|
|
21959
|
-
/** sets whether to show or hide the status text
|
|
21960
|
-
* @default false
|
|
21961
|
-
*/
|
|
21962
|
-
hideText?: boolean;
|
|
21963
|
-
/** sets the size of the status message and icon
|
|
21964
|
-
* @default 'base'
|
|
21965
|
-
*/
|
|
21966
|
-
size?: 'sm' | 'base';
|
|
21967
|
-
};
|
|
21968
|
-
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21969
|
-
|
|
21970
|
-
export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CardTitle, CardTitleProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, Details, DetailsProps, Drawer, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InfoMessage, InfoMessageProps, 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, JsonEditor, JsonEditorProps, Label, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, ScrollableItemProps, ScrollableList, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoProps, UseShortcutOptions, VerticalRhythm, VerticalRhythmProps, WarningMessage, WarningMessageProps, borderTopIcon, breakpoints, button, buttonGhost, buttonGhostDestructive, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, rectangleRoundedIcon, replaceUnderscoreInString, ripple, scrollbarStyles, settings, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawerRenderer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon };
|
|
22098
|
+
export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CardTitle, CardTitleProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, Details, DetailsProps, Drawer, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InfoMessage, InfoMessageProps, 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, JsonEditor, JsonEditorProps, Label, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, ObjectCompositionListItem, ObjectCompositionListItemProps, ObjectListContainer, ObjectListContainerProps, ObjectListItemLoadingSkeleton, ObjectPersonalizationListItem, ObjectPersonalizationListItemProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, ScrollableItemProps, ScrollableList, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoProps, UseShortcutOptions, VerticalRhythm, VerticalRhythmProps, WarningMessage, WarningMessageProps, borderTopIcon, breakpoints, button, buttonGhost, buttonGhostDestructive, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, rectangleRoundedIcon, replaceUnderscoreInString, ripple, scrollbarStyles, settings, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawerRenderer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon };
|