@elastic/eui 117.0.0 → 117.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.
- package/es/components/flyout/_flyout_resize_button.styles.js +2 -2
- package/es/components/flyout/flyout.styles.js +2 -2
- package/es/components/icon/icon_map.js +1881 -913
- package/es/components/panel/panel.styles.js +3 -3
- package/es/components/panel/split_panel/split_panel.styles.js +4 -4
- package/es/components/search_bar/query/execute_ast.js +4 -6
- package/es/test/rtl/render_hook.js +10 -3
- package/eui.d.ts +483 -457
- package/lib/components/flyout/_flyout_resize_button.styles.js +2 -2
- package/lib/components/flyout/flyout.styles.js +2 -2
- package/lib/components/icon/icon_map.js +1882 -914
- package/lib/components/panel/panel.styles.js +3 -3
- package/lib/components/panel/split_panel/split_panel.styles.js +4 -4
- package/lib/components/search_bar/query/execute_ast.js +4 -6
- package/lib/test/rtl/render_hook.js +10 -3
- package/optimize/es/components/flyout/_flyout_resize_button.styles.js +2 -2
- package/optimize/es/components/flyout/flyout.styles.js +2 -2
- package/optimize/es/components/icon/icon_map.js +1876 -913
- package/optimize/es/components/panel/panel.styles.js +3 -3
- package/optimize/es/components/panel/split_panel/split_panel.styles.js +4 -4
- package/optimize/es/components/search_bar/query/execute_ast.js +4 -6
- package/optimize/es/test/rtl/render_hook.js +10 -3
- package/optimize/lib/components/flyout/_flyout_resize_button.styles.js +2 -2
- package/optimize/lib/components/flyout/flyout.styles.js +2 -2
- package/optimize/lib/components/icon/icon_map.js +1877 -914
- package/optimize/lib/components/panel/panel.styles.js +3 -3
- package/optimize/lib/components/panel/split_panel/split_panel.styles.js +4 -4
- package/optimize/lib/components/search_bar/query/execute_ast.js +4 -6
- package/optimize/lib/test/rtl/render_hook.js +10 -3
- package/package.json +3 -21
- package/test-env/components/flyout/_flyout_resize_button.styles.js +2 -2
- package/test-env/components/flyout/flyout.styles.js +2 -2
- package/test-env/components/icon/icon_map.js +1877 -914
- package/test-env/components/panel/panel.styles.js +3 -3
- package/test-env/components/panel/split_panel/split_panel.styles.js +4 -4
- package/test-env/components/search_bar/query/execute_ast.js +4 -6
- package/test-env/test/rtl/render_hook.js +10 -3
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
|
|
2
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
3
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
4
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
5
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
6
|
+
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
|
|
1
7
|
/*
|
|
2
8
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
3
9
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
@@ -6,58 +12,96 @@
|
|
|
6
12
|
* Side Public License, v 1.
|
|
7
13
|
*/
|
|
8
14
|
|
|
15
|
+
var withMetadata = function withMetadata(loader) {
|
|
16
|
+
var metadata = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
17
|
+
return Object.assign(loader, {
|
|
18
|
+
metadata: metadata
|
|
19
|
+
});
|
|
20
|
+
};
|
|
9
21
|
export var typeToPathMap = {
|
|
10
|
-
accessibility: function
|
|
22
|
+
accessibility: withMetadata(function () {
|
|
11
23
|
return import('./assets/accessibility');
|
|
12
|
-
},
|
|
13
|
-
|
|
24
|
+
}, {
|
|
25
|
+
synonyms: ['a11y', 'inclusive', 'disability', 'wcag', 'assistive', 'screen reader', 'universal design']
|
|
26
|
+
}),
|
|
27
|
+
addDataApp: withMetadata(function () {
|
|
14
28
|
return import('./assets/app_add_data');
|
|
15
|
-
},
|
|
29
|
+
}, {
|
|
30
|
+
category: 'app'
|
|
31
|
+
}),
|
|
16
32
|
addToChat: function addToChat() {
|
|
17
33
|
return import('./assets/add_to_chat');
|
|
18
34
|
},
|
|
19
|
-
addToDashboard: function
|
|
35
|
+
addToDashboard: withMetadata(function () {
|
|
20
36
|
return import('./assets/add_to_dashboard');
|
|
21
|
-
},
|
|
22
|
-
|
|
37
|
+
}, {
|
|
38
|
+
synonyms: ['dashboard', 'add', 'pin', 'widget', 'panel', 'insert', 'save view']
|
|
39
|
+
}),
|
|
40
|
+
advancedSettingsApp: withMetadata(function () {
|
|
23
41
|
return import('./assets/app_advanced_settings');
|
|
24
|
-
},
|
|
25
|
-
|
|
42
|
+
}, {
|
|
43
|
+
category: 'app'
|
|
44
|
+
}),
|
|
45
|
+
agentApp: withMetadata(function () {
|
|
26
46
|
return import('./assets/app_fleet');
|
|
27
|
-
},
|
|
28
|
-
|
|
47
|
+
}, {
|
|
48
|
+
category: 'app'
|
|
49
|
+
}),
|
|
50
|
+
aggregate: withMetadata(function () {
|
|
29
51
|
return import('./assets/aggregate');
|
|
30
|
-
},
|
|
31
|
-
|
|
52
|
+
}, {
|
|
53
|
+
synonyms: ['combine', 'sum', 'group', 'collection', 'merge', 'total', 'rollup']
|
|
54
|
+
}),
|
|
55
|
+
alignBottom: withMetadata(function () {
|
|
32
56
|
return import('./assets/align_bottom');
|
|
33
|
-
},
|
|
34
|
-
|
|
57
|
+
}, {
|
|
58
|
+
synonyms: ['align', 'bottom', 'vertical', 'position', 'layout', 'dock']
|
|
59
|
+
}),
|
|
60
|
+
alignBottomLeft: withMetadata(function () {
|
|
35
61
|
return import('./assets/align_bottom_left');
|
|
36
|
-
},
|
|
37
|
-
|
|
62
|
+
}, {
|
|
63
|
+
synonyms: ['align', 'bottom', 'left', 'corner', 'position', 'layout']
|
|
64
|
+
}),
|
|
65
|
+
alignBottomRight: withMetadata(function () {
|
|
38
66
|
return import('./assets/align_bottom_right');
|
|
39
|
-
},
|
|
40
|
-
|
|
67
|
+
}, {
|
|
68
|
+
synonyms: ['align', 'bottom', 'right', 'corner', 'position', 'layout']
|
|
69
|
+
}),
|
|
70
|
+
alignCenterHorizontal: withMetadata(function () {
|
|
41
71
|
return import('./assets/align_center_horizontal');
|
|
42
|
-
},
|
|
43
|
-
|
|
72
|
+
}, {
|
|
73
|
+
synonyms: ['align', 'center', 'horizontal', 'middle', 'position', 'layout']
|
|
74
|
+
}),
|
|
75
|
+
alignCenterVertical: withMetadata(function () {
|
|
44
76
|
return import('./assets/align_center_vertical');
|
|
45
|
-
},
|
|
46
|
-
|
|
77
|
+
}, {
|
|
78
|
+
synonyms: ['align', 'center', 'vertical', 'middle', 'position', 'layout']
|
|
79
|
+
}),
|
|
80
|
+
alignLeft: withMetadata(function () {
|
|
47
81
|
return import('./assets/align_left');
|
|
48
|
-
},
|
|
49
|
-
|
|
82
|
+
}, {
|
|
83
|
+
synonyms: ['align', 'left', 'horizontal', 'position', 'layout', 'flush']
|
|
84
|
+
}),
|
|
85
|
+
alignRight: withMetadata(function () {
|
|
50
86
|
return import('./assets/align_right');
|
|
51
|
-
},
|
|
52
|
-
|
|
87
|
+
}, {
|
|
88
|
+
synonyms: ['align', 'right', 'horizontal', 'position', 'layout', 'flush']
|
|
89
|
+
}),
|
|
90
|
+
alignTop: withMetadata(function () {
|
|
53
91
|
return import('./assets/align_top');
|
|
54
|
-
},
|
|
55
|
-
|
|
92
|
+
}, {
|
|
93
|
+
synonyms: ['align', 'top', 'vertical', 'position', 'layout', 'dock']
|
|
94
|
+
}),
|
|
95
|
+
alignTopLeft: withMetadata(function () {
|
|
56
96
|
return import('./assets/align_top_left');
|
|
57
|
-
},
|
|
58
|
-
|
|
97
|
+
}, {
|
|
98
|
+
synonyms: ['align', 'top', 'left', 'corner', 'position', 'layout']
|
|
99
|
+
}),
|
|
100
|
+
alignTopRight: withMetadata(function () {
|
|
59
101
|
return import('./assets/align_top_right');
|
|
60
|
-
},
|
|
102
|
+
}, {
|
|
103
|
+
synonyms: ['align', 'top', 'right', 'corner', 'position', 'layout']
|
|
104
|
+
}),
|
|
61
105
|
alert: function alert() {
|
|
62
106
|
return import('./assets/warning');
|
|
63
107
|
},
|
|
@@ -72,25 +116,33 @@ export var typeToPathMap = {
|
|
|
72
116
|
return import('./assets/chart_anomaly');
|
|
73
117
|
},
|
|
74
118
|
// NOTE: To be deprecated in favor of chartAnomaly
|
|
75
|
-
chartAnomaly: function
|
|
119
|
+
chartAnomaly: withMetadata(function () {
|
|
76
120
|
return import('./assets/chart_anomaly');
|
|
77
|
-
},
|
|
121
|
+
}, {
|
|
122
|
+
synonyms: ['anomaly', 'chart', 'outlier', 'detection', 'spike', 'unusual']
|
|
123
|
+
}),
|
|
78
124
|
anomalySwimLane: function anomalySwimLane() {
|
|
79
125
|
return import('./assets/anomaly_swim_lane');
|
|
80
126
|
},
|
|
81
|
-
apmApp: function
|
|
127
|
+
apmApp: withMetadata(function () {
|
|
82
128
|
return import('./assets/app_apm');
|
|
83
|
-
},
|
|
129
|
+
}, {
|
|
130
|
+
category: 'app'
|
|
131
|
+
}),
|
|
84
132
|
apmTrace: function apmTrace() {
|
|
85
133
|
return import('./assets/chart_waterfall');
|
|
86
134
|
},
|
|
87
135
|
// NOTE: To be deprecated in favor of chartWaterfall
|
|
88
|
-
chartWaterfall: function
|
|
136
|
+
chartWaterfall: withMetadata(function () {
|
|
89
137
|
return import('./assets/chart_waterfall');
|
|
90
|
-
},
|
|
91
|
-
|
|
138
|
+
}, {
|
|
139
|
+
synonyms: ['waterfall chart', 'cascade', 'steps', 'bridge', 'cumulative', 'breakdown']
|
|
140
|
+
}),
|
|
141
|
+
appSearchApp: withMetadata(function () {
|
|
92
142
|
return import('./assets/app_app_search');
|
|
93
|
-
},
|
|
143
|
+
}, {
|
|
144
|
+
category: 'app'
|
|
145
|
+
}),
|
|
94
146
|
apps: function apps() {
|
|
95
147
|
return import('./assets/apps');
|
|
96
148
|
},
|
|
@@ -98,87 +150,123 @@ export var typeToPathMap = {
|
|
|
98
150
|
return import('./assets/chevron_single_down');
|
|
99
151
|
},
|
|
100
152
|
// NOTE: To be deprecated in favor of chevronSingleDown
|
|
101
|
-
chevronSingleDown: function
|
|
153
|
+
chevronSingleDown: withMetadata(function () {
|
|
102
154
|
return import('./assets/chevron_single_down');
|
|
103
|
-
},
|
|
155
|
+
}, {
|
|
156
|
+
synonyms: ['chevron', 'down', 'dropdown', 'expand', 'arrow', 'caret']
|
|
157
|
+
}),
|
|
104
158
|
arrowLeft: function arrowLeft() {
|
|
105
159
|
return import('./assets/chevron_single_left');
|
|
106
160
|
},
|
|
107
161
|
// NOTE: To be deprecated in favor of chevronSingleLeft
|
|
108
|
-
chevronSingleLeft: function
|
|
162
|
+
chevronSingleLeft: withMetadata(function () {
|
|
109
163
|
return import('./assets/chevron_single_left');
|
|
110
|
-
},
|
|
164
|
+
}, {
|
|
165
|
+
synonyms: ['chevron', 'left', 'back', 'previous', 'arrow', 'caret']
|
|
166
|
+
}),
|
|
111
167
|
arrowRight: function arrowRight() {
|
|
112
168
|
return import('./assets/chevron_single_right');
|
|
113
169
|
},
|
|
114
|
-
// NOTE: To be deprecated in favor of
|
|
115
|
-
chevronSingleRight: function
|
|
170
|
+
// NOTE: To be deprecated in favor of chevronSingleRight
|
|
171
|
+
chevronSingleRight: withMetadata(function () {
|
|
116
172
|
return import('./assets/chevron_single_right');
|
|
117
|
-
},
|
|
173
|
+
}, {
|
|
174
|
+
synonyms: ['chevron', 'right', 'next', 'forward', 'arrow', 'caret']
|
|
175
|
+
}),
|
|
118
176
|
arrowUp: function arrowUp() {
|
|
119
177
|
return import('./assets/chevron_single_up');
|
|
120
178
|
},
|
|
121
179
|
// NOTE: To be deprecated in favor of chevronSingleUp
|
|
122
|
-
chevronSingleUp: function
|
|
180
|
+
chevronSingleUp: withMetadata(function () {
|
|
123
181
|
return import('./assets/chevron_single_up');
|
|
124
|
-
},
|
|
182
|
+
}, {
|
|
183
|
+
synonyms: ['chevron', 'up', 'collapse', 'arrow', 'caret']
|
|
184
|
+
}),
|
|
125
185
|
arrowStart: function arrowStart() {
|
|
126
186
|
return import('./assets/chevron_limit_left');
|
|
127
187
|
},
|
|
128
188
|
// NOTE: To be deprecated in favor of chevronLimitLeft
|
|
129
|
-
chevronLimitLeft: function
|
|
189
|
+
chevronLimitLeft: withMetadata(function () {
|
|
130
190
|
return import('./assets/chevron_limit_left');
|
|
131
|
-
},
|
|
191
|
+
}, {
|
|
192
|
+
synonyms: ['chevron', 'limit', 'first', 'start', 'beginning', 'jump', 'skip']
|
|
193
|
+
}),
|
|
132
194
|
arrowEnd: function arrowEnd() {
|
|
133
195
|
return import('./assets/chevron_limit_right');
|
|
134
196
|
},
|
|
135
197
|
// NOTE: To be deprecated in favor of chevronLimitRight
|
|
136
|
-
chevronLimitRight: function
|
|
198
|
+
chevronLimitRight: withMetadata(function () {
|
|
137
199
|
return import('./assets/chevron_limit_right');
|
|
138
|
-
},
|
|
200
|
+
}, {
|
|
201
|
+
synonyms: ['chevron', 'limit', 'last', 'end', 'final', 'jump', 'skip']
|
|
202
|
+
}),
|
|
139
203
|
article: function article() {
|
|
140
204
|
return import('./assets/article');
|
|
141
205
|
},
|
|
142
|
-
asterisk: function
|
|
206
|
+
asterisk: withMetadata(function () {
|
|
143
207
|
return import('./assets/asterisk');
|
|
144
|
-
},
|
|
145
|
-
|
|
208
|
+
}, {
|
|
209
|
+
synonyms: ['star', 'wildcard', 'required', 'multiply', 'reference', 'footnote']
|
|
210
|
+
}),
|
|
211
|
+
at: withMetadata(function () {
|
|
146
212
|
return import('./assets/at');
|
|
147
|
-
},
|
|
148
|
-
|
|
213
|
+
}, {
|
|
214
|
+
synonyms: ['email', 'mention', 'address', 'symbol', 'contact', 'handle']
|
|
215
|
+
}),
|
|
216
|
+
archive: withMetadata(function () {
|
|
149
217
|
return import('./assets/archive');
|
|
150
|
-
},
|
|
151
|
-
|
|
218
|
+
}, {
|
|
219
|
+
synonyms: ['storage', 'box', 'store', 'backup', 'file away', 'saved', 'repository']
|
|
220
|
+
}),
|
|
221
|
+
axisX: withMetadata(function () {
|
|
152
222
|
return import('./assets/axis_x');
|
|
153
|
-
},
|
|
154
|
-
|
|
223
|
+
}, {
|
|
224
|
+
synonyms: ['x axis', 'horizontal axis', 'chart', 'graph', 'dimension', 'abscissa']
|
|
225
|
+
}),
|
|
226
|
+
axisYLeft: withMetadata(function () {
|
|
155
227
|
return import('./assets/axis_y_left');
|
|
156
|
-
},
|
|
157
|
-
|
|
228
|
+
}, {
|
|
229
|
+
synonyms: ['y axis', 'left', 'vertical axis', 'chart', 'graph', 'ordinate']
|
|
230
|
+
}),
|
|
231
|
+
axisYRight: withMetadata(function () {
|
|
158
232
|
return import('./assets/axis_y_right');
|
|
159
|
-
},
|
|
160
|
-
|
|
233
|
+
}, {
|
|
234
|
+
synonyms: ['y axis', 'right', 'vertical axis', 'chart', 'graph', 'ordinate']
|
|
235
|
+
}),
|
|
236
|
+
auditbeatApp: withMetadata(function () {
|
|
161
237
|
return import('./assets/app_auditbeat');
|
|
162
|
-
},
|
|
163
|
-
|
|
238
|
+
}, {
|
|
239
|
+
category: 'app'
|
|
240
|
+
}),
|
|
241
|
+
backgroundTask: withMetadata(function () {
|
|
164
242
|
return import('./assets/background_task');
|
|
165
|
-
},
|
|
243
|
+
}, {
|
|
244
|
+
synonyms: ['background', 'async', 'job', 'task', 'process', 'worker', 'queue']
|
|
245
|
+
}),
|
|
166
246
|
beaker: function beaker() {
|
|
167
247
|
return import('./assets/flask');
|
|
168
248
|
},
|
|
169
249
|
// NOTE: To be deprecated in favor of `flask`
|
|
170
|
-
bell: function
|
|
250
|
+
bell: withMetadata(function () {
|
|
171
251
|
return import('./assets/bell');
|
|
172
|
-
},
|
|
173
|
-
|
|
252
|
+
}, {
|
|
253
|
+
synonyms: ['notification', 'alert', 'alarm', 'notify', 'ring', 'reminder', 'announcements']
|
|
254
|
+
}),
|
|
255
|
+
bellSlash: withMetadata(function () {
|
|
174
256
|
return import('./assets/bell_slash');
|
|
175
|
-
},
|
|
176
|
-
|
|
257
|
+
}, {
|
|
258
|
+
synonyms: ['mute', 'notification off', 'silence', 'bell disabled', 'alerts off', 'quiet']
|
|
259
|
+
}),
|
|
260
|
+
beta: withMetadata(function () {
|
|
177
261
|
return import('./assets/beta');
|
|
178
|
-
},
|
|
179
|
-
|
|
262
|
+
}, {
|
|
263
|
+
synonyms: ['greek', 'test', 'experimental', 'preview', 'version', 'letter']
|
|
264
|
+
}),
|
|
265
|
+
bolt: withMetadata(function () {
|
|
180
266
|
return import('./assets/bolt');
|
|
181
|
-
},
|
|
267
|
+
}, {
|
|
268
|
+
synonyms: ['lightning', 'fast', 'power', 'electric', 'speed', 'energy']
|
|
269
|
+
}),
|
|
182
270
|
boxesHorizontal: function boxesHorizontal() {
|
|
183
271
|
return import('./assets/boxes_vertical');
|
|
184
272
|
},
|
|
@@ -186,123 +274,191 @@ export var typeToPathMap = {
|
|
|
186
274
|
boxesVertical: function boxesVertical() {
|
|
187
275
|
return import('./assets/boxes_vertical');
|
|
188
276
|
},
|
|
189
|
-
branch: function
|
|
277
|
+
branch: withMetadata(function () {
|
|
190
278
|
return import('./assets/branch');
|
|
191
|
-
},
|
|
192
|
-
|
|
279
|
+
}, {
|
|
280
|
+
synonyms: ['git', 'version control', 'fork', 'tree', 'split', 'divergence']
|
|
281
|
+
}),
|
|
282
|
+
briefcase: withMetadata(function () {
|
|
193
283
|
return import('./assets/briefcase');
|
|
194
|
-
},
|
|
284
|
+
}, {
|
|
285
|
+
synonyms: ['work', 'business', 'job', 'portfolio', 'office', 'career']
|
|
286
|
+
}),
|
|
195
287
|
branchUser: function branchUser() {
|
|
196
288
|
return import('./assets/branch_user');
|
|
197
289
|
},
|
|
198
|
-
broom: function
|
|
290
|
+
broom: withMetadata(function () {
|
|
199
291
|
return import('./assets/broom');
|
|
200
|
-
},
|
|
201
|
-
|
|
292
|
+
}, {
|
|
293
|
+
synonyms: ['clean', 'sweep', 'clear', 'tidy', 'wipe', 'brush off']
|
|
294
|
+
}),
|
|
295
|
+
brush: withMetadata(function () {
|
|
202
296
|
return import('./assets/brush');
|
|
203
|
-
},
|
|
204
|
-
|
|
297
|
+
}, {
|
|
298
|
+
synonyms: ['paint', 'draw', 'art', 'design', 'stroke', 'brush tool']
|
|
299
|
+
}),
|
|
300
|
+
bug: withMetadata(function () {
|
|
205
301
|
return import('./assets/bug');
|
|
206
|
-
},
|
|
207
|
-
|
|
302
|
+
}, {
|
|
303
|
+
synonyms: ['insect', 'defect', 'issue', 'error', 'debug', 'glitch']
|
|
304
|
+
}),
|
|
305
|
+
bulb: withMetadata(function () {
|
|
208
306
|
return import('./assets/bulb');
|
|
209
|
-
},
|
|
210
|
-
|
|
307
|
+
}, {
|
|
308
|
+
synonyms: ['light', 'idea', 'lamp', 'insight', 'bright', 'hint']
|
|
309
|
+
}),
|
|
310
|
+
bullseye: withMetadata(function () {
|
|
211
311
|
return import('./assets/bullseye');
|
|
212
|
-
},
|
|
213
|
-
|
|
312
|
+
}, {
|
|
313
|
+
synonyms: ['findings', 'target', 'aim', 'goal', 'focus', 'dartboard', 'precision', 'center']
|
|
314
|
+
}),
|
|
315
|
+
calendar: withMetadata(function () {
|
|
214
316
|
return import('./assets/calendar');
|
|
215
|
-
},
|
|
216
|
-
|
|
317
|
+
}, {
|
|
318
|
+
synonyms: ['date', 'schedule', 'event', 'day', 'month', 'time']
|
|
319
|
+
}),
|
|
320
|
+
canvasApp: withMetadata(function () {
|
|
217
321
|
return import('./assets/app_canvas');
|
|
218
|
-
},
|
|
219
|
-
|
|
322
|
+
}, {
|
|
323
|
+
category: 'app'
|
|
324
|
+
}),
|
|
325
|
+
casesApp: withMetadata(function () {
|
|
220
326
|
return import('./assets/app_cases');
|
|
221
|
-
},
|
|
327
|
+
}, {
|
|
328
|
+
category: 'app'
|
|
329
|
+
}),
|
|
222
330
|
changePointDetection: function changePointDetection() {
|
|
223
331
|
return import('./assets/chart_change_point');
|
|
224
332
|
},
|
|
225
333
|
// NOTE: To be deprecated in favor of chartChangePoint
|
|
226
|
-
chartChangePoint: function
|
|
334
|
+
chartChangePoint: withMetadata(function () {
|
|
227
335
|
return import('./assets/chart_change_point');
|
|
228
|
-
},
|
|
229
|
-
|
|
336
|
+
}, {
|
|
337
|
+
synonyms: ['change point', 'chart', 'breakpoint', 'shift', 'detection', 'regime']
|
|
338
|
+
}),
|
|
339
|
+
chartArea: withMetadata(function () {
|
|
230
340
|
return import('./assets/chart_area');
|
|
231
|
-
},
|
|
232
|
-
|
|
341
|
+
}, {
|
|
342
|
+
synonyms: ['area chart', 'graph', 'visualization', 'filled', 'trend', 'plot']
|
|
343
|
+
}),
|
|
344
|
+
chartAreaStack: withMetadata(function () {
|
|
233
345
|
return import('./assets/chart_area_stack');
|
|
234
|
-
},
|
|
235
|
-
|
|
346
|
+
}, {
|
|
347
|
+
synonyms: ['stacked area', 'chart', 'graph', 'layers', 'visualization', 'plot']
|
|
348
|
+
}),
|
|
349
|
+
chartBarHorizontal: withMetadata(function () {
|
|
236
350
|
return import('./assets/chart_bar_horizontal');
|
|
237
|
-
},
|
|
238
|
-
|
|
351
|
+
}, {
|
|
352
|
+
synonyms: ['bar chart', 'horizontal', 'graph', 'bars', 'visualization', 'plot']
|
|
353
|
+
}),
|
|
354
|
+
chartBarHorizontalStack: withMetadata(function () {
|
|
239
355
|
return import('./assets/chart_bar_horizontal_stack');
|
|
240
|
-
},
|
|
241
|
-
|
|
356
|
+
}, {
|
|
357
|
+
synonyms: ['stacked bar', 'horizontal', 'chart', 'graph', 'grouped', 'plot']
|
|
358
|
+
}),
|
|
359
|
+
chartBarVertical: withMetadata(function () {
|
|
242
360
|
return import('./assets/chart_bar_vertical');
|
|
243
|
-
},
|
|
244
|
-
|
|
361
|
+
}, {
|
|
362
|
+
synonyms: ['bar chart', 'vertical', 'graph', 'columns', 'visualization', 'plot']
|
|
363
|
+
}),
|
|
364
|
+
chartBarVerticalStack: withMetadata(function () {
|
|
245
365
|
return import('./assets/chart_bar_vertical_stack');
|
|
246
|
-
},
|
|
247
|
-
|
|
366
|
+
}, {
|
|
367
|
+
synonyms: ['stacked bar', 'vertical', 'chart', 'graph', 'grouped', 'plot']
|
|
368
|
+
}),
|
|
369
|
+
chartGauge: withMetadata(function () {
|
|
248
370
|
return import('./assets/chart_gauge');
|
|
249
|
-
},
|
|
250
|
-
|
|
371
|
+
}, {
|
|
372
|
+
synonyms: ['gauge', 'meter', 'dial', 'chart', 'metric', 'speedometer']
|
|
373
|
+
}),
|
|
374
|
+
chartHeatmap: withMetadata(function () {
|
|
251
375
|
return import('./assets/chart_heatmap');
|
|
252
|
-
},
|
|
253
|
-
|
|
376
|
+
}, {
|
|
377
|
+
synonyms: ['heatmap', 'matrix', 'density', 'chart', 'grid', 'correlation']
|
|
378
|
+
}),
|
|
379
|
+
chartLine: withMetadata(function () {
|
|
254
380
|
return import('./assets/chart_line');
|
|
255
|
-
},
|
|
256
|
-
|
|
381
|
+
}, {
|
|
382
|
+
synonyms: ['line chart', 'graph', 'trend', 'visualization', 'plot', 'time series']
|
|
383
|
+
}),
|
|
384
|
+
chartPie: withMetadata(function () {
|
|
257
385
|
return import('./assets/chart_pie');
|
|
258
|
-
},
|
|
259
|
-
|
|
386
|
+
}, {
|
|
387
|
+
synonyms: ['pie chart', 'donut', 'proportion', 'circle', 'segments', 'share']
|
|
388
|
+
}),
|
|
389
|
+
chartTagCloud: withMetadata(function () {
|
|
260
390
|
return import('./assets/chart_tag_cloud');
|
|
261
|
-
},
|
|
262
|
-
|
|
391
|
+
}, {
|
|
392
|
+
synonyms: ['tag cloud', 'word cloud', 'text', 'chart', 'keywords', 'frequency']
|
|
393
|
+
}),
|
|
394
|
+
chartThreshold: withMetadata(function () {
|
|
263
395
|
return import('./assets/chart_threshold');
|
|
264
|
-
},
|
|
265
|
-
|
|
396
|
+
}, {
|
|
397
|
+
synonyms: ['threshold', 'limit', 'chart', 'boundary', 'alert line', 'cutoff']
|
|
398
|
+
}),
|
|
399
|
+
check: withMetadata(function () {
|
|
266
400
|
return import('./assets/check');
|
|
267
|
-
},
|
|
268
|
-
|
|
401
|
+
}, {
|
|
402
|
+
synonyms: ['tick', 'confirm', 'done', 'yes', 'approve', 'mark']
|
|
403
|
+
}),
|
|
404
|
+
checkCircle: withMetadata(function () {
|
|
269
405
|
return import('./assets/check_circle');
|
|
270
|
-
},
|
|
406
|
+
}, {
|
|
407
|
+
synonyms: ['check', 'circle', 'success', 'confirm', 'complete', 'ok']
|
|
408
|
+
}),
|
|
271
409
|
checkInCircleFilled: function checkInCircleFilled() {
|
|
272
410
|
return import('./assets/check_circle_fill');
|
|
273
411
|
},
|
|
274
412
|
// NOTE: To be deprecated in favor of checkCircleFill
|
|
275
|
-
checkCircleFill: function
|
|
413
|
+
checkCircleFill: withMetadata(function () {
|
|
276
414
|
return import('./assets/check_circle_fill');
|
|
277
|
-
},
|
|
415
|
+
}, {
|
|
416
|
+
synonyms: ['check', 'filled', 'success', 'confirm', 'complete', 'ok']
|
|
417
|
+
}),
|
|
278
418
|
cheer: function cheer() {
|
|
279
419
|
return import('./assets/popper');
|
|
280
420
|
},
|
|
281
421
|
// NOTE: To be deprecated in favor of popper
|
|
282
|
-
popper: function
|
|
422
|
+
popper: withMetadata(function () {
|
|
283
423
|
return import('./assets/popper');
|
|
284
|
-
},
|
|
285
|
-
|
|
424
|
+
}, {
|
|
425
|
+
synonyms: ['popper', 'tooltip', 'overlay', 'popup', 'floating']
|
|
426
|
+
}),
|
|
427
|
+
classificationJob: withMetadata(function () {
|
|
286
428
|
return import('./assets/ml_classification_job');
|
|
287
|
-
},
|
|
288
|
-
|
|
429
|
+
}, {
|
|
430
|
+
category: 'ml'
|
|
431
|
+
}),
|
|
432
|
+
clickLeft: withMetadata(function () {
|
|
289
433
|
return import('./assets/click_left');
|
|
290
|
-
},
|
|
291
|
-
|
|
434
|
+
}, {
|
|
435
|
+
synonyms: ['click', 'left', 'mouse', 'pointer', 'button', 'tap']
|
|
436
|
+
}),
|
|
437
|
+
clickRight: withMetadata(function () {
|
|
292
438
|
return import('./assets/click_right');
|
|
293
|
-
},
|
|
294
|
-
|
|
439
|
+
}, {
|
|
440
|
+
synonyms: ['click', 'right', 'mouse', 'context', 'button', 'tap']
|
|
441
|
+
}),
|
|
442
|
+
clock: withMetadata(function () {
|
|
295
443
|
return import('./assets/clock');
|
|
296
|
-
},
|
|
297
|
-
|
|
444
|
+
}, {
|
|
445
|
+
synonyms: ['clock']
|
|
446
|
+
}),
|
|
447
|
+
clockCounter: withMetadata(function () {
|
|
298
448
|
return import('./assets/clock_counter');
|
|
299
|
-
},
|
|
300
|
-
|
|
449
|
+
}, {
|
|
450
|
+
synonyms: ['clock', 'counter', 'countdown', 'timer', 'time', 'elapsed']
|
|
451
|
+
}),
|
|
452
|
+
clockControl: withMetadata(function () {
|
|
301
453
|
return import('./assets/clock_control');
|
|
302
|
-
},
|
|
303
|
-
|
|
454
|
+
}, {
|
|
455
|
+
synonyms: ['clock', 'control', 'time', 'schedule', 'timer', 'settings']
|
|
456
|
+
}),
|
|
457
|
+
cloud: withMetadata(function () {
|
|
304
458
|
return import('./assets/cloud');
|
|
305
|
-
},
|
|
459
|
+
}, {
|
|
460
|
+
synonyms: ['cloud', 'online', 'hosting', 'saas', 'remote']
|
|
461
|
+
}),
|
|
306
462
|
cloudDrizzle: function cloudDrizzle() {
|
|
307
463
|
return import('./assets/cloud_drizzle');
|
|
308
464
|
},
|
|
@@ -312,45 +468,63 @@ export var typeToPathMap = {
|
|
|
312
468
|
cloudSunny: function cloudSunny() {
|
|
313
469
|
return import('./assets/cloud_sunny');
|
|
314
470
|
},
|
|
315
|
-
cluster: function
|
|
471
|
+
cluster: withMetadata(function () {
|
|
316
472
|
return import('./assets/cluster');
|
|
317
|
-
},
|
|
318
|
-
|
|
473
|
+
}, {
|
|
474
|
+
synonyms: ['cluster', 'nodes', 'group', 'collection', 'distributed']
|
|
475
|
+
}),
|
|
476
|
+
code: withMetadata(function () {
|
|
319
477
|
return import('./assets/code');
|
|
320
|
-
},
|
|
321
|
-
|
|
478
|
+
}, {
|
|
479
|
+
synonyms: ['code', 'developer', 'programming', 'script', 'source']
|
|
480
|
+
}),
|
|
481
|
+
codeApp: withMetadata(function () {
|
|
322
482
|
return import('./assets/app_code');
|
|
323
|
-
},
|
|
483
|
+
}, {
|
|
484
|
+
category: 'app'
|
|
485
|
+
}),
|
|
324
486
|
color: function color() {
|
|
325
487
|
return import('./assets/paint_bucket');
|
|
326
488
|
},
|
|
327
489
|
// NOTE: To be deprecated in favor of paintBucket
|
|
328
|
-
paintBucket: function
|
|
490
|
+
paintBucket: withMetadata(function () {
|
|
329
491
|
return import('./assets/paint_bucket');
|
|
330
|
-
},
|
|
331
|
-
|
|
492
|
+
}, {
|
|
493
|
+
synonyms: ['paint', 'fill', 'bucket', 'color', 'flood fill']
|
|
494
|
+
}),
|
|
495
|
+
commandLine: withMetadata(function () {
|
|
332
496
|
return import('./assets/command_line');
|
|
333
|
-
},
|
|
334
|
-
|
|
497
|
+
}, {
|
|
498
|
+
synonyms: ['terminal', 'cli', 'console', 'shell', 'command', 'prompt']
|
|
499
|
+
}),
|
|
500
|
+
comment: withMetadata(function () {
|
|
335
501
|
return import('./assets/comment');
|
|
336
|
-
},
|
|
337
|
-
|
|
502
|
+
}, {
|
|
503
|
+
synonyms: ['comment', 'chat', 'message', 'feedback', 'discussion']
|
|
504
|
+
}),
|
|
505
|
+
compare: withMetadata(function () {
|
|
338
506
|
return import('./assets/compare');
|
|
339
|
-
},
|
|
507
|
+
}, {
|
|
508
|
+
synonyms: ['compare', 'diff', 'versus', 'side by side']
|
|
509
|
+
}),
|
|
340
510
|
compute: function compute() {
|
|
341
511
|
return import('./assets/processor');
|
|
342
512
|
},
|
|
343
513
|
// NOTE: To be deprecated in favor of processor
|
|
344
|
-
processor: function
|
|
514
|
+
processor: withMetadata(function () {
|
|
345
515
|
return import('./assets/processor');
|
|
346
|
-
},
|
|
516
|
+
}, {
|
|
517
|
+
synonyms: ['processor', 'compute', 'cpu', 'transform', 'ingest']
|
|
518
|
+
}),
|
|
347
519
|
console: function console() {
|
|
348
520
|
return import('./assets/command_line');
|
|
349
521
|
},
|
|
350
522
|
// NOTE: To be deprecated in favor of commandLine
|
|
351
|
-
consoleApp: function
|
|
523
|
+
consoleApp: withMetadata(function () {
|
|
352
524
|
return import('./assets/app_console');
|
|
353
|
-
},
|
|
525
|
+
}, {
|
|
526
|
+
category: 'app'
|
|
527
|
+
}),
|
|
354
528
|
container: function container() {
|
|
355
529
|
return import('./assets/container');
|
|
356
530
|
},
|
|
@@ -366,19 +540,25 @@ export var typeToPathMap = {
|
|
|
366
540
|
continuityWithin: function continuityWithin() {
|
|
367
541
|
return import('./assets/continuity_within');
|
|
368
542
|
},
|
|
369
|
-
contrast: function
|
|
543
|
+
contrast: withMetadata(function () {
|
|
370
544
|
return import('./assets/contrast');
|
|
371
|
-
},
|
|
545
|
+
}, {
|
|
546
|
+
synonyms: ['contrast', 'accessibility', 'visibility', 'a11y']
|
|
547
|
+
}),
|
|
372
548
|
contrastHigh: function contrastHigh() {
|
|
373
549
|
return import('./assets/contrast_fill');
|
|
374
550
|
},
|
|
375
551
|
// NOTE: To be deprecated in favor of contrastFill
|
|
376
|
-
contrastFill: function
|
|
552
|
+
contrastFill: withMetadata(function () {
|
|
377
553
|
return import('./assets/contrast_fill');
|
|
378
|
-
},
|
|
379
|
-
|
|
554
|
+
}, {
|
|
555
|
+
synonyms: ['contrast', 'filled', 'accessibility', 'visibility', 'a11y', 'display']
|
|
556
|
+
}),
|
|
557
|
+
controls: withMetadata(function () {
|
|
380
558
|
return import('./assets/controls');
|
|
381
|
-
},
|
|
559
|
+
}, {
|
|
560
|
+
synonyms: ['controls', 'sliders', 'settings', 'adjust', 'panel']
|
|
561
|
+
}),
|
|
382
562
|
controlsHorizontal: function controlsHorizontal() {
|
|
383
563
|
return import('./assets/controls');
|
|
384
564
|
},
|
|
@@ -387,50 +567,74 @@ export var typeToPathMap = {
|
|
|
387
567
|
return import('./assets/controls');
|
|
388
568
|
},
|
|
389
569
|
// NOTE: To be deprecated in favor of `controls`
|
|
390
|
-
copy: function
|
|
570
|
+
copy: withMetadata(function () {
|
|
391
571
|
return import('./assets/copy');
|
|
392
|
-
},
|
|
572
|
+
}, {
|
|
573
|
+
synonyms: ['duplicate', 'clone', 'clipboard', 'replicate', 'paste']
|
|
574
|
+
}),
|
|
393
575
|
copyClipboard: function copyClipboard() {
|
|
394
576
|
return import('./assets/copy');
|
|
395
577
|
},
|
|
396
578
|
// NOTE: To be deprecated in favor of `copy`
|
|
397
|
-
crossProjectSearch: function
|
|
579
|
+
crossProjectSearch: withMetadata(function () {
|
|
398
580
|
return import('./assets/cross_project_search');
|
|
399
|
-
},
|
|
400
|
-
|
|
581
|
+
}, {
|
|
582
|
+
synonyms: ['search', 'cross project', 'global', 'find', 'lookup', 'explore']
|
|
583
|
+
}),
|
|
584
|
+
createAdvancedJob: withMetadata(function () {
|
|
401
585
|
return import('./assets/ml_create_advanced_job');
|
|
402
|
-
},
|
|
403
|
-
|
|
586
|
+
}, {
|
|
587
|
+
category: 'ml'
|
|
588
|
+
}),
|
|
589
|
+
createGenericJob: withMetadata(function () {
|
|
404
590
|
return import('./assets/ml_create_generic_job');
|
|
405
|
-
},
|
|
406
|
-
|
|
591
|
+
}, {
|
|
592
|
+
category: 'ml'
|
|
593
|
+
}),
|
|
594
|
+
createGeoJob: withMetadata(function () {
|
|
407
595
|
return import('./assets/ml_create_geo_job');
|
|
408
|
-
},
|
|
409
|
-
|
|
596
|
+
}, {
|
|
597
|
+
category: 'ml'
|
|
598
|
+
}),
|
|
599
|
+
createMultiMetricJob: withMetadata(function () {
|
|
410
600
|
return import('./assets/ml_create_multi_metric_job');
|
|
411
|
-
},
|
|
412
|
-
|
|
601
|
+
}, {
|
|
602
|
+
category: 'ml'
|
|
603
|
+
}),
|
|
604
|
+
createPopulationJob: withMetadata(function () {
|
|
413
605
|
return import('./assets/ml_create_population_job');
|
|
414
|
-
},
|
|
415
|
-
|
|
606
|
+
}, {
|
|
607
|
+
category: 'ml'
|
|
608
|
+
}),
|
|
609
|
+
createSingleMetricJob: withMetadata(function () {
|
|
416
610
|
return import('./assets/ml_create_single_metric_job');
|
|
417
|
-
},
|
|
418
|
-
|
|
611
|
+
}, {
|
|
612
|
+
category: 'ml'
|
|
613
|
+
}),
|
|
614
|
+
cross: withMetadata(function () {
|
|
419
615
|
return import('./assets/cross');
|
|
420
|
-
},
|
|
421
|
-
|
|
616
|
+
}, {
|
|
617
|
+
synonyms: ['cross', 'close', 'cancel', 'delete']
|
|
618
|
+
}),
|
|
619
|
+
crossClusterReplicationApp: withMetadata(function () {
|
|
422
620
|
return import('./assets/app_cross_cluster_replication');
|
|
423
|
-
},
|
|
621
|
+
}, {
|
|
622
|
+
category: 'app'
|
|
623
|
+
}),
|
|
424
624
|
crossInCircle: function crossInCircle() {
|
|
425
625
|
return import('./assets/cross_circle');
|
|
426
626
|
},
|
|
427
627
|
// NOTE: To be deprecated in favor of crossCircle
|
|
428
|
-
crossCircle: function
|
|
628
|
+
crossCircle: withMetadata(function () {
|
|
429
629
|
return import('./assets/cross_circle');
|
|
430
|
-
},
|
|
431
|
-
|
|
630
|
+
}, {
|
|
631
|
+
synonyms: ['cross circle', 'cross', 'close', 'cancel', 'delete', 'circle']
|
|
632
|
+
}),
|
|
633
|
+
crosshair: withMetadata(function () {
|
|
432
634
|
return import('./assets/crosshair');
|
|
433
|
-
},
|
|
635
|
+
}, {
|
|
636
|
+
synonyms: ['crosshair']
|
|
637
|
+
}),
|
|
434
638
|
crosshairs: function crosshairs() {
|
|
435
639
|
return import('./assets/crosshair');
|
|
436
640
|
},
|
|
@@ -439,83 +643,121 @@ export var typeToPathMap = {
|
|
|
439
643
|
return import('./assets/money');
|
|
440
644
|
},
|
|
441
645
|
// NOTE: To be deprecated in favor of money
|
|
442
|
-
money: function
|
|
646
|
+
money: withMetadata(function () {
|
|
443
647
|
return import('./assets/money');
|
|
444
|
-
},
|
|
648
|
+
}, {
|
|
649
|
+
synonyms: ['money', 'payment', 'billing', 'cost', 'finance']
|
|
650
|
+
}),
|
|
445
651
|
cut: function cut() {
|
|
446
652
|
return import('./assets/scissors');
|
|
447
653
|
},
|
|
448
654
|
// NOTE: To be deprecated in favor of scissors
|
|
449
|
-
scissors: function
|
|
655
|
+
scissors: withMetadata(function () {
|
|
450
656
|
return import('./assets/scissors');
|
|
451
|
-
},
|
|
452
|
-
|
|
657
|
+
}, {
|
|
658
|
+
synonyms: ['scissors']
|
|
659
|
+
}),
|
|
660
|
+
dashboardApp: withMetadata(function () {
|
|
453
661
|
return import('./assets/app_dashboard');
|
|
454
|
-
},
|
|
455
|
-
|
|
662
|
+
}, {
|
|
663
|
+
category: 'app'
|
|
664
|
+
}),
|
|
665
|
+
dashedCircle: withMetadata(function () {
|
|
456
666
|
return import('./assets/dashed_circle');
|
|
457
|
-
},
|
|
458
|
-
|
|
667
|
+
}, {
|
|
668
|
+
synonyms: ['dashed', 'circle', 'pending', 'incomplete', 'outline', 'status']
|
|
669
|
+
}),
|
|
670
|
+
dataVisualizer: withMetadata(function () {
|
|
459
671
|
return import('./assets/ml_data_visualizer');
|
|
460
|
-
},
|
|
461
|
-
|
|
672
|
+
}, {
|
|
673
|
+
category: 'ml'
|
|
674
|
+
}),
|
|
675
|
+
database: withMetadata(function () {
|
|
462
676
|
return import('./assets/database');
|
|
463
|
-
},
|
|
677
|
+
}, {
|
|
678
|
+
synonyms: ['database', 'data', 'storage', 'sql', 'records']
|
|
679
|
+
}),
|
|
464
680
|
desktop: function desktop() {
|
|
465
681
|
return import('./assets/display');
|
|
466
682
|
},
|
|
467
683
|
// NOTE: To be deprecated in favor of display
|
|
468
|
-
display: function
|
|
684
|
+
display: withMetadata(function () {
|
|
469
685
|
return import('./assets/display');
|
|
470
|
-
},
|
|
471
|
-
|
|
686
|
+
}, {
|
|
687
|
+
synonyms: ['display']
|
|
688
|
+
}),
|
|
689
|
+
devToolsApp: withMetadata(function () {
|
|
472
690
|
return import('./assets/app_devtools');
|
|
473
|
-
},
|
|
691
|
+
}, {
|
|
692
|
+
category: 'app'
|
|
693
|
+
}),
|
|
474
694
|
diff: function diff() {
|
|
475
695
|
return import('./assets/compare');
|
|
476
696
|
},
|
|
477
697
|
// NOTE: To be deprecated in favor of compare
|
|
478
|
-
discoverApp: function
|
|
698
|
+
discoverApp: withMetadata(function () {
|
|
479
699
|
return import('./assets/app_discover');
|
|
480
|
-
},
|
|
481
|
-
|
|
700
|
+
}, {
|
|
701
|
+
category: 'app'
|
|
702
|
+
}),
|
|
703
|
+
distributeHorizontal: withMetadata(function () {
|
|
482
704
|
return import('./assets/distribute_horizontal');
|
|
483
|
-
},
|
|
484
|
-
|
|
705
|
+
}, {
|
|
706
|
+
synonyms: ['distribute horizontal', 'distribute', 'horizontal']
|
|
707
|
+
}),
|
|
708
|
+
distributeVertical: withMetadata(function () {
|
|
485
709
|
return import('./assets/distribute_vertical');
|
|
486
|
-
},
|
|
487
|
-
|
|
710
|
+
}, {
|
|
711
|
+
synonyms: ['distribute vertical', 'distribute', 'vertical']
|
|
712
|
+
}),
|
|
713
|
+
download: withMetadata(function () {
|
|
488
714
|
return import('./assets/download');
|
|
489
|
-
},
|
|
490
|
-
|
|
715
|
+
}, {
|
|
716
|
+
synonyms: ['save', 'export', 'retrieve', 'get file', 'arrow down', 'pull']
|
|
717
|
+
}),
|
|
718
|
+
drag: withMetadata(function () {
|
|
491
719
|
return import('./assets/drag');
|
|
492
|
-
},
|
|
493
|
-
|
|
720
|
+
}, {
|
|
721
|
+
synonyms: ['drag', 'move', 'grab', 'reorder', 'handle']
|
|
722
|
+
}),
|
|
723
|
+
dragHorizontal: withMetadata(function () {
|
|
494
724
|
return import('./assets/drag_horizontal');
|
|
495
|
-
},
|
|
496
|
-
|
|
725
|
+
}, {
|
|
726
|
+
synonyms: ['drag horizontal', 'drag', 'move', 'grab', 'reorder', 'handle', 'horizontal']
|
|
727
|
+
}),
|
|
728
|
+
dragVertical: withMetadata(function () {
|
|
497
729
|
return import('./assets/drag_vertical');
|
|
498
|
-
},
|
|
730
|
+
}, {
|
|
731
|
+
synonyms: ['drag vertical', 'drag', 'move', 'grab', 'reorder', 'handle', 'vertical']
|
|
732
|
+
}),
|
|
499
733
|
discuss: function discuss() {
|
|
500
734
|
return import('./assets/comment');
|
|
501
735
|
},
|
|
502
736
|
// NOTE: To be deprecated in favor of `comment`
|
|
503
|
-
document: function
|
|
737
|
+
document: withMetadata(function () {
|
|
504
738
|
return import('./assets/document');
|
|
505
|
-
},
|
|
739
|
+
}, {
|
|
740
|
+
synonyms: ['document', 'file', 'page', 'paper', 'doc']
|
|
741
|
+
}),
|
|
506
742
|
documentEdit: function documentEdit() {
|
|
507
743
|
return import('./assets/document_edit');
|
|
508
744
|
},
|
|
509
745
|
// NOTE: To be deprecated in favor of pencil
|
|
510
|
-
documentation: function
|
|
746
|
+
documentation: withMetadata(function () {
|
|
511
747
|
return import('./assets/documentation');
|
|
512
|
-
},
|
|
513
|
-
|
|
748
|
+
}, {
|
|
749
|
+
synonyms: ['documentation', 'docs', 'help', 'guide', 'manual']
|
|
750
|
+
}),
|
|
751
|
+
documents: withMetadata(function () {
|
|
514
752
|
return import('./assets/documents');
|
|
515
|
-
},
|
|
516
|
-
|
|
753
|
+
}, {
|
|
754
|
+
synonyms: ['documents', 'files', 'pages', 'papers', 'library']
|
|
755
|
+
}),
|
|
756
|
+
dot: withMetadata(function () {
|
|
517
757
|
return import('./assets/dot');
|
|
518
|
-
},
|
|
758
|
+
}, {
|
|
759
|
+
synonyms: ['dot', 'point', 'bullet', 'period', 'circle']
|
|
760
|
+
}),
|
|
519
761
|
dotInCircle: function dotInCircle() {
|
|
520
762
|
return import('./assets/dot_in_circle');
|
|
521
763
|
},
|
|
@@ -523,54 +765,70 @@ export var typeToPathMap = {
|
|
|
523
765
|
return import('./assets/chevron_double_left');
|
|
524
766
|
},
|
|
525
767
|
// NOTE: To be deprecated in favor of chevronDoubleLeft
|
|
526
|
-
chevronDoubleLeft: function
|
|
768
|
+
chevronDoubleLeft: withMetadata(function () {
|
|
527
769
|
return import('./assets/chevron_double_left');
|
|
528
|
-
},
|
|
770
|
+
}, {
|
|
771
|
+
synonyms: ['chevron', 'double', 'left', 'rewind', 'back', 'previous']
|
|
772
|
+
}),
|
|
529
773
|
doubleArrowRight: function doubleArrowRight() {
|
|
530
774
|
return import('./assets/chevron_double_right');
|
|
531
775
|
},
|
|
532
776
|
// NOTE: To be deprecated in favor of chevronDoubleRight
|
|
533
|
-
chevronDoubleRight: function
|
|
777
|
+
chevronDoubleRight: withMetadata(function () {
|
|
534
778
|
return import('./assets/chevron_double_right');
|
|
535
|
-
},
|
|
536
|
-
|
|
779
|
+
}, {
|
|
780
|
+
synonyms: ['chevron', 'double', 'right', 'forward', 'skip', 'next']
|
|
781
|
+
}),
|
|
782
|
+
ellipsis: withMetadata(function () {
|
|
537
783
|
return import('./assets/ellipsis');
|
|
538
|
-
},
|
|
784
|
+
}, {
|
|
785
|
+
synonyms: ['ellipsis', 'more', 'menu', 'overflow', 'dots']
|
|
786
|
+
}),
|
|
539
787
|
editorAlignCenter: function editorAlignCenter() {
|
|
540
788
|
return import('./assets/text_align_center');
|
|
541
789
|
},
|
|
542
790
|
// NOTE: To be deprecated in favor of textAlignCenter
|
|
543
|
-
textAlignCenter: function
|
|
791
|
+
textAlignCenter: withMetadata(function () {
|
|
544
792
|
return import('./assets/text_align_center');
|
|
545
|
-
},
|
|
793
|
+
}, {
|
|
794
|
+
synonyms: ['text', 'align', 'center', 'middle', 'typography']
|
|
795
|
+
}),
|
|
546
796
|
editorAlignLeft: function editorAlignLeft() {
|
|
547
797
|
return import('./assets/text_align_left');
|
|
548
798
|
},
|
|
549
799
|
// NOTE: To be deprecated in favor of textAlignLeft
|
|
550
|
-
textAlignLeft: function
|
|
800
|
+
textAlignLeft: withMetadata(function () {
|
|
551
801
|
return import('./assets/text_align_left');
|
|
552
|
-
},
|
|
802
|
+
}, {
|
|
803
|
+
synonyms: ['text', 'align', 'left', 'typography', 'paragraph']
|
|
804
|
+
}),
|
|
553
805
|
editorAlignRight: function editorAlignRight() {
|
|
554
806
|
return import('./assets/text_align_right');
|
|
555
807
|
},
|
|
556
808
|
// NOTE: To be deprecated in favor of textAlignRight
|
|
557
|
-
textAlignRight: function
|
|
809
|
+
textAlignRight: withMetadata(function () {
|
|
558
810
|
return import('./assets/text_align_right');
|
|
559
|
-
},
|
|
811
|
+
}, {
|
|
812
|
+
synonyms: ['text', 'align', 'right', 'typography', 'paragraph']
|
|
813
|
+
}),
|
|
560
814
|
editorBold: function editorBold() {
|
|
561
815
|
return import('./assets/text_bold');
|
|
562
816
|
},
|
|
563
817
|
// NOTE: To be deprecated in favor of textBold
|
|
564
|
-
textBold: function
|
|
818
|
+
textBold: withMetadata(function () {
|
|
565
819
|
return import('./assets/text_bold');
|
|
566
|
-
},
|
|
820
|
+
}, {
|
|
821
|
+
synonyms: ['text bold', 'text', 'bold', 'typography', 'formatting']
|
|
822
|
+
}),
|
|
567
823
|
editorChecklist: function editorChecklist() {
|
|
568
824
|
return import('./assets/list_check');
|
|
569
825
|
},
|
|
570
826
|
// NOTE: To be deprecated in favor of listCheck
|
|
571
|
-
listCheck: function
|
|
827
|
+
listCheck: withMetadata(function () {
|
|
572
828
|
return import('./assets/list_check');
|
|
573
|
-
},
|
|
829
|
+
}, {
|
|
830
|
+
synonyms: ['list check', 'list', 'bullet', 'items', 'rows', 'check', 'tick', 'confirm']
|
|
831
|
+
}),
|
|
574
832
|
editorCodeBlock: function editorCodeBlock() {
|
|
575
833
|
return import('./assets/code');
|
|
576
834
|
},
|
|
@@ -591,16 +849,20 @@ export var typeToPathMap = {
|
|
|
591
849
|
return import('./assets/text_heading');
|
|
592
850
|
},
|
|
593
851
|
// NOTE: To be deprecated in favor of textHeading
|
|
594
|
-
textHeading: function
|
|
852
|
+
textHeading: withMetadata(function () {
|
|
595
853
|
return import('./assets/text_heading');
|
|
596
|
-
},
|
|
854
|
+
}, {
|
|
855
|
+
synonyms: ['text', 'heading', 'title', 'h1', 'typography', 'header']
|
|
856
|
+
}),
|
|
597
857
|
editorItalic: function editorItalic() {
|
|
598
858
|
return import('./assets/text_italic');
|
|
599
859
|
},
|
|
600
860
|
// NOTE: To be deprecated in favor of textItalic
|
|
601
|
-
textItalic: function
|
|
861
|
+
textItalic: withMetadata(function () {
|
|
602
862
|
return import('./assets/text_italic');
|
|
603
|
-
},
|
|
863
|
+
}, {
|
|
864
|
+
synonyms: ['text italic', 'text', 'italic', 'typography', 'formatting']
|
|
865
|
+
}),
|
|
604
866
|
editorItemAlignBottom: function editorItemAlignBottom() {
|
|
605
867
|
return import('./assets/editor_item_align_bottom');
|
|
606
868
|
},
|
|
@@ -633,9 +895,11 @@ export var typeToPathMap = {
|
|
|
633
895
|
return import('./assets/list_number');
|
|
634
896
|
},
|
|
635
897
|
// NOTE: To be deprecated in favor of listNumber
|
|
636
|
-
listNumber: function
|
|
898
|
+
listNumber: withMetadata(function () {
|
|
637
899
|
return import('./assets/list_number');
|
|
638
|
-
},
|
|
900
|
+
}, {
|
|
901
|
+
synonyms: ['list number', 'list', 'bullet', 'items', 'rows', 'number', 'digit', 'numeric']
|
|
902
|
+
}),
|
|
639
903
|
editorPositionBottomLeft: function editorPositionBottomLeft() {
|
|
640
904
|
return import('./assets/editor_position_bottom_left');
|
|
641
905
|
},
|
|
@@ -656,80 +920,108 @@ export var typeToPathMap = {
|
|
|
656
920
|
return import('./assets/redo');
|
|
657
921
|
},
|
|
658
922
|
// NOTE: To be deprecated in favor of redo
|
|
659
|
-
redo: function
|
|
923
|
+
redo: withMetadata(function () {
|
|
660
924
|
return import('./assets/redo');
|
|
661
|
-
},
|
|
925
|
+
}, {
|
|
926
|
+
synonyms: ['redo', 'repeat', 'forward', 'again']
|
|
927
|
+
}),
|
|
662
928
|
editorStrike: function editorStrike() {
|
|
663
929
|
return import('./assets/text_strike');
|
|
664
930
|
},
|
|
665
931
|
// NOTE: To be deprecated in favor of textStrike
|
|
666
|
-
textStrike: function
|
|
932
|
+
textStrike: withMetadata(function () {
|
|
667
933
|
return import('./assets/text_strike');
|
|
668
|
-
},
|
|
934
|
+
}, {
|
|
935
|
+
synonyms: ['text', 'strikethrough', 'strike', 'delete', 'typography']
|
|
936
|
+
}),
|
|
669
937
|
editorTable: function editorTable() {
|
|
670
938
|
return import('./assets/table');
|
|
671
939
|
},
|
|
672
940
|
// NOTE: To be deprecated in favor of table
|
|
673
|
-
table: function
|
|
941
|
+
table: withMetadata(function () {
|
|
674
942
|
return import('./assets/table');
|
|
675
|
-
},
|
|
943
|
+
}, {
|
|
944
|
+
synonyms: ['table']
|
|
945
|
+
}),
|
|
676
946
|
editorUnderline: function editorUnderline() {
|
|
677
947
|
return import('./assets/text_underline');
|
|
678
948
|
},
|
|
679
949
|
// NOTE: To be deprecated in favor of textUnderline
|
|
680
|
-
textUnderline: function
|
|
950
|
+
textUnderline: withMetadata(function () {
|
|
681
951
|
return import('./assets/text_underline');
|
|
682
|
-
},
|
|
952
|
+
}, {
|
|
953
|
+
synonyms: ['text underline', 'text', 'underline', 'typography', 'formatting']
|
|
954
|
+
}),
|
|
683
955
|
editorUndo: function editorUndo() {
|
|
684
956
|
return import('./assets/undo');
|
|
685
957
|
},
|
|
686
958
|
// NOTE: To be deprecated in favor of undo
|
|
687
|
-
undo: function
|
|
959
|
+
undo: withMetadata(function () {
|
|
688
960
|
return import('./assets/undo');
|
|
689
|
-
},
|
|
961
|
+
}, {
|
|
962
|
+
synonyms: ['undo', 'revert', 'back', 'previous action']
|
|
963
|
+
}),
|
|
690
964
|
editorUnorderedList: function editorUnorderedList() {
|
|
691
965
|
return import('./assets/list_bullet');
|
|
692
966
|
},
|
|
693
967
|
// NOTE: To be deprecated in favor of listBullet
|
|
694
|
-
listBullet: function
|
|
968
|
+
listBullet: withMetadata(function () {
|
|
695
969
|
return import('./assets/list_bullet');
|
|
696
|
-
},
|
|
970
|
+
}, {
|
|
971
|
+
synonyms: ['list bullet', 'list', 'bullet', 'items', 'rows']
|
|
972
|
+
}),
|
|
697
973
|
email: function email() {
|
|
698
974
|
return import('./assets/mail');
|
|
699
975
|
},
|
|
700
976
|
// NOTE: To be deprecated in favor of mail
|
|
701
|
-
mail: function
|
|
977
|
+
mail: withMetadata(function () {
|
|
702
978
|
return import('./assets/mail');
|
|
703
|
-
},
|
|
704
|
-
|
|
979
|
+
}, {
|
|
980
|
+
synonyms: ['mail', 'email', 'envelope', 'message', 'inbox']
|
|
981
|
+
}),
|
|
982
|
+
empty: withMetadata(function () {
|
|
705
983
|
return import('./assets/empty');
|
|
706
|
-
},
|
|
707
|
-
|
|
984
|
+
}, {
|
|
985
|
+
synonyms: ['empty', 'blank', 'none', 'placeholder', 'void']
|
|
986
|
+
}),
|
|
987
|
+
emsApp: withMetadata(function () {
|
|
708
988
|
return import('./assets/app_ems');
|
|
709
|
-
},
|
|
710
|
-
|
|
989
|
+
}, {
|
|
990
|
+
category: 'app'
|
|
991
|
+
}),
|
|
992
|
+
endpoint: withMetadata(function () {
|
|
711
993
|
return import('./assets/endpoint');
|
|
712
|
-
},
|
|
994
|
+
}, {
|
|
995
|
+
synonyms: ['endpoint', 'api', 'url', 'connection', 'target']
|
|
996
|
+
}),
|
|
713
997
|
eql: function eql() {
|
|
714
998
|
return import('./assets/query');
|
|
715
999
|
},
|
|
716
1000
|
// NOTE: To be deprecated in favor of query
|
|
717
|
-
query: function
|
|
1001
|
+
query: withMetadata(function () {
|
|
718
1002
|
return import('./assets/query');
|
|
719
|
-
},
|
|
720
|
-
|
|
1003
|
+
}, {
|
|
1004
|
+
synonyms: ['query', 'search', 'sql', 'lucene', 'filter']
|
|
1005
|
+
}),
|
|
1006
|
+
eraser: withMetadata(function () {
|
|
721
1007
|
return import('./assets/eraser');
|
|
722
|
-
},
|
|
723
|
-
|
|
1008
|
+
}, {
|
|
1009
|
+
synonyms: ['eraser', 'clear', 'remove', 'delete', 'rubber']
|
|
1010
|
+
}),
|
|
1011
|
+
error: withMetadata(function () {
|
|
724
1012
|
return import('./assets/error');
|
|
725
|
-
},
|
|
1013
|
+
}, {
|
|
1014
|
+
synonyms: ['error', 'failure', 'problem', 'invalid', 'cross']
|
|
1015
|
+
}),
|
|
726
1016
|
errorFilled: function errorFilled() {
|
|
727
1017
|
return import('./assets/error_fill');
|
|
728
1018
|
},
|
|
729
1019
|
// NOTE: To be deprecated in favor of errorFill
|
|
730
|
-
errorFill: function
|
|
1020
|
+
errorFill: withMetadata(function () {
|
|
731
1021
|
return import('./assets/error_fill');
|
|
732
|
-
},
|
|
1022
|
+
}, {
|
|
1023
|
+
synonyms: ['error fill', 'error', 'failure', 'problem', 'invalid', 'cross', 'fill', 'filled']
|
|
1024
|
+
}),
|
|
733
1025
|
esqlVis: function esqlVis() {
|
|
734
1026
|
return import('./assets/esql_vis');
|
|
735
1027
|
},
|
|
@@ -737,16 +1029,20 @@ export var typeToPathMap = {
|
|
|
737
1029
|
return import('./assets/log_out');
|
|
738
1030
|
},
|
|
739
1031
|
// NOTE: To be deprecated in favor of logOut
|
|
740
|
-
logOut: function
|
|
1032
|
+
logOut: withMetadata(function () {
|
|
741
1033
|
return import('./assets/log_out');
|
|
742
|
-
},
|
|
1034
|
+
}, {
|
|
1035
|
+
synonyms: ['log out', 'log', 'out']
|
|
1036
|
+
}),
|
|
743
1037
|
expand: function expand() {
|
|
744
1038
|
return import('./assets/maximize');
|
|
745
1039
|
},
|
|
746
1040
|
// NOTE: To be deprecated in favor of maximize
|
|
747
|
-
maximize: function
|
|
1041
|
+
maximize: withMetadata(function () {
|
|
748
1042
|
return import('./assets/maximize');
|
|
749
|
-
},
|
|
1043
|
+
}, {
|
|
1044
|
+
synonyms: ['maximize']
|
|
1045
|
+
}),
|
|
750
1046
|
expandMini: function expandMini() {
|
|
751
1047
|
return import('./assets/maximize');
|
|
752
1048
|
},
|
|
@@ -758,66 +1054,98 @@ export var typeToPathMap = {
|
|
|
758
1054
|
return import('./assets/upload');
|
|
759
1055
|
},
|
|
760
1056
|
// NOTE: To be deprecated in favor of upload
|
|
761
|
-
upload: function
|
|
1057
|
+
upload: withMetadata(function () {
|
|
762
1058
|
return import('./assets/upload');
|
|
763
|
-
},
|
|
764
|
-
|
|
1059
|
+
}, {
|
|
1060
|
+
synonyms: ['upload', 'import', 'send', 'cloud', 'arrow up']
|
|
1061
|
+
}),
|
|
1062
|
+
external: withMetadata(function () {
|
|
765
1063
|
return import('./assets/external');
|
|
766
|
-
},
|
|
767
|
-
|
|
1064
|
+
}, {
|
|
1065
|
+
synonyms: ['external', 'open new', 'link out', 'outside']
|
|
1066
|
+
}),
|
|
1067
|
+
eye: withMetadata(function () {
|
|
768
1068
|
return import('./assets/eye');
|
|
769
|
-
},
|
|
1069
|
+
}, {
|
|
1070
|
+
synonyms: ['eye', 'view', 'visible', 'show', 'preview', 'watch']
|
|
1071
|
+
}),
|
|
770
1072
|
eyeClosed: function eyeClosed() {
|
|
771
1073
|
return import('./assets/eye_slash');
|
|
772
1074
|
},
|
|
773
1075
|
// NOTE: To be deprecated in favor of eyeSlash
|
|
774
|
-
eyeSlash: function
|
|
1076
|
+
eyeSlash: withMetadata(function () {
|
|
775
1077
|
return import('./assets/eye_slash');
|
|
776
|
-
},
|
|
777
|
-
|
|
1078
|
+
}, {
|
|
1079
|
+
synonyms: ['eye slash', 'eye', 'view', 'visible', 'show', 'preview', 'watch', 'slash']
|
|
1080
|
+
}),
|
|
1081
|
+
faceHappy: withMetadata(function () {
|
|
778
1082
|
return import('./assets/face_happy');
|
|
779
|
-
},
|
|
780
|
-
|
|
1083
|
+
}, {
|
|
1084
|
+
synonyms: ['smile', 'happy', 'emoji', 'positive', 'grin', 'satisfied', 'mood']
|
|
1085
|
+
}),
|
|
1086
|
+
faceNeutral: withMetadata(function () {
|
|
781
1087
|
return import('./assets/face_neutral');
|
|
782
|
-
},
|
|
783
|
-
|
|
1088
|
+
}, {
|
|
1089
|
+
synonyms: ['face neutral', 'face', 'neutral']
|
|
1090
|
+
}),
|
|
1091
|
+
faceSad: withMetadata(function () {
|
|
784
1092
|
return import('./assets/face_sad');
|
|
785
|
-
},
|
|
1093
|
+
}, {
|
|
1094
|
+
synonyms: ['face sad', 'face', 'sad']
|
|
1095
|
+
}),
|
|
786
1096
|
fieldStatistics: function fieldStatistics() {
|
|
787
1097
|
return import('./assets/table_info');
|
|
788
1098
|
},
|
|
789
1099
|
// NOTE: To be deprecated in favor of tableInfo
|
|
790
|
-
tableInfo: function
|
|
1100
|
+
tableInfo: withMetadata(function () {
|
|
791
1101
|
return import('./assets/table_info');
|
|
792
|
-
},
|
|
793
|
-
|
|
1102
|
+
}, {
|
|
1103
|
+
synonyms: ['table', 'info', 'metadata', 'details', 'schema', 'columns']
|
|
1104
|
+
}),
|
|
1105
|
+
filebeatApp: withMetadata(function () {
|
|
794
1106
|
return import('./assets/app_filebeat');
|
|
795
|
-
},
|
|
796
|
-
|
|
1107
|
+
}, {
|
|
1108
|
+
category: 'app'
|
|
1109
|
+
}),
|
|
1110
|
+
filter: withMetadata(function () {
|
|
797
1111
|
return import('./assets/filter');
|
|
798
|
-
},
|
|
799
|
-
|
|
1112
|
+
}, {
|
|
1113
|
+
synonyms: ['funnel', 'refine', 'narrow', 'sort', 'subset', 'sieve', 'criteria']
|
|
1114
|
+
}),
|
|
1115
|
+
filterExclude: withMetadata(function () {
|
|
800
1116
|
return import('./assets/filter_exclude');
|
|
801
|
-
},
|
|
802
|
-
|
|
1117
|
+
}, {
|
|
1118
|
+
synonyms: ['filter', 'exclude', 'remove', 'minus', 'refine', 'narrow']
|
|
1119
|
+
}),
|
|
1120
|
+
filterIgnore: withMetadata(function () {
|
|
803
1121
|
return import('./assets/filter_ignore');
|
|
804
|
-
},
|
|
805
|
-
|
|
1122
|
+
}, {
|
|
1123
|
+
synonyms: ['filter', 'ignore', 'skip', 'exclude', 'omit', 'hide']
|
|
1124
|
+
}),
|
|
1125
|
+
filterInclude: withMetadata(function () {
|
|
806
1126
|
return import('./assets/filter_include');
|
|
807
|
-
},
|
|
1127
|
+
}, {
|
|
1128
|
+
synonyms: ['filter', 'include', 'add', 'refine', 'narrow', 'select']
|
|
1129
|
+
}),
|
|
808
1130
|
filterInCircle: function filterInCircle() {
|
|
809
1131
|
return import('./assets/filter_in_circle');
|
|
810
1132
|
},
|
|
811
1133
|
// NOTE: To be deprecated in favor of filter
|
|
812
|
-
flask: function
|
|
1134
|
+
flask: withMetadata(function () {
|
|
813
1135
|
return import('./assets/flask');
|
|
814
|
-
},
|
|
815
|
-
|
|
1136
|
+
}, {
|
|
1137
|
+
synonyms: ['flask', 'experiment', 'lab', 'science', 'test']
|
|
1138
|
+
}),
|
|
1139
|
+
flag: withMetadata(function () {
|
|
816
1140
|
return import('./assets/flag');
|
|
817
|
-
},
|
|
818
|
-
|
|
1141
|
+
}, {
|
|
1142
|
+
synonyms: ['flag', 'mark', 'report', 'bookmark', 'priority']
|
|
1143
|
+
}),
|
|
1144
|
+
fleetApp: withMetadata(function () {
|
|
819
1145
|
return import('./assets/app_agent');
|
|
820
|
-
},
|
|
1146
|
+
}, {
|
|
1147
|
+
category: 'app'
|
|
1148
|
+
}),
|
|
821
1149
|
fold: function fold() {
|
|
822
1150
|
return import('./assets/fold');
|
|
823
1151
|
},
|
|
@@ -827,18 +1155,22 @@ export var typeToPathMap = {
|
|
|
827
1155
|
folderClosed: function folderClosed() {
|
|
828
1156
|
return import('./assets/folder_close');
|
|
829
1157
|
},
|
|
830
|
-
folderClose: function
|
|
1158
|
+
folderClose: withMetadata(function () {
|
|
831
1159
|
return import('./assets/folder_close');
|
|
832
|
-
},
|
|
1160
|
+
}, {
|
|
1161
|
+
synonyms: ['folder', 'closed', 'collapse', 'directory', 'archive']
|
|
1162
|
+
}),
|
|
833
1163
|
folderCheck: function folderCheck() {
|
|
834
1164
|
return import('./assets/folder_check');
|
|
835
1165
|
},
|
|
836
1166
|
folderExclamation: function folderExclamation() {
|
|
837
1167
|
return import('./assets/folder_exclamation');
|
|
838
1168
|
},
|
|
839
|
-
folderOpen: function
|
|
1169
|
+
folderOpen: withMetadata(function () {
|
|
840
1170
|
return import('./assets/folder_open');
|
|
841
|
-
},
|
|
1171
|
+
}, {
|
|
1172
|
+
synonyms: ['folder', 'open', 'expand', 'directory', 'browse']
|
|
1173
|
+
}),
|
|
842
1174
|
folderOpened: function folderOpened() {
|
|
843
1175
|
return import('./assets/folder_open');
|
|
844
1176
|
},
|
|
@@ -848,28 +1180,38 @@ export var typeToPathMap = {
|
|
|
848
1180
|
framePrevious: function framePrevious() {
|
|
849
1181
|
return import('./assets/frame_previous');
|
|
850
1182
|
},
|
|
851
|
-
fullScreen: function
|
|
1183
|
+
fullScreen: withMetadata(function () {
|
|
852
1184
|
return import('./assets/full_screen');
|
|
853
|
-
},
|
|
854
|
-
|
|
1185
|
+
}, {
|
|
1186
|
+
synonyms: ['fullscreen']
|
|
1187
|
+
}),
|
|
1188
|
+
fullScreenExit: withMetadata(function () {
|
|
855
1189
|
return import('./assets/full_screen_exit');
|
|
856
|
-
},
|
|
1190
|
+
}, {
|
|
1191
|
+
synonyms: ['fullscreen', 'exit', 'minimize', 'window', 'restore', 'shrink']
|
|
1192
|
+
}),
|
|
857
1193
|
function: function _function() {
|
|
858
1194
|
return import('./assets/function');
|
|
859
1195
|
},
|
|
860
|
-
gear: function
|
|
1196
|
+
gear: withMetadata(function () {
|
|
861
1197
|
return import('./assets/gear');
|
|
862
|
-
},
|
|
863
|
-
|
|
1198
|
+
}, {
|
|
1199
|
+
synonyms: ['settings', 'configure', 'configuration', 'preferences', 'options', 'cog', 'setup', 'admin', 'wrench']
|
|
1200
|
+
}),
|
|
1201
|
+
gisApp: withMetadata(function () {
|
|
864
1202
|
return import('./assets/app_gis');
|
|
865
|
-
},
|
|
1203
|
+
}, {
|
|
1204
|
+
category: 'app'
|
|
1205
|
+
}),
|
|
866
1206
|
glasses: function glasses() {
|
|
867
1207
|
return import('./assets/read_only');
|
|
868
1208
|
},
|
|
869
1209
|
// NOTE: To be deprecated in favor of `readOnly`
|
|
870
|
-
globe: function
|
|
1210
|
+
globe: withMetadata(function () {
|
|
871
1211
|
return import('./assets/globe');
|
|
872
|
-
},
|
|
1212
|
+
}, {
|
|
1213
|
+
synonyms: ['globe', 'world', 'web', 'internet', 'international']
|
|
1214
|
+
}),
|
|
873
1215
|
grab: function grab() {
|
|
874
1216
|
return import('./assets/drag_vertical');
|
|
875
1217
|
},
|
|
@@ -882,24 +1224,36 @@ export var typeToPathMap = {
|
|
|
882
1224
|
return import('./assets/grab_omnidirectional');
|
|
883
1225
|
},
|
|
884
1226
|
// NOTE: To be deprecated in favor of drag,
|
|
885
|
-
gradient: function
|
|
1227
|
+
gradient: withMetadata(function () {
|
|
886
1228
|
return import('./assets/gradient');
|
|
887
|
-
},
|
|
888
|
-
|
|
1229
|
+
}, {
|
|
1230
|
+
synonyms: ['gradient', 'blend', 'fade', 'color transition']
|
|
1231
|
+
}),
|
|
1232
|
+
graphApp: withMetadata(function () {
|
|
889
1233
|
return import('./assets/app_graph');
|
|
890
|
-
},
|
|
891
|
-
|
|
1234
|
+
}, {
|
|
1235
|
+
category: 'app'
|
|
1236
|
+
}),
|
|
1237
|
+
grid: withMetadata(function () {
|
|
892
1238
|
return import('./assets/grid');
|
|
893
|
-
},
|
|
894
|
-
|
|
1239
|
+
}, {
|
|
1240
|
+
synonyms: ['grid', 'table', 'layout', 'matrix', 'cells']
|
|
1241
|
+
}),
|
|
1242
|
+
grokApp: withMetadata(function () {
|
|
895
1243
|
return import('./assets/app_grok');
|
|
896
|
-
},
|
|
897
|
-
|
|
1244
|
+
}, {
|
|
1245
|
+
category: 'app'
|
|
1246
|
+
}),
|
|
1247
|
+
heart: withMetadata(function () {
|
|
898
1248
|
return import('./assets/heart');
|
|
899
|
-
},
|
|
900
|
-
|
|
1249
|
+
}, {
|
|
1250
|
+
synonyms: ['heart', 'favorite', 'like', 'love', 'bookmark']
|
|
1251
|
+
}),
|
|
1252
|
+
heartbeatApp: withMetadata(function () {
|
|
901
1253
|
return import('./assets/app_heartbeat');
|
|
902
|
-
},
|
|
1254
|
+
}, {
|
|
1255
|
+
category: 'app'
|
|
1256
|
+
}),
|
|
903
1257
|
heatmap: function heatmap() {
|
|
904
1258
|
return import('./assets/chart_heatmap');
|
|
905
1259
|
},
|
|
@@ -908,21 +1262,31 @@ export var typeToPathMap = {
|
|
|
908
1262
|
return import('./assets/help');
|
|
909
1263
|
},
|
|
910
1264
|
// NOTE: Might be deprecated later (not recommended in Kibana)
|
|
911
|
-
home: function
|
|
1265
|
+
home: withMetadata(function () {
|
|
912
1266
|
return import('./assets/home');
|
|
913
|
-
},
|
|
914
|
-
|
|
1267
|
+
}, {
|
|
1268
|
+
synonyms: ['home', 'house', 'main', 'start', 'dashboard']
|
|
1269
|
+
}),
|
|
1270
|
+
hourglass: withMetadata(function () {
|
|
915
1271
|
return import('./assets/hourglass');
|
|
916
|
-
},
|
|
917
|
-
|
|
1272
|
+
}, {
|
|
1273
|
+
synonyms: ['hourglass', 'waiting', 'loading', 'time', 'pending']
|
|
1274
|
+
}),
|
|
1275
|
+
if: withMetadata(function () {
|
|
918
1276
|
return import('./assets/if');
|
|
919
|
-
},
|
|
920
|
-
|
|
1277
|
+
}, {
|
|
1278
|
+
synonyms: ['if', 'condition', 'logic', 'branch', 'rule']
|
|
1279
|
+
}),
|
|
1280
|
+
info: withMetadata(function () {
|
|
921
1281
|
return import('./assets/info');
|
|
922
|
-
},
|
|
923
|
-
|
|
1282
|
+
}, {
|
|
1283
|
+
synonyms: ['info', 'information', 'help', 'about', 'details']
|
|
1284
|
+
}),
|
|
1285
|
+
image: withMetadata(function () {
|
|
924
1286
|
return import('./assets/image');
|
|
925
|
-
},
|
|
1287
|
+
}, {
|
|
1288
|
+
synonyms: ['image', 'picture', 'photo', 'media', 'graphic']
|
|
1289
|
+
}),
|
|
926
1290
|
importAction: function importAction() {
|
|
927
1291
|
return import('./assets/download');
|
|
928
1292
|
},
|
|
@@ -930,57 +1294,83 @@ export var typeToPathMap = {
|
|
|
930
1294
|
index: function index() {
|
|
931
1295
|
return import('./assets/index');
|
|
932
1296
|
},
|
|
933
|
-
indexClose: function
|
|
1297
|
+
indexClose: withMetadata(function () {
|
|
934
1298
|
return import('./assets/index_close');
|
|
935
|
-
},
|
|
936
|
-
|
|
1299
|
+
}, {
|
|
1300
|
+
synonyms: ['index', 'close', 'elasticsearch', 'dataset', 'remove']
|
|
1301
|
+
}),
|
|
1302
|
+
indexEdit: withMetadata(function () {
|
|
937
1303
|
return import('./assets/index_edit');
|
|
938
|
-
},
|
|
1304
|
+
}, {
|
|
1305
|
+
synonyms: ['index', 'edit', 'elasticsearch', 'dataset', 'modify', 'settings']
|
|
1306
|
+
}),
|
|
939
1307
|
indexFlush: function indexFlush() {
|
|
940
1308
|
return import('./assets/chart_threshold');
|
|
941
1309
|
},
|
|
942
1310
|
// NOTE: To be deprecated in favor of chartThreshold
|
|
943
|
-
indexManagementApp: function
|
|
1311
|
+
indexManagementApp: withMetadata(function () {
|
|
944
1312
|
return import('./assets/app_index_management');
|
|
945
|
-
},
|
|
1313
|
+
}, {
|
|
1314
|
+
category: 'app'
|
|
1315
|
+
}),
|
|
946
1316
|
indexMapping: function indexMapping() {
|
|
947
1317
|
return import('./assets/mapping');
|
|
948
1318
|
},
|
|
949
1319
|
// NOTE: To be deprecated in favor of mapping
|
|
950
|
-
mapping: function
|
|
1320
|
+
mapping: withMetadata(function () {
|
|
951
1321
|
return import('./assets/mapping');
|
|
952
|
-
},
|
|
953
|
-
|
|
1322
|
+
}, {
|
|
1323
|
+
synonyms: ['mapping']
|
|
1324
|
+
}),
|
|
1325
|
+
indexOpen: withMetadata(function () {
|
|
954
1326
|
return import('./assets/index_open');
|
|
955
|
-
},
|
|
956
|
-
|
|
1327
|
+
}, {
|
|
1328
|
+
synonyms: ['index', 'open', 'elasticsearch', 'dataset', 'browse']
|
|
1329
|
+
}),
|
|
1330
|
+
indexPatternApp: withMetadata(function () {
|
|
957
1331
|
return import('./assets/app_index_pattern');
|
|
958
|
-
},
|
|
959
|
-
|
|
1332
|
+
}, {
|
|
1333
|
+
category: 'app'
|
|
1334
|
+
}),
|
|
1335
|
+
indexRollupApp: withMetadata(function () {
|
|
960
1336
|
return import('./assets/app_index_rollup');
|
|
961
|
-
},
|
|
962
|
-
|
|
1337
|
+
}, {
|
|
1338
|
+
category: 'app'
|
|
1339
|
+
}),
|
|
1340
|
+
indexRuntime: withMetadata(function () {
|
|
963
1341
|
return import('./assets/index_runtime');
|
|
964
|
-
},
|
|
965
|
-
|
|
1342
|
+
}, {
|
|
1343
|
+
synonyms: ['index', 'runtime', 'elasticsearch', 'live', 'execution']
|
|
1344
|
+
}),
|
|
1345
|
+
indexSettings: withMetadata(function () {
|
|
966
1346
|
return import('./assets/index_settings');
|
|
967
|
-
},
|
|
1347
|
+
}, {
|
|
1348
|
+
synonyms: ['index', 'settings', 'elasticsearch', 'configure', 'options']
|
|
1349
|
+
}),
|
|
968
1350
|
indexTemporary: function indexTemporary() {
|
|
969
1351
|
return import('./assets/table_time');
|
|
970
1352
|
},
|
|
971
1353
|
// NOTE: To be deprecated in favor of tableTime
|
|
972
|
-
tableTime: function
|
|
1354
|
+
tableTime: withMetadata(function () {
|
|
973
1355
|
return import('./assets/table_time');
|
|
974
|
-
},
|
|
975
|
-
|
|
1356
|
+
}, {
|
|
1357
|
+
synonyms: ['table', 'time', 'temporal', 'date', 'timeline', 'history']
|
|
1358
|
+
}),
|
|
1359
|
+
infinity: withMetadata(function () {
|
|
976
1360
|
return import('./assets/infinity');
|
|
977
|
-
},
|
|
978
|
-
|
|
1361
|
+
}, {
|
|
1362
|
+
synonyms: ['infinity', 'unlimited', 'forever', 'loop', 'endless']
|
|
1363
|
+
}),
|
|
1364
|
+
inputOutput: withMetadata(function () {
|
|
979
1365
|
return import('./assets/input_output');
|
|
980
|
-
},
|
|
981
|
-
|
|
1366
|
+
}, {
|
|
1367
|
+
synonyms: ['input', 'output', 'io', 'data flow', 'pipeline', 'stream']
|
|
1368
|
+
}),
|
|
1369
|
+
inspect: withMetadata(function () {
|
|
982
1370
|
return import('./assets/inspect');
|
|
983
|
-
},
|
|
1371
|
+
}, {
|
|
1372
|
+
synonyms: ['inspect', 'investigate', 'examine', 'analyze', 'look']
|
|
1373
|
+
}),
|
|
984
1374
|
invert: function invert() {
|
|
985
1375
|
return import('./assets/contrast');
|
|
986
1376
|
},
|
|
@@ -988,19 +1378,25 @@ export var typeToPathMap = {
|
|
|
988
1378
|
ip: function ip() {
|
|
989
1379
|
return import('./assets/ip');
|
|
990
1380
|
},
|
|
991
|
-
key: function
|
|
1381
|
+
key: withMetadata(function () {
|
|
992
1382
|
return import('./assets/key');
|
|
993
|
-
},
|
|
994
|
-
|
|
1383
|
+
}, {
|
|
1384
|
+
synonyms: ['key', 'password', 'credential', 'access', 'security']
|
|
1385
|
+
}),
|
|
1386
|
+
keyboard: withMetadata(function () {
|
|
995
1387
|
return import('./assets/keyboard');
|
|
996
|
-
},
|
|
1388
|
+
}, {
|
|
1389
|
+
synonyms: ['keyboard', 'typing', 'input', 'shortcut', 'keys']
|
|
1390
|
+
}),
|
|
997
1391
|
kqlField: function kqlField() {
|
|
998
1392
|
return import('./assets/query_field');
|
|
999
1393
|
},
|
|
1000
1394
|
// NOTE: To be deprecated in favor of queryField
|
|
1001
|
-
queryField: function
|
|
1395
|
+
queryField: withMetadata(function () {
|
|
1002
1396
|
return import('./assets/query_field');
|
|
1003
|
-
},
|
|
1397
|
+
}, {
|
|
1398
|
+
synonyms: ['query', 'field', 'filter', 'column', 'attribute', 'selector']
|
|
1399
|
+
}),
|
|
1004
1400
|
kqlFunction: function kqlFunction() {
|
|
1005
1401
|
return import('./assets/kql_function');
|
|
1006
1402
|
},
|
|
@@ -1008,78 +1404,108 @@ export var typeToPathMap = {
|
|
|
1008
1404
|
return import('./assets/query_operand');
|
|
1009
1405
|
},
|
|
1010
1406
|
// NOTE: To be deprecated in favor of queryOperand
|
|
1011
|
-
queryOperand: function
|
|
1407
|
+
queryOperand: withMetadata(function () {
|
|
1012
1408
|
return import('./assets/query_operand');
|
|
1013
|
-
},
|
|
1409
|
+
}, {
|
|
1410
|
+
synonyms: ['query', 'operand', 'operator', 'logic', 'condition', 'rule']
|
|
1411
|
+
}),
|
|
1014
1412
|
kqlSelector: function kqlSelector() {
|
|
1015
1413
|
return import('./assets/query_selector');
|
|
1016
1414
|
},
|
|
1017
1415
|
// NOTE: To be deprecated in favor of querySelector
|
|
1018
|
-
querySelector: function
|
|
1416
|
+
querySelector: withMetadata(function () {
|
|
1019
1417
|
return import('./assets/query_selector');
|
|
1020
|
-
},
|
|
1418
|
+
}, {
|
|
1419
|
+
synonyms: ['query', 'selector', 'pick', 'choose', 'field', 'filter']
|
|
1420
|
+
}),
|
|
1021
1421
|
kqlValue: function kqlValue() {
|
|
1022
1422
|
return import('./assets/query_value');
|
|
1023
1423
|
},
|
|
1024
1424
|
// NOTE: To be deprecated in favor of queryValue
|
|
1025
|
-
queryValue: function
|
|
1425
|
+
queryValue: withMetadata(function () {
|
|
1026
1426
|
return import('./assets/query_value');
|
|
1027
|
-
},
|
|
1427
|
+
}, {
|
|
1428
|
+
synonyms: ['query', 'value', 'literal', 'data', 'input', 'filter']
|
|
1429
|
+
}),
|
|
1028
1430
|
kubernetesNode: function kubernetesNode() {
|
|
1029
1431
|
return import('./assets/kubernetes_node');
|
|
1030
1432
|
},
|
|
1031
|
-
kubernetesPod: function
|
|
1433
|
+
kubernetesPod: withMetadata(function () {
|
|
1032
1434
|
return import('./assets/kubernetes_pod');
|
|
1033
|
-
},
|
|
1435
|
+
}, {
|
|
1436
|
+
synonyms: ['kubernetes', 'pod', 'k8s', 'container', 'cluster', 'orchestration']
|
|
1437
|
+
}),
|
|
1034
1438
|
launch: function launch() {
|
|
1035
1439
|
return import('./assets/rocket');
|
|
1036
1440
|
},
|
|
1037
1441
|
// NOTE: To be deprecated in favor of rocket
|
|
1038
|
-
rocket: function
|
|
1442
|
+
rocket: withMetadata(function () {
|
|
1039
1443
|
return import('./assets/rocket');
|
|
1040
|
-
},
|
|
1041
|
-
|
|
1444
|
+
}, {
|
|
1445
|
+
synonyms: ['rocket', 'launch', 'deploy', 'fast', 'startup']
|
|
1446
|
+
}),
|
|
1447
|
+
layers: withMetadata(function () {
|
|
1042
1448
|
return import('./assets/layers');
|
|
1043
|
-
},
|
|
1044
|
-
|
|
1449
|
+
}, {
|
|
1450
|
+
synonyms: ['layers']
|
|
1451
|
+
}),
|
|
1452
|
+
lensApp: withMetadata(function () {
|
|
1045
1453
|
return import('./assets/app_lens');
|
|
1046
|
-
},
|
|
1454
|
+
}, {
|
|
1455
|
+
category: 'app'
|
|
1456
|
+
}),
|
|
1047
1457
|
lettering: function lettering() {
|
|
1048
1458
|
return import('./assets/text');
|
|
1049
1459
|
},
|
|
1050
1460
|
// NOTE: To be deprecated in favor of text
|
|
1051
|
-
text: function
|
|
1461
|
+
text: withMetadata(function () {
|
|
1052
1462
|
return import('./assets/text');
|
|
1053
|
-
},
|
|
1054
|
-
|
|
1463
|
+
}, {
|
|
1464
|
+
synonyms: ['text']
|
|
1465
|
+
}),
|
|
1466
|
+
lineBreak: withMetadata(function () {
|
|
1055
1467
|
return import('./assets/line_break');
|
|
1056
|
-
},
|
|
1057
|
-
|
|
1468
|
+
}, {
|
|
1469
|
+
synonyms: ['line break', 'newline', 'paragraph', 'text', 'wrap', 'return']
|
|
1470
|
+
}),
|
|
1471
|
+
lineBreakSlash: withMetadata(function () {
|
|
1058
1472
|
return import('./assets/line_break_slash');
|
|
1059
|
-
},
|
|
1060
|
-
|
|
1473
|
+
}, {
|
|
1474
|
+
synonyms: ['line break', 'slash', 'text', 'separator', 'paragraph']
|
|
1475
|
+
}),
|
|
1476
|
+
lineDash: withMetadata(function () {
|
|
1061
1477
|
return import('./assets/line_dash');
|
|
1062
|
-
},
|
|
1478
|
+
}, {
|
|
1479
|
+
synonyms: ['line dash', 'line', 'dash']
|
|
1480
|
+
}),
|
|
1063
1481
|
lineDashed: function lineDashed() {
|
|
1064
1482
|
return import('./assets/line_dash');
|
|
1065
1483
|
},
|
|
1066
1484
|
// NOTE: To be deprecated in favor of lineDash
|
|
1067
|
-
lineDot: function
|
|
1485
|
+
lineDot: withMetadata(function () {
|
|
1068
1486
|
return import('./assets/line_dot');
|
|
1069
|
-
},
|
|
1487
|
+
}, {
|
|
1488
|
+
synonyms: ['line dot', 'line', 'dot', 'point', 'bullet', 'period', 'circle']
|
|
1489
|
+
}),
|
|
1070
1490
|
lineDotted: function lineDotted() {
|
|
1071
1491
|
return import('./assets/line_dot');
|
|
1072
1492
|
},
|
|
1073
1493
|
// NOTE: To be deprecated in favor of lineDot
|
|
1074
|
-
lineSolid: function
|
|
1494
|
+
lineSolid: withMetadata(function () {
|
|
1075
1495
|
return import('./assets/line_solid');
|
|
1076
|
-
},
|
|
1077
|
-
|
|
1496
|
+
}, {
|
|
1497
|
+
synonyms: ['line solid', 'line', 'solid']
|
|
1498
|
+
}),
|
|
1499
|
+
link: withMetadata(function () {
|
|
1078
1500
|
return import('./assets/link');
|
|
1079
|
-
},
|
|
1080
|
-
|
|
1501
|
+
}, {
|
|
1502
|
+
synonyms: ['link', 'url', 'chain', 'connect', 'hyperlink']
|
|
1503
|
+
}),
|
|
1504
|
+
linkSlash: withMetadata(function () {
|
|
1081
1505
|
return import('./assets/link_slash');
|
|
1082
|
-
},
|
|
1506
|
+
}, {
|
|
1507
|
+
synonyms: ['unlink', 'broken link', 'remove link', 'disconnect', 'url']
|
|
1508
|
+
}),
|
|
1083
1509
|
list: function list() {
|
|
1084
1510
|
return import('./assets/list_bullet');
|
|
1085
1511
|
},
|
|
@@ -1088,202 +1514,328 @@ export var typeToPathMap = {
|
|
|
1088
1514
|
return import('./assets/plus_circle');
|
|
1089
1515
|
},
|
|
1090
1516
|
// NOTE: To be deprecated in favor of `plus_circle`
|
|
1091
|
-
lock: function
|
|
1517
|
+
lock: withMetadata(function () {
|
|
1092
1518
|
return import('./assets/lock');
|
|
1093
|
-
},
|
|
1094
|
-
|
|
1519
|
+
}, {
|
|
1520
|
+
synonyms: ['lock', 'secure', 'private', 'protected', 'password']
|
|
1521
|
+
}),
|
|
1522
|
+
lockOpen: withMetadata(function () {
|
|
1095
1523
|
return import('./assets/lock_open');
|
|
1096
|
-
},
|
|
1524
|
+
}, {
|
|
1525
|
+
synonyms: ['lock open', 'lock', 'secure', 'private', 'protected', 'password', 'open']
|
|
1526
|
+
}),
|
|
1097
1527
|
logPatternAnalysis: function logPatternAnalysis() {
|
|
1098
1528
|
return import('./assets/pattern');
|
|
1099
1529
|
},
|
|
1100
1530
|
// NOTE: To be deprecated in favor of pattern
|
|
1101
|
-
pattern: function
|
|
1531
|
+
pattern: withMetadata(function () {
|
|
1102
1532
|
return import('./assets/pattern');
|
|
1103
|
-
},
|
|
1533
|
+
}, {
|
|
1534
|
+
synonyms: ['pattern', 'texture', 'repeat', 'design', 'fill']
|
|
1535
|
+
}),
|
|
1104
1536
|
logRateAnalysis: function logRateAnalysis() {
|
|
1105
1537
|
return import('./assets/log_rate_analysis');
|
|
1106
1538
|
},
|
|
1107
|
-
logoAWS: function
|
|
1539
|
+
logoAWS: withMetadata(function () {
|
|
1108
1540
|
return import('./assets/logo_aws');
|
|
1109
|
-
},
|
|
1110
|
-
|
|
1541
|
+
}, {
|
|
1542
|
+
category: 'thirdPartyLogo'
|
|
1543
|
+
}),
|
|
1544
|
+
logoAWSMono: withMetadata(function () {
|
|
1111
1545
|
return import('./assets/logo_aws_mono');
|
|
1112
|
-
},
|
|
1113
|
-
|
|
1546
|
+
}, {
|
|
1547
|
+
category: 'thirdPartyLogo'
|
|
1548
|
+
}),
|
|
1549
|
+
logoAerospike: withMetadata(function () {
|
|
1114
1550
|
return import('./assets/logo_aerospike');
|
|
1115
|
-
},
|
|
1116
|
-
|
|
1551
|
+
}, {
|
|
1552
|
+
category: 'thirdPartyLogo'
|
|
1553
|
+
}),
|
|
1554
|
+
logoApache: withMetadata(function () {
|
|
1117
1555
|
return import('./assets/logo_apache');
|
|
1118
|
-
},
|
|
1119
|
-
|
|
1556
|
+
}, {
|
|
1557
|
+
category: 'thirdPartyLogo'
|
|
1558
|
+
}),
|
|
1559
|
+
logoAppSearch: withMetadata(function () {
|
|
1120
1560
|
return import('./assets/logo_app_search');
|
|
1121
|
-
},
|
|
1122
|
-
|
|
1561
|
+
}, {
|
|
1562
|
+
category: 'elasticLogo'
|
|
1563
|
+
}),
|
|
1564
|
+
logoAzure: withMetadata(function () {
|
|
1123
1565
|
return import('./assets/logo_azure');
|
|
1124
|
-
},
|
|
1125
|
-
|
|
1566
|
+
}, {
|
|
1567
|
+
category: 'thirdPartyLogo'
|
|
1568
|
+
}),
|
|
1569
|
+
logoAzureMono: withMetadata(function () {
|
|
1126
1570
|
return import('./assets/logo_azure_mono');
|
|
1127
|
-
},
|
|
1128
|
-
|
|
1571
|
+
}, {
|
|
1572
|
+
category: 'thirdPartyLogo'
|
|
1573
|
+
}),
|
|
1574
|
+
logoBeats: withMetadata(function () {
|
|
1129
1575
|
return import('./assets/logo_beats');
|
|
1130
|
-
},
|
|
1131
|
-
|
|
1576
|
+
}, {
|
|
1577
|
+
category: 'elasticLogo'
|
|
1578
|
+
}),
|
|
1579
|
+
logoBusinessAnalytics: withMetadata(function () {
|
|
1132
1580
|
return import('./assets/logo_business_analytics');
|
|
1133
|
-
},
|
|
1134
|
-
|
|
1581
|
+
}, {
|
|
1582
|
+
category: 'elasticLogo'
|
|
1583
|
+
}),
|
|
1584
|
+
logoCeph: withMetadata(function () {
|
|
1135
1585
|
return import('./assets/logo_ceph');
|
|
1136
|
-
},
|
|
1137
|
-
|
|
1586
|
+
}, {
|
|
1587
|
+
category: 'thirdPartyLogo'
|
|
1588
|
+
}),
|
|
1589
|
+
logoCloud: withMetadata(function () {
|
|
1138
1590
|
return import('./assets/logo_cloud');
|
|
1139
|
-
},
|
|
1140
|
-
|
|
1591
|
+
}, {
|
|
1592
|
+
category: 'elasticLogo'
|
|
1593
|
+
}),
|
|
1594
|
+
logoCloudEnterprise: withMetadata(function () {
|
|
1141
1595
|
return import('./assets/logo_cloud_ece');
|
|
1142
|
-
},
|
|
1143
|
-
|
|
1596
|
+
}, {
|
|
1597
|
+
category: 'elasticLogo'
|
|
1598
|
+
}),
|
|
1599
|
+
logoCode: withMetadata(function () {
|
|
1144
1600
|
return import('./assets/logo_code');
|
|
1145
|
-
},
|
|
1146
|
-
|
|
1601
|
+
}, {
|
|
1602
|
+
category: 'thirdPartyLogo'
|
|
1603
|
+
}),
|
|
1604
|
+
logoCodesandbox: withMetadata(function () {
|
|
1147
1605
|
return import('./assets/logo_codesandbox');
|
|
1148
|
-
},
|
|
1149
|
-
|
|
1606
|
+
}, {
|
|
1607
|
+
category: 'thirdPartyLogo'
|
|
1608
|
+
}),
|
|
1609
|
+
logoCouchbase: withMetadata(function () {
|
|
1150
1610
|
return import('./assets/logo_couchbase');
|
|
1151
|
-
},
|
|
1152
|
-
|
|
1611
|
+
}, {
|
|
1612
|
+
category: 'thirdPartyLogo'
|
|
1613
|
+
}),
|
|
1614
|
+
logoDocker: withMetadata(function () {
|
|
1153
1615
|
return import('./assets/logo_docker');
|
|
1154
|
-
},
|
|
1155
|
-
|
|
1616
|
+
}, {
|
|
1617
|
+
category: 'thirdPartyLogo'
|
|
1618
|
+
}),
|
|
1619
|
+
logoDropwizard: withMetadata(function () {
|
|
1156
1620
|
return import('./assets/logo_dropwizard');
|
|
1157
|
-
},
|
|
1158
|
-
|
|
1621
|
+
}, {
|
|
1622
|
+
category: 'thirdPartyLogo'
|
|
1623
|
+
}),
|
|
1624
|
+
logoElastic: withMetadata(function () {
|
|
1159
1625
|
return import('./assets/logo_elastic');
|
|
1160
|
-
},
|
|
1161
|
-
|
|
1626
|
+
}, {
|
|
1627
|
+
category: 'elasticLogo'
|
|
1628
|
+
}),
|
|
1629
|
+
logoElasticStack: withMetadata(function () {
|
|
1162
1630
|
return import('./assets/logo_elastic_stack');
|
|
1163
|
-
},
|
|
1164
|
-
|
|
1631
|
+
}, {
|
|
1632
|
+
category: 'elasticLogo'
|
|
1633
|
+
}),
|
|
1634
|
+
logoElasticsearch: withMetadata(function () {
|
|
1165
1635
|
return import('./assets/logo_elasticsearch');
|
|
1166
|
-
},
|
|
1167
|
-
|
|
1636
|
+
}, {
|
|
1637
|
+
category: 'elasticLogo'
|
|
1638
|
+
}),
|
|
1639
|
+
logoEnterpriseSearch: withMetadata(function () {
|
|
1168
1640
|
return import('./assets/logo_enterprise_search');
|
|
1169
|
-
},
|
|
1170
|
-
|
|
1641
|
+
}, {
|
|
1642
|
+
category: 'elasticLogo'
|
|
1643
|
+
}),
|
|
1644
|
+
logoEtcd: withMetadata(function () {
|
|
1171
1645
|
return import('./assets/logo_etcd');
|
|
1172
|
-
},
|
|
1173
|
-
|
|
1646
|
+
}, {
|
|
1647
|
+
category: 'thirdPartyLogo'
|
|
1648
|
+
}),
|
|
1649
|
+
logoGCP: withMetadata(function () {
|
|
1174
1650
|
return import('./assets/logo_gcp');
|
|
1175
|
-
},
|
|
1176
|
-
|
|
1651
|
+
}, {
|
|
1652
|
+
category: 'thirdPartyLogo'
|
|
1653
|
+
}),
|
|
1654
|
+
logoGCPMono: withMetadata(function () {
|
|
1177
1655
|
return import('./assets/logo_gcp_mono');
|
|
1178
|
-
},
|
|
1179
|
-
|
|
1656
|
+
}, {
|
|
1657
|
+
category: 'thirdPartyLogo'
|
|
1658
|
+
}),
|
|
1659
|
+
logoGithub: withMetadata(function () {
|
|
1180
1660
|
return import('./assets/logo_github');
|
|
1181
|
-
},
|
|
1182
|
-
|
|
1661
|
+
}, {
|
|
1662
|
+
category: 'thirdPartyLogo'
|
|
1663
|
+
}),
|
|
1664
|
+
logoGmail: withMetadata(function () {
|
|
1183
1665
|
return import('./assets/logo_gmail');
|
|
1184
|
-
},
|
|
1185
|
-
|
|
1666
|
+
}, {
|
|
1667
|
+
category: 'thirdPartyLogo'
|
|
1668
|
+
}),
|
|
1669
|
+
logoGolang: withMetadata(function () {
|
|
1186
1670
|
return import('./assets/logo_golang');
|
|
1187
|
-
},
|
|
1188
|
-
|
|
1671
|
+
}, {
|
|
1672
|
+
category: 'thirdPartyLogo'
|
|
1673
|
+
}),
|
|
1674
|
+
logoGoogleG: withMetadata(function () {
|
|
1189
1675
|
return import('./assets/logo_google_g');
|
|
1190
|
-
},
|
|
1191
|
-
|
|
1676
|
+
}, {
|
|
1677
|
+
category: 'thirdPartyLogo'
|
|
1678
|
+
}),
|
|
1679
|
+
logoHAproxy: withMetadata(function () {
|
|
1192
1680
|
return import('./assets/logo_haproxy');
|
|
1193
|
-
},
|
|
1194
|
-
|
|
1681
|
+
}, {
|
|
1682
|
+
category: 'thirdPartyLogo'
|
|
1683
|
+
}),
|
|
1684
|
+
logoIBM: withMetadata(function () {
|
|
1195
1685
|
return import('./assets/logo_ibm');
|
|
1196
|
-
},
|
|
1197
|
-
|
|
1686
|
+
}, {
|
|
1687
|
+
category: 'thirdPartyLogo'
|
|
1688
|
+
}),
|
|
1689
|
+
logoIBMMono: withMetadata(function () {
|
|
1198
1690
|
return import('./assets/logo_ibm_mono');
|
|
1199
|
-
},
|
|
1200
|
-
|
|
1691
|
+
}, {
|
|
1692
|
+
category: 'thirdPartyLogo'
|
|
1693
|
+
}),
|
|
1694
|
+
logoKafka: withMetadata(function () {
|
|
1201
1695
|
return import('./assets/logo_kafka');
|
|
1202
|
-
},
|
|
1203
|
-
|
|
1696
|
+
}, {
|
|
1697
|
+
category: 'thirdPartyLogo'
|
|
1698
|
+
}),
|
|
1699
|
+
logoKibana: withMetadata(function () {
|
|
1204
1700
|
return import('./assets/logo_kibana');
|
|
1205
|
-
},
|
|
1206
|
-
|
|
1701
|
+
}, {
|
|
1702
|
+
category: 'elasticLogo'
|
|
1703
|
+
}),
|
|
1704
|
+
logoKubernetes: withMetadata(function () {
|
|
1207
1705
|
return import('./assets/logo_kubernetes');
|
|
1208
|
-
},
|
|
1209
|
-
|
|
1706
|
+
}, {
|
|
1707
|
+
category: 'thirdPartyLogo'
|
|
1708
|
+
}),
|
|
1709
|
+
logoLogging: withMetadata(function () {
|
|
1210
1710
|
return import('./assets/logo_logging');
|
|
1211
|
-
},
|
|
1212
|
-
|
|
1711
|
+
}, {
|
|
1712
|
+
category: 'elasticLogo'
|
|
1713
|
+
}),
|
|
1714
|
+
logoLogstash: withMetadata(function () {
|
|
1213
1715
|
return import('./assets/logo_logstash');
|
|
1214
|
-
},
|
|
1215
|
-
|
|
1716
|
+
}, {
|
|
1717
|
+
category: 'elasticLogo'
|
|
1718
|
+
}),
|
|
1719
|
+
logoMaps: withMetadata(function () {
|
|
1216
1720
|
return import('./assets/logo_maps');
|
|
1217
|
-
},
|
|
1218
|
-
|
|
1721
|
+
}, {
|
|
1722
|
+
category: 'elasticLogo'
|
|
1723
|
+
}),
|
|
1724
|
+
logoMemcached: withMetadata(function () {
|
|
1219
1725
|
return import('./assets/logo_memcached');
|
|
1220
|
-
},
|
|
1221
|
-
|
|
1726
|
+
}, {
|
|
1727
|
+
category: 'thirdPartyLogo'
|
|
1728
|
+
}),
|
|
1729
|
+
logoMetrics: withMetadata(function () {
|
|
1222
1730
|
return import('./assets/logo_metrics');
|
|
1223
|
-
},
|
|
1224
|
-
|
|
1731
|
+
}, {
|
|
1732
|
+
category: 'elasticLogo'
|
|
1733
|
+
}),
|
|
1734
|
+
logoMongodb: withMetadata(function () {
|
|
1225
1735
|
return import('./assets/logo_mongodb');
|
|
1226
|
-
},
|
|
1227
|
-
|
|
1736
|
+
}, {
|
|
1737
|
+
category: 'thirdPartyLogo'
|
|
1738
|
+
}),
|
|
1739
|
+
logoMySQL: withMetadata(function () {
|
|
1228
1740
|
return import('./assets/logo_mysql');
|
|
1229
|
-
},
|
|
1230
|
-
|
|
1741
|
+
}, {
|
|
1742
|
+
category: 'thirdPartyLogo'
|
|
1743
|
+
}),
|
|
1744
|
+
logoNginx: withMetadata(function () {
|
|
1231
1745
|
return import('./assets/logo_nginx');
|
|
1232
|
-
},
|
|
1233
|
-
|
|
1746
|
+
}, {
|
|
1747
|
+
category: 'thirdPartyLogo'
|
|
1748
|
+
}),
|
|
1749
|
+
logoObservability: withMetadata(function () {
|
|
1234
1750
|
return import('./assets/logo_observability');
|
|
1235
|
-
},
|
|
1236
|
-
|
|
1751
|
+
}, {
|
|
1752
|
+
category: 'elasticLogo'
|
|
1753
|
+
}),
|
|
1754
|
+
logoOsquery: withMetadata(function () {
|
|
1237
1755
|
return import('./assets/logo_osquery');
|
|
1238
|
-
},
|
|
1239
|
-
|
|
1756
|
+
}, {
|
|
1757
|
+
category: 'thirdPartyLogo'
|
|
1758
|
+
}),
|
|
1759
|
+
logoPhp: withMetadata(function () {
|
|
1240
1760
|
return import('./assets/logo_php');
|
|
1241
|
-
},
|
|
1242
|
-
|
|
1761
|
+
}, {
|
|
1762
|
+
category: 'thirdPartyLogo'
|
|
1763
|
+
}),
|
|
1764
|
+
logoPostgres: withMetadata(function () {
|
|
1243
1765
|
return import('./assets/logo_postgres');
|
|
1244
|
-
},
|
|
1245
|
-
|
|
1766
|
+
}, {
|
|
1767
|
+
category: 'thirdPartyLogo'
|
|
1768
|
+
}),
|
|
1769
|
+
logoPrometheus: withMetadata(function () {
|
|
1246
1770
|
return import('./assets/logo_prometheus');
|
|
1247
|
-
},
|
|
1248
|
-
|
|
1771
|
+
}, {
|
|
1772
|
+
category: 'thirdPartyLogo'
|
|
1773
|
+
}),
|
|
1774
|
+
logoRabbitmq: withMetadata(function () {
|
|
1249
1775
|
return import('./assets/logo_rabbitmq');
|
|
1250
|
-
},
|
|
1251
|
-
|
|
1776
|
+
}, {
|
|
1777
|
+
category: 'thirdPartyLogo'
|
|
1778
|
+
}),
|
|
1779
|
+
logoRedis: withMetadata(function () {
|
|
1252
1780
|
return import('./assets/logo_redis');
|
|
1253
|
-
},
|
|
1254
|
-
|
|
1781
|
+
}, {
|
|
1782
|
+
category: 'thirdPartyLogo'
|
|
1783
|
+
}),
|
|
1784
|
+
logoSecurity: withMetadata(function () {
|
|
1255
1785
|
return import('./assets/logo_security');
|
|
1256
|
-
},
|
|
1257
|
-
|
|
1786
|
+
}, {
|
|
1787
|
+
category: 'elasticLogo'
|
|
1788
|
+
}),
|
|
1789
|
+
logoSiteSearch: withMetadata(function () {
|
|
1258
1790
|
return import('./assets/logo_site_search');
|
|
1259
|
-
},
|
|
1260
|
-
|
|
1791
|
+
}, {
|
|
1792
|
+
category: 'elasticLogo'
|
|
1793
|
+
}),
|
|
1794
|
+
logoSketch: withMetadata(function () {
|
|
1261
1795
|
return import('./assets/logo_sketch');
|
|
1262
|
-
},
|
|
1263
|
-
|
|
1796
|
+
}, {
|
|
1797
|
+
category: 'thirdPartyLogo'
|
|
1798
|
+
}),
|
|
1799
|
+
logoSlack: withMetadata(function () {
|
|
1264
1800
|
return import('./assets/logo_slack');
|
|
1265
|
-
},
|
|
1266
|
-
|
|
1801
|
+
}, {
|
|
1802
|
+
category: 'thirdPartyLogo'
|
|
1803
|
+
}),
|
|
1804
|
+
logoUptime: withMetadata(function () {
|
|
1267
1805
|
return import('./assets/logo_uptime');
|
|
1268
|
-
},
|
|
1269
|
-
|
|
1806
|
+
}, {
|
|
1807
|
+
category: 'elasticLogo'
|
|
1808
|
+
}),
|
|
1809
|
+
logoVectorDB: withMetadata(function () {
|
|
1270
1810
|
return import('./assets/logo_vector_db');
|
|
1271
|
-
},
|
|
1272
|
-
|
|
1811
|
+
}, {
|
|
1812
|
+
category: 'elasticLogo'
|
|
1813
|
+
}),
|
|
1814
|
+
logoVulnerabilityManagement: withMetadata(function () {
|
|
1273
1815
|
return import('./assets/logo_vulnerability_management');
|
|
1274
|
-
},
|
|
1275
|
-
|
|
1816
|
+
}, {
|
|
1817
|
+
category: 'elasticLogo'
|
|
1818
|
+
}),
|
|
1819
|
+
logoWebhook: withMetadata(function () {
|
|
1276
1820
|
return import('./assets/logo_webhook');
|
|
1277
|
-
},
|
|
1278
|
-
|
|
1821
|
+
}, {
|
|
1822
|
+
category: 'thirdPartyLogo'
|
|
1823
|
+
}),
|
|
1824
|
+
logoWindows: withMetadata(function () {
|
|
1279
1825
|
return import('./assets/logo_windows');
|
|
1280
|
-
},
|
|
1281
|
-
|
|
1826
|
+
}, {
|
|
1827
|
+
category: 'thirdPartyLogo'
|
|
1828
|
+
}),
|
|
1829
|
+
logoWorkplaceSearch: withMetadata(function () {
|
|
1282
1830
|
return import('./assets/logo_workplace_search');
|
|
1283
|
-
},
|
|
1284
|
-
|
|
1831
|
+
}, {
|
|
1832
|
+
category: 'elasticLogo'
|
|
1833
|
+
}),
|
|
1834
|
+
logsApp: withMetadata(function () {
|
|
1285
1835
|
return import('./assets/app_logs');
|
|
1286
|
-
},
|
|
1836
|
+
}, {
|
|
1837
|
+
category: 'app'
|
|
1838
|
+
}),
|
|
1287
1839
|
logstashFilter: function logstashFilter() {
|
|
1288
1840
|
return import('./assets/logstash_filter');
|
|
1289
1841
|
},
|
|
@@ -1301,27 +1853,39 @@ export var typeToPathMap = {
|
|
|
1301
1853
|
return import('./assets/queue');
|
|
1302
1854
|
},
|
|
1303
1855
|
// NOTE: To be deprecated in favor of queue
|
|
1304
|
-
queue: function
|
|
1856
|
+
queue: withMetadata(function () {
|
|
1305
1857
|
return import('./assets/queue');
|
|
1306
|
-
},
|
|
1307
|
-
|
|
1858
|
+
}, {
|
|
1859
|
+
synonyms: ['queue', 'line', 'buffer', 'waiting', 'jobs']
|
|
1860
|
+
}),
|
|
1861
|
+
machineLearningApp: withMetadata(function () {
|
|
1308
1862
|
return import('./assets/app_ml');
|
|
1309
|
-
},
|
|
1863
|
+
}, {
|
|
1864
|
+
category: 'app'
|
|
1865
|
+
}),
|
|
1310
1866
|
magnet: function magnet() {
|
|
1311
1867
|
return import('./assets/magnet');
|
|
1312
1868
|
},
|
|
1313
|
-
magnify: function
|
|
1869
|
+
magnify: withMetadata(function () {
|
|
1314
1870
|
return import('./assets/magnify');
|
|
1315
|
-
},
|
|
1316
|
-
|
|
1871
|
+
}, {
|
|
1872
|
+
synonyms: ['search', 'find', 'zoom', 'lookup', 'query', 'discover', 'glass']
|
|
1873
|
+
}),
|
|
1874
|
+
magnifyExclamation: withMetadata(function () {
|
|
1317
1875
|
return import('./assets/magnify_exclamation');
|
|
1318
|
-
},
|
|
1319
|
-
|
|
1876
|
+
}, {
|
|
1877
|
+
synonyms: ['search', 'alert', 'warning', 'find', 'magnify', 'important']
|
|
1878
|
+
}),
|
|
1879
|
+
magnifyMinus: withMetadata(function () {
|
|
1320
1880
|
return import('./assets/magnify_minus');
|
|
1321
|
-
},
|
|
1322
|
-
|
|
1881
|
+
}, {
|
|
1882
|
+
synonyms: ['zoom out', 'search', 'minus', 'shrink', 'magnify']
|
|
1883
|
+
}),
|
|
1884
|
+
magnifyPlus: withMetadata(function () {
|
|
1323
1885
|
return import('./assets/magnify_plus');
|
|
1324
|
-
},
|
|
1886
|
+
}, {
|
|
1887
|
+
synonyms: ['zoom in', 'search', 'plus', 'enlarge', 'magnify']
|
|
1888
|
+
}),
|
|
1325
1889
|
magnifyWithExclamation: function magnifyWithExclamation() {
|
|
1326
1890
|
return import('./assets/magnify_with_exclamation');
|
|
1327
1891
|
},
|
|
@@ -1334,58 +1898,84 @@ export var typeToPathMap = {
|
|
|
1334
1898
|
return import('./assets/magnify_with_plus');
|
|
1335
1899
|
},
|
|
1336
1900
|
// NOTE: To be deprecated in favor of magnifyPlus,
|
|
1337
|
-
managementApp: function
|
|
1901
|
+
managementApp: withMetadata(function () {
|
|
1338
1902
|
return import('./assets/app_management');
|
|
1339
|
-
},
|
|
1340
|
-
|
|
1903
|
+
}, {
|
|
1904
|
+
category: 'app'
|
|
1905
|
+
}),
|
|
1906
|
+
map: withMetadata(function () {
|
|
1341
1907
|
return import('./assets/map');
|
|
1342
|
-
},
|
|
1908
|
+
}, {
|
|
1909
|
+
synonyms: ['map', 'location', 'geo', 'geography', 'region']
|
|
1910
|
+
}),
|
|
1343
1911
|
mapMarker: function mapMarker() {
|
|
1344
1912
|
return import('./assets/waypoint');
|
|
1345
1913
|
},
|
|
1346
1914
|
// NOTE: To be deprecated in favor of waypoint
|
|
1347
|
-
waypoint: function
|
|
1915
|
+
waypoint: withMetadata(function () {
|
|
1348
1916
|
return import('./assets/waypoint');
|
|
1349
|
-
},
|
|
1350
|
-
|
|
1917
|
+
}, {
|
|
1918
|
+
synonyms: ['waypoint', 'marker', 'step', 'node', 'path']
|
|
1919
|
+
}),
|
|
1920
|
+
megaphone: withMetadata(function () {
|
|
1351
1921
|
return import('./assets/megaphone');
|
|
1352
|
-
},
|
|
1922
|
+
}, {
|
|
1923
|
+
synonyms: ['megaphone', 'announce', 'broadcast', 'marketing', 'loud']
|
|
1924
|
+
}),
|
|
1353
1925
|
memory: function memory() {
|
|
1354
1926
|
return import('./assets/memory');
|
|
1355
1927
|
},
|
|
1356
|
-
menu: function
|
|
1928
|
+
menu: withMetadata(function () {
|
|
1357
1929
|
return import('./assets/menu');
|
|
1358
|
-
},
|
|
1930
|
+
}, {
|
|
1931
|
+
synonyms: ['menu', 'hamburger', 'navigation', 'options', 'bars']
|
|
1932
|
+
}),
|
|
1359
1933
|
menuDown: function menuDown() {
|
|
1360
1934
|
return import('./assets/menu_down');
|
|
1361
1935
|
},
|
|
1362
|
-
menuLeft: function
|
|
1936
|
+
menuLeft: withMetadata(function () {
|
|
1363
1937
|
return import('./assets/menu_left');
|
|
1364
|
-
},
|
|
1365
|
-
|
|
1938
|
+
}, {
|
|
1939
|
+
synonyms: ['menu left', 'menu', 'hamburger', 'navigation', 'options', 'bars', 'left']
|
|
1940
|
+
}),
|
|
1941
|
+
menuRight: withMetadata(function () {
|
|
1366
1942
|
return import('./assets/menu_right');
|
|
1367
|
-
},
|
|
1943
|
+
}, {
|
|
1944
|
+
synonyms: ['menu right', 'menu', 'hamburger', 'navigation', 'options', 'bars', 'right']
|
|
1945
|
+
}),
|
|
1368
1946
|
menuUp: function menuUp() {
|
|
1369
1947
|
return import('./assets/menu_up');
|
|
1370
1948
|
},
|
|
1371
|
-
merge: function
|
|
1949
|
+
merge: withMetadata(function () {
|
|
1372
1950
|
return import('./assets/merge');
|
|
1373
|
-
},
|
|
1374
|
-
|
|
1951
|
+
}, {
|
|
1952
|
+
synonyms: ['merge', 'combine', 'join', 'unite', 'git']
|
|
1953
|
+
}),
|
|
1954
|
+
metricbeatApp: withMetadata(function () {
|
|
1375
1955
|
return import('./assets/app_metricbeat');
|
|
1376
|
-
},
|
|
1377
|
-
|
|
1956
|
+
}, {
|
|
1957
|
+
category: 'app'
|
|
1958
|
+
}),
|
|
1959
|
+
metricsApp: withMetadata(function () {
|
|
1378
1960
|
return import('./assets/app_metrics');
|
|
1379
|
-
},
|
|
1380
|
-
|
|
1961
|
+
}, {
|
|
1962
|
+
category: 'app'
|
|
1963
|
+
}),
|
|
1964
|
+
minimize: withMetadata(function () {
|
|
1381
1965
|
return import('./assets/minimize');
|
|
1382
|
-
},
|
|
1383
|
-
|
|
1966
|
+
}, {
|
|
1967
|
+
synonyms: ['minimize']
|
|
1968
|
+
}),
|
|
1969
|
+
minus: withMetadata(function () {
|
|
1384
1970
|
return import('./assets/minus');
|
|
1385
|
-
},
|
|
1386
|
-
|
|
1971
|
+
}, {
|
|
1972
|
+
synonyms: ['minus', 'remove', 'subtract', 'decrement']
|
|
1973
|
+
}),
|
|
1974
|
+
minusCircle: withMetadata(function () {
|
|
1387
1975
|
return import('./assets/minus_circle');
|
|
1388
|
-
},
|
|
1976
|
+
}, {
|
|
1977
|
+
synonyms: ['minus circle', 'minus', 'remove', 'subtract', 'decrement', 'circle']
|
|
1978
|
+
}),
|
|
1389
1979
|
minusInCircle: function minusInCircle() {
|
|
1390
1980
|
return import('./assets/minus_circle');
|
|
1391
1981
|
},
|
|
@@ -1398,27 +1988,37 @@ export var typeToPathMap = {
|
|
|
1398
1988
|
return import('./assets/minus_square');
|
|
1399
1989
|
},
|
|
1400
1990
|
// NOTE: To be deprecated in favor of minusSquare
|
|
1401
|
-
minusSquare: function
|
|
1991
|
+
minusSquare: withMetadata(function () {
|
|
1402
1992
|
return import('./assets/minus_square');
|
|
1403
|
-
},
|
|
1993
|
+
}, {
|
|
1994
|
+
synonyms: ['minus', 'square', 'remove', 'collapse', 'decrement']
|
|
1995
|
+
}),
|
|
1404
1996
|
mobile: function mobile() {
|
|
1405
1997
|
return import('./assets/mobile');
|
|
1406
1998
|
},
|
|
1407
|
-
monitoringApp: function
|
|
1999
|
+
monitoringApp: withMetadata(function () {
|
|
1408
2000
|
return import('./assets/app_monitoring');
|
|
1409
|
-
},
|
|
1410
|
-
|
|
2001
|
+
}, {
|
|
2002
|
+
category: 'app'
|
|
2003
|
+
}),
|
|
2004
|
+
moon: withMetadata(function () {
|
|
1411
2005
|
return import('./assets/moon');
|
|
1412
|
-
},
|
|
1413
|
-
|
|
2006
|
+
}, {
|
|
2007
|
+
synonyms: ['moon', 'dark', 'night', 'theme']
|
|
2008
|
+
}),
|
|
2009
|
+
move: withMetadata(function () {
|
|
1414
2010
|
return import('./assets/move');
|
|
1415
|
-
},
|
|
2011
|
+
}, {
|
|
2012
|
+
synonyms: ['move', 'relocate', 'drag', 'position', 'transfer']
|
|
2013
|
+
}),
|
|
1416
2014
|
namespace: function namespace() {
|
|
1417
2015
|
return import('./assets/namespace');
|
|
1418
2016
|
},
|
|
1419
|
-
nested: function
|
|
2017
|
+
nested: withMetadata(function () {
|
|
1420
2018
|
return import('./assets/nested');
|
|
1421
|
-
},
|
|
2019
|
+
}, {
|
|
2020
|
+
synonyms: ['nested', 'hierarchy', 'tree', 'child', 'indent']
|
|
2021
|
+
}),
|
|
1422
2022
|
newChat: function newChat() {
|
|
1423
2023
|
return import('./assets/plus_circle');
|
|
1424
2024
|
},
|
|
@@ -1427,71 +2027,105 @@ export var typeToPathMap = {
|
|
|
1427
2027
|
return import('./assets/vector_triangle');
|
|
1428
2028
|
},
|
|
1429
2029
|
// NOTE: To be deprecated in favor of vectorTriangle
|
|
1430
|
-
vectorTriangle: function
|
|
2030
|
+
vectorTriangle: withMetadata(function () {
|
|
1431
2031
|
return import('./assets/vector_triangle');
|
|
1432
|
-
},
|
|
1433
|
-
|
|
2032
|
+
}, {
|
|
2033
|
+
synonyms: ['vector', 'triangle', 'shape', 'geometry', 'delta']
|
|
2034
|
+
}),
|
|
2035
|
+
notebookApp: withMetadata(function () {
|
|
1434
2036
|
return import('./assets/app_notebook');
|
|
1435
|
-
},
|
|
1436
|
-
|
|
2037
|
+
}, {
|
|
2038
|
+
category: 'app'
|
|
2039
|
+
}),
|
|
2040
|
+
number: withMetadata(function () {
|
|
1437
2041
|
return import('./assets/number');
|
|
1438
|
-
},
|
|
2042
|
+
}, {
|
|
2043
|
+
synonyms: ['number', 'digit', 'numeric', 'count', 'hash']
|
|
2044
|
+
}),
|
|
1439
2045
|
offline: function offline() {
|
|
1440
2046
|
return import('./assets/wifi_slash');
|
|
1441
2047
|
},
|
|
1442
2048
|
// NOTE: To be deprecated in favor of wifiSlash
|
|
1443
|
-
wifiSlash: function
|
|
2049
|
+
wifiSlash: withMetadata(function () {
|
|
1444
2050
|
return import('./assets/wifi_slash');
|
|
1445
|
-
},
|
|
2051
|
+
}, {
|
|
2052
|
+
synonyms: ['wifi', 'off', 'disconnected', 'network', 'wireless', 'no signal']
|
|
2053
|
+
}),
|
|
1446
2054
|
online: function online() {
|
|
1447
2055
|
return import('./assets/wifi');
|
|
1448
2056
|
},
|
|
1449
2057
|
// NOTE: To be deprecated in favor of wifi
|
|
1450
|
-
wifi: function
|
|
2058
|
+
wifi: withMetadata(function () {
|
|
1451
2059
|
return import('./assets/wifi');
|
|
1452
|
-
},
|
|
1453
|
-
|
|
2060
|
+
}, {
|
|
2061
|
+
synonyms: ['wifi', 'wireless', 'network', 'internet', 'connection']
|
|
2062
|
+
}),
|
|
2063
|
+
outlierDetectionJob: withMetadata(function () {
|
|
1454
2064
|
return import('./assets/ml_outlier_detection_job');
|
|
1455
|
-
},
|
|
1456
|
-
|
|
2065
|
+
}, {
|
|
2066
|
+
category: 'ml'
|
|
2067
|
+
}),
|
|
2068
|
+
package: withMetadata(function () {
|
|
1457
2069
|
return import('./assets/package');
|
|
1458
|
-
},
|
|
1459
|
-
|
|
2070
|
+
}, {
|
|
2071
|
+
synonyms: ['package', 'box', 'bundle', 'npm', 'module']
|
|
2072
|
+
}),
|
|
2073
|
+
packetbeatApp: withMetadata(function () {
|
|
1460
2074
|
return import('./assets/app_packetbeat');
|
|
1461
|
-
},
|
|
2075
|
+
}, {
|
|
2076
|
+
category: 'app'
|
|
2077
|
+
}),
|
|
1462
2078
|
pageSelect: function pageSelect() {
|
|
1463
2079
|
return import('./assets/page_select');
|
|
1464
2080
|
},
|
|
1465
|
-
pagesSelect: function
|
|
2081
|
+
pagesSelect: withMetadata(function () {
|
|
1466
2082
|
return import('./assets/pages_select');
|
|
1467
|
-
},
|
|
1468
|
-
|
|
2083
|
+
}, {
|
|
2084
|
+
synonyms: ['pages', 'select', 'pagination', 'choose', 'document']
|
|
2085
|
+
}),
|
|
2086
|
+
palette: withMetadata(function () {
|
|
1469
2087
|
return import('./assets/palette');
|
|
1470
|
-
},
|
|
1471
|
-
|
|
2088
|
+
}, {
|
|
2089
|
+
synonyms: ['palette', 'colors', 'theme', 'design', 'swatch']
|
|
2090
|
+
}),
|
|
2091
|
+
paperClip: withMetadata(function () {
|
|
1472
2092
|
return import('./assets/paper_clip');
|
|
1473
|
-
},
|
|
1474
|
-
|
|
2093
|
+
}, {
|
|
2094
|
+
synonyms: ['attachment', 'clip', 'file', 'attach', 'paperclip']
|
|
2095
|
+
}),
|
|
2096
|
+
partial: withMetadata(function () {
|
|
1475
2097
|
return import('./assets/partial');
|
|
1476
|
-
},
|
|
1477
|
-
|
|
2098
|
+
}, {
|
|
2099
|
+
synonyms: ['partial', 'incomplete', 'fragment', 'section']
|
|
2100
|
+
}),
|
|
2101
|
+
pause: withMetadata(function () {
|
|
1478
2102
|
return import('./assets/pause');
|
|
1479
|
-
},
|
|
2103
|
+
}, {
|
|
2104
|
+
synonyms: ['pause', 'hold', 'stop temporary', 'wait']
|
|
2105
|
+
}),
|
|
1480
2106
|
payment: function payment() {
|
|
1481
2107
|
return import('./assets/payment');
|
|
1482
2108
|
},
|
|
1483
|
-
pencil: function
|
|
2109
|
+
pencil: withMetadata(function () {
|
|
1484
2110
|
return import('./assets/pencil');
|
|
1485
|
-
},
|
|
1486
|
-
|
|
2111
|
+
}, {
|
|
2112
|
+
synonyms: ['pencil', 'edit', 'write', 'modify', 'pen']
|
|
2113
|
+
}),
|
|
2114
|
+
percent: withMetadata(function () {
|
|
1487
2115
|
return import('./assets/percent');
|
|
1488
|
-
},
|
|
1489
|
-
|
|
2116
|
+
}, {
|
|
2117
|
+
synonyms: ['percent', 'percentage', 'ratio', 'rate']
|
|
2118
|
+
}),
|
|
2119
|
+
pin: withMetadata(function () {
|
|
1490
2120
|
return import('./assets/pin');
|
|
1491
|
-
},
|
|
1492
|
-
|
|
2121
|
+
}, {
|
|
2122
|
+
synonyms: ['pin', 'anchor', 'stick', 'fixed', 'bookmark']
|
|
2123
|
+
}),
|
|
2124
|
+
pinFill: withMetadata(function () {
|
|
1493
2125
|
return import('./assets/pin_fill');
|
|
1494
|
-
},
|
|
2126
|
+
}, {
|
|
2127
|
+
synonyms: ['pin', 'filled', 'stick', 'anchor', 'fixed', 'bookmark']
|
|
2128
|
+
}),
|
|
1495
2129
|
pinFilled: function pinFilled() {
|
|
1496
2130
|
return import('./assets/pin_fill');
|
|
1497
2131
|
},
|
|
@@ -1500,19 +2134,25 @@ export var typeToPathMap = {
|
|
|
1500
2134
|
return import('./assets/line_break');
|
|
1501
2135
|
},
|
|
1502
2136
|
// NOTE: To be deprecated in favor of lineBreak
|
|
1503
|
-
pipelineApp: function
|
|
2137
|
+
pipelineApp: withMetadata(function () {
|
|
1504
2138
|
return import('./assets/app_pipeline');
|
|
1505
|
-
},
|
|
2139
|
+
}, {
|
|
2140
|
+
category: 'app'
|
|
2141
|
+
}),
|
|
1506
2142
|
pipeNoBreaks: function pipeNoBreaks() {
|
|
1507
2143
|
return import('./assets/line_break_slash');
|
|
1508
2144
|
},
|
|
1509
2145
|
// NOTE: To be deprecated in favor of lineBreakSlash
|
|
1510
|
-
pivot: function
|
|
2146
|
+
pivot: withMetadata(function () {
|
|
1511
2147
|
return import('./assets/pivot');
|
|
1512
|
-
},
|
|
1513
|
-
|
|
2148
|
+
}, {
|
|
2149
|
+
synonyms: ['pivot', 'table', 'transform', 'rotate', 'analytics']
|
|
2150
|
+
}),
|
|
2151
|
+
play: withMetadata(function () {
|
|
1514
2152
|
return import('./assets/play');
|
|
1515
|
-
},
|
|
2153
|
+
}, {
|
|
2154
|
+
synonyms: ['play', 'start', 'run', 'media', 'video']
|
|
2155
|
+
}),
|
|
1516
2156
|
playFilled: function playFilled() {
|
|
1517
2157
|
return import('./assets/play_filled');
|
|
1518
2158
|
},
|
|
@@ -1520,12 +2160,16 @@ export var typeToPathMap = {
|
|
|
1520
2160
|
plugs: function plugs() {
|
|
1521
2161
|
return import('./assets/plugs');
|
|
1522
2162
|
},
|
|
1523
|
-
plus: function
|
|
2163
|
+
plus: withMetadata(function () {
|
|
1524
2164
|
return import('./assets/plus');
|
|
1525
|
-
},
|
|
1526
|
-
|
|
2165
|
+
}, {
|
|
2166
|
+
synonyms: ['plus', 'add', 'new', 'create', 'increment']
|
|
2167
|
+
}),
|
|
2168
|
+
plusCircle: withMetadata(function () {
|
|
1527
2169
|
return import('./assets/plus_circle');
|
|
1528
|
-
},
|
|
2170
|
+
}, {
|
|
2171
|
+
synonyms: ['plus circle', 'plus', 'add', 'new', 'create', 'increment', 'circle']
|
|
2172
|
+
}),
|
|
1529
2173
|
plusInCircle: function plusInCircle() {
|
|
1530
2174
|
return import('./assets/plus_circle');
|
|
1531
2175
|
},
|
|
@@ -1538,88 +2182,132 @@ export var typeToPathMap = {
|
|
|
1538
2182
|
return import('./assets/plus_square');
|
|
1539
2183
|
},
|
|
1540
2184
|
// NOTE: To be deprecated in favor of plusSquare
|
|
1541
|
-
plusSquare: function
|
|
2185
|
+
plusSquare: withMetadata(function () {
|
|
1542
2186
|
return import('./assets/plus_square');
|
|
1543
|
-
},
|
|
2187
|
+
}, {
|
|
2188
|
+
synonyms: ['plus', 'square', 'add', 'expand', 'increment']
|
|
2189
|
+
}),
|
|
1544
2190
|
popout: function popout() {
|
|
1545
2191
|
return import('./assets/external');
|
|
1546
2192
|
},
|
|
1547
2193
|
// NOTE: To be deprecated in favor of external
|
|
1548
|
-
presentation: function
|
|
2194
|
+
presentation: withMetadata(function () {
|
|
1549
2195
|
return import('./assets/presentation');
|
|
1550
|
-
},
|
|
2196
|
+
}, {
|
|
2197
|
+
synonyms: ['presentation', 'slides', 'deck', 'display', 'show']
|
|
2198
|
+
}),
|
|
1551
2199
|
productRobot: function productRobot() {
|
|
1552
2200
|
return import('./assets/product_agent');
|
|
1553
2201
|
},
|
|
1554
2202
|
// NOTE: To be deprecated in favor of productAgent
|
|
1555
|
-
productAgent: function
|
|
2203
|
+
productAgent: withMetadata(function () {
|
|
1556
2204
|
return import('./assets/product_agent');
|
|
1557
|
-
},
|
|
1558
|
-
|
|
2205
|
+
}, {
|
|
2206
|
+
synonyms: ['agent', 'product', 'elastic agent', 'fleet', 'monitoring']
|
|
2207
|
+
}),
|
|
2208
|
+
productCloudInfra: withMetadata(function () {
|
|
1559
2209
|
return import('./assets/product_cloud_infra');
|
|
1560
|
-
},
|
|
1561
|
-
|
|
2210
|
+
}, {
|
|
2211
|
+
synonyms: ['cloud', 'infrastructure', 'product', 'hosting', 'platform']
|
|
2212
|
+
}),
|
|
2213
|
+
productDashboard: withMetadata(function () {
|
|
1562
2214
|
return import('./assets/product_dashboard');
|
|
1563
|
-
},
|
|
1564
|
-
|
|
2215
|
+
}, {
|
|
2216
|
+
synonyms: ['dashboard', 'product', 'kibana', 'analytics', 'panel']
|
|
2217
|
+
}),
|
|
2218
|
+
productDiscover: withMetadata(function () {
|
|
1565
2219
|
return import('./assets/product_discover');
|
|
1566
|
-
},
|
|
1567
|
-
|
|
2220
|
+
}, {
|
|
2221
|
+
synonyms: ['discover', 'product', 'explore', 'data', 'search', 'kibana']
|
|
2222
|
+
}),
|
|
2223
|
+
productML: withMetadata(function () {
|
|
1568
2224
|
return import('./assets/product_ml');
|
|
1569
|
-
},
|
|
1570
|
-
|
|
2225
|
+
}, {
|
|
2226
|
+
synonyms: ['machine learning', 'ml', 'product', 'model', 'ai']
|
|
2227
|
+
}),
|
|
2228
|
+
productStreamsClassic: withMetadata(function () {
|
|
1571
2229
|
return import('./assets/product_streams_classic');
|
|
1572
|
-
},
|
|
1573
|
-
|
|
2230
|
+
}, {
|
|
2231
|
+
synonyms: ['streams', 'classic', 'product', 'data', 'pipeline']
|
|
2232
|
+
}),
|
|
2233
|
+
productStreamsWired: withMetadata(function () {
|
|
1574
2234
|
return import('./assets/product_streams_wired');
|
|
1575
|
-
},
|
|
2235
|
+
}, {
|
|
2236
|
+
synonyms: ['streams', 'wired', 'product', 'data', 'pipeline', 'connected']
|
|
2237
|
+
}),
|
|
1576
2238
|
push: function push() {
|
|
1577
2239
|
return import('./assets/send');
|
|
1578
2240
|
},
|
|
1579
2241
|
// NOTE: To be deprecated in favor of send
|
|
1580
|
-
send: function
|
|
2242
|
+
send: withMetadata(function () {
|
|
1581
2243
|
return import('./assets/send');
|
|
1582
|
-
},
|
|
1583
|
-
|
|
2244
|
+
}, {
|
|
2245
|
+
synonyms: ['send', 'submit', 'dispatch', 'arrow', 'share']
|
|
2246
|
+
}),
|
|
2247
|
+
question: withMetadata(function () {
|
|
1584
2248
|
return import('./assets/question');
|
|
1585
|
-
},
|
|
1586
|
-
|
|
2249
|
+
}, {
|
|
2250
|
+
synonyms: ['question', 'help', 'unknown', 'faq', 'ask']
|
|
2251
|
+
}),
|
|
2252
|
+
quote: withMetadata(function () {
|
|
1587
2253
|
return import('./assets/quote');
|
|
1588
|
-
},
|
|
1589
|
-
|
|
2254
|
+
}, {
|
|
2255
|
+
synonyms: ['quote', 'citation', 'blockquote', 'text']
|
|
2256
|
+
}),
|
|
2257
|
+
radar: withMetadata(function () {
|
|
1590
2258
|
return import('./assets/radar');
|
|
1591
|
-
},
|
|
1592
|
-
|
|
2259
|
+
}, {
|
|
2260
|
+
synonyms: ['radar', 'scan', 'detect', 'monitor', 'signal']
|
|
2261
|
+
}),
|
|
2262
|
+
readOnly: withMetadata(function () {
|
|
1593
2263
|
return import('./assets/read_only');
|
|
1594
|
-
},
|
|
1595
|
-
|
|
2264
|
+
}, {
|
|
2265
|
+
synonyms: ['read only', 'locked', 'view', 'permission', 'restrict']
|
|
2266
|
+
}),
|
|
2267
|
+
recentlyViewedApp: withMetadata(function () {
|
|
1596
2268
|
return import('./assets/app_recently_viewed');
|
|
1597
|
-
},
|
|
1598
|
-
|
|
2269
|
+
}, {
|
|
2270
|
+
category: 'app'
|
|
2271
|
+
}),
|
|
2272
|
+
refresh: withMetadata(function () {
|
|
1599
2273
|
return import('./assets/refresh');
|
|
1600
|
-
},
|
|
1601
|
-
|
|
2274
|
+
}, {
|
|
2275
|
+
synonyms: ['refresh', 'reload', 'sync', 'update', 'rotate']
|
|
2276
|
+
}),
|
|
2277
|
+
regressionJob: withMetadata(function () {
|
|
1602
2278
|
return import('./assets/ml_regression_job');
|
|
1603
|
-
},
|
|
1604
|
-
|
|
2279
|
+
}, {
|
|
2280
|
+
category: 'ml'
|
|
2281
|
+
}),
|
|
2282
|
+
reporter: withMetadata(function () {
|
|
1605
2283
|
return import('./assets/reporter');
|
|
1606
|
-
},
|
|
1607
|
-
|
|
2284
|
+
}, {
|
|
2285
|
+
synonyms: ['reporter', 'report', 'export', 'document', 'output']
|
|
2286
|
+
}),
|
|
2287
|
+
reportingApp: withMetadata(function () {
|
|
1608
2288
|
return import('./assets/app_reporting');
|
|
1609
|
-
},
|
|
1610
|
-
|
|
2289
|
+
}, {
|
|
2290
|
+
category: 'app'
|
|
2291
|
+
}),
|
|
2292
|
+
return: withMetadata(function () {
|
|
1611
2293
|
return import('./assets/return');
|
|
1612
|
-
},
|
|
2294
|
+
}, {
|
|
2295
|
+
synonyms: ['return', 'enter', 'keyboard', 'submit', 'back', 'revert']
|
|
2296
|
+
}),
|
|
1613
2297
|
returnKey: function returnKey() {
|
|
1614
2298
|
return import('./assets/return');
|
|
1615
2299
|
},
|
|
1616
2300
|
// NOTE: To be deprecated in favor of return
|
|
1617
|
-
save: function
|
|
2301
|
+
save: withMetadata(function () {
|
|
1618
2302
|
return import('./assets/save');
|
|
1619
|
-
},
|
|
1620
|
-
|
|
2303
|
+
}, {
|
|
2304
|
+
synonyms: ['save', 'store', 'disk', 'persist', 'keep']
|
|
2305
|
+
}),
|
|
2306
|
+
savedObjectsApp: withMetadata(function () {
|
|
1621
2307
|
return import('./assets/app_saved_objects');
|
|
1622
|
-
},
|
|
2308
|
+
}, {
|
|
2309
|
+
category: 'app'
|
|
2310
|
+
}),
|
|
1623
2311
|
scale: function scale() {
|
|
1624
2312
|
return import('./assets/scale');
|
|
1625
2313
|
},
|
|
@@ -1627,18 +2315,26 @@ export var typeToPathMap = {
|
|
|
1627
2315
|
return import('./assets/magnify');
|
|
1628
2316
|
},
|
|
1629
2317
|
// NOTE: To be deprecated in favor of magnify
|
|
1630
|
-
searchProfilerApp: function
|
|
2318
|
+
searchProfilerApp: withMetadata(function () {
|
|
1631
2319
|
return import('./assets/app_search_profiler');
|
|
1632
|
-
},
|
|
1633
|
-
|
|
2320
|
+
}, {
|
|
2321
|
+
category: 'app'
|
|
2322
|
+
}),
|
|
2323
|
+
section: withMetadata(function () {
|
|
1634
2324
|
return import('./assets/section');
|
|
1635
|
-
},
|
|
1636
|
-
|
|
2325
|
+
}, {
|
|
2326
|
+
synonyms: ['section', 'region', 'block', 'area', 'group']
|
|
2327
|
+
}),
|
|
2328
|
+
securityAnalyticsApp: withMetadata(function () {
|
|
1637
2329
|
return import('./assets/app_security_analytics');
|
|
1638
|
-
},
|
|
1639
|
-
|
|
2330
|
+
}, {
|
|
2331
|
+
category: 'app'
|
|
2332
|
+
}),
|
|
2333
|
+
securityApp: withMetadata(function () {
|
|
1640
2334
|
return import('./assets/app_security');
|
|
1641
|
-
},
|
|
2335
|
+
}, {
|
|
2336
|
+
category: 'app'
|
|
2337
|
+
}),
|
|
1642
2338
|
securitySignal: function securitySignal() {
|
|
1643
2339
|
return import('./assets/security_signal');
|
|
1644
2340
|
},
|
|
@@ -1649,63 +2345,95 @@ export var typeToPathMap = {
|
|
|
1649
2345
|
securitySignalResolved: function securitySignalResolved() {
|
|
1650
2346
|
return import('./assets/security_signal_resolved');
|
|
1651
2347
|
},
|
|
1652
|
-
server: function
|
|
2348
|
+
server: withMetadata(function () {
|
|
1653
2349
|
return import('./assets/server');
|
|
1654
|
-
},
|
|
2350
|
+
}, {
|
|
2351
|
+
synonyms: ['server', 'host', 'machine', 'infrastructure', 'backend']
|
|
2352
|
+
}),
|
|
1655
2353
|
sessionViewer: function sessionViewer() {
|
|
1656
2354
|
return import('./assets/session_viewer');
|
|
1657
2355
|
},
|
|
1658
|
-
shard: function
|
|
2356
|
+
shard: withMetadata(function () {
|
|
1659
2357
|
return import('./assets/shard');
|
|
1660
|
-
},
|
|
1661
|
-
|
|
2358
|
+
}, {
|
|
2359
|
+
synonyms: ['shard', 'partition', 'segment', 'elastic', 'index']
|
|
2360
|
+
}),
|
|
2361
|
+
share: withMetadata(function () {
|
|
1662
2362
|
return import('./assets/share');
|
|
1663
|
-
},
|
|
1664
|
-
|
|
2363
|
+
}, {
|
|
2364
|
+
synonyms: ['share', 'send', 'distribute', 'social', 'export']
|
|
2365
|
+
}),
|
|
2366
|
+
significantEvents: withMetadata(function () {
|
|
1665
2367
|
return import('./assets/significant_events');
|
|
1666
|
-
},
|
|
2368
|
+
}, {
|
|
2369
|
+
synonyms: ['events', 'significant', 'anomaly', 'alert', 'notable', 'timeline']
|
|
2370
|
+
}),
|
|
1667
2371
|
singleMetricViewer: function singleMetricViewer() {
|
|
1668
2372
|
return import('./assets/single_metric_viewer');
|
|
1669
2373
|
},
|
|
1670
|
-
snowflake: function
|
|
2374
|
+
snowflake: withMetadata(function () {
|
|
1671
2375
|
return import('./assets/snowflake');
|
|
1672
|
-
},
|
|
1673
|
-
|
|
2376
|
+
}, {
|
|
2377
|
+
synonyms: ['snowflake', 'unique', 'id', 'data warehouse']
|
|
2378
|
+
}),
|
|
2379
|
+
sortAscending: withMetadata(function () {
|
|
1674
2380
|
return import('./assets/sort_ascending');
|
|
1675
|
-
},
|
|
1676
|
-
|
|
2381
|
+
}, {
|
|
2382
|
+
synonyms: ['sort', 'ascending', 'up', 'order', 'rank', 'increase']
|
|
2383
|
+
}),
|
|
2384
|
+
sortDescending: withMetadata(function () {
|
|
1677
2385
|
return import('./assets/sort_descending');
|
|
1678
|
-
},
|
|
1679
|
-
|
|
2386
|
+
}, {
|
|
2387
|
+
synonyms: ['sort', 'descending', 'down', 'order', 'rank', 'decrease']
|
|
2388
|
+
}),
|
|
2389
|
+
sortDown: withMetadata(function () {
|
|
1680
2390
|
return import('./assets/sort_down');
|
|
1681
|
-
},
|
|
1682
|
-
|
|
2391
|
+
}, {
|
|
2392
|
+
synonyms: ['sort down', 'sort', 'order', 'rank', 'arrange', 'down']
|
|
2393
|
+
}),
|
|
2394
|
+
sortLeft: withMetadata(function () {
|
|
1683
2395
|
return import('./assets/sort_left');
|
|
1684
|
-
},
|
|
1685
|
-
|
|
2396
|
+
}, {
|
|
2397
|
+
synonyms: ['sort left', 'sort', 'order', 'rank', 'arrange', 'left']
|
|
2398
|
+
}),
|
|
2399
|
+
sortRight: withMetadata(function () {
|
|
1686
2400
|
return import('./assets/sort_right');
|
|
1687
|
-
},
|
|
1688
|
-
|
|
2401
|
+
}, {
|
|
2402
|
+
synonyms: ['sort right', 'sort', 'order', 'rank', 'arrange', 'right']
|
|
2403
|
+
}),
|
|
2404
|
+
sortUp: withMetadata(function () {
|
|
1689
2405
|
return import('./assets/sort_up');
|
|
1690
|
-
},
|
|
1691
|
-
|
|
2406
|
+
}, {
|
|
2407
|
+
synonyms: ['sort up', 'sort', 'order', 'rank', 'arrange', 'up']
|
|
2408
|
+
}),
|
|
2409
|
+
sortable: withMetadata(function () {
|
|
1692
2410
|
return import('./assets/sortable');
|
|
1693
|
-
},
|
|
2411
|
+
}, {
|
|
2412
|
+
synonyms: ['sortable', 'sort', 'order']
|
|
2413
|
+
}),
|
|
1694
2414
|
spaces: function spaces() {
|
|
1695
2415
|
return import('./assets/spaces');
|
|
1696
2416
|
},
|
|
1697
|
-
spacesApp: function
|
|
2417
|
+
spacesApp: withMetadata(function () {
|
|
1698
2418
|
return import('./assets/app_spaces');
|
|
1699
|
-
},
|
|
1700
|
-
|
|
2419
|
+
}, {
|
|
2420
|
+
category: 'app'
|
|
2421
|
+
}),
|
|
2422
|
+
sparkles: withMetadata(function () {
|
|
1701
2423
|
return import('./assets/sparkles');
|
|
1702
|
-
},
|
|
1703
|
-
|
|
2424
|
+
}, {
|
|
2425
|
+
synonyms: ['sparkles', 'ai', 'magic', 'new', 'enhance', 'auto']
|
|
2426
|
+
}),
|
|
2427
|
+
sqlApp: withMetadata(function () {
|
|
1704
2428
|
return import('./assets/app_sql');
|
|
1705
|
-
},
|
|
1706
|
-
|
|
2429
|
+
}, {
|
|
2430
|
+
category: 'app'
|
|
2431
|
+
}),
|
|
2432
|
+
star: withMetadata(function () {
|
|
1707
2433
|
return import('./assets/star');
|
|
1708
|
-
},
|
|
2434
|
+
}, {
|
|
2435
|
+
synonyms: ['star', 'favorite', 'rating', 'bookmark']
|
|
2436
|
+
}),
|
|
1709
2437
|
starEmpty: function starEmpty() {
|
|
1710
2438
|
return import('./assets/star');
|
|
1711
2439
|
},
|
|
@@ -1713,9 +2441,11 @@ export var typeToPathMap = {
|
|
|
1713
2441
|
starEmptySpace: function starEmptySpace() {
|
|
1714
2442
|
return import('./assets/star_empty_space');
|
|
1715
2443
|
},
|
|
1716
|
-
starFill: function
|
|
2444
|
+
starFill: withMetadata(function () {
|
|
1717
2445
|
return import('./assets/star_fill');
|
|
1718
|
-
},
|
|
2446
|
+
}, {
|
|
2447
|
+
synonyms: ['star fill', 'star', 'favorite', 'rating', 'bookmark', 'fill', 'filled', 'solid']
|
|
2448
|
+
}),
|
|
1719
2449
|
starFilled: function starFilled() {
|
|
1720
2450
|
return import('./assets/star_fill');
|
|
1721
2451
|
},
|
|
@@ -1750,9 +2480,11 @@ export var typeToPathMap = {
|
|
|
1750
2480
|
stats: function stats() {
|
|
1751
2481
|
return import('./assets/stats');
|
|
1752
2482
|
},
|
|
1753
|
-
stop: function
|
|
2483
|
+
stop: withMetadata(function () {
|
|
1754
2484
|
return import('./assets/stop');
|
|
1755
|
-
},
|
|
2485
|
+
}, {
|
|
2486
|
+
synonyms: ['stop', 'halt', 'end', 'terminate', 'square']
|
|
2487
|
+
}),
|
|
1756
2488
|
stopFill: function stopFill() {
|
|
1757
2489
|
return import('./assets/stop_fill');
|
|
1758
2490
|
},
|
|
@@ -1763,9 +2495,11 @@ export var typeToPathMap = {
|
|
|
1763
2495
|
stopSlash: function stopSlash() {
|
|
1764
2496
|
return import('./assets/stop_slash');
|
|
1765
2497
|
},
|
|
1766
|
-
storage: function
|
|
2498
|
+
storage: withMetadata(function () {
|
|
1767
2499
|
return import('./assets/storage');
|
|
1768
|
-
},
|
|
2500
|
+
}, {
|
|
2501
|
+
synonyms: ['storage', 'disk', 'drive', 'save', 'data store']
|
|
2502
|
+
}),
|
|
1769
2503
|
streamsClassic: function streamsClassic() {
|
|
1770
2504
|
return import('./assets/product_streams_classic');
|
|
1771
2505
|
},
|
|
@@ -1781,30 +2515,38 @@ export var typeToPathMap = {
|
|
|
1781
2515
|
return import('./assets/merge');
|
|
1782
2516
|
},
|
|
1783
2517
|
// NOTE: To be deprecated in favor of `merge`
|
|
1784
|
-
sun: function
|
|
2518
|
+
sun: withMetadata(function () {
|
|
1785
2519
|
return import('./assets/sun');
|
|
1786
|
-
},
|
|
2520
|
+
}, {
|
|
2521
|
+
synonyms: ['sun', 'light', 'day', 'theme', 'bright']
|
|
2522
|
+
}),
|
|
1787
2523
|
swatchInput: function swatchInput() {
|
|
1788
2524
|
return import('./assets/swatch_input');
|
|
1789
2525
|
},
|
|
1790
2526
|
// Undocumented on purpose. Has an extra stroke for EuiColorPicker
|
|
1791
|
-
symlink: function
|
|
2527
|
+
symlink: withMetadata(function () {
|
|
1792
2528
|
return import('./assets/symlink');
|
|
1793
|
-
},
|
|
2529
|
+
}, {
|
|
2530
|
+
synonyms: ['symlink', 'shortcut', 'alias', 'link', 'reference']
|
|
2531
|
+
}),
|
|
1794
2532
|
tableDensityCompact: function tableDensityCompact() {
|
|
1795
2533
|
return import('./assets/table_density_high');
|
|
1796
2534
|
},
|
|
1797
2535
|
// NOTE: To be deprecated in favor of tableDensityHigh
|
|
1798
|
-
tableDensityHigh: function
|
|
2536
|
+
tableDensityHigh: withMetadata(function () {
|
|
1799
2537
|
return import('./assets/table_density_high');
|
|
1800
|
-
},
|
|
2538
|
+
}, {
|
|
2539
|
+
synonyms: ['table', 'density', 'compact', 'tight', 'rows', 'spacing']
|
|
2540
|
+
}),
|
|
1801
2541
|
tableDensityExpanded: function tableDensityExpanded() {
|
|
1802
2542
|
return import('./assets/table_density_low');
|
|
1803
2543
|
},
|
|
1804
2544
|
// NOTE: To be deprecated in favor of tableDensityLow
|
|
1805
|
-
tableDensityLow: function
|
|
2545
|
+
tableDensityLow: withMetadata(function () {
|
|
1806
2546
|
return import('./assets/table_density_low');
|
|
1807
|
-
},
|
|
2547
|
+
}, {
|
|
2548
|
+
synonyms: ['table', 'density', 'spacious', 'loose', 'rows', 'spacing']
|
|
2549
|
+
}),
|
|
1808
2550
|
tableDensityNormal: function tableDensityNormal() {
|
|
1809
2551
|
return import('./assets/table');
|
|
1810
2552
|
},
|
|
@@ -1812,9 +2554,11 @@ export var typeToPathMap = {
|
|
|
1812
2554
|
tableOfContents: function tableOfContents() {
|
|
1813
2555
|
return import('./assets/table_of_contents');
|
|
1814
2556
|
},
|
|
1815
|
-
tag: function
|
|
2557
|
+
tag: withMetadata(function () {
|
|
1816
2558
|
return import('./assets/tag');
|
|
1817
|
-
},
|
|
2559
|
+
}, {
|
|
2560
|
+
synonyms: ['tag', 'label', 'category', 'keyword', 'badge']
|
|
2561
|
+
}),
|
|
1818
2562
|
tear: function tear() {
|
|
1819
2563
|
return import('./assets/tear');
|
|
1820
2564
|
},
|
|
@@ -1822,31 +2566,45 @@ export var typeToPathMap = {
|
|
|
1822
2566
|
return import('./assets/thermometer');
|
|
1823
2567
|
},
|
|
1824
2568
|
// NOTE: To be deprecated in favor of thermometer
|
|
1825
|
-
thermometer: function
|
|
2569
|
+
thermometer: withMetadata(function () {
|
|
1826
2570
|
return import('./assets/thermometer');
|
|
1827
|
-
},
|
|
1828
|
-
|
|
2571
|
+
}, {
|
|
2572
|
+
synonyms: ['thermometer', 'temperature', 'heat', 'metric', 'gauge']
|
|
2573
|
+
}),
|
|
2574
|
+
thumbDown: withMetadata(function () {
|
|
1829
2575
|
return import('./assets/thumb_down');
|
|
1830
|
-
},
|
|
1831
|
-
|
|
2576
|
+
}, {
|
|
2577
|
+
synonyms: ['thumbs down', 'dislike', 'negative', 'vote', 'feedback', 'bad']
|
|
2578
|
+
}),
|
|
2579
|
+
thumbUp: withMetadata(function () {
|
|
1832
2580
|
return import('./assets/thumb_up');
|
|
1833
|
-
},
|
|
1834
|
-
|
|
2581
|
+
}, {
|
|
2582
|
+
synonyms: ['thumbs up', 'like', 'positive', 'vote', 'feedback', 'good']
|
|
2583
|
+
}),
|
|
2584
|
+
timeline: withMetadata(function () {
|
|
1835
2585
|
return import('./assets/timeline');
|
|
1836
|
-
},
|
|
1837
|
-
|
|
2586
|
+
}, {
|
|
2587
|
+
synonyms: ['timeline', 'history', 'events', 'chronological', 'sequence']
|
|
2588
|
+
}),
|
|
2589
|
+
timelineWithArrow: withMetadata(function () {
|
|
1838
2590
|
return import('./assets/timeline_with_arrow');
|
|
1839
|
-
},
|
|
1840
|
-
|
|
2591
|
+
}, {
|
|
2592
|
+
synonyms: ['timeline', 'arrow', 'history', 'sequence', 'flow', 'events']
|
|
2593
|
+
}),
|
|
2594
|
+
timelionApp: withMetadata(function () {
|
|
1841
2595
|
return import('./assets/app_timelion');
|
|
1842
|
-
},
|
|
2596
|
+
}, {
|
|
2597
|
+
category: 'app'
|
|
2598
|
+
}),
|
|
1843
2599
|
timeRefresh: function timeRefresh() {
|
|
1844
2600
|
return import('./assets/refresh_time');
|
|
1845
2601
|
},
|
|
1846
2602
|
// NOTE: To be deprecated in favor of refreshTime
|
|
1847
|
-
refreshTime: function
|
|
2603
|
+
refreshTime: withMetadata(function () {
|
|
1848
2604
|
return import('./assets/refresh_time');
|
|
1849
|
-
},
|
|
2605
|
+
}, {
|
|
2606
|
+
synonyms: ['refresh', 'time', 'reload', 'schedule', 'sync', 'clock']
|
|
2607
|
+
}),
|
|
1850
2608
|
timeslider: function timeslider() {
|
|
1851
2609
|
return import('./assets/clock_control');
|
|
1852
2610
|
},
|
|
@@ -1855,27 +2613,41 @@ export var typeToPathMap = {
|
|
|
1855
2613
|
return import('./assets/presentation');
|
|
1856
2614
|
},
|
|
1857
2615
|
// NOTE: To be deprecated in favor of presentation,
|
|
1858
|
-
transitionBottomIn: function
|
|
2616
|
+
transitionBottomIn: withMetadata(function () {
|
|
1859
2617
|
return import('./assets/transition_bottom_in');
|
|
1860
|
-
},
|
|
1861
|
-
|
|
2618
|
+
}, {
|
|
2619
|
+
synonyms: ['transition', 'bottom', 'in', 'animate', 'enter', 'motion']
|
|
2620
|
+
}),
|
|
2621
|
+
transitionBottomOut: withMetadata(function () {
|
|
1862
2622
|
return import('./assets/transition_bottom_out');
|
|
1863
|
-
},
|
|
1864
|
-
|
|
2623
|
+
}, {
|
|
2624
|
+
synonyms: ['transition', 'bottom', 'out', 'animate', 'exit', 'motion']
|
|
2625
|
+
}),
|
|
2626
|
+
transitionLeftIn: withMetadata(function () {
|
|
1865
2627
|
return import('./assets/transition_left_in');
|
|
1866
|
-
},
|
|
1867
|
-
|
|
2628
|
+
}, {
|
|
2629
|
+
synonyms: ['transition', 'left', 'in', 'animate', 'enter', 'motion']
|
|
2630
|
+
}),
|
|
2631
|
+
transitionLeftOut: withMetadata(function () {
|
|
1868
2632
|
return import('./assets/transition_left_out');
|
|
1869
|
-
},
|
|
1870
|
-
|
|
2633
|
+
}, {
|
|
2634
|
+
synonyms: ['transition', 'left', 'out', 'animate', 'exit', 'motion']
|
|
2635
|
+
}),
|
|
2636
|
+
transitionTopIn: withMetadata(function () {
|
|
1871
2637
|
return import('./assets/transition_top_in');
|
|
1872
|
-
},
|
|
1873
|
-
|
|
2638
|
+
}, {
|
|
2639
|
+
synonyms: ['transition', 'top', 'in', 'animate', 'enter', 'motion']
|
|
2640
|
+
}),
|
|
2641
|
+
transitionTopOut: withMetadata(function () {
|
|
1874
2642
|
return import('./assets/transition_top_out');
|
|
1875
|
-
},
|
|
1876
|
-
|
|
2643
|
+
}, {
|
|
2644
|
+
synonyms: ['transition', 'top', 'out', 'animate', 'exit', 'motion']
|
|
2645
|
+
}),
|
|
2646
|
+
trash: withMetadata(function () {
|
|
1877
2647
|
return import('./assets/trash');
|
|
1878
|
-
},
|
|
2648
|
+
}, {
|
|
2649
|
+
synonyms: ['trash', 'delete', 'remove', 'bin', 'garbage', 'discard']
|
|
2650
|
+
}),
|
|
1879
2651
|
unfold: function unfold() {
|
|
1880
2652
|
return import('./assets/unfold');
|
|
1881
2653
|
},
|
|
@@ -1883,38 +2655,54 @@ export var typeToPathMap = {
|
|
|
1883
2655
|
return import('./assets/link_slash');
|
|
1884
2656
|
},
|
|
1885
2657
|
// NOTE: To be deprecated in favor of linkSlash
|
|
1886
|
-
upgradeAssistantApp: function
|
|
2658
|
+
upgradeAssistantApp: withMetadata(function () {
|
|
1887
2659
|
return import('./assets/app_upgrade_assistant');
|
|
1888
|
-
},
|
|
1889
|
-
|
|
2660
|
+
}, {
|
|
2661
|
+
category: 'app'
|
|
2662
|
+
}),
|
|
2663
|
+
uptimeApp: withMetadata(function () {
|
|
1890
2664
|
return import('./assets/app_uptime');
|
|
1891
|
-
},
|
|
1892
|
-
|
|
2665
|
+
}, {
|
|
2666
|
+
category: 'app'
|
|
2667
|
+
}),
|
|
2668
|
+
user: withMetadata(function () {
|
|
1893
2669
|
return import('./assets/user');
|
|
1894
|
-
},
|
|
2670
|
+
}, {
|
|
2671
|
+
synonyms: ['user', 'person', 'account', 'profile', 'avatar']
|
|
2672
|
+
}),
|
|
1895
2673
|
userAvatar: function userAvatar() {
|
|
1896
2674
|
return import('./assets/user');
|
|
1897
2675
|
},
|
|
1898
2676
|
// NOTE: To be deprecated in favor of `user`
|
|
1899
|
-
users: function
|
|
2677
|
+
users: withMetadata(function () {
|
|
1900
2678
|
return import('./assets/users');
|
|
1901
|
-
},
|
|
1902
|
-
|
|
2679
|
+
}, {
|
|
2680
|
+
synonyms: ['users', 'people', 'team', 'group', 'accounts']
|
|
2681
|
+
}),
|
|
2682
|
+
usersRolesApp: withMetadata(function () {
|
|
1903
2683
|
return import('./assets/app_users_roles');
|
|
1904
|
-
},
|
|
1905
|
-
|
|
2684
|
+
}, {
|
|
2685
|
+
category: 'app'
|
|
2686
|
+
}),
|
|
2687
|
+
unarchive: withMetadata(function () {
|
|
1906
2688
|
return import('./assets/unarchive');
|
|
1907
|
-
},
|
|
2689
|
+
}, {
|
|
2690
|
+
synonyms: ['unarchive', 'restore', 'extract', 'retrieve', 'unpack']
|
|
2691
|
+
}),
|
|
1908
2692
|
vector: function vector() {
|
|
1909
2693
|
return import('./assets/vector_square');
|
|
1910
2694
|
},
|
|
1911
2695
|
// NOTE: To be deprecated in favor of vectorSquare
|
|
1912
|
-
vectorSquare: function
|
|
2696
|
+
vectorSquare: withMetadata(function () {
|
|
1913
2697
|
return import('./assets/vector_square');
|
|
1914
|
-
},
|
|
1915
|
-
|
|
2698
|
+
}, {
|
|
2699
|
+
synonyms: ['vector', 'square', 'shape', 'geometry', 'box', 'region']
|
|
2700
|
+
}),
|
|
2701
|
+
videoPlayer: withMetadata(function () {
|
|
1916
2702
|
return import('./assets/video_player');
|
|
1917
|
-
},
|
|
2703
|
+
}, {
|
|
2704
|
+
synonyms: ['video', 'player', 'play', 'media', 'film', 'watch']
|
|
2705
|
+
}),
|
|
1918
2706
|
visArea: function visArea() {
|
|
1919
2707
|
return import('./assets/chart_area');
|
|
1920
2708
|
},
|
|
@@ -1962,9 +2750,11 @@ export var typeToPathMap = {
|
|
|
1962
2750
|
return import('./assets/chart_metric');
|
|
1963
2751
|
},
|
|
1964
2752
|
// NOTE: To be deprecated in favor of chartMetric
|
|
1965
|
-
chartMetric: function
|
|
2753
|
+
chartMetric: withMetadata(function () {
|
|
1966
2754
|
return import('./assets/chart_metric');
|
|
1967
|
-
},
|
|
2755
|
+
}, {
|
|
2756
|
+
synonyms: ['metric', 'chart', 'kpi', 'measurement', 'stat', 'indicator']
|
|
2757
|
+
}),
|
|
1968
2758
|
visPie: function visPie() {
|
|
1969
2759
|
return import('./assets/chart_pie');
|
|
1970
2760
|
},
|
|
@@ -1991,25 +2781,35 @@ export var typeToPathMap = {
|
|
|
1991
2781
|
visVisualBuilder: function visVisualBuilder() {
|
|
1992
2782
|
return import('./assets/vis_visual_builder');
|
|
1993
2783
|
},
|
|
1994
|
-
visualizeApp: function
|
|
2784
|
+
visualizeApp: withMetadata(function () {
|
|
1995
2785
|
return import('./assets/app_visualize');
|
|
1996
|
-
},
|
|
1997
|
-
|
|
2786
|
+
}, {
|
|
2787
|
+
category: 'app'
|
|
2788
|
+
}),
|
|
2789
|
+
vulnerabilityManagementApp: withMetadata(function () {
|
|
1998
2790
|
return import('./assets/app_vulnerability_management');
|
|
1999
|
-
},
|
|
2000
|
-
|
|
2791
|
+
}, {
|
|
2792
|
+
category: 'app'
|
|
2793
|
+
}),
|
|
2794
|
+
warning: withMetadata(function () {
|
|
2001
2795
|
return import('./assets/warning');
|
|
2002
|
-
},
|
|
2796
|
+
}, {
|
|
2797
|
+
synonyms: ['warning', 'alert', 'caution', 'danger', 'issue']
|
|
2798
|
+
}),
|
|
2003
2799
|
warningFilled: function warningFilled() {
|
|
2004
2800
|
return import('./assets/warning_fill');
|
|
2005
2801
|
},
|
|
2006
2802
|
// NOTE: To be deprecated in favor of warningFill
|
|
2007
|
-
warningFill: function
|
|
2803
|
+
warningFill: withMetadata(function () {
|
|
2008
2804
|
return import('./assets/warning_fill');
|
|
2009
|
-
},
|
|
2010
|
-
|
|
2805
|
+
}, {
|
|
2806
|
+
synonyms: ['warning fill', 'warning', 'alert', 'caution', 'danger', 'issue', 'fill', 'filled']
|
|
2807
|
+
}),
|
|
2808
|
+
watchesApp: withMetadata(function () {
|
|
2011
2809
|
return import('./assets/app_watches');
|
|
2012
|
-
},
|
|
2810
|
+
}, {
|
|
2811
|
+
category: 'app'
|
|
2812
|
+
}),
|
|
2013
2813
|
web: function web() {
|
|
2014
2814
|
return import('./assets/web');
|
|
2015
2815
|
},
|
|
@@ -2019,189 +2819,357 @@ export var typeToPathMap = {
|
|
|
2019
2819
|
wordWrapDisabled: function wordWrapDisabled() {
|
|
2020
2820
|
return import('./assets/word_wrap_disabled');
|
|
2021
2821
|
},
|
|
2022
|
-
workflowsApp: function
|
|
2822
|
+
workflowsApp: withMetadata(function () {
|
|
2023
2823
|
return import('./assets/app_workflows');
|
|
2024
|
-
},
|
|
2025
|
-
|
|
2824
|
+
}, {
|
|
2825
|
+
category: 'app'
|
|
2826
|
+
}),
|
|
2827
|
+
workflow: withMetadata(function () {
|
|
2026
2828
|
return import('./assets/workflow');
|
|
2027
|
-
},
|
|
2028
|
-
|
|
2829
|
+
}, {
|
|
2830
|
+
synonyms: ['workflow', 'automation', 'pipeline', 'process', 'flow']
|
|
2831
|
+
}),
|
|
2832
|
+
workplaceSearchApp: withMetadata(function () {
|
|
2029
2833
|
return import('./assets/app_workplace_search');
|
|
2030
|
-
},
|
|
2031
|
-
|
|
2834
|
+
}, {
|
|
2835
|
+
category: 'app'
|
|
2836
|
+
}),
|
|
2837
|
+
wrench: withMetadata(function () {
|
|
2032
2838
|
return import('./assets/wrench');
|
|
2033
|
-
},
|
|
2839
|
+
}, {
|
|
2840
|
+
synonyms: ['wrench', 'tool', 'fix', 'settings', 'repair']
|
|
2841
|
+
}),
|
|
2034
2842
|
// Token Icon Imports
|
|
2035
|
-
tokenAlias: function
|
|
2843
|
+
tokenAlias: withMetadata(function () {
|
|
2036
2844
|
return import('./assets/token_alias');
|
|
2037
|
-
},
|
|
2038
|
-
|
|
2845
|
+
}, {
|
|
2846
|
+
category: 'token'
|
|
2847
|
+
}),
|
|
2848
|
+
tokenAnnotation: withMetadata(function () {
|
|
2039
2849
|
return import('./assets/token_annotation');
|
|
2040
|
-
},
|
|
2041
|
-
|
|
2850
|
+
}, {
|
|
2851
|
+
category: 'token'
|
|
2852
|
+
}),
|
|
2853
|
+
tokenArray: withMetadata(function () {
|
|
2042
2854
|
return import('./assets/token_array');
|
|
2043
|
-
},
|
|
2044
|
-
|
|
2855
|
+
}, {
|
|
2856
|
+
category: 'token'
|
|
2857
|
+
}),
|
|
2858
|
+
tokenBinary: withMetadata(function () {
|
|
2045
2859
|
return import('./assets/token_binary');
|
|
2046
|
-
},
|
|
2047
|
-
|
|
2860
|
+
}, {
|
|
2861
|
+
category: 'token'
|
|
2862
|
+
}),
|
|
2863
|
+
tokenBoolean: withMetadata(function () {
|
|
2048
2864
|
return import('./assets/token_boolean');
|
|
2049
|
-
},
|
|
2050
|
-
|
|
2865
|
+
}, {
|
|
2866
|
+
category: 'token'
|
|
2867
|
+
}),
|
|
2868
|
+
tokenClass: withMetadata(function () {
|
|
2051
2869
|
return import('./assets/token_class');
|
|
2052
|
-
},
|
|
2053
|
-
|
|
2870
|
+
}, {
|
|
2871
|
+
category: 'token'
|
|
2872
|
+
}),
|
|
2873
|
+
tokenCompletionSuggester: withMetadata(function () {
|
|
2054
2874
|
return import('./assets/token_completion_suggester');
|
|
2055
|
-
},
|
|
2056
|
-
|
|
2875
|
+
}, {
|
|
2876
|
+
category: 'token'
|
|
2877
|
+
}),
|
|
2878
|
+
tokenConstant: withMetadata(function () {
|
|
2057
2879
|
return import('./assets/token_constant');
|
|
2058
|
-
},
|
|
2059
|
-
|
|
2880
|
+
}, {
|
|
2881
|
+
category: 'token'
|
|
2882
|
+
}),
|
|
2883
|
+
tokenDate: withMetadata(function () {
|
|
2060
2884
|
return import('./assets/token_date');
|
|
2061
|
-
},
|
|
2062
|
-
|
|
2885
|
+
}, {
|
|
2886
|
+
category: 'token'
|
|
2887
|
+
}),
|
|
2888
|
+
tokenDimension: withMetadata(function () {
|
|
2063
2889
|
return import('./assets/token_dimension');
|
|
2064
|
-
},
|
|
2065
|
-
|
|
2890
|
+
}, {
|
|
2891
|
+
category: 'token'
|
|
2892
|
+
}),
|
|
2893
|
+
tokenElement: withMetadata(function () {
|
|
2066
2894
|
return import('./assets/token_element');
|
|
2067
|
-
},
|
|
2068
|
-
|
|
2895
|
+
}, {
|
|
2896
|
+
category: 'token'
|
|
2897
|
+
}),
|
|
2898
|
+
tokenEnum: withMetadata(function () {
|
|
2069
2899
|
return import('./assets/token_enum');
|
|
2070
|
-
},
|
|
2071
|
-
|
|
2900
|
+
}, {
|
|
2901
|
+
category: 'token'
|
|
2902
|
+
}),
|
|
2903
|
+
tokenEnumMember: withMetadata(function () {
|
|
2072
2904
|
return import('./assets/token_enum_member');
|
|
2073
|
-
},
|
|
2074
|
-
|
|
2905
|
+
}, {
|
|
2906
|
+
category: 'token'
|
|
2907
|
+
}),
|
|
2908
|
+
tokenEvent: withMetadata(function () {
|
|
2075
2909
|
return import('./assets/token_event');
|
|
2076
|
-
},
|
|
2077
|
-
|
|
2910
|
+
}, {
|
|
2911
|
+
category: 'token'
|
|
2912
|
+
}),
|
|
2913
|
+
tokenException: withMetadata(function () {
|
|
2078
2914
|
return import('./assets/token_exception');
|
|
2079
|
-
},
|
|
2080
|
-
|
|
2915
|
+
}, {
|
|
2916
|
+
category: 'token'
|
|
2917
|
+
}),
|
|
2918
|
+
tokenField: withMetadata(function () {
|
|
2081
2919
|
return import('./assets/token_field');
|
|
2082
|
-
},
|
|
2083
|
-
|
|
2920
|
+
}, {
|
|
2921
|
+
category: 'token'
|
|
2922
|
+
}),
|
|
2923
|
+
tokenFile: withMetadata(function () {
|
|
2084
2924
|
return import('./assets/token_file');
|
|
2085
|
-
},
|
|
2086
|
-
|
|
2925
|
+
}, {
|
|
2926
|
+
category: 'token'
|
|
2927
|
+
}),
|
|
2928
|
+
tokenFlattened: withMetadata(function () {
|
|
2087
2929
|
return import('./assets/token_flattened');
|
|
2088
|
-
},
|
|
2089
|
-
|
|
2930
|
+
}, {
|
|
2931
|
+
category: 'token'
|
|
2932
|
+
}),
|
|
2933
|
+
tokenFunction: withMetadata(function () {
|
|
2090
2934
|
return import('./assets/token_function');
|
|
2091
|
-
},
|
|
2092
|
-
|
|
2935
|
+
}, {
|
|
2936
|
+
category: 'token'
|
|
2937
|
+
}),
|
|
2938
|
+
tokenGeo: withMetadata(function () {
|
|
2093
2939
|
return import('./assets/token_geo');
|
|
2094
|
-
},
|
|
2095
|
-
|
|
2940
|
+
}, {
|
|
2941
|
+
category: 'token'
|
|
2942
|
+
}),
|
|
2943
|
+
tokenHistogram: withMetadata(function () {
|
|
2096
2944
|
return import('./assets/token_histogram');
|
|
2097
|
-
},
|
|
2098
|
-
|
|
2945
|
+
}, {
|
|
2946
|
+
category: 'token'
|
|
2947
|
+
}),
|
|
2948
|
+
tokenInterface: withMetadata(function () {
|
|
2099
2949
|
return import('./assets/token_interface');
|
|
2100
|
-
},
|
|
2101
|
-
|
|
2950
|
+
}, {
|
|
2951
|
+
category: 'token'
|
|
2952
|
+
}),
|
|
2953
|
+
tokenIP: withMetadata(function () {
|
|
2102
2954
|
return import('./assets/token_ip');
|
|
2103
|
-
},
|
|
2104
|
-
|
|
2955
|
+
}, {
|
|
2956
|
+
category: 'token'
|
|
2957
|
+
}),
|
|
2958
|
+
tokenJoin: withMetadata(function () {
|
|
2105
2959
|
return import('./assets/token_join');
|
|
2106
|
-
},
|
|
2107
|
-
|
|
2960
|
+
}, {
|
|
2961
|
+
category: 'token'
|
|
2962
|
+
}),
|
|
2963
|
+
tokenKey: withMetadata(function () {
|
|
2108
2964
|
return import('./assets/token_key');
|
|
2109
|
-
},
|
|
2110
|
-
|
|
2965
|
+
}, {
|
|
2966
|
+
category: 'token'
|
|
2967
|
+
}),
|
|
2968
|
+
tokenKeyword: withMetadata(function () {
|
|
2111
2969
|
return import('./assets/token_keyword');
|
|
2112
|
-
},
|
|
2113
|
-
|
|
2970
|
+
}, {
|
|
2971
|
+
category: 'token'
|
|
2972
|
+
}),
|
|
2973
|
+
tokenMethod: withMetadata(function () {
|
|
2114
2974
|
return import('./assets/token_method');
|
|
2115
|
-
},
|
|
2116
|
-
|
|
2975
|
+
}, {
|
|
2976
|
+
category: 'token'
|
|
2977
|
+
}),
|
|
2978
|
+
tokenMetricCounter: withMetadata(function () {
|
|
2117
2979
|
return import('./assets/token_metric_counter');
|
|
2118
|
-
},
|
|
2119
|
-
|
|
2980
|
+
}, {
|
|
2981
|
+
category: 'token'
|
|
2982
|
+
}),
|
|
2983
|
+
tokenMetricGauge: withMetadata(function () {
|
|
2120
2984
|
return import('./assets/token_metric_gauge');
|
|
2121
|
-
},
|
|
2122
|
-
|
|
2985
|
+
}, {
|
|
2986
|
+
category: 'token'
|
|
2987
|
+
}),
|
|
2988
|
+
tokenModule: withMetadata(function () {
|
|
2123
2989
|
return import('./assets/token_module');
|
|
2124
|
-
},
|
|
2125
|
-
|
|
2990
|
+
}, {
|
|
2991
|
+
category: 'token'
|
|
2992
|
+
}),
|
|
2993
|
+
tokenNamespace: withMetadata(function () {
|
|
2126
2994
|
return import('./assets/token_namespace');
|
|
2127
|
-
},
|
|
2128
|
-
|
|
2995
|
+
}, {
|
|
2996
|
+
category: 'token'
|
|
2997
|
+
}),
|
|
2998
|
+
tokenNested: withMetadata(function () {
|
|
2129
2999
|
return import('./assets/token_nested');
|
|
2130
|
-
},
|
|
2131
|
-
|
|
3000
|
+
}, {
|
|
3001
|
+
category: 'token'
|
|
3002
|
+
}),
|
|
3003
|
+
tokenNull: withMetadata(function () {
|
|
2132
3004
|
return import('./assets/token_null');
|
|
2133
|
-
},
|
|
2134
|
-
|
|
3005
|
+
}, {
|
|
3006
|
+
category: 'token'
|
|
3007
|
+
}),
|
|
3008
|
+
tokenNumber: withMetadata(function () {
|
|
2135
3009
|
return import('./assets/token_number');
|
|
2136
|
-
},
|
|
2137
|
-
|
|
3010
|
+
}, {
|
|
3011
|
+
category: 'token'
|
|
3012
|
+
}),
|
|
3013
|
+
tokenObject: withMetadata(function () {
|
|
2138
3014
|
return import('./assets/token_object');
|
|
2139
|
-
},
|
|
2140
|
-
|
|
3015
|
+
}, {
|
|
3016
|
+
category: 'token'
|
|
3017
|
+
}),
|
|
3018
|
+
tokenOperator: withMetadata(function () {
|
|
2141
3019
|
return import('./assets/token_operator');
|
|
2142
|
-
},
|
|
2143
|
-
|
|
3020
|
+
}, {
|
|
3021
|
+
category: 'token'
|
|
3022
|
+
}),
|
|
3023
|
+
tokenPackage: withMetadata(function () {
|
|
2144
3024
|
return import('./assets/token_package');
|
|
2145
|
-
},
|
|
2146
|
-
|
|
3025
|
+
}, {
|
|
3026
|
+
category: 'token'
|
|
3027
|
+
}),
|
|
3028
|
+
tokenParameter: withMetadata(function () {
|
|
2147
3029
|
return import('./assets/token_parameter');
|
|
2148
|
-
},
|
|
2149
|
-
|
|
3030
|
+
}, {
|
|
3031
|
+
category: 'token'
|
|
3032
|
+
}),
|
|
3033
|
+
tokenPercolator: withMetadata(function () {
|
|
2150
3034
|
return import('./assets/token_percolator');
|
|
2151
|
-
},
|
|
2152
|
-
|
|
3035
|
+
}, {
|
|
3036
|
+
category: 'token'
|
|
3037
|
+
}),
|
|
3038
|
+
tokenProperty: withMetadata(function () {
|
|
2153
3039
|
return import('./assets/token_property');
|
|
2154
|
-
},
|
|
2155
|
-
|
|
3040
|
+
}, {
|
|
3041
|
+
category: 'token'
|
|
3042
|
+
}),
|
|
3043
|
+
tokenRange: withMetadata(function () {
|
|
2156
3044
|
return import('./assets/token_range');
|
|
2157
|
-
},
|
|
2158
|
-
|
|
3045
|
+
}, {
|
|
3046
|
+
category: 'token'
|
|
3047
|
+
}),
|
|
3048
|
+
tokenRankFeature: withMetadata(function () {
|
|
2159
3049
|
return import('./assets/token_rank_feature');
|
|
2160
|
-
},
|
|
2161
|
-
|
|
3050
|
+
}, {
|
|
3051
|
+
category: 'token'
|
|
3052
|
+
}),
|
|
3053
|
+
tokenRankFeatures: withMetadata(function () {
|
|
2162
3054
|
return import('./assets/token_rank_features');
|
|
2163
|
-
},
|
|
2164
|
-
|
|
3055
|
+
}, {
|
|
3056
|
+
category: 'token'
|
|
3057
|
+
}),
|
|
3058
|
+
tokenRepo: withMetadata(function () {
|
|
2165
3059
|
return import('./assets/token_repo');
|
|
2166
|
-
},
|
|
2167
|
-
|
|
3060
|
+
}, {
|
|
3061
|
+
category: 'token'
|
|
3062
|
+
}),
|
|
3063
|
+
tokenSearchType: withMetadata(function () {
|
|
2168
3064
|
return import('./assets/token_search_type');
|
|
2169
|
-
},
|
|
2170
|
-
|
|
3065
|
+
}, {
|
|
3066
|
+
category: 'token'
|
|
3067
|
+
}),
|
|
3068
|
+
tokenSemanticText: withMetadata(function () {
|
|
2171
3069
|
return import('./assets/token_semantic_text');
|
|
2172
|
-
},
|
|
2173
|
-
|
|
3070
|
+
}, {
|
|
3071
|
+
category: 'token'
|
|
3072
|
+
}),
|
|
3073
|
+
tokenShape: withMetadata(function () {
|
|
2174
3074
|
return import('./assets/token_shape');
|
|
2175
|
-
},
|
|
2176
|
-
|
|
3075
|
+
}, {
|
|
3076
|
+
category: 'token'
|
|
3077
|
+
}),
|
|
3078
|
+
tokenString: withMetadata(function () {
|
|
2177
3079
|
return import('./assets/token_string');
|
|
2178
|
-
},
|
|
2179
|
-
|
|
3080
|
+
}, {
|
|
3081
|
+
category: 'token'
|
|
3082
|
+
}),
|
|
3083
|
+
tokenStruct: withMetadata(function () {
|
|
2180
3084
|
return import('./assets/token_struct');
|
|
2181
|
-
},
|
|
2182
|
-
|
|
3085
|
+
}, {
|
|
3086
|
+
category: 'token'
|
|
3087
|
+
}),
|
|
3088
|
+
tokenSymbol: withMetadata(function () {
|
|
2183
3089
|
return import('./assets/token_symbol');
|
|
2184
|
-
},
|
|
2185
|
-
|
|
3090
|
+
}, {
|
|
3091
|
+
category: 'token'
|
|
3092
|
+
}),
|
|
3093
|
+
tokenTag: withMetadata(function () {
|
|
2186
3094
|
return import('./assets/token_tag');
|
|
2187
|
-
},
|
|
2188
|
-
|
|
3095
|
+
}, {
|
|
3096
|
+
category: 'token'
|
|
3097
|
+
}),
|
|
3098
|
+
tokenText: withMetadata(function () {
|
|
2189
3099
|
return import('./assets/token_text');
|
|
2190
|
-
},
|
|
2191
|
-
|
|
3100
|
+
}, {
|
|
3101
|
+
category: 'token'
|
|
3102
|
+
}),
|
|
3103
|
+
tokenTokenCount: withMetadata(function () {
|
|
2192
3104
|
return import('./assets/token_token_count');
|
|
2193
|
-
},
|
|
2194
|
-
|
|
3105
|
+
}, {
|
|
3106
|
+
category: 'token'
|
|
3107
|
+
}),
|
|
3108
|
+
tokenVariable: withMetadata(function () {
|
|
2195
3109
|
return import('./assets/token_variable');
|
|
2196
|
-
},
|
|
2197
|
-
|
|
3110
|
+
}, {
|
|
3111
|
+
category: 'token'
|
|
3112
|
+
}),
|
|
3113
|
+
tokenVectorDense: withMetadata(function () {
|
|
2198
3114
|
return import('./assets/token_vector_dense');
|
|
2199
|
-
},
|
|
2200
|
-
|
|
3115
|
+
}, {
|
|
3116
|
+
category: 'token'
|
|
3117
|
+
}),
|
|
3118
|
+
tokenDenseVector: withMetadata(function () {
|
|
2201
3119
|
return import('./assets/token_vector_dense');
|
|
2202
|
-
},
|
|
2203
|
-
|
|
2204
|
-
|
|
3120
|
+
}, {
|
|
3121
|
+
category: 'token'
|
|
3122
|
+
}),
|
|
3123
|
+
// NOTE: This is an undocumented alias for `tokenVectorDense`, added for legacy compatibility
|
|
3124
|
+
tokenVectorSparse: withMetadata(function () {
|
|
2205
3125
|
return import('./assets/token_vector_sparse');
|
|
2206
|
-
}
|
|
2207
|
-
|
|
3126
|
+
}, {
|
|
3127
|
+
category: 'token'
|
|
3128
|
+
})
|
|
3129
|
+
};
|
|
3130
|
+
var getTypeToPathMapMetadata = function getTypeToPathMapMetadata(loader) {
|
|
3131
|
+
var _metadata$category;
|
|
3132
|
+
var metadata = loader.metadata;
|
|
3133
|
+
return {
|
|
3134
|
+
category: (_metadata$category = metadata === null || metadata === void 0 ? void 0 : metadata.category) !== null && _metadata$category !== void 0 ? _metadata$category : 'glyph',
|
|
3135
|
+
synonyms: metadata === null || metadata === void 0 ? void 0 : metadata.synonyms
|
|
3136
|
+
};
|
|
3137
|
+
};
|
|
3138
|
+
/* List of icon types that are deprecated and should not be used in new code.
|
|
3139
|
+
These icons will be removed in a future release. But we need to keep them to
|
|
3140
|
+
maintain backward compatibility. */
|
|
3141
|
+
export var typeToPathMapDeprecatedIconTypes = ['alert', 'anomalyChart', 'apmTrace', 'arrowDown', 'arrowLeft', 'arrowRight', 'arrowUp', 'arrowStart', 'arrowEnd', 'beaker', 'boxesHorizontal', 'changePointDetection', 'checkInCircleFilled', 'cheer', 'color', 'compute', 'console', 'contrastHigh', 'controlsHorizontal', 'controlsVertical', 'copyClipboard', 'crossInCircle', 'crosshairs', 'currency', 'cut', 'desktop', 'diff', 'discuss', 'documentEdit', 'doubleArrowLeft', 'doubleArrowRight', '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', 'eql', 'errorFilled', 'exit', 'expand', 'expandMini', 'exportAction', 'eyeClosed', 'fieldStatistics', 'filterInCircle', 'glasses', 'grab', 'grabHorizontal', 'grabOmnidirectional', 'heatmap', 'importAction', 'indexFlush', 'indexMapping', 'indexTemporary', 'invert', 'kqlField', 'kqlOperand', 'kqlSelector', 'kqlValue', 'launch', 'lettering', 'lineDashed', 'lineDotted', 'list', 'listAdd', 'logPatternAnalysis', 'logstashIf', 'logstashQueue', 'magnifyWithExclamation', 'magnifyWithMinus', 'magnifyWithPlus', 'mapMarker', 'minusInCircle', 'minusInCircleFilled', 'minusInSquare', 'newChat', 'node', 'offline', 'online', 'pinFilled', 'pipeBreaks', 'pipeNoBreaks', 'playFilled', 'plusInCircle', 'plusInCircleFilled', 'plusInSquare', 'popout', 'productRobot', 'push', 'returnKey', 'search', 'securitySignal', 'starEmpty', 'starFilled', 'starFilledSpace', 'starMinusFilled', 'starPlusFilled', 'stopFilled', 'streamsClassic', 'streamsWired', 'submodule', 'tableDensityCompact', 'tableDensityExpanded', 'tableDensityNormal', 'temperature', 'timeRefresh', 'timeslider', 'training', 'unlink', 'userAvatar', 'vector', 'visArea', 'visAreaStacked', 'visBarHorizontal', 'visBarHorizontalStacked', 'visBarVertical', 'visBarVerticalStacked', 'visGauge', 'visLine', 'visMapCoordinate', 'visMapRegion', 'visMetric', 'visPie', 'visTable', 'visTagCloud', 'visText', 'visVega', 'warningFilled'];
|
|
3142
|
+
var typeToPathMapDeprecatedIconTypesSet = new Set(typeToPathMapDeprecatedIconTypes);
|
|
3143
|
+
var getTypeToPathMapNonDeprecatedIconTypes = function getTypeToPathMapNonDeprecatedIconTypes(iconTypes) {
|
|
3144
|
+
return iconTypes.filter(function (iconType) {
|
|
3145
|
+
return !typeToPathMapDeprecatedIconTypesSet.has(iconType);
|
|
3146
|
+
});
|
|
3147
|
+
};
|
|
3148
|
+
var getTypeToPathMapCategoryIconTypes = function getTypeToPathMapCategoryIconTypes(category) {
|
|
3149
|
+
return Object.entries(typeToPathMap).filter(function (_ref) {
|
|
3150
|
+
var _ref2 = _slicedToArray(_ref, 2),
|
|
3151
|
+
loader = _ref2[1];
|
|
3152
|
+
return getTypeToPathMapMetadata(loader).category === category;
|
|
3153
|
+
}).map(function (_ref3) {
|
|
3154
|
+
var _ref4 = _slicedToArray(_ref3, 1),
|
|
3155
|
+
iconType = _ref4[0];
|
|
3156
|
+
return iconType;
|
|
3157
|
+
});
|
|
3158
|
+
};
|
|
3159
|
+
export var typeToPathMapAppIconTypes = getTypeToPathMapCategoryIconTypes('app');
|
|
3160
|
+
export var typeToPathMapGlyphIconTypes = getTypeToPathMapCategoryIconTypes('glyph');
|
|
3161
|
+
export var typeToPathMapLogoIconTypes = getTypeToPathMapCategoryIconTypes('elasticLogo');
|
|
3162
|
+
export var typeToPathMapMlIconTypes = getTypeToPathMapCategoryIconTypes('ml');
|
|
3163
|
+
export var typeToPathMapTokenIconTypes = getTypeToPathMapCategoryIconTypes('token');
|
|
3164
|
+
export var typeToPathMapDocsAppIconTypes = getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapAppIconTypes);
|
|
3165
|
+
export var typeToPathMapDocsGlyphIconTypes = getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapGlyphIconTypes);
|
|
3166
|
+
export var typeToPathMapDocsLogoIconTypes = getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapLogoIconTypes);
|
|
3167
|
+
export var typeToPathMapDocsMlIconTypes = getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapMlIconTypes);
|
|
3168
|
+
export var typeToPathMapDocsTokenIconTypes = getTypeToPathMapNonDeprecatedIconTypes(typeToPathMapTokenIconTypes);
|
|
3169
|
+
export var typeToPathMapSynonyms = Object.fromEntries(Object.entries(typeToPathMap).flatMap(function (_ref5) {
|
|
3170
|
+
var _ref6 = _slicedToArray(_ref5, 2),
|
|
3171
|
+
iconType = _ref6[0],
|
|
3172
|
+
loader = _ref6[1];
|
|
3173
|
+
var synonyms = getTypeToPathMapMetadata(loader).synonyms;
|
|
3174
|
+
return synonyms ? [[iconType, synonyms]] : [];
|
|
3175
|
+
}));
|