@visns-studio/visns-components 6.24.2 → 6.24.3
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/package.json
CHANGED
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
94
94
|
},
|
|
95
95
|
"name": "@visns-studio/visns-components",
|
|
96
|
-
"version": "6.24.
|
|
96
|
+
"version": "6.24.3",
|
|
97
97
|
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
98
98
|
"main": "src/index.js",
|
|
99
99
|
"files": [
|
|
@@ -772,6 +772,28 @@ body.tablet-mode .InovuaReactDataGrid__cell.cell-word-wrap > div {
|
|
|
772
772
|
border: 0 !important;
|
|
773
773
|
border-radius: 0 !important;
|
|
774
774
|
background: none !important;
|
|
775
|
+
/* The `filter input { padding: 0 0.5rem }` rule above reaches this inner
|
|
776
|
+
input too. On a text filter that padding is the text's inset; here the
|
|
777
|
+
input is the 1px typing sliver rendered BEFORE the placeholder span, so
|
|
778
|
+
8px a side inflated an invisible element to ~17px and shoved the
|
|
779
|
+
"ALL …" text that far off the field's left edge. The visible text gets
|
|
780
|
+
its inset below instead. */
|
|
781
|
+
padding: 0 !important;
|
|
782
|
+
height: auto !important;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
/* One inset for whichever span is doing the talking — the placeholder when
|
|
786
|
+
the filter is empty, the display value once something is picked. 6px here
|
|
787
|
+
plus the value area's own 2px lines the text up with the 8px inset of the
|
|
788
|
+
text and date filters beside it (the vendored theme gave the display value
|
|
789
|
+
8px and the placeholder nothing, so the two states didn't even line up with
|
|
790
|
+
each other). Logical properties so RTL mirrors for free. */
|
|
791
|
+
.InovuaReactDataGrid__column-header__filter.inovua-react-toolkit-combo-box
|
|
792
|
+
.inovua-react-toolkit-combo-box__value__display-value,
|
|
793
|
+
.InovuaReactDataGrid__column-header__filter.inovua-react-toolkit-combo-box
|
|
794
|
+
.inovua-react-toolkit-combo-box__input__placeholder {
|
|
795
|
+
padding-inline-start: 6px !important;
|
|
796
|
+
padding-inline-end: 0 !important;
|
|
775
797
|
}
|
|
776
798
|
|
|
777
799
|
/* The keyboard highlight in a dropdown's option list — declared by the
|