@elastic/eui 87.2.0 → 88.0.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 (111) hide show
  1. package/dist/eui_charts_theme.js.map +1 -1
  2. package/dist/eui_theme_dark.css +0 -154
  3. package/dist/eui_theme_dark.min.css +1 -1
  4. package/dist/eui_theme_light.css +0 -154
  5. package/dist/eui_theme_light.min.css +1 -1
  6. package/es/components/color_picker/color_palette_display/color_palette_display.js +3 -6
  7. package/es/components/color_picker/color_palette_display/color_palette_display_fixed.js +2 -5
  8. package/es/components/color_picker/color_palette_display/color_palette_display_gradient.js +2 -5
  9. package/es/components/color_picker/color_palette_picker/color_palette_picker.js +3 -3
  10. package/es/components/color_picker/color_stops/color_stops.js +11 -0
  11. package/es/components/control_bar/control_bar.js +11 -0
  12. package/es/components/datagrid/controls/keyboard_shortcuts.js +0 -1
  13. package/es/components/description_list/description_list.js +28 -12
  14. package/es/components/description_list/description_list.styles.js +19 -6
  15. package/es/components/description_list/description_list_context.js +1 -1
  16. package/es/components/description_list/description_list_description.js +3 -9
  17. package/es/components/description_list/description_list_description.styles.js +3 -9
  18. package/es/components/description_list/description_list_title.js +7 -4
  19. package/es/components/description_list/description_list_title.styles.js +3 -6
  20. package/es/components/description_list/description_list_types.js +4 -2
  21. package/es/components/key_pad_menu/key_pad_menu_item.js +37 -34
  22. package/es/components/key_pad_menu/key_pad_menu_item.styles.js +41 -0
  23. package/es/components/notification/notification_event.js +10 -0
  24. package/es/components/suggest/suggest.js +16 -0
  25. package/es/components/suggest/suggest_item.js +12 -0
  26. package/es/services/color_picker/color_picker.js +4 -0
  27. package/eui.d.ts +2348 -2255
  28. package/i18ntokens.json +144 -144
  29. package/lib/components/color_picker/color_palette_display/color_palette_display.js +3 -6
  30. package/lib/components/color_picker/color_palette_display/color_palette_display_fixed.js +2 -5
  31. package/lib/components/color_picker/color_palette_display/color_palette_display_gradient.js +2 -5
  32. package/lib/components/color_picker/color_palette_picker/color_palette_picker.js +3 -3
  33. package/lib/components/color_picker/color_stops/color_stops.js +10 -1
  34. package/lib/components/control_bar/control_bar.js +10 -1
  35. package/lib/components/datagrid/controls/keyboard_shortcuts.js +0 -1
  36. package/lib/components/description_list/description_list.js +31 -12
  37. package/lib/components/description_list/description_list.styles.js +24 -13
  38. package/lib/components/description_list/description_list_context.js +1 -1
  39. package/lib/components/description_list/description_list_description.js +2 -8
  40. package/lib/components/description_list/description_list_description.styles.js +2 -8
  41. package/lib/components/description_list/description_list_title.js +7 -4
  42. package/lib/components/description_list/description_list_title.styles.js +2 -5
  43. package/lib/components/description_list/description_list_types.js +8 -4
  44. package/lib/components/key_pad_menu/key_pad_menu_item.js +40 -34
  45. package/lib/components/key_pad_menu/key_pad_menu_item.styles.js +49 -0
  46. package/lib/components/notification/notification_event.js +9 -0
  47. package/lib/components/suggest/suggest.js +16 -0
  48. package/lib/components/suggest/suggest_item.js +11 -0
  49. package/lib/services/color_picker/color_picker.js +4 -0
  50. package/optimize/es/components/color_picker/color_stops/color_stops.js +11 -0
  51. package/optimize/es/components/control_bar/control_bar.js +11 -0
  52. package/optimize/es/components/datagrid/controls/keyboard_shortcuts.js +0 -1
  53. package/optimize/es/components/description_list/description_list.js +20 -10
  54. package/optimize/es/components/description_list/description_list.styles.js +19 -6
  55. package/optimize/es/components/description_list/description_list_context.js +1 -1
  56. package/optimize/es/components/description_list/description_list_description.js +3 -9
  57. package/optimize/es/components/description_list/description_list_description.styles.js +3 -9
  58. package/optimize/es/components/description_list/description_list_title.js +7 -4
  59. package/optimize/es/components/description_list/description_list_title.styles.js +3 -6
  60. package/optimize/es/components/description_list/description_list_types.js +4 -2
  61. package/optimize/es/components/key_pad_menu/key_pad_menu_item.js +37 -34
  62. package/optimize/es/components/key_pad_menu/key_pad_menu_item.styles.js +41 -0
  63. package/optimize/es/components/notification/notification_event.js +10 -0
  64. package/optimize/es/components/suggest/suggest.js +16 -0
  65. package/optimize/es/components/suggest/suggest_item.js +12 -0
  66. package/optimize/es/services/color_picker/color_picker.js +4 -0
  67. package/optimize/lib/components/color_picker/color_stops/color_stops.js +10 -1
  68. package/optimize/lib/components/control_bar/control_bar.js +10 -1
  69. package/optimize/lib/components/datagrid/controls/keyboard_shortcuts.js +0 -1
  70. package/optimize/lib/components/description_list/description_list.js +23 -10
  71. package/optimize/lib/components/description_list/description_list.styles.js +24 -13
  72. package/optimize/lib/components/description_list/description_list_context.js +1 -1
  73. package/optimize/lib/components/description_list/description_list_description.js +2 -8
  74. package/optimize/lib/components/description_list/description_list_description.styles.js +2 -8
  75. package/optimize/lib/components/description_list/description_list_title.js +7 -4
  76. package/optimize/lib/components/description_list/description_list_title.styles.js +2 -5
  77. package/optimize/lib/components/description_list/description_list_types.js +8 -4
  78. package/optimize/lib/components/key_pad_menu/key_pad_menu_item.js +40 -34
  79. package/optimize/lib/components/key_pad_menu/key_pad_menu_item.styles.js +49 -0
  80. package/optimize/lib/components/notification/notification_event.js +9 -0
  81. package/optimize/lib/components/suggest/suggest.js +16 -0
  82. package/optimize/lib/components/suggest/suggest_item.js +11 -0
  83. package/optimize/lib/services/color_picker/color_picker.js +4 -0
  84. package/package.json +6 -6
  85. package/src/components/index.scss +0 -1
  86. package/src/themes/amsterdam/overrides/_index.scss +0 -1
  87. package/test-env/components/color_picker/color_palette_display/color_palette_display.js +3 -6
  88. package/test-env/components/color_picker/color_palette_display/color_palette_display_fixed.js +2 -5
  89. package/test-env/components/color_picker/color_palette_display/color_palette_display_gradient.js +2 -5
  90. package/test-env/components/color_picker/color_palette_picker/color_palette_picker.js +3 -3
  91. package/test-env/components/color_picker/color_stops/color_stops.js +10 -1
  92. package/test-env/components/control_bar/control_bar.js +10 -1
  93. package/test-env/components/datagrid/controls/keyboard_shortcuts.js +0 -1
  94. package/test-env/components/description_list/description_list.js +31 -12
  95. package/test-env/components/description_list/description_list.styles.js +24 -13
  96. package/test-env/components/description_list/description_list_context.js +1 -1
  97. package/test-env/components/description_list/description_list_description.js +2 -8
  98. package/test-env/components/description_list/description_list_description.styles.js +2 -8
  99. package/test-env/components/description_list/description_list_title.js +7 -4
  100. package/test-env/components/description_list/description_list_title.styles.js +2 -5
  101. package/test-env/components/description_list/description_list_types.js +8 -4
  102. package/test-env/components/key_pad_menu/key_pad_menu_item.js +40 -34
  103. package/test-env/components/key_pad_menu/key_pad_menu_item.styles.js +49 -0
  104. package/test-env/components/notification/notification_event.js +9 -0
  105. package/test-env/components/suggest/suggest.js +16 -0
  106. package/test-env/components/suggest/suggest_item.js +11 -0
  107. package/test-env/services/color_picker/color_picker.js +4 -0
  108. package/src/components/key_pad_menu/_index.scss +0 -5
  109. package/src/components/key_pad_menu/_key_pad_menu_item.scss +0 -123
  110. package/src/components/key_pad_menu/_variables.scss +0 -2
  111. package/src/themes/amsterdam/overrides/_key_pad_menu.scss +0 -46
