@uniformdev/design-system 19.38.2 → 19.38.3-alpha.78
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/chunk-6NI3O2RY.js +3 -0
- package/dist/esm/importedIcons-GRLD5JXK.js +1294 -0
- package/dist/esm/index.js +1376 -1001
- package/dist/index.d.mts +899 -128
- package/dist/index.d.ts +899 -128
- package/dist/index.js +3107 -1138
- package/package.json +19 -20
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { RefObject, HTMLAttributes, ReactNode, CSSProperties,
|
|
2
|
+
import React__default, { RefObject, HTMLAttributes, ReactNode, CSSProperties, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
|
|
3
3
|
import { GroupBase } from 'react-select';
|
|
4
4
|
export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
|
|
5
5
|
import * as _emotion_react from '@emotion/react';
|
|
@@ -8,13 +8,14 @@ import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-na
|
|
|
8
8
|
import { LottieComponentProps } from 'lottie-react';
|
|
9
9
|
import { ButtonProps as ButtonProps$1 } from 'reakit/Button';
|
|
10
10
|
import { MenuProps as MenuProps$1, MenuItemHTMLProps } from 'reakit';
|
|
11
|
-
import * as
|
|
12
|
-
import { IconType as IconType$1, IconBaseProps } from 'react-icons';
|
|
13
|
-
import * as
|
|
11
|
+
import * as _react_icons_all_files_lib from '@react-icons/all-files/lib';
|
|
12
|
+
import { IconType as IconType$1, IconBaseProps } from '@react-icons/all-files/lib';
|
|
13
|
+
import * as _react_icons_all_files from '@react-icons/all-files';
|
|
14
14
|
import InternalSelect from 'react-select/dist/declarations/src/Select';
|
|
15
15
|
import { StateManagerProps } from 'react-select/dist/declarations/src/useStateManager';
|
|
16
16
|
import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
|
|
17
17
|
import { MenuHTMLProps, MenuProps as MenuProps$2, MenuStateReturn } from 'reakit/Menu';
|
|
18
|
+
import { InitialConfigType } from '@lexical/react/LexicalComposer';
|
|
18
19
|
import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
|
|
19
20
|
export { RichTextBuiltInElement, RichTextBuiltInFormat } from '@uniformdev/canvas';
|
|
20
21
|
import { Spread, SerializedElementNode, ElementNode, NodeKey, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
|
|
@@ -20426,14 +20427,14 @@ declare const CardContainer: ({ bgColor, padding, withLastColumn, children, ...p
|
|
|
20426
20427
|
declare const LoadingCardSkeleton: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
20427
20428
|
|
|
20428
20429
|
type ChipSizeProp = 'xs' | 'sm' | 'md';
|
|
20429
|
-
type
|
|
20430
|
+
type ChipTheme = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark';
|
|
20430
20431
|
type ChipProps = {
|
|
20431
|
-
icon?: IconType
|
|
20432
|
+
icon?: IconType;
|
|
20432
20433
|
text: ReactNode;
|
|
20433
20434
|
/** sets the size of the chip
|
|
20434
20435
|
* @default 'sm'
|
|
20435
20436
|
*/
|
|
20436
|
-
theme?:
|
|
20437
|
+
theme?: ChipTheme;
|
|
20437
20438
|
chipAction?: React.ReactNode;
|
|
20438
20439
|
size?: ChipSizeProp;
|
|
20439
20440
|
} & React.HTMLAttributes<HTMLSpanElement>;
|
|
@@ -20454,6 +20455,17 @@ type DismissibleChipActionProps = {
|
|
|
20454
20455
|
*/
|
|
20455
20456
|
declare const DismissibleChipAction: ({ onDismiss, ...props }: DismissibleChipActionProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
20456
20457
|
|
|
20458
|
+
type MultilineChipProps = {
|
|
20459
|
+
children: ReactNode;
|
|
20460
|
+
onClick?: () => void;
|
|
20461
|
+
} & React.HTMLAttributes<HTMLSpanElement | HTMLButtonElement>;
|
|
20462
|
+
/**
|
|
20463
|
+
* @description A chip specifically designed to fit as a chipped element in an multi-line capable content field.
|
|
20464
|
+
* Unlike a regular chip, this one can go onto multiple lines with word wrap, and uses inline behaviours.
|
|
20465
|
+
* @example <MultilineChip text="productId" />
|
|
20466
|
+
*/
|
|
20467
|
+
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
20468
|
+
|
|
20457
20469
|
type CounterProps = {
|
|
20458
20470
|
/** sets the count value, a 0 will show a dot instead of a number. Undefined will cause the counter to disappear. */
|
|
20459
20471
|
count: number | undefined;
|
|
@@ -20515,6 +20527,60 @@ type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
|
|
|
20515
20527
|
/** @example <Details summary="summary text">child content here</Details>*/
|
|
20516
20528
|
declare const Details: ({ summary, children, isOpenByDefault, isOpen, onChange, ...props }: DetailsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
20517
20529
|
|
|
20530
|
+
interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
20531
|
+
/** The ID of the stack to render. Some drawers need to use the same stack ID to be rendered here */
|
|
20532
|
+
stackId: string;
|
|
20533
|
+
/** The width of the drawers. In any CSS length unit (px, rem, %, et al). Can't use CSS functions (e.g. calc())
|
|
20534
|
+
* @default 'medium'
|
|
20535
|
+
*/
|
|
20536
|
+
width?: 'narrow' | 'medium' | 'wide' | (string & NonNullable<unknown>);
|
|
20537
|
+
/** The minimum width of the drawers. In any CSS length unit (px, rem, %, et al)
|
|
20538
|
+
* @default '0'
|
|
20539
|
+
*/
|
|
20540
|
+
minWidth?: string;
|
|
20541
|
+
/** The maximum width of the drawers. In any CSS length unit (px, rem, %, et al)
|
|
20542
|
+
* @default '100%'
|
|
20543
|
+
*/
|
|
20544
|
+
maxWidth?: string;
|
|
20545
|
+
/** Sets the css position value
|
|
20546
|
+
* @default 'absolute'
|
|
20547
|
+
*/
|
|
20548
|
+
position?: 'absolute' | 'fixed' | 'sticky';
|
|
20549
|
+
/** Opens the drawer from left to right
|
|
20550
|
+
* @default false
|
|
20551
|
+
*/
|
|
20552
|
+
leftAligned?: boolean;
|
|
20553
|
+
/**
|
|
20554
|
+
* If a drawer in the stack has a specific `width` prop, and its value is larger than the width of the current stack,
|
|
20555
|
+
* the width of the stack will be automatically adjusted to accommodate for that.
|
|
20556
|
+
* Set this prop to `true` to disable this behavior.
|
|
20557
|
+
* @default false
|
|
20558
|
+
*/
|
|
20559
|
+
withoutFluidWidth?: boolean;
|
|
20560
|
+
}
|
|
20561
|
+
/**
|
|
20562
|
+
* Renders a stack of drawers in a different location than their original position in the component tree. Uses React Portal under the hood.
|
|
20563
|
+
* @example <DrawerProvider><Drawer id="my-drawer" stackId="my-stack" header="Title">Hello</Drawer><DrawerRenderer stackId="my-stack"/></DrawerProvider>
|
|
20564
|
+
*/
|
|
20565
|
+
declare const DrawerRenderer: ({ stackId, position, width, minWidth, maxWidth, leftAligned, withoutFluidWidth, ...otherProps }: DrawerRendererProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
20566
|
+
interface DrawerRendererItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
20567
|
+
index: number;
|
|
20568
|
+
totalDrawers: number;
|
|
20569
|
+
width: DrawerRendererProps['width'];
|
|
20570
|
+
minWidth: Required<DrawerRendererProps['minWidth']>;
|
|
20571
|
+
maxWidth: Required<DrawerRendererProps['maxWidth']>;
|
|
20572
|
+
leftAligned: Required<DrawerRendererProps['leftAligned']>;
|
|
20573
|
+
onOverlayClick?: () => void;
|
|
20574
|
+
}
|
|
20575
|
+
declare const getDrawerAttributes: ({ providerId, stackId, id, }: {
|
|
20576
|
+
providerId: string;
|
|
20577
|
+
stackId?: string | undefined;
|
|
20578
|
+
id: string;
|
|
20579
|
+
}) => {
|
|
20580
|
+
'data-drawer-id': string;
|
|
20581
|
+
'data-testid': string;
|
|
20582
|
+
};
|
|
20583
|
+
|
|
20518
20584
|
interface DrawerItem {
|
|
20519
20585
|
/** An ID for the drawer. It should be unique in the stack where it's rendered */
|
|
20520
20586
|
id: string;
|
|
@@ -20526,6 +20592,12 @@ interface DrawerItem {
|
|
|
20526
20592
|
stackId?: string;
|
|
20527
20593
|
/** Just like React.Key, changing this value indicates that the drawer has changed and we need to close the current instance and open a new one */
|
|
20528
20594
|
instanceKey?: string;
|
|
20595
|
+
/**
|
|
20596
|
+
* The desired width of the drawer.
|
|
20597
|
+
* This value is ignored if the drawer is part of a DrawerRenderer with `withoutFluidWidth`.
|
|
20598
|
+
* If not set, the drawer will use the width of its renderer.
|
|
20599
|
+
*/
|
|
20600
|
+
width?: DrawerRendererProps['width'];
|
|
20529
20601
|
/** Called when the close button is clicked, the Escape button is pressed, or when the drawer's overlay is clicked */
|
|
20530
20602
|
onRequestClose?: () => void;
|
|
20531
20603
|
/** Test ID for test automation **/
|
|
@@ -20556,12 +20628,12 @@ declare const DrawerProvider: ({ children }: React__default.PropsWithChildren) =
|
|
|
20556
20628
|
declare const useDrawer: () => DrawerContextValue;
|
|
20557
20629
|
declare const useCloseCurrentDrawer: () => (() => void) | undefined;
|
|
20558
20630
|
|
|
20559
|
-
|
|
20631
|
+
type DrawerProps = DrawerItem & Omit<DrawerRendererProps, 'stackId'> & {
|
|
20560
20632
|
header?: React__default.ReactNode;
|
|
20561
20633
|
children?: React__default.ReactNode;
|
|
20562
20634
|
bgColor?: 'var(--gray-50)' | 'var(--white)';
|
|
20563
20635
|
leftAligned?: DrawerRendererProps['leftAligned'];
|
|
20564
|
-
}
|
|
20636
|
+
};
|
|
20565
20637
|
declare const CurrentDrawerContext: React__default.Context<{
|
|
20566
20638
|
id?: string | undefined;
|
|
20567
20639
|
stackId?: string | undefined;
|
|
@@ -20576,7 +20648,12 @@ declare const useCurrentDrawer: () => {
|
|
|
20576
20648
|
* A drawer component that opens from the right side of is parent. The component is used in combination with DrawerProvider and DrawerRenderer
|
|
20577
20649
|
* @example <Drawer id="my-drawer" header="Title">Hello</Drawer>
|
|
20578
20650
|
*/
|
|
20579
|
-
declare const Drawer: React__default.ForwardRefExoticComponent<
|
|
20651
|
+
declare const Drawer: React__default.ForwardRefExoticComponent<DrawerItem & Omit<DrawerRendererProps, "stackId"> & {
|
|
20652
|
+
header?: React__default.ReactNode;
|
|
20653
|
+
children?: React__default.ReactNode;
|
|
20654
|
+
bgColor?: "var(--white)" | "var(--gray-50)" | undefined;
|
|
20655
|
+
leftAligned?: DrawerRendererProps['leftAligned'];
|
|
20656
|
+
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
20580
20657
|
|
|
20581
20658
|
type DrawerContentProps = {
|
|
20582
20659
|
children: ReactNode;
|
|
@@ -20585,60 +20662,680 @@ type DrawerContentProps = {
|
|
|
20585
20662
|
} & HTMLAttributes<HTMLDivElement>;
|
|
20586
20663
|
declare const DrawerContent: ({ children, buttonGroup, noPadding, ...props }: DrawerContentProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
20587
20664
|
|
|
20588
|
-
|
|
20589
|
-
|
|
20590
|
-
|
|
20591
|
-
|
|
20592
|
-
|
|
20593
|
-
|
|
20594
|
-
|
|
20595
|
-
|
|
20596
|
-
|
|
20597
|
-
|
|
20598
|
-
|
|
20599
|
-
|
|
20600
|
-
|
|
20601
|
-
|
|
20602
|
-
|
|
20603
|
-
|
|
20604
|
-
|
|
20605
|
-
|
|
20606
|
-
|
|
20607
|
-
|
|
20608
|
-
|
|
20609
|
-
|
|
20610
|
-
|
|
20611
|
-
|
|
20612
|
-
|
|
20613
|
-
|
|
20614
|
-
|
|
20615
|
-
|
|
20616
|
-
|
|
20617
|
-
|
|
20618
|
-
|
|
20619
|
-
|
|
20620
|
-
|
|
20621
|
-
|
|
20622
|
-
|
|
20623
|
-
|
|
20624
|
-
|
|
20625
|
-
|
|
20626
|
-
|
|
20627
|
-
|
|
20628
|
-
|
|
20629
|
-
|
|
20630
|
-
|
|
20631
|
-
'
|
|
20665
|
+
declare const allSupportedIcons: {
|
|
20666
|
+
'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20667
|
+
card: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20668
|
+
'image-text': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20669
|
+
'border-top': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20670
|
+
'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20671
|
+
'text-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20672
|
+
'number-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20673
|
+
'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20674
|
+
warning: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20675
|
+
'info-filled': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20676
|
+
settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
20677
|
+
'query-string': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20678
|
+
json: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20679
|
+
'format-bold': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20680
|
+
'format-code': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20681
|
+
'format-strike': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20682
|
+
'format-superscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20683
|
+
'format-subscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20684
|
+
'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20685
|
+
'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20686
|
+
'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20687
|
+
'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20688
|
+
'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20689
|
+
'add-r': _react_icons_all_files_lib.IconType;
|
|
20690
|
+
add: _react_icons_all_files_lib.IconType;
|
|
20691
|
+
airplane: _react_icons_all_files_lib.IconType;
|
|
20692
|
+
alarm: _react_icons_all_files_lib.IconType;
|
|
20693
|
+
album: _react_icons_all_files_lib.IconType;
|
|
20694
|
+
'align-bottom': _react_icons_all_files_lib.IconType;
|
|
20695
|
+
'align-center': _react_icons_all_files_lib.IconType;
|
|
20696
|
+
'align-left': _react_icons_all_files_lib.IconType;
|
|
20697
|
+
'align-middle': _react_icons_all_files_lib.IconType;
|
|
20698
|
+
'align-right': _react_icons_all_files_lib.IconType;
|
|
20699
|
+
'align-top': _react_icons_all_files_lib.IconType;
|
|
20700
|
+
anchor: _react_icons_all_files_lib.IconType;
|
|
20701
|
+
'apple-watch': _react_icons_all_files_lib.IconType;
|
|
20702
|
+
'arrange-back': _react_icons_all_files_lib.IconType;
|
|
20703
|
+
'arrange-front': _react_icons_all_files_lib.IconType;
|
|
20704
|
+
'arrow-align-h': _react_icons_all_files_lib.IconType;
|
|
20705
|
+
'arrow-align-v': _react_icons_all_files_lib.IconType;
|
|
20706
|
+
'arrow-bottom-left-o': _react_icons_all_files_lib.IconType;
|
|
20707
|
+
'arrow-bottom-left-r': _react_icons_all_files_lib.IconType;
|
|
20708
|
+
'arrow-bottom-left': _react_icons_all_files_lib.IconType;
|
|
20709
|
+
'arrow-bottom-right-o': _react_icons_all_files_lib.IconType;
|
|
20710
|
+
'arrow-bottom-right-r': _react_icons_all_files_lib.IconType;
|
|
20711
|
+
'arrow-bottom-right': _react_icons_all_files_lib.IconType;
|
|
20712
|
+
'arrow-down-o': _react_icons_all_files_lib.IconType;
|
|
20713
|
+
'arrow-down-r': _react_icons_all_files_lib.IconType;
|
|
20714
|
+
'arrow-down': _react_icons_all_files_lib.IconType;
|
|
20715
|
+
'arrow-left-o': _react_icons_all_files_lib.IconType;
|
|
20716
|
+
'arrow-left-r': _react_icons_all_files_lib.IconType;
|
|
20717
|
+
'arrow-left': _react_icons_all_files_lib.IconType;
|
|
20718
|
+
'arrow-long-down-c': _react_icons_all_files_lib.IconType;
|
|
20719
|
+
'arrow-long-down-e': _react_icons_all_files_lib.IconType;
|
|
20720
|
+
'arrow-long-down-l': _react_icons_all_files_lib.IconType;
|
|
20721
|
+
'arrow-long-down-r': _react_icons_all_files_lib.IconType;
|
|
20722
|
+
'arrow-long-down': _react_icons_all_files_lib.IconType;
|
|
20723
|
+
'arrow-long-left-c': _react_icons_all_files_lib.IconType;
|
|
20724
|
+
'arrow-long-left-e': _react_icons_all_files_lib.IconType;
|
|
20725
|
+
'arrow-long-left-l': _react_icons_all_files_lib.IconType;
|
|
20726
|
+
'arrow-long-left-r': _react_icons_all_files_lib.IconType;
|
|
20727
|
+
'arrow-long-left': _react_icons_all_files_lib.IconType;
|
|
20728
|
+
'arrow-long-right-c': _react_icons_all_files_lib.IconType;
|
|
20729
|
+
'arrow-long-right-e': _react_icons_all_files_lib.IconType;
|
|
20730
|
+
'arrow-long-right-l': _react_icons_all_files_lib.IconType;
|
|
20731
|
+
'arrow-long-right-r': _react_icons_all_files_lib.IconType;
|
|
20732
|
+
'arrow-long-right': _react_icons_all_files_lib.IconType;
|
|
20733
|
+
'arrow-long-up-c': _react_icons_all_files_lib.IconType;
|
|
20734
|
+
'arrow-long-up-e': _react_icons_all_files_lib.IconType;
|
|
20735
|
+
'arrow-long-up-l': _react_icons_all_files_lib.IconType;
|
|
20736
|
+
'arrow-long-up-r': _react_icons_all_files_lib.IconType;
|
|
20737
|
+
'arrow-long-up': _react_icons_all_files_lib.IconType;
|
|
20738
|
+
'arrow-right-o': _react_icons_all_files_lib.IconType;
|
|
20739
|
+
'arrow-right-r': _react_icons_all_files_lib.IconType;
|
|
20740
|
+
'arrow-right': _react_icons_all_files_lib.IconType;
|
|
20741
|
+
'arrow-top-left-o': _react_icons_all_files_lib.IconType;
|
|
20742
|
+
'arrow-top-left-r': _react_icons_all_files_lib.IconType;
|
|
20743
|
+
'arrow-top-left': _react_icons_all_files_lib.IconType;
|
|
20744
|
+
'arrow-top-right-o': _react_icons_all_files_lib.IconType;
|
|
20745
|
+
'arrow-top-right-r': _react_icons_all_files_lib.IconType;
|
|
20746
|
+
'arrow-top-right': _react_icons_all_files_lib.IconType;
|
|
20747
|
+
'arrow-up-o': _react_icons_all_files_lib.IconType;
|
|
20748
|
+
'arrow-up-r': _react_icons_all_files_lib.IconType;
|
|
20749
|
+
'arrow-up': _react_icons_all_files_lib.IconType;
|
|
20750
|
+
'arrows-breake-h': _react_icons_all_files_lib.IconType;
|
|
20751
|
+
'arrows-breake-v': _react_icons_all_files_lib.IconType;
|
|
20752
|
+
'arrows-exchange-alt-v': _react_icons_all_files_lib.IconType;
|
|
20753
|
+
'arrows-exchange-alt': _react_icons_all_files_lib.IconType;
|
|
20754
|
+
'arrows-exchange-v': _react_icons_all_files_lib.IconType;
|
|
20755
|
+
'arrows-exchange': _react_icons_all_files_lib.IconType;
|
|
20756
|
+
'arrows-expand-down-left': _react_icons_all_files_lib.IconType;
|
|
20757
|
+
'arrows-expand-down-right': _react_icons_all_files_lib.IconType;
|
|
20758
|
+
'arrows-expand-left-alt': _react_icons_all_files_lib.IconType;
|
|
20759
|
+
'arrows-expand-left': _react_icons_all_files_lib.IconType;
|
|
20760
|
+
'arrows-expand-right-alt': _react_icons_all_files_lib.IconType;
|
|
20761
|
+
'arrows-expand-right': _react_icons_all_files_lib.IconType;
|
|
20762
|
+
'arrows-expand-up-left': _react_icons_all_files_lib.IconType;
|
|
20763
|
+
'arrows-expand-up-right': _react_icons_all_files_lib.IconType;
|
|
20764
|
+
'arrows-h-alt': _react_icons_all_files_lib.IconType;
|
|
20765
|
+
'arrows-h': _react_icons_all_files_lib.IconType;
|
|
20766
|
+
'arrows-merge-alt-h': _react_icons_all_files_lib.IconType;
|
|
20767
|
+
'arrows-merge-alt-v': _react_icons_all_files_lib.IconType;
|
|
20768
|
+
'arrows-scroll-h': _react_icons_all_files_lib.IconType;
|
|
20769
|
+
'arrows-scroll-v': _react_icons_all_files_lib.IconType;
|
|
20770
|
+
'arrows-shrink-h': _react_icons_all_files_lib.IconType;
|
|
20771
|
+
'arrows-shrink-v': _react_icons_all_files_lib.IconType;
|
|
20772
|
+
'arrows-v-alt': _react_icons_all_files_lib.IconType;
|
|
20773
|
+
'arrows-v': _react_icons_all_files_lib.IconType;
|
|
20774
|
+
assign: _react_icons_all_files_lib.IconType;
|
|
20775
|
+
asterisk: _react_icons_all_files_lib.IconType;
|
|
20776
|
+
attachment: _react_icons_all_files_lib.IconType;
|
|
20777
|
+
attribution: _react_icons_all_files_lib.IconType;
|
|
20778
|
+
awards: _react_icons_all_files_lib.IconType;
|
|
20779
|
+
backspace: _react_icons_all_files_lib.IconType;
|
|
20780
|
+
'band-aid': _react_icons_all_files_lib.IconType;
|
|
20781
|
+
'battery-empty': _react_icons_all_files_lib.IconType;
|
|
20782
|
+
'battery-full': _react_icons_all_files_lib.IconType;
|
|
20783
|
+
battery: _react_icons_all_files_lib.IconType;
|
|
20784
|
+
bee: _react_icons_all_files_lib.IconType;
|
|
20785
|
+
bell: _react_icons_all_files_lib.IconType;
|
|
20786
|
+
bitbucket: _react_icons_all_files_lib.IconType;
|
|
20787
|
+
block: _react_icons_all_files_lib.IconType;
|
|
20788
|
+
board: _react_icons_all_files_lib.IconType;
|
|
20789
|
+
bolt: _react_icons_all_files_lib.IconType;
|
|
20790
|
+
bookmark: _react_icons_all_files_lib.IconType;
|
|
20791
|
+
'border-all': _react_icons_all_files_lib.IconType;
|
|
20792
|
+
'border-bottom': _react_icons_all_files_lib.IconType;
|
|
20793
|
+
'border-left': _react_icons_all_files_lib.IconType;
|
|
20794
|
+
'border-right': _react_icons_all_files_lib.IconType;
|
|
20795
|
+
'border-style-dashed': _react_icons_all_files_lib.IconType;
|
|
20796
|
+
'border-style-dotted': _react_icons_all_files_lib.IconType;
|
|
20797
|
+
'border-style-solid': _react_icons_all_files_lib.IconType;
|
|
20798
|
+
bot: _react_icons_all_files_lib.IconType;
|
|
20799
|
+
bowl: _react_icons_all_files_lib.IconType;
|
|
20800
|
+
box: _react_icons_all_files_lib.IconType;
|
|
20801
|
+
boy: _react_icons_all_files_lib.IconType;
|
|
20802
|
+
briefcase: _react_icons_all_files_lib.IconType;
|
|
20803
|
+
browse: _react_icons_all_files_lib.IconType;
|
|
20804
|
+
browser: _react_icons_all_files_lib.IconType;
|
|
20805
|
+
brush: _react_icons_all_files_lib.IconType;
|
|
20806
|
+
bulb: _react_icons_all_files_lib.IconType;
|
|
20807
|
+
'c-plus-plus': _react_icons_all_files_lib.IconType;
|
|
20808
|
+
calculator: _react_icons_all_files_lib.IconType;
|
|
20809
|
+
'calendar-dates': _react_icons_all_files_lib.IconType;
|
|
20810
|
+
'calendar-due': _react_icons_all_files_lib.IconType;
|
|
20811
|
+
'calendar-next': _react_icons_all_files_lib.IconType;
|
|
20812
|
+
'calendar-today': _react_icons_all_files_lib.IconType;
|
|
20813
|
+
'calendar-two': _react_icons_all_files_lib.IconType;
|
|
20814
|
+
calendar: _react_icons_all_files_lib.IconType;
|
|
20815
|
+
calibrate: _react_icons_all_files_lib.IconType;
|
|
20816
|
+
camera: _react_icons_all_files_lib.IconType;
|
|
20817
|
+
cap: _react_icons_all_files_lib.IconType;
|
|
20818
|
+
captions: _react_icons_all_files_lib.IconType;
|
|
20819
|
+
'card-clubs': _react_icons_all_files_lib.IconType;
|
|
20820
|
+
'card-diamonds': _react_icons_all_files_lib.IconType;
|
|
20821
|
+
'card-hearts': _react_icons_all_files_lib.IconType;
|
|
20822
|
+
'card-spades': _react_icons_all_files_lib.IconType;
|
|
20823
|
+
carousel: _react_icons_all_files_lib.IconType;
|
|
20824
|
+
cast: _react_icons_all_files_lib.IconType;
|
|
20825
|
+
chart: _react_icons_all_files_lib.IconType;
|
|
20826
|
+
'check-o': _react_icons_all_files_lib.IconType;
|
|
20827
|
+
'check-r': _react_icons_all_files_lib.IconType;
|
|
20828
|
+
check: _react_icons_all_files_lib.IconType;
|
|
20829
|
+
'chevron-double-down-o': _react_icons_all_files_lib.IconType;
|
|
20830
|
+
'chevron-double-down-r': _react_icons_all_files_lib.IconType;
|
|
20831
|
+
'chevron-double-down': _react_icons_all_files_lib.IconType;
|
|
20832
|
+
'chevron-double-left-o': _react_icons_all_files_lib.IconType;
|
|
20833
|
+
'chevron-double-left-r': _react_icons_all_files_lib.IconType;
|
|
20834
|
+
'chevron-double-left': _react_icons_all_files_lib.IconType;
|
|
20835
|
+
'chevron-double-right-o': _react_icons_all_files_lib.IconType;
|
|
20836
|
+
'chevron-double-right-r': _react_icons_all_files_lib.IconType;
|
|
20837
|
+
'chevron-double-right': _react_icons_all_files_lib.IconType;
|
|
20838
|
+
'chevron-double-up-o': _react_icons_all_files_lib.IconType;
|
|
20839
|
+
'chevron-double-up-r': _react_icons_all_files_lib.IconType;
|
|
20840
|
+
'chevron-double-up': _react_icons_all_files_lib.IconType;
|
|
20841
|
+
'chevron-down-o': _react_icons_all_files_lib.IconType;
|
|
20842
|
+
'chevron-down-r': _react_icons_all_files_lib.IconType;
|
|
20843
|
+
'chevron-down': _react_icons_all_files_lib.IconType;
|
|
20844
|
+
'chevron-left-o': _react_icons_all_files_lib.IconType;
|
|
20845
|
+
'chevron-left-r': _react_icons_all_files_lib.IconType;
|
|
20846
|
+
'chevron-left': _react_icons_all_files_lib.IconType;
|
|
20847
|
+
'chevron-right-o': _react_icons_all_files_lib.IconType;
|
|
20848
|
+
'chevron-right-r': _react_icons_all_files_lib.IconType;
|
|
20849
|
+
'chevron-right': _react_icons_all_files_lib.IconType;
|
|
20850
|
+
'chevron-up-o': _react_icons_all_files_lib.IconType;
|
|
20851
|
+
'chevron-up-r': _react_icons_all_files_lib.IconType;
|
|
20852
|
+
'chevron-up': _react_icons_all_files_lib.IconType;
|
|
20853
|
+
'clapper-board': _react_icons_all_files_lib.IconType;
|
|
20854
|
+
clipboard: _react_icons_all_files_lib.IconType;
|
|
20855
|
+
'close-o': _react_icons_all_files_lib.IconType;
|
|
20856
|
+
'close-r': _react_icons_all_files_lib.IconType;
|
|
20857
|
+
close: _react_icons_all_files_lib.IconType;
|
|
20858
|
+
cloud: _react_icons_all_files_lib.IconType;
|
|
20859
|
+
'code-slash': _react_icons_all_files_lib.IconType;
|
|
20860
|
+
code: _react_icons_all_files_lib.IconType;
|
|
20861
|
+
coffee: _react_icons_all_files_lib.IconType;
|
|
20862
|
+
collage: _react_icons_all_files_lib.IconType;
|
|
20863
|
+
'color-bucket': _react_icons_all_files_lib.IconType;
|
|
20864
|
+
'color-picker': _react_icons_all_files_lib.IconType;
|
|
20865
|
+
comment: _react_icons_all_files_lib.IconType;
|
|
20866
|
+
community: _react_icons_all_files_lib.IconType;
|
|
20867
|
+
components: _react_icons_all_files_lib.IconType;
|
|
20868
|
+
'compress-left': _react_icons_all_files_lib.IconType;
|
|
20869
|
+
'compress-right': _react_icons_all_files_lib.IconType;
|
|
20870
|
+
'compress-v': _react_icons_all_files_lib.IconType;
|
|
20871
|
+
compress: _react_icons_all_files_lib.IconType;
|
|
20872
|
+
controller: _react_icons_all_files_lib.IconType;
|
|
20873
|
+
copy: _react_icons_all_files_lib.IconType;
|
|
20874
|
+
copyright: _react_icons_all_files_lib.IconType;
|
|
20875
|
+
'corner-double-down-left': _react_icons_all_files_lib.IconType;
|
|
20876
|
+
'corner-double-down-right': _react_icons_all_files_lib.IconType;
|
|
20877
|
+
'corner-double-left-down': _react_icons_all_files_lib.IconType;
|
|
20878
|
+
'corner-double-left-up': _react_icons_all_files_lib.IconType;
|
|
20879
|
+
'corner-double-right-down': _react_icons_all_files_lib.IconType;
|
|
20880
|
+
'corner-double-right-up': _react_icons_all_files_lib.IconType;
|
|
20881
|
+
'corner-double-up-left': _react_icons_all_files_lib.IconType;
|
|
20882
|
+
'corner-double-up-right': _react_icons_all_files_lib.IconType;
|
|
20883
|
+
'corner-down-left': _react_icons_all_files_lib.IconType;
|
|
20884
|
+
'corner-down-right': _react_icons_all_files_lib.IconType;
|
|
20885
|
+
'corner-left-down': _react_icons_all_files_lib.IconType;
|
|
20886
|
+
'corner-left-up': _react_icons_all_files_lib.IconType;
|
|
20887
|
+
'corner-right-down': _react_icons_all_files_lib.IconType;
|
|
20888
|
+
'corner-right-up': _react_icons_all_files_lib.IconType;
|
|
20889
|
+
'corner-up-left': _react_icons_all_files_lib.IconType;
|
|
20890
|
+
'corner-up-right': _react_icons_all_files_lib.IconType;
|
|
20891
|
+
'credit-card': _react_icons_all_files_lib.IconType;
|
|
20892
|
+
crop: _react_icons_all_files_lib.IconType;
|
|
20893
|
+
cross: _react_icons_all_files_lib.IconType;
|
|
20894
|
+
crown: _react_icons_all_files_lib.IconType;
|
|
20895
|
+
danger: _react_icons_all_files_lib.IconType;
|
|
20896
|
+
'dark-mode': _react_icons_all_files_lib.IconType;
|
|
20897
|
+
data: _react_icons_all_files_lib.IconType;
|
|
20898
|
+
database: _react_icons_all_files_lib.IconType;
|
|
20899
|
+
debug: _react_icons_all_files_lib.IconType;
|
|
20900
|
+
desktop: _react_icons_all_files_lib.IconType;
|
|
20901
|
+
'details-less': _react_icons_all_files_lib.IconType;
|
|
20902
|
+
'details-more': _react_icons_all_files_lib.IconType;
|
|
20903
|
+
dialpad: _react_icons_all_files_lib.IconType;
|
|
20904
|
+
'dice-1': _react_icons_all_files_lib.IconType;
|
|
20905
|
+
'dice-2': _react_icons_all_files_lib.IconType;
|
|
20906
|
+
'dice-3': _react_icons_all_files_lib.IconType;
|
|
20907
|
+
'dice-4': _react_icons_all_files_lib.IconType;
|
|
20908
|
+
'dice-5': _react_icons_all_files_lib.IconType;
|
|
20909
|
+
'dice-6': _react_icons_all_files_lib.IconType;
|
|
20910
|
+
disc: _react_icons_all_files_lib.IconType;
|
|
20911
|
+
'display-flex': _react_icons_all_files_lib.IconType;
|
|
20912
|
+
'display-fullwidth': _react_icons_all_files_lib.IconType;
|
|
20913
|
+
'display-grid': _react_icons_all_files_lib.IconType;
|
|
20914
|
+
'display-spacing': _react_icons_all_files_lib.IconType;
|
|
20915
|
+
'distribute-horizontal': _react_icons_all_files_lib.IconType;
|
|
20916
|
+
'distribute-vertical': _react_icons_all_files_lib.IconType;
|
|
20917
|
+
'dock-bottom': _react_icons_all_files_lib.IconType;
|
|
20918
|
+
'dock-left': _react_icons_all_files_lib.IconType;
|
|
20919
|
+
'dock-right': _react_icons_all_files_lib.IconType;
|
|
20920
|
+
'dock-window': _react_icons_all_files_lib.IconType;
|
|
20921
|
+
dollar: _react_icons_all_files_lib.IconType;
|
|
20922
|
+
drive: _react_icons_all_files_lib.IconType;
|
|
20923
|
+
'drop-invert': _react_icons_all_files_lib.IconType;
|
|
20924
|
+
'drop-opacity': _react_icons_all_files_lib.IconType;
|
|
20925
|
+
drop: _react_icons_all_files_lib.IconType;
|
|
20926
|
+
duplicate: _react_icons_all_files_lib.IconType;
|
|
20927
|
+
'edit-black-point': _react_icons_all_files_lib.IconType;
|
|
20928
|
+
'edit-contrast': _react_icons_all_files_lib.IconType;
|
|
20929
|
+
'edit-exposure': _react_icons_all_files_lib.IconType;
|
|
20930
|
+
'edit-fade': _react_icons_all_files_lib.IconType;
|
|
20931
|
+
'edit-flip-h': _react_icons_all_files_lib.IconType;
|
|
20932
|
+
'edit-flip-v': _react_icons_all_files_lib.IconType;
|
|
20933
|
+
'edit-highlight': _react_icons_all_files_lib.IconType;
|
|
20934
|
+
'edit-markup': _react_icons_all_files_lib.IconType;
|
|
20935
|
+
'edit-mask': _react_icons_all_files_lib.IconType;
|
|
20936
|
+
'edit-noise': _react_icons_all_files_lib.IconType;
|
|
20937
|
+
'edit-shadows': _react_icons_all_files_lib.IconType;
|
|
20938
|
+
'edit-straight': _react_icons_all_files_lib.IconType;
|
|
20939
|
+
'edit-unmask': _react_icons_all_files_lib.IconType;
|
|
20940
|
+
eject: _react_icons_all_files_lib.IconType;
|
|
20941
|
+
enter: _react_icons_all_files_lib.IconType;
|
|
20942
|
+
erase: _react_icons_all_files_lib.IconType;
|
|
20943
|
+
ereader: _react_icons_all_files_lib.IconType;
|
|
20944
|
+
ericsson: _react_icons_all_files_lib.IconType;
|
|
20945
|
+
ethernet: _react_icons_all_files_lib.IconType;
|
|
20946
|
+
euro: _react_icons_all_files_lib.IconType;
|
|
20947
|
+
expand: _react_icons_all_files_lib.IconType;
|
|
20948
|
+
export: _react_icons_all_files_lib.IconType;
|
|
20949
|
+
'extension-add': _react_icons_all_files_lib.IconType;
|
|
20950
|
+
'extension-alt': _react_icons_all_files_lib.IconType;
|
|
20951
|
+
'extension-remove': _react_icons_all_files_lib.IconType;
|
|
20952
|
+
extension: _react_icons_all_files_lib.IconType;
|
|
20953
|
+
external: _react_icons_all_files_lib.IconType;
|
|
20954
|
+
'eye-alt': _react_icons_all_files_lib.IconType;
|
|
20955
|
+
eye: _react_icons_all_files_lib.IconType;
|
|
20956
|
+
feed: _react_icons_all_files_lib.IconType;
|
|
20957
|
+
'file-add': _react_icons_all_files_lib.IconType;
|
|
20958
|
+
'file-document': _react_icons_all_files_lib.IconType;
|
|
20959
|
+
'file-remove': _react_icons_all_files_lib.IconType;
|
|
20960
|
+
file: _react_icons_all_files_lib.IconType;
|
|
20961
|
+
film: _react_icons_all_files_lib.IconType;
|
|
20962
|
+
filters: _react_icons_all_files_lib.IconType;
|
|
20963
|
+
'flag-alt': _react_icons_all_files_lib.IconType;
|
|
20964
|
+
flag: _react_icons_all_files_lib.IconType;
|
|
20965
|
+
'folder-add': _react_icons_all_files_lib.IconType;
|
|
20966
|
+
'folder-remove': _react_icons_all_files_lib.IconType;
|
|
20967
|
+
folder: _react_icons_all_files_lib.IconType;
|
|
20968
|
+
'font-height': _react_icons_all_files_lib.IconType;
|
|
20969
|
+
'font-spacing': _react_icons_all_files_lib.IconType;
|
|
20970
|
+
'format-center': _react_icons_all_files_lib.IconType;
|
|
20971
|
+
'format-color': _react_icons_all_files_lib.IconType;
|
|
20972
|
+
'format-heading': _react_icons_all_files_lib.IconType;
|
|
20973
|
+
'format-indent-decrease': _react_icons_all_files_lib.IconType;
|
|
20974
|
+
'format-indent-increase': _react_icons_all_files_lib.IconType;
|
|
20975
|
+
'format-italic': _react_icons_all_files_lib.IconType;
|
|
20976
|
+
'format-justify': _react_icons_all_files_lib.IconType;
|
|
20977
|
+
'format-left': _react_icons_all_files_lib.IconType;
|
|
20978
|
+
'format-line-height': _react_icons_all_files_lib.IconType;
|
|
20979
|
+
'format-right': _react_icons_all_files_lib.IconType;
|
|
20980
|
+
'format-separator': _react_icons_all_files_lib.IconType;
|
|
20981
|
+
'format-slash': _react_icons_all_files_lib.IconType;
|
|
20982
|
+
'format-text': _react_icons_all_files_lib.IconType;
|
|
20983
|
+
'format-underline': _react_icons_all_files_lib.IconType;
|
|
20984
|
+
'format-uppercase': _react_icons_all_files_lib.IconType;
|
|
20985
|
+
games: _react_icons_all_files_lib.IconType;
|
|
20986
|
+
'gender-female': _react_icons_all_files_lib.IconType;
|
|
20987
|
+
'gender-male': _react_icons_all_files_lib.IconType;
|
|
20988
|
+
'ghost-character': _react_icons_all_files_lib.IconType;
|
|
20989
|
+
gift: _react_icons_all_files_lib.IconType;
|
|
20990
|
+
girl: _react_icons_all_files_lib.IconType;
|
|
20991
|
+
'git-branch': _react_icons_all_files_lib.IconType;
|
|
20992
|
+
'git-commit': _react_icons_all_files_lib.IconType;
|
|
20993
|
+
'git-fork': _react_icons_all_files_lib.IconType;
|
|
20994
|
+
'git-pull': _react_icons_all_files_lib.IconType;
|
|
20995
|
+
'glass-alt': _react_icons_all_files_lib.IconType;
|
|
20996
|
+
glass: _react_icons_all_files_lib.IconType;
|
|
20997
|
+
'globe-alt': _react_icons_all_files_lib.IconType;
|
|
20998
|
+
globe: _react_icons_all_files_lib.IconType;
|
|
20999
|
+
gym: _react_icons_all_files_lib.IconType;
|
|
21000
|
+
hashtag: _react_icons_all_files_lib.IconType;
|
|
21001
|
+
headset: _react_icons_all_files_lib.IconType;
|
|
21002
|
+
heart: _react_icons_all_files_lib.IconType;
|
|
21003
|
+
'home-alt': _react_icons_all_files_lib.IconType;
|
|
21004
|
+
'home-screen': _react_icons_all_files_lib.IconType;
|
|
21005
|
+
home: _react_icons_all_files_lib.IconType;
|
|
21006
|
+
icecream: _react_icons_all_files_lib.IconType;
|
|
21007
|
+
image: _react_icons_all_files_lib.IconType;
|
|
21008
|
+
import: _react_icons_all_files_lib.IconType;
|
|
21009
|
+
inbox: _react_icons_all_files_lib.IconType;
|
|
21010
|
+
infinity: _react_icons_all_files_lib.IconType;
|
|
21011
|
+
info: _react_icons_all_files_lib.IconType;
|
|
21012
|
+
inpicture: _react_icons_all_files_lib.IconType;
|
|
21013
|
+
'insert-after-o': _react_icons_all_files_lib.IconType;
|
|
21014
|
+
'insert-after-r': _react_icons_all_files_lib.IconType;
|
|
21015
|
+
'insert-after': _react_icons_all_files_lib.IconType;
|
|
21016
|
+
'insert-before-o': _react_icons_all_files_lib.IconType;
|
|
21017
|
+
'insert-before-r': _react_icons_all_files_lib.IconType;
|
|
21018
|
+
'insert-before': _react_icons_all_files_lib.IconType;
|
|
21019
|
+
insights: _react_icons_all_files_lib.IconType;
|
|
21020
|
+
internal: _react_icons_all_files_lib.IconType;
|
|
21021
|
+
key: _react_icons_all_files_lib.IconType;
|
|
21022
|
+
keyboard: _react_icons_all_files_lib.IconType;
|
|
21023
|
+
keyhole: _react_icons_all_files_lib.IconType;
|
|
21024
|
+
laptop: _react_icons_all_files_lib.IconType;
|
|
21025
|
+
'layout-grid-small': _react_icons_all_files_lib.IconType;
|
|
21026
|
+
'layout-grid': _react_icons_all_files_lib.IconType;
|
|
21027
|
+
'layout-list': _react_icons_all_files_lib.IconType;
|
|
21028
|
+
'layout-pin': _react_icons_all_files_lib.IconType;
|
|
21029
|
+
link: _react_icons_all_files_lib.IconType;
|
|
21030
|
+
'list-tree': _react_icons_all_files_lib.IconType;
|
|
21031
|
+
list: _react_icons_all_files_lib.IconType;
|
|
21032
|
+
'live-photo': _react_icons_all_files_lib.IconType;
|
|
21033
|
+
'loadbar-alt': _react_icons_all_files_lib.IconType;
|
|
21034
|
+
'loadbar-doc': _react_icons_all_files_lib.IconType;
|
|
21035
|
+
'loadbar-sound': _react_icons_all_files_lib.IconType;
|
|
21036
|
+
loadbar: _react_icons_all_files_lib.IconType;
|
|
21037
|
+
'lock-unlock': _react_icons_all_files_lib.IconType;
|
|
21038
|
+
lock: _react_icons_all_files_lib.IconType;
|
|
21039
|
+
'log-in': _react_icons_all_files_lib.IconType;
|
|
21040
|
+
'log-off': _react_icons_all_files_lib.IconType;
|
|
21041
|
+
'log-out': _react_icons_all_files_lib.IconType;
|
|
21042
|
+
loupe: _react_icons_all_files_lib.IconType;
|
|
21043
|
+
magnet: _react_icons_all_files_lib.IconType;
|
|
21044
|
+
'mail-forward': _react_icons_all_files_lib.IconType;
|
|
21045
|
+
'mail-open': _react_icons_all_files_lib.IconType;
|
|
21046
|
+
'mail-reply': _react_icons_all_files_lib.IconType;
|
|
21047
|
+
mail: _react_icons_all_files_lib.IconType;
|
|
21048
|
+
'math-divide': _react_icons_all_files_lib.IconType;
|
|
21049
|
+
'math-equal': _react_icons_all_files_lib.IconType;
|
|
21050
|
+
'math-minus': _react_icons_all_files_lib.IconType;
|
|
21051
|
+
'math-percent': _react_icons_all_files_lib.IconType;
|
|
21052
|
+
'math-plus': _react_icons_all_files_lib.IconType;
|
|
21053
|
+
'maximize-alt': _react_icons_all_files_lib.IconType;
|
|
21054
|
+
maximize: _react_icons_all_files_lib.IconType;
|
|
21055
|
+
'media-live': _react_icons_all_files_lib.IconType;
|
|
21056
|
+
'media-podcast': _react_icons_all_files_lib.IconType;
|
|
21057
|
+
'menu-boxed': _react_icons_all_files_lib.IconType;
|
|
21058
|
+
'menu-cake': _react_icons_all_files_lib.IconType;
|
|
21059
|
+
'menu-cheese': _react_icons_all_files_lib.IconType;
|
|
21060
|
+
'menu-grid-o': _react_icons_all_files_lib.IconType;
|
|
21061
|
+
'menu-grid-r': _react_icons_all_files_lib.IconType;
|
|
21062
|
+
'menu-hotdog': _react_icons_all_files_lib.IconType;
|
|
21063
|
+
'menu-left-alt': _react_icons_all_files_lib.IconType;
|
|
21064
|
+
'menu-left': _react_icons_all_files_lib.IconType;
|
|
21065
|
+
'menu-motion': _react_icons_all_files_lib.IconType;
|
|
21066
|
+
'menu-oreos': _react_icons_all_files_lib.IconType;
|
|
21067
|
+
'menu-right-alt': _react_icons_all_files_lib.IconType;
|
|
21068
|
+
'menu-right': _react_icons_all_files_lib.IconType;
|
|
21069
|
+
'menu-round': _react_icons_all_files_lib.IconType;
|
|
21070
|
+
menu: _react_icons_all_files_lib.IconType;
|
|
21071
|
+
'merge-horizontal': _react_icons_all_files_lib.IconType;
|
|
21072
|
+
'merge-vertical': _react_icons_all_files_lib.IconType;
|
|
21073
|
+
mic: _react_icons_all_files_lib.IconType;
|
|
21074
|
+
'mini-player': _react_icons_all_files_lib.IconType;
|
|
21075
|
+
'minimize-alt': _react_icons_all_files_lib.IconType;
|
|
21076
|
+
minimize: _react_icons_all_files_lib.IconType;
|
|
21077
|
+
modem: _react_icons_all_files_lib.IconType;
|
|
21078
|
+
moon: _react_icons_all_files_lib.IconType;
|
|
21079
|
+
'more-alt': _react_icons_all_files_lib.IconType;
|
|
21080
|
+
'more-o': _react_icons_all_files_lib.IconType;
|
|
21081
|
+
'more-r': _react_icons_all_files_lib.IconType;
|
|
21082
|
+
'more-vertical-alt': _react_icons_all_files_lib.IconType;
|
|
21083
|
+
'more-vertical-o': _react_icons_all_files_lib.IconType;
|
|
21084
|
+
'more-vertical-r': _react_icons_all_files_lib.IconType;
|
|
21085
|
+
'more-vertical': _react_icons_all_files_lib.IconType;
|
|
21086
|
+
more: _react_icons_all_files_lib.IconType;
|
|
21087
|
+
mouse: _react_icons_all_files_lib.IconType;
|
|
21088
|
+
'move-down': _react_icons_all_files_lib.IconType;
|
|
21089
|
+
'move-left': _react_icons_all_files_lib.IconType;
|
|
21090
|
+
'move-right': _react_icons_all_files_lib.IconType;
|
|
21091
|
+
'move-task': _react_icons_all_files_lib.IconType;
|
|
21092
|
+
'move-up': _react_icons_all_files_lib.IconType;
|
|
21093
|
+
'music-note': _react_icons_all_files_lib.IconType;
|
|
21094
|
+
'music-speaker': _react_icons_all_files_lib.IconType;
|
|
21095
|
+
music: _react_icons_all_files_lib.IconType;
|
|
21096
|
+
nametag: _react_icons_all_files_lib.IconType;
|
|
21097
|
+
notes: _react_icons_all_files_lib.IconType;
|
|
21098
|
+
notifications: _react_icons_all_files_lib.IconType;
|
|
21099
|
+
options: _react_icons_all_files_lib.IconType;
|
|
21100
|
+
organisation: _react_icons_all_files_lib.IconType;
|
|
21101
|
+
password: _react_icons_all_files_lib.IconType;
|
|
21102
|
+
'path-back': _react_icons_all_files_lib.IconType;
|
|
21103
|
+
'path-crop': _react_icons_all_files_lib.IconType;
|
|
21104
|
+
'path-divide': _react_icons_all_files_lib.IconType;
|
|
21105
|
+
'path-exclude': _react_icons_all_files_lib.IconType;
|
|
21106
|
+
'path-front': _react_icons_all_files_lib.IconType;
|
|
21107
|
+
'path-intersect': _react_icons_all_files_lib.IconType;
|
|
21108
|
+
'path-outline': _react_icons_all_files_lib.IconType;
|
|
21109
|
+
'path-trim': _react_icons_all_files_lib.IconType;
|
|
21110
|
+
'path-unite': _react_icons_all_files_lib.IconType;
|
|
21111
|
+
pen: _react_icons_all_files_lib.IconType;
|
|
21112
|
+
'pentagon-bottom-left': _react_icons_all_files_lib.IconType;
|
|
21113
|
+
'pentagon-bottom-right': _react_icons_all_files_lib.IconType;
|
|
21114
|
+
'pentagon-down': _react_icons_all_files_lib.IconType;
|
|
21115
|
+
'pentagon-left': _react_icons_all_files_lib.IconType;
|
|
21116
|
+
'pentagon-right': _react_icons_all_files_lib.IconType;
|
|
21117
|
+
'pentagon-top-left': _react_icons_all_files_lib.IconType;
|
|
21118
|
+
'pentagon-top-right': _react_icons_all_files_lib.IconType;
|
|
21119
|
+
'pentagon-up': _react_icons_all_files_lib.IconType;
|
|
21120
|
+
performance: _react_icons_all_files_lib.IconType;
|
|
21121
|
+
phone: _react_icons_all_files_lib.IconType;
|
|
21122
|
+
photoscan: _react_icons_all_files_lib.IconType;
|
|
21123
|
+
piano: _react_icons_all_files_lib.IconType;
|
|
21124
|
+
pill: _react_icons_all_files_lib.IconType;
|
|
21125
|
+
'pin-alt': _react_icons_all_files_lib.IconType;
|
|
21126
|
+
'pin-bottom': _react_icons_all_files_lib.IconType;
|
|
21127
|
+
'pin-top': _react_icons_all_files_lib.IconType;
|
|
21128
|
+
pin: _react_icons_all_files_lib.IconType;
|
|
21129
|
+
'play-backwards': _react_icons_all_files_lib.IconType;
|
|
21130
|
+
'play-button-o': _react_icons_all_files_lib.IconType;
|
|
21131
|
+
'play-button-r': _react_icons_all_files_lib.IconType;
|
|
21132
|
+
'play-button': _react_icons_all_files_lib.IconType;
|
|
21133
|
+
'play-forwards': _react_icons_all_files_lib.IconType;
|
|
21134
|
+
'play-list-add': _react_icons_all_files_lib.IconType;
|
|
21135
|
+
'play-list-check': _react_icons_all_files_lib.IconType;
|
|
21136
|
+
'play-list-remove': _react_icons_all_files_lib.IconType;
|
|
21137
|
+
'play-list-search': _react_icons_all_files_lib.IconType;
|
|
21138
|
+
'play-list': _react_icons_all_files_lib.IconType;
|
|
21139
|
+
'play-pause-o': _react_icons_all_files_lib.IconType;
|
|
21140
|
+
'play-pause-r': _react_icons_all_files_lib.IconType;
|
|
21141
|
+
'play-pause': _react_icons_all_files_lib.IconType;
|
|
21142
|
+
'play-stop-o': _react_icons_all_files_lib.IconType;
|
|
21143
|
+
'play-stop-r': _react_icons_all_files_lib.IconType;
|
|
21144
|
+
'play-stop': _react_icons_all_files_lib.IconType;
|
|
21145
|
+
'play-track-next-o': _react_icons_all_files_lib.IconType;
|
|
21146
|
+
'play-track-next-r': _react_icons_all_files_lib.IconType;
|
|
21147
|
+
'play-track-next': _react_icons_all_files_lib.IconType;
|
|
21148
|
+
'play-track-prev-o': _react_icons_all_files_lib.IconType;
|
|
21149
|
+
'play-track-prev-r': _react_icons_all_files_lib.IconType;
|
|
21150
|
+
'play-track-prev': _react_icons_all_files_lib.IconType;
|
|
21151
|
+
plug: _react_icons_all_files_lib.IconType;
|
|
21152
|
+
polaroid: _react_icons_all_files_lib.IconType;
|
|
21153
|
+
poll: _react_icons_all_files_lib.IconType;
|
|
21154
|
+
presentation: _react_icons_all_files_lib.IconType;
|
|
21155
|
+
printer: _react_icons_all_files_lib.IconType;
|
|
21156
|
+
profile: _react_icons_all_files_lib.IconType;
|
|
21157
|
+
'pull-clear': _react_icons_all_files_lib.IconType;
|
|
21158
|
+
'push-chevron-down-o': _react_icons_all_files_lib.IconType;
|
|
21159
|
+
'push-chevron-down-r': _react_icons_all_files_lib.IconType;
|
|
21160
|
+
'push-chevron-down': _react_icons_all_files_lib.IconType;
|
|
21161
|
+
'push-chevron-left-o': _react_icons_all_files_lib.IconType;
|
|
21162
|
+
'push-chevron-left-r': _react_icons_all_files_lib.IconType;
|
|
21163
|
+
'push-chevron-left': _react_icons_all_files_lib.IconType;
|
|
21164
|
+
'push-chevron-right-o': _react_icons_all_files_lib.IconType;
|
|
21165
|
+
'push-chevron-right-r': _react_icons_all_files_lib.IconType;
|
|
21166
|
+
'push-chevron-right': _react_icons_all_files_lib.IconType;
|
|
21167
|
+
'push-chevron-up-o': _react_icons_all_files_lib.IconType;
|
|
21168
|
+
'push-chevron-up-r': _react_icons_all_files_lib.IconType;
|
|
21169
|
+
'push-chevron-up': _react_icons_all_files_lib.IconType;
|
|
21170
|
+
'push-down': _react_icons_all_files_lib.IconType;
|
|
21171
|
+
'push-left': _react_icons_all_files_lib.IconType;
|
|
21172
|
+
'push-right': _react_icons_all_files_lib.IconType;
|
|
21173
|
+
'push-up': _react_icons_all_files_lib.IconType;
|
|
21174
|
+
qr: _react_icons_all_files_lib.IconType;
|
|
21175
|
+
'quote-o': _react_icons_all_files_lib.IconType;
|
|
21176
|
+
quote: _react_icons_all_files_lib.IconType;
|
|
21177
|
+
'radio-check': _react_icons_all_files_lib.IconType;
|
|
21178
|
+
'radio-checked': _react_icons_all_files_lib.IconType;
|
|
21179
|
+
ratio: _react_icons_all_files_lib.IconType;
|
|
21180
|
+
read: _react_icons_all_files_lib.IconType;
|
|
21181
|
+
readme: _react_icons_all_files_lib.IconType;
|
|
21182
|
+
record: _react_icons_all_files_lib.IconType;
|
|
21183
|
+
redo: _react_icons_all_files_lib.IconType;
|
|
21184
|
+
remote: _react_icons_all_files_lib.IconType;
|
|
21185
|
+
'remove-r': _react_icons_all_files_lib.IconType;
|
|
21186
|
+
remove: _react_icons_all_files_lib.IconType;
|
|
21187
|
+
rename: _react_icons_all_files_lib.IconType;
|
|
21188
|
+
reorder: _react_icons_all_files_lib.IconType;
|
|
21189
|
+
repeat: _react_icons_all_files_lib.IconType;
|
|
21190
|
+
ring: _react_icons_all_files_lib.IconType;
|
|
21191
|
+
'row-first': _react_icons_all_files_lib.IconType;
|
|
21192
|
+
'row-last': _react_icons_all_files_lib.IconType;
|
|
21193
|
+
ruler: _react_icons_all_files_lib.IconType;
|
|
21194
|
+
'sand-clock': _react_icons_all_files_lib.IconType;
|
|
21195
|
+
scan: _react_icons_all_files_lib.IconType;
|
|
21196
|
+
'screen-mirror': _react_icons_all_files_lib.IconType;
|
|
21197
|
+
'screen-shot': _react_icons_all_files_lib.IconType;
|
|
21198
|
+
'screen-wide': _react_icons_all_files_lib.IconType;
|
|
21199
|
+
screen: _react_icons_all_files_lib.IconType;
|
|
21200
|
+
'scroll-h': _react_icons_all_files_lib.IconType;
|
|
21201
|
+
'scroll-v': _react_icons_all_files_lib.IconType;
|
|
21202
|
+
'search-found': _react_icons_all_files_lib.IconType;
|
|
21203
|
+
'search-loading': _react_icons_all_files_lib.IconType;
|
|
21204
|
+
search: _react_icons_all_files_lib.IconType;
|
|
21205
|
+
'select-o': _react_icons_all_files_lib.IconType;
|
|
21206
|
+
'select-r': _react_icons_all_files_lib.IconType;
|
|
21207
|
+
select: _react_icons_all_files_lib.IconType;
|
|
21208
|
+
server: _react_icons_all_files_lib.IconType;
|
|
21209
|
+
'shape-circle': _react_icons_all_files_lib.IconType;
|
|
21210
|
+
'shape-half-circle': _react_icons_all_files_lib.IconType;
|
|
21211
|
+
'shape-hexagon': _react_icons_all_files_lib.IconType;
|
|
21212
|
+
'shape-rhombus': _react_icons_all_files_lib.IconType;
|
|
21213
|
+
'shape-square': _react_icons_all_files_lib.IconType;
|
|
21214
|
+
'shape-triangle': _react_icons_all_files_lib.IconType;
|
|
21215
|
+
'shape-zigzag': _react_icons_all_files_lib.IconType;
|
|
21216
|
+
share: _react_icons_all_files_lib.IconType;
|
|
21217
|
+
shield: _react_icons_all_files_lib.IconType;
|
|
21218
|
+
'shopping-bag': _react_icons_all_files_lib.IconType;
|
|
21219
|
+
'shopping-cart': _react_icons_all_files_lib.IconType;
|
|
21220
|
+
shortcut: _react_icons_all_files_lib.IconType;
|
|
21221
|
+
'sidebar-open': _react_icons_all_files_lib.IconType;
|
|
21222
|
+
'sidebar-right': _react_icons_all_files_lib.IconType;
|
|
21223
|
+
sidebar: _react_icons_all_files_lib.IconType;
|
|
21224
|
+
signal: _react_icons_all_files_lib.IconType;
|
|
21225
|
+
size: _react_icons_all_files_lib.IconType;
|
|
21226
|
+
sleep: _react_icons_all_files_lib.IconType;
|
|
21227
|
+
'smart-home-boiler': _react_icons_all_files_lib.IconType;
|
|
21228
|
+
'smart-home-cooker': _react_icons_all_files_lib.IconType;
|
|
21229
|
+
'smart-home-heat': _react_icons_all_files_lib.IconType;
|
|
21230
|
+
'smart-home-light': _react_icons_all_files_lib.IconType;
|
|
21231
|
+
'smart-home-refrigerator': _react_icons_all_files_lib.IconType;
|
|
21232
|
+
'smart-home-wash-machine': _react_icons_all_files_lib.IconType;
|
|
21233
|
+
'smartphone-chip': _react_icons_all_files_lib.IconType;
|
|
21234
|
+
'smartphone-ram': _react_icons_all_files_lib.IconType;
|
|
21235
|
+
'smartphone-shake': _react_icons_all_files_lib.IconType;
|
|
21236
|
+
smartphone: _react_icons_all_files_lib.IconType;
|
|
21237
|
+
'smile-mouth-open': _react_icons_all_files_lib.IconType;
|
|
21238
|
+
'smile-neutral': _react_icons_all_files_lib.IconType;
|
|
21239
|
+
'smile-no-mouth': _react_icons_all_files_lib.IconType;
|
|
21240
|
+
'smile-none': _react_icons_all_files_lib.IconType;
|
|
21241
|
+
'smile-sad': _react_icons_all_files_lib.IconType;
|
|
21242
|
+
'smile-upside': _react_icons_all_files_lib.IconType;
|
|
21243
|
+
smile: _react_icons_all_files_lib.IconType;
|
|
21244
|
+
'software-download': _react_icons_all_files_lib.IconType;
|
|
21245
|
+
'software-upload': _react_icons_all_files_lib.IconType;
|
|
21246
|
+
'sort-az': _react_icons_all_files_lib.IconType;
|
|
21247
|
+
'sort-za': _react_icons_all_files_lib.IconType;
|
|
21248
|
+
'space-between-v': _react_icons_all_files_lib.IconType;
|
|
21249
|
+
'space-between': _react_icons_all_files_lib.IconType;
|
|
21250
|
+
'spinner-alt': _react_icons_all_files_lib.IconType;
|
|
21251
|
+
'spinner-two-alt': _react_icons_all_files_lib.IconType;
|
|
21252
|
+
'spinner-two': _react_icons_all_files_lib.IconType;
|
|
21253
|
+
spinner: _react_icons_all_files_lib.IconType;
|
|
21254
|
+
stack: _react_icons_all_files_lib.IconType;
|
|
21255
|
+
stopwatch: _react_icons_all_files_lib.IconType;
|
|
21256
|
+
stories: _react_icons_all_files_lib.IconType;
|
|
21257
|
+
style: _react_icons_all_files_lib.IconType;
|
|
21258
|
+
sun: _react_icons_all_files_lib.IconType;
|
|
21259
|
+
support: _react_icons_all_files_lib.IconType;
|
|
21260
|
+
'swap-vertical': _react_icons_all_files_lib.IconType;
|
|
21261
|
+
swap: _react_icons_all_files_lib.IconType;
|
|
21262
|
+
sweden: _react_icons_all_files_lib.IconType;
|
|
21263
|
+
swiss: _react_icons_all_files_lib.IconType;
|
|
21264
|
+
sync: _react_icons_all_files_lib.IconType;
|
|
21265
|
+
tab: _react_icons_all_files_lib.IconType;
|
|
21266
|
+
tag: _react_icons_all_files_lib.IconType;
|
|
21267
|
+
'tap-double': _react_icons_all_files_lib.IconType;
|
|
21268
|
+
'tap-single': _react_icons_all_files_lib.IconType;
|
|
21269
|
+
template: _react_icons_all_files_lib.IconType;
|
|
21270
|
+
tennis: _react_icons_all_files_lib.IconType;
|
|
21271
|
+
terminal: _react_icons_all_files_lib.IconType;
|
|
21272
|
+
terrain: _react_icons_all_files_lib.IconType;
|
|
21273
|
+
thermometer: _react_icons_all_files_lib.IconType;
|
|
21274
|
+
thermostat: _react_icons_all_files_lib.IconType;
|
|
21275
|
+
tikcode: _react_icons_all_files_lib.IconType;
|
|
21276
|
+
time: _react_icons_all_files_lib.IconType;
|
|
21277
|
+
timelapse: _react_icons_all_files_lib.IconType;
|
|
21278
|
+
timer: _react_icons_all_files_lib.IconType;
|
|
21279
|
+
today: _react_icons_all_files_lib.IconType;
|
|
21280
|
+
'toggle-off': _react_icons_all_files_lib.IconType;
|
|
21281
|
+
'toggle-on': _react_icons_all_files_lib.IconType;
|
|
21282
|
+
'toggle-square-off': _react_icons_all_files_lib.IconType;
|
|
21283
|
+
'toggle-square': _react_icons_all_files_lib.IconType;
|
|
21284
|
+
'toolbar-bottom': _react_icons_all_files_lib.IconType;
|
|
21285
|
+
'toolbar-left': _react_icons_all_files_lib.IconType;
|
|
21286
|
+
'toolbar-right': _react_icons_all_files_lib.IconType;
|
|
21287
|
+
'toolbar-top': _react_icons_all_files_lib.IconType;
|
|
21288
|
+
toolbox: _react_icons_all_files_lib.IconType;
|
|
21289
|
+
touchpad: _react_icons_all_files_lib.IconType;
|
|
21290
|
+
track: _react_icons_all_files_lib.IconType;
|
|
21291
|
+
transcript: _react_icons_all_files_lib.IconType;
|
|
21292
|
+
'trash-empty': _react_icons_all_files_lib.IconType;
|
|
21293
|
+
trash: _react_icons_all_files_lib.IconType;
|
|
21294
|
+
tree: _react_icons_all_files_lib.IconType;
|
|
21295
|
+
trees: _react_icons_all_files_lib.IconType;
|
|
21296
|
+
'trending-down': _react_icons_all_files_lib.IconType;
|
|
21297
|
+
trending: _react_icons_all_files_lib.IconType;
|
|
21298
|
+
trophy: _react_icons_all_files_lib.IconType;
|
|
21299
|
+
tv: _react_icons_all_files_lib.IconType;
|
|
21300
|
+
'ui-kit': _react_icons_all_files_lib.IconType;
|
|
21301
|
+
umbrella: _react_icons_all_files_lib.IconType;
|
|
21302
|
+
unavailable: _react_icons_all_files_lib.IconType;
|
|
21303
|
+
unblock: _react_icons_all_files_lib.IconType;
|
|
21304
|
+
undo: _react_icons_all_files_lib.IconType;
|
|
21305
|
+
unsplash: _react_icons_all_files_lib.IconType;
|
|
21306
|
+
'usb-c': _react_icons_all_files_lib.IconType;
|
|
21307
|
+
usb: _react_icons_all_files_lib.IconType;
|
|
21308
|
+
'user-add': _react_icons_all_files_lib.IconType;
|
|
21309
|
+
'user-list': _react_icons_all_files_lib.IconType;
|
|
21310
|
+
'user-remove': _react_icons_all_files_lib.IconType;
|
|
21311
|
+
user: _react_icons_all_files_lib.IconType;
|
|
21312
|
+
'view-cols': _react_icons_all_files_lib.IconType;
|
|
21313
|
+
'view-comfortable': _react_icons_all_files_lib.IconType;
|
|
21314
|
+
'view-day': _react_icons_all_files_lib.IconType;
|
|
21315
|
+
'view-grid': _react_icons_all_files_lib.IconType;
|
|
21316
|
+
'view-list': _react_icons_all_files_lib.IconType;
|
|
21317
|
+
'view-month': _react_icons_all_files_lib.IconType;
|
|
21318
|
+
'view-split': _react_icons_all_files_lib.IconType;
|
|
21319
|
+
vinyl: _react_icons_all_files_lib.IconType;
|
|
21320
|
+
'voicemail-o': _react_icons_all_files_lib.IconType;
|
|
21321
|
+
'voicemail-r': _react_icons_all_files_lib.IconType;
|
|
21322
|
+
voicemail: _react_icons_all_files_lib.IconType;
|
|
21323
|
+
volume: _react_icons_all_files_lib.IconType;
|
|
21324
|
+
webcam: _react_icons_all_files_lib.IconType;
|
|
21325
|
+
website: _react_icons_all_files_lib.IconType;
|
|
21326
|
+
'work-alt': _react_icons_all_files_lib.IconType;
|
|
21327
|
+
yinyang: _react_icons_all_files_lib.IconType;
|
|
21328
|
+
'zoom-in': _react_icons_all_files_lib.IconType;
|
|
21329
|
+
'zoom-out': _react_icons_all_files_lib.IconType;
|
|
20632
21330
|
};
|
|
20633
21331
|
|
|
20634
|
-
declare const iconNames: readonly ["add-r", "add", "airplane", "alarm", "album", "align-bottom", "align-center", "align-left", "align-middle", "align-right", "align-top", "anchor", "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", "clear-formatting", "clipboard", "close-o", "close-r", "close", "cloud", "code-slash", "code", "coffee", "collage", "color-bucket", "color-picker", "comment", "community", "components", "compress-left", "compress-right", "compress-v", "compress", "controller", "copy", "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", "data", "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", "drop", "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", "feed", "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-code", "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-subscript", "format-superscript", "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", "image", "import", "inbox", "infinity", "info", "inpicture", "insert-after-o", "insert-after-r", "insert-after", "insert-before-o", "insert-before-r", "insert-before", "insights", "internal", "key", "keyboard", "keyhole", "laptop", "layout-grid-small", "layout-grid", "layout-list", "layout-list-numbered", "layout-pin", "link", "list-tree", "list", "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", "menu", "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", "presentation", "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", "repeat", "ring", "row-first", "row-last", "ruler", "sand-clock", "scan", "screen-mirror", "screen-shot", "screen-wide", "screen", "scroll-h", "scroll-v", "search-found", "search-loading", "search", "select-o", "select-r", "select", "server", "shape-circle", "shape-half-circle", "shape-hexagon", "shape-rhombus", "shape-square", "shape-triangle", "shape-zigzag", "share", "shield", "shopping-bag", "shopping-cart", "shortcut", "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", "style", "sun", "support", "swap-vertical", "swap", "sweden", "swiss", "sync", "tab", "tag", "tap-double", "tap-single", "template", "tennis", "terminal", "terrain", "thermometer", "thermostat", "tikcode", "time", "timelapse", "timer", "today", "toggle-off", "toggle-on", "toggle-square-off", "toggle-square", "toolbar-bottom", "toolbar-left", "toolbar-right", "toolbar-top", "toolbox", "touchpad", "track", "transcript", "trash-empty", "trash", "tree", "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", "border-top", "full-width-screen", "text-input", "number-input", "canvas-alert", "warning", "settings", "query-string", "json", "yes-no"];
|
|
20635
21332
|
/** A list of available icon names that can be used with the Uniform brand */
|
|
20636
|
-
type IconName =
|
|
21333
|
+
type IconName = keyof typeof allSupportedIcons;
|
|
20637
21334
|
|
|
20638
21335
|
/** sets fill color of the svg icon
|
|
20639
21336
|
* @default 'default'
|
|
20640
21337
|
*/
|
|
20641
|
-
type IconColor = 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor';
|
|
21338
|
+
type IconColor = 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
|
|
20642
21339
|
/** sets the type of icon to use from the available list */
|
|
20643
21340
|
type IconType = IconName | IconType$1;
|
|
20644
21341
|
interface IconProps extends IconBaseProps {
|
|
@@ -20655,44 +21352,46 @@ interface IconProps extends IconBaseProps {
|
|
|
20655
21352
|
*/
|
|
20656
21353
|
declare const Icon: React__default.MemoExoticComponent<({ icon, iconColor, size, ...otherProps }: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null>;
|
|
20657
21354
|
|
|
20658
|
-
declare const rectangleRoundedIcon: (props:
|
|
20659
|
-
declare const cardIcon: (props:
|
|
20660
|
-
declare const imageTextIcon: (props:
|
|
20661
|
-
declare const borderTopIcon: (props:
|
|
20662
|
-
declare const fullWidthScreenIcon: (props:
|
|
20663
|
-
declare const textInput: (props:
|
|
20664
|
-
declare const numberInput: (props:
|
|
20665
|
-
declare const canvasAlertIcon: (props:
|
|
20666
|
-
declare const warningIcon: (props:
|
|
20667
|
-
declare const infoFilledIcon: (props:
|
|
20668
|
-
declare const settingsIcon:
|
|
21355
|
+
declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21356
|
+
declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21357
|
+
declare const imageTextIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21358
|
+
declare const borderTopIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21359
|
+
declare const fullWidthScreenIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21360
|
+
declare const textInput: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21361
|
+
declare const numberInput: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21362
|
+
declare const canvasAlertIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21363
|
+
declare const warningIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21364
|
+
declare const infoFilledIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21365
|
+
declare const settingsIcon: _react_icons_all_files_lib.IconType;
|
|
20669
21366
|
declare const settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
20670
|
-
declare const queryStringIcon: (props:
|
|
20671
|
-
declare const structurePanelIcon: (props:
|
|
20672
|
-
declare const jsonIcon: (props:
|
|
20673
|
-
declare const yesNoIcon: (props:
|
|
21367
|
+
declare const queryStringIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21368
|
+
declare const structurePanelIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21369
|
+
declare const jsonIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21370
|
+
declare const yesNoIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20674
21371
|
declare const customIcons: {
|
|
20675
|
-
'rectangle-rounded': (props:
|
|
20676
|
-
card: (props:
|
|
20677
|
-
'image-text': (props:
|
|
20678
|
-
'border-top': (props:
|
|
20679
|
-
'full-width-screen': (props:
|
|
20680
|
-
'text-input': (props:
|
|
20681
|
-
'number-input': (props:
|
|
20682
|
-
'canvas-alert': (props:
|
|
20683
|
-
warning: (props:
|
|
20684
|
-
'info-filled': (props:
|
|
21372
|
+
'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21373
|
+
card: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21374
|
+
'image-text': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21375
|
+
'border-top': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21376
|
+
'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21377
|
+
'text-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21378
|
+
'number-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21379
|
+
'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21380
|
+
warning: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21381
|
+
'info-filled': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20685
21382
|
settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
20686
|
-
'query-string': (props:
|
|
20687
|
-
json: (props:
|
|
20688
|
-
'format-bold': (props:
|
|
20689
|
-
'format-code': (props:
|
|
20690
|
-
'format-strike': (props:
|
|
20691
|
-
'format-superscript': (props:
|
|
20692
|
-
'format-subscript': (props:
|
|
20693
|
-
'layout-list-numbered': (props:
|
|
20694
|
-
'clear-formatting': (props:
|
|
20695
|
-
'yes-no': (props:
|
|
21383
|
+
'query-string': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21384
|
+
json: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21385
|
+
'format-bold': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21386
|
+
'format-code': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21387
|
+
'format-strike': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21388
|
+
'format-superscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21389
|
+
'format-subscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21390
|
+
'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21391
|
+
'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21392
|
+
'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21393
|
+
'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21394
|
+
'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20696
21395
|
};
|
|
20697
21396
|
|
|
20698
21397
|
type IconsMap = Record<string, IconType$1>;
|
|
@@ -20813,6 +21512,10 @@ type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
20813
21512
|
/** (option) sets caption message test id for test automation */
|
|
20814
21513
|
captionTestId?: string;
|
|
20815
21514
|
capture?: boolean | 'user' | 'environment';
|
|
21515
|
+
/**
|
|
21516
|
+
* (optional) sets an overriding classname on the root element
|
|
21517
|
+
*/
|
|
21518
|
+
classNameRoot?: string | SerializedStyles;
|
|
20816
21519
|
/**
|
|
20817
21520
|
* (optional) sets an overriding classname on the container element
|
|
20818
21521
|
* @deprecated */
|
|
@@ -20852,6 +21555,10 @@ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttribut
|
|
|
20852
21555
|
/** (option) sets caption message test id for test automation */
|
|
20853
21556
|
captionTestId?: string | undefined;
|
|
20854
21557
|
capture?: boolean | "user" | "environment" | undefined;
|
|
21558
|
+
/**
|
|
21559
|
+
* (optional) sets an overriding classname on the root element
|
|
21560
|
+
*/
|
|
21561
|
+
classNameRoot?: string | SerializedStyles | undefined;
|
|
20855
21562
|
/**
|
|
20856
21563
|
* (optional) sets an overriding classname on the container element
|
|
20857
21564
|
* @deprecated */
|
|
@@ -21289,7 +21996,9 @@ declare const ScrollableListItem: ({ buttonText, active, disableShadow, ...props
|
|
|
21289
21996
|
* Loading Indicator
|
|
21290
21997
|
* @example <LoadingIndicator />
|
|
21291
21998
|
*/
|
|
21292
|
-
declare const LoadingIndicator: ({ ...props }: HTMLAttributes<HTMLDivElement>
|
|
21999
|
+
declare const LoadingIndicator: ({ size, ...props }: HTMLAttributes<HTMLDivElement> & {
|
|
22000
|
+
size?: "sm" | "lg" | undefined;
|
|
22001
|
+
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21293
22002
|
|
|
21294
22003
|
interface LoadingOverlayProps {
|
|
21295
22004
|
/** sets whether to display the loading overlay components */
|
|
@@ -21363,6 +22072,8 @@ interface MenuProps extends MenuHTMLProps {
|
|
|
21363
22072
|
* If you need to disable this functionality, set this prop to true.
|
|
21364
22073
|
*/
|
|
21365
22074
|
disableAutoSeparatorManagement?: boolean;
|
|
22075
|
+
/** sets whether to use a React portal rendering or not */
|
|
22076
|
+
withoutPortal?: boolean;
|
|
21366
22077
|
}
|
|
21367
22078
|
declare const MenuContext: React$1.Context<MenuStateReturn>;
|
|
21368
22079
|
declare const useMenuContext: () => MenuStateReturn | undefined;
|
|
@@ -21375,11 +22086,11 @@ declare const useMenuContext: () => MenuStateReturn | undefined;
|
|
|
21375
22086
|
* menuLabel="Linked environment management options">
|
|
21376
22087
|
* </Menu>
|
|
21377
22088
|
*/
|
|
21378
|
-
declare const Menu: ({ menuLabel, menuTrigger, placement, menuItemsContainerCssClasses, children, forceVisible, disableAutoSeparatorManagement, }: MenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22089
|
+
declare const Menu: ({ menuLabel, menuTrigger, placement, menuItemsContainerCssClasses, children, forceVisible, disableAutoSeparatorManagement, withoutPortal, }: MenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21379
22090
|
|
|
21380
22091
|
type MenuGroupProps = {
|
|
21381
|
-
/** Title for the menu group */
|
|
21382
|
-
title: string;
|
|
22092
|
+
/** Title for the menu group. If undefined or an empty string, the group will render as normal menu */
|
|
22093
|
+
title: string | undefined;
|
|
21383
22094
|
/** Menu items to render in the group */
|
|
21384
22095
|
children: ReactNode;
|
|
21385
22096
|
};
|
|
@@ -21451,20 +22162,13 @@ declare const Modal: React__default.ForwardRefExoticComponent<{
|
|
|
21451
22162
|
buttonGroup?: ReactNode;
|
|
21452
22163
|
} & React__default.HTMLAttributes<HTMLDialogElement> & React__default.RefAttributes<HTMLDialogElement>>;
|
|
21453
22164
|
|
|
21454
|
-
type ConnectToDataElementButtonProps = HTMLAttributes<HTMLButtonElement> & {
|
|
21455
|
-
icon?: IconType;
|
|
21456
|
-
iconColor?: IconColor;
|
|
21457
|
-
children?: ReactNode;
|
|
21458
|
-
isBound?: boolean;
|
|
21459
|
-
isLocked?: boolean;
|
|
21460
|
-
};
|
|
21461
|
-
declare const ConnectToDataElementButton: ({ icon, iconColor, children, isBound, isLocked, ...props }: ConnectToDataElementButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21462
|
-
|
|
21463
22165
|
type CommonParameterProps = {
|
|
21464
22166
|
/** sets the label value */
|
|
21465
22167
|
label: string;
|
|
21466
|
-
/** (optional): allows user to pass a component
|
|
22168
|
+
/** (optional): allows user to pass a component before the label */
|
|
21467
22169
|
labelLeadingIcon?: ReactNode;
|
|
22170
|
+
/** (optional): allows user to pass a component after the label */
|
|
22171
|
+
labelTrailingIcon?: ReactNode;
|
|
21468
22172
|
/** sets the value for label and id on the input field */
|
|
21469
22173
|
id: string;
|
|
21470
22174
|
/** (optional): hides the label, but set an aria-label on the input */
|
|
@@ -21477,9 +22181,13 @@ type CommonParameterProps = {
|
|
|
21477
22181
|
infoMessage?: string;
|
|
21478
22182
|
/** (optional) allows users to manually set the error message state */
|
|
21479
22183
|
handleManuallySetErrorMessage?: (message: string | undefined) => void;
|
|
21480
|
-
/** sets whether to show the override UI
|
|
22184
|
+
/** sets whether to show the override UI
|
|
22185
|
+
* @deprecated
|
|
22186
|
+
*/
|
|
21481
22187
|
hasOverriddenValue?: boolean;
|
|
21482
|
-
/** sets the function call of the overriding parameters button
|
|
22188
|
+
/** sets the function call of the overriding parameters button
|
|
22189
|
+
* @deprecated
|
|
22190
|
+
*/
|
|
21483
22191
|
onResetOverriddenValue?: () => void;
|
|
21484
22192
|
};
|
|
21485
22193
|
type CommonParameterInputProps = CommonParameterProps & {
|
|
@@ -21515,6 +22223,21 @@ declare const useParameterShell: () => {
|
|
|
21515
22223
|
handleManuallySetErrorMessage: ((message: string | undefined) => void) | undefined;
|
|
21516
22224
|
};
|
|
21517
22225
|
|
|
22226
|
+
type ConnectToDataElementButtonProps = HTMLAttributes<HTMLButtonElement> & {
|
|
22227
|
+
icon?: IconType;
|
|
22228
|
+
iconColor?: IconColor;
|
|
22229
|
+
children?: ReactNode;
|
|
22230
|
+
/** @deprecated use isActive */
|
|
22231
|
+
isBound?: boolean;
|
|
22232
|
+
/** Sets if the button is active (pressed) currently. */
|
|
22233
|
+
isActive?: boolean;
|
|
22234
|
+
/** Disables hover state, sets aria-disabled */
|
|
22235
|
+
isLocked?: boolean;
|
|
22236
|
+
};
|
|
22237
|
+
declare const LabelLeadingIcon: ({ icon, iconColor, children, isBound, isActive, isLocked, title, ...props }: ConnectToDataElementButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22238
|
+
/** @deprecated use LabelLeadingIcon */
|
|
22239
|
+
declare const ConnectToDataElementButton: ({ icon, iconColor, children, isBound, isActive, isLocked, title, ...props }: ConnectToDataElementButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22240
|
+
|
|
21518
22241
|
type ParameterDataConnectButtonProps = {
|
|
21519
22242
|
/** Sets the label value */
|
|
21520
22243
|
label: string;
|
|
@@ -21531,7 +22254,10 @@ type ParameterDataConnectButtonProps = {
|
|
|
21531
22254
|
/** sets the disabled state of the button, useful for permissions */
|
|
21532
22255
|
disabled?: boolean;
|
|
21533
22256
|
};
|
|
21534
|
-
/**
|
|
22257
|
+
/**
|
|
22258
|
+
* @example <ParameterDataConnectButton label="label" id="connect-data-button" onConnectDatasource={() => myFunction()}>Button Text</ParameterDataConnectButton>
|
|
22259
|
+
* @deprecated no longer used in uniform UI
|
|
22260
|
+
*/
|
|
21535
22261
|
declare function ParameterDataResource({ label, labelLeadingIcon, id, onConnectDatasource, caption, disabled, children, }: ParameterDataConnectButtonProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21536
22262
|
|
|
21537
22263
|
type ParameterDrawerHeaderProps = {
|
|
@@ -21557,14 +22283,24 @@ declare const ParameterGroup: React$1.ForwardRefExoticComponent<React$1.HTMLAttr
|
|
|
21557
22283
|
children: ReactNode;
|
|
21558
22284
|
} & React$1.RefAttributes<HTMLFieldSetElement>>;
|
|
21559
22285
|
|
|
21560
|
-
type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'
|
|
22286
|
+
type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'> & React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22287
|
+
/** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
|
|
22288
|
+
disablePreview?: boolean;
|
|
22289
|
+
};
|
|
21561
22290
|
/** @Example <ParameterImage {...inputArgs} value={value} onChange={(e) => setValue(e.currentTarget.value)} /> */
|
|
21562
|
-
declare const ParameterImage: React__default.ForwardRefExoticComponent<
|
|
21563
|
-
|
|
21564
|
-
|
|
21565
|
-
|
|
22291
|
+
declare const ParameterImage: React__default.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "type" | "inputIcon"> & React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22292
|
+
/** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
|
|
22293
|
+
disablePreview?: boolean | undefined;
|
|
22294
|
+
} & {
|
|
22295
|
+
children?: React__default.ReactNode;
|
|
22296
|
+
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
22297
|
+
declare const ParameterImageInner: React__default.ForwardRefExoticComponent<React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22298
|
+
disablePreview?: boolean | undefined;
|
|
22299
|
+
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
22300
|
+
|
|
22301
|
+
declare function ParameterImagePreview({ imageSrc }: {
|
|
21566
22302
|
imageSrc: string;
|
|
21567
|
-
})
|
|
22303
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21568
22304
|
|
|
21569
22305
|
type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
|
|
21570
22306
|
/** @example <ParameterInput label="label value" id="my-input" /> */
|
|
@@ -21706,6 +22442,19 @@ type LinkNodePluginProps = {
|
|
|
21706
22442
|
value: LinkParamValue;
|
|
21707
22443
|
onSetValue: (value: LinkParamValue) => void;
|
|
21708
22444
|
}) => Promise<void>;
|
|
22445
|
+
getBoundPath?: (path: string) => string;
|
|
22446
|
+
};
|
|
22447
|
+
|
|
22448
|
+
declare const richTextToolbarButton: _emotion_react.SerializedStyles;
|
|
22449
|
+
declare const richTextToolbarButtonActive: _emotion_react.SerializedStyles;
|
|
22450
|
+
type RichTextToolbarIconProps = {
|
|
22451
|
+
icon: IconType;
|
|
22452
|
+
};
|
|
22453
|
+
declare const RichTextToolbarIcon: ({ icon }: RichTextToolbarIconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22454
|
+
type RichTextToolbarProps = {
|
|
22455
|
+
config?: RichTextParamConfiguration;
|
|
22456
|
+
/** Variables */
|
|
22457
|
+
customControls?: React.ReactElement;
|
|
21709
22458
|
};
|
|
21710
22459
|
|
|
21711
22460
|
type RichTextProps = {
|
|
@@ -21715,6 +22464,16 @@ type RichTextProps = {
|
|
|
21715
22464
|
onRichTextInit?: (editor: LexicalEditor) => void;
|
|
21716
22465
|
readOnly?: boolean;
|
|
21717
22466
|
editorInputClassName?: string;
|
|
22467
|
+
/** Register additional custom node types to the RTE */
|
|
22468
|
+
customNodes?: InitialConfigType['nodes'];
|
|
22469
|
+
/** Children allows registering custom Lexical plugins */
|
|
22470
|
+
children?: ReactNode;
|
|
22471
|
+
/** Variables */
|
|
22472
|
+
variables?: {
|
|
22473
|
+
bindVariables?: (value: string) => string;
|
|
22474
|
+
};
|
|
22475
|
+
/** Rich Text Toolbar custom controls */
|
|
22476
|
+
customControls?: RichTextToolbarProps['customControls'];
|
|
21718
22477
|
};
|
|
21719
22478
|
type RichTextParamValue = SerializedEditorState | undefined | null;
|
|
21720
22479
|
type ParameterRichTextInnerProps = RichTextProps & {
|
|
@@ -21723,8 +22482,8 @@ type ParameterRichTextInnerProps = RichTextProps & {
|
|
|
21723
22482
|
editorFooter?: React.ReactNode;
|
|
21724
22483
|
};
|
|
21725
22484
|
type ParameterRichTextProps = CommonParameterInputProps & ParameterRichTextInnerProps;
|
|
21726
|
-
declare const ParameterRichText: ({ label, labelLeadingIcon, hiddenLabel, id, errorMessage, caption, errorTestId, captionTestId, menuItems, value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorFooter, }: ParameterRichTextProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21727
|
-
declare const ParameterRichTextInner: ({ value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorFooter, }: ParameterRichTextInnerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22485
|
+
declare const ParameterRichText: ({ label, labelLeadingIcon, hiddenLabel, id, errorMessage, caption, errorTestId, captionTestId, menuItems, value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorFooter, customNodes, children, variables, customControls, }: ParameterRichTextProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22486
|
+
declare const ParameterRichTextInner: ({ value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorFooter, children, customNodes, variables, customControls, }: ParameterRichTextInnerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21728
22487
|
|
|
21729
22488
|
type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectProps & React.InputHTMLAttributes<HTMLSelectElement>;
|
|
21730
22489
|
/** @example <ParameterSelect label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
@@ -21772,9 +22531,13 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
|
|
|
21772
22531
|
}, "caption" | "label" | "title" | "id" | "menuItems" | "errorMessage" | "warningMessage" | "errorTestId" | "captionTestId" | "hiddenLabel" | "labelLeadingIcon" | "infoMessage" | "hasOverriddenValue" | "onResetOverriddenValue">;
|
|
21773
22532
|
};
|
|
21774
22533
|
type ParameterShellOverrideProps = {
|
|
21775
|
-
/** sets overriding parameters indicator
|
|
22534
|
+
/** sets overriding parameters indicator
|
|
22535
|
+
* @deprecated
|
|
22536
|
+
*/
|
|
21776
22537
|
hasOverriddenValue?: boolean;
|
|
21777
|
-
/** sets the function call of the overriding parameters button
|
|
22538
|
+
/** sets the function call of the overriding parameters button
|
|
22539
|
+
* @deprecated
|
|
22540
|
+
*/
|
|
21778
22541
|
onResetOverriddenValue?: () => void;
|
|
21779
22542
|
};
|
|
21780
22543
|
type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonParameterInputProps & ParameterShellOverrideProps;
|
|
@@ -21782,10 +22545,11 @@ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonPar
|
|
|
21782
22545
|
* Uniform Parameter shell component
|
|
21783
22546
|
* @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
|
|
21784
22547
|
*/
|
|
21785
|
-
declare const ParameterShell: ({ label, labelLeadingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, hasOverriddenValue, onResetOverriddenValue, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22548
|
+
declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, hasOverriddenValue, onResetOverriddenValue, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21786
22549
|
declare const ParameterShellPlaceholder: ({ children }: {
|
|
21787
22550
|
children?: ReactNode;
|
|
21788
22551
|
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22552
|
+
/** @deprecated */
|
|
21789
22553
|
declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21790
22554
|
|
|
21791
22555
|
type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
@@ -21800,12 +22564,18 @@ declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParamet
|
|
|
21800
22564
|
/** @example <ParameterTextareaInner /> */
|
|
21801
22565
|
declare const ParameterTextareaInner: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
21802
22566
|
|
|
21803
|
-
type ParameterToggleProps = React.InputHTMLAttributes<HTMLInputElement> &
|
|
21804
|
-
|
|
22567
|
+
type ParameterToggleProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & CommonParameterInputProps & {
|
|
22568
|
+
type: 'checkbox' | 'radio';
|
|
21805
22569
|
};
|
|
21806
22570
|
/** @example <ParameterToggle title="my checkbox" label="label value" id="my-checkbox" type="checkbox" onIconClick={() => alert('icon clicked)} /> */
|
|
21807
|
-
declare const ParameterToggle: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement
|
|
21808
|
-
|
|
22571
|
+
declare const ParameterToggle: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & CommonParameterProps & {
|
|
22572
|
+
caption?: string | undefined;
|
|
22573
|
+
menuItems?: React$1.ReactNode;
|
|
22574
|
+
errorTestId?: string | undefined;
|
|
22575
|
+
captionTestId?: string | undefined;
|
|
22576
|
+
title?: string | undefined;
|
|
22577
|
+
} & {
|
|
22578
|
+
type: 'checkbox' | 'radio';
|
|
21809
22579
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
21810
22580
|
declare const ParameterToggleInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
21811
22581
|
|
|
@@ -21834,8 +22604,9 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
21834
22604
|
/** sets a test id for e2e tests */
|
|
21835
22605
|
testId?: string;
|
|
21836
22606
|
children: ReactNode;
|
|
22607
|
+
trigger?: ReactNode;
|
|
21837
22608
|
};
|
|
21838
|
-
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, children, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22609
|
+
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21839
22610
|
|
|
21840
22611
|
type ProgressListItemStatus = 'completed' | 'inProgress' | 'queued';
|
|
21841
22612
|
type ProgressListProps = React__default.HTMLAttributes<HTMLOListElement> & {
|
|
@@ -21877,7 +22648,7 @@ declare const ProgressListItem: ({ children, status, error, errorLevel, autoElli
|
|
|
21877
22648
|
type SegmentedControlOption<TValue extends string = string> = {
|
|
21878
22649
|
value: TValue;
|
|
21879
22650
|
label?: string;
|
|
21880
|
-
icon?: IconType
|
|
22651
|
+
icon?: IconType;
|
|
21881
22652
|
tooltip?: string;
|
|
21882
22653
|
disabled?: boolean;
|
|
21883
22654
|
};
|
|
@@ -22265,7 +23036,7 @@ type LinkManagerWithRefType = (props: Partial<LinkProps> & {
|
|
|
22265
23036
|
href: string;
|
|
22266
23037
|
passHref: true;
|
|
22267
23038
|
legacyBehavior?: boolean;
|
|
22268
|
-
} & React$1.RefAttributes<HTMLAnchorElement>) =>
|
|
23039
|
+
} & React$1.RefAttributes<HTMLAnchorElement>) => React$1.ReactNode | null;
|
|
22269
23040
|
/** Uniform LinkWithRef Component
|
|
22270
23041
|
* We recommend using this link `next/link`
|
|
22271
23042
|
* @example <LinkWithRef linkManagerComponent={NextLink} href="some-url" text="my link" />
|
|
@@ -22335,4 +23106,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
22335
23106
|
};
|
|
22336
23107
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22337
23108
|
|
|
22338
|
-
export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap,
|
|
23109
|
+
export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, 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, Chip, ChipProps, ChipTheme, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, DashedBoxProps, DescriptionList, DescriptionListProps, Details, DetailsProps, DismissibleChipAction, Drawer, DrawerContent, DrawerContentProps, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, DrawersRegistryRecord, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, HorizontalRhythm, 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, LabelLeadingIcon, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkNode, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, Modal, ModalProps, MultilineChip, MultilineChipProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextInnerProps, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, RichTextParamValue, RichTextToolbarIcon, ScrollableItemProps, ScrollableList, ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, SuccessMessage, SuccessMessageProps, 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, Tile, TileContainer, TileContainerProps, TileProps, TileText, TileTitleProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, UniformLogoProps, UseShortcutOptions, VerticalRhythm, WarningMessage, WarningMessageProps, accessibleHidden, borderTopIcon, breakpoints, button, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
|