@visns-studio/visns-components 5.11.1 → 5.11.2

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.
Files changed (48) hide show
  1. package/package.json +2 -2
  2. package/src/components/cms/DataGrid.jsx +8 -8
  3. package/src/components/cms/DropZone.jsx +1 -1
  4. package/src/components/cms/Form.jsx +1 -1
  5. package/src/components/cms/Gallery.jsx +1 -1
  6. package/src/components/cms/sorting/Item.jsx +1 -1
  7. package/src/components/crm/Autocomplete.jsx +3 -3
  8. package/src/components/crm/Breadcrumb.jsx +4 -4
  9. package/src/components/crm/BusinessCardOcr.jsx +681 -95
  10. package/src/components/crm/DataGrid.jsx +34 -32
  11. package/src/components/crm/Field.jsx +12 -12
  12. package/src/components/crm/Form.jsx +2 -2
  13. package/src/components/crm/Navigation.jsx +11 -11
  14. package/src/components/crm/Notification.jsx +2 -2
  15. package/src/components/crm/QuickAction.jsx +3 -3
  16. package/src/components/crm/SectionHeader.jsx +1 -1
  17. package/src/components/crm/SwitchAccount.jsx +4 -4
  18. package/src/components/crm/auth/ClientLogin.jsx +2 -2
  19. package/src/components/crm/auth/ClientOTPVerify.jsx +2 -2
  20. package/src/components/crm/auth/Login.jsx +3 -3
  21. package/src/components/crm/auth/Reset.jsx +2 -2
  22. package/src/components/crm/auth/TwoFactorAuth.jsx +2 -2
  23. package/src/components/crm/columns/ColumnRenderers.jsx +320 -259
  24. package/src/components/crm/controls/DataGridSearch.jsx +5 -5
  25. package/src/components/crm/generic/AlternativeActionModal.jsx +100 -0
  26. package/src/components/crm/generic/ContactSelectorModal.jsx +59 -16
  27. package/src/components/crm/generic/DateRangeSelectorModal.jsx +181 -0
  28. package/src/components/crm/generic/GenericClientPortal.jsx +1 -1
  29. package/src/components/crm/generic/GenericDashboard.jsx +4 -4
  30. package/src/components/crm/generic/GenericDetail.jsx +6 -6
  31. package/src/components/crm/generic/GenericDynamic.jsx +3 -3
  32. package/src/components/crm/generic/GenericEditableTable.jsx +4 -4
  33. package/src/components/crm/generic/GenericFormBuilder.jsx +6 -6
  34. package/src/components/crm/generic/GenericGrid.jsx +1622 -268
  35. package/src/components/crm/generic/GenericReport.jsx +966 -646
  36. package/src/components/crm/generic/GenericReportForm.jsx +1 -1
  37. package/src/components/crm/generic/NotificationList.jsx +1 -1
  38. package/src/components/crm/generic/ReasonCollectorModal.jsx +194 -0
  39. package/src/components/crm/generic/SortableQuoteItems.jsx +3 -3
  40. package/src/components/crm/generic/shared/formatters.js +107 -1
  41. package/src/components/crm/generic/styles/AlternativeActionModal.css +127 -0
  42. package/src/components/crm/generic/styles/DateRangeSelectorModal.css +115 -0
  43. package/src/components/crm/generic/styles/GenericIndex.module.scss +206 -0
  44. package/src/components/crm/generic/styles/GenericReport.module.scss +96 -0
  45. package/src/components/crm/generic/styles/ReasonCollectorModal.css +217 -0
  46. package/src/components/crm/modals/GalleryModal.jsx +2 -2
  47. package/src/components/crm/sorting/Item.jsx +3 -3
  48. package/src/components/crm/styles/BusinessCardOcr.module.scss +197 -4
package/package.json CHANGED
@@ -17,7 +17,6 @@
17
17
  "@visns-studio/visns-datagrid-enterprise": "^1.0.14",
18
18
  "@vitejs/plugin-react": "^4.5.2",
19
19
  "add": "^2.0.6",
20
- "akar-icons": "^1.9.31",
21
20
  "array-move": "^4.0.0",
22
21
  "awesome-debounce-promise": "^2.1.0",
23
22
  "browser-image-compression": "^2.0.2",
@@ -28,6 +27,7 @@
28
27
  "html-react-parser": "^5.2.5",
29
28
  "lodash": "^4.17.21",
30
29
  "lodash.debounce": "^4.0.8",
30
+ "lucide-react": "^0.516.0",
31
31
  "moment": "^2.30.1",
32
32
  "motion": "^12.18.1",
33
33
  "numeral": "^2.0.6",
@@ -87,7 +87,7 @@
87
87
  "react-dom": "^17.0.0 || ^18.0.0"
88
88
  },
89
89
  "name": "@visns-studio/visns-components",
90
- "version": "5.11.1",
90
+ "version": "5.11.2",
91
91
  "description": "Various packages to assist in the development of our Custom Applications.",
92
92
  "main": "src/index.js",
