@galaxy-ds/core 2.1.9 → 2.1.10

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.
Files changed (37) hide show
  1. package/dist/AccordionPanel/AccordionPanel.stories.d.ts +296 -0
  2. package/dist/AccordionSummary/AccordionSummary.stories.d.ts +602 -14
  3. package/dist/AccordionSummary/AccordionSummary.types.d.ts +1 -0
  4. package/dist/Alert/Alert.d.ts +3 -0
  5. package/dist/Alert/Alert.stories.d.ts +1523 -0
  6. package/dist/Alert/Alert.styled.d.ts +7 -0
  7. package/dist/Alert/Alert.types.d.ts +12 -0
  8. package/dist/Autocomplete/Autocomplete.stories.d.ts +359 -0
  9. package/dist/FormBody/FormBody.stories.d.ts +11 -0
  10. package/dist/FormGroup/FormGroup.stories.d.ts +6 -0
  11. package/dist/Icons/gui/icons.d.ts +102 -0
  12. package/dist/Icons/gui-icons.stories.d.ts +1020 -0
  13. package/dist/Icons/leap/ChevronCircleRight16.d.ts +2 -0
  14. package/dist/Icons/leap/ChevronCircleRight20.d.ts +2 -0
  15. package/dist/Icons/leap/ChevronCircleRight24.d.ts +2 -0
  16. package/dist/Icons/leap/Info11.d.ts +2 -0
  17. package/dist/Icons/leap/Info13.d.ts +2 -0
  18. package/dist/Icons/leap/Info15.d.ts +2 -0
  19. package/dist/Icons/leap/Info20.d.ts +2 -0
  20. package/dist/Icons/leap/WindowsSettings16.d.ts +2 -0
  21. package/dist/Icons/leap/icons.d.ts +9 -1
  22. package/dist/Icons/leap/index.d.ts +8 -0
  23. package/dist/Input/Input.stories.d.ts +188 -58
  24. package/dist/Input/support/InlineUtilityExamples.d.ts +1 -0
  25. package/dist/Input/support/InlineUtilityWebExamples.d.ts +1 -0
  26. package/dist/Input/support/InputUtilityChildrenExamples.d.ts +3 -0
  27. package/dist/Input/support/InputUtilityChildrenWebExamples.d.ts +3 -0
  28. package/dist/Input/support/InputUtilityExample.d.ts +11 -0
  29. package/dist/Input/support/InputUtilityWebExample.d.ts +11 -0
  30. package/dist/InputLabel/InputLabel.stories.d.ts +11 -0
  31. package/dist/StickyLayout/StickyLayout.stories.d.ts +6 -0
  32. package/dist/Switch/Switch.stories.d.ts +1 -0
  33. package/dist/index.esm.js +51 -9
  34. package/dist/index.esm.js.map +1 -1
  35. package/dist/index.js +58 -8
  36. package/dist/index.js.map +1 -1
  37. package/package.json +2 -2
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ export declare const AlertStyled: import("@emotion/styled").StyledComponent<import("@mui/material").AlertProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
3
+ message?: string | undefined;
4
+ }, {}, {}>;
5
+ export declare const AlertToolTipContentStyled: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
6
+ message?: string | undefined;
7
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { AlertProps as MuiAlertProps } from '@mui/material';
3
+ export interface AlertProps extends MuiAlertProps {
4
+ icon?: React.ReactNode;
5
+ title?: string;
6
+ description?: React.ReactNode;
7
+ /**
8
+ * Message can be single line or run by default on multi lines
9
+ */
10
+ message?: 'singleline';
11
+ tooltipMessage?: string;
12
+ }
@@ -1198,6 +1198,365 @@ export declare const Default: {
1198
1198
  selectOnFocus?: boolean | undefined;
1199
1199
  }) => import("react/jsx-runtime").JSX.Element;
1200
1200
  };