package/i18ntokens.json CHANGED
@@ -743,14 +743,14 @@
743
743
  "highlighting": "string",
744
744
  "loc": {
745
745
  "start": {
746
- "line": 534,
746
+ "line": 543,
747
747
  "column": 10,
748
- "index": 15903
748
+ "index": 16200
749
749
  },
750
750
  "end": {
751
- "line": 542,
751
+ "line": 551,
752
752
  "column": 12,
753
- "index": 16383
753
+ "index": 16680
754
754
  }
755
755
  },
756
756
  "filepath": "src/components/color_picker/color_stops/color_stops.tsx"
@@ -977,14 +977,14 @@
977
977
  "highlighting": "string",
978
978
  "loc": {
979
979
  "start": {
980
- "line": 420,
980
+ "line": 430,
981
981
  "column": 6,
982
- "index": 10436
982
+ "index": 10795
983
983
  },
984
984
  "end": {
985
- "line": 423,
985
+ "line": 433,
986
986
  "column": 7,
987
- "index": 10540
987
+ "index": 10899
988
988
  }
989
989
  },
990
990
  "filepath": "src/components/control_bar/control_bar.tsx"
@@ -995,14 +995,14 @@
995
995
  "highlighting": "string",
996
996
  "loc": {
997
997
  "start": {
998
- "line": 458,
998
+ "line": 468,
999
999
  "column": 14,
1000
- "index": 11773
1000
+ "index": 12132
1001
1001
  },
1002
1002
  "end": {
1003
- "line": 462,
1003
+ "line": 472,
1004
1004
  "column": 16,
1005
- "index": 12047
1005
+ "index": 12406
1006
1006
  }
1007
1007
  },
