@elastic/eui 92.1.0 → 92.2.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 (112) hide show
  1. package/es/components/bottom_bar/bottom_bar.js +6 -2
  2. package/es/components/button/button.js +55 -1
  3. package/es/components/button/button_display/_button_display.js +1 -0
  4. package/es/components/button/button_empty/button_empty.js +1 -1
  5. package/es/components/button/button_group/button_group.js +1 -1
  6. package/es/components/button/button_group/button_group_button.js +1 -1
  7. package/es/components/button/button_icon/button_icon.js +1 -1
  8. package/es/components/card/card.js +52 -1
  9. package/es/components/card/card_select/card_select.js +52 -1
  10. package/es/components/color_picker/index.js +0 -2
  11. package/es/components/comment_list/index.js +0 -1
  12. package/es/components/context_menu/context_menu_item.styles.js +1 -1
  13. package/es/components/datagrid/body/cell/data_grid_cell.js +94 -74
  14. package/es/components/datagrid/body/data_grid_body.js +6 -6
  15. package/es/components/datagrid/body/data_grid_body_custom.js +6 -6
  16. package/es/components/datagrid/body/data_grid_body_virtualized.js +6 -6
  17. package/es/components/datagrid/body/header/data_grid_header_cell.js +6 -6
  18. package/es/components/datagrid/body/header/data_grid_header_row.js +6 -6
  19. package/es/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
  20. package/es/components/datagrid/utils/in_memory.js +6 -6
  21. package/es/components/facet/facet_button.js +1 -0
  22. package/es/components/flyout/flyout_resizable.js +23 -5
  23. package/es/components/form/text_area/text_area.js +7 -3
  24. package/es/components/header/header_links/header_link.js +1 -1
  25. package/es/components/header/header_section/header_section_item_button.js +1 -1
  26. package/es/components/list_group/list_group.js +1 -1
  27. package/es/components/list_group/list_group_item.js +1 -1
  28. package/es/components/list_group/list_group_item_extra_action.js +1 -1
  29. package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +2 -2
  30. package/es/components/pagination/pagination_button.js +1 -1
  31. package/es/components/resizable_container/resizable_container.js +11 -5
  32. package/eui.d.ts +29 -19
  33. package/i18ntokens.json +66 -12
  34. package/lib/components/bottom_bar/bottom_bar.js +6 -2
  35. package/lib/components/button/button.js +58 -5
  36. package/lib/components/button/button_display/_button_display.js +1 -0
  37. package/lib/components/button/button_empty/button_empty.js +1 -1
  38. package/lib/components/button/button_group/button_group.js +1 -1
  39. package/lib/components/button/button_group/button_group_button.js +1 -1
  40. package/lib/components/button/button_icon/button_icon.js +1 -1
  41. package/lib/components/card/card.js +53 -2
  42. package/lib/components/card/card_select/card_select.js +53 -2
  43. package/lib/components/color_picker/index.js +0 -14
  44. package/lib/components/comment_list/index.js +0 -7
  45. package/lib/components/context_menu/context_menu_item.styles.js +1 -1
  46. package/lib/components/datagrid/body/cell/data_grid_cell.js +94 -74
  47. package/lib/components/datagrid/body/data_grid_body.js +6 -6
  48. package/lib/components/datagrid/body/data_grid_body_custom.js +6 -6
  49. package/lib/components/datagrid/body/data_grid_body_virtualized.js +6 -6
  50. package/lib/components/datagrid/body/header/data_grid_header_cell.js +6 -6
  51. package/lib/components/datagrid/body/header/data_grid_header_row.js +6 -6
  52. package/lib/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
  53. package/lib/components/datagrid/utils/in_memory.js +6 -6
  54. package/lib/components/facet/facet_button.js +1 -0
  55. package/lib/components/flyout/flyout_resizable.js +23 -5
  56. package/lib/components/form/text_area/text_area.js +7 -3
  57. package/lib/components/header/header_links/header_link.js +1 -1
  58. package/lib/components/header/header_section/header_section_item_button.js +1 -1
  59. package/lib/components/list_group/list_group.js +1 -1
  60. package/lib/components/list_group/list_group_item.js +1 -1
  61. package/lib/components/list_group/list_group_item_extra_action.js +1 -1
  62. package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +2 -2
  63. package/lib/components/pagination/pagination_button.js +1 -1
  64. package/lib/components/resizable_container/resizable_container.js +10 -4
  65. package/optimize/es/components/button/button.js +3 -0
  66. package/optimize/es/components/color_picker/index.js +0 -2
  67. package/optimize/es/components/comment_list/index.js +0 -1
  68. package/optimize/es/components/context_menu/context_menu_item.styles.js +1 -1
  69. package/optimize/es/components/datagrid/body/cell/data_grid_cell.js +82 -62
  70. package/optimize/es/components/flyout/flyout_resizable.js +23 -5
  71. package/optimize/es/components/form/text_area/text_area.js +7 -3
  72. package/optimize/es/components/resizable_container/resizable_container.js +11 -5
  73. package/optimize/lib/components/button/button.js +2 -0
  74. package/optimize/lib/components/color_picker/index.js +0 -14
  75. package/optimize/lib/components/comment_list/index.js +0 -7
  76. package/optimize/lib/components/context_menu/context_menu_item.styles.js +1 -1
  77. package/optimize/lib/components/datagrid/body/cell/data_grid_cell.js +82 -62
  78. package/optimize/lib/components/flyout/flyout_resizable.js +23 -5
  79. package/optimize/lib/components/form/text_area/text_area.js +7 -3
  80. package/optimize/lib/components/resizable_container/resizable_container.js +10 -4
  81. package/package.json +1 -1
  82. package/test-env/components/bottom_bar/bottom_bar.js +6 -2
  83. package/test-env/components/button/button.js +58 -5
  84. package/test-env/components/button/button_display/_button_display.js +1 -0
  85. package/test-env/components/button/button_empty/button_empty.js +1 -1
  86. package/test-env/components/button/button_group/button_group.js +1 -1
  87. package/test-env/components/button/button_group/button_group_button.js +1 -1
  88. package/test-env/components/button/button_icon/button_icon.js +1 -1
  89. package/test-env/components/card/card.js +53 -2
  90. package/test-env/components/card/card_select/card_select.js +53 -2
  91. package/test-env/components/color_picker/index.js +0 -14
  92. package/test-env/components/comment_list/index.js +0 -7
  93. package/test-env/components/context_menu/context_menu_item.styles.js +1 -1
  94. package/test-env/components/datagrid/body/cell/data_grid_cell.js +94 -74
  95. package/test-env/components/datagrid/body/data_grid_body.js +6 -6
  96. package/test-env/components/datagrid/body/data_grid_body_custom.js +6 -6
  97. package/test-env/components/datagrid/body/data_grid_body_virtualized.js +6 -6
  98. package/test-env/components/datagrid/body/header/data_grid_header_cell.js +6 -6
  99. package/test-env/components/datagrid/body/header/data_grid_header_row.js +6 -6
  100. package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +1 -1
  101. package/test-env/components/datagrid/utils/in_memory.js +6 -6
  102. package/test-env/components/facet/facet_button.js +1 -0
  103. package/test-env/components/flyout/flyout_resizable.js +23 -5
  104. package/test-env/components/form/text_area/text_area.js +7 -3
  105. package/test-env/components/header/header_links/header_link.js +1 -1
  106. package/test-env/components/header/header_section/header_section_item_button.js +1 -1
  107. package/test-env/components/list_group/list_group.js +1 -1
  108. package/test-env/components/list_group/list_group_item.js +1 -1
  109. package/test-env/components/list_group/list_group_item_extra_action.js +1 -1
  110. package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +2 -2
  111. package/test-env/components/pagination/pagination_button.js +1 -1
  112. package/test-env/components/resizable_container/resizable_container.js +10 -4
