@visns-studio/visns-components 2.8.11 → 2.8.13
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
|
@@ -294,6 +294,38 @@ function Field({
|
|
|
294
294
|
autoComplete="off"
|
|
295
295
|
/>
|
|
296
296
|
);
|
|
297
|
+
case 'html5_date':
|
|
298
|
+
return (
|
|
299
|
+
<input
|
|
300
|
+
type="date"
|
|
301
|
+
data-name={settings.id}
|
|
302
|
+
className={inputClass[settings.id]}
|
|
303
|
+
placeholder=" "
|
|
304
|
+
onChange={onChange}
|
|
305
|
+
value={
|
|
306
|
+
inputValue && inputValue !== 'null'
|
|
307
|
+
? inputValue
|
|
308
|
+
: ''
|
|
309
|
+
}
|
|
310
|
+
autoComplete="off"
|
|
311
|
+
/>
|
|
312
|
+
);
|
|
313
|
+
case 'html5_time':
|
|
314
|
+
return (
|
|
315
|
+
<input
|
|
316
|
+
type="time"
|
|
317
|
+
data-name={settings.id}
|
|
318
|
+
className={inputClass[settings.id]}
|
|
319
|
+
placeholder=" "
|
|
320
|
+
onChange={onChange}
|
|
321
|
+
value={
|
|
322
|
+
inputValue && inputValue !== 'null'
|
|
323
|
+
? inputValue
|
|
324
|
+
: ''
|
|
325
|
+
}
|
|
326
|
+
autoComplete="off"
|
|
327
|
+
/>
|
|
328
|
+
);
|
|
297
329
|
case 'copytoclipboard':
|
|
298
330
|
return (
|
|
299
331
|
<>
|
|
@@ -25,6 +25,8 @@ import {
|
|
|
25
25
|
PeopleGroup,
|
|
26
26
|
PeopleMultiple,
|
|
27
27
|
Person,
|
|
28
|
+
Question,
|
|
29
|
+
QuestionFill,
|
|
28
30
|
SettingsVertical,
|
|
29
31
|
ShippingBoxV1,
|
|
30
32
|
SignOut,
|
|
@@ -134,6 +136,8 @@ function Navigation({
|
|
|
134
136
|
paper: Paper,
|
|
135
137
|
peopleGroup: PeopleGroup,
|
|
136
138
|
peopleMultiple: PeopleMultiple,
|
|
139
|
+
question: Question,
|
|
140
|
+
questionFill: QuestionFill,
|
|
137
141
|
settingsVertical: SettingsVertical,
|
|
138
142
|
signOut: SignOut,
|
|
139
143
|
shippingboxv1: ShippingBoxV1,
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"react-color": "^2.19.3",
|
|
17
17
|
"react-confirm-alert": "^3.0.6",
|
|
18
18
|
"react-copy-to-clipboard": "^5.1.0",
|
|
19
|
-
"react-datepicker": "^4.
|
|
19
|
+
"react-datepicker": "^4.23.0",
|
|
20
20
|
"react-dropzone": "^14.2.3",
|
|
21
21
|
"react-number-format": "^5.3.1",
|
|
22
22
|
"react-password-strength-bar": "^0.4.1",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"react-sortable-hoc": "^2.0.0",
|
|
29
29
|
"react-toastify": "^9.1.3",
|
|
30
30
|
"react-toggle": "^4.1.3",
|
|
31
|
-
"react-tooltip": "^5.
|
|
31
|
+
"react-tooltip": "^5.24.0",
|
|
32
32
|
"react-window": "^1.8.9",
|
|
33
33
|
"reactjs-popup": "^2.0.6",
|
|
34
34
|
"truncate": "^3.0.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"react-dom": "^17.0.1"
|
|
45
45
|
},
|
|
46
46
|
"name": "@visns-studio/visns-components",
|
|
47
|
-
"version": "2.8.
|
|
47
|
+
"version": "2.8.13",
|
|
48
48
|
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
49
49
|
"main": "index.js",
|
|
50
50
|
"scripts": {
|