@elastic/eui 99.2.0 → 99.3.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.
Files changed (75) hide show
  1. package/es/components/accordion/accordion.js +2 -1
  2. package/es/components/accordion/accordion_children/accordion_children.js +20 -7
  3. package/es/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  4. package/es/components/basic_table/basic_table.js +135 -2
  5. package/es/components/basic_table/in_memory_table.js +131 -1
  6. package/es/components/call_out/call_out.js +1 -1
  7. package/es/components/call_out/call_out.styles.js +1 -0
  8. package/es/components/code/code.styles.js +1 -1
  9. package/es/components/code/code_syntax.styles.js +1 -0
  10. package/es/components/code/utils.js +5 -2
  11. package/es/components/datagrid/data_grid.stories.utils.js +0 -1090
  12. package/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  13. package/es/components/inline_edit/inline_edit_form.js +4 -4
  14. package/es/components/inline_edit/inline_edit_text.js +4 -4
  15. package/es/components/inline_edit/inline_edit_title.js +4 -4
  16. package/es/components/table/table_header_cell.js +76 -4
  17. package/eui.d.ts +4639 -4607
  18. package/i18ntokens.json +36 -36
  19. package/lib/components/accordion/accordion.js +2 -1
  20. package/lib/components/accordion/accordion_children/accordion_children.js +19 -6
  21. package/lib/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  22. package/lib/components/basic_table/basic_table.js +135 -2
  23. package/lib/components/basic_table/in_memory_table.js +131 -1
  24. package/lib/components/call_out/call_out.js +1 -1
  25. package/lib/components/call_out/call_out.styles.js +1 -0
  26. package/lib/components/code/code.styles.js +1 -1
  27. package/lib/components/code/code_syntax.styles.js +1 -0
  28. package/lib/components/code/utils.js +6 -1
  29. package/lib/components/datagrid/data_grid.stories.utils.js +1 -1092
  30. package/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  31. package/lib/components/inline_edit/inline_edit_form.js +4 -4
  32. package/lib/components/inline_edit/inline_edit_text.js +4 -4
  33. package/lib/components/inline_edit/inline_edit_title.js +4 -4
  34. package/lib/components/table/table_header_cell.js +79 -8
  35. package/optimize/es/components/accordion/accordion.js +2 -1
  36. package/optimize/es/components/accordion/accordion_children/accordion_children.js +20 -7
  37. package/optimize/es/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  38. package/optimize/es/components/basic_table/basic_table.js +4 -1
  39. package/optimize/es/components/call_out/call_out.js +1 -1
  40. package/optimize/es/components/call_out/call_out.styles.js +1 -0
  41. package/optimize/es/components/code/code.styles.js +1 -1
  42. package/optimize/es/components/code/code_syntax.styles.js +1 -0
  43. package/optimize/es/components/code/utils.js +5 -2
  44. package/optimize/es/components/datagrid/data_grid.stories.utils.js +0 -18
  45. package/optimize/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  46. package/optimize/es/components/table/table_header_cell.js +14 -3
  47. package/optimize/lib/components/accordion/accordion.js +2 -1
  48. package/optimize/lib/components/accordion/accordion_children/accordion_children.js +19 -6
  49. package/optimize/lib/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  50. package/optimize/lib/components/basic_table/basic_table.js +4 -1
  51. package/optimize/lib/components/call_out/call_out.js +1 -1
  52. package/optimize/lib/components/call_out/call_out.styles.js +1 -0
  53. package/optimize/lib/components/code/code.styles.js +1 -1
  54. package/optimize/lib/components/code/code_syntax.styles.js +1 -0
  55. package/optimize/lib/components/code/utils.js +6 -1
  56. package/optimize/lib/components/datagrid/data_grid.stories.utils.js +1 -19
  57. package/optimize/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  58. package/optimize/lib/components/table/table_header_cell.js +14 -3
  59. package/package.json +2 -1
  60. package/test-env/components/accordion/accordion.js +2 -1
  61. package/test-env/components/accordion/accordion_children/accordion_children.js +19 -6
  62. package/test-env/components/accordion/accordion_children/accordion_children.styles.js +5 -0
  63. package/test-env/components/basic_table/basic_table.js +135 -2
  64. package/test-env/components/basic_table/in_memory_table.js +131 -1
  65. package/test-env/components/call_out/call_out.js +1 -1
  66. package/test-env/components/call_out/call_out.styles.js +1 -0
  67. package/test-env/components/code/code.styles.js +1 -1
  68. package/test-env/components/code/code_syntax.styles.js +1 -0
  69. package/test-env/components/code/utils.js +6 -1
  70. package/test-env/components/datagrid/data_grid.stories.utils.js +1 -1091
  71. package/test-env/components/date_picker/super_date_picker/date_popover/absolute_tab.js +3 -0
  72. package/test-env/components/inline_edit/inline_edit_form.js +4 -4
  73. package/test-env/components/inline_edit/inline_edit_text.js +4 -4
  74. package/test-env/components/inline_edit/inline_edit_title.js +4 -4
  75. package/test-env/components/table/table_header_cell.js +76 -4
@@ -1,6 +1,5 @@
1
1
  var _excluded = ["pagination", "sorting", "columnVisibility"];
2
2
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
- import PropTypes from "prop-types";
4
3
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
4
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
5
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
@@ -359,1093 +358,4 @@ export var StatefulDataGrid = function StatefulDataGrid(props) {
359
358
  onChangePage: onChangePage
360
359
  })
361
360
  }));
