@charlesgomes/leafcode-shared-lib-react 1.0.93 → 1.0.94
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/dist/index.css +5 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/styles/table.css +6 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -122,6 +122,10 @@ td {
|
|
|
122
122
|
.p-datatable .p-datatable-header {
|
|
123
123
|
background: transparent;
|
|
124
124
|
}
|
|
125
|
+
.p-datatable {
|
|
126
|
+
position: relative;
|
|
127
|
+
overflow: hidden !important;
|
|
128
|
+
}
|
|
125
129
|
.react-flow__node.draggable {
|
|
126
130
|
color: #fff !important;
|
|
127
131
|
}
|
|
@@ -268,6 +272,7 @@ th {
|
|
|
268
272
|
.p-column-filter:hover,
|
|
269
273
|
.p-column-filter:focus {
|
|
270
274
|
border-color: var(--p-column-filter-hover-focus, #6366f1);
|
|
275
|
+
border: none;
|
|
271
276
|
}
|
|
272
277
|
.p-column-filter-menu {
|
|
273
278
|
background-color: transparent;
|
package/dist/index.js
CHANGED
|
@@ -644,7 +644,7 @@ var InputBase2 = ({
|
|
|
644
644
|
value: displayValue.label !== null && displayValue.label !== void 0 ? displayValue : null,
|
|
645
645
|
onChange: (e) => {
|
|
646
646
|
onChange(e);
|
|
647
|
-
onSelect && onSelect();
|
|
647
|
+
onSelect && onSelect(e);
|
|
648
648
|
},
|
|
649
649
|
styles: {
|
|
650
650
|
control: (baseStyles) => ({
|
package/dist/index.mjs
CHANGED
|
@@ -586,7 +586,7 @@ var InputBase2 = ({
|
|
|
586
586
|
value: displayValue.label !== null && displayValue.label !== void 0 ? displayValue : null,
|
|
587
587
|
onChange: (e) => {
|
|
588
588
|
onChange(e);
|
|
589
|
-
onSelect && onSelect();
|
|
589
|
+
onSelect && onSelect(e);
|
|
590
590
|
},
|
|
591
591
|
styles: {
|
|
592
592
|
control: (baseStyles) => ({
|
package/dist/styles/table.css
CHANGED
|
@@ -142,6 +142,11 @@ td {
|
|
|
142
142
|
background: transparent;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
.p-datatable {
|
|
146
|
+
position: relative;
|
|
147
|
+
overflow: hidden !important;
|
|
148
|
+
}
|
|
149
|
+
|
|
145
150
|
.react-flow__node.draggable {
|
|
146
151
|
color: #fff !important;
|
|
147
152
|
}
|
|
@@ -327,6 +332,7 @@ th {
|
|
|
327
332
|
.p-column-filter:hover,
|
|
328
333
|
.p-column-filter:focus {
|
|
329
334
|
border-color: var(--p-column-filter-hover-focus, #6366f1);
|
|
335
|
+
border: none;
|
|
330
336
|
}
|
|
331
337
|
|
|
332
338
|
.p-column-filter-menu {
|