1008
1008
  "filepath": "src/components/control_bar/control_bar.tsx"
@@ -1013,14 +1013,14 @@
1013
1013
  "highlighting": "string",
1014
1014
  "loc": {
1015
1015
  "start": {
1016
- "line": 464,
1016
+ "line": 474,
1017
1017
  "column": 14,
1018
- "index": 12080
1018
+ "index": 12439
1019
1019
  },
1020
1020
  "end": {
1021
- "line": 467,
1021
+ "line": 477,
1022
1022
  "column": 16,
1023
- "index": 12278
1023
+ "index": 12637
1024
1024
  }
1025
1025
  },
1026
1026
  "filepath": "src/components/control_bar/control_bar.tsx"
@@ -1913,14 +1913,14 @@
1913
1913
  "highlighting": "string",
1914
1914
  "loc": {
1915
1915
  "start": {
1916
- "line": 61,
1916
+ "line": 60,
1917
1917
  "column": 20,
1918
- "index": 2107
1918
+ "index": 2080
1919
1919
  },
1920
1920
  "end": {
1921
- "line": 64,
1921
+ "line": 63,
1922
1922
  "column": 22,
1923
- "index": 2243
1923
+ "index": 2216
1924
1924
  }
1925
1925
  },
1926
1926
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -1931,14 +1931,14 @@
1931
1931
  "highlighting": "string",
1932
1932
  "loc": {
1933
1933
  "start": {
1934
- "line": 68,
1934
+ "line": 67,
1935
1935
  "column": 18,
1936
- "index": 2337
1936
+ "index": 2310
1937
1937
  },
1938
1938
  "end": {
1939
- "line": 71,
1939
+ "line": 70,
1940
1940
  "column": 20,
1941
- "index": 2481
1941
+ "index": 2454
1942
1942
  }
1943
1943
  },
1944
1944
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -1949,14 +1949,14 @@
1949
1949
  "highlighting": "string",
1950
1950
  "loc": {
1951
1951
  "start": {
1952
- "line": 77,
1952
+ "line": 76,
1953
1953
  "column": 20,
1954
- "index": 2603
1954
+ "index": 2576
1955
1955
  },
1956
1956
  "end": {
1957
- "line": 80,
1957
+ "line": 79,
1958
1958
  "column": 22,
1959
- "index": 2743
1959
+ "index": 2716
1960
1960
  }
1961
1961
  },
1962
1962
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -1967,14 +1967,14 @@
1967
1967
  "highlighting": "string",
1968
1968
  "loc": {
1969
1969
  "start": {
1970
- "line": 84,
1970
+ "line": 83,
1971
1971
  "column": 18,
1972
- "index": 2837
1972
+ "index": 2810
1973
1973
  },
1974
1974
  "end": {
1975
- "line": 87,
1975
+ "line": 86,
1976
1976
  "column": 20,
1977
- "index": 2985
1977
+ "index": 2958
1978
1978
  }
1979
1979
  },