362
- };
363
-
364
- /*
365
- * Components that exist purely for allowing Storybook to parse certain nested
366
- * interfaces/types into specific example control tables.
367
- *
368
- * For whatever reason, they needs to be in a separate file for Storybook's
369
- * react-typescript-docgen to parse the jsdoc comments into the controls table
370
- */
371
-
372
- export var EuiDataGridToolbarPropsComponent = function EuiDataGridToolbarPropsComponent() {
373
- return ___EmotionJSX(React.Fragment, null);
374
- };
375
- EuiDataGridToolbarPropsComponent.propTypes = {
376
- className: PropTypes.string,
377
- "aria-label": PropTypes.string,
378
- "data-test-subj": PropTypes.string,
379
- css: PropTypes.any,
380
- /**
381
- * An array of #EuiDataGridColumn objects. Lists the columns available and the schema and settings tied to it.
382
- */
383
- columns: PropTypes.arrayOf(PropTypes.shape({
384
- /**
385
- * The unique identifier for this column
386
- */
387
- id: PropTypes.string.isRequired,
388
- /**
389
- * A `ReactNode` used when rendering the column header. When providing complicated content, please make sure to utilize CSS to respect truncation as space allows. Check the docs example.
390
- */
391
- display: PropTypes.node,
392
- /**
393
- * Display name as text for the column.
394
- * This can be used to display a readable column name in column hiding/sorting, where `display` won't be used.
395
- * This will also be used as a `title` attribute that will display on mouseover (useful if the display text is being truncated by the column width).
396
- * If not passed, `id` will be shown as the column name.
397
- * Passing this together with `display` is useful to ensure an accessible label is added to the column.
398
- */
399
- displayAsText: PropTypes.string,
400
- /**
401
- * Optional props to pass to the column header cell
402
- */
403
- displayHeaderCellProps: PropTypes.any,
404
- /**
405
- * Initial width (in pixels) of the column
406
- */
407
- initialWidth: PropTypes.number,
408
- /**
409
- * Defaults to true, always true if cellActions are defined. Defines whether or not the column's cells can be expanded with a popup onClick / keydown.
410
- */
411
- isExpandable: PropTypes.bool,
412
- /**
413
- * Whether this column's width can be changed by the user, defaults to true
414
- */
415
- isResizable: PropTypes.bool,
416
- /**
417
- * Whether this column is sortable
418
- */
419
- isSortable: PropTypes.bool,
420
- /**
421
- * Default sort direction of the column
422
- */
423
- defaultSortDirection: PropTypes.oneOf(["asc", "desc"]),
424
- /**
425
- * A Schema to use for the column.
426
- * Built-in values are [`boolean`, `currency`, `datetime`, `numeric`, `json`] but can be expanded by defining your own #EuiDataGrid `schemaDetectors` (for in-memory detection).
427
- * In general, it is advised to pass in a value here when you are sure of the schema ahead of time, so that you don't need to rely on the automatic detection.
428
- */
429
- schema: PropTypes.string,
430
- /**
431
- * Configuration of column actions. Set to false to disable or use #EuiDataGridColumnActions to configure the actions displayed in the header cell of the column.
432
- */
433
- actions: PropTypes.oneOfType([PropTypes.oneOf([false]), PropTypes.shape({
434
- /**
435
- * Show/hide/configure the action to hide a column, provided EuiListGroupItemProps are merged
436
- */
437
- showHide: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
438
- className: PropTypes.string,
439
- "aria-label": PropTypes.string,
440
- "data-test-subj": PropTypes.string,
441
- css: PropTypes.any,
442
- /**
443
- * Size of the label text
444
- */
445
- size: PropTypes.any,
446
- /**
447
- * By default the item will get the color `text`.
448
- * You can customize the color of the item by passing a color name.
449
- */
450
- color: PropTypes.any,
451
- /**
452
- * Apply styles indicating an item is active
453
- */
454
- isActive: PropTypes.bool,
455
- /**
456
- * Apply styles indicating an item is disabled
457
- */
458
- isDisabled: PropTypes.bool,
459
- /**
460
- * Make the list item label a link.
461
- * While permitted, `href` and `onClick` should not be used together in most cases and may create problems.
462
- */
463
- href: PropTypes.string,
464
- rel: PropTypes.string,
465
- target: PropTypes.string,
466
- /**
467
- * Set to true to show an icon indicating that it is an external link;
468
- * Defaults to true if `target="_blank"`
469
- */
470
- external: PropTypes.bool,
471
- /**
472
- * Further extend the props applied to EuiIcon
473
- */
474
- iconProps: PropTypes.any,
475
- /**
476
- * Display tooltip on list item
477
- */
478
- showToolTip: PropTypes.bool,
479
- /**
480
- * An object of #EuiListGroupItemExtraAction props.
481
- * Adds an `EuiButtonIcon` to the right side of the item; `iconType` is required;
482
- * pass `alwaysShow` if you don't want the default behavior of only showing on hover
483
- */
484
- extraAction: PropTypes.shape({
485
- alwaysShow: PropTypes.bool,
486
- type: PropTypes.any,
487
- onClick: PropTypes.func,
488
- iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
489
- /**
490
- * Any of the named color palette options.
491
- */
492
- color: PropTypes.any,
493
- "aria-label": PropTypes.string,
494
- "aria-labelledby": PropTypes.string,
495
- isDisabled: PropTypes.bool,
496
- /**
497
- * Overall size of button.
498
- * Matches the sizes of other EuiButtons
499
- */
500
- size: PropTypes.any,
501
- /**
502
- * Size of the icon only.
503
- * This will not affect the overall size of the button
504
- */
505
- iconSize: PropTypes.any,
506
- /**
507
- * Applies the boolean state as the `aria-pressed` property to create a toggle button.
508
- * *Only use when the readable text does not change between states.*
509
- */
510
- isSelected: PropTypes.bool,
511
- /**
512
- * Sets the display style for matching other EuiButton types.
513
- * `base` is equivalent to a typical EuiButton
514
- * `fill` is equivalent to a filled EuiButton
515
- * `empty` (default) is equivalent to an EuiButtonEmpty
516
- */
517
- display: PropTypes.any,
518
- /**
519
- * Disables the button and changes the icon to a loading spinner
520
- */
521
- isLoading: PropTypes.bool,
522
- className: PropTypes.string,
523
- "data-test-subj": PropTypes.string,
524
- css: PropTypes.any,
525
- buttonRef: PropTypes.any
526
- }),
527
- /**
528
- * Make the list item label a button.
529
- * While permitted, `href` and `onClick` should not be used together in most cases and may create problems.
530
- */
531
- onClick: PropTypes.func,
532
- /**
533
- * Allow link text to wrap
534
- */
535
- wrapText: PropTypes.bool,
536
- /**
537
- * Pass-through ref reference specifically for targeting
538
- * instances where the item content is rendered as a `button`
539
- */
540
- buttonRef: PropTypes.any,
541
- /**
542
- * Text to be displayed in the tooltip when `showToolTip` is true.
543
- * By default the text will be same as the label text.
544
- */
545
- toolTipText: PropTypes.string,
546
- /**
547
- * Allows customizing the tooltip shown when `showToolTip` is true.
548
- * Accepts any props that [EuiToolTip](/#/display/tooltip) accepts.
549
- */
550
- toolTipProps: PropTypes.any
551
- }).isRequired]),
552
- /**
553
- * Show/hide/configure the action that switches the actual column with the column to the left side, provided EuiListGroupItemProps are merged
554
- */
555
- showMoveLeft: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
556
- className: PropTypes.string,
557
- "aria-label": PropTypes.string,
558
- "data-test-subj": PropTypes.string,
559
- css: PropTypes.any,
560
- size: PropTypes.any,
561
- color: PropTypes.any,
562
- isActive: PropTypes.bool,
563
- isDisabled: PropTypes.bool,
564
- href: PropTypes.string,
565
- rel: PropTypes.string,
566
- target: PropTypes.string,
567
- external: PropTypes.bool,
568
- iconProps: PropTypes.any,
569
- showToolTip: PropTypes.bool,
570
- extraAction: PropTypes.shape({
571
- alwaysShow: PropTypes.bool,
572
- type: PropTypes.any,
573
- onClick: PropTypes.func,
574
- iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
575
- color: PropTypes.any,
576
- "aria-label": PropTypes.string,
577
- "aria-labelledby": PropTypes.string,
578
- isDisabled: PropTypes.bool,
579
- size: PropTypes.any,
580
- iconSize: PropTypes.any,
581
- isSelected: PropTypes.bool,
582
- display: PropTypes.any,
583
- isLoading: PropTypes.bool,
584
- className: PropTypes.string,
585
- "data-test-subj": PropTypes.string,
586
- css: PropTypes.any,
587
- buttonRef: PropTypes.any
588
- }),
589
- onClick: PropTypes.func,
590
- wrapText: PropTypes.bool,
591
- buttonRef: PropTypes.any,
592
- toolTipText: PropTypes.string,
593
- toolTipProps: PropTypes.any
594
- }).isRequired]),
595
- /**
596
- * Show/hide/configure the action that switches the actual column with the column to the right side, provided EuiListGroupItemProps are merged
597
- */
598
- showMoveRight: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
599
- className: PropTypes.string,
600
- "aria-label": PropTypes.string,
601
- "data-test-subj": PropTypes.string,
602
- css: PropTypes.any,
603
- size: PropTypes.any,
604
- color: PropTypes.any,
605
- isActive: PropTypes.bool,
606
- isDisabled: PropTypes.bool,
607
- href: PropTypes.string,
608
- rel: PropTypes.string,
609
- target: PropTypes.string,
610
- external: PropTypes.bool,
611
- iconProps: PropTypes.any,
612
- showToolTip: PropTypes.bool,
613
- extraAction: PropTypes.shape({
614
- alwaysShow: PropTypes.bool,
615
- type: PropTypes.any,
616
- onClick: PropTypes.func,
617
- iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
618
- color: PropTypes.any,
619
- "aria-label": PropTypes.string,
620
- "aria-labelledby": PropTypes.string,
621
- isDisabled: PropTypes.bool,
622
- size: PropTypes.any,
623
- iconSize: PropTypes.any,
624
- isSelected: PropTypes.bool,
625
- display: PropTypes.any,
626
- isLoading: PropTypes.bool,
627
- className: PropTypes.string,
628
- "data-test-subj": PropTypes.string,
629
- css: PropTypes.any,
630
- buttonRef: PropTypes.any
631
- }),
632
- onClick: PropTypes.func,
633
- wrapText: PropTypes.bool,
634
- buttonRef: PropTypes.any,
635
- toolTipText: PropTypes.string,
636
- toolTipProps: PropTypes.any
637
- }).isRequired]),
638
- /**
639
- * Show/hide/configure the action to sort ascending by the actual column, provided EuiListGroupItemProps are merged
640
- */
641
- showSortAsc: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
642
- className: PropTypes.string,
643
- "aria-label": PropTypes.string,
644
- "data-test-subj": PropTypes.string,
645
- css: PropTypes.any,
646
- size: PropTypes.any,
647
- color: PropTypes.any,
648
- isActive: PropTypes.bool,
649
- isDisabled: PropTypes.bool,
650
- href: PropTypes.string,
651
- rel: PropTypes.string,
652
- target: PropTypes.string,
653
- external: PropTypes.bool,
654
- iconProps: PropTypes.any,
655
- showToolTip: PropTypes.bool,
656
- extraAction: PropTypes.shape({
657
- alwaysShow: PropTypes.bool,
658
- type: PropTypes.any,
659
- onClick: PropTypes.func,
660
- iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
661
- color: PropTypes.any,
662
- "aria-label": PropTypes.string,
663
- "aria-labelledby": PropTypes.string,
664
- isDisabled: PropTypes.bool,
665
- size: PropTypes.any,
666
- iconSize: PropTypes.any,
667
- isSelected: PropTypes.bool,
668
- display: PropTypes.any,
669
- isLoading: PropTypes.bool,
670
- className: PropTypes.string,
671
- "data-test-subj": PropTypes.string,
672
- css: PropTypes.any,
673
- buttonRef: PropTypes.any
674
- }),
675
- onClick: PropTypes.func,
676
- wrapText: PropTypes.bool,
677
- buttonRef: PropTypes.any,
678
- toolTipText: PropTypes.string,
679
- toolTipProps: PropTypes.any
680
- }).isRequired]),
681
- /**
682
- * Show/hide/configure the action to sort descending by the actual column, provided EuiListGroupItemProps are merged
683
- */
684
- showSortDesc: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
685
- className: PropTypes.string,
686
- "aria-label": PropTypes.string,
687
- "data-test-subj": PropTypes.string,
688
- css: PropTypes.any,
689
- size: PropTypes.any,
690
- color: PropTypes.any,
691
- isActive: PropTypes.bool,
692
- isDisabled: PropTypes.bool,
693
- href: PropTypes.string,
694
- rel: PropTypes.string,
695
- target: PropTypes.string,
696
- external: PropTypes.bool,
697
- iconProps: PropTypes.any,
698
- showToolTip: PropTypes.bool,
699
- extraAction: PropTypes.shape({
700
- alwaysShow: PropTypes.bool,
701
- type: PropTypes.any,
702
- onClick: PropTypes.func,
703
- iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
704
- color: PropTypes.any,
705
- "aria-label": PropTypes.string,
706
- "aria-labelledby": PropTypes.string,
707
- isDisabled: PropTypes.bool,
708
- size: PropTypes.any,
709
- iconSize: PropTypes.any,
710
- isSelected: PropTypes.bool,
711
- display: PropTypes.any,
712
- isLoading: PropTypes.bool,
713
- className: PropTypes.string,
714
- "data-test-subj": PropTypes.string,
715
- css: PropTypes.any,
716
- buttonRef: PropTypes.any
717
- }),
718
- onClick: PropTypes.func,
719
- wrapText: PropTypes.bool,
720
- buttonRef: PropTypes.any,
721
- toolTipText: PropTypes.string,
722
- toolTipProps: PropTypes.any
723
- }).isRequired]),
724
- /**
725
- * Append additional actions
726
- */
727
- additional: PropTypes.arrayOf(PropTypes.shape({
728
- className: PropTypes.string,
729
- "aria-label": PropTypes.string,
730
- "data-test-subj": PropTypes.string,
731
- css: PropTypes.any,
732
- size: PropTypes.any,
733
- color: PropTypes.any,
734
- isActive: PropTypes.bool,
735
- isDisabled: PropTypes.bool,
736
- href: PropTypes.string,
737
- rel: PropTypes.string,
738
- target: PropTypes.string,
739
- external: PropTypes.bool,
740
- iconProps: PropTypes.any,
741
- showToolTip: PropTypes.bool,
742
- extraAction: PropTypes.shape({
743
- alwaysShow: PropTypes.bool,
744
- type: PropTypes.any,
745
- onClick: PropTypes.func,
746
- iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
747
- color: PropTypes.any,
748
- "aria-label": PropTypes.string,
749
- "aria-labelledby": PropTypes.string,
750
- isDisabled: PropTypes.bool,
751
- size: PropTypes.any,
752
- iconSize: PropTypes.any,
753
- isSelected: PropTypes.bool,
754
- display: PropTypes.any,
755
- isLoading: PropTypes.bool,
756
- className: PropTypes.string,
757
- "data-test-subj": PropTypes.string,
758
- css: PropTypes.any,
759
- buttonRef: PropTypes.any
760
- }),
761
- onClick: PropTypes.func,
762
- wrapText: PropTypes.bool,
763
- buttonRef: PropTypes.any,
764
- toolTipText: PropTypes.string,
765
- toolTipProps: PropTypes.any
766
- }).isRequired)
767
- }).isRequired]),
768
- /**
769
- * Additional actions displayed as icon on hover / focus, and in the expanded view of the cell containing the value
770
- */
771
- cellActions: PropTypes.arrayOf(PropTypes.elementType.isRequired),
772
- /**
773
- * Configures the amount of cell action buttons immediately visible on a cell.
774
- * Any cell actions above this number will only display in the cell expansion popover.
775
- * Defaults to 2.
776
- */
777
- visibleCellActions: PropTypes.number
778
- }).isRequired).isRequired,
779
- /**
780
- * An array of #EuiDataGridControlColumn objects. Used to define ancillary columns on the left side of the data grid.
781
- * Useful for adding items like checkboxes and buttons.
782
- */
783
- leadingControlColumns: PropTypes.arrayOf(PropTypes.shape({
784
- /**
785
- * Used as the React `key` when rendering content
786
- */
787
- id: PropTypes.string.isRequired,
788
- /**
789
- * Width of the column, users are unable to change this
790
- */
791
- width: PropTypes.number.isRequired,
792
- /**
793
- * Component to render in the column header
794
- */
795
- headerCellRender: PropTypes.elementType.isRequired,
796
- /**
797
- * Optional props to pass to the column header cell
798
- */
799
- headerCellProps: PropTypes.any,
800
- /**
801
- * Component to render for each row in the column
802
- */
803
- rowCellRender: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,
804
- /**
805
- * Component to render in the optional column footer
806
- */
807
- footerCellRender: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]),
808
- /**
809
- * Optional props to pass to the column footer cell
810
- */
811
- footerCellProps: PropTypes.any
812
- }).isRequired),
813
- /**
814
- * An array of #EuiDataGridControlColumn objects. Used to define ancillary columns on the right side of the data grid.
815
- * Useful for adding items like checkboxes and buttons.
816
- */
817
- trailingControlColumns: PropTypes.arrayOf(PropTypes.shape({
818
- /**
819
- * Used as the React `key` when rendering content
820
- */
821
- id: PropTypes.string.isRequired,
822
- /**
823
- * Width of the column, users are unable to change this
824
- */
825
- width: PropTypes.number.isRequired,
826
- /**
827
- * Component to render in the column header
828
- */
829
- headerCellRender: PropTypes.elementType.isRequired,
830
- /**
831
- * Optional props to pass to the column header cell
832
- */
833
- headerCellProps: PropTypes.any,
834
- /**
835
- * Component to render for each row in the column
836
- */
837
- rowCellRender: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,
838
- /**
839
- * Component to render in the optional column footer
840
- */
841
- footerCellRender: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]),
842
- /**
843
- * Optional props to pass to the column footer cell
844
- */
845
- footerCellProps: PropTypes.any
846
- }).isRequired),
847
- /**
848
- * An array of #EuiDataGridColumnVisibility objects.
849
- * Defines which columns are **intitially** visible in the grid and the order they are displayed.
850
- * Users can still turn their visibility on/off when `toolbarVisibility.showColumnSelector = true` (which is the default).
851
- */
852
- columnVisibility: PropTypes.shape({
853
- /**
854
- * An array of #EuiDataGridColumn `id`s dictating the order and visibility of columns.
855
- */
856
- visibleColumns: PropTypes.arrayOf(PropTypes.string.isRequired).isRequired,
857
- /**
858
- * A callback for when a column's visibility or order is modified by the user.
859
- */
860
- setVisibleColumns: PropTypes.func.isRequired,
861
- /** Enables reordering grid columns on drag and drop via the headers cells */canDragAndDropColumns: PropTypes.bool
862
- }).isRequired,
863
- /**
864
- * An array of custom #EuiDataGridSchemaDetector objects. You can inject custom schemas to the grid to define the classnames applied.
865
- */
866
- schemaDetectors: PropTypes.arrayOf(PropTypes.shape({
867
- /**
868
- * The name of this data type, matches #EuiDataGridColumn / `schema`
869
- */
870
- type: PropTypes.string.isRequired,
871
- /**
872
- * The function given the text value of a cell and returns a score of [0...1] of how well the value matches this data type
873
- */
874
- detector: PropTypes.func.isRequired,
875
- /**
876
- * A custom comparator function when performing in-memory sorting on this data type, takes `(a: string, b: string, direction: 'asc' | 'desc', indexes: {aIndex: number, bIndex: number}) => -1 | 0 | 1`
877
- */
878
- comparator: PropTypes.func,
879
- /**
880
- * The icon used to visually represent this data type. Accepts any `EuiIcon IconType`.
881
- */
882
- icon: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "anomalyChart", "anomalySwimLane", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "article", "asterisk", "at", "auditbeatApp", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "check", "checkInCircleFilled", "cheer", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "diff", "discoverApp", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "doubleArrowRight", "download", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "endpoint", "eql", "eraser", "error", "errorFilled", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "kubernetesNode", "kubernetesPod", "launch", "layers", "lensApp", "lettering", "lineDashed", "lineDotted", "lineSolid", "link", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusInCircle", "minusInCircleFilled", "minusInSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "vector", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "alert", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
883
- /**
884
- * The color associated with this data type; it's used to color the icon token
885
- */
886
- color: PropTypes.oneOfType([PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.string.isRequired]).isRequired, PropTypes.string.isRequired]),
887
- /**
888
- * Text for how to represent an ascending sort of this data type, e.g. 'A -> Z'
889
- */
890
- sortTextAsc: PropTypes.node.isRequired,
891
- /**
892
- * Text for how to represent a descending sort of this data type, e.g. 'Z -> A'
893
- */
894
- sortTextDesc: PropTypes.node.isRequired,
895
- /**
896
- * Whether columns with this schema are sortable (defaults to true). Can be overridden at the individual #EuiDataGridColumn level
897
- */
898
- isSortable: PropTypes.bool,
899
- /**
900
- * This property controls the capitalization of text
901
- */
902
- textTransform: PropTypes.oneOf(["uppercase", "lowercase", "capitalize"]),
903
- /**
904
- * Default sort direction of columns with this schema. Can be overridden at the individual #EuiDataGridColumn level
905
- */
906
- defaultSortDirection: PropTypes.oneOf(["asc", "desc"])
907
- }).isRequired),
908
- /**
909
- * The total number of rows in the dataset (used by e.g. pagination to know how many pages to list).
910
- */
911
- rowCount: PropTypes.number.isRequired,
912
- /**
913
- * A function called to render a cell's value. Behind the scenes it is treated as a React component
914
- * allowing hooks, context, and other React concepts to be used. The function receives #EuiDataGridCellValueElementProps
915
- * as its only argument.
916
- */
917
- renderCellValue: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,
918
- /**
919
- * An optional object of props passed to the `renderCellValue` component.
920
- * This API exists to make it easier to define your `renderCellValue` function
921
- * component statically, and not rerender due to other dependent state.
922
- */
923
- cellContext: PropTypes.any,
924
- /**
925
- * An optional function that can be used to completely customize the rendering of cell popovers.
926
- *
927
- * If not specified, defaults to an `<EuiText>` wrapper around the rendered cell value and an
928
- * `<EuiPopoverFooter>` around the cell actions.
929
- *
930
- * Behind the scenes it is treated as a React component allowing hooks, context, and other React concepts to be used.
931
- * The function receives #EuiDataGridCellPopoverElementProps as its only argument.
932
- *
933
- */
934
- renderCellPopover: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.func.isRequired]),
935
- /**
936
- * An optional function called to render a footer cell. If not specified, no footer row is rendered.
937
- *
938
- * Behind the scenes it is treated as a React component
939
- * allowing hooks, context, and other React concepts to be used. The function receives #EuiDataGridCellValueElementProps
940
- * as its only argument.
941
- */
942
- renderFooterCellValue: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]),
943
- /**
944
- * An optional function called to completely customize and control the rendering of
945
- * EuiDataGrid's body and cell placement. This can be used to, e.g. remove EuiDataGrid's
946
- * virtualization library, or roll your own.
947
- *
948
- * This component is **only** meant as an escape hatch for extremely custom use cases.
949
- *
950
- * Behind the scenes, this function is treated as a React component,
951
- * allowing hooks, context, and other React concepts to be used.
952
- * It receives #EuiDataGridCustomBodyProps as its only argument.
953
- */
954
- renderCustomGridBody: PropTypes.func,
955
- /**
956
- * An optional function called to customize placement of controls in EuiDataGrid's toolbar.
957
- * This can be used to add custom buttons or reorder existing ones.
958
- *
959
- * Behind the scenes, this function is treated as a React component,
960
- * allowing hooks, context, and other React concepts to be used.
961
- * It receives #EuiDataGridCustomToolbarProps as its only argument.
962
- */
963
- renderCustomToolbar: PropTypes.func,
964
- /**
965
- * Defines the initial style of the grid. Accepts a partial #EuiDataGridStyle object.
966
- * Settings provided may be overwritten or merged with user defined preferences if `toolbarVisibility.showDisplaySelector.allowDensity = true` (which is the default).
967
- */
968
- gridStyle: PropTypes.shape({
969
- /**
970
- * Size of fonts used within the row and column cells
971
- * @default m
972
- */
973
- fontSize: PropTypes.oneOf(["s", "m", "l"]),
974
- /**
975
- * Defines the padding with the row and column cells
976
- * @default m
977
- */
978
- cellPadding: PropTypes.oneOf(["s", "m", "l"]),
979
- /**
980
- * Border used for the row and column cells
981
- * @default all
982
- */
983
- border: PropTypes.oneOf(["all", "horizontal", "none"]),
984
- /**
985
- * If set to true, rows will alternate zebra striping for clarity
986
- * @default false
987
- */
988
- stripes: PropTypes.bool,
989
- /**
990
- * Visual style for the column headers. Recommendation is to use the `underline` style in times when #EuiDataGrid `toolbarVisibility` is set to `false`.
991
- * @default shade
992
- */
993
- header: PropTypes.oneOf(["shade", "underline"]),
994
- /**
995
- * Visual style for the column footers.
996
- * @default overline
997
- */
998
- footer: PropTypes.oneOf(["shade", "overline", "striped"]),
999
- /**
1000
- * If set to true, the footer row will be sticky
1001
- * @default true
1002
- */
1003
- stickyFooter: PropTypes.bool,
1004
- /**
1005
- * Will define what visual style to show on row hover
1006
- * @default hover
1007
- */
1008
- rowHover: PropTypes.oneOf(["highlight", "none"]),
1009
- /**
1010
- * Optionally pass custom classes to highlight or customize certain rows
1011
- */
1012
- rowClasses: PropTypes.shape({}),
1013
- /**
1014
- * Optional callback returning the current `gridStyle` config when changes occur from user input (e.g. toolbar display controls).
1015
- * Can be used for, e.g. storing user `gridStyle` in a local storage object.
1016
- */
1017
- onChange: PropTypes.func
1018
- }),
1019
- /**
1020
- * Allows you to configure what features the toolbar shows.
1021
- *
1022
- * Accepts either a boolean or #EuiDataGridToolBarVisibilityOptions object.
1023
- * When used as a boolean, defines the display of the entire toolbar.
1024
- * When passed an object allows you to turn off individual controls within the toolbar as well as add additional buttons.
1025
- */
1026
- toolbarVisibility: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
1027
- /**
1028
- * Allows the ability for the user to hide fields and sort columns, boolean or a #EuiDataGridToolBarVisibilityColumnSelectorOptions
1029
- * @default true
1030
- */
1031
- showColumnSelector: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
1032
- /**
1033
- * When `false`, removes the ability to show & hide columns through the UI
1034
- */
1035
- allowHide: PropTypes.bool,
1036
- /**
1037
- * When `false`, removes the ability to re-order columns through the UI
1038
- */
1039
- allowReorder: PropTypes.bool
1040
- }).isRequired]),
1041
- /**
1042
- * Allows the ability for the user to customize display settings such as grid density and row heights.
1043
- * User changes will override what is provided in #EuiDataGridStyle and #EuiDataGridRowHeightsOptions
1044
- * @default true
1045
- */
1046
- showDisplaySelector: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
1047
- /**
1048
- * When `false`, removes the ability to change density display through the UI
1049
- */
1050
- allowDensity: PropTypes.bool,
1051
- /**
1052
- * When `false`, removes the ability to change row height display through the UI
1053
- */
1054
- allowRowHeight: PropTypes.bool,
1055
- /**
1056
- * When `false`, removes the ability to reset styles to default through the UI
1057
- */
1058
- allowResetButton: PropTypes.bool,
1059
- /**
1060
- * Allows appending additional content to the bottom of the display settings popover
1061
- */
1062
- additionalDisplaySettings: PropTypes.node,
1063
- /**
1064
- * Allows completely custom rendering of the display selector popover via render prop.
1065
- * Passes back the default controls as arguments for optional rendering.
1066
- */
1067
- customRender: PropTypes.func
1068
- }).isRequired]),
1069
- /**
1070
- * Allows the ability for the user to sort rows based upon column values
1071
- * @default true
1072
- */
1073
- showSortSelector: PropTypes.bool,
1074
- /**
1075
- * Displays a popover listing all keyboard controls and shortcuts for the data grid.
1076
- * If set to `false`, the toggle will be visually hidden, but still focusable by keyboard and screen reader users.
1077
- * @default true
1078
- */
1079
- showKeyboardShortcuts: PropTypes.bool,
1080
- /**
1081
- * Allows user to be able to fullscreen the data grid. If set to `false` make sure your grid fits within a large enough panel to still show the other controls.
1082
- * @default true
1083
- */
1084
- showFullScreenSelector: PropTypes.bool,
1085
- /**
1086
- * If passed a `ReactNode`, appends the passed custom control into the left side of the toolbar, after the column & sort controls.
1087
- * Or use #EuiDataGridToolBarAdditionalControlsOptions to customize the location of your control.
1088
- */
1089
- additionalControls: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1090
- /**
1091
- * If passed a `ReactNode`, appends the passed node into the left side of the toolbar, **after** the column & sort controls.
1092
- * Or use #EuiDataGridToolBarAdditionalControlsLeftOptions to customize the location of your control.
1093
- * We recommend using `<EuiButtonEmpty size="xs" />` to match the existing controls on the left.
1094
- */
1095
- left: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1096
- /**
1097
- * Will prepend the passed node into the left side of the toolbar, **before** the column & sort controls.
1098
- */
1099
- prepend: PropTypes.node,
1100
- /**
1101
- * Will append the passed node into the left side of the toolbar, **after** the column & sort controls.
1102
- */
1103
- append: PropTypes.node
1104
- }).isRequired]),
1105
- /**
1106
- * Will prepend the passed node into the right side of the toolbar, **before** the density & fullscreen controls.
1107
- * We recommend using `<EuiButtonIcon size="xs" />` to match the existing controls on the right.
1108
- */
1109
- right: PropTypes.node
1110
- }).isRequired])
1111
- }).isRequired]),
1112
- /**
1113
- * A #EuiDataGridInMemory object to define the level of high order schema-detection and sorting logic to use on your data.
1114
- * **Try to set when possible**.
1115
- * If omitted, disables all enhancements and assumes content is flat strings.
1116
- */
1117
- inMemory: PropTypes.shape({
1118
- /**
1119
- Given the data flow Sorting->Pagination:
1120
- Each step can be performed by service calls or in-memory by the grid.
1121
- However, we cannot allow any service calls after an in-memory operation.
1122
- E.g. if Pagination requires a service call the grid cannot perform
1123
- in-memory Sorting. This means a single value representing the
1124
- service / in-memory boundary can be used. Thus there are four states for in-memory's level:
1125
- * "enhancements" - no in-memory operations, but use the available data to enhance the grid
1126
- * "pagination" - only pagination is performed in-memory
1127
- * "sorting" - sorting & pagination is performed in-memory
1128
- */
1129
- level: PropTypes.oneOf(["enhancements", "pagination", "sorting"]).isRequired,
1130
- /**
1131
- * An array of column ids for the in-memory processing to skip
1132
- */
1133
- skipColumns: PropTypes.arrayOf(PropTypes.string.isRequired)
1134
- }),
1135
- /**
1136
- * A #EuiDataGridPaginationProps object. Omit to disable pagination completely.
1137
- */
1138
- pagination: PropTypes.shape({
1139
- /**
1140
- * The index of the current page, starts at 0 for the first page
1141
- */
1142
- pageIndex: PropTypes.number.isRequired,
1143
- /**
1144
- * How many rows should initially be shown per page.
1145
- * Pass `0` to display the selected "Show all" option and hide the pagination.
1146
- *
1147
- * @default 10
1148
- */
1149
- pageSize: PropTypes.number,
1150
- /**
1151
- * An array of page sizes the user can select from.
1152
- * Pass `0` as one of the options to create a "Show all" option.
1153
- * Pass an empty array to hide "Rows per page" select button.
1154
- *
1155
- * @default [10, 25, 50]
1156
- */
1157
- pageSizeOptions: PropTypes.arrayOf(PropTypes.number.isRequired),
1158
- /**
1159
- * A callback for when the user changes the page size selection
1160
- */
1161
- onChangeItemsPerPage: PropTypes.func.isRequired,
1162
- /**
1163
- * A callback for when the current page index changes
1164
- */
1165
- onChangePage: PropTypes.func.isRequired
1166
- }),
1167
- /**
1168
- * A #EuiDataGridSorting object that provides the sorted columns along with their direction. Provides a callback for when it changes.
1169
- * Optional, but required when inMemory is set.
1170
- * Omit to disable, but you'll likely want to also turn off the user sorting controls through the `toolbarVisibility` prop.
1171
- */
1172
- sorting: PropTypes.shape({
1173
- /**
1174
- * A function that receives updated column sort details in response to user interactions in the toolbar controls
1175
- */
1176
- onSort: PropTypes.func.isRequired,
1177
- /**
1178
- * An array of the column ids currently being sorted and their sort direction. The array order determines the sort order. `{ id: 'A'; direction: 'asc' }`
1179
- */
1180
- columns: PropTypes.arrayOf(PropTypes.shape({
1181
- id: PropTypes.string.isRequired,
1182
- direction: PropTypes.oneOf(["asc", "desc"]).isRequired
1183
- }).isRequired).isRequired
1184
- }),
1185
- /**
1186
- * A callback for when a column's size changes. Callback receives `{ columnId: string, width: number }`.
1187
- */
1188
- onColumnResize: PropTypes.func,
1189
- /**
1190
- * Defines a minimum width for the grid to show all controls in its toolbar.
1191
- */
1192
- minSizeForControls: PropTypes.number,
1193
- /**
1194
- * Sets the grid's height, forcing it to overflow in a scrollable container with cell virtualization.
1195
- */
1196
- height: PropTypes.any,
1197
- /**
1198
- * Sets the grid's width, forcing it to overflow in a scrollable container with cell virtualization.
1199
- */
1200
- width: PropTypes.any,
1201
- /**
1202
- * Allows customizing the underlying [react-window grid](https://react-window.vercel.app/#/api/VariableSizeGrid) props.
1203
- */
1204
- virtualizationOptions: PropTypes.any,
1205
- /**
1206
- * A #EuiDataGridRowHeightsOptions object that provides row heights options.
1207
- * Allows configuring both default and specific heights of grid rows.
1208
- * Settings provided may be overwritten or merged with user defined preferences if `toolbarVisibility.showDisplaySelector.allowRowHeight = true` (which is the default).
1209
- */
1210
- rowHeightsOptions: PropTypes.shape({
1211
- /**
1212
- * Defines the default size for all rows. It can be line count or just height.
1213
- */
1214
- defaultHeight: PropTypes.oneOfType([PropTypes.number.isRequired, PropTypes.oneOf(["auto"]), PropTypes.shape({
1215
- lineCount: PropTypes.number,
1216
- height: PropTypes.number
1217
- }).isRequired]),
1218
- /**
1219
- * Feature flag for custom `lineCount` behavior, where `lineCount` acts like a
1220
- * *max* number of lines (instead of a set number of lines for all rows).
1221
- *
1222
- * This functionality is in beta and has performance implications;
1223
- * we do not yet fully recommend/support it for heavy production usage.
1224
- */
1225
- autoBelowLineCount: PropTypes.bool,
1226
- /**
1227
- * Defines the height for a specific row. It can be line count or just height.
1228
- *
1229
- * When using row height overrides, we strongly setting the `showDisplaySelector: allowRowHeight`
1230
- * toolbar control to `false` in #EuiDataGridToolBarVisibilityOptions
1231
- */
1232
- rowHeights: PropTypes.any,
1233
- /**
1234
- * Defines a global lineHeight style to apply to all cells
1235
- */
1236
- lineHeight: PropTypes.string,
1237
- /**
1238
- * Optional callback returning the current `rowHeightsOptions` when changes occur from user input (e.g. toolbar display controls).
1239
- * Can be used for, e.g. storing user `rowHeightsOptions` in a local storage object.
1240
- */
1241
- onChange: PropTypes.func,
1242
- /**
1243
- * Optional indicator of the row that should be used as an anchor for vertical layout shift compensation.
1244
- * When set to 'start' or 'center', the topmost or middle visible row will try
1245
- * to compensate for changes in their top offsets by adjusting the grid's scroll
1246
- * position.
1247
- */
1248
- scrollAnchorRow: PropTypes.oneOf(["start", "center", undefined])
1249
- }),
1250
- /**
1251
- * Allows the ability for the user to hide fields and sort columns, boolean or a #EuiDataGridToolBarVisibilityColumnSelectorOptions
1252
- * @default true
1253
- */
1254
- showColumnSelector: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
1255
- /**
1256
- * When `false`, removes the ability to show & hide columns through the UI
1257
- */
1258
- allowHide: PropTypes.bool,
1259
- /**
1260
- * When `false`, removes the ability to re-order columns through the UI
1261
- */
1262
- allowReorder: PropTypes.bool
1263
- }).isRequired]),
1264
- /**
1265
- * Allows the ability for the user to customize display settings such as grid density and row heights.
1266
- * User changes will override what is provided in #EuiDataGridStyle and #EuiDataGridRowHeightsOptions
1267
- * @default true
1268
- */
1269
- showDisplaySelector: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.shape({
1270
- /**
1271
- * When `false`, removes the ability to change density display through the UI
1272
- */
1273
- allowDensity: PropTypes.bool,
1274
- /**
1275
- * When `false`, removes the ability to change row height display through the UI
1276
- */
1277
- allowRowHeight: PropTypes.bool,
1278
- /**
1279
- * When `false`, removes the ability to reset styles to default through the UI
1280
- */
1281
- allowResetButton: PropTypes.bool,
1282
- /**
1283
- * Allows appending additional content to the bottom of the display settings popover
1284
- */
1285
- additionalDisplaySettings: PropTypes.node,
1286
- /**
1287
- * Allows completely custom rendering of the display selector popover via render prop.
1288
- * Passes back the default controls as arguments for optional rendering.
1289
- */
1290
- customRender: PropTypes.func
1291
- }).isRequired]),
1292
- /**
1293
- * Allows the ability for the user to sort rows based upon column values
1294
- * @default true
1295
- */
1296
- showSortSelector: PropTypes.bool,
1297
- /**
1298
- * Displays a popover listing all keyboard controls and shortcuts for the data grid.
1299
- * If set to `false`, the toggle will be visually hidden, but still focusable by keyboard and screen reader users.
1300
- * @default true
1301
- */
1302
- showKeyboardShortcuts: PropTypes.bool,
1303
- /**
1304
- * Allows user to be able to fullscreen the data grid. If set to `false` make sure your grid fits within a large enough panel to still show the other controls.
1305
- * @default true
1306
- */
1307
- showFullScreenSelector: PropTypes.bool,
1308
- /**
1309
- * If passed a `ReactNode`, appends the passed custom control into the left side of the toolbar, after the column & sort controls.
1310
- * Or use #EuiDataGridToolBarAdditionalControlsOptions to customize the location of your control.
1311
- */
1312
- additionalControls: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1313
- /**
1314
- * If passed a `ReactNode`, appends the passed node into the left side of the toolbar, **after** the column & sort controls.
1315
- * Or use #EuiDataGridToolBarAdditionalControlsLeftOptions to customize the location of your control.
1316
- * We recommend using `<EuiButtonEmpty size="xs" />` to match the existing controls on the left.
1317
- */
1318
- left: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1319
- /**
1320
- * Will prepend the passed node into the left side of the toolbar, **before** the column & sort controls.
1321
- */
1322
- prepend: PropTypes.node,
1323
- /**
1324
- * Will append the passed node into the left side of the toolbar, **after** the column & sort controls.
1325
- */
1326
- append: PropTypes.node
1327
- }).isRequired]),
1328
- /**
1329
- * Will prepend the passed node into the right side of the toolbar, **before** the density & fullscreen controls.
1330
- * We recommend using `<EuiButtonIcon size="xs" />` to match the existing controls on the right.
1331
- */
1332
- right: PropTypes.node
1333
- }).isRequired]),
1334
- /**
1335
- * If passed a `ReactNode`, appends the passed node into the left side of the toolbar, **after** the column & sort controls.
1336
- * Or use #EuiDataGridToolBarAdditionalControlsLeftOptions to customize the location of your control.
1337
- * We recommend using `<EuiButtonEmpty size="xs" />` to match the existing controls on the left.
1338
- */
1339
- left: PropTypes.oneOfType([PropTypes.node.isRequired, PropTypes.shape({
1340
- /**
1341
- * Will prepend the passed node into the left side of the toolbar, **before** the column & sort controls.
1342
- */
1343
- prepend: PropTypes.node,
1344
- /**
1345
- * Will append the passed node into the left side of the toolbar, **after** the column & sort controls.
1346
- */
1347
- append: PropTypes.node
1348
- }).isRequired]),
1349
- /**
1350
- * Will prepend the passed node into the right side of the toolbar, **before** the density & fullscreen controls.
1351
- * We recommend using `<EuiButtonIcon size="xs" />` to match the existing controls on the right.
1352
- */
1353
- right: PropTypes.node
1354
- };
1355
- export var EuiDataGridStylePropsComponent = function EuiDataGridStylePropsComponent() {
1356
- return ___EmotionJSX(React.Fragment, null);
1357
- };
1358
- EuiDataGridStylePropsComponent.propTypes = {
1359
- /**
1360
- * Size of fonts used within the row and column cells
1361
- * @default m
1362
- */
1363
- fontSize: PropTypes.oneOf(["s", "m", "l"]),
1364
- /**
1365
- * Defines the padding with the row and column cells
1366
- * @default m
1367
- */
1368
- cellPadding: PropTypes.oneOf(["s", "m", "l"]),
1369
- /**
1370
- * Border used for the row and column cells
1371
- * @default all
1372
- */
1373
- border: PropTypes.oneOf(["all", "horizontal", "none"]),
1374
- /**
1375
- * If set to true, rows will alternate zebra striping for clarity
1376
- * @default false
1377
- */
1378
- stripes: PropTypes.bool,
1379
- /**
1380
- * Visual style for the column headers. Recommendation is to use the `underline` style in times when #EuiDataGrid `toolbarVisibility` is set to `false`.
1381
- * @default shade
1382
- */
1383
- header: PropTypes.oneOf(["shade", "underline"]),
1384
- /**
1385
- * Visual style for the column footers.
1386
- * @default overline
1387
- */
1388
- footer: PropTypes.oneOf(["shade", "overline", "striped"]),
1389
- /**
1390
- * If set to true, the footer row will be sticky
1391
- * @default true
1392
- */
1393
- stickyFooter: PropTypes.bool,
1394
- /**
1395
- * Will define what visual style to show on row hover
1396
- * @default hover
1397
- */
1398
- rowHover: PropTypes.oneOf(["highlight", "none"]),
1399
- /**
1400
- * Optionally pass custom classes to highlight or customize certain rows
1401
- */
1402
- rowClasses: PropTypes.shape({}),
1403
- /**
1404
- * Optional callback returning the current `gridStyle` config when changes occur from user input (e.g. toolbar display controls).
1405
- * Can be used for, e.g. storing user `gridStyle` in a local storage object.
1406
- */
1407
- onChange: PropTypes.func
1408
- };
1409
- export var EuiDataGridRowHeightsPropsComponent = function EuiDataGridRowHeightsPropsComponent() {
1410
- return ___EmotionJSX(React.Fragment, null);
1411
- };
1412
- EuiDataGridRowHeightsPropsComponent.propTypes = {
1413
- /**
1414
- * Defines the default size for all rows. It can be line count or just height.
1415
- */
1416
- defaultHeight: PropTypes.oneOfType([PropTypes.number.isRequired, PropTypes.oneOf(["auto"]), PropTypes.shape({
1417
- lineCount: PropTypes.number,
1418
- height: PropTypes.number
1419
- }).isRequired]),
1420
- /**
1421
- * Feature flag for custom `lineCount` behavior, where `lineCount` acts like a
1422
- * *max* number of lines (instead of a set number of lines for all rows).
1423
- *
1424
- * This functionality is in beta and has performance implications;
1425
- * we do not yet fully recommend/support it for heavy production usage.
1426
- */
1427
- autoBelowLineCount: PropTypes.bool,
1428
- /**
1429
- * Defines the height for a specific row. It can be line count or just height.
1430
- *
1431
- * When using row height overrides, we strongly setting the `showDisplaySelector: allowRowHeight`
1432
- * toolbar control to `false` in #EuiDataGridToolBarVisibilityOptions
1433
- */
1434
- rowHeights: PropTypes.any,
1435
- /**
1436
- * Defines a global lineHeight style to apply to all cells
1437
- */
1438
- lineHeight: PropTypes.string,
1439
- /**
1440
- * Optional callback returning the current `rowHeightsOptions` when changes occur from user input (e.g. toolbar display controls).
1441
- * Can be used for, e.g. storing user `rowHeightsOptions` in a local storage object.
1442
- */
1443
- onChange: PropTypes.func,
1444
- /**
1445
- * Optional indicator of the row that should be used as an anchor for vertical layout shift compensation.
1446
- * When set to 'start' or 'center', the topmost or middle visible row will try
1447
- * to compensate for changes in their top offsets by adjusting the grid's scroll
1448
- * position.
1449
- */
1450
- scrollAnchorRow: PropTypes.oneOf(["start", "center", undefined])
1451
361
  };