@elastic/eui 59.0.0 → 59.1.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 (147) hide show
  1. package/dist/eui_theme_dark.css +2 -136
  2. package/dist/eui_theme_dark.json +0 -6
  3. package/dist/eui_theme_dark.json.d.ts +0 -6
  4. package/dist/eui_theme_dark.min.css +1 -1
  5. package/dist/eui_theme_light.css +2 -136
  6. package/dist/eui_theme_light.json +0 -6
  7. package/dist/eui_theme_light.json.d.ts +0 -6
  8. package/dist/eui_theme_light.min.css +1 -1
  9. package/es/components/accessibility/skip_link/skip_link.js +39 -2
  10. package/es/components/accessibility/skip_link/skip_link.styles.js +1 -1
  11. package/es/components/button/{button_content.js → _button_content_deprecated.js} +4 -3
  12. package/es/components/button/button.js +16 -10
  13. package/es/components/button/button_display/_button_display.js +141 -0
  14. package/es/components/button/button_display/_button_display.styles.js +53 -0
  15. package/es/components/button/button_display/_button_display_content.js +100 -0
  16. package/es/components/button/button_display/_button_display_content.styles.js +61 -0
  17. package/es/components/button/button_empty/button_empty.js +3 -2
  18. package/es/components/button/button_group/button_group.js +2 -1
  19. package/es/components/button/button_group/button_group_button.js +3 -2
  20. package/es/components/call_out/call_out.js +2 -1
  21. package/es/components/card/card.js +2 -1
  22. package/es/components/card/card_select.js +2 -1
  23. package/es/components/date_picker/auto_refresh/auto_refresh.js +2 -1
  24. package/es/components/facet/facet_button.js +31 -15
  25. package/es/components/facet/facet_button.styles.js +64 -0
  26. package/es/components/facet/facet_group.js +12 -23
  27. package/es/components/facet/facet_group.styles.js +79 -0
  28. package/es/components/header/header_links/header_link.js +2 -1
  29. package/es/components/loading/loading_spinner.js +14 -3
  30. package/es/components/loading/loading_spinner.styles.js +4 -4
  31. package/es/components/notification/notification_event.js +2 -1
  32. package/es/components/pagination/pagination_button.js +2 -1
  33. package/es/components/text/text.js +1 -3
  34. package/es/components/text/text_align.js +2 -2
  35. package/es/components/text/text_color.js +7 -3
  36. package/es/themes/amsterdam/index.js +9 -0
  37. package/es/themes/index.js +2 -1
  38. package/eui.d.ts +200 -17
  39. package/lib/components/accessibility/skip_link/skip_link.js +39 -2
  40. package/lib/components/accessibility/skip_link/skip_link.styles.js +1 -1
  41. package/lib/components/button/{button_content.js → _button_content_deprecated.js} +6 -5
  42. package/lib/components/button/button.js +19 -13
  43. package/lib/components/button/button_display/_button_display.js +146 -0
  44. package/lib/components/button/button_display/_button_display.styles.js +59 -0
  45. package/lib/components/button/button_display/_button_display_content.js +111 -0
  46. package/lib/components/button/button_display/_button_display_content.styles.js +64 -0
  47. package/lib/components/button/button_empty/button_empty.js +4 -3
  48. package/lib/components/button/button_group/button_group.js +2 -1
  49. package/lib/components/button/button_group/button_group_button.js +3 -2
  50. package/lib/components/call_out/call_out.js +2 -1
  51. package/lib/components/card/card.js +2 -1
  52. package/lib/components/card/card_select.js +2 -1
  53. package/lib/components/date_picker/auto_refresh/auto_refresh.js +2 -1
  54. package/lib/components/facet/facet_button.js +35 -15
  55. package/lib/components/facet/facet_button.styles.js +79 -0
  56. package/lib/components/facet/facet_group.js +12 -23
  57. package/lib/components/facet/facet_group.styles.js +82 -0
  58. package/lib/components/header/header_links/header_link.js +2 -1
  59. package/lib/components/loading/loading_spinner.js +14 -3
  60. package/lib/components/loading/loading_spinner.styles.js +4 -4
  61. package/lib/components/notification/notification_event.js +2 -1
  62. package/lib/components/text/text.js +1 -3
  63. package/lib/components/text/text_align.js +8 -2
  64. package/lib/components/text/text_color.js +13 -3
  65. package/lib/themes/amsterdam/index.js +18 -0
  66. package/lib/themes/index.js +21 -1
  67. package/optimize/es/components/accessibility/skip_link/skip_link.js +23 -1
  68. package/optimize/es/components/accessibility/skip_link/skip_link.styles.js +1 -1
  69. package/optimize/es/components/button/{button_content.js → _button_content_deprecated.js} +1 -1
  70. package/optimize/es/components/button/button.js +13 -8
  71. package/optimize/es/components/button/button_display/_button_display.js +73 -0
  72. package/optimize/es/components/button/button_display/_button_display.styles.js +53 -0
  73. package/optimize/es/components/button/button_display/_button_display_content.js +67 -0
  74. package/optimize/es/components/button/button_display/_button_display_content.styles.js +61 -0
  75. package/optimize/es/components/button/button_empty/button_empty.js +1 -1
  76. package/optimize/es/components/button/button_group/button_group_button.js +1 -1
  77. package/optimize/es/components/call_out/call_out.js +2 -1
  78. package/optimize/es/components/facet/facet_button.js +31 -15
  79. package/optimize/es/components/facet/facet_button.styles.js +64 -0
  80. package/optimize/es/components/facet/facet_group.js +10 -21
  81. package/optimize/es/components/facet/facet_group.styles.js +79 -0
  82. package/optimize/es/components/loading/loading_spinner.js +3 -2
  83. package/optimize/es/components/loading/loading_spinner.styles.js +4 -4
  84. package/optimize/es/components/text/text.js +1 -3
  85. package/optimize/es/components/text/text_align.js +2 -2
  86. package/optimize/es/components/text/text_color.js +7 -3
  87. package/optimize/es/themes/amsterdam/index.js +9 -0
  88. package/optimize/es/themes/index.js +2 -1
  89. package/optimize/lib/components/accessibility/skip_link/skip_link.js +25 -1
  90. package/optimize/lib/components/accessibility/skip_link/skip_link.styles.js +1 -1
  91. package/optimize/lib/components/button/{button_content.js → _button_content_deprecated.js} +3 -3
  92. package/optimize/lib/components/button/button.js +16 -11
  93. package/optimize/lib/components/button/button_display/_button_display.js +79 -0
  94. package/optimize/lib/components/button/button_display/_button_display.styles.js +59 -0
  95. package/optimize/lib/components/button/button_display/_button_display_content.js +78 -0
  96. package/optimize/lib/components/button/button_display/_button_display_content.styles.js +64 -0
  97. package/optimize/lib/components/button/button_empty/button_empty.js +2 -2
  98. package/optimize/lib/components/button/button_group/button_group_button.js +1 -1
  99. package/optimize/lib/components/call_out/call_out.js +2 -1
  100. package/optimize/lib/components/facet/facet_button.js +35 -15
  101. package/optimize/lib/components/facet/facet_button.styles.js +79 -0
  102. package/optimize/lib/components/facet/facet_group.js +10 -21
  103. package/optimize/lib/components/facet/facet_group.styles.js +82 -0
  104. package/optimize/lib/components/loading/loading_spinner.js +3 -2
  105. package/optimize/lib/components/loading/loading_spinner.styles.js +4 -4
  106. package/optimize/lib/components/text/text.js +1 -3
  107. package/optimize/lib/components/text/text_align.js +8 -2
  108. package/optimize/lib/components/text/text_color.js +13 -3
  109. package/optimize/lib/themes/amsterdam/index.js +18 -0
  110. package/optimize/lib/themes/index.js +21 -1
  111. package/package.json +1 -1
  112. package/src/components/index.scss +0 -1
  113. package/src/components/selectable/selectable_message/_selectable_message.scss +1 -0
  114. package/src/themes/amsterdam/overrides/_index.scss +0 -1
  115. package/test-env/components/accessibility/skip_link/skip_link.js +40 -2
  116. package/test-env/components/accessibility/skip_link/skip_link.styles.js +1 -1
  117. package/test-env/components/button/{button_content.js → _button_content_deprecated.js} +6 -5
  118. package/test-env/components/button/button.js +19 -13
  119. package/test-env/components/button/button_display/_button_display.js +143 -0
  120. package/test-env/components/button/button_display/_button_display.styles.js +59 -0
  121. package/test-env/components/button/button_display/_button_display_content.js +108 -0
  122. package/test-env/components/button/button_display/_button_display_content.styles.js +64 -0
  123. package/test-env/components/button/button_empty/button_empty.js +4 -3
  124. package/test-env/components/button/button_group/button_group.js +2 -1
  125. package/test-env/components/button/button_group/button_group_button.js +3 -2
  126. package/test-env/components/call_out/call_out.js +2 -1
  127. package/test-env/components/card/card.js +2 -1
  128. package/test-env/components/card/card_select.js +2 -1
  129. package/test-env/components/date_picker/auto_refresh/auto_refresh.js +2 -1
  130. package/test-env/components/facet/facet_button.js +35 -15
  131. package/test-env/components/facet/facet_button.styles.js +79 -0
  132. package/test-env/components/facet/facet_group.js +12 -23
  133. package/test-env/components/facet/facet_group.styles.js +82 -0
  134. package/test-env/components/header/header_links/header_link.js +2 -1
  135. package/test-env/components/loading/loading_spinner.js +14 -3
  136. package/test-env/components/loading/loading_spinner.styles.js +4 -4
  137. package/test-env/components/notification/notification_event.js +2 -1
  138. package/test-env/components/text/text.js +1 -3
  139. package/test-env/components/text/text_align.js +8 -2
  140. package/test-env/components/text/text_color.js +13 -3
  141. package/test-env/themes/amsterdam/index.js +18 -0
  142. package/test-env/themes/index.js +21 -1
  143. package/src/components/facet/_facet_button.scss +0 -69
  144. package/src/components/facet/_facet_group.scss +0 -24
  145. package/src/components/facet/_index.scss +0 -4
  146. package/src/components/facet/_variables.scss +0 -6
  147. package/src/themes/amsterdam/overrides/_facet.scss +0 -10
