@masterteam/client-components 0.0.68 → 0.0.69
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.
|
@@ -1352,12 +1352,16 @@ class ClientListCardsView {
|
|
|
1352
1352
|
return 'dateTime';
|
|
1353
1353
|
if (fromColumn === 'date')
|
|
1354
1354
|
return 'date';
|
|
1355
|
+
if (fromColumn === 'time')
|
|
1356
|
+
return 'time';
|
|
1355
1357
|
if (cellValue && typeof cellValue === 'object') {
|
|
1356
1358
|
const inner = cellValue.viewType;
|
|
1357
1359
|
if (inner === 'DateTime')
|
|
1358
1360
|
return 'dateTime';
|
|
1359
1361
|
if (inner === 'Date')
|
|
1360
1362
|
return 'date';
|
|
1363
|
+
if (inner === 'Time')
|
|
1364
|
+
return 'time';
|
|
1361
1365
|
}
|
|
1362
1366
|
return null;
|
|
1363
1367
|
}
|