@uniformdev/design-system 18.19.0 → 18.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +1105 -98
- package/dist/index.d.ts +306 -2
- package/dist/index.js +1131 -97
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { RefObject, ReactNode, HTMLAttributes } from 'react';
|
|
2
|
+
import React__default, { RefObject, ReactNode, HTMLAttributes, FocusEventHandler, ChangeEvent } 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';
|
|
@@ -1017,6 +1017,310 @@ declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) => _em
|
|
|
1017
1017
|
*/
|
|
1018
1018
|
declare const IntegrationModalHeader: ({ icon, name, menu, children }: IntegrationModalHeaderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1019
1019
|
|
|
1020
|
+
type ConnectToDataElementButtonProps = HTMLAttributes<HTMLButtonElement> & {
|
|
1021
|
+
icon?: IconType;
|
|
1022
|
+
iconColor?: IconColor;
|
|
1023
|
+
children?: ReactNode;
|
|
1024
|
+
isBound?: boolean;
|
|
1025
|
+
isLocked?: boolean;
|
|
1026
|
+
};
|
|
1027
|
+
declare const ConnectToDataElementButton: ({ icon, iconColor, children, isBound, isLocked, ...props }: ConnectToDataElementButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1028
|
+
|
|
1029
|
+
type CommonParameterProps = {
|
|
1030
|
+
/** sets the label value */
|
|
1031
|
+
label: string;
|
|
1032
|
+
/** (optional): allows user to pass a component within the label */
|
|
1033
|
+
labelLeadingIcon?: ReactNode;
|
|
1034
|
+
/** sets the value for label and id on the input field */
|
|
1035
|
+
id: string;
|
|
1036
|
+
/** (optional): hides the label, but set an aria-label on the input */
|
|
1037
|
+
hiddenLabel?: boolean;
|
|
1038
|
+
/** (optional) sets and shows the the error message value */
|
|
1039
|
+
errorMessage?: string;
|
|
1040
|
+
/** (optional) allows users to manually set the error message state */
|
|
1041
|
+
onManuallySetErrorMessage?: (message: string | undefined) => void;
|
|
1042
|
+
};
|
|
1043
|
+
type CommonParameterInputProps = CommonParameterProps & {
|
|
1044
|
+
/** (optional) sets caption text value */
|
|
1045
|
+
caption?: string;
|
|
1046
|
+
/** sets menu items within the design system component Menu */
|
|
1047
|
+
menuItems?: ReactNode;
|
|
1048
|
+
/** (option) sets validation message test id for test automation */
|
|
1049
|
+
errorTestId?: string;
|
|
1050
|
+
/** (option) sets caption message test id for test automation */
|
|
1051
|
+
captionTestId?: string;
|
|
1052
|
+
/** sets the label to a span with aria-labelledby attribute
|
|
1053
|
+
* recommended to be used with radio and checkbox inputs
|
|
1054
|
+
*/
|
|
1055
|
+
title?: string;
|
|
1056
|
+
/** sets whether to show the override UI */
|
|
1057
|
+
hasOverridingParams?: boolean;
|
|
1058
|
+
};
|
|
1059
|
+
type CommonOptionProps = Array<React.OptionHTMLAttributes<HTMLOptionElement> & {
|
|
1060
|
+
label: string;
|
|
1061
|
+
}>;
|
|
1062
|
+
type CommonParameterSelectProps = {
|
|
1063
|
+
/** (optional) sets the first item in the options list with empty value */
|
|
1064
|
+
defaultOption?: string;
|
|
1065
|
+
/** sets an array of select options with value and text value */
|
|
1066
|
+
options: CommonOptionProps;
|
|
1067
|
+
};
|
|
1068
|
+
|
|
1069
|
+
declare const ParameterShellContext: React$1.Context<CommonParameterProps>;
|
|
1070
|
+
declare const useParameterShell: () => {
|
|
1071
|
+
id: string;
|
|
1072
|
+
label: string;
|
|
1073
|
+
hiddenLabel: boolean | undefined;
|
|
1074
|
+
errorMessage: string | undefined;
|
|
1075
|
+
onManuallySetErrorMessage: ((message: string | undefined) => void) | undefined;
|
|
1076
|
+
};
|
|
1077
|
+
|
|
1078
|
+
type ParameterDataConnectButtonProps = {
|
|
1079
|
+
/** Sets the label value */
|
|
1080
|
+
label: string;
|
|
1081
|
+
/** sets the value for the aria-controls value, this should match the id of the controlled element */
|
|
1082
|
+
id: string;
|
|
1083
|
+
/** sets the button on click functionality */
|
|
1084
|
+
onConnectDatasource: () => void;
|
|
1085
|
+
/** sets the value inside the button element */
|
|
1086
|
+
children: ReactNode;
|
|
1087
|
+
/** (optional): allows user to pass a component within the label */
|
|
1088
|
+
labelLeadingIcon?: ReactNode;
|
|
1089
|
+
/** sets the help text */
|
|
1090
|
+
caption?: string;
|
|
1091
|
+
/** sets the disabled state of the button, useful for permissions */
|
|
1092
|
+
disabled?: boolean;
|
|
1093
|
+
};
|
|
1094
|
+
/** @example <ParameterDataConnectButton label="label" id="connect-data-button" onConnectDatasource={() => myFunction()}>Button Text</ParameterDataConnectButton> */
|
|
1095
|
+
declare function ParameterDataResource({ label, labelLeadingIcon, id, onConnectDatasource, caption, disabled, children, }: ParameterDataConnectButtonProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1096
|
+
|
|
1097
|
+
type ParameterDrawerHeaderProps = {
|
|
1098
|
+
title: string;
|
|
1099
|
+
iconBeforeTitle?: ReactNode;
|
|
1100
|
+
children?: ReactNode;
|
|
1101
|
+
};
|
|
1102
|
+
declare const ParameterDrawerHeader: ({ title, iconBeforeTitle, children }: ParameterDrawerHeaderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1103
|
+
|
|
1104
|
+
type ParameterGroupProps = React.HTMLAttributes<HTMLFieldSetElement> & {
|
|
1105
|
+
/** sets the legend value */
|
|
1106
|
+
legend: string;
|
|
1107
|
+
/** (optional) - sets a disabled attribute at the field level disabling all child input fields and buttons */
|
|
1108
|
+
isDisabled?: boolean;
|
|
1109
|
+
children: ReactNode;
|
|
1110
|
+
};
|
|
1111
|
+
/** @example <ParameterGroup legend="legend name">{...some form input elements}</ParameterGroup> */
|
|
1112
|
+
declare const ParameterGroup: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLFieldSetElement> & {
|
|
1113
|
+
/** sets the legend value */
|
|
1114
|
+
legend: string;
|
|
1115
|
+
/** (optional) - sets a disabled attribute at the field level disabling all child input fields and buttons */
|
|
1116
|
+
isDisabled?: boolean | undefined;
|
|
1117
|
+
children: ReactNode;
|
|
1118
|
+
} & React$1.RefAttributes<HTMLFieldSetElement>>;
|
|
1119
|
+
|
|
1120
|
+
type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'>;
|
|
1121
|
+
/** @Example <ParameterImage {...inputArgs} value={value} onChange={(e) => setValue(e.currentTarget.value)} /> */
|
|
1122
|
+
declare const ParameterImage: React$1.ForwardRefExoticComponent<ParameterImageProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1123
|
+
declare const ParameterImageInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1124
|
+
|
|
1125
|
+
type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
|
|
1126
|
+
/** @example <ParameterInput label="label value" id="my-input" /> */
|
|
1127
|
+
declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
1128
|
+
caption?: string | undefined;
|
|
1129
|
+
menuItems?: React$1.ReactNode;
|
|
1130
|
+
errorTestId?: string | undefined;
|
|
1131
|
+
captionTestId?: string | undefined;
|
|
1132
|
+
title?: string | undefined;
|
|
1133
|
+
hasOverridingParams?: boolean | undefined;
|
|
1134
|
+
} & React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1135
|
+
declare const ParameterInputInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1136
|
+
|
|
1137
|
+
type ParameterLabelProps = HTMLAttributes<HTMLLabelElement> & {
|
|
1138
|
+
/** sets the value for label and id on the input field */
|
|
1139
|
+
id: string;
|
|
1140
|
+
children: React.ReactNode;
|
|
1141
|
+
/** sets the label to use a span tag with aria-labelledby */
|
|
1142
|
+
asSpan?: boolean;
|
|
1143
|
+
};
|
|
1144
|
+
/** @example <ParameterLabel id="my-label">my label</ParameterLabel> */
|
|
1145
|
+
declare const ParameterLabel: ({ id, asSpan, children, ...props }: ParameterLabelProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1146
|
+
|
|
1147
|
+
type ParameterLinkProps = Omit<CommonParameterInputProps, 'menuItems' | 'labelLeadingIcon'> & React.InputHTMLAttributes<HTMLInputElement> & {
|
|
1148
|
+
/** (optional) sets the button text when value is empty
|
|
1149
|
+
* @default 'Configure link'
|
|
1150
|
+
*/
|
|
1151
|
+
buttonText?: string;
|
|
1152
|
+
/** sets the button function */
|
|
1153
|
+
onConnectLink: () => void;
|
|
1154
|
+
/** sets the disabled state of the button, useful for permissions */
|
|
1155
|
+
disabled?: boolean;
|
|
1156
|
+
externalLink?: string;
|
|
1157
|
+
};
|
|
1158
|
+
/** @example <ParameterLink label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
1159
|
+
declare const ParameterLink: React$1.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "menuItems" | "labelLeadingIcon"> & React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
1160
|
+
/** (optional) sets the button text when value is empty
|
|
1161
|
+
* @default 'Configure link'
|
|
1162
|
+
*/
|
|
1163
|
+
buttonText?: string | undefined;
|
|
1164
|
+
/** sets the button function */
|
|
1165
|
+
onConnectLink: () => void;
|
|
1166
|
+
/** sets the disabled state of the button, useful for permissions */
|
|
1167
|
+
disabled?: boolean | undefined;
|
|
1168
|
+
externalLink?: string | undefined;
|
|
1169
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
1170
|
+
declare const ParameterLinkInner: React$1.ForwardRefExoticComponent<Omit<ParameterLinkProps, "label" | "id"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1171
|
+
|
|
1172
|
+
type ParameterMenuButtonProps = {
|
|
1173
|
+
/** sets the legend value */
|
|
1174
|
+
label: string;
|
|
1175
|
+
children?: ReactNode;
|
|
1176
|
+
};
|
|
1177
|
+
/** @example <ParameterMenuButton label="label value"><MenuItem>menu option component</MenuItem></ParameterMenuButton> */
|
|
1178
|
+
declare const ParameterMenuButton: React$1.ForwardRefExoticComponent<ParameterMenuButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1179
|
+
|
|
1180
|
+
type ParameterNameAndPublicIdInputProps = {
|
|
1181
|
+
id?: undefined | string;
|
|
1182
|
+
/** sets the label for the name input field
|
|
1183
|
+
* @default 'name'
|
|
1184
|
+
*/
|
|
1185
|
+
label?: string;
|
|
1186
|
+
/** Force fields to be disabled (even if true, public ID is disabled if it has an initial value) */
|
|
1187
|
+
readOnly?: boolean;
|
|
1188
|
+
/** sets whether to show a warning callout if the text is over the allowed length */
|
|
1189
|
+
warnOverLength?: {
|
|
1190
|
+
length: number;
|
|
1191
|
+
message: string;
|
|
1192
|
+
};
|
|
1193
|
+
/** sets the name and id of the name input field
|
|
1194
|
+
* @defasult 'name
|
|
1195
|
+
*/
|
|
1196
|
+
nameIdField?: string;
|
|
1197
|
+
/** sets the caption / help text for the name input field */
|
|
1198
|
+
nameCaption?: string;
|
|
1199
|
+
/** sets the placeholder text for the name input field */
|
|
1200
|
+
namePlaceholderText?: string;
|
|
1201
|
+
/** sets the public id input name and id value
|
|
1202
|
+
* @default 'public_id'
|
|
1203
|
+
*/
|
|
1204
|
+
publicIdFieldName?: string;
|
|
1205
|
+
/** sets the caption / help text for the public id input field
|
|
1206
|
+
* @default 'This cannot change once created.'
|
|
1207
|
+
*/
|
|
1208
|
+
publicIdCaption?: string;
|
|
1209
|
+
/** sets the placeholder text for the public id input field */
|
|
1210
|
+
publicIdPlaceholderText?: string;
|
|
1211
|
+
/** sets the onBlur function call */
|
|
1212
|
+
onBlur?: FocusEventHandler;
|
|
1213
|
+
/** sets the onChange event for the name field */
|
|
1214
|
+
onNameChange: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1215
|
+
/** sets the error message for the name field */
|
|
1216
|
+
nameIdError?: string;
|
|
1217
|
+
/** sets the onChange event for the public id field */
|
|
1218
|
+
onPublicIdChange: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
1219
|
+
/** sets the error message for the public id field */
|
|
1220
|
+
publicIdError?: string;
|
|
1221
|
+
/** allows additional auto focus hooks */
|
|
1222
|
+
autoFocus?: () => void;
|
|
1223
|
+
/** list of current values */
|
|
1224
|
+
values: Record<string, string>;
|
|
1225
|
+
/** sets whether the public id field has an initial value */
|
|
1226
|
+
hasInitialPublicIdField?: boolean;
|
|
1227
|
+
};
|
|
1228
|
+
/** @example <ParameterNameAndPublicIdInput /> */
|
|
1229
|
+
declare const ParameterNameAndPublicIdInput: ({ id, onBlur, autoFocus, onNameChange, onPublicIdChange, nameIdError, publicIdError, readOnly, hasInitialPublicIdField, label, warnOverLength, nameIdField, nameCaption, namePlaceholderText, publicIdFieldName, publicIdCaption, publicIdPlaceholderText, values, }: ParameterNameAndPublicIdInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1230
|
+
|
|
1231
|
+
type ParameterRichTextProps = React.InputHTMLAttributes<HTMLTextAreaElement> & CommonParameterInputProps;
|
|
1232
|
+
/** @todo this is a work in progress at the moment as we do not have a RTE type in canvas */
|
|
1233
|
+
declare const ParameterRichText: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLTextAreaElement> & CommonParameterProps & {
|
|
1234
|
+
caption?: string | undefined;
|
|
1235
|
+
menuItems?: React$1.ReactNode;
|
|
1236
|
+
errorTestId?: string | undefined;
|
|
1237
|
+
captionTestId?: string | undefined;
|
|
1238
|
+
title?: string | undefined;
|
|
1239
|
+
hasOverridingParams?: boolean | undefined;
|
|
1240
|
+
} & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
1241
|
+
declare const ParameterRichTextInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
1242
|
+
|
|
1243
|
+
type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectProps & React.InputHTMLAttributes<HTMLSelectElement>;
|
|
1244
|
+
/** @example <ParameterSelect label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
1245
|
+
declare const ParameterSelect: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
1246
|
+
caption?: string | undefined;
|
|
1247
|
+
menuItems?: React$1.ReactNode;
|
|
1248
|
+
errorTestId?: string | undefined;
|
|
1249
|
+
captionTestId?: string | undefined;
|
|
1250
|
+
title?: string | undefined;
|
|
1251
|
+
hasOverridingParams?: boolean | undefined;
|
|
1252
|
+
} & CommonParameterSelectProps & React$1.InputHTMLAttributes<HTMLSelectElement> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
1253
|
+
/** @example <ParameterSelectInner options={[{ label: 'option label', value: 0}]} />*/
|
|
1254
|
+
declare const ParameterSelectInner: React$1.ForwardRefExoticComponent<Omit<ParameterSelectProps, "label" | "id"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
1255
|
+
|
|
1256
|
+
/** A function that extracts all common props and element props
|
|
1257
|
+
* @example const { shellProps, innerProps } = extractParameterProps(props) */
|
|
1258
|
+
declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
|
|
1259
|
+
caption?: string | undefined;
|
|
1260
|
+
menuItems?: React$1.ReactNode;
|
|
1261
|
+
errorTestId?: string | undefined;
|
|
1262
|
+
captionTestId?: string | undefined;
|
|
1263
|
+
title?: string | undefined;
|
|
1264
|
+
hasOverridingParams?: boolean | undefined;
|
|
1265
|
+
}) => {
|
|
1266
|
+
shellProps: {
|
|
1267
|
+
id: string;
|
|
1268
|
+
label: string;
|
|
1269
|
+
caption: string | undefined;
|
|
1270
|
+
captionTestId: string | undefined;
|
|
1271
|
+
errorMessage: string | undefined;
|
|
1272
|
+
errorTestId: string | undefined;
|
|
1273
|
+
hiddenLabel: boolean | undefined;
|
|
1274
|
+
labelLeadingIcon: React$1.ReactNode;
|
|
1275
|
+
menuItems: React$1.ReactNode;
|
|
1276
|
+
onManuallySetErrorMessage: ((message: string | undefined) => void) | undefined;
|
|
1277
|
+
title: string | undefined;
|
|
1278
|
+
hasOverridingParams: boolean | undefined;
|
|
1279
|
+
};
|
|
1280
|
+
innerProps: Omit<T & CommonParameterProps & {
|
|
1281
|
+
caption?: string | undefined;
|
|
1282
|
+
menuItems?: React$1.ReactNode;
|
|
1283
|
+
errorTestId?: string | undefined;
|
|
1284
|
+
captionTestId?: string | undefined;
|
|
1285
|
+
title?: string | undefined;
|
|
1286
|
+
hasOverridingParams?: boolean | undefined;
|
|
1287
|
+
}, "caption" | "label" | "title" | "id" | "menuItems" | "errorMessage" | "errorTestId" | "captionTestId" | "hiddenLabel" | "onManuallySetErrorMessage" | "labelLeadingIcon" | "hasOverridingParams">;
|
|
1288
|
+
};
|
|
1289
|
+
type ParameterShellOverrideProps = {
|
|
1290
|
+
/** sets overriding parameters indicator */
|
|
1291
|
+
hasOverridingParams?: boolean;
|
|
1292
|
+
};
|
|
1293
|
+
type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonParameterInputProps & ParameterShellOverrideProps;
|
|
1294
|
+
/**
|
|
1295
|
+
* Uniform Parameter shell component
|
|
1296
|
+
* @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
|
|
1297
|
+
*/
|
|
1298
|
+
declare const ParameterShell: ({ label, labelLeadingIcon, hiddenLabel, id, errorMessage, caption, errorTestId, captionTestId, menuItems, hasOverridingParams, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1299
|
+
declare const ParameterShellPlaceholder: ({ hasOverridingParams }: ParameterShellOverrideProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1300
|
+
declare const ParameterOverrideMarker: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1301
|
+
|
|
1302
|
+
type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
1303
|
+
/** @example <ParameterTextarea label="label value" id="my-textarea" /> */
|
|
1304
|
+
declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
1305
|
+
caption?: string | undefined;
|
|
1306
|
+
menuItems?: React$1.ReactNode;
|
|
1307
|
+
errorTestId?: string | undefined;
|
|
1308
|
+
captionTestId?: string | undefined;
|
|
1309
|
+
title?: string | undefined;
|
|
1310
|
+
hasOverridingParams?: boolean | undefined;
|
|
1311
|
+
} & React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
1312
|
+
/** @example <ParameterTextareaInner /> */
|
|
1313
|
+
declare const ParameterTextareaInner: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
1314
|
+
|
|
1315
|
+
type ParameterToggleProps = React.InputHTMLAttributes<HTMLInputElement> & Omit<CommonParameterInputProps, 'hiddenLabel'> & {
|
|
1316
|
+
hiddenTitle?: boolean;
|
|
1317
|
+
};
|
|
1318
|
+
/** @example <ParameterToggle title="my checkbox" label="label value" id="my-checkbox" type="checkbox" onIconClick={() => alert('icon clicked)} /> */
|
|
1319
|
+
declare const ParameterToggle: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & Omit<CommonParameterInputProps, "hiddenLabel"> & {
|
|
1320
|
+
hiddenTitle?: boolean | undefined;
|
|
1321
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
1322
|
+
declare const ParameterToggleInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
1323
|
+
|
|
1020
1324
|
declare function ShortcutContext({ children }: {
|
|
1021
1325
|
children: React__default.ReactNode;
|
|
1022
1326
|
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
@@ -1394,4 +1698,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
1394
1698
|
};
|
|
1395
1699
|
declare const StatusBullet: ({ status, hideText, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1396
1700
|
|
|
1397
|
-
export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Badge, BadgeProps, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, ComboBoxGroupBase, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, Details, DetailsProps, Drawer, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, Label, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkProps, LinkWithRef, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, LottieFile, LottieFileKeyProps, LottieFileProps, Menu, MenuContext, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, ScrollableItemProps, ScrollableList, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, Tooltip, TooltipProps, UniformBadge, UniformLogo, UniformLogoProps, UseShortcutOptions, WarningMessage, WarningMessageProps, breakpoints, button, buttonGhost, buttonGhostDestructive, buttonPrimary, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonUnimportant, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, growSubtle, input, inputError, inputSelect, isMacLike, labelText, macifyShortcut, mq, ripple, scrollbarStyles, skeletonLoading, supports, useBreakpoint, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useShortcut };
|
|
1701
|
+
export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Badge, BadgeProps, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, Details, DetailsProps, Drawer, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, Label, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkProps, LinkWithRef, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, LottieFile, LottieFileKeyProps, LottieFileProps, Menu, MenuContext, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, ScrollableItemProps, ScrollableList, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, Tooltip, TooltipProps, UniformBadge, UniformLogo, UniformLogoProps, UseShortcutOptions, WarningMessage, WarningMessageProps, breakpoints, button, buttonGhost, buttonGhostDestructive, buttonPrimary, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonUnimportant, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, growSubtle, input, inputError, inputSelect, isMacLike, labelText, macifyShortcut, mq, ripple, scrollbarStyles, skeletonLoading, supports, useBreakpoint, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut };
|