@visns-studio/visns-components 5.10.2 → 5.10.3
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/README.md +42 -1
- package/package.json +1 -1
- package/src/components/crm/DataGrid.jsx +583 -2599
- package/src/components/crm/Field.jsx +0 -2
- package/src/components/crm/cells/CellWithTooltip.jsx +123 -0
- package/src/components/crm/columns/ColumnRenderers.jsx +1358 -0
- package/src/components/crm/controls/AudioPlayer.jsx +19 -0
- package/src/components/crm/controls/AutoRefreshControls.jsx +37 -0
- package/src/components/crm/controls/DataGridSearch.jsx +238 -0
- package/src/components/crm/modals/GalleryModal.jsx +405 -0
- package/src/components/crm/styles/DataGrid.module.scss +296 -0
- package/src/index.js +11 -0
package/src/index.js
CHANGED
|
@@ -22,6 +22,12 @@ import SelectList from './components/crm/SelectList';
|
|
|
22
22
|
import Select from './components/crm/Select';
|
|
23
23
|
import Table from './components/crm/DataGrid';
|
|
24
24
|
import TableFilter from './components/crm/TableFilter';
|
|
25
|
+
import CellWithTooltip from './components/crm/cells/CellWithTooltip';
|
|
26
|
+
import DataGridSearch from './components/crm/controls/DataGridSearch';
|
|
27
|
+
import AutoRefreshControls from './components/crm/controls/AutoRefreshControls';
|
|
28
|
+
import AudioPlayer from './components/crm/controls/AudioPlayer';
|
|
29
|
+
import GalleryModal from './components/crm/modals/GalleryModal';
|
|
30
|
+
export * from './components/crm/columns/ColumnRenderers.jsx';
|
|
25
31
|
|
|
26
32
|
/** Auth Specific Components */
|
|
27
33
|
import Login from './components/crm/auth/Login';
|
|
@@ -57,12 +63,15 @@ import NotificationList from './components/crm/generic/NotificationList';
|
|
|
57
63
|
|
|
58
64
|
export {
|
|
59
65
|
AsyncSelect,
|
|
66
|
+
AudioPlayer,
|
|
60
67
|
AuditLog,
|
|
61
68
|
AuditLogs,
|
|
62
69
|
Autocomplete,
|
|
70
|
+
AutoRefreshControls,
|
|
63
71
|
Breadcrumb,
|
|
64
72
|
BusinessCardOcr,
|
|
65
73
|
Call,
|
|
74
|
+
CellWithTooltip,
|
|
66
75
|
ClientLogin,
|
|
67
76
|
ClientOTPVerify,
|
|
68
77
|
ClientPortal,
|
|
@@ -73,10 +82,12 @@ export {
|
|
|
73
82
|
CmsSort,
|
|
74
83
|
CustomFetch,
|
|
75
84
|
DataGrid,
|
|
85
|
+
DataGridSearch,
|
|
76
86
|
Download,
|
|
77
87
|
DropZone,
|
|
78
88
|
Field,
|
|
79
89
|
Form,
|
|
90
|
+
GalleryModal,
|
|
80
91
|
GenericAuth,
|
|
81
92
|
GenericClientPortal,
|
|
82
93
|
GenericDashboard,
|