@@ -0,0 +1,146 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.EuiButtonDisplay = void 0;
9
+
10
+ var _react = _interopRequireWildcard(require("react"));
11
+
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+
14
+ var _react2 = require("@emotion/react");
15
+
16
+ var _services = require("../../../services");
17
+
18
+ var _button_display = require("./_button_display.styles");
19
+
20
+ var _button_display_content = require("./_button_display_content");
21
+
22
+ var _excluded = ["element", "children", "iconType", "iconSide", "size", "isDisabled", "isLoading", "isSelected", "fullWidth", "minWidth", "contentProps", "textProps"];
23
+
24
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25
+
26
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
27
+
28
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
29
+
30
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
31
+
32
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
33
+
34
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
35
+
36
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
37
+
38
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
39
+
40
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
41
+
42
+ /**
43
+ * EuiButtonDisplay is an internal-only component used for displaying
44
+ * any element as a button.
45
+ */
46
+ var EuiButtonDisplay = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
47
+ var _ref$element = _ref.element,
48
+ element = _ref$element === void 0 ? 'button' : _ref$element,
49
+ children = _ref.children,
50
+ iconType = _ref.iconType,
51
+ iconSide = _ref.iconSide,
52
+ _ref$size = _ref.size,
53
+ size = _ref$size === void 0 ? 'm' : _ref$size,
54
+ _ref$isDisabled = _ref.isDisabled,
55
+ isDisabled = _ref$isDisabled === void 0 ? false : _ref$isDisabled,
56
+ isLoading = _ref.isLoading,
57
+ isSelected = _ref.isSelected,
58
+ fullWidth = _ref.fullWidth,
59
+ minWidth = _ref.minWidth,
60
+ contentProps = _ref.contentProps,
61
+ textProps = _ref.textProps,
62
+ rest = _objectWithoutProperties(_ref, _excluded);
63
+
64
+ var buttonIsDisabled = isLoading || isDisabled;
65
+ var minWidthPx = minWidth === 'number' ? "".concat(minWidth, "px") : minWidth;
66
+ var theme = (0, _services.useEuiTheme)();
67
+ var styles = (0, _button_display.euiButtonDisplayStyles)(theme, minWidthPx);
68
+ var cssStyles = [styles.euiButtonDisplay, styles[size], fullWidth && styles.fullWidth, isDisabled && styles.isDisabled];
69
+ var innerNode = (0, _react2.jsx)(_button_display_content.EuiButtonDisplayContent, _extends({
70
+ isLoading: isLoading,
71
+ isDisabled: buttonIsDisabled,
72
+ iconType: iconType,
73
+ iconSide: iconSide,
74
+ textProps: _objectSpread({}, textProps)
75
+ }, contentProps), children);
76
+ return (0, _react2.createElement)(element, _objectSpread({
77
+ css: cssStyles,
78
+ disabled: element === 'button' && buttonIsDisabled,
79
+ 'aria-pressed': element === 'button' ? isSelected : undefined,
80
+ ref: ref
81
+ }, rest), innerNode);
82
+ });
83
+ exports.EuiButtonDisplay = EuiButtonDisplay;
84
+ EuiButtonDisplay.propTypes = {
85
+ children: _propTypes.default.node,
86
+ size: _propTypes.default.oneOf(["xs", "s", "m"]),
87
+
88
+ /**
89
+ * Applies the boolean state as the `aria-pressed` property to create a toggle button.
90
+ * *Only use when the readable text does not change between states.*
91
+ */
92
+ isSelected: _propTypes.default.bool,
93
+
94
+ /**
95
+ * Extends the button to 100% width
96
+ */
97
+ fullWidth: _propTypes.default.bool,
98
+
99
+ /**
100
+ * Override the default minimum width
101
+ */
102
+ minWidth: _propTypes.default.any,
103
+
104
+ /**
105
+ * Force disables the button and changes the icon to a loading spinner
106
+ */
107
+ isLoading: _propTypes.default.bool,
108
+
109
+ /**
110
+ * Object of props passed to the <span/> wrapping the button's content
111
+ */
112
+ contentProps: _propTypes.default.any,
113
+ style: _propTypes.default.any,
114
+
115
+ /**
116
+ * Any `type` accepted by EuiIcon
117
+ */
118
+ iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "alert", "analyzeEvent", "annotation", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "asterisk", "auditbeatApp", "beaker", "bell", "bellSlash", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "check", "checkInCircleFilled", "cheer", "classificationJob", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "codeApp", "color", "compute", "console", "consoleApp", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInACircleFilled", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "discoverApp", "document", "documentEdit", "documentation", "documents", "dot", "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", "eql", "eraser", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "inputOutput", "inspect", "invert", "ip", "keyboardShortcut", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "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", "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", "nested", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipelineApp", "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", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spacesApp", "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", "timelionApp", "timeRefresh", "timeslider", "training", "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", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace", "tokenDate", "tokenIP", "tokenNested", "tokenAlias", "tokenShape", "tokenGeo", "tokenRange", "tokenBinary", "tokenJoin", "tokenPercolator", "tokenFlattened", "tokenRankFeature", "tokenRankFeatures", "tokenKeyword", "tokenTag", "tokenCompletionSuggester", "tokenDenseVector", "tokenText", "tokenTokenCount", "tokenSearchType", "tokenHistogram"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.elementType.isRequired]),
119
+
120
+ /**
121
+ * Can only be one side `left` or `right`
122
+ */
123
+ iconSide: _propTypes.default.oneOf(["left", "right", undefined]),
124
+
125
+ /**
126
+ * Object of props passed to the <span/> wrapping the content's text/children only (not icon)
127
+ */
128
+ textProps: _propTypes.default.shape({
129
+ className: _propTypes.default.string,
130
+ "aria-label": _propTypes.default.string,
131
+ "data-test-subj": _propTypes.default.string,
132
+ ref: _propTypes.default.any,
133
+ "data-text": _propTypes.default.string
134
+ }),
135
+ iconSize: _propTypes.default.oneOf(["s", "m"]),
136
+ isDisabled: _propTypes.default.bool.isRequired,
137
+ className: _propTypes.default.string,
138
+ "aria-label": _propTypes.default.string,
139
+ "data-test-subj": _propTypes.default.string,
140
+
141
+ /**
142
+ * Provide a valid element to render the element as
143
+ */
144
+ element: _propTypes.default.oneOf(["a", "button", "span", "label"])
145
+ };
146
+ EuiButtonDisplay.displayName = 'EuiButtonDisplay';
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.euiButtonDisplayStyles = exports.euiButtonBaseCSS = void 0;
7
+
8
+ var _react = require("@emotion/react");
9
+
10
+ var _global_styling = require("../../../global_styling");
11
+
12
+ function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
13
+
14
+ // Provides a solid reset and base for handling sizing layout
15
+ // Does not include any visual styles
16
+ var euiButtonBaseCSS = function euiButtonBaseCSS() {
17
+ return "\n display: inline-block;\n appearance: none;\n cursor: pointer;\n ".concat((0, _global_styling.logicalTextAlignStyle)('center'), ";\n white-space: nowrap;\n ").concat((0, _global_styling.logicalCSS)('max-width', '100%'), ";\n vertical-align: middle;\n ");
18
+ };
19
+
20
+ exports.euiButtonBaseCSS = euiButtonBaseCSS;
21
+
22
+ var _buttonSize = function _buttonSize(size) {
23
+ return "\n ".concat((0, _global_styling.logicalCSS)('height', size), ";\n // prevents descenders from getting cut off\n line-height: ").concat(size, ";\n ");
24
+ };
25
+
26
+ var _ref = process.env.NODE_ENV === "production" ? {
27
+ name: "15xpz7k-fullWidth",
28
+ styles: "display:block;width:100%;label:fullWidth;"
29
+ } : {
30
+ name: "15xpz7k-fullWidth",
31
+ styles: "display:block;width:100%;label:fullWidth;",
32
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
33
+ };
34
+
35
+ var _ref2 = process.env.NODE_ENV === "production" ? {
36
+ name: "8595p9-isDisabled",
37
+ styles: "cursor:not-allowed;label:isDisabled;"
38
+ } : {
39
+ name: "8595p9-isDisabled",
40
+ styles: "cursor:not-allowed;label:isDisabled;",
41
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
42
+ };
43
+
44
+ var euiButtonDisplayStyles = function euiButtonDisplayStyles(euiThemeContext, minWidth) {
45
+ var euiTheme = euiThemeContext.euiTheme;
46
+ return {
47
+ // Base
48
+ euiButtonDisplay: /*#__PURE__*/(0, _react.css)(euiButtonBaseCSS(), ";", minWidth && (0, _global_styling.logicalCSS)('min-width', minWidth), ";;label:euiButtonDisplay;"),
49
+ // States
50
+ isDisabled: _ref2,
51
+ fullWidth: _ref,
52
+ // Sizes
53
+ xs: /*#__PURE__*/(0, _react.css)(_buttonSize(euiTheme.size.l), (0, _global_styling.euiFontSize)(euiThemeContext, 'xs'), ";label:xs;"),
54
+ s: /*#__PURE__*/(0, _react.css)(_buttonSize(euiTheme.size.xl), (0, _global_styling.euiFontSize)(euiThemeContext, 's'), ";label:s;"),
55
+ m: /*#__PURE__*/(0, _react.css)(_buttonSize(euiTheme.size.xxl), (0, _global_styling.euiFontSize)(euiThemeContext, 's'), ";label:m;")
56
+ };
57
+ };
58
+
59
+ exports.euiButtonDisplayStyles = euiButtonDisplayStyles;
@@ -0,0 +1,111 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.EuiButtonDisplayContent = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _propTypes = _interopRequireDefault(require("prop-types"));
11
+
12
+ var _services = require("../../../services");
13
+
14
+ var _loading = require("../../loading");
15
+
16
+ var _icon = require("../../icon");
17
+
18
+ var _button_display_content = require("./_button_display_content.styles");
19
+
20
+ var _react2 = require("@emotion/react");
21
+
22
+ var _excluded = ["children", "textProps", "isLoading", "isDisabled", "iconType", "iconSize", "iconSide"];
23
+
24
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25
+
26
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
27
+
28
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
29
+
30
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
31
+
32
+ var EuiButtonDisplayContent = function EuiButtonDisplayContent(_ref) {
33
+ var children = _ref.children,
34
+ textProps = _ref.textProps,
35
+ _ref$isLoading = _ref.isLoading,
36
+ isLoading = _ref$isLoading === void 0 ? false : _ref$isLoading,
37
+ _ref$isDisabled = _ref.isDisabled,
38
+ isDisabled = _ref$isDisabled === void 0 ? false : _ref$isDisabled,
39
+ iconType = _ref.iconType,
40
+ _ref$iconSize = _ref.iconSize,
41
+ iconSize = _ref$iconSize === void 0 ? 'm' : _ref$iconSize,
42
+ iconSide = _ref.iconSide,
43
+ contentProps = _objectWithoutProperties(_ref, _excluded);
44
+
45
+ var theme = (0, _services.useEuiTheme)();
46
+ var styles = (0, _button_display_content.euiButtonDisplayContentStyles)(theme);
47
+ var cssStyles = [styles.euiButtonDisplayContent, iconSide && styles[iconSide], isDisabled && styles.isDisabled];
48
+ var cssSpinnerStyles = [styles.euiButtonDisplayContent__spinner];
49
+ var cssIconStyles = [styles.euiButtonDisplayContent__icon]; // Add an icon to the button if one exists.
50
+
51
+ var icon; // When the button is disabled the text gets gray
52
+ // and in some buttons the background gets a light gray
53
+ // for better contrast we want to change the border of the spinner
54
+ // to have the same color of the text. This way we ensure the borders
55
+ // are always visible. The default spinner color could be very light.
56
+
57
+ var loadingSpinnerColor = isDisabled ? {
58
+ border: 'currentColor'
59
+ } : undefined;
60
+
61
+ if (isLoading) {
62
+ icon = (0, _react2.jsx)(_loading.EuiLoadingSpinner, {
63
+ css: cssSpinnerStyles,
64
+ size: iconSize,
65
+ color: loadingSpinnerColor
66
+ });
67
+ } else if (iconType) {
68
+ icon = (0, _react2.jsx)(_icon.EuiIcon, {
69
+ css: cssIconStyles,
70
+ type: iconType,
71
+ size: iconSize,
72
+ color: "inherit" // forces the icon to inherit its parent color
73
+
74
+ });
75
+ }
76
+
77
+ var isText = typeof children === 'string';
78
+ return (0, _react2.jsx)("span", _extends({}, contentProps, {
79
+ css: cssStyles
80
+ }), icon, isText ? (0, _react2.jsx)("span", textProps, children) : children);
81
+ };
82
+
83
+ exports.EuiButtonDisplayContent = EuiButtonDisplayContent;
84
+ EuiButtonDisplayContent.propTypes = {
85
+ /**
86
+ * Any `type` accepted by EuiIcon
87
+ */
88
+ iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "alert", "analyzeEvent", "annotation", "apmApp", "apmTrace", "appSearchApp", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "asterisk", "auditbeatApp", "beaker", "bell", "bellSlash", "bolt", "boxesHorizontal", "boxesVertical", "branch", "branchUser", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "casesApp", "check", "checkInCircleFilled", "cheer", "classificationJob", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "codeApp", "color", "compute", "console", "consoleApp", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInACircleFilled", "crosshairs", "currency", "cut", "dashboardApp", "dataVisualizer", "database", "desktop", "devToolsApp", "discoverApp", "document", "documentEdit", "documentation", "documents", "dot", "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", "eql", "eraser", "exit", "expand", "expandMini", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "fleetApp", "fold", "folderCheck", "folderClosed", "folderExclamation", "folderOpen", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "iInCircle", "image", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "inputOutput", "inspect", "invert", "ip", "keyboardShortcut", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "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", "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", "nested", "node", "notebookApp", "number", "offline", "online", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFilled", "pipelineApp", "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", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spacesApp", "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", "timelionApp", "timeRefresh", "timeslider", "training", "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", "watchesApp", "wordWrap", "wordWrapDisabled", "workplaceSearchApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace", "tokenDate", "tokenIP", "tokenNested", "tokenAlias", "tokenShape", "tokenGeo", "tokenRange", "tokenBinary", "tokenJoin", "tokenPercolator", "tokenFlattened", "tokenRankFeature", "tokenRankFeatures", "tokenKeyword", "tokenTag", "tokenCompletionSuggester", "tokenDenseVector", "tokenText", "tokenTokenCount", "tokenSearchType", "tokenHistogram"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.elementType.isRequired]),
89
+
90
+ /**
91
+ * Can only be one side `left` or `right`
92
+ */
93
+ iconSide: _propTypes.default.oneOf(["left", "right", undefined]),
94
+ isLoading: _propTypes.default.bool,
95
+
96
+ /**
97
+ * Object of props passed to the <span/> wrapping the content's text/children only (not icon)
98
+ */
99
+ textProps: _propTypes.default.shape({
100
+ className: _propTypes.default.string,
101
+ "aria-label": _propTypes.default.string,
102
+ "data-test-subj": _propTypes.default.string,
103
+ ref: _propTypes.default.any,
104
+ "data-text": _propTypes.default.string
105
+ }),
106
+ iconSize: _propTypes.default.oneOf(["s", "m"]),
107
+ isDisabled: _propTypes.default.bool.isRequired,
108
+ className: _propTypes.default.string,
109
+ "aria-label": _propTypes.default.string,
110
+ "data-test-subj": _propTypes.default.string
111
+ };
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.euiButtonDisplayContentStyles = void 0;
7
+
8
+ var _react = require("@emotion/react");
9
+
10
+ var _global_styling = require("../../../global_styling");
11
+
12
+ function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
13
+
14
+ var _ref = process.env.NODE_ENV === "production" ? {
15
+ name: "ske5nx-isDisabled",
16
+ styles: "pointer-events:auto;cursor:not-allowed;label:isDisabled;"
17
+ } : {
18
+ name: "ske5nx-isDisabled",
19
+ styles: "pointer-events:auto;cursor:not-allowed;label:isDisabled;",
20
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
21
+ };
22
+
23
+ var _ref2 = process.env.NODE_ENV === "production" ? {
24
+ name: "gtg6j-euiButtonDisplayContent__icon",
25
+ styles: "flex-shrink:0;label:euiButtonDisplayContent__icon;"
26
+ } : {
27
+ name: "gtg6j-euiButtonDisplayContent__icon",
28
+ styles: "flex-shrink:0;label:euiButtonDisplayContent__icon;",
29
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
30
+ };
31
+
32
+ var _ref3 = process.env.NODE_ENV === "production" ? {
33
+ name: "10wlo76-euiButtonDisplayContent__spinner",
34
+ styles: "flex-shrink:0;label:euiButtonDisplayContent__spinner;"
35
+ } : {
36
+ name: "10wlo76-euiButtonDisplayContent__spinner",
37
+ styles: "flex-shrink:0;label:euiButtonDisplayContent__spinner;",
38
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
39
+ };
40
+
41
+ var _ref4 = process.env.NODE_ENV === "production" ? {
42
+ name: "qfl6yj-right",
43
+ styles: "flex-direction:row-reverse;label:right;"
44
+ } : {
45
+ name: "qfl6yj-right",
46
+ styles: "flex-direction:row-reverse;label:right;",
47
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
48
+ };
49
+
50
+ var euiButtonDisplayContentStyles = function euiButtonDisplayContentStyles(_ref5) {
51
+ var euiTheme = _ref5.euiTheme;
52
+ return {
53
+ // Base
54
+ euiButtonDisplayContent: /*#__PURE__*/(0, _react.css)((0, _global_styling.logicalCSS)('height', '100%'), ";", (0, _global_styling.logicalCSS)('width', '100%'), ";display:flex;justify-content:center;align-items:center;vertical-align:middle;gap:", euiTheme.size.s, ";;label:euiButtonDisplayContent;"),
55
+ // Icon side
56
+ left: /*#__PURE__*/(0, _react.css)(";label:left;"),
57
+ right: _ref4,
58
+ euiButtonDisplayContent__spinner: _ref3,
59
+ euiButtonDisplayContent__icon: _ref2,
60
+ isDisabled: _ref
61
+ };
62
+ };
63
+
64
+ exports.euiButtonDisplayContentStyles = euiButtonDisplayContentStyles;
@@ -15,7 +15,7 @@ var _common = require("../../common");
15
15
 