@@ -177,7 +177,9 @@ _EuiBottomBar.propTypes = {
177
177
  */
178
178
  bodyClassName: PropTypes.string,
179
179
  /**
180
- * Customize the screen reader heading that helps users find this control. Default is 'Page level controls'.
180
+ * Customize the screen reader heading that helps users find this control.
181
+ *
182
+ * @default Page level controls
181
183
  */
182
184
  landmarkHeading: PropTypes.string,
183
185
  /**
@@ -249,7 +251,9 @@ EuiBottomBar.propTypes = {
249
251
  */
250
252
  bodyClassName: PropTypes.string,
251
253
  /**
252
- * Customize the screen reader heading that helps users find this control. Default is 'Page level controls'.
254
+ * Customize the screen reader heading that helps users find this control.
255
+ *
256
+ * @default Page level controls
253
257
  */
254
258
  landmarkHeading: PropTypes.string,
255
259
  /**
@@ -18,6 +18,9 @@ import { EuiButtonDisplay, isButtonDisabled } from './button_display/_button_dis
18
18
  import { jsx as ___EmotionJSX } from "@emotion/react";
19
19
  export var COLORS = BUTTON_COLORS;
20
20
  export var SIZES = ['s', 'm'];
21
+
22
+ // For some reason, Storybook doesn't parse `EuiButtonDisplayCommonProps` unless we include it here
23
+
21
24
  /**
22
25
  * EuiButton is largely responsible for providing relevant props
23
26
  * and the logic for element-specific attributes
@@ -82,5 +85,56 @@ EuiButton.propTypes = {
82
85
  "aria-label": PropTypes.string,
83
86
  "data-test-subj": PropTypes.string,
84
87
  css: PropTypes.any,
85
- buttonRef: PropTypes.any
88
+ buttonRef: PropTypes.any,
89
+ element: PropTypes.oneOf(["a", "button", "span"]),
90
+ /**
91
+ * Applies the boolean state as the `aria-pressed` property to create a toggle button.
92
+ * *Only use when the readable text does not change between states.*
93
+ */
94
+ isSelected: PropTypes.bool,
95
+ /**
96
+ * Extends the button to 100% width
97
+ */
98
+ fullWidth: PropTypes.bool,
99
+ /**
100
+ * Override the default minimum width
101
+ */
102
+ minWidth: PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.oneOf([false])]),
103
+ /**
104
+ * Force disables the button and changes the icon to a loading spinner
105
+ */
106
+ isLoading: PropTypes.bool,
107
+ /**
108
+ * Object of props passed to the <span/> wrapping the button's content
109
+ */
110
+ contentProps: PropTypes.shape({
111
+ className: PropTypes.string,
112
+ "aria-label": PropTypes.string,
113
+ "data-test-subj": PropTypes.string,
114
+ css: PropTypes.any
115
+ }),
116
+ style: PropTypes.any,
117
+ type: PropTypes.any,
118
+ /**
119
+ * Any `type` accepted by EuiIcon
120
+ */
121
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "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", "check", "checkInCircleFilled", "cheer", "classificationJob", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "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", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "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", "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", "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", "mobile", "monitoringApp", "moon", "namespace", "nested", "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", "plus", "plusInCircle", "plusInCircleFilled", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "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", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "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", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]),
122
+ /**
123
+ * Can only be one side `left` or `right`
124
+ */
125
+ iconSide: PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.oneOf([undefined])]),
126
+ /**
127
+ * Object of props passed to the `<span>` wrapping the content's text/children only (not icon)
128
+ *
129
+ * This span wrapper can be removed by passing `textProps={false}`.
130
+ */
131
+ textProps: PropTypes.oneOfType([PropTypes.shape({
132
+ className: PropTypes.string,
133
+ "aria-label": PropTypes.string,
134
+ "data-test-subj": PropTypes.string,
135
+ css: PropTypes.any,
136
+ ref: PropTypes.any,
137
+ "data-text": PropTypes.string
138
+ }).isRequired, PropTypes.oneOf([false])]),
139
+ iconSize: PropTypes.any
86
140
  };