1980
1980
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -1985,14 +1985,14 @@
1985
1985
  "highlighting": "string",
1986
1986
  "loc": {
1987
1987
  "start": {
1988
- "line": 93,
1988
+ "line": 92,
1989
1989
  "column": 20,
1990
- "index": 3107
1990
+ "index": 3080
1991
1991
  },
1992
1992
  "end": {
1993
- "line": 96,
1993
+ "line": 95,
1994
1994
  "column": 22,
1995
- "index": 3249
1995
+ "index": 3222
1996
1996
  }
1997
1997
  },
1998
1998
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2003,14 +2003,14 @@
2003
2003
  "highlighting": "string",
2004
2004
  "loc": {
2005
2005
  "start": {
2006
- "line": 100,
2006
+ "line": 99,
2007
2007
  "column": 18,
2008
- "index": 3343
2008
+ "index": 3316
2009
2009
  },
2010
2010
  "end": {
2011
- "line": 103,
2011
+ "line": 102,
2012
2012
  "column": 20,
2013
- "index": 3493
2013
+ "index": 3466
2014
2014
  }
2015
2015
  },
2016
2016
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2021,14 +2021,14 @@
2021
2021
  "highlighting": "string",
2022
2022
  "loc": {
2023
2023
  "start": {
2024
- "line": 109,
2024
+ "line": 108,
2025
2025
  "column": 20,
2026
- "index": 3615
2026
+ "index": 3588
2027
2027
  },
2028
2028
  "end": {
2029
- "line": 112,
2029
+ "line": 111,
2030
2030
  "column": 22,
2031
- "index": 3755
2031
+ "index": 3728
2032
2032
  }
2033
2033
  },
2034
2034
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2039,14 +2039,14 @@
2039
2039
  "highlighting": "string",
2040
2040
  "loc": {
2041
2041
  "start": {
2042
- "line": 116,
2042
+ "line": 115,
2043
2043
  "column": 18,
2044
- "index": 3849
2044
+ "index": 3822
2045
2045
  },
2046
2046
  "end": {
2047
- "line": 119,
2047
+ "line": 118,
2048
2048
  "column": 20,
2049
- "index": 3997
2049
+ "index": 3970
2050
2050
  }
2051
2051
  },
2052
2052
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2057,14 +2057,14 @@
2057
2057
  "highlighting": "string",
2058
2058
  "loc": {
2059
2059
  "start": {
2060
- "line": 125,
2060
+ "line": 124,
2061
2061
  "column": 20,
2062
- "index": 4119
2062
+ "index": 4092
2063
2063
  },
2064
2064
  "end": {
2065
- "line": 128,
2065
+ "line": 127,
2066
2066
  "column": 22,
2067
- "index": 4248
2067
+ "index": 4221
2068
2068
  }
2069
2069
  },
2070
2070
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2075,14 +2075,14 @@
2075
2075
  "highlighting": "string",
2076
2076
  "loc": {
2077
2077
  "start": {
2078
- "line": 132,
2078
+ "line": 131,
2079
2079
  "column": 18,
2080
- "index": 4342
2080
+ "index": 4315
2081
2081
  },
2082
2082
  "end": {
2083
- "line": 135,
2083
+ "line": 134,
2084
2084
  "column": 20,
2085
- "index": 4508
2085
+ "index": 4481
2086
2086
  }
2087
2087
  },
2088
2088
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2093,14 +2093,14 @@
2093
2093
  "highlighting": "string",
2094
2094
  "loc": {
2095
2095
  "start": {
2096
- "line": 141,
2096
+ "line": 140,
2097
2097
  "column": 20,
2098
- "index": 4630
2098
+ "index": 4603
2099
2099
  },
2100
2100
  "end": {
2101
- "line": 144,
2101
+ "line": 143,
2102
2102
  "column": 22,
2103
- "index": 4757
2103
+ "index": 4730
2104
2104
  }
2105
2105
  },
2106
2106
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2111,14 +2111,14 @@
2111
2111
  "highlighting": "string",
