@visns-studio/visns-components 1.8.3 → 1.8.5

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.
@@ -1752,6 +1752,9 @@ const DataGrid = forwardRef(
1752
1752
  {renderSearch()}
1753
1753
  {renderCreateButton()}
1754
1754
  <ReactDataGrid
1755
+ rowClassName={() => {
1756
+ return "vs-datagrid--row";
1757
+ }}
1755
1758
  columns={gridColumns}
1756
1759
  dataSource={data}
1757
1760
  filterValue={filterValue}
@@ -377,6 +377,17 @@ function Field({
377
377
  onChange={onChange}
378
378
  />
379
379
  );
380
+ case "richeditor":
381
+ return (
382
+ <ReactQuill
383
+ theme="snow"
384
+ data-name={settings.id}
385
+ onChange={(value, event) => {
386
+ onChangeRicheditor(event, value, settings.id);
387
+ }}
388
+ value={inputValue || ""}
389
+ />
390
+ );
380
391
  default:
381
392
  return "";
382
393
  }
package/package.json CHANGED
@@ -34,7 +34,7 @@
34
34
  "react-dom": "^17.0.1"
35
35
  },
36
36
  "name": "@visns-studio/visns-components",
37
- "version": "1.8.3",
37
+ "version": "1.8.5",
38
38
  "description": "Various packages to assist in the development of our Custom Applications.",
39
39
  "main": "index.js",
40
40
  "scripts": {