@@ -164,6 +164,7 @@ EuiButtonDisplay.propTypes = {
164
164
  css: PropTypes.any
165
165
  }),
166
166
  style: PropTypes.any,
167
+ type: PropTypes.any,
167
168
  /**
168
169
  * Any `type` accepted by EuiIcon
169
170
  */
@@ -152,7 +152,7 @@ EuiButtonEmpty.propTypes = {
152
152
  isSelected: PropTypes.bool,
153
153
  target: PropTypes.string,
154
154
  rel: PropTypes.string,
155
- type: PropTypes.oneOf(["button", "submit"]),
155
+ type: PropTypes.any,
156
156
  buttonRef: PropTypes.any,
157
157
  /**
158
158
  * Object of props passed to the `<span>` wrapping the button's content
@@ -134,7 +134,7 @@ EuiButtonGroup.propTypes = {
134
134
  /**
135
135
  * The type of the underlying HTML button
136
136
  */
137
- type: PropTypes.oneOf(["button", "submit", "reset"]),
137
+ type: PropTypes.any,
138
138
  /**
139
139
  * Any `type` accepted by EuiIcon
140
140
  */
@@ -99,7 +99,7 @@ EuiButtonGroupButton.propTypes = {
99
99
  /**
100
100
  * The type of the underlying HTML button
101
101
  */
102
- type: PropTypes.oneOf(["button", "submit", "reset"]),
102
+ type: PropTypes.any,
103
103
  /**
104
104
  * Any `type` accepted by EuiIcon
105
105
  */
@@ -126,7 +126,7 @@ export var EuiButtonIcon = function EuiButtonIcon(_ref) {
126
126
  }, rest), buttonIcon);
