iamsivin
b39e25f9e2
chore: Fix empty state
2024-11-11 23:31:32 +05:30
iamsivin
bda9f0208a
chore: Fix build
2024-11-11 23:11:37 +05:30
iamsivin
74a90c0173
chore: Fix sidebar
2024-11-11 23:09:30 +05:30
iamsivin
9210d2cecd
chore: Minor fix
2024-11-11 22:49:16 +05:30
iamsivin
fd4b1f2d21
feat: Contact Empty state
2024-11-11 22:38:08 +05:30
iamsivin
ae804baf9b
chore: More changes
2024-11-11 21:51:32 +05:30
iamsivin
e2c1e6ff00
chore: Fix warning
2024-11-11 21:26:21 +05:30
iamsivin
2dbe5bd1c0
chore: Fix validations for custom attributes
2024-11-11 21:24:34 +05:30
iamsivin
0fe6d404b9
feat: Contact attributes
2024-11-11 21:07:12 +05:30
iamsivin
d6cc5422d0
feat: Add avatar upload and merge EditableAvatar.vue with Avatar.vue
2024-11-09 15:30:52 +05:30
iamsivin
271b322761
feat: Contact exporting
2024-11-09 14:06:33 +05:30
iamsivin
1b013544a8
chore: Fix sidebar filter issue and sort reactivity issue
2024-11-09 13:39:22 +05:30
iamsivin
d53c60363b
feat: Contact filtering by labels and segments
2024-11-08 15:44:10 +05:30
iamsivin
3d6d6e2afb
feat: Import contact
2024-11-08 10:30:14 +05:30
iamsivin
8320ecd92b
feat: Create contact
2024-11-08 02:22:22 +05:30
iamsivin
ecd8b265bc
feat: Contact sort
2024-11-08 01:27:51 +05:30
iamsivin
c5974f97cd
chore: Update the usage with camel case
2024-11-07 20:46:29 +05:30
iamsivin
314a33e053
chore: Use camel case
2024-11-07 10:32:38 +05:30
iamsivin
4b85a9045a
chore: Minor fix
2024-11-06 23:22:52 +05:30
iamsivin
d41857abc4
feat: Contact search
2024-11-06 23:20:00 +05:30
iamsivin
816c65df2d
chore: Sort labels
2024-11-06 23:04:53 +05:30
iamsivin
91ee5fc2f0
chore: Form validations
2024-11-06 21:35:05 +05:30
iamsivin
28cbdb6133
feat: Contact merge
2024-11-06 21:08:14 +05:30
iamsivin
703b36e38c
chore: Add or remove labels
2024-11-06 18:42:35 +05:30
iamsivin
51cf4df3e3
chore: Code clean up
2024-11-06 18:08:14 +05:30
Sivin Varghese and GitHub
caaf8d55c6
Merge branch 'develop' into feat/contacts-redesign
2024-11-06 17:52:52 +05:30
iamsivin
d5a1c7f49b
chore: Fix build
2024-11-06 17:51:42 +05:30
iamsivin
db6f08c12b
feat: Contact history
2024-11-06 17:51:03 +05:30
iamsivin
7021e96ad4
chore: More changes
2024-11-06 17:34:04 +05:30
iamsivin
c254c44994
chore: Minor fix
2024-11-06 00:06:02 +05:30
iamsivin
05b76f7182
chore: Fix build
2024-11-06 00:03:16 +05:30
iamsivin
ae1c6e3f98
chore: Replace thumbnail component with avatar
2024-11-05 23:56:11 +05:30
iamsivin
3c58d6af59
chore: Minor fix
2024-11-05 21:35:19 +05:30
iamsivin
fa8a7db612
feat: COntact sidebar
2024-11-05 21:34:05 +05:30
54740e3bb9
fix: Update the translation for the text used in isTyping method ( #10384 )
...
This fix consists of translating the message when another user is typing on the other side.
---
Co-authored-by: Pranav <pranavrajs@gmail.com >
Co-authored-by: Pranav <pranav@chatwoot.com >
2024-11-04 20:04:08 -08:00
iamsivin
759ce1229d
chore: Minor color fix
2024-11-04 23:37:13 +05:30
iamsivin
b92805933f
chore: fix build
2024-11-04 23:26:04 +05:30
iamsivin
b71a05f790
feat: Contact details screen
2024-11-04 19:46:02 +05:30
iamsivin
dd9e9286b3
feat: Contact card with expand view
2024-11-04 15:15:17 +05:30
iamsivin
f341d159c2
feat: Route view
2024-11-04 15:14:43 +05:30
iamsivin
a7bf762bcd
feat: Contacts layout
2024-11-04 15:14:01 +05:30
579efd933b
feat(v4): Update the campaigns page design ( #10371 )
...
<img width="1439" alt="Screenshot 2024-10-30 at 8 58 12 PM"
src="https://github.com/user-attachments/assets/26231270-5e73-40fb-9efa-c661585ebe7c ">
Fixes
https://linear.app/chatwoot/project/campaign-redesign-f82bede26ca7/overview
---------
Co-authored-by: Pranav <pranavrajs@gmail.com >
Co-authored-by: Shivam Mishra <scm.mymail@gmail.com >
2024-10-31 11:57:13 +05:30
6e6c5a2f02
refactor: use css only last item detection ( #10363 )
...
The last item in the sidebar top level group has an indicator specified,
the problem in our case is that the structure can be nested and have sub
groups. So selecting the last item correctly can be tricky.
Previous implementation relied on the using DOM queries to find the last
item from a flat list of children, it would trigger on a `watch`. This
was error-prone as well as non idiomatic. The new approach is CSS-only
and reduces the unnecessary compute required.
Codepen for reference: https://codepen.io/scmmishra/pen/yLmKNLW
---------
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com >
2024-10-31 09:39:18 +05:30
Shivam Mishra and GitHub
2d35fa135b
feat: Update colors ( #10365 )
2024-10-29 22:20:37 -07:00
Sivin Varghese and GitHub
aa57431c48
fix: Dropdown menu issues ( #10364 )
2024-10-29 16:10:35 +05:30
Sivin Varghese and GitHub
0689f59a05
feat: Update button component ( #10362 )
2024-10-29 14:00:24 +05:30
Sivin Varghese and GitHub
f73798a1aa
feat(v4): Help center portal redesign improvements ( #10349 )
2024-10-28 21:04:43 -07:00
Shivam Mishra and GitHub
035a037313
fix: Use addEventListener instead of onmessage to listen to chatwoot-dashboard-app:fetch-info ( #10342 )
2024-10-28 20:43:47 -07:00
7ba6c1d87d
fix: Fix the issues with the new sidebar ( #10348 )
...
Co-authored-by: Pranav <pranavrajs@gmail.com >
2024-10-28 20:41:43 -07:00
6df2d76c1e
feat: new colors ( #10352 )
...
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com >
Co-authored-by: iamsivin <iamsivin@gmail.com >
2024-10-28 14:27:08 +05:30