componenteshospitais 4.4.7 → 4.4.8

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 CHANGED
@@ -263,7 +263,7 @@ var InputField = function (_a) {
263
263
  inputs.forEach(function (input) {
264
264
  input.addEventListener('wheel', function (e) {
265
265
  e.preventDefault(); // Impede a rolagem do mouse
266
- });
266
+ }, { passive: true });
267
267
  });
268
268
  }
269
269
  var empresaClass = empresa ? styles$7["empresa".concat(empresa)] : '';
package/dist/esm/index.js CHANGED
@@ -261,7 +261,7 @@ var InputField = function (_a) {
261
261
  inputs.forEach(function (input) {
262
262
  input.addEventListener('wheel', function (e) {
263
263
  e.preventDefault(); // Impede a rolagem do mouse
264
- });
264
+ }, { passive: true });
265
265
  });
266
266
  }
267
267
  var empresaClass = empresa ? styles$7["empresa".concat(empresa)] : '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "componenteshospitais",
3
- "version": "4.4.7",
3
+ "version": "4.4.8",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -128,7 +128,7 @@ const InputField: React.FC<InputFieldProps> = ({
128
128
  inputs.forEach(input => {
129
129
  input.addEventListener('wheel', function(e) {
130
130
  e.preventDefault(); // Impede a rolagem do mouse
131
- });
131
+ }, {passive: true});
132
132
  });
133
133
  }
134
134