componenteshospitais 3.5.3 → 3.5.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/dist/cjs/index.js +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
- package/src/components/ActionBar.tsx +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -16590,7 +16590,7 @@ var ActionBar = function (_a) {
|
|
|
16590
16590
|
{ icon: React.createElement(BsFileSpreadsheet, { className: styles.actionBoxIcon }), active: showExcel, function: excelFunction, title: 'Gerar Excel', id: 7, initial: false },
|
|
16591
16591
|
];
|
|
16592
16592
|
var dataButtonsRight = [
|
|
16593
|
-
{ icon: React.createElement(IoKeyOutline, { className: styles.actionBoxIcon }), active: showPermissions, function: permissionsFunction, title: 'Gerenciar Permissões', id: 8, initial:
|
|
16593
|
+
{ icon: React.createElement(IoKeyOutline, { className: styles.actionBoxIcon }), active: showPermissions, function: permissionsFunction, title: 'Gerenciar Permissões', id: 8, initial: false },
|
|
16594
16594
|
{ icon: React.createElement(TfiHelp, { className: styles.actionBoxIcon }), active: showHelp, function: helpFunction, title: 'Preciso de Ajuda', id: 9, initial: false }
|
|
16595
16595
|
];
|
|
16596
16596
|
var definiteFunction = function (item) {
|
package/dist/esm/index.js
CHANGED
|
@@ -16588,7 +16588,7 @@ var ActionBar = function (_a) {
|
|
|
16588
16588
|
{ icon: React.createElement(BsFileSpreadsheet, { className: styles.actionBoxIcon }), active: showExcel, function: excelFunction, title: 'Gerar Excel', id: 7, initial: false },
|
|
16589
16589
|
];
|
|
16590
16590
|
var dataButtonsRight = [
|
|
16591
|
-
{ icon: React.createElement(IoKeyOutline, { className: styles.actionBoxIcon }), active: showPermissions, function: permissionsFunction, title: 'Gerenciar Permissões', id: 8, initial:
|
|
16591
|
+
{ icon: React.createElement(IoKeyOutline, { className: styles.actionBoxIcon }), active: showPermissions, function: permissionsFunction, title: 'Gerenciar Permissões', id: 8, initial: false },
|
|
16592
16592
|
{ icon: React.createElement(TfiHelp, { className: styles.actionBoxIcon }), active: showHelp, function: helpFunction, title: 'Preciso de Ajuda', id: 9, initial: false }
|
|
16593
16593
|
];
|
|
16594
16594
|
var definiteFunction = function (item) {
|
package/package.json
CHANGED
|
@@ -83,7 +83,7 @@ const ActionBar: React.FC<ActionBarProps> = ({
|
|
|
83
83
|
]
|
|
84
84
|
|
|
85
85
|
const dataButtonsRight = [
|
|
86
|
-
{ icon : <IoKeyOutline className={styles.actionBoxIcon}/>, active : showPermissions, function : permissionsFunction, title: 'Gerenciar Permissões', id: 8, initial:
|
|
86
|
+
{ icon : <IoKeyOutline className={styles.actionBoxIcon}/>, active : showPermissions, function : permissionsFunction, title: 'Gerenciar Permissões', id: 8, initial: false},
|
|
87
87
|
{ icon : <TfiHelp className={styles.actionBoxIcon}/>, active : showHelp, function : helpFunction, title: 'Preciso de Ajuda', id: 9, initial: false}
|
|
88
88
|
];
|
|
89
89
|
|