@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
package/eui.d.ts
CHANGED
|
@@ -8913,191 +8913,203 @@ declare module '@elastic/eui/src/components/icon/assets/token_vector_sparse' {
|
|
|
8913
8913
|
|
|
8914
8914
|
}
|
|
8915
8915
|
declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
8916
|
+
import type { ComponentType } from 'react';
|
|
8917
|
+
type IconImportLoader = () => Promise<{
|
|
8918
|
+
icon: ComponentType;
|
|
8919
|
+
}>;
|
|
8920
|
+
export type IconCategory = 'glyph' | 'app' | 'elasticLogo' | 'thirdPartyLogo' | 'ml' | 'token';
|
|
8921
|
+
type IconMetadata = {
|
|
8922
|
+
category?: IconCategory;
|
|
8923
|
+
synonyms?: string[];
|
|
8924
|
+
};
|
|
8925
|
+
type IconImportLoaderWithMetadata = IconImportLoader & {
|
|
8926
|
+
metadata?: IconMetadata;
|
|
8927
|
+
};
|
|
8916
8928
|
export const typeToPathMap: {
|
|
8917
|
-
accessibility:
|
|
8918
|
-
addDataApp:
|
|
8929
|
+
accessibility: IconImportLoaderWithMetadata;
|
|
8930
|
+
addDataApp: IconImportLoaderWithMetadata;
|
|
8919
8931
|
addToChat: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/add_to_chat")>;
|
|
8920
|
-
addToDashboard:
|
|
8921
|
-
advancedSettingsApp:
|
|
8922
|
-
agentApp:
|
|
8923
|
-
aggregate:
|
|
8924
|
-
alignBottom:
|
|
8925
|
-
alignBottomLeft:
|
|
8926
|
-
alignBottomRight:
|
|
8927
|
-
alignCenterHorizontal:
|
|
8928
|
-
alignCenterVertical:
|
|
8929
|
-
alignLeft:
|
|
8930
|
-
alignRight:
|
|
8931
|
-
alignTop:
|
|
8932
|
-
alignTopLeft:
|
|
8933
|
-
alignTopRight:
|
|
8932
|
+
addToDashboard: IconImportLoaderWithMetadata;
|
|
8933
|
+
advancedSettingsApp: IconImportLoaderWithMetadata;
|
|
8934
|
+
agentApp: IconImportLoaderWithMetadata;
|
|
8935
|
+
aggregate: IconImportLoaderWithMetadata;
|
|
8936
|
+
alignBottom: IconImportLoaderWithMetadata;
|
|
8937
|
+
alignBottomLeft: IconImportLoaderWithMetadata;
|
|
8938
|
+
alignBottomRight: IconImportLoaderWithMetadata;
|
|
8939
|
+
alignCenterHorizontal: IconImportLoaderWithMetadata;
|
|
8940
|
+
alignCenterVertical: IconImportLoaderWithMetadata;
|
|
8941
|
+
alignLeft: IconImportLoaderWithMetadata;
|
|
8942
|
+
alignRight: IconImportLoaderWithMetadata;
|
|
8943
|
+
alignTop: IconImportLoaderWithMetadata;
|
|
8944
|
+
alignTopLeft: IconImportLoaderWithMetadata;
|
|
8945
|
+
alignTopRight: IconImportLoaderWithMetadata;
|
|
8934
8946
|
alert: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/warning")>;
|
|
8935
8947
|
analyzeEvent: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/analyze_event")>;
|
|
8936
8948
|
annotation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/annotation")>;
|
|
8937
8949
|
anomalyChart: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_anomaly")>;
|
|
8938
|
-
chartAnomaly:
|
|
8950
|
+
chartAnomaly: IconImportLoaderWithMetadata;
|
|
8939
8951
|
anomalySwimLane: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/anomaly_swim_lane")>;
|
|
8940
|
-
apmApp:
|
|
8952
|
+
apmApp: IconImportLoaderWithMetadata;
|
|
8941
8953
|
apmTrace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_waterfall")>;
|
|
8942
|
-
chartWaterfall:
|
|
8943
|
-
appSearchApp:
|
|
8954
|
+
chartWaterfall: IconImportLoaderWithMetadata;
|
|
8955
|
+
appSearchApp: IconImportLoaderWithMetadata;
|
|
8944
8956
|
apps: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/apps")>;
|
|
8945
8957
|
arrowDown: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_down")>;
|
|
8946
|
-
chevronSingleDown:
|
|
8958
|
+
chevronSingleDown: IconImportLoaderWithMetadata;
|
|
8947
8959
|
arrowLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_left")>;
|
|
8948
|
-
chevronSingleLeft:
|
|
8960
|
+
chevronSingleLeft: IconImportLoaderWithMetadata;
|
|
8949
8961
|
arrowRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_right")>;
|
|
8950
|
-
chevronSingleRight:
|
|
8962
|
+
chevronSingleRight: IconImportLoaderWithMetadata;
|
|
8951
8963
|
arrowUp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_up")>;
|
|
8952
|
-
chevronSingleUp:
|
|
8964
|
+
chevronSingleUp: IconImportLoaderWithMetadata;
|
|
8953
8965
|
arrowStart: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_limit_left")>;
|
|
8954
|
-
chevronLimitLeft:
|
|
8966
|
+
chevronLimitLeft: IconImportLoaderWithMetadata;
|
|
8955
8967
|
arrowEnd: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_limit_right")>;
|
|
8956
|
-
chevronLimitRight:
|
|
8968
|
+
chevronLimitRight: IconImportLoaderWithMetadata;
|
|
8957
8969
|
article: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/article")>;
|
|
8958
|
-
asterisk:
|
|
8959
|
-
at:
|
|
8960
|
-
archive:
|
|
8961
|
-
axisX:
|
|
8962
|
-
axisYLeft:
|
|
8963
|
-
axisYRight:
|
|
8964
|
-
auditbeatApp:
|
|
8965
|
-
backgroundTask:
|
|
8970
|
+
asterisk: IconImportLoaderWithMetadata;
|
|
8971
|
+
at: IconImportLoaderWithMetadata;
|
|
8972
|
+
archive: IconImportLoaderWithMetadata;
|
|
8973
|
+
axisX: IconImportLoaderWithMetadata;
|
|
8974
|
+
axisYLeft: IconImportLoaderWithMetadata;
|
|
8975
|
+
axisYRight: IconImportLoaderWithMetadata;
|
|
8976
|
+
auditbeatApp: IconImportLoaderWithMetadata;
|
|
8977
|
+
backgroundTask: IconImportLoaderWithMetadata;
|
|
8966
8978
|
beaker: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/flask")>;
|
|
8967
|
-
bell:
|
|
8968
|
-
bellSlash:
|
|
8969
|
-
beta:
|
|
8970
|
-
bolt:
|
|
8979
|
+
bell: IconImportLoaderWithMetadata;
|
|
8980
|
+
bellSlash: IconImportLoaderWithMetadata;
|
|
8981
|
+
beta: IconImportLoaderWithMetadata;
|
|
8982
|
+
bolt: IconImportLoaderWithMetadata;
|
|
8971
8983
|
boxesHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/boxes_vertical")>;
|
|
8972
8984
|
boxesVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/boxes_vertical")>;
|
|
8973
|
-
branch:
|
|
8974
|
-
briefcase:
|
|
8985
|
+
branch: IconImportLoaderWithMetadata;
|
|
8986
|
+
briefcase: IconImportLoaderWithMetadata;
|
|
8975
8987
|
branchUser: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/branch_user")>;
|
|
8976
|
-
broom:
|
|
8977
|
-
brush:
|
|
8978
|
-
bug:
|
|
8979
|
-
bulb:
|
|
8980
|
-
bullseye:
|
|
8981
|
-
calendar:
|
|
8982
|
-
canvasApp:
|
|
8983
|
-
casesApp:
|
|
8988
|
+
broom: IconImportLoaderWithMetadata;
|
|
8989
|
+
brush: IconImportLoaderWithMetadata;
|
|
8990
|
+
bug: IconImportLoaderWithMetadata;
|
|
8991
|
+
bulb: IconImportLoaderWithMetadata;
|
|
8992
|
+
bullseye: IconImportLoaderWithMetadata;
|
|
8993
|
+
calendar: IconImportLoaderWithMetadata;
|
|
8994
|
+
canvasApp: IconImportLoaderWithMetadata;
|
|
8995
|
+
casesApp: IconImportLoaderWithMetadata;
|
|
8984
8996
|
changePointDetection: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_change_point")>;
|
|
8985
|
-
chartChangePoint:
|
|
8986
|
-
chartArea:
|
|
8987
|
-
chartAreaStack:
|
|
8988
|
-
chartBarHorizontal:
|
|
8989
|
-
chartBarHorizontalStack:
|
|
8990
|
-
chartBarVertical:
|
|
8991
|
-
chartBarVerticalStack:
|
|
8992
|
-
chartGauge:
|
|
8993
|
-
chartHeatmap:
|
|
8994
|
-
chartLine:
|
|
8995
|
-
chartPie:
|
|
8996
|
-
chartTagCloud:
|
|
8997
|
-
chartThreshold:
|
|
8998
|
-
check:
|
|
8999
|
-
checkCircle:
|
|
8997
|
+
chartChangePoint: IconImportLoaderWithMetadata;
|
|
8998
|
+
chartArea: IconImportLoaderWithMetadata;
|
|
8999
|
+
chartAreaStack: IconImportLoaderWithMetadata;
|
|
9000
|
+
chartBarHorizontal: IconImportLoaderWithMetadata;
|
|
9001
|
+
chartBarHorizontalStack: IconImportLoaderWithMetadata;
|
|
9002
|
+
chartBarVertical: IconImportLoaderWithMetadata;
|
|
9003
|
+
chartBarVerticalStack: IconImportLoaderWithMetadata;
|
|
9004
|
+
chartGauge: IconImportLoaderWithMetadata;
|
|
9005
|
+
chartHeatmap: IconImportLoaderWithMetadata;
|
|
9006
|
+
chartLine: IconImportLoaderWithMetadata;
|
|
9007
|
+
chartPie: IconImportLoaderWithMetadata;
|
|
9008
|
+
chartTagCloud: IconImportLoaderWithMetadata;
|
|
9009
|
+
chartThreshold: IconImportLoaderWithMetadata;
|
|
9010
|
+
check: IconImportLoaderWithMetadata;
|
|
9011
|
+
checkCircle: IconImportLoaderWithMetadata;
|
|
9000
9012
|
checkInCircleFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/check_circle_fill")>;
|
|
9001
|
-
checkCircleFill:
|
|
9013
|
+
checkCircleFill: IconImportLoaderWithMetadata;
|
|
9002
9014
|
cheer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/popper")>;
|
|
9003
|
-
popper:
|
|
9004
|
-
classificationJob:
|
|
9005
|
-
clickLeft:
|
|
9006
|
-
clickRight:
|
|
9007
|
-
clock:
|
|
9008
|
-
clockCounter:
|
|
9009
|
-
clockControl:
|
|
9010
|
-
cloud:
|
|
9015
|
+
popper: IconImportLoaderWithMetadata;
|
|
9016
|
+
classificationJob: IconImportLoaderWithMetadata;
|
|
9017
|
+
clickLeft: IconImportLoaderWithMetadata;
|
|
9018
|
+
clickRight: IconImportLoaderWithMetadata;
|
|
9019
|
+
clock: IconImportLoaderWithMetadata;
|
|
9020
|
+
clockCounter: IconImportLoaderWithMetadata;
|
|
9021
|
+
clockControl: IconImportLoaderWithMetadata;
|
|
9022
|
+
cloud: IconImportLoaderWithMetadata;
|
|
9011
9023
|
cloudDrizzle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cloud_drizzle")>;
|
|
9012
9024
|
cloudStormy: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cloud_stormy")>;
|
|
9013
9025
|
cloudSunny: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cloud_sunny")>;
|
|
9014
|
-
cluster:
|
|
9015
|
-
code:
|
|
9016
|
-
codeApp:
|
|
9026
|
+
cluster: IconImportLoaderWithMetadata;
|
|
9027
|
+
code: IconImportLoaderWithMetadata;
|
|
9028
|
+
codeApp: IconImportLoaderWithMetadata;
|
|
9017
9029
|
color: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/paint_bucket")>;
|
|
9018
|
-
paintBucket:
|
|
9019
|
-
commandLine:
|
|
9020
|
-
comment:
|
|
9021
|
-
compare:
|
|
9030
|
+
paintBucket: IconImportLoaderWithMetadata;
|
|
9031
|
+
commandLine: IconImportLoaderWithMetadata;
|
|
9032
|
+
comment: IconImportLoaderWithMetadata;
|
|
9033
|
+
compare: IconImportLoaderWithMetadata;
|
|
9022
9034
|
compute: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/processor")>;
|
|
9023
|
-
processor:
|
|
9035
|
+
processor: IconImportLoaderWithMetadata;
|
|
9024
9036
|
console: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/command_line")>;
|
|
9025
|
-
consoleApp:
|
|
9037
|
+
consoleApp: IconImportLoaderWithMetadata;
|
|
9026
9038
|
container: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/container")>;
|
|
9027
9039
|
continuityAbove: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/continuity_above")>;
|
|
9028
9040
|
continuityAboveBelow: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/continuity_above_below")>;
|
|
9029
9041
|
continuityBelow: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/continuity_below")>;
|
|
9030
9042
|
continuityWithin: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/continuity_within")>;
|
|
9031
|
-
contrast:
|
|
9043
|
+
contrast: IconImportLoaderWithMetadata;
|
|
9032
9044
|
contrastHigh: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/contrast_fill")>;
|
|
9033
|
-
contrastFill:
|
|
9034
|
-
controls:
|
|
9045
|
+
contrastFill: IconImportLoaderWithMetadata;
|
|
9046
|
+
controls: IconImportLoaderWithMetadata;
|
|
9035
9047
|
controlsHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/controls")>;
|
|
9036
9048
|
controlsVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/controls")>;
|
|
9037
|
-
copy:
|
|
9049
|
+
copy: IconImportLoaderWithMetadata;
|
|
9038
9050
|
copyClipboard: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/copy")>;
|
|
9039
|
-
crossProjectSearch:
|
|
9040
|
-
createAdvancedJob:
|
|
9041
|
-
createGenericJob:
|
|
9042
|
-
createGeoJob:
|
|
9043
|
-
createMultiMetricJob:
|
|
9044
|
-
createPopulationJob:
|
|
9045
|
-
createSingleMetricJob:
|
|
9046
|
-
cross:
|
|
9047
|
-
crossClusterReplicationApp:
|
|
9051
|
+
crossProjectSearch: IconImportLoaderWithMetadata;
|
|
9052
|
+
createAdvancedJob: IconImportLoaderWithMetadata;
|
|
9053
|
+
createGenericJob: IconImportLoaderWithMetadata;
|
|
9054
|
+
createGeoJob: IconImportLoaderWithMetadata;
|
|
9055
|
+
createMultiMetricJob: IconImportLoaderWithMetadata;
|
|
9056
|
+
createPopulationJob: IconImportLoaderWithMetadata;
|
|
9057
|
+
createSingleMetricJob: IconImportLoaderWithMetadata;
|
|
9058
|
+
cross: IconImportLoaderWithMetadata;
|
|
9059
|
+
crossClusterReplicationApp: IconImportLoaderWithMetadata;
|
|
9048
9060
|
crossInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cross_circle")>;
|
|
9049
|
-
crossCircle:
|
|
9050
|
-
crosshair:
|
|
9061
|
+
crossCircle: IconImportLoaderWithMetadata;
|
|
9062
|
+
crosshair: IconImportLoaderWithMetadata;
|
|
9051
9063
|
crosshairs: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/crosshair")>;
|
|
9052
9064
|
currency: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/money")>;
|
|
9053
|
-
money:
|
|
9065
|
+
money: IconImportLoaderWithMetadata;
|
|
9054
9066
|
cut: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/scissors")>;
|
|
9055
|
-
scissors:
|
|
9056
|
-
dashboardApp:
|
|
9057
|
-
dashedCircle:
|
|
9058
|
-
dataVisualizer:
|
|
9059
|
-
database:
|
|
9067
|
+
scissors: IconImportLoaderWithMetadata;
|
|
9068
|
+
dashboardApp: IconImportLoaderWithMetadata;
|
|
9069
|
+
dashedCircle: IconImportLoaderWithMetadata;
|
|
9070
|
+
dataVisualizer: IconImportLoaderWithMetadata;
|
|
9071
|
+
database: IconImportLoaderWithMetadata;
|
|
9060
9072
|
desktop: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/display")>;
|
|
9061
|
-
display:
|
|
9062
|
-
devToolsApp:
|
|
9073
|
+
display: IconImportLoaderWithMetadata;
|
|
9074
|
+
devToolsApp: IconImportLoaderWithMetadata;
|
|
9063
9075
|
diff: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/compare")>;
|
|
9064
|
-
discoverApp:
|
|
9065
|
-
distributeHorizontal:
|
|
9066
|
-
distributeVertical:
|
|
9067
|
-
download:
|
|
9068
|
-
drag:
|
|
9069
|
-
dragHorizontal:
|
|
9070
|
-
dragVertical:
|
|
9076
|
+
discoverApp: IconImportLoaderWithMetadata;
|
|
9077
|
+
distributeHorizontal: IconImportLoaderWithMetadata;
|
|
9078
|
+
distributeVertical: IconImportLoaderWithMetadata;
|
|
9079
|
+
download: IconImportLoaderWithMetadata;
|
|
9080
|
+
drag: IconImportLoaderWithMetadata;
|
|
9081
|
+
dragHorizontal: IconImportLoaderWithMetadata;
|
|
9082
|
+
dragVertical: IconImportLoaderWithMetadata;
|
|
9071
9083
|
discuss: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/comment")>;
|
|
9072
|
-
document:
|
|
9084
|
+
document: IconImportLoaderWithMetadata;
|
|
9073
9085
|
documentEdit: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/document_edit")>;
|
|
9074
|
-
documentation:
|
|
9075
|
-
documents:
|
|
9076
|
-
dot:
|
|
9086
|
+
documentation: IconImportLoaderWithMetadata;
|
|
9087
|
+
documents: IconImportLoaderWithMetadata;
|
|
9088
|
+
dot: IconImportLoaderWithMetadata;
|
|
9077
9089
|
dotInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/dot_in_circle")>;
|
|
9078
9090
|
doubleArrowLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_double_left")>;
|
|
9079
|
-
chevronDoubleLeft:
|
|
9091
|
+
chevronDoubleLeft: IconImportLoaderWithMetadata;
|
|
9080
9092
|
doubleArrowRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_double_right")>;
|
|
9081
|
-
chevronDoubleRight:
|
|
9082
|
-
ellipsis:
|
|
9093
|
+
chevronDoubleRight: IconImportLoaderWithMetadata;
|
|
9094
|
+
ellipsis: IconImportLoaderWithMetadata;
|
|
9083
9095
|
editorAlignCenter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_center")>;
|
|
9084
|
-
textAlignCenter:
|
|
9096
|
+
textAlignCenter: IconImportLoaderWithMetadata;
|
|
9085
9097
|
editorAlignLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_left")>;
|
|
9086
|
-
textAlignLeft:
|
|
9098
|
+
textAlignLeft: IconImportLoaderWithMetadata;
|
|
9087
9099
|
editorAlignRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_right")>;
|
|
9088
|
-
textAlignRight:
|
|
9100
|
+
textAlignRight: IconImportLoaderWithMetadata;
|
|
9089
9101
|
editorBold: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_bold")>;
|
|
9090
|
-
textBold:
|
|
9102
|
+
textBold: IconImportLoaderWithMetadata;
|
|
9091
9103
|
editorChecklist: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_check")>;
|
|
9092
|
-
listCheck:
|
|
9104
|
+
listCheck: IconImportLoaderWithMetadata;
|
|
9093
9105
|
editorCodeBlock: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/code")>;
|
|
9094
9106
|
editorComment: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/comment")>;
|
|
9095
9107
|
editorDistributeHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_distribute_horizontal")>;
|
|
9096
9108
|
editorDistributeVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_distribute_vertical")>;
|
|
9097
9109
|
editorHeading: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_heading")>;
|
|
9098
|
-
textHeading:
|
|
9110
|
+
textHeading: IconImportLoaderWithMetadata;
|
|
9099
9111
|
editorItalic: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_italic")>;
|
|
9100
|
-
textItalic:
|
|
9112
|
+
textItalic: IconImportLoaderWithMetadata;
|
|
9101
9113
|
editorItemAlignBottom: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_item_align_bottom")>;
|
|
9102
9114
|
editorItemAlignCenter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_item_align_center")>;
|
|
9103
9115
|
editorItemAlignLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_item_align_left")>;
|
|
@@ -9106,344 +9118,344 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
9106
9118
|
editorItemAlignTop: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_item_align_top")>;
|
|
9107
9119
|
editorLink: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/link")>;
|
|
9108
9120
|
editorOrderedList: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_number")>;
|
|
9109
|
-
listNumber:
|
|
9121
|
+
listNumber: IconImportLoaderWithMetadata;
|
|
9110
9122
|
editorPositionBottomLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_position_bottom_left")>;
|
|
9111
9123
|
editorPositionBottomRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_position_bottom_right")>;
|
|
9112
9124
|
editorPositionTopLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_position_top_left")>;
|
|
9113
9125
|
editorPositionTopRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_position_top_right")>;
|
|
9114
9126
|
editorRedo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/redo")>;
|
|
9115
|
-
redo:
|
|
9127
|
+
redo: IconImportLoaderWithMetadata;
|
|
9116
9128
|
editorStrike: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_strike")>;
|
|
9117
|
-
textStrike:
|
|
9129
|
+
textStrike: IconImportLoaderWithMetadata;
|
|
9118
9130
|
editorTable: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table")>;
|
|
9119
|
-
table:
|
|
9131
|
+
table: IconImportLoaderWithMetadata;
|
|
9120
9132
|
editorUnderline: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_underline")>;
|
|
9121
|
-
textUnderline:
|
|
9133
|
+
textUnderline: IconImportLoaderWithMetadata;
|
|
9122
9134
|
editorUndo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/undo")>;
|
|
9123
|
-
undo:
|
|
9135
|
+
undo: IconImportLoaderWithMetadata;
|
|
9124
9136
|
editorUnorderedList: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_bullet")>;
|
|
9125
|
-
listBullet:
|
|
9137
|
+
listBullet: IconImportLoaderWithMetadata;
|
|
9126
9138
|
email: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/mail")>;
|
|
9127
|
-
mail:
|
|
9128
|
-
empty:
|
|
9129
|
-
emsApp:
|
|
9130
|
-
endpoint:
|
|
9139
|
+
mail: IconImportLoaderWithMetadata;
|
|
9140
|
+
empty: IconImportLoaderWithMetadata;
|
|
9141
|
+
emsApp: IconImportLoaderWithMetadata;
|
|
9142
|
+
endpoint: IconImportLoaderWithMetadata;
|
|
9131
9143
|
eql: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query")>;
|
|
9132
|
-
query:
|
|
9133
|
-
eraser:
|
|
9134
|
-
error:
|
|
9144
|
+
query: IconImportLoaderWithMetadata;
|
|
9145
|
+
eraser: IconImportLoaderWithMetadata;
|
|
9146
|
+
error: IconImportLoaderWithMetadata;
|
|
9135
9147
|
errorFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/error_fill")>;
|
|
9136
|
-
errorFill:
|
|
9148
|
+
errorFill: IconImportLoaderWithMetadata;
|
|
9137
9149
|
esqlVis: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/esql_vis")>;
|
|
9138
9150
|
exit: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/log_out")>;
|
|
9139
|
-
logOut:
|
|
9151
|
+
logOut: IconImportLoaderWithMetadata;
|
|
9140
9152
|
expand: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/maximize")>;
|
|
9141
|
-
maximize:
|
|
9153
|
+
maximize: IconImportLoaderWithMetadata;
|
|
9142
9154
|
expandMini: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/maximize")>;
|
|
9143
9155
|
export: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/upload")>;
|
|
9144
9156
|
exportAction: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/upload")>;
|
|
9145
|
-
upload:
|
|
9146
|
-
external:
|
|
9147
|
-
eye:
|
|
9157
|
+
upload: IconImportLoaderWithMetadata;
|
|
9158
|
+
external: IconImportLoaderWithMetadata;
|
|
9159
|
+
eye: IconImportLoaderWithMetadata;
|
|
9148
9160
|
eyeClosed: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/eye_slash")>;
|
|
9149
|
-
eyeSlash:
|
|
9150
|
-
faceHappy:
|
|
9151
|
-
faceNeutral:
|
|
9152
|
-
faceSad:
|
|
9161
|
+
eyeSlash: IconImportLoaderWithMetadata;
|
|
9162
|
+
faceHappy: IconImportLoaderWithMetadata;
|
|
9163
|
+
faceNeutral: IconImportLoaderWithMetadata;
|
|
9164
|
+
faceSad: IconImportLoaderWithMetadata;
|
|
9153
9165
|
fieldStatistics: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_info")>;
|
|
9154
|
-
tableInfo:
|
|
9155
|
-
filebeatApp:
|
|
9156
|
-
filter:
|
|
9157
|
-
filterExclude:
|
|
9158
|
-
filterIgnore:
|
|
9159
|
-
filterInclude:
|
|
9166
|
+
tableInfo: IconImportLoaderWithMetadata;
|
|
9167
|
+
filebeatApp: IconImportLoaderWithMetadata;
|
|
9168
|
+
filter: IconImportLoaderWithMetadata;
|
|
9169
|
+
filterExclude: IconImportLoaderWithMetadata;
|
|
9170
|
+
filterIgnore: IconImportLoaderWithMetadata;
|
|
9171
|
+
filterInclude: IconImportLoaderWithMetadata;
|
|
9160
9172
|
filterInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/filter_in_circle")>;
|
|
9161
|
-
flask:
|
|
9162
|
-
flag:
|
|
9163
|
-
fleetApp:
|
|
9173
|
+
flask: IconImportLoaderWithMetadata;
|
|
9174
|
+
flag: IconImportLoaderWithMetadata;
|
|
9175
|
+
fleetApp: IconImportLoaderWithMetadata;
|
|
9164
9176
|
fold: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/fold")>;
|
|
9165
9177
|
folder: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_close")>;
|
|
9166
9178
|
folderClosed: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_close")>;
|
|
9167
|
-
folderClose:
|
|
9179
|
+
folderClose: IconImportLoaderWithMetadata;
|
|
9168
9180
|
folderCheck: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_check")>;
|
|
9169
9181
|
folderExclamation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_exclamation")>;
|
|
9170
|
-
folderOpen:
|
|
9182
|
+
folderOpen: IconImportLoaderWithMetadata;
|
|
9171
9183
|
folderOpened: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_open")>;
|
|
9172
9184
|
frameNext: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/frame_next")>;
|
|
9173
9185
|
framePrevious: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/frame_previous")>;
|
|
9174
|
-
fullScreen:
|
|
9175
|
-
fullScreenExit:
|
|
9186
|
+
fullScreen: IconImportLoaderWithMetadata;
|
|
9187
|
+
fullScreenExit: IconImportLoaderWithMetadata;
|
|
9176
9188
|
function: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/function")>;
|
|
9177
|
-
gear:
|
|
9178
|
-
gisApp:
|
|
9189
|
+
gear: IconImportLoaderWithMetadata;
|
|
9190
|
+
gisApp: IconImportLoaderWithMetadata;
|
|
9179
9191
|
glasses: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/read_only")>;
|
|
9180
|
-
globe:
|
|
9192
|
+
globe: IconImportLoaderWithMetadata;
|
|
9181
9193
|
grab: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/drag_vertical")>;
|
|
9182
9194
|
grabHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/drag_horizontal")>;
|
|
9183
9195
|
grabOmnidirectional: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/grab_omnidirectional")>;
|
|
9184
|
-
gradient:
|
|
9185
|
-
graphApp:
|
|
9186
|
-
grid:
|
|
9187
|
-
grokApp:
|
|
9188
|
-
heart:
|
|
9189
|
-
heartbeatApp:
|
|
9196
|
+
gradient: IconImportLoaderWithMetadata;
|
|
9197
|
+
graphApp: IconImportLoaderWithMetadata;
|
|
9198
|
+
grid: IconImportLoaderWithMetadata;
|
|
9199
|
+
grokApp: IconImportLoaderWithMetadata;
|
|
9200
|
+
heart: IconImportLoaderWithMetadata;
|
|
9201
|
+
heartbeatApp: IconImportLoaderWithMetadata;
|
|
9190
9202
|
heatmap: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_heatmap")>;
|
|
9191
9203
|
help: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/help")>;
|
|
9192
|
-
home:
|
|
9193
|
-
hourglass:
|
|
9194
|
-
if:
|
|
9195
|
-
info:
|
|
9196
|
-
image:
|
|
9204
|
+
home: IconImportLoaderWithMetadata;
|
|
9205
|
+
hourglass: IconImportLoaderWithMetadata;
|
|
9206
|
+
if: IconImportLoaderWithMetadata;
|
|
9207
|
+
info: IconImportLoaderWithMetadata;
|
|
9208
|
+
image: IconImportLoaderWithMetadata;
|
|
9197
9209
|
importAction: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/download")>;
|
|
9198
9210
|
index: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/index")>;
|
|
9199
|
-
indexClose:
|
|
9200
|
-
indexEdit:
|
|
9211
|
+
indexClose: IconImportLoaderWithMetadata;
|
|
9212
|
+
indexEdit: IconImportLoaderWithMetadata;
|
|
9201
9213
|
indexFlush: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_threshold")>;
|
|
9202
|
-
indexManagementApp:
|
|
9214
|
+
indexManagementApp: IconImportLoaderWithMetadata;
|
|
9203
9215
|
indexMapping: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/mapping")>;
|
|
9204
|
-
mapping:
|
|
9205
|
-
indexOpen:
|
|
9206
|
-
indexPatternApp:
|
|
9207
|
-
indexRollupApp:
|
|
9208
|
-
indexRuntime:
|
|
9209
|
-
indexSettings:
|
|
9216
|
+
mapping: IconImportLoaderWithMetadata;
|
|
9217
|
+
indexOpen: IconImportLoaderWithMetadata;
|
|
9218
|
+
indexPatternApp: IconImportLoaderWithMetadata;
|
|
9219
|
+
indexRollupApp: IconImportLoaderWithMetadata;
|
|
9220
|
+
indexRuntime: IconImportLoaderWithMetadata;
|
|
9221
|
+
indexSettings: IconImportLoaderWithMetadata;
|
|
9210
9222
|
indexTemporary: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_time")>;
|
|
9211
|
-
tableTime:
|
|
9212
|
-
infinity:
|
|
9213
|
-
inputOutput:
|
|
9214
|
-
inspect:
|
|
9223
|
+
tableTime: IconImportLoaderWithMetadata;
|
|
9224
|
+
infinity: IconImportLoaderWithMetadata;
|
|
9225
|
+
inputOutput: IconImportLoaderWithMetadata;
|
|
9226
|
+
inspect: IconImportLoaderWithMetadata;
|
|
9215
9227
|
invert: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/contrast")>;
|
|
9216
9228
|
ip: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ip")>;
|
|
9217
|
-
key:
|
|
9218
|
-
keyboard:
|
|
9229
|
+
key: IconImportLoaderWithMetadata;
|
|
9230
|
+
keyboard: IconImportLoaderWithMetadata;
|
|
9219
9231
|
kqlField: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_field")>;
|
|
9220
|
-
queryField:
|
|
9232
|
+
queryField: IconImportLoaderWithMetadata;
|
|
9221
9233
|
kqlFunction: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/kql_function")>;
|
|
9222
9234
|
kqlOperand: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_operand")>;
|
|
9223
|
-
queryOperand:
|
|
9235
|
+
queryOperand: IconImportLoaderWithMetadata;
|
|
9224
9236
|
kqlSelector: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_selector")>;
|
|
9225
|
-
querySelector:
|
|
9237
|
+
querySelector: IconImportLoaderWithMetadata;
|
|
9226
9238
|
kqlValue: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_value")>;
|
|
9227
|
-
queryValue:
|
|
9239
|
+
queryValue: IconImportLoaderWithMetadata;
|
|
9228
9240
|
kubernetesNode: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/kubernetes_node")>;
|
|
9229
|
-
kubernetesPod:
|
|
9241
|
+
kubernetesPod: IconImportLoaderWithMetadata;
|
|
9230
9242
|
launch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/rocket")>;
|
|
9231
|
-
rocket:
|
|
9232
|
-
layers:
|
|
9233
|
-
lensApp:
|
|
9243
|
+
rocket: IconImportLoaderWithMetadata;
|
|
9244
|
+
layers: IconImportLoaderWithMetadata;
|
|
9245
|
+
lensApp: IconImportLoaderWithMetadata;
|
|
9234
9246
|
lettering: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text")>;
|
|
9235
|
-
text:
|
|
9236
|
-
lineBreak:
|
|
9237
|
-
lineBreakSlash:
|
|
9238
|
-
lineDash:
|
|
9247
|
+
text: IconImportLoaderWithMetadata;
|
|
9248
|
+
lineBreak: IconImportLoaderWithMetadata;
|
|
9249
|
+
lineBreakSlash: IconImportLoaderWithMetadata;
|
|
9250
|
+
lineDash: IconImportLoaderWithMetadata;
|
|
9239
9251
|
lineDashed: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_dash")>;
|
|
9240
|
-
lineDot:
|
|
9252
|
+
lineDot: IconImportLoaderWithMetadata;
|
|
9241
9253
|
lineDotted: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_dot")>;
|
|
9242
|
-
lineSolid:
|
|
9243
|
-
link:
|
|
9244
|
-
linkSlash:
|
|
9254
|
+
lineSolid: IconImportLoaderWithMetadata;
|
|
9255
|
+
link: IconImportLoaderWithMetadata;
|
|
9256
|
+
linkSlash: IconImportLoaderWithMetadata;
|
|
9245
9257
|
list: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_bullet")>;
|
|
9246
9258
|
listAdd: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
|
|
9247
|
-
lock:
|
|
9248
|
-
lockOpen:
|
|
9259
|
+
lock: IconImportLoaderWithMetadata;
|
|
9260
|
+
lockOpen: IconImportLoaderWithMetadata;
|
|
9249
9261
|
logPatternAnalysis: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pattern")>;
|
|
9250
|
-
pattern:
|
|
9262
|
+
pattern: IconImportLoaderWithMetadata;
|
|
9251
9263
|
logRateAnalysis: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/log_rate_analysis")>;
|
|
9252
|
-
logoAWS:
|
|
9253
|
-
logoAWSMono:
|
|
9254
|
-
logoAerospike:
|
|
9255
|
-
logoApache:
|
|
9256
|
-
logoAppSearch:
|
|
9257
|
-
logoAzure:
|
|
9258
|
-
logoAzureMono:
|
|
9259
|
-
logoBeats:
|
|
9260
|
-
logoBusinessAnalytics:
|
|
9261
|
-
logoCeph:
|
|
9262
|
-
logoCloud:
|
|
9263
|
-
logoCloudEnterprise:
|
|
9264
|
-
logoCode:
|
|
9265
|
-
logoCodesandbox:
|
|
9266
|
-
logoCouchbase:
|
|
9267
|
-
logoDocker:
|
|
9268
|
-
logoDropwizard:
|
|
9269
|
-
logoElastic:
|
|
9270
|
-
logoElasticStack:
|
|
9271
|
-
logoElasticsearch:
|
|
9272
|
-
logoEnterpriseSearch:
|
|
9273
|
-
logoEtcd:
|
|
9274
|
-
logoGCP:
|
|
9275
|
-
logoGCPMono:
|
|
9276
|
-
logoGithub:
|
|
9277
|
-
logoGmail:
|
|
9278
|
-
logoGolang:
|
|
9279
|
-
logoGoogleG:
|
|
9280
|
-
logoHAproxy:
|
|
9281
|
-
logoIBM:
|
|
9282
|
-
logoIBMMono:
|
|
9283
|
-
logoKafka:
|
|
9284
|
-
logoKibana:
|
|
9285
|
-
logoKubernetes:
|
|
9286
|
-
logoLogging:
|
|
9287
|
-
logoLogstash:
|
|
9288
|
-
logoMaps:
|
|
9289
|
-
logoMemcached:
|
|
9290
|
-
logoMetrics:
|
|
9291
|
-
logoMongodb:
|
|
9292
|
-
logoMySQL:
|
|
9293
|
-
logoNginx:
|
|
9294
|
-
logoObservability:
|
|
9295
|
-
logoOsquery:
|
|
9296
|
-
logoPhp:
|
|
9297
|
-
logoPostgres:
|
|
9298
|
-
logoPrometheus:
|
|
9299
|
-
logoRabbitmq:
|
|
9300
|
-
logoRedis:
|
|
9301
|
-
logoSecurity:
|
|
9302
|
-
logoSiteSearch:
|
|
9303
|
-
logoSketch:
|
|
9304
|
-
logoSlack:
|
|
9305
|
-
logoUptime:
|
|
9306
|
-
logoVectorDB:
|
|
9307
|
-
logoVulnerabilityManagement:
|
|
9308
|
-
logoWebhook:
|
|
9309
|
-
logoWindows:
|
|
9310
|
-
logoWorkplaceSearch:
|
|
9311
|
-
logsApp:
|
|
9264
|
+
logoAWS: IconImportLoaderWithMetadata;
|
|
9265
|
+
logoAWSMono: IconImportLoaderWithMetadata;
|
|
9266
|
+
logoAerospike: IconImportLoaderWithMetadata;
|
|
9267
|
+
logoApache: IconImportLoaderWithMetadata;
|
|
9268
|
+
logoAppSearch: IconImportLoaderWithMetadata;
|
|
9269
|
+
logoAzure: IconImportLoaderWithMetadata;
|
|
9270
|
+
logoAzureMono: IconImportLoaderWithMetadata;
|
|
9271
|
+
logoBeats: IconImportLoaderWithMetadata;
|
|
9272
|
+
logoBusinessAnalytics: IconImportLoaderWithMetadata;
|
|
9273
|
+
logoCeph: IconImportLoaderWithMetadata;
|
|
9274
|
+
logoCloud: IconImportLoaderWithMetadata;
|
|
9275
|
+
logoCloudEnterprise: IconImportLoaderWithMetadata;
|
|
9276
|
+
logoCode: IconImportLoaderWithMetadata;
|
|
9277
|
+
logoCodesandbox: IconImportLoaderWithMetadata;
|
|
9278
|
+
logoCouchbase: IconImportLoaderWithMetadata;
|
|
9279
|
+
logoDocker: IconImportLoaderWithMetadata;
|
|
9280
|
+
logoDropwizard: IconImportLoaderWithMetadata;
|
|
9281
|
+
logoElastic: IconImportLoaderWithMetadata;
|
|
9282
|
+
logoElasticStack: IconImportLoaderWithMetadata;
|
|
9283
|
+
logoElasticsearch: IconImportLoaderWithMetadata;
|
|
9284
|
+
logoEnterpriseSearch: IconImportLoaderWithMetadata;
|
|
9285
|
+
logoEtcd: IconImportLoaderWithMetadata;
|
|
9286
|
+
logoGCP: IconImportLoaderWithMetadata;
|
|
9287
|
+
logoGCPMono: IconImportLoaderWithMetadata;
|
|
9288
|
+
logoGithub: IconImportLoaderWithMetadata;
|
|
9289
|
+
logoGmail: IconImportLoaderWithMetadata;
|
|
9290
|
+
logoGolang: IconImportLoaderWithMetadata;
|
|
9291
|
+
logoGoogleG: IconImportLoaderWithMetadata;
|
|
9292
|
+
logoHAproxy: IconImportLoaderWithMetadata;
|
|
9293
|
+
logoIBM: IconImportLoaderWithMetadata;
|
|
9294
|
+
logoIBMMono: IconImportLoaderWithMetadata;
|
|
9295
|
+
logoKafka: IconImportLoaderWithMetadata;
|
|
9296
|
+
logoKibana: IconImportLoaderWithMetadata;
|
|
9297
|
+
logoKubernetes: IconImportLoaderWithMetadata;
|
|
9298
|
+
logoLogging: IconImportLoaderWithMetadata;
|
|
9299
|
+
logoLogstash: IconImportLoaderWithMetadata;
|
|
9300
|
+
logoMaps: IconImportLoaderWithMetadata;
|
|
9301
|
+
logoMemcached: IconImportLoaderWithMetadata;
|
|
9302
|
+
logoMetrics: IconImportLoaderWithMetadata;
|
|
9303
|
+
logoMongodb: IconImportLoaderWithMetadata;
|
|
9304
|
+
logoMySQL: IconImportLoaderWithMetadata;
|
|
9305
|
+
logoNginx: IconImportLoaderWithMetadata;
|
|
9306
|
+
logoObservability: IconImportLoaderWithMetadata;
|
|
9307
|
+
logoOsquery: IconImportLoaderWithMetadata;
|
|
9308
|
+
logoPhp: IconImportLoaderWithMetadata;
|
|
9309
|
+
logoPostgres: IconImportLoaderWithMetadata;
|
|
9310
|
+
logoPrometheus: IconImportLoaderWithMetadata;
|
|
9311
|
+
logoRabbitmq: IconImportLoaderWithMetadata;
|
|
9312
|
+
logoRedis: IconImportLoaderWithMetadata;
|
|
9313
|
+
logoSecurity: IconImportLoaderWithMetadata;
|
|
9314
|
+
logoSiteSearch: IconImportLoaderWithMetadata;
|
|
9315
|
+
logoSketch: IconImportLoaderWithMetadata;
|
|
9316
|
+
logoSlack: IconImportLoaderWithMetadata;
|
|
9317
|
+
logoUptime: IconImportLoaderWithMetadata;
|
|
9318
|
+
logoVectorDB: IconImportLoaderWithMetadata;
|
|
9319
|
+
logoVulnerabilityManagement: IconImportLoaderWithMetadata;
|
|
9320
|
+
logoWebhook: IconImportLoaderWithMetadata;
|
|
9321
|
+
logoWindows: IconImportLoaderWithMetadata;
|
|
9322
|
+
logoWorkplaceSearch: IconImportLoaderWithMetadata;
|
|
9323
|
+
logsApp: IconImportLoaderWithMetadata;
|
|
9312
9324
|
logstashFilter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logstash_filter")>;
|
|
9313
9325
|
logstashIf: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/if")>;
|
|
9314
9326
|
logstashInput: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logstash_input")>;
|
|
9315
9327
|
logstashOutput: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logstash_output")>;
|
|
9316
9328
|
logstashQueue: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/queue")>;
|
|
9317
|
-
queue:
|
|
9318
|
-
machineLearningApp:
|
|
9329
|
+
queue: IconImportLoaderWithMetadata;
|
|
9330
|
+
machineLearningApp: IconImportLoaderWithMetadata;
|
|
9319
9331
|
magnet: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnet")>;
|
|
9320
|
-
magnify:
|
|
9321
|
-
magnifyExclamation:
|
|
9322
|
-
magnifyMinus:
|
|
9323
|
-
magnifyPlus:
|
|
9332
|
+
magnify: IconImportLoaderWithMetadata;
|
|
9333
|
+
magnifyExclamation: IconImportLoaderWithMetadata;
|
|
9334
|
+
magnifyMinus: IconImportLoaderWithMetadata;
|
|
9335
|
+
magnifyPlus: IconImportLoaderWithMetadata;
|
|
9324
9336
|
magnifyWithExclamation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_with_exclamation")>;
|
|
9325
9337
|
magnifyWithMinus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_with_minus")>;
|
|
9326
9338
|
magnifyWithPlus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_with_plus")>;
|
|
9327
|
-
managementApp:
|
|
9328
|
-
map:
|
|
9339
|
+
managementApp: IconImportLoaderWithMetadata;
|
|
9340
|
+
map: IconImportLoaderWithMetadata;
|
|
9329
9341
|
mapMarker: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/waypoint")>;
|
|
9330
|
-
waypoint:
|
|
9331
|
-
megaphone:
|
|
9342
|
+
waypoint: IconImportLoaderWithMetadata;
|
|
9343
|
+
megaphone: IconImportLoaderWithMetadata;
|
|
9332
9344
|
memory: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/memory")>;
|
|
9333
|
-
menu:
|
|
9345
|
+
menu: IconImportLoaderWithMetadata;
|
|
9334
9346
|
menuDown: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/menu_down")>;
|
|
9335
|
-
menuLeft:
|
|
9336
|
-
menuRight:
|
|
9347
|
+
menuLeft: IconImportLoaderWithMetadata;
|
|
9348
|
+
menuRight: IconImportLoaderWithMetadata;
|
|
9337
9349
|
menuUp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/menu_up")>;
|
|
9338
|
-
merge:
|
|
9339
|
-
metricbeatApp:
|
|
9340
|
-
metricsApp:
|
|
9341
|
-
minimize:
|
|
9342
|
-
minus:
|
|
9343
|
-
minusCircle:
|
|
9350
|
+
merge: IconImportLoaderWithMetadata;
|
|
9351
|
+
metricbeatApp: IconImportLoaderWithMetadata;
|
|
9352
|
+
metricsApp: IconImportLoaderWithMetadata;
|
|
9353
|
+
minimize: IconImportLoaderWithMetadata;
|
|
9354
|
+
minus: IconImportLoaderWithMetadata;
|
|
9355
|
+
minusCircle: IconImportLoaderWithMetadata;
|
|
9344
9356
|
minusInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus_circle")>;
|
|
9345
9357
|
minusInCircleFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus_circle")>;
|
|
9346
9358
|
minusInSquare: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus_square")>;
|
|
9347
|
-
minusSquare:
|
|
9359
|
+
minusSquare: IconImportLoaderWithMetadata;
|
|
9348
9360
|
mobile: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/mobile")>;
|
|
9349
|
-
monitoringApp:
|
|
9350
|
-
moon:
|
|
9351
|
-
move:
|
|
9361
|
+
monitoringApp: IconImportLoaderWithMetadata;
|
|
9362
|
+
moon: IconImportLoaderWithMetadata;
|
|
9363
|
+
move: IconImportLoaderWithMetadata;
|
|
9352
9364
|
namespace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/namespace")>;
|
|
9353
|
-
nested:
|
|
9365
|
+
nested: IconImportLoaderWithMetadata;
|
|
9354
9366
|
newChat: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
|
|
9355
9367
|
node: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vector_triangle")>;
|
|
9356
|
-
vectorTriangle:
|
|
9357
|
-
notebookApp:
|
|
9358
|
-
number:
|
|
9368
|
+
vectorTriangle: IconImportLoaderWithMetadata;
|
|
9369
|
+
notebookApp: IconImportLoaderWithMetadata;
|
|
9370
|
+
number: IconImportLoaderWithMetadata;
|
|
9359
9371
|
offline: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/wifi_slash")>;
|
|
9360
|
-
wifiSlash:
|
|
9372
|
+
wifiSlash: IconImportLoaderWithMetadata;
|
|
9361
9373
|
online: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/wifi")>;
|
|
9362
|
-
wifi:
|
|
9363
|
-
outlierDetectionJob:
|
|
9364
|
-
package:
|
|
9365
|
-
packetbeatApp:
|
|
9374
|
+
wifi: IconImportLoaderWithMetadata;
|
|
9375
|
+
outlierDetectionJob: IconImportLoaderWithMetadata;
|
|
9376
|
+
package: IconImportLoaderWithMetadata;
|
|
9377
|
+
packetbeatApp: IconImportLoaderWithMetadata;
|
|
9366
9378
|
pageSelect: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/page_select")>;
|
|
9367
|
-
pagesSelect:
|
|
9368
|
-
palette:
|
|
9369
|
-
paperClip:
|
|
9370
|
-
partial:
|
|
9371
|
-
pause:
|
|
9379
|
+
pagesSelect: IconImportLoaderWithMetadata;
|
|
9380
|
+
palette: IconImportLoaderWithMetadata;
|
|
9381
|
+
paperClip: IconImportLoaderWithMetadata;
|
|
9382
|
+
partial: IconImportLoaderWithMetadata;
|
|
9383
|
+
pause: IconImportLoaderWithMetadata;
|
|
9372
9384
|
payment: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/payment")>;
|
|
9373
|
-
pencil:
|
|
9374
|
-
percent:
|
|
9375
|
-
pin:
|
|
9376
|
-
pinFill:
|
|
9385
|
+
pencil: IconImportLoaderWithMetadata;
|
|
9386
|
+
percent: IconImportLoaderWithMetadata;
|
|
9387
|
+
pin: IconImportLoaderWithMetadata;
|
|
9388
|
+
pinFill: IconImportLoaderWithMetadata;
|
|
9377
9389
|
pinFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pin_fill")>;
|
|
9378
9390
|
pipeBreaks: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_break")>;
|
|
9379
|
-
pipelineApp:
|
|
9391
|
+
pipelineApp: IconImportLoaderWithMetadata;
|
|
9380
9392
|
pipeNoBreaks: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_break_slash")>;
|
|
9381
|
-
pivot:
|
|
9382
|
-
play:
|
|
9393
|
+
pivot: IconImportLoaderWithMetadata;
|
|
9394
|
+
play: IconImportLoaderWithMetadata;
|
|
9383
9395
|
playFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/play_filled")>;
|
|
9384
9396
|
plugs: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plugs")>;
|
|
9385
|
-
plus:
|
|
9386
|
-
plusCircle:
|
|
9397
|
+
plus: IconImportLoaderWithMetadata;
|
|
9398
|
+
plusCircle: IconImportLoaderWithMetadata;
|
|
9387
9399
|
plusInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
|
|
9388
9400
|
plusInCircleFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
|
|
9389
9401
|
plusInSquare: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_square")>;
|
|
9390
|
-
plusSquare:
|
|
9402
|
+
plusSquare: IconImportLoaderWithMetadata;
|
|
9391
9403
|
popout: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/external")>;
|
|
9392
|
-
presentation:
|
|
9404
|
+
presentation: IconImportLoaderWithMetadata;
|
|
9393
9405
|
productRobot: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_agent")>;
|
|
9394
|
-
productAgent:
|
|
9395
|
-
productCloudInfra:
|
|
9396
|
-
productDashboard:
|
|
9397
|
-
productDiscover:
|
|
9398
|
-
productML:
|
|
9399
|
-
productStreamsClassic:
|
|
9400
|
-
productStreamsWired:
|
|
9406
|
+
productAgent: IconImportLoaderWithMetadata;
|
|
9407
|
+
productCloudInfra: IconImportLoaderWithMetadata;
|
|
9408
|
+
productDashboard: IconImportLoaderWithMetadata;
|
|
9409
|
+
productDiscover: IconImportLoaderWithMetadata;
|
|
9410
|
+
productML: IconImportLoaderWithMetadata;
|
|
9411
|
+
productStreamsClassic: IconImportLoaderWithMetadata;
|
|
9412
|
+
productStreamsWired: IconImportLoaderWithMetadata;
|
|
9401
9413
|
push: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/send")>;
|
|
9402
|
-
send:
|
|
9403
|
-
question:
|
|
9404
|
-
quote:
|
|
9405
|
-
radar:
|
|
9406
|
-
readOnly:
|
|
9407
|
-
recentlyViewedApp:
|
|
9408
|
-
refresh:
|
|
9409
|
-
regressionJob:
|
|
9410
|
-
reporter:
|
|
9411
|
-
reportingApp:
|
|
9412
|
-
return:
|
|
9414
|
+
send: IconImportLoaderWithMetadata;
|
|
9415
|
+
question: IconImportLoaderWithMetadata;
|
|
9416
|
+
quote: IconImportLoaderWithMetadata;
|
|
9417
|
+
radar: IconImportLoaderWithMetadata;
|
|
9418
|
+
readOnly: IconImportLoaderWithMetadata;
|
|
9419
|
+
recentlyViewedApp: IconImportLoaderWithMetadata;
|
|
9420
|
+
refresh: IconImportLoaderWithMetadata;
|
|
9421
|
+
regressionJob: IconImportLoaderWithMetadata;
|
|
9422
|
+
reporter: IconImportLoaderWithMetadata;
|
|
9423
|
+
reportingApp: IconImportLoaderWithMetadata;
|
|
9424
|
+
return: IconImportLoaderWithMetadata;
|
|
9413
9425
|
returnKey: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/return")>;
|
|
9414
|
-
save:
|
|
9415
|
-
savedObjectsApp:
|
|
9426
|
+
save: IconImportLoaderWithMetadata;
|
|
9427
|
+
savedObjectsApp: IconImportLoaderWithMetadata;
|
|
9416
9428
|
scale: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/scale")>;
|
|
9417
9429
|
search: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify")>;
|
|
9418
|
-
searchProfilerApp:
|
|
9419
|
-
section:
|
|
9420
|
-
securityAnalyticsApp:
|
|
9421
|
-
securityApp:
|
|
9430
|
+
searchProfilerApp: IconImportLoaderWithMetadata;
|
|
9431
|
+
section: IconImportLoaderWithMetadata;
|
|
9432
|
+
securityAnalyticsApp: IconImportLoaderWithMetadata;
|
|
9433
|
+
securityApp: IconImportLoaderWithMetadata;
|
|
9422
9434
|
securitySignal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/security_signal")>;
|
|
9423
9435
|
securitySignalDetected: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/security_signal_detected")>;
|
|
9424
9436
|
securitySignalResolved: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/security_signal_resolved")>;
|
|
9425
|
-
server:
|
|
9437
|
+
server: IconImportLoaderWithMetadata;
|
|
9426
9438
|
sessionViewer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/session_viewer")>;
|
|
9427
|
-
shard:
|
|
9428
|
-
share:
|
|
9429
|
-
significantEvents:
|
|
9439
|
+
shard: IconImportLoaderWithMetadata;
|
|
9440
|
+
share: IconImportLoaderWithMetadata;
|
|
9441
|
+
significantEvents: IconImportLoaderWithMetadata;
|
|
9430
9442
|
singleMetricViewer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/single_metric_viewer")>;
|
|
9431
|
-
snowflake:
|
|
9432
|
-
sortAscending:
|
|
9433
|
-
sortDescending:
|
|
9434
|
-
sortDown:
|
|
9435
|
-
sortLeft:
|
|
9436
|
-
sortRight:
|
|
9437
|
-
sortUp:
|
|
9438
|
-
sortable:
|
|
9443
|
+
snowflake: IconImportLoaderWithMetadata;
|
|
9444
|
+
sortAscending: IconImportLoaderWithMetadata;
|
|
9445
|
+
sortDescending: IconImportLoaderWithMetadata;
|
|
9446
|
+
sortDown: IconImportLoaderWithMetadata;
|
|
9447
|
+
sortLeft: IconImportLoaderWithMetadata;
|
|
9448
|
+
sortRight: IconImportLoaderWithMetadata;
|
|
9449
|
+
sortUp: IconImportLoaderWithMetadata;
|
|
9450
|
+
sortable: IconImportLoaderWithMetadata;
|
|
9439
9451
|
spaces: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/spaces")>;
|
|
9440
|
-
spacesApp:
|
|
9441
|
-
sparkles:
|
|
9442
|
-
sqlApp:
|
|
9443
|
-
star:
|
|
9452
|
+
spacesApp: IconImportLoaderWithMetadata;
|
|
9453
|
+
sparkles: IconImportLoaderWithMetadata;
|
|
9454
|
+
sqlApp: IconImportLoaderWithMetadata;
|
|
9455
|
+
star: IconImportLoaderWithMetadata;
|
|
9444
9456
|
starEmpty: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star")>;
|
|
9445
9457
|
starEmptySpace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_empty_space")>;
|
|
9446
|
-
starFill:
|
|
9458
|
+
starFill: IconImportLoaderWithMetadata;
|
|
9447
9459
|
starFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_fill")>;
|
|
9448
9460
|
starFillSpace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_fill_space")>;
|
|
9449
9461
|
starFilledSpace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_fill_space")>;
|
|
@@ -9454,56 +9466,56 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
9454
9466
|
starPlusFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_plus_fill")>;
|
|
9455
9467
|
starPlusFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_plus_fill")>;
|
|
9456
9468
|
stats: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stats")>;
|
|
9457
|
-
stop:
|
|
9469
|
+
stop: IconImportLoaderWithMetadata;
|
|
9458
9470
|
stopFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stop_fill")>;
|
|
9459
9471
|
stopFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stop_fill")>;
|
|
9460
9472
|
stopSlash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stop_slash")>;
|
|
9461
|
-
storage:
|
|
9473
|
+
storage: IconImportLoaderWithMetadata;
|
|
9462
9474
|
streamsClassic: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_streams_classic")>;
|
|
9463
9475
|
streamsWired: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_streams_wired")>;
|
|
9464
9476
|
string: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/string")>;
|
|
9465
9477
|
submodule: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/merge")>;
|
|
9466
|
-
sun:
|
|
9478
|
+
sun: IconImportLoaderWithMetadata;
|
|
9467
9479
|
swatchInput: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/swatch_input")>;
|
|
9468
|
-
symlink:
|
|
9480
|
+
symlink: IconImportLoaderWithMetadata;
|
|
9469
9481
|
tableDensityCompact: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_density_high")>;
|
|
9470
|
-
tableDensityHigh:
|
|
9482
|
+
tableDensityHigh: IconImportLoaderWithMetadata;
|
|
9471
9483
|
tableDensityExpanded: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_density_low")>;
|
|
9472
|
-
tableDensityLow:
|
|
9484
|
+
tableDensityLow: IconImportLoaderWithMetadata;
|
|
9473
9485
|
tableDensityNormal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table")>;
|
|
9474
9486
|
tableOfContents: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_of_contents")>;
|
|
9475
|
-
tag:
|
|
9487
|
+
tag: IconImportLoaderWithMetadata;
|
|
9476
9488
|
tear: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/tear")>;
|
|
9477
9489
|
temperature: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/thermometer")>;
|
|
9478
|
-
thermometer:
|
|
9479
|
-
thumbDown:
|
|
9480
|
-
thumbUp:
|
|
9481
|
-
timeline:
|
|
9482
|
-
timelineWithArrow:
|
|
9483
|
-
timelionApp:
|
|
9490
|
+
thermometer: IconImportLoaderWithMetadata;
|
|
9491
|
+
thumbDown: IconImportLoaderWithMetadata;
|
|
9492
|
+
thumbUp: IconImportLoaderWithMetadata;
|
|
9493
|
+
timeline: IconImportLoaderWithMetadata;
|
|
9494
|
+
timelineWithArrow: IconImportLoaderWithMetadata;
|
|
9495
|
+
timelionApp: IconImportLoaderWithMetadata;
|
|
9484
9496
|
timeRefresh: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/refresh_time")>;
|
|
9485
|
-
refreshTime:
|
|
9497
|
+
refreshTime: IconImportLoaderWithMetadata;
|
|
9486
9498
|
timeslider: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/clock_control")>;
|
|
9487
9499
|
training: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/presentation")>;
|
|
9488
|
-
transitionBottomIn:
|
|
9489
|
-
transitionBottomOut:
|
|
9490
|
-
transitionLeftIn:
|
|
9491
|
-
transitionLeftOut:
|
|
9492
|
-
transitionTopIn:
|
|
9493
|
-
transitionTopOut:
|
|
9494
|
-
trash:
|
|
9500
|
+
transitionBottomIn: IconImportLoaderWithMetadata;
|
|
9501
|
+
transitionBottomOut: IconImportLoaderWithMetadata;
|
|
9502
|
+
transitionLeftIn: IconImportLoaderWithMetadata;
|
|
9503
|
+
transitionLeftOut: IconImportLoaderWithMetadata;
|
|
9504
|
+
transitionTopIn: IconImportLoaderWithMetadata;
|
|
9505
|
+
transitionTopOut: IconImportLoaderWithMetadata;
|
|
9506
|
+
trash: IconImportLoaderWithMetadata;
|
|
9495
9507
|
unfold: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/unfold")>;
|
|
9496
9508
|
unlink: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/link_slash")>;
|
|
9497
|
-
upgradeAssistantApp:
|
|
9498
|
-
uptimeApp:
|
|
9499
|
-
user:
|
|
9509
|
+
upgradeAssistantApp: IconImportLoaderWithMetadata;
|
|
9510
|
+
uptimeApp: IconImportLoaderWithMetadata;
|
|
9511
|
+
user: IconImportLoaderWithMetadata;
|
|
9500
9512
|
userAvatar: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/user")>;
|
|
9501
|
-
users:
|
|
9502
|
-
usersRolesApp:
|
|
9503
|
-
unarchive:
|
|
9513
|
+
users: IconImportLoaderWithMetadata;
|
|
9514
|
+
usersRolesApp: IconImportLoaderWithMetadata;
|
|
9515
|
+
unarchive: IconImportLoaderWithMetadata;
|
|
9504
9516
|
vector: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vector_square")>;
|
|
9505
|
-
vectorSquare:
|
|
9506
|
-
videoPlayer:
|
|
9517
|
+
vectorSquare: IconImportLoaderWithMetadata;
|
|
9518
|
+
videoPlayer: IconImportLoaderWithMetadata;
|
|
9507
9519
|
visArea: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_area")>;
|
|
9508
9520
|
visAreaStacked: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_area_stack")>;
|
|
9509
9521
|
visBarHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_bar_horizontal")>;
|
|
@@ -9516,7 +9528,7 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
9516
9528
|
visMapCoordinate: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/waypoint")>;
|
|
9517
9529
|
visMapRegion: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/map")>;
|
|
9518
9530
|
visMetric: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_metric")>;
|
|
9519
|
-
chartMetric:
|
|
9531
|
+
chartMetric: IconImportLoaderWithMetadata;
|
|
9520
9532
|
visPie: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_pie")>;
|
|
9521
9533
|
visTable: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table")>;
|
|
9522
9534
|
visTagCloud: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_tag_cloud")>;
|
|
@@ -9524,77 +9536,91 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
|
|
|
9524
9536
|
visTimelion: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vis_timelion")>;
|
|
9525
9537
|
visVega: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/code")>;
|
|
9526
9538
|
visVisualBuilder: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vis_visual_builder")>;
|
|
9527
|
-
visualizeApp:
|
|
9528
|
-
vulnerabilityManagementApp:
|
|
9529
|
-
warning:
|
|
9539
|
+
visualizeApp: IconImportLoaderWithMetadata;
|
|
9540
|
+
vulnerabilityManagementApp: IconImportLoaderWithMetadata;
|
|
9541
|
+
warning: IconImportLoaderWithMetadata;
|
|
9530
9542
|
warningFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/warning_fill")>;
|
|
9531
|
-
warningFill:
|
|
9532
|
-
watchesApp:
|
|
9543
|
+
warningFill: IconImportLoaderWithMetadata;
|
|
9544
|
+
watchesApp: IconImportLoaderWithMetadata;
|
|
9533
9545
|
web: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/web")>;
|
|
9534
9546
|
wordWrap: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/word_wrap")>;
|
|
9535
9547
|
wordWrapDisabled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/word_wrap_disabled")>;
|
|
9536
|
-
workflowsApp:
|
|
9537
|
-
workflow:
|
|
9538
|
-
workplaceSearchApp:
|
|
9539
|
-
wrench:
|
|
9540
|
-
tokenAlias:
|
|
9541
|
-
tokenAnnotation:
|
|
9542
|
-
tokenArray:
|
|
9543
|
-
tokenBinary:
|
|
9544
|
-
tokenBoolean:
|
|
9545
|
-
tokenClass:
|
|
9546
|
-
tokenCompletionSuggester:
|
|
9547
|
-
tokenConstant:
|
|
9548
|
-
tokenDate:
|
|
9549
|
-
tokenDimension:
|
|
9550
|
-
tokenElement:
|
|
9551
|
-
tokenEnum:
|
|
9552
|
-
tokenEnumMember:
|
|
9553
|
-
tokenEvent:
|
|
9554
|
-
tokenException:
|
|
9555
|
-
tokenField:
|
|
9556
|
-
tokenFile:
|
|
9557
|
-
tokenFlattened:
|
|
9558
|
-
tokenFunction:
|
|
9559
|
-
tokenGeo:
|
|
9560
|
-
tokenHistogram:
|
|
9561
|
-
tokenInterface:
|
|
9562
|
-
tokenIP:
|
|
9563
|
-
tokenJoin:
|
|
9564
|
-
tokenKey:
|
|
9565
|
-
tokenKeyword:
|
|
9566
|
-
tokenMethod:
|
|
9567
|
-
tokenMetricCounter:
|
|
9568
|
-
tokenMetricGauge:
|
|
9569
|
-
tokenModule:
|
|
9570
|
-
tokenNamespace:
|
|
9571
|
-
tokenNested:
|
|
9572
|
-
tokenNull:
|
|
9573
|
-
tokenNumber:
|
|
9574
|
-
tokenObject:
|
|
9575
|
-
tokenOperator:
|
|
9576
|
-
tokenPackage:
|
|
9577
|
-
tokenParameter:
|
|
9578
|
-
tokenPercolator:
|
|
9579
|
-
tokenProperty:
|
|
9580
|
-
tokenRange:
|
|
9581
|
-
tokenRankFeature:
|
|
9582
|
-
tokenRankFeatures:
|
|
9583
|
-
tokenRepo:
|
|
9584
|
-
tokenSearchType:
|
|
9585
|
-
tokenSemanticText:
|
|
9586
|
-
tokenShape:
|
|
9587
|
-
tokenString:
|
|
9588
|
-
tokenStruct:
|
|
9589
|
-
tokenSymbol:
|
|
9590
|
-
tokenTag:
|
|
9591
|
-
tokenText:
|
|
9592
|
-
tokenTokenCount:
|
|
9593
|
-
tokenVariable:
|
|
9594
|
-
tokenVectorDense:
|
|
9595
|
-
tokenDenseVector:
|
|
9596
|
-
tokenVectorSparse:
|
|
9597
|
-
};
|
|
9548
|
+
workflowsApp: IconImportLoaderWithMetadata;
|
|
9549
|
+
workflow: IconImportLoaderWithMetadata;
|
|
9550
|
+
workplaceSearchApp: IconImportLoaderWithMetadata;
|
|
9551
|
+
wrench: IconImportLoaderWithMetadata;
|
|
9552
|
+
tokenAlias: IconImportLoaderWithMetadata;
|
|
9553
|
+
tokenAnnotation: IconImportLoaderWithMetadata;
|
|
9554
|
+
tokenArray: IconImportLoaderWithMetadata;
|
|
9555
|
+
tokenBinary: IconImportLoaderWithMetadata;
|
|
9556
|
+
tokenBoolean: IconImportLoaderWithMetadata;
|
|
9557
|
+
tokenClass: IconImportLoaderWithMetadata;
|
|
9558
|
+
tokenCompletionSuggester: IconImportLoaderWithMetadata;
|
|
9559
|
+
tokenConstant: IconImportLoaderWithMetadata;
|
|
9560
|
+
tokenDate: IconImportLoaderWithMetadata;
|
|
9561
|
+
tokenDimension: IconImportLoaderWithMetadata;
|
|
9562
|
+
tokenElement: IconImportLoaderWithMetadata;
|
|
9563
|
+
tokenEnum: IconImportLoaderWithMetadata;
|
|
9564
|
+
tokenEnumMember: IconImportLoaderWithMetadata;
|
|
9565
|
+
tokenEvent: IconImportLoaderWithMetadata;
|
|
9566
|
+
tokenException: IconImportLoaderWithMetadata;
|
|
9567
|
+
tokenField: IconImportLoaderWithMetadata;
|
|
9568
|
+
tokenFile: IconImportLoaderWithMetadata;
|
|
9569
|
+
tokenFlattened: IconImportLoaderWithMetadata;
|
|
9570
|
+
tokenFunction: IconImportLoaderWithMetadata;
|
|
9571
|
+
tokenGeo: IconImportLoaderWithMetadata;
|
|
9572
|
+
tokenHistogram: IconImportLoaderWithMetadata;
|
|
9573
|
+
tokenInterface: IconImportLoaderWithMetadata;
|
|
9574
|
+
tokenIP: IconImportLoaderWithMetadata;
|
|
9575
|
+
tokenJoin: IconImportLoaderWithMetadata;
|
|
9576
|
+
tokenKey: IconImportLoaderWithMetadata;
|
|
9577
|
+
tokenKeyword: IconImportLoaderWithMetadata;
|
|
9578
|
+
tokenMethod: IconImportLoaderWithMetadata;
|
|
9579
|
+
tokenMetricCounter: IconImportLoaderWithMetadata;
|
|
9580
|
+
tokenMetricGauge: IconImportLoaderWithMetadata;
|
|
9581
|
+
tokenModule: IconImportLoaderWithMetadata;
|
|
9582
|
+
tokenNamespace: IconImportLoaderWithMetadata;
|
|
9583
|
+
tokenNested: IconImportLoaderWithMetadata;
|
|
9584
|
+
tokenNull: IconImportLoaderWithMetadata;
|
|
9585
|
+
tokenNumber: IconImportLoaderWithMetadata;
|
|
9586
|
+
tokenObject: IconImportLoaderWithMetadata;
|
|
9587
|
+
tokenOperator: IconImportLoaderWithMetadata;
|
|
9588
|
+
tokenPackage: IconImportLoaderWithMetadata;
|
|
9589
|
+
tokenParameter: IconImportLoaderWithMetadata;
|
|
9590
|
+
tokenPercolator: IconImportLoaderWithMetadata;
|
|
9591
|
+
tokenProperty: IconImportLoaderWithMetadata;
|
|
9592
|
+
tokenRange: IconImportLoaderWithMetadata;
|
|
9593
|
+
tokenRankFeature: IconImportLoaderWithMetadata;
|
|
9594
|
+
tokenRankFeatures: IconImportLoaderWithMetadata;
|
|
9595
|
+
tokenRepo: IconImportLoaderWithMetadata;
|
|
9596
|
+
tokenSearchType: IconImportLoaderWithMetadata;
|
|
9597
|
+
tokenSemanticText: IconImportLoaderWithMetadata;
|
|
9598
|
+
tokenShape: IconImportLoaderWithMetadata;
|
|
9599
|
+
tokenString: IconImportLoaderWithMetadata;
|
|
9600
|
+
tokenStruct: IconImportLoaderWithMetadata;
|
|
9601
|
+
tokenSymbol: IconImportLoaderWithMetadata;
|
|
9602
|
+
tokenTag: IconImportLoaderWithMetadata;
|
|
9603
|
+
tokenText: IconImportLoaderWithMetadata;
|
|
9604
|
+
tokenTokenCount: IconImportLoaderWithMetadata;
|
|
9605
|
+
tokenVariable: IconImportLoaderWithMetadata;
|
|
9606
|
+
tokenVectorDense: IconImportLoaderWithMetadata;
|
|
9607
|
+
tokenDenseVector: IconImportLoaderWithMetadata;
|
|
9608
|
+
tokenVectorSparse: IconImportLoaderWithMetadata;
|
|
9609
|
+
};
|
|
9610
|
+
export const typeToPathMapDeprecatedIconTypes: readonly ["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"];
|
|
9611
|
+
export const typeToPathMapAppIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9612
|
+
export const typeToPathMapGlyphIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9613
|
+
export const typeToPathMapLogoIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9614
|
+
export const typeToPathMapMlIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9615
|
+
export const typeToPathMapTokenIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9616
|
+
export const typeToPathMapDocsAppIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9617
|
+
export const typeToPathMapDocsGlyphIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9618
|
+
export const typeToPathMapDocsLogoIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9619
|
+
export const typeToPathMapDocsMlIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9620
|
+
export const typeToPathMapDocsTokenIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9621
|
+
export type TypeToPathMapSynonyms = Partial<Record<keyof typeof typeToPathMap, string[]>>;
|
|
9622
|
+
export const typeToPathMapSynonyms: TypeToPathMapSynonyms;
|
|
9623
|
+
export {};
|
|
9598
9624
|
|
|
9599
9625
|
}
|
|
9600
9626
|
declare module '@elastic/eui/src/services/react' {
|
|
@@ -9647,7 +9673,7 @@ declare module '@elastic/eui/src/components/icon/icon' {
|
|
|
9647
9673
|
import { WithEuiStylesMemoizerProps } from '@elastic/eui/src/services';
|
|
9648
9674
|
export { COLORS } from '@elastic/eui/src/components/icon/named_colors';
|
|
9649
9675
|
import { NamedColor } from '@elastic/eui/src/components/icon/named_colors';
|
|
9650
|
-
export const TYPES: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "accessibility" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "archive" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "branch" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "check" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "popper" | "classificationJob" | "clickLeft" | "clickRight" | "clock" | "clockCounter" | "clockControl" | "cloud" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "cluster" | "codeApp" | "paintBucket" | "commandLine" | "comment" | "compare" | "compute" | "processor" | "console" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrast" | "contrastHigh" | "contrastFill" | "controls" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "cross" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "money" | "scissors" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "database" | "desktop" | "devToolsApp" | "diff" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "documentation" | "documents" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "redo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "undo" | "editorUnorderedList" | "listBullet" | "mail" | "emsApp" | "endpoint" | "eql" | "query" | "eraser" | "errorFilled" | "errorFill" | "esqlVis" | "exit" | "logOut" | "expand" | "maximize" | "expandMini" | "export" | "exportAction" | "upload" | "external" | "eye" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "flask" | "flag" | "fleetApp" | "fold" | "folder" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "globe" | "grabHorizontal" | "grabOmnidirectional" | "gradient" | "graphApp" | "grokApp" | "heart" | "heartbeatApp" | "heatmap" | "home" | "hourglass" | "if" | "info" | "importAction" | "index" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "infinity" | "inputOutput" | "inspect" | "ip" | "keyboard" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "launch" | "rocket" | "layers" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lock" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "queue" | "machineLearningApp" | "magnet" | "magnify" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "waypoint" | "megaphone" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "metricbeatApp" | "metricsApp" | "minimize" | "minus" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "moon" | "namespace" | "nested" | "newChat" | "node" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "wifi" | "outlierDetectionJob" | "package" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "palette" | "paperClip" | "partial" | "payment" | "pencil" | "percent" | "pin" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "pivot" | "playFilled" | "plugs" | "plus" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "send" | "question" | "quote" | "radar" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reporter" | "reportingApp" | "return" | "returnKey" | "save" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "server" | "sessionViewer" | "shard" | "share" | "significantEvents" | "singleMetricViewer" | "snowflake" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "sortable" | "spacesApp" | "sparkles" | "sqlApp" | "star" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "sun" | "swatchInput" | "symlink" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tag" | "tear" | "thermometer" | "thumbDown" | "thumbUp" | "timeline" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "trash" | "unfold" | "unlink" | "upgradeAssistantApp" | "uptimeApp" | "user" | "userAvatar" | "users" | "usersRolesApp" | "unarchive" | "vector" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "web" | "wordWrapDisabled" | "workflowsApp" | "workflow" | "workplaceSearchApp" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9676
|
+
export const TYPES: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
|
|
9651
9677
|
export type EuiIconType = keyof typeof typeToPathMap;
|
|
9652
9678
|
export type IconType = EuiIconType | string | ComponentType;
|
|
9653
9679
|
export type IconColor = string | NamedColor;
|