componenteshospitais 4.6.8 → 4.6.9
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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { useState, useEffect, useRef } from 'react';
|
|
1
|
+
import React, { useState, useEffect, useRef, WheelEvent } from 'react';
|
|
2
2
|
import { FaRegEye } from 'react-icons/fa';
|
|
3
3
|
import { LiaFileExcel } from "react-icons/lia";
|
|
4
4
|
import { IoMenu } from "react-icons/io5";
|
|
@@ -328,7 +328,7 @@ const sampleData: Data[] = [
|
|
|
328
328
|
]},
|
|
329
329
|
},
|
|
330
330
|
{
|
|
331
|
-
id: {value: '
|
|
331
|
+
id: {value: '8', typeColumn: 'hidden', iconButton: '', colorButton: 'var(--red)', initialValue: ''},
|
|
332
332
|
nome: {value: 'Carlos Souza', typeColumn: '', iconButton: '', colorButton: 'var(--red)', initialValue: ''},
|
|
333
333
|
historico: {value: '40', typeColumn: 'icon', iconButton: 'fa fa-users', colorButton: 'var(--red)', initialValue: ''},
|
|
334
334
|
idade: {value: '40', typeColumn: '', iconButton: '', colorButton: 'var(--red)', initialValue: ''},
|
|
@@ -355,7 +355,7 @@ const sampleData: Data[] = [
|
|
|
355
355
|
]},
|
|
356
356
|
},
|
|
357
357
|
{
|
|
358
|
-
id: {value: '
|
|
358
|
+
id: {value: '9', typeColumn: 'hidden', iconButton: '', colorButton: 'var(--red)', initialValue: ''},
|
|
359
359
|
nome: {value: 'Carlos Souza', typeColumn: '', iconButton: '', colorButton: 'var(--red)', initialValue: ''},
|
|
360
360
|
historico: {value: '40', typeColumn: 'icon', iconButton: 'fa fa-users', colorButton: 'var(--red)', initialValue: ''},
|
|
361
361
|
idade: {value: '40', typeColumn: '', iconButton: '', colorButton: 'var(--red)', initialValue: ''},
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
border: 1px solid #ccc;
|
|
205
205
|
border-radius: 5px;
|
|
206
206
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
207
|
-
z-index:
|
|
207
|
+
z-index: 1000;
|
|
208
208
|
white-space: pre-wrap; /* Permite quebra de linha */
|
|
209
209
|
max-width: 500px; /* Limita a largura */
|
|
210
210
|
display: flex;
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
flex-direction: column;
|
|
237
237
|
background-color: #fff;
|
|
238
238
|
/* padding: 10px 10px; */
|
|
239
|
-
z-index:
|
|
239
|
+
z-index: 1000;
|
|
240
240
|
position: absolute;
|
|
241
241
|
min-width: 200px;
|
|
242
242
|
margin-right: 45px;
|
|
@@ -400,6 +400,7 @@
|
|
|
400
400
|
.empresa6 .cell{
|
|
401
401
|
border-radius: 0;
|
|
402
402
|
padding: 10px;
|
|
403
|
+
position: relative;
|
|
403
404
|
}
|
|
404
405
|
|
|
405
406
|
.empresa6 .cell span, .empresa6 .cell button.actionButton{
|
|
@@ -411,6 +412,7 @@
|
|
|
411
412
|
.empresa6 .header{
|
|
412
413
|
border-radius: 0;
|
|
413
414
|
padding: 10px;
|
|
415
|
+
z-index: 1001;
|
|
414
416
|
}
|
|
415
417
|
|
|
416
418
|
.empresa6 .icon, .empresa6 .iconEye{
|