127
127
  };
128
128
  EuiButtonIcon.propTypes = {
129
- type: PropTypes.oneOfType([PropTypes.string, PropTypes.oneOf(["submit", "reset", "button"])]),
129
+ type: PropTypes.any,
130
130
  href: PropTypes.string,
131
131
  onClick: PropTypes.func,
132
132
  iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "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", "check", "checkInCircleFilled", "cheer", "classificationJob", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "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", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "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", "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", "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", "mobile", "monitoringApp", "moon", "namespace", "nested", "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", "plus", "plusInCircle", "plusInCircleFilled", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "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", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "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", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]).isRequired,
@@ -436,7 +436,58 @@ EuiCard.propTypes = {
436
436
  "aria-label": PropTypes.string,
437
437
  "data-test-subj": PropTypes.string,
438
438
  css: PropTypes.any,
439
- buttonRef: PropTypes.any
439
+ buttonRef: PropTypes.any,
440
+ element: PropTypes.oneOf(["a", "button", "span"]),
441
+ /**
442
+ * Applies the boolean state as the `aria-pressed` property to create a toggle button.
443
+ * *Only use when the readable text does not change between states.*
444
+ */
445
+ isSelected: PropTypes.bool,
446
+ /**
447
+ * Extends the button to 100% width
448
+ */
449
+ fullWidth: PropTypes.bool,
450
+ /**
451
+ * Override the default minimum width
452
+ */
453
+ minWidth: PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.oneOf([false])]),
454
+ /**
455
+ * Force disables the button and changes the icon to a loading spinner
456
+ */
457
+ isLoading: PropTypes.bool,
458
+ /**
459
+ * Object of props passed to the <span/> wrapping the button's content
460
+ */
461
+ contentProps: PropTypes.shape({
462
+ className: PropTypes.string,
463
+ "aria-label": PropTypes.string,
464
+ "data-test-subj": PropTypes.string,
465
+ css: PropTypes.any
466
+ }),
467
+ style: PropTypes.any,
468
+ type: PropTypes.any,
469
+ /**
470
+ * Any `type` accepted by EuiIcon
471
+ */
472
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "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", "check", "checkInCircleFilled", "cheer", "classificationJob", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "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", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "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", "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", "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", "mobile", "monitoringApp", "moon", "namespace", "nested", "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", "plus", "plusInCircle", "plusInCircleFilled", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "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", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "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", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]),
473
+ /**
474
+ * Can only be one side `left` or `right`
475
+ */
476
+ iconSide: PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.oneOf([undefined])]),
477
+ /**
478
+ * Object of props passed to the `<span>` wrapping the content's text/children only (not icon)
479
+ *
480
+ * This span wrapper can be removed by passing `textProps={false}`.
481
+ */
482
+ textProps: PropTypes.oneOfType([PropTypes.shape({
483
+ className: PropTypes.string,
484
+ "aria-label": PropTypes.string,
485
+ "data-test-subj": PropTypes.string,
486
+ css: PropTypes.any,
487
+ ref: PropTypes.any,
488
+ "data-text": PropTypes.string
489
+ }).isRequired, PropTypes.oneOf([false])]),
490
+ iconSize: PropTypes.any
440
491
  }),