1201
+ export declare const Clearable: {
1202
+ args: {
1203
+ options: string[];
1204
+ disableClearable: false;
1205
+ };
1206
+ render: (args: {
1207
+ actionLabel?: string | undefined;
1208
+ bottomButtonHeight?: number | undefined;
1209
+ actionClick?: ((e: import("react").MouseEvent<Element, MouseEvent>) => void) | undefined;
1210
+ label?: string | undefined;
1211
+ placeholder?: string | undefined;
1212
+ platform?: "desktop" | "web" | undefined;
1213
+ renderInput?: ((params: import("@mui/material").AutocompleteRenderInputParams) => import("react").ReactNode) | undefined;
1214
+ classes?: Partial<import("@mui/material").AutocompleteClasses> | undefined;
1215
+ ref?: import("react").Ref<unknown> | undefined;
1216
+ className?: string | undefined;
1217
+ style?: import("react").CSSProperties | undefined;
1218
+ color?: string | undefined;
1219
+ sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
1220
+ slot?: string | undefined;
1221
+ title?: string | undefined;
1222
+ suppressHydrationWarning?: boolean | undefined;
1223
+ id?: string | undefined;
1224
+ lang?: string | undefined;
1225
+ role?: import("react").AriaRole | undefined;
1226
+ tabIndex?: number | undefined;
1227
+ "aria-activedescendant"?: string | undefined;
1228
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
1229
+ "aria-autocomplete"?: "none" | "inline" | "both" | "list" | undefined;
1230
+ "aria-braillelabel"?: string | undefined;
1231
+ "aria-brailleroledescription"?: string | undefined;
1232
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
1233
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
1234
+ "aria-colcount"?: number | undefined;
1235
+ "aria-colindex"?: number | undefined;
1236
+ "aria-colindextext"?: string | undefined;
1237
+ "aria-colspan"?: number | undefined;
1238
+ "aria-controls"?: string | undefined;
1239
+ "aria-current"?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
1240
+ "aria-describedby"?: string | undefined;
1241
+ "aria-description"?: string | undefined;
1242
+ "aria-details"?: string | undefined;
1243
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
1244
+ "aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
1245
+ "aria-errormessage"?: string | undefined;
1246
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
1247
+ "aria-flowto"?: string | undefined;
1248
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
1249
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
1250
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
1251
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
1252
+ "aria-keyshortcuts"?: string | undefined;
1253
+ "aria-label"?: string | undefined;
1254
+ "aria-labelledby"?: string | undefined;
1255
+ "aria-level"?: number | undefined;
1256
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
1257
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
1258
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
1259
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
1260
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
1261
+ "aria-owns"?: string | undefined;
1262
+ "aria-placeholder"?: string | undefined;
1263
+ "aria-posinset"?: number | undefined;
1264
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
1265
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
1266
+ "aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
1267
+ "aria-required"?: (boolean | "false" | "true") | undefined;
1268
+ "aria-roledescription"?: string | undefined;
1269
+ "aria-rowcount"?: number | undefined;
1270
+ "aria-rowindex"?: number | undefined;
1271
+ "aria-rowindextext"?: string | undefined;
1272
+ "aria-rowspan"?: number | undefined;
1273
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
1274
+ "aria-setsize"?: number | undefined;
1275
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
1276
+ "aria-valuemax"?: number | undefined;
1277
+ "aria-valuemin"?: number | undefined;
1278
+ "aria-valuenow"?: number | undefined;
1279
+ "aria-valuetext"?: string | undefined;
1280
+ dangerouslySetInnerHTML?: {
1281
+ __html: string | TrustedHTML;
1282
+ } | undefined;
1283
+ onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
1284
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
1285
+ onCut?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
1286
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
1287
+ onPaste?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
1288
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
1289
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
1290
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
1291
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
1292
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
1293
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
1294
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
1295
+ onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
1296
+ onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
1297
+ onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
1298
+ onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
1299
+ onChange?: ((event: import("react").SyntheticEvent<Element, Event>, value: any, reason: import("@mui/material").AutocompleteChangeReason, details?: import("@mui/material").AutocompleteChangeDetails<any> | undefined) => void) | undefined;
1300
+ onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1301
+ onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1302
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1303
+ onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1304
+ onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1305
+ onReset?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1306
+ onResetCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1307
+ onSubmit?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1308
+ onSubmitCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1309
+ onInvalid?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1310
+ onInvalidCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
1311
+ onLoad?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1312
+ onLoadCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1313
+ onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1314
+ onErrorCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1315
+ onKeyDown?: ((event: import("react").KeyboardEvent<HTMLDivElement> & {
1316
+ defaultMuiPrevented?: boolean | undefined;
1317
+ }) => void) | undefined;
1318
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
1319
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
1320
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
1321
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
1322
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
1323
+ onAbort?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1324
+ onAbortCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1325
+ onCanPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1326
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1327
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1328
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1329
+ onDurationChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1330
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1331
+ onEmptied?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1332
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1333
+ onEncrypted?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1334
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1335
+ onEnded?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1336
+ onEndedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1337
+ onLoadedData?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1338
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1339
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1340
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1341
+ onLoadStart?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1342
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1343
+ onPause?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1344
+ onPauseCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1345
+ onPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1346
+ onPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1347
+ onPlaying?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1348
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1349
+ onProgress?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1350
+ onProgressCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1351
+ onRateChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1352
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1353
+ onResize?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1354
+ onResizeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1355
+ onSeeked?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1356
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1357
+ onSeeking?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1358
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1359
+ onStalled?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1360
+ onStalledCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1361
+ onSuspend?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1362
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1363
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1364
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1365
+ onVolumeChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1366
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1367
+ onWaiting?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1368
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1369
+ onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1370
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1371
+ onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1372
+ onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1373
+ onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1374
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1375
+ onDoubleClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1376
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1377
+ onDrag?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1378
+ onDragCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1379
+ onDragEnd?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1380
+ onDragEndCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1381
+ onDragEnter?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1382
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1383
+ onDragExit?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1384
+ onDragExitCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1385
+ onDragLeave?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1386
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1387
+ onDragOver?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1388
+ onDragOverCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1389
+ onDragStart?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1390
+ onDragStartCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1391
+ onDrop?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1392
+ onDropCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
1393
+ onMouseDown?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1394
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1395
+ onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1396
+ onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1397
+ onMouseMove?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1398
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1399
+ onMouseOut?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1400
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1401
+ onMouseOver?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1402
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1403
+ onMouseUp?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1404
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
1405
+ onSelect?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1406
+ onSelectCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
1407
+ onTouchCancel?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
1408
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
1409
+ onTouchEnd?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
1410
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
1411
+ onTouchMove?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
1412
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
1413
+ onTouchStart?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
1414
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
1415
+ onPointerDown?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1416
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1417
+ onPointerMove?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1418
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1419
+ onPointerUp?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1420
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1421
+ onPointerCancel?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1422
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1423
+ onPointerEnter?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1424
+ onPointerLeave?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1425
+ onPointerOver?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1426
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1427
+ onPointerOut?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1428
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1429
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1430
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1431
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1432
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
1433
+ onScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
1434
+ onScrollCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
1435
+ onWheel?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
1436
+ onWheelCapture?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
1437
+ onAnimationStart?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
1438
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
1439
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
1440
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
1441
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
1442
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
1443
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
1444
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
1445
+ disabled?: boolean | undefined;
1446
+ content?: string | undefined;
1447
+ translate?: "yes" | "no" | undefined;
1448
+ slotProps?: {
1449
+ clearIndicator?: Partial<import("@mui/material").IconButtonProps> | undefined;
1450
+ paper?: import("@mui/material").PaperProps | undefined;
1451
+ popper?: Partial<import("@mui/material").PopperProps> | undefined;
1452
+ popupIndicator?: Partial<import("@mui/material").IconButtonProps> | undefined;
1453
+ } | undefined;
1454
+ defaultChecked?: boolean | undefined;
1455
+ defaultValue?: any;
1456
+ suppressContentEditableWarning?: boolean | undefined;
1457
+ accessKey?: string | undefined;
1458
+ autoFocus?: boolean | undefined;
1459
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
1460
+ contextMenu?: string | undefined;
1461
+ dir?: string | undefined;
1462
+ draggable?: (boolean | "false" | "true") | undefined;
1463
+ hidden?: boolean | undefined;
1464
+ nonce?: string | undefined;
1465
+ spellCheck?: (boolean | "false" | "true") | undefined;
1466
+ radioGroup?: string | undefined;
1467
+ about?: string | undefined;
1468
+ datatype?: string | undefined;
1469
+ inlist?: any;
1470
+ prefix?: string | undefined;
1471
+ property?: string | undefined;
1472
+ rel?: string | undefined;
1473
+ resource?: string | undefined;
1474
+ rev?: string | undefined;
1475
+ typeof?: string | undefined;
1476
+ vocab?: string | undefined;
1477
+ autoCapitalize?: string | undefined;
1478
+ autoCorrect?: string | undefined;
1479
+ autoSave?: string | undefined;
1480
+ itemProp?: string | undefined;
1481
+ itemScope?: boolean | undefined;
1482
+ itemType?: string | undefined;
1483
+ itemID?: string | undefined;
1484
+ itemRef?: string | undefined;
1485
+ results?: number | undefined;
1486
+ security?: string | undefined;
1487
+ unselectable?: "off" | "on" | undefined;
1488
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1489
+ is?: string | undefined;
1490
+ fullWidth?: boolean | undefined;
1491
+ loading?: boolean | undefined;
1492
+ value?: any;
1493
+ readOnly?: boolean | undefined;
1494
+ componentsProps?: {
1495
+ clearIndicator?: Partial<import("@mui/material").IconButtonProps> | undefined;
1496
+ paper?: import("@mui/material").PaperProps | undefined;
1497
+ popper?: Partial<import("@mui/material").PopperProps> | undefined;
1498
+ popupIndicator?: Partial<import("@mui/material").IconButtonProps> | undefined;
1499
+ } | undefined;
1500
+ disablePortal?: boolean | undefined;
1501
+ onClose?: ((event: import("react").SyntheticEvent<Element, Event>, reason: import("@mui/material").AutocompleteCloseReason) => void) | undefined;
1502
+ open?: boolean | undefined;
1503
+ size?: import("@mui/types").OverridableStringUnion<"small" | "medium", import("@mui/material").AutocompletePropsSizeOverrides> | undefined;
1504
+ multiple?: boolean | undefined;
1505
+ autoComplete?: boolean | undefined;
1506
+ options: readonly any[];
1507
+ disabledItemsFocusable?: boolean | undefined;
1508
+ disableListWrap?: boolean | undefined;
1509
+ onOpen?: ((event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
1510
+ PopperComponent?: import("react").JSXElementConstructor<import("@mui/material").PopperProps> | undefined;
1511
+ ChipProps?: import("@mui/material").ChipProps<"div"> | undefined;
1512
+ clearIcon?: import("react").ReactNode;
1513
+ clearText?: string | undefined;
1514
+ closeText?: string | undefined;
1515
+ forcePopupIcon?: boolean | "auto" | undefined;
1516
+ getLimitTagsText?: ((more: number) => import("react").ReactNode) | undefined;
1517
+ ListboxComponent?: import("react").JSXElementConstructor<import("react").HTMLAttributes<HTMLElement>> | undefined;
1518
+ ListboxProps?: (import("react").HTMLAttributes<HTMLUListElement> & {
1519
+ sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
1520
+ ref?: import("react").Ref<Element> | undefined;
1521
+ }) | undefined;
1522
+ loadingText?: import("react").ReactNode;
1523
+ limitTags?: number | undefined;
1524
+ noOptionsText?: import("react").ReactNode;
1525
+ openText?: string | undefined;
1526
+ PaperComponent?: import("react").JSXElementConstructor<import("react").HTMLAttributes<HTMLElement>> | undefined;
1527
+ popupIcon?: import("react").ReactNode;
1528
+ renderGroup?: ((params: import("@mui/material").AutocompleteRenderGroupParams) => import("react").ReactNode) | undefined;
1529
+ renderOption?: ((props: import("react").HTMLAttributes<HTMLLIElement> & {
1530
+ key: any;
1531
+ }, option: any, state: import("@mui/material").AutocompleteRenderOptionState, ownerState: import("@mui/material").AutocompleteOwnerState<any, boolean, boolean, boolean, "div">) => import("react").ReactNode) | undefined;
1532
+ renderTags?: ((value: any[], getTagProps: import("@mui/material").AutocompleteRenderGetTagProps, ownerState: import("@mui/material").AutocompleteOwnerState<any, boolean, boolean, boolean, "div">) => import("react").ReactNode) | undefined;
1533
+ unstable_classNamePrefix?: string | undefined;
1534
+ unstable_isActiveElementInListbox?: ((listbox: import("react").RefObject<HTMLElement>) => boolean) | undefined;
1535
+ autoHighlight?: boolean | undefined;
1536
+ autoSelect?: boolean | undefined;
1537
+ blurOnSelect?: boolean | "touch" | "mouse" | undefined;
1538
+ clearOnBlur?: boolean | undefined;
1539
+ clearOnEscape?: boolean | undefined;
1540
+ componentName?: string | undefined;
1541
+ disableClearable?: boolean | undefined;
1542
+ disableCloseOnSelect?: boolean | undefined;
1543
+ filterOptions?: ((options: any[], state: import("@mui/material").FilterOptionsState<any>) => any[]) | undefined;
1544
+ filterSelectedOptions?: boolean | undefined;
1545
+ freeSolo?: boolean | undefined;
1546
+ getOptionDisabled?: ((option: any) => boolean) | undefined;
1547
+ getOptionKey?: ((option: any) => string | number) | undefined;
1548
+ getOptionLabel?: ((option: any) => string) | undefined;
1549
+ groupBy?: ((option: any) => string) | undefined;
1550
+ handleHomeEndKeys?: boolean | undefined;
1551
+ includeInputInList?: boolean | undefined;
1552
+ inputValue?: string | undefined;
1553
+ isOptionEqualToValue?: ((option: any, value: any) => boolean) | undefined;
1554
+ onHighlightChange?: ((event: import("react").SyntheticEvent<Element, Event>, option: any, reason: import("@mui/material").AutocompleteHighlightChangeReason) => void) | undefined;
1555
+ onInputChange?: ((event: import("react").SyntheticEvent<Element, Event>, value: string, reason: import("@mui/material").AutocompleteInputChangeReason) => void) | undefined;
1556
+ openOnFocus?: boolean | undefined;
1557
+ selectOnFocus?: boolean | undefined;
1558
+ }) => import("react/jsx-runtime").JSX.Element;
1559
+ };
1201
1560
  export declare const Multiple: {
1202
1561
  args: {
1203
1562
  options: string[];
@@ -34,3 +34,14 @@ export declare const Default: {
34
34
  bg?: string | undefined;
35
35
  }) => import("react/jsx-runtime").JSX.Element;
36
36
  };
37
+ export declare const Inline: {
38
+ args: {};
39
+ render: (args: {
40
+ children?: import("react").ReactNode;
41
+ mt?: number | undefined;
42
+ mb?: number | undefined;
43
+ px?: number | undefined;
44
+ py?: number | undefined;
45
+ bg?: string | undefined;
46
+ }) => import("react/jsx-runtime").JSX.Element;
47
+ };
@@ -594,6 +594,12 @@ export declare const Spacing: {
594
594
  ref?: import("react").Ref<unknown> | undefined;
595
595
  }) => import("react/jsx-runtime").JSX.Element;
596
596
  };