2112
2112
  "loc": {
2113
2113
  "start": {
2114
- "line": 148,
2114
+ "line": 147,
2115
2115
  "column": 18,
2116
- "index": 4851
2116
+ "index": 4824
2117
2117
  },
2118
2118
  "end": {
2119
- "line": 151,
2119
+ "line": 150,
2120
2120
  "column": 20,
2121
- "index": 5015
2121
+ "index": 4988
2122
2122
  }
2123
2123
  },
2124
2124
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2129,14 +2129,14 @@
2129
2129
  "highlighting": "string",
2130
2130
  "loc": {
2131
2131
  "start": {
2132
- "line": 158,
2132
+ "line": 157,
2133
2133
  "column": 22,
2134
- "index": 5162
2134
+ "index": 5135
2135
2135
  },
2136
2136
  "end": {
2137
- "line": 161,
2137
+ "line": 160,
2138
2138
  "column": 24,
2139
- "index": 5292
2139
+ "index": 5265
2140
2140
  }
2141
2141
  },
2142
2142
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2147,14 +2147,14 @@
2147
2147
  "highlighting": "string",
2148
2148
  "loc": {
2149
2149
  "start": {
2150
- "line": 164,
2150
+ "line": 163,
2151
2151
  "column": 22,
2152
- "index": 5373
2152
+ "index": 5346
2153
2153
  },
2154
2154
  "end": {
2155
- "line": 167,
2155
+ "line": 166,
2156
2156
  "column": 24,
2157
- "index": 5508
2157
+ "index": 5481
2158
2158
  }
2159
2159
  },
2160
2160
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2165,14 +2165,14 @@
2165
2165
  "highlighting": "string",
2166
2166
  "loc": {
2167
2167
  "start": {
2168
- "line": 172,
2168
+ "line": 171,
2169
2169
  "column": 18,
2170
- "index": 5626
2170
+ "index": 5599
2171
2171
  },
2172
2172
  "end": {
2173
- "line": 175,
2173
+ "line": 174,
2174
2174
  "column": 20,
2175
- "index": 5797
2175
+ "index": 5770
2176
2176
  }
2177
2177
  },
2178
2178
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2183,14 +2183,14 @@
2183
2183
  "highlighting": "string",
2184
2184
  "loc": {
2185
2185
  "start": {
2186
- "line": 182,
2186
+ "line": 181,
2187
2187
  "column": 22,
2188
- "index": 5944
2188
+ "index": 5917
2189
2189
  },
2190
2190
  "end": {
2191
- "line": 185,
2191
+ "line": 184,
2192
2192
  "column": 24,
2193
- "index": 6074
2193
+ "index": 6047
2194
2194
  }
2195
2195
  },
2196
2196
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2201,14 +2201,14 @@
2201
2201
  "highlighting": "string",
2202
2202
  "loc": {
2203
2203
  "start": {
2204
- "line": 188,
2204
+ "line": 187,
2205
2205
  "column": 22,
2206
- "index": 6155
2206
+ "index": 6128
2207
2207
  },
2208
2208
  "end": {
2209
- "line": 191,
2209
+ "line": 190,
2210
2210
  "column": 24,
2211
- "index": 6288
2211
+ "index": 6261
2212
2212
  }
2213
2213
  },
2214
2214
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2219,14 +2219,14 @@
2219
2219
  "highlighting": "string",
2220
2220
  "loc": {
2221
2221
  "start": {
2222
- "line": 196,
2222
+ "line": 195,
2223
2223
  "column": 18,
2224
- "index": 6406
2224
+ "index": 6379
2225
2225
  },
2226
2226
  "end": {
2227
- "line": 199,
2227
+ "line": 198,
2228
2228
  "column": 20,
2229
- "index": 6575
2229
+ "index": 6548
2230
2230
  }
2231
2231
  },
2232
2232
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2237,14 +2237,14 @@
2237
2237
  "highlighting": "string",
2238
2238
  "loc": {
2239
2239
  "start": {
2240
- "line": 205,
2240
+ "line": 204,
2241
2241
  "column": 20,
2242
- "index": 6697
2242
+ "index": 6670
2243
2243
  },
2244
2244
  "end": {
2245
- "line": 208,
2245
+ "line": 207,
2246
2246
  "column": 22,
2247
- "index": 6831
2247
+ "index": 6804
2248
2248
  }
2249
2249
  },
2250
2250
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2255,14 +2255,14 @@
2255
2255
  "highlighting": "string",