93
93
  "files": [
@@ -14,22 +14,22 @@ import Toggle from 'react-toggle';
14
14
  import fetchUtil from '../../utils/fetchUtil';
15
15
  import { confirmDialog } from '../utils/ConfirmDialog';
16
16
  import {
17
- Backspace,
17
+ Trash2 as Backspace,
18
18
  Check,
19
19
  Clock,
20
- CloudDownload,
20
+ Download as CloudDownload,
21
21
  Copy,
22
22
  Edit,
23
23
  Folder,
24
24
  Inbox,
25
25
  Network,
26
- Ribbon,
26
+ Award as Ribbon,
27
27
  Search,
28
- ShippingBoxV1,
29
- ToggleOff,
30
- ToggleOnFill,
31
- TriangleAlert,
32
- } from 'akar-icons';
28
+ Package as ShippingBoxV1,
29
+ ToggleLeft as ToggleOff,
30
+ ToggleRight as ToggleOnFill,
31
+ AlertTriangle as TriangleAlert,
32
+ } from 'lucide-react';
33
33
 
34
34
  import '@visns-studio/visns-datagrid-enterprise/index.css';
35
35
  import 'react-toggle/style.css';
@@ -1,7 +1,7 @@
1
1
  import React, { useEffect, useState, useCallback } from 'react';
2
2
  import { motion } from 'framer-motion';
3
3
  import { useDropzone } from 'react-dropzone';
4
- import { CircleX, File, TrashCan } from 'akar-icons';
4
+ import { X as CircleX, File, Trash2 as TrashCan } from 'lucide-react';
5
5
  import { toast } from 'react-toastify';
6
6
  import { arrayMoveImmutable } from 'array-move';
7
7
  import Popup from 'reactjs-popup';
@@ -6,7 +6,7 @@ import moment from 'moment';
6
6
  import Reveal from 'react-reveal/Reveal';
7
7
  import parse from 'html-react-parser';
8
8
  import { toast } from 'react-toastify';
9
- import { Copy, TrashBin } from 'akar-icons';
9
+ import { Copy, Trash2 as TrashBin } from 'lucide-react';
10
10
  import { confirmDialog } from '../utils/ConfirmDialog';
11
11
 
12
12
  function Form(props) {
@@ -4,7 +4,7 @@ import {
4
4
  SortableElement,
5
5
  sortableHandle,
6
6
  } from 'react-sortable-hoc';
7
- import { ChevronVertical, Pencil, TrashCan } from 'akar-icons';
7
+ import { GripVertical as ChevronVertical, Edit as Pencil, Trash2 as TrashCan } from 'lucide-react';
8
8
  import styles from './styles/Gallery.module.css';
9
9
 
10
10
  // Drag handle component
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { SortableElement, sortableHandle } from 'react-sortable-hoc';
3
- import { ChevronVertical, Pencil, TrashCan } from 'akar-icons';
3
+ import { GripVertical as ChevronVertical, Edit as Pencil, Trash2 as TrashCan } from 'lucide-react';
4
4
 
5
5
  import styles from './styles/Item.module.scss';
6
6
 
@@ -1,6 +1,6 @@
1
1
  import { useState, useEffect, useCallback, useMemo, memo, useRef } from 'react';
2
2
  import AwesomeDebouncePromise from 'awesome-debounce-promise';
3
- import { ToggleOffFill, ToggleOnFill, Search } from 'akar-icons';
3
+ import { ToggleLeft, ToggleRight, Search } from 'lucide-react';
4
4
  import styles from './styles/Autocomplete.module.scss';
5
5
  import fetchUtil from '../../utils/fetchUtil';
6
6
 
@@ -255,7 +255,7 @@ const VisnsAutocomplete = memo((props) => {
255
255
  />
256
256
 
257
257
  {overwrite ? (
258
- <ToggleOnFill
258
+ <ToggleRight
259
259
  data-tooltip-id="system-tooltip"
260
260
  data-tooltip-content="Enable Autocomplete"
261
261
  strokeWidth={2}
@@ -264,7 +264,7 @@ const VisnsAutocomplete = memo((props) => {
264
264
  className={styles.toggleActive}
265
265
  />
266
266
  ) : (
267
- <ToggleOffFill
267
+ <ToggleLeft
268
268
  data-tooltip-id="system-tooltip"
269
269
  data-tooltip-content="Disable Autocomplete"
270
270
  strokeWidth={2}
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { Link } from 'react-router-dom';
3
3
  import dayjs from 'dayjs';
4
4
  import parse from 'html-react-parser';
5
- import { CircleChevronRight } from 'akar-icons';
5
+ import { ChevronRight } from 'lucide-react';
6
6
 
7
7
  function Breadcrumb({ data, page }) {
8
8
  // Function to get nested data, handling array of keys
@@ -73,7 +73,7 @@ function Breadcrumb({ data, page }) {
73
73
  {page?.parentTitle && page?.parentUrl && (
74
74
  <>
75
75
  <Link to={page.parentUrl}>{parse(page.parentTitle)}</Link>
76
- <CircleChevronRight strokeWidth={2} size={18} />
76
+ <ChevronRight strokeWidth={2} size={18} />
77
77
  </>
78
78
  )}
79
79
 
@@ -87,7 +87,7 @@ function Breadcrumb({ data, page }) {
87
87
  >
88
88
  {parse(nestedData)}
89
89
  </Link>
90
- <CircleChevronRight strokeWidth={2} size={18} />
90
+ <ChevronRight strokeWidth={2} size={18} />
91
91
  </>
92
92
  ) : (
93
93
  page &&
@@ -102,7 +102,7 @@ function Breadcrumb({ data, page }) {
102
102
  >
103
103
  {parse(page.title)}
104
104
  </Link>
105
- <CircleChevronRight strokeWidth={2} size={18} />
105
+ <ChevronRight strokeWidth={2} size={18} />
106
106
  </>
107
107
  )
108
108
  )}