16
16
  var _services = require("../../../services");
17
17
 
18
- var _button_content = require("../button_content");
18
+ var _button_content_deprecated = require("../_button_content_deprecated");
19
19
 
20
20
  var _href_validator = require("../../../services/security/href_validator");
21
21
 
@@ -104,7 +104,7 @@ var EuiButtonEmpty = function EuiButtonEmpty(_ref) {
104
104
  }, className);
105
105
  var contentClassNames = (0, _classnames.default)('euiButtonEmpty__content', contentProps && contentProps.className);
106
106
  var textClassNames = (0, _classnames.default)('euiButtonEmpty__text', textProps && textProps.className);
107
- var innerNode = (0, _react2.jsx)(_button_content.EuiButtonContent, _extends({
107
+ var innerNode = (0, _react2.jsx)(_button_content_deprecated.EuiButtonContentDeprecated, _extends({
108
108
  isLoading: isLoading,
109
109
  iconType: iconType,
110
110
  iconSide: iconSide,
@@ -215,7 +215,8 @@ EuiButtonEmpty.propTypes = {
215
215
  iconSide: _propTypes.default.oneOf(["left", "right"]),
216
216
 
217
217
  /**
218
- * Object of props passed to the <span/> wrapping the content's text/children only (not icon)
218
+ * Object of props passed to the <span/> wrapping the content's text (only if the children is a `string`)
219
+ * It doesn't apply to the icon.
219
220
  */
220
221
  textProps: _propTypes.default.shape({
221
222
  className: _propTypes.default.string,
@@ -183,7 +183,8 @@ EuiButtonGroup.propTypes = {
183
183
  isLoading: _propTypes.default.bool,
184
184
 
185
185
  /**
186
- * Object of props passed to the <span/> wrapping the content's text/children only (not icon)
186
+ * Object of props passed to the <span/> wrapping the content's text (only if the children is a `string`)
187
+ * It doesn't apply to the icon.
187
188
  */
188
189
  textProps: _propTypes.default.shape({
189
190
  className: _propTypes.default.string,
@@ -115,7 +115,7 @@ var EuiButtonGroupButton = function EuiButtonGroupButton(_ref) {
115
115
  buttonTextRef = _useInnerText2[0],
116
116
  innerText = _useInnerText2[1];
117
117
 
118
- return (0, _react2.jsx)(_button.EuiButtonDisplay, _extends({
118
+ return (0, _react2.jsx)(_button.EuiButtonDisplayDeprecated, _extends({
119
119
  baseClassName: "euiButtonGroupButton",
120
120
  className: buttonClasses,
121
121
  element: el,
@@ -170,7 +170,8 @@ EuiButtonGroupButton.propTypes = {
170
170
  isLoading: _propTypes.default.bool,
171
171
 
172
172
  /**
173
- * Object of props passed to the <span/> wrapping the content's text/children only (not icon)
173
+ * Object of props passed to the <span/> wrapping the content's text (only if the children is a `string`)
174
+ * It doesn't apply to the icon.
174
175
  */
175
176
  textProps: _propTypes.default.shape({
176
177
  className: _propTypes.default.string,
@@ -109,7 +109,8 @@ var EuiCallOut = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
109
109
  css: cssStyles,
110
110
  paddingSize: size === 's' ? 's' : 'm',
111
111
  className: classes,
112
- panelRef: ref
112
+ panelRef: ref,
113
+ grow: false
113
114
  }, rest), header, optionalChildren);
114
115
  });
115
116
  exports.EuiCallOut = EuiCallOut;
@@ -430,7 +430,8 @@ EuiCard.propTypes = {
430
430
  iconSide: _propTypes.default.oneOf(["left", "right"]),
431
431
 
432
432
  /**
433
- * Object of props passed to the <span/> wrapping the content's text/children only (not icon)
433
+ * Object of props passed to the <span/> wrapping the content's text (only if the children is a `string`)
434
+ * It doesn't apply to the icon.
434
435
  */
435
436
  textProps: _propTypes.default.shape({
436
437
  className: _propTypes.default.string,
@@ -127,7 +127,8 @@ EuiCardSelect.propTypes = {
127
127
  iconSide: _propTypes.default.oneOf(["left", "right"]),
128
128
 
129
129
  /**
130
- * Object of props passed to the <span/> wrapping the content's text/children only (not icon)
130
+ * Object of props passed to the <span/> wrapping the content's text (only if the children is a `string`)
131
+ * It doesn't apply to the icon.
131
132
  */
132
133
  textProps: _propTypes.default.shape({
133
134
  className: _propTypes.default.string,
@@ -228,7 +228,8 @@ EuiAutoRefreshButton.propTypes = {
228
228
  contentProps: _propTypes.default.any,
229
229
 
230
230
  /**
231
- * Object of props passed to the <span/> wrapping the content's text/children only (not icon)
231
+ * Object of props passed to the <span/> wrapping the content's text (only if the children is a `string`)
232
+ * It doesn't apply to the icon.
232
233
  */
233
234
  textProps: _propTypes.default.shape({
234
235
  className: _propTypes.default.string,
@@ -17,6 +17,14 @@ var _loading = require("../loading");
17
17
 
18
18
  var _inner_text = require("../inner_text");
19
19
 
20
+ var _clone_element = require("../../services/theme/clone_element");
21
+
22
+ var _services = require("../../services");
23
+
24
+ var _facet_button = require("./facet_button.styles");
25
+
26
+ var _button_display = require("../button/button_display/_button_display");
27
+
20
28
  var _react2 = require("@emotion/react");
21
29
 
22
30
  var _excluded = ["children", "className", "icon", "isDisabled", "isLoading", "isSelected", "quantity", "buttonRef"];
@@ -45,20 +53,30 @@ var EuiFacetButton = function EuiFacetButton(_ref) {
45
53
 
46
54
  // If in the loading state, force disabled to true
47
55
  isDisabled = isLoading ? true : isDisabled;
48
- var classes = (0, _classnames.default)('euiFacetButton', {
49
- 'euiFacetButton--isSelected': isSelected,
50
- 'euiFacetButton--unSelected': !isSelected
51
- }, className); // Add quantity number if provided or loading indicator
56
+ var selection = isSelected ? 'isSelected' : 'unSelected';
57
+ var classes = (0, _classnames.default)('euiFacetButton', className);
58
+ var theme = (0, _services.useEuiTheme)();
59
+ var styles = (0, _facet_button.euiFacetButtonStyles)(theme);
60
+ var cssStyles = [styles.euiFacetButton];
61
+ var textStyles = (0, _facet_button.euiFacetButtonTextStyles)(theme);
62
+ var cssTextStyles = [textStyles.euiFacetButton__text, textStyles[selection]];
63
+ var quantityStyles = (0, _facet_button.euiFacetButtonQuantityStyles)();
64
+ var cssQuantityStyles = [quantityStyles.euiFacetButton__quantity, isDisabled && quantityStyles.isDisabled];
65
+ var iconStyles = (0, _facet_button.euiFacetButtonIconStyles)();
66
+ var cssIconStyles = [iconStyles.euiFacetButton__icon, isDisabled && quantityStyles.isDisabled];
67
+ var loadingSpinnerStyles = (0, _facet_button.euiFacetButtonLoadingSpinnerStyles)();
68
+ var cssLoadingSpinnerStyles = [loadingSpinnerStyles.euiFacetButton__loadingSpinner]; // Add quantity number if provided or loading indicator
52
69
 
53
70
  var buttonQuantity;
54
71
 
55
72
  if (isLoading) {
56
73
  buttonQuantity = (0, _react2.jsx)(_loading.EuiLoadingSpinner, {
57
- className: "euiFacetButton__spinner",
74
+ css: cssLoadingSpinnerStyles,
58
75
  size: "m"
59
76
  });
60
77
  } else if (typeof quantity === 'number') {
61
78
  buttonQuantity = (0, _react2.jsx)(_badge.EuiNotificationBadge, {
79
+ css: cssQuantityStyles,
62
80
  className: "euiFacetButton__quantity",
63
81
  size: "m",
64
82
  color: !isSelected || isDisabled ? 'subdued' : 'accent'
@@ -69,25 +87,27 @@ var EuiFacetButton = function EuiFacetButton(_ref) {
69
87
  var buttonIcon;
70
88
 
71
89
  if ( /*#__PURE__*/_react.default.isValidElement(icon)) {
72
- buttonIcon = /*#__PURE__*/_react.default.cloneElement(icon, {
73
- className: (0, _classnames.default)(icon.props.className, 'euiFacetButton__icon')
90
+ buttonIcon = (0, _clone_element.cloneElementWithCss)(icon, {
91
+ css: cssIconStyles,
92
+ className: 'euiFacetButton__icon'
74
93
  });
75
94
  }
76
95
 
77
96
  return (0, _react2.jsx)(_inner_text.EuiInnerText, null, function (ref, innerText) {
78
- return (0, _react2.jsx)("button", _extends({
97
+ return (0, _react2.jsx)(_button_display.EuiButtonDisplay, _extends({
79
98
  className: classes,
80
- disabled: isDisabled,
81
- type: "button",
99
+ css: cssStyles,
100
+ element: "button",
101
+ isDisabled: isDisabled,
82
102
  ref: buttonRef,
83
- title: rest['aria-label'] || innerText
84
- }, rest), (0, _react2.jsx)("span", {
85
- className: "euiFacetButton__content"
86
- }, buttonIcon, (0, _react2.jsx)("span", {
103
+ title: rest['aria-label'] || innerText,
104
+ size: "s"
105
+ }, rest), buttonIcon, (0, _react2.jsx)("span", {
106
+ css: cssTextStyles,
87
107
  className: "euiFacetButton__text",
88
108
  "data-text": innerText,
89
109
  ref: ref
90
- }, children), buttonQuantity));
110
+ }, children), buttonQuantity);
91
111
  });
92
112
  };
93
113