2256
2256
  "loc": {
2257
2257
  "start": {
2258
- "line": 212,
2258
+ "line": 211,
2259
2259
  "column": 18,
2260
- "index": 6925
2260
+ "index": 6898
2261
2261
  },
2262
2262
  "end": {
2263
- "line": 215,
2263
+ "line": 214,
2264
2264
  "column": 20,
2265
- "index": 7091
2265
+ "index": 7064
2266
2266
  }
2267
2267
  },
2268
2268
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2273,14 +2273,14 @@
2273
2273
  "highlighting": "string",
2274
2274
  "loc": {
2275
2275
  "start": {
2276
- "line": 221,
2276
+ "line": 220,
2277
2277
  "column": 20,
2278
- "index": 7213
2278
+ "index": 7186
2279
2279
  },
2280
2280
  "end": {
2281
- "line": 224,
2281
+ "line": 223,
2282
2282
  "column": 22,
2283
- "index": 7351
2283
+ "index": 7324
2284
2284
  }
2285
2285
  },
2286
2286
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2291,14 +2291,14 @@
2291
2291
  "highlighting": "string",
2292
2292
  "loc": {
2293
2293
  "start": {
2294
- "line": 228,
2294
+ "line": 227,
2295
2295
  "column": 18,
2296
- "index": 7445
2296
+ "index": 7418
2297
2297
  },
2298
2298
  "end": {
2299
- "line": 231,
2299
+ "line": 230,
2300
2300
  "column": 20,
2301
- "index": 7610
2301
+ "index": 7583
2302
2302
  }
2303
2303
  },
2304
2304
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2309,14 +2309,14 @@
2309
2309
  "highlighting": "string",
2310
2310
  "loc": {
2311
2311
  "start": {
2312
- "line": 237,
2312
+ "line": 236,
2313
2313
  "column": 20,
2314
- "index": 7732
2314
+ "index": 7705
2315
2315
  },
2316
2316
  "end": {
2317
- "line": 240,
2317
+ "line": 239,
2318
2318
  "column": 22,
2319
- "index": 7863
2319
+ "index": 7836
2320
2320
  }
2321
2321
  },
2322
2322
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2327,14 +2327,14 @@
2327
2327
  "highlighting": "string",
2328
2328
  "loc": {
2329
2329
  "start": {
2330
- "line": 244,
2330
+ "line": 243,
2331
2331
  "column": 18,
2332
- "index": 7957
2332
+ "index": 7930
2333
2333
  },
2334
2334
  "end": {
2335
- "line": 247,
2335
+ "line": 246,
2336
2336
  "column": 20,
2337
- "index": 8112
2337
+ "index": 8085
2338
2338
  }
2339
2339
  },
2340
2340
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2345,14 +2345,14 @@
2345
2345
  "highlighting": "string",
2346
2346
  "loc": {
2347
2347
  "start": {
2348
- "line": 253,
2348
+ "line": 252,
2349
2349
  "column": 20,
2350
- "index": 8234
2350
+ "index": 8207
2351
2351
  },
2352
2352
  "end": {
2353
- "line": 256,
2353
+ "line": 255,
2354
2354
  "column": 22,
2355
- "index": 8367
2355
+ "index": 8340
2356
2356
  }
2357
2357
  },
2358
2358
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -2363,14 +2363,14 @@
2363
2363
  "highlighting": "string",
2364
2364
  "loc": {
2365
2365
  "start": {
2366
- "line": 260,
2366
+ "line": 259,
2367
2367
  "column": 18,
2368
- "index": 8461
2368
+ "index": 8434
2369
2369
  },
2370
2370
  "end": {
2371
- "line": 263,
2371
+ "line": 262,
2372
2372
  "column": 20,
2373
- "index": 8618
2373
+ "index": 8591
2374
2374
  }
2375
2375
  },
2376
2376
  "filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
@@ -6827,14 +6827,14 @@
6827
6827
  "highlighting": "string",
6828
6828
  "loc": {
6829
6829
  "start": {
6830
- "line": 197,
6830
+ "line": 210,
6831
6831
  "column": 39,
6832
- "index": 4654
6832
+ "index": 5033
6833
6833
  },
6834
6834
  "end": {
6835
- "line": 200,
6835
+ "line": 213,
6836
6836
  "column": 3,
6837
- "index": 4788
6837
+ "index": 5167
6838
6838
  }
6839
6839
  },
