@visns-studio/visns-components 2.8.11 → 2.8.12

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.
@@ -936,9 +936,6 @@ const DataGrid = forwardRef(
936
936
  dataSource: selectedDataSource,
937
937
  };
938
938
  break;
939
- case 'number':
940
- filterEditor = NumberFilter;
941
- break;
942
939
  default:
943
940
  filterEditor = null;
944
941
  filterEditorProps = null;
@@ -294,6 +294,38 @@ function Field({
294
294
  autoComplete="off"
295
295
  />
296
296
  );
297
+ case 'html5_date':
298
+ return (
299
+ <input
300
+ type="date"
301
+ data-name={settings.id}
302
+ className={inputClass[settings.id]}
303
+ placeholder=" "
304
+ onChange={onChange}
305
+ value={
306
+ inputValue && inputValue !== 'null'
307
+ ? inputValue
308
+ : ''
309
+ }
310
+ autoComplete="off"
311
+ />
312
+ );
313
+ case 'html5_time':
314
+ return (
315
+ <input
316
+ type="time"
317
+ data-name={settings.id}
318
+ className={inputClass[settings.id]}
319
+ placeholder=" "
320
+ onChange={onChange}
321
+ value={
322
+ inputValue && inputValue !== 'null'
323
+ ? inputValue
324
+ : ''
325
+ }
326
+ autoComplete="off"
327
+ />
328
+ );
297
329
  case 'copytoclipboard':
298
330
  return (
299
331
  <>
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "react-color": "^2.19.3",
17
17
  "react-confirm-alert": "^3.0.6",
18
18
  "react-copy-to-clipboard": "^5.1.0",
19
- "react-datepicker": "^4.21.0",
19
+ "react-datepicker": "^4.23.0",
20
20
  "react-dropzone": "^14.2.3",
21
21
  "react-number-format": "^5.3.1",
22
22
  "react-password-strength-bar": "^0.4.1",
@@ -28,7 +28,7 @@
28
28
  "react-sortable-hoc": "^2.0.0",
29
29
  "react-toastify": "^9.1.3",
30
30
  "react-toggle": "^4.1.3",
31
- "react-tooltip": "^5.23.0",
31
+ "react-tooltip": "^5.24.0",
32
32
  "react-window": "^1.8.9",
33
33
  "reactjs-popup": "^2.0.6",
34
34
  "truncate": "^3.0.0",
@@ -44,7 +44,7 @@
44
44
  "react-dom": "^17.0.1"
45
45
  },
46
46
  "name": "@visns-studio/visns-components",
47
- "version": "2.8.11",
47
+ "version": "2.8.12",
48
48
  "description": "Various packages to assist in the development of our Custom Applications.",
49
49
  "main": "index.js",
50
50
  "scripts": {