@uniformdev/design-system 18.38.2-alpha.6 → 19.0.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 +793 -555
- package/dist/index.d.ts +295 -183
- package/dist/index.js +904 -662
- package/package.json +2 -2
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 */
|
|
@@ -21172,6 +21193,276 @@ declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) => _em
|
|
|
21172
21193
|
*/
|
|
21173
21194
|
declare const IntegrationModalHeader: ({ icon, name, menu, children }: IntegrationModalHeaderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21174
21195
|
|
|
21196
|
+
/** Available heading weights e.g. 1 - 6 */
|
|
21197
|
+
type LevelProps = 1 | 2 | 3 | 4 | 5 | 6;
|
|
21198
|
+
type HeadingProps = {
|
|
21199
|
+
/** sets the type of heading tag between h1 to h6, defaults to <h2>
|
|
21200
|
+
* @default 2
|
|
21201
|
+
*/
|
|
21202
|
+
level?: LevelProps;
|
|
21203
|
+
/** sets whether to display a span with the defined heading styles
|
|
21204
|
+
* @default undefined
|
|
21205
|
+
*/
|
|
21206
|
+
asSpan?: boolean;
|
|
21207
|
+
/** sets the title value */
|
|
21208
|
+
children: React$1.ReactNode;
|
|
21209
|
+
/** (optional) sets whether to use the default margin for the heading element
|
|
21210
|
+
* @default true
|
|
21211
|
+
*/
|
|
21212
|
+
withMarginBottom?: boolean;
|
|
21213
|
+
} & React$1.HTMLAttributes<HTMLHeadingElement>;
|
|
21214
|
+
/**
|
|
21215
|
+
* Component that sets the heading tag
|
|
21216
|
+
* @example <Heading level={1}>Blog Post Title</Heading>
|
|
21217
|
+
*/
|
|
21218
|
+
declare const Heading: ({ level, asSpan, withMarginBottom, children, ...hAttributes }: HeadingProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21219
|
+
|
|
21220
|
+
type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
21221
|
+
/** sets the title text of the integration */
|
|
21222
|
+
title: string;
|
|
21223
|
+
/** sets the description text of the integration */
|
|
21224
|
+
description: string | string[];
|
|
21225
|
+
/** (optional) sets the icon of the integration */
|
|
21226
|
+
icon?: string | React$1.ComponentType<{
|
|
21227
|
+
className?: string;
|
|
21228
|
+
}>;
|
|
21229
|
+
/** (optional) sets the react child elements*/
|
|
21230
|
+
children?: React$1.ReactNode;
|
|
21231
|
+
/** (optional) sets an external link to documentation */
|
|
21232
|
+
docsLink?: string;
|
|
21233
|
+
/** (optional) sets the badge text of the integration */
|
|
21234
|
+
badgeText?: string;
|
|
21235
|
+
/** (optional) location for the menu options to be positioned */
|
|
21236
|
+
menu?: React$1.ReactNode;
|
|
21237
|
+
};
|
|
21238
|
+
/**
|
|
21239
|
+
* Uniform Integration Header Section Component
|
|
21240
|
+
* @Example <IntegrationHeaderSection title="custom integration" description="custom integration description text" />
|
|
21241
|
+
*/
|
|
21242
|
+
declare const IntegrationHeaderSection: ({ title, description, icon, docsLink, badgeText, menu, children, ...props }: IntegrationHeaderSectionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21243
|
+
|
|
21244
|
+
type LinkColorProps = 'currentColor' | 'red' | 'green';
|
|
21245
|
+
type LinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
21246
|
+
/** sets the link text and title text */
|
|
21247
|
+
text: string;
|
|
21248
|
+
/** (optional) sets the link color
|
|
21249
|
+
* @default 'currentColor'
|
|
21250
|
+
*/
|
|
21251
|
+
linkColor?: LinkColorProps;
|
|
21252
|
+
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
21253
|
+
external?: boolean;
|
|
21254
|
+
/** (optional) For supporting inside next/link component */
|
|
21255
|
+
ref?: React$1.ForwardedRef<HTMLAnchorElement>;
|
|
21256
|
+
/** (optional) sets react child elements */
|
|
21257
|
+
children?: React$1.ReactNode;
|
|
21258
|
+
};
|
|
21259
|
+
/** Uniform Link Component
|
|
21260
|
+
* @example <Link text="my link" href="#" />
|
|
21261
|
+
*/
|
|
21262
|
+
declare const Link: React$1.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21263
|
+
type LinkManagerWithRefType = (props: Partial<LinkProps> & {
|
|
21264
|
+
as?: string;
|
|
21265
|
+
href: string;
|
|
21266
|
+
passHref: true;
|
|
21267
|
+
legacyBehavior?: boolean;
|
|
21268
|
+
} & React$1.RefAttributes<HTMLAnchorElement>) => JSX.Element | null;
|
|
21269
|
+
/** Uniform LinkWithRef Component
|
|
21270
|
+
* We recommend using this link `next/link`
|
|
21271
|
+
* @example <LinkWithRef linkManagerComponent={NextLink} href="some-url" text="my link" />
|
|
21272
|
+
*/
|
|
21273
|
+
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
21274
|
+
/** sets the link text and title text */
|
|
21275
|
+
text: string;
|
|
21276
|
+
/** (optional) sets the link color
|
|
21277
|
+
* @default 'currentColor'
|
|
21278
|
+
*/
|
|
21279
|
+
linkColor?: LinkColorProps | undefined;
|
|
21280
|
+
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
21281
|
+
external?: boolean | undefined;
|
|
21282
|
+
/** (optional) For supporting inside next/link component */
|
|
21283
|
+
ref?: React$1.ForwardedRef<HTMLAnchorElement> | undefined;
|
|
21284
|
+
/** (optional) sets react child elements */
|
|
21285
|
+
children?: React$1.ReactNode;
|
|
21286
|
+
} & {
|
|
21287
|
+
href: string;
|
|
21288
|
+
as?: string | undefined;
|
|
21289
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21290
|
+
}, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21291
|
+
|
|
21292
|
+
interface RouteProps {
|
|
21293
|
+
as: string;
|
|
21294
|
+
href: string;
|
|
21295
|
+
}
|
|
21296
|
+
type PageHeaderSectionProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
21297
|
+
title: string | undefined;
|
|
21298
|
+
desc?: React$1.ReactNode;
|
|
21299
|
+
children?: React$1.ReactNode;
|
|
21300
|
+
linkProps?: RouteProps;
|
|
21301
|
+
linkText?: string;
|
|
21302
|
+
level?: LevelProps;
|
|
21303
|
+
linkManagerComponent?: LinkManagerWithRefType;
|
|
21304
|
+
};
|
|
21305
|
+
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21306
|
+
|
|
21307
|
+
type ParagraphProps = {
|
|
21308
|
+
/** (optional) adds child elements to the paragraph tag */
|
|
21309
|
+
children?: React$1.ReactNode;
|
|
21310
|
+
/** (optional) sets raw html values */
|
|
21311
|
+
htmlContent?: string | string[];
|
|
21312
|
+
/** (optional) allows user to set overriding class names or emotion styles */
|
|
21313
|
+
className?: SerializedStyles | string;
|
|
21314
|
+
} & React$1.HTMLAttributes<HTMLParagraphElement>;
|
|
21315
|
+
/**
|
|
21316
|
+
* Component for generic paragraph tags
|
|
21317
|
+
* @example <Paragraph>This is the text that was be inside the paragraph tag.</Paragraph>
|
|
21318
|
+
*/
|
|
21319
|
+
declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21320
|
+
|
|
21321
|
+
type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan';
|
|
21322
|
+
type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
21323
|
+
/** sets the current status */
|
|
21324
|
+
status: StatusTypeProps;
|
|
21325
|
+
/** sets an overriding message */
|
|
21326
|
+
message?: string;
|
|
21327
|
+
/** sets whether to show or hide the status text
|
|
21328
|
+
* @default false
|
|
21329
|
+
*/
|
|
21330
|
+
hideText?: boolean;
|
|
21331
|
+
/** sets the size of the status message and icon
|
|
21332
|
+
* @default 'base'
|
|
21333
|
+
*/
|
|
21334
|
+
size?: 'sm' | 'base';
|
|
21335
|
+
};
|
|
21336
|
+
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21337
|
+
|
|
21338
|
+
type ObjectCompositionListItemProps = {
|
|
21339
|
+
/** sets the title value */
|
|
21340
|
+
title: string;
|
|
21341
|
+
/** sets the date value with date formatting */
|
|
21342
|
+
date: Date;
|
|
21343
|
+
/** sets the component name if present */
|
|
21344
|
+
componentName?: string;
|
|
21345
|
+
/** sets the icon to use if present */
|
|
21346
|
+
icon?: IconName;
|
|
21347
|
+
/** sets the publish status if present */
|
|
21348
|
+
publishStatus?: StatusTypeProps;
|
|
21349
|
+
/** sets the href value */
|
|
21350
|
+
href: string;
|
|
21351
|
+
/** sets the as value when using a link manager e.g. next/link */
|
|
21352
|
+
as?: string;
|
|
21353
|
+
/** sets the link manager component to use e.g. next/link */
|
|
21354
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21355
|
+
} & React.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
21356
|
+
/**
|
|
21357
|
+
* @description used for displaying composition data on the project dashboard page
|
|
21358
|
+
* @example <ObjectCompositionListItem title="my title" date={new Date()} href="https://uniform.app" linkManagerComponent={NextLink} />
|
|
21359
|
+
*/
|
|
21360
|
+
declare const ObjectCompositionListItem: React$1.ForwardRefExoticComponent<{
|
|
21361
|
+
/** sets the title value */
|
|
21362
|
+
title: string;
|
|
21363
|
+
/** sets the date value with date formatting */
|
|
21364
|
+
date: Date;
|
|
21365
|
+
/** sets the component name if present */
|
|
21366
|
+
componentName?: string | undefined;
|
|
21367
|
+
/** sets the icon to use if present */
|
|
21368
|
+
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;
|
|
21369
|
+
/** sets the publish status if present */
|
|
21370
|
+
publishStatus?: StatusTypeProps | undefined;
|
|
21371
|
+
/** sets the href value */
|
|
21372
|
+
href: string;
|
|
21373
|
+
/** sets the as value when using a link manager e.g. next/link */
|
|
21374
|
+
as?: string | undefined;
|
|
21375
|
+
/** sets the link manager component to use e.g. next/link */
|
|
21376
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21377
|
+
} & React$1.AnchorHTMLAttributes<HTMLAnchorElement> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21378
|
+
|
|
21379
|
+
type SegmentedControlOption<TValue extends string = string> = {
|
|
21380
|
+
value: TValue;
|
|
21381
|
+
label?: string;
|
|
21382
|
+
icon?: IconType$1;
|
|
21383
|
+
tooltip?: string;
|
|
21384
|
+
disabled?: boolean;
|
|
21385
|
+
};
|
|
21386
|
+
type SegmentedControlProps<TValue extends string = string> = Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> & {
|
|
21387
|
+
/** A unique name for the component, used to group the options */
|
|
21388
|
+
name: string;
|
|
21389
|
+
/** The options to show */
|
|
21390
|
+
options: SegmentedControlOption<TValue>[];
|
|
21391
|
+
/** The value of the option to be selected */
|
|
21392
|
+
value?: TValue;
|
|
21393
|
+
/** Called when the user selects a different option */
|
|
21394
|
+
onChange: (value: TValue) => void;
|
|
21395
|
+
/** Doesn't show a checkmark next to the selected item */
|
|
21396
|
+
noCheckmark?: boolean;
|
|
21397
|
+
/** Disables all the options */
|
|
21398
|
+
disabled?: boolean;
|
|
21399
|
+
/**
|
|
21400
|
+
* The orientation by which the items are rendered
|
|
21401
|
+
* @default 'horizontal'
|
|
21402
|
+
*/
|
|
21403
|
+
orientation?: 'horizontal' | 'vertical';
|
|
21404
|
+
/**
|
|
21405
|
+
* The size of the input
|
|
21406
|
+
* @default 'md'
|
|
21407
|
+
*/
|
|
21408
|
+
size?: 'sm' | 'md' | 'lg';
|
|
21409
|
+
};
|
|
21410
|
+
/**
|
|
21411
|
+
* Horizontal control with multiple segments. Can be used as a replacement of radio buttons.
|
|
21412
|
+
* @example <SegmentedControl name="mySegmentedControl" value={value} options={[{label: 'Option 1', value: 'option1',label: 'Option 2', value: 'option2'}]} onChange={setValue} />
|
|
21413
|
+
*/
|
|
21414
|
+
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;
|
|
21415
|
+
|
|
21416
|
+
type ObjectListContainerProps = {
|
|
21417
|
+
/** sets the heading text
|
|
21418
|
+
* @default 'Recent Compositions'
|
|
21419
|
+
*/
|
|
21420
|
+
title?: string;
|
|
21421
|
+
/** sets the filter options */
|
|
21422
|
+
filterOptions: Array<SegmentedControlOption>;
|
|
21423
|
+
/** sets the current selected filter value */
|
|
21424
|
+
filterValue: string;
|
|
21425
|
+
/** sets the loading state */
|
|
21426
|
+
isLoading: boolean;
|
|
21427
|
+
/** sets the onChange function takes a string argument */
|
|
21428
|
+
onSetFilterOption: (value: string) => void;
|
|
21429
|
+
/** sets the list of data to render */
|
|
21430
|
+
list: Array<ObjectCompositionListItemProps>;
|
|
21431
|
+
/** allows different components to be passed as the results list item
|
|
21432
|
+
* @default 'ObjectCompositionListItem'
|
|
21433
|
+
*/
|
|
21434
|
+
resolveDefaultComponent?: (value: ObjectCompositionListItemProps) => React$1.ReactNode;
|
|
21435
|
+
children?: React$1.ReactNode;
|
|
21436
|
+
} & React$1.HTMLAttributes<HTMLDivElement>;
|
|
21437
|
+
/**
|
|
21438
|
+
* @description
|
|
21439
|
+
* @example <ObjectListContainer
|
|
21440
|
+
*/
|
|
21441
|
+
declare const ObjectListContainer: ({ title, list, filterOptions, filterValue, isLoading, onSetFilterOption, resolveDefaultComponent, children, ...props }: ObjectListContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21442
|
+
|
|
21443
|
+
declare const ObjectListItemLoadingSkeleton: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21444
|
+
|
|
21445
|
+
type ObjectPersonalizationListItemProps = {
|
|
21446
|
+
title: string;
|
|
21447
|
+
id: string;
|
|
21448
|
+
date: Date;
|
|
21449
|
+
data: {
|
|
21450
|
+
[key: string]: string | number;
|
|
21451
|
+
};
|
|
21452
|
+
as?: string;
|
|
21453
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21454
|
+
} & React.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
21455
|
+
declare const ObjectPersonalizationListItem: React$1.ForwardRefExoticComponent<{
|
|
21456
|
+
title: string;
|
|
21457
|
+
id: string;
|
|
21458
|
+
date: Date;
|
|
21459
|
+
data: {
|
|
21460
|
+
[key: string]: string | number;
|
|
21461
|
+
};
|
|
21462
|
+
as?: string | undefined;
|
|
21463
|
+
linkManagerComponent: LinkManagerWithRefType;
|
|
21464
|
+
} & React$1.AnchorHTMLAttributes<HTMLAnchorElement> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
21465
|
+
|
|
21175
21466
|
type ConnectToDataElementButtonProps = HTMLAttributes<HTMLButtonElement> & {
|
|
21176
21467
|
icon?: IconType;
|
|
21177
21468
|
iconColor?: IconColor;
|
|
@@ -21544,43 +21835,6 @@ type ProgressListItem<IdType extends string = string> = {
|
|
|
21544
21835
|
};
|
|
21545
21836
|
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21546
21837
|
|
|
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
21838
|
declare function ShortcutContext({ children }: {
|
|
21585
21839
|
children: React__default.ReactNode;
|
|
21586
21840
|
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
@@ -21825,146 +22079,4 @@ type TooltipProps = TooltipOptions & {
|
|
|
21825
22079
|
};
|
|
21826
22080
|
declare function Tooltip({ children, title, placement, visible, ...props }: TooltipProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21827
22081
|
|
|
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 };
|
|
22082
|
+
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 };
|