6840
6840
  "filepath": "src/components/suggest/suggest.tsx"
@@ -6845,14 +6845,14 @@
6845
6845
  "highlighting": "string",
6846
6846
  "loc": {
6847
6847
  "start": {
6848
- "line": 197,
6848
+ "line": 210,
6849
6849
  "column": 39,
6850
- "index": 4654
6850
+ "index": 5033
6851
6851
  },
6852
6852
  "end": {
6853
- "line": 200,
6853
+ "line": 213,
6854
6854
  "column": 3,
6855
- "index": 4788
6855
+ "index": 5167
6856
6856
  }
6857
6857
  },
6858
6858
  "filepath": "src/components/suggest/suggest.tsx"
@@ -6863,14 +6863,14 @@
6863
6863
  "highlighting": "string",
6864
6864
  "loc": {
6865
6865
  "start": {
6866
- "line": 223,
6866
+ "line": 236,
6867
6867
  "column": 67,
6868
- "index": 5504
6868
+ "index": 5883
6869
6869
  },
6870
6870
  "end": {
6871
- "line": 231,
6871
+ "line": 244,
6872
6872
  "column": 3,
6873
- "index": 5745
6873
+ "index": 6124
6874
6874
  }
6875
6875
  },
6876
6876
  "filepath": "src/components/suggest/suggest.tsx"
@@ -6881,14 +6881,14 @@
6881
6881
  "highlighting": "string",
6882
6882
  "loc": {
6883
6883
  "start": {
6884
- "line": 223,
6884
+ "line": 236,
6885
6885
  "column": 67,
6886
- "index": 5504
6886
+ "index": 5883
6887
6887
  },
6888
6888
  "end": {
6889
- "line": 231,
6889
+ "line": 244,
6890
6890
  "column": 3,
6891
- "index": 5745
6891
+ "index": 6124
6892
6892
  }
6893
6893
  },
6894
6894
  "filepath": "src/components/suggest/suggest.tsx"
@@ -6899,14 +6899,14 @@
6899
6899
  "highlighting": "string",
6900
6900
  "loc": {
6901
6901
  "start": {
6902
- "line": 223,
6902
+ "line": 236,
6903
6903
  "column": 67,
6904
- "index": 5504
6904
+ "index": 5883
6905
6905
  },
6906
6906
  "end": {
6907
- "line": 231,
6907
+ "line": 244,
6908
6908
  "column": 3,
6909
- "index": 5745
6909
+ "index": 6124
6910
6910
  }
6911
6911
  },
6912
6912
  "filepath": "src/components/suggest/suggest.tsx"
@@ -6917,14 +6917,14 @@
6917
6917
  "highlighting": "string",
6918
6918
  "loc": {
6919
6919
  "start": {
6920
- "line": 223,
6920
+ "line": 236,
6921
6921
  "column": 67,
6922
- "index": 5504
6922
+ "index": 5883
6923
6923
  },
6924
6924
  "end": {
6925
- "line": 231,
6925
+ "line": 244,
6926
6926
  "column": 3,
6927
- "index": 5745
6927
+ "index": 6124
6928
6928
  }
6929
6929
  },
6930
6930
  "filepath": "src/components/suggest/suggest.tsx"
@@ -66,13 +66,10 @@ EuiColorPaletteDisplay.propTypes = {
66
66
  "data-test-subj": _propTypes.default.string,
67
67
  css: _propTypes.default.any,
68
68
  /**
69
- * Array of color `strings` or an array of #ColorStop. The stops must be numbers in an ordered range.
69
+ * Array of color `strings` or an array of #PaletteColorStop. The stops must be numbers in an ordered range.
70
70
  */
71
71
  /**
72
- * Array of color `strings` or an array of #ColorStop. The stops must be numbers in an ordered range.
72
+ * Array of color `strings` or an array of #PaletteColorStop. The stops must be numbers in an ordered range.
73
73
  */
74
- palette: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.string.isRequired).isRequired, _propTypes.default.arrayOf(_propTypes.default.shape({
75
- stop: _propTypes.default.number.isRequired,
76
- color: _propTypes.default.string.isRequired
77
- }).isRequired).isRequired]).isRequired
74
+ palette: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.string.isRequired).isRequired, _propTypes.default.arrayOf(_propTypes.default.any.isRequired).isRequired]).isRequired
78
75
  };