441
492
  /**
442
493
  * Use a border style of card instead of shadow
@@ -71,7 +71,58 @@ EuiCardSelect.propTypes = {
71
71
  "aria-label": PropTypes.string,
72
72
  "data-test-subj": PropTypes.string,
73
73
  css: PropTypes.any,
74
- buttonRef: PropTypes.any
74
+ buttonRef: PropTypes.any,
75
+ element: PropTypes.oneOf(["a", "button", "span"]),
76
+ /**
77
+ * Applies the boolean state as the `aria-pressed` property to create a toggle button.
78
+ * *Only use when the readable text does not change between states.*
79
+ */
80
+ isSelected: PropTypes.bool,
81
+ /**
82
+ * Extends the button to 100% width
83
+ */
84
+ fullWidth: PropTypes.bool,
85
+ /**
86
+ * Override the default minimum width
87
+ */
88
+ minWidth: PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.oneOf([false])]),
89
+ /**
90
+ * Force disables the button and changes the icon to a loading spinner
91
+ */
92
+ isLoading: PropTypes.bool,
93
+ /**
94
+ * Object of props passed to the <span/> wrapping the button's content
95
+ */
96
+ contentProps: PropTypes.shape({
97
+ className: PropTypes.string,
98
+ "aria-label": PropTypes.string,
99
+ "data-test-subj": PropTypes.string,
100
+ css: PropTypes.any
101
+ }),
102
+ style: PropTypes.any,
103
+ type: PropTypes.any,
104
+ /**
105
+ * Any `type` accepted by EuiIcon
106
+ */
107
+ iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "analyzeEvent", "annotation", "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", "check", "checkInCircleFilled", "cheer", "classificationJob", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "codeApp", "color", "compute", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "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", "esqlVis", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "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", "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", "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", "mobile", "monitoringApp", "moon", "namespace", "nested", "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", "plus", "plusInCircle", "plusInCircleFilled", "popout", "push", "questionInCircle", "quote", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "sessionViewer", "shard", "share", "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", "alert", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "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", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]),
108
+ /**
109
+ * Can only be one side `left` or `right`
110
+ */
111
+ iconSide: PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.oneOf([undefined])]),
112
+ /**
113
+ * Object of props passed to the `<span>` wrapping the content's text/children only (not icon)
114
+ *
115
+ * This span wrapper can be removed by passing `textProps={false}`.
116
+ */
117
+ textProps: PropTypes.oneOfType([PropTypes.shape({
118
+ className: PropTypes.string,
119
+ "aria-label": PropTypes.string,
120
+ "data-test-subj": PropTypes.string,
121
+ css: PropTypes.any,
122
+ ref: PropTypes.any,
123
+ "data-text": PropTypes.string
124
+ }).isRequired, PropTypes.oneOf([false])]),
125
+ iconSize: PropTypes.any
75
126
  };
76
127
  function euiCardSelectableText(isSelected, isDisabled, children) {
77
128
  if (children) {
@@ -8,7 +8,5 @@
8
8
 
9
9
  export { EuiColorPicker } from './color_picker';
10
10
  export { EuiColorPickerSwatch } from './color_picker_swatch';
11
- export { EuiHue } from './hue';
12
- export { EuiSaturation } from './saturation';
13
11
  export { EuiColorPalettePicker } from './color_palette_picker';
14
12
  export { EuiColorPaletteDisplay } from './color_palette_display';
@@ -8,5 +8,4 @@
8
8
 
9
9
  export { EuiComment } from './comment';
10
10
  export { EuiCommentEvent } from './comment_event';
11
- export { EuiCommentTimeline } from './comment_timeline';
12
11
  export { EuiCommentList } from './comment_list';
@@ -60,7 +60,7 @@ var _ref6 = process.env.NODE_ENV === "production" ? {
60
60
  export var euiContextMenuItemStyles = function euiContextMenuItemStyles(euiThemeContext) {
61
61
  var euiTheme = euiThemeContext.euiTheme;
62
62
  return {
63
- euiContextMenuItem: /*#__PURE__*/css("display:flex;gap:", euiTheme.size.s, ";", logicalCSS('width', '100%'), " ", logicalTextAlignCSS('left'), " color:", euiTheme.colors.text, ";outline-offset:-", euiTheme.focus.width, ";&:not(:disabled){&:hover,&:focus{text-decoration:underline;}&:focus{background-color:", euiTheme.focus.backgroundColor, ";}};label:euiContextMenuItem;"),
63
+ euiContextMenuItem: /*#__PURE__*/css("display:flex;gap:", euiTheme.size.s, ";", logicalCSS('width', '100%'), " ", logicalTextAlignCSS('left'), " color:", euiTheme.colors.text, ";outline-offset:-", euiTheme.focus.width, ";&:where(a, button):not(:disabled){&:hover,&:focus{text-decoration:underline;}&:focus{background-color:", euiTheme.focus.backgroundColor, ";}};label:euiContextMenuItem;"),
64
64
  disabled: /*#__PURE__*/css("color:", euiTheme.colors.disabledText, ";cursor:default;;label:disabled;"),
65
65
  layoutAlign: {
66
66
  center: _ref6,