597
+ /**
598
+ *
599
+ * Note: Multiline inputs that contain `rows`, `minRows` or `maxRows` will need a container targeting the input width.
600
+ *
601
+ * Alternatively use `inputPropStyles` to override styles.
602
+ */
597
603
  export declare const Alignment: {
598
604
  args: {};
599
605
  parameters: {
@@ -0,0 +1,102 @@
1
+ import { GuiSasAddDocument, GuiSasAddMenu, GuiSasAgreement, GuiSasAppportionableItems, GuiSasCourt, GuiSasDischargeMortgage, GuiSasLegal, GuiSasLicense, GuiSasSettlement, GuiSasSign, GuiSasTime, GuiSasUnpaid, GuiSasUnsupportedDocument, GuiSasUpdateDocument, GuiSasWaterRates, GuiSasWaterUsage, GuiSasWelcome, GuiTwoToneApps, GuiTwoToneArrowDown, GuiTwoToneArrowDownCircle, GuiTwoToneArrowLeft, GuiTwoToneArrowLeftCircle, GuiTwoToneArrowRight, GuiTwoToneArrowRightCircle, GuiTwoToneArrowRightCircle16, GuiTwoToneArrowUp, GuiTwoToneArrowUpCircle, GuiTwoToneAttachments, GuiTwoToneBack, GuiTwoToneBackToBottom, GuiTwoToneBackToTop, GuiTwoToneBin, GuiTwoToneBusiness, GuiTwoToneCalculator, GuiTwoToneCalendar, GuiTwoToneCases, GuiTwoToneCity, GuiTwoToneClose, GuiTwoToneCollapse, GuiTwoToneCollapseMenu, GuiTwoToneComment, GuiTwoToneContacts, GuiTwoToneCorrespondence, GuiTwoToneCreditcard, GuiTwoToneDesktop, GuiTwoToneDownload, GuiTwoToneDownloadDocument, GuiTwoToneEdit, GuiTwoToneErrorCircle, GuiTwoToneExpand, GuiTwoToneExpandMenu, GuiTwoToneFeedback, GuiTwoToneFiles, GuiTwoToneFilter, GuiTwoToneFirms, GuiTwoToneFolder, GuiTwoToneGrid, GuiTwoToneInfoCircle, GuiTwoToneInstances, GuiTwoToneKebabHorizontal, GuiTwoToneKebabLoader, GuiTwoToneKebabVertical, GuiTwoToneList, GuiTwoToneLocation, GuiTwoToneMarketplace, GuiTwoToneMatters, GuiTwoToneMenu, GuiTwoToneMinusCircle, GuiTwoToneMobile, GuiTwoToneMore, GuiTwoToneOpenExternal, GuiTwoTonePanelToggle, GuiTwoTonePercentage, GuiTwoTonePlusCircle, GuiTwoTonePoint, GuiTwoTonePrinter, GuiTwoToneProduct, GuiTwoToneRecent, GuiTwoToneReply, GuiTwoToneReset, GuiTwoToneResources, GuiTwoToneSearch, GuiTwoToneSettings, GuiTwoToneSignature, GuiTwoToneSort, GuiTwoToneSpinner, GuiTwoToneSubscriptions, GuiTwoToneSupport, GuiTwoToneTick, GuiTwoToneTickCircle, GuiTwoToneTime, GuiTwoToneUpload, GuiTwoToneUsers, GuiTwoToneUsersOutline, GuiTwoToneWarningOutline, GuiTwoToneWater, GuiTwoToneWeb } from '@galaxy-ds/icons';
2
+ export declare const GuiTwoToneIcons: {
3
+ GuiTwoToneApps: typeof GuiTwoToneApps;
4
+ GuiTwoToneArrowDown: typeof GuiTwoToneArrowDown;
5
+ GuiTwoToneArrowDownCircle: typeof GuiTwoToneArrowDownCircle;
6
+ GuiTwoToneArrowLeft: typeof GuiTwoToneArrowLeft;
7
+ GuiTwoToneArrowLeftCircle: typeof GuiTwoToneArrowLeftCircle;
8
+ GuiTwoToneArrowRight: typeof GuiTwoToneArrowRight;
9
+ GuiTwoToneArrowRightCircle: typeof GuiTwoToneArrowRightCircle;
10
+ GuiTwoToneArrowRightCircle16: typeof GuiTwoToneArrowRightCircle16;
11
+ GuiTwoToneArrowUp: typeof GuiTwoToneArrowUp;
12
+ GuiTwoToneArrowUpCircle: typeof GuiTwoToneArrowUpCircle;
13
+ GuiTwoToneAttachments: typeof GuiTwoToneAttachments;
14
+ GuiTwoToneBack: typeof GuiTwoToneBack;
15
+ GuiTwoToneBackToBottom: typeof GuiTwoToneBackToBottom;
16
+ GuiTwoToneBackToTop: typeof GuiTwoToneBackToTop;
17
+ GuiTwoToneBin: typeof GuiTwoToneBin;
18
+ GuiTwoToneBusiness: typeof GuiTwoToneBusiness;
19
+ GuiTwoToneCalculator: typeof GuiTwoToneCalculator;
20
+ GuiTwoToneCalendar: typeof GuiTwoToneCalendar;
21
+ GuiTwoToneCases: typeof GuiTwoToneCases;
22
+ GuiTwoToneCity: typeof GuiTwoToneCity;
23
+ GuiTwoToneClose: typeof GuiTwoToneClose;
24
+ GuiTwoToneCollapse: typeof GuiTwoToneCollapse;
25
+ GuiTwoToneCollapseMenu: typeof GuiTwoToneCollapseMenu;
26
+ GuiTwoToneComment: typeof GuiTwoToneComment;
27
+ GuiTwoToneContacts: typeof GuiTwoToneContacts;
28
+ GuiTwoToneCorrespondence: typeof GuiTwoToneCorrespondence;
29
+ GuiTwoToneCreditcard: typeof GuiTwoToneCreditcard;
30
+ GuiTwoToneDesktop: typeof GuiTwoToneDesktop;
31
+ GuiTwoToneDownload: typeof GuiTwoToneDownload;
32
+ GuiTwoToneDownloadDocument: typeof GuiTwoToneDownloadDocument;
33
+ GuiTwoToneEdit: typeof GuiTwoToneEdit;
34
+ GuiTwoToneErrorCircle: typeof GuiTwoToneErrorCircle;
35
+ GuiTwoToneExpand: typeof GuiTwoToneExpand;
36
+ GuiTwoToneExpandMenu: typeof GuiTwoToneExpandMenu;
37
+ GuiTwoToneFeedback: typeof GuiTwoToneFeedback;
38
+ GuiTwoToneFiles: typeof GuiTwoToneFiles;
39
+ GuiTwoToneFilter: typeof GuiTwoToneFilter;
40
+ GuiTwoToneFirms: typeof GuiTwoToneFirms;
41
+ GuiTwoToneFolder: typeof GuiTwoToneFolder;
42
+ GuiTwoToneGrid: typeof GuiTwoToneGrid;
43
+ GuiTwoToneInfoCircle: typeof GuiTwoToneInfoCircle;
44
+ GuiTwoToneInstances: typeof GuiTwoToneInstances;
45
+ GuiTwoToneKebabHorizontal: typeof GuiTwoToneKebabHorizontal;
46
+ GuiTwoToneKebabLoader: typeof GuiTwoToneKebabLoader;
47
+ GuiTwoToneKebabVertical: typeof GuiTwoToneKebabVertical;
48
+ GuiTwoToneList: typeof GuiTwoToneList;
49
+ GuiTwoToneLocation: typeof GuiTwoToneLocation;
50
+ GuiTwoToneMarketplace: typeof GuiTwoToneMarketplace;
51
+ GuiTwoToneMatters: typeof GuiTwoToneMatters;
52
+ GuiTwoToneMenu: typeof GuiTwoToneMenu;
53
+ GuiTwoToneMinusCircle: typeof GuiTwoToneMinusCircle;
54
+ GuiTwoToneMobile: typeof GuiTwoToneMobile;
55
+ GuiTwoToneMore: typeof GuiTwoToneMore;
56
+ GuiTwoToneOpenExternal: typeof GuiTwoToneOpenExternal;
57
+ GuiTwoTonePanelToggle: typeof GuiTwoTonePanelToggle;
58
+ GuiTwoTonePercentage: typeof GuiTwoTonePercentage;
59
+ GuiTwoTonePlusCircle: typeof GuiTwoTonePlusCircle;
60
+ GuiTwoTonePoint: typeof GuiTwoTonePoint;
61
+ GuiTwoTonePrinter: typeof GuiTwoTonePrinter;
62
+ GuiTwoToneProduct: typeof GuiTwoToneProduct;
63
+ GuiTwoToneRecent: typeof GuiTwoToneRecent;
64
+ GuiTwoToneReply: typeof GuiTwoToneReply;
65
+ GuiTwoToneReset: typeof GuiTwoToneReset;
66
+ GuiTwoToneResources: typeof GuiTwoToneResources;
67
+ GuiTwoToneSearch: typeof GuiTwoToneSearch;
68
+ GuiTwoToneSettings: typeof GuiTwoToneSettings;
69
+ GuiTwoToneSignature: typeof GuiTwoToneSignature;
70
+ GuiTwoToneSort: typeof GuiTwoToneSort;
71
+ GuiTwoToneSpinner: typeof GuiTwoToneSpinner;
72
+ GuiTwoToneSubscriptions: typeof GuiTwoToneSubscriptions;
73
+ GuiTwoToneSupport: typeof GuiTwoToneSupport;
74
+ GuiTwoToneTick: typeof GuiTwoToneTick;
75
+ GuiTwoToneTickCircle: typeof GuiTwoToneTickCircle;
76
+ GuiTwoToneTime: typeof GuiTwoToneTime;
77
+ GuiTwoToneUpload: typeof GuiTwoToneUpload;
78
+ GuiTwoToneUsers: typeof GuiTwoToneUsers;
79
+ GuiTwoToneUsersOutline: typeof GuiTwoToneUsersOutline;
80
+ GuiTwoToneWarningOutline: typeof GuiTwoToneWarningOutline;
81
+ GuiTwoToneWater: typeof GuiTwoToneWater;
82
+ GuiTwoToneWeb: typeof GuiTwoToneWeb;
83
+ };
84
+ export declare const GuiSasIcons: {
85
+ GuiSasAddDocument: typeof GuiSasAddDocument;
86
+ GuiSasAddMenu: typeof GuiSasAddMenu;
87
+ GuiSasAgreement: typeof GuiSasAgreement;
88
+ GuiSasAppportionableItems: typeof GuiSasAppportionableItems;
89
+ GuiSasCourt: typeof GuiSasCourt;
90
+ GuiSasDischargeMortgage: typeof GuiSasDischargeMortgage;
91
+ GuiSasLegal: typeof GuiSasLegal;
92
+ GuiSasLicense: typeof GuiSasLicense;
93
+ GuiSasSettlement: typeof GuiSasSettlement;
94
+ GuiSasSign: typeof GuiSasSign;
95
+ GuiSasTime: typeof GuiSasTime;
96
+ GuiSasUnpaid: typeof GuiSasUnpaid;
97
+ GuiSasUnsupportedDocument: typeof GuiSasUnsupportedDocument;
98
+ GuiSasUpdateDocument: typeof GuiSasUpdateDocument;
99
+ GuiSasWaterRates: typeof GuiSasWaterRates;
100
+ GuiSasWaterUsage: typeof GuiSasWaterUsage;
101
+ GuiSasWelcome: typeof GuiSasWelcome;
102
+ };