mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
## Summary This PR fixes the paper cut where the URL template editor in URL drilldown is unusably small. It now can expand as you type longer URLs fix https://github.com/elastic/kibana/issues/132513 The input box now expands from 5 to 15 lines.
36 lines
675 B
Text
36 lines
675 B
Text
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
|
|
|
|
SRCS = glob(
|
|
[
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
],
|
|
exclude = [
|
|
"**/test_helpers.ts",
|
|
"**/*.config.js",
|
|
"**/*.mock.*",
|
|
"**/*.test.*",
|
|
"**/*.stories.*",
|
|
"**/__snapshots__/**",
|
|
"**/integration_tests/**",
|
|
"**/mocks/**",
|
|
"**/scripts/**",
|
|
"**/storybook/**",
|
|
"**/test_fixtures/**",
|
|
"**/test_helpers/**",
|
|
],
|
|
)
|
|
|
|
BUNDLER_DEPS = [
|
|
"@npm//react",
|
|
"@npm//tslib",
|
|
"@npm//react-monaco-editor",
|
|
]
|
|
|
|
js_library(
|
|
name = "code_editor",
|
|
package_name = "@kbn/code-editor",
|
|
srcs = SRCS + ["package.json"],
|
|
deps = BUNDLER_DEPS,
|
|
visibility = ["//visibility:public"],
|
|
)
|