@visns-studio/visns-components 3.6.1 → 3.6.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/components/crm/Field.jsx
CHANGED
|
@@ -975,7 +975,7 @@ function Field({
|
|
|
975
975
|
case 'richeditor':
|
|
976
976
|
return (
|
|
977
977
|
<Editor
|
|
978
|
-
apiKey=
|
|
978
|
+
apiKey={userProfile?.settings?.api?.tinymce}
|
|
979
979
|
onEditorChange={(value, e) => {
|
|
980
980
|
onChangeRicheditor(e, value, settings.id);
|
|
981
981
|
}}
|
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
Briefcase,
|
|
8
8
|
Bug,
|
|
9
9
|
Calendar,
|
|
10
|
+
CHatDots,
|
|
10
11
|
Clipboard,
|
|
11
12
|
DoubleSword,
|
|
12
13
|
Draft,
|
|
@@ -38,6 +39,7 @@ import {
|
|
|
38
39
|
TextAlignLeft,
|
|
39
40
|
Ticket,
|
|
40
41
|
Utensils,
|
|
42
|
+
ChatDots,
|
|
41
43
|
} from 'akar-icons';
|
|
42
44
|
|
|
43
45
|
import CustomFetch from './Fetch';
|
|
@@ -122,6 +124,7 @@ function Navigation({
|
|
|
122
124
|
bookOpen: BookOpen,
|
|
123
125
|
briefcase: Briefcase,
|
|
124
126
|
calendar: Calendar,
|
|
127
|
+
chatDots: ChatDots,
|
|
125
128
|
clipboard: Clipboard,
|
|
126
129
|
doubleSword: DoubleSword,
|
|
127
130
|
draft: Draft,
|
|
@@ -840,8 +840,8 @@ function GenericFormBuilder({ setting, urlParam, userProfile }) {
|
|
|
840
840
|
<label className="fi__label">
|
|
841
841
|
<Editor
|
|
842
842
|
apiKey={
|
|
843
|
-
userProfile
|
|
844
|
-
|
|
843
|
+
userProfile?.settings
|
|
844
|
+
?.api?.tinymce
|
|
845
845
|
}
|
|
846
846
|
onEditorChange={(
|
|
847
847
|
value,
|
package/package.json
CHANGED