@visns-studio/visns-components 3.4.4 → 3.4.6

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.
@@ -2210,6 +2210,7 @@ const DataGrid = forwardRef(
2210
2210
  rowHeight={null}
2211
2211
  selected={selected}
2212
2212
  showZebraRows={true}
2213
+ showActiveRowIndicator={false}
2213
2214
  sortInfo={
2214
2215
  ajaxSetting.sortBy && ajaxSetting.sort
2215
2216
  ? {
@@ -233,6 +233,7 @@ function Field({
233
233
  'copytoclipboard',
234
234
  'date',
235
235
  'datetime',
236
+ 'dynamicdata',
236
237
  'file',
237
238
  'gallery',
238
239
  'image',
@@ -451,6 +452,7 @@ function Field({
451
452
  : ''}
452
453
  </div>
453
454
  );
455
+ case 'dynamicdata':
454
456
  case 'plaintext':
455
457
  return (
456
458
  <div
@@ -459,8 +461,13 @@ function Field({
459
461
  settings.height
460
462
  ? {
461
463
  height: settings.height,
464
+ paddingTop: '10px',
465
+ marginLeft: '13px',
466
+ }
467
+ : {
468
+ paddingTop: '10px',
469
+ marginLeft: '13px',
462
470
  }
463
- : {}
464
471
  }
465
472
  >
466
473
  {inputValue && inputValue !== 'null' ? inputValue : ''}
@@ -945,6 +952,7 @@ function Field({
945
952
  'copytoclipboard',
946
953
  'date',
947
954
  'datetime',
955
+ 'dynamicdata',
948
956
  'file',
949
957
  'gallery',
950
958
  'image',
@@ -1143,6 +1143,7 @@ function Form({
1143
1143
  columns={tableData.columns}
1144
1144
  dataSource={tableData.dataSource}
1145
1145
  style={{ minHeight: 550 }}
1146
+ showActiveRowIndicator={false}
1146
1147
  />
1147
1148
  </div>
1148
1149
  )}
package/package.json CHANGED
@@ -49,7 +49,7 @@
49
49
  "react-dom": "^17.0.1"
50
50
  },
51
51
  "name": "@visns-studio/visns-components",
52
- "version": "3.4.4",
52
+ "version": "3.4.6",
53
53
  "description": "Various packages to assist in the development of our Custom Applications.",
54
54
  "main": "index.js",
55
55
  "scripts": {