@deephaven/components 0.33.0 → 0.33.1-beta.4
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/css/BaseStyleSheet.css +8 -1
- package/css/BaseStyleSheet.css.map +1 -1
- package/dist/modal/InfoModal.css +24 -0
- package/dist/modal/InfoModal.css.map +1 -0
- package/dist/modal/InfoModal.d.ts +13 -0
- package/dist/modal/InfoModal.d.ts.map +1 -0
- package/dist/modal/InfoModal.js +30 -0
- package/dist/modal/InfoModal.js.map +1 -0
- package/dist/modal/index.d.ts +1 -0
- package/dist/modal/index.d.ts.map +1 -1
- package/dist/modal/index.js +1 -0
- package/dist/modal/index.js.map +1 -1
- package/package.json +8 -8
- package/scss/BaseStyleSheet.scss +10 -1
package/css/BaseStyleSheet.css
CHANGED
|
@@ -11429,9 +11429,16 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
11429
11429
|
display: none;
|
|
11430
11430
|
}
|
|
11431
11431
|
|
|
11432
|
-
.monaco-editor .editor-widget.suggest-widget.message
|
|
11432
|
+
.monaco-editor .editor-widget.suggest-widget.message,
|
|
11433
|
+
.monaco-editor .parameter-hints-widget.message {
|
|
11433
11434
|
display: none;
|
|
11434
11435
|
}
|
|
11436
|
+
.monaco-editor .monaco-hover hr {
|
|
11437
|
+
margin-bottom: 4px !important;
|
|
11438
|
+
}
|
|
11439
|
+
.monaco-editor .parameter-hints-widget {
|
|
11440
|
+
z-index: 30 !important;
|
|
11441
|
+
}
|
|
11435
11442
|
.monaco-editor .find-widget.visible {
|
|
11436
11443
|
min-height: 34px;
|
|
11437
11444
|
}
|