e5c2263e92
fix: imporoved document-dropzone ui for small vertical screens
2024-01-23 18:37:02 +05:30
6aed075c56
fix: add conditional rendering of OAuth providers ( #736 )
...
Now google OAuth provider is not rendered if client id is not provided
2024-01-23 17:08:48 +11:00
08011f9545
chore: added target blank for github link: ( #851 )
2024-01-23 11:27:10 +11:00
4909eee401
feat: add viewing on completed page for pending documents
2024-01-22 21:36:46 +11:00
1191e1d9c3
feat: linear-gh blogpost ( #827 )
2024-01-20 12:18:23 +11:00
9c1e1f50a8
fix: mask recipient tokens for non-owners
2024-01-20 01:14:34 +00:00
efb9e9f3ec
Merge branch 'main' into feature/linear-gh
2024-01-18 17:17:01 +01:00
a7672545d7
Update apps/marketing/content/blog/linear-gh.mdx
...
Co-authored-by: Adithya Krishna <aadithya794@gmail.com >
2024-01-18 17:16:49 +01:00
1a10cd2ae1
Update apps/marketing/content/blog/linear-gh.mdx
...
Co-authored-by: Adithya Krishna <aadithya794@gmail.com >
2024-01-18 17:16:28 +01:00
204388888d
fix: fix bug for completed document shortcut ( #839 )
...
When you're in the `/documents` page in the dashboard, if you hover over
a draft and a completed document, you'll see different URLs.
At the moment, the shortcut tries to go to the following URL for a
completed document `/documents/{doc-id}`.
However, that's the wrong URL, since the URL for a completed doc is
`/sign/{token}` when the user is the recipient, not the one that sent
the document for signing.
If it's the document owner & the document is completed, the URL is fine
as `/documents/{doc-id}`.
---------
Co-authored-by: Lucas Smith <me@lucasjamessmith.me >
2024-01-18 09:38:42 +02:00
0d977e783e
refactor: download function to be reusable ( #740 )
2024-01-18 15:24:36 +11:00
9ff44f10a6
chore: add incident blog post
2024-01-17 21:41:00 +11:00
16d97783f2
feat: improve the UX for password protected documents ( #780 )
2024-01-17 19:32:42 +11:00
91dd10ec9b
fix: add symmetric encryption to document passwords
2024-01-17 17:28:28 +11:00
a94b829ee0
fix: tidy code
2024-01-17 17:17:08 +11:00
1bc885478d
fix: display the number of documents in mobile view ( #837 )
...
This PR fixes #782 .
It now displays the document count on mobile view.
2024-01-17 11:10:28 +11:00
560352492d
fix: keyboard shortcut ctrl+k fixed ( #830 )
2024-01-16 13:07:42 +11:00
58b3a127ea
chore: fix color for light mode icon ( #806 )
2024-01-15 10:48:55 +11:00
7e71e06e04
fix: keyboard shortcut ctrl+k default behaviour fixed
2024-01-13 14:19:37 +05:30
68953d1253
feat add documentPassword to documenet meta and improve the ux
...
Signed-off-by: harkiratsm <multaniharry714@gmail.com >
2024-01-12 20:54:59 +05:30
1a73f3e007
chore: feedback and phrasing
2024-01-11 14:27:44 +01:00
ea0120abc8
chore: typo
2024-01-10 16:51:42 +01:00
b501ffdee9
chore: images
2024-01-10 16:37:53 +01:00
31050d6b7b
chore: spelling
2024-01-10 16:14:28 +01:00
ed1998278a
feat: draft github blogpost
2024-01-10 16:14:02 +01:00
b09071ebc7
feat: jump to next field ( #805 )
...
When the fields are not filled, the button will say "Next field". Clicking on the button takes you to
the unfilled field.
2024-01-10 15:27:18 +11:00
f9d26e6b3f
fix: stepsRemaining value of the early adopters plan's input section ( #803 )
2024-01-08 19:09:34 +11:00
3054d84ba7
chore: implemented feedback
2024-01-08 09:58:34 +02:00
4fd6a0d5b6
chore: update onOpenChange
2024-01-05 13:06:16 +02:00
fface15a22
feat: jump to next field
2024-01-05 12:56:07 +02:00
e646c4cf08
Merge branch 'main' into feat/1click-deploys
2024-01-03 12:49:59 +05:30
5d56b152d6
fix: fixed padding in footer ( #794 )
...
fixes : #793
2024-01-03 13:29:13 +11:00
5c16b10dc2
fix: update footer to be responsive
2024-01-03 13:16:27 +11:00
6a26ab4b2b
fix: toast import errors
2024-01-02 04:52:15 +00:00
b76d2cea3b
fix: changes from code review
2024-01-02 04:38:35 +00:00
341481d6db
fix: trimmed long file names for better UX ( #760 )
...
Fixes #755
### Notes for Reviewers
- The max length of the title is set to be `16`
- If the length of the title is <16 it returns the original one.
- Or else the title will be the first 8 characters (start) and last 8
characters (end)
- The truncated file name will look like `start...end`
### Screenshot for reference

---------
Co-authored-by: Catalin Pit <25515812+catalinpit@users.noreply.github.com >
2023-12-29 12:18:19 +02:00
8f5634268d
feat: add templates to command menu ( #786 )
2023-12-29 15:16:26 +11:00
5d6f69dc19
fixed padding issue in footer
2023-12-28 23:30:20 +05:30
5307fa6453
fixed padding issue in footer
2023-12-28 23:29:44 +05:30
fb0d9b8ef9
fixed padding in footer
2023-12-28 23:14:46 +05:30
3f89f8725b
fix: resolve conflicting z-index values ( #788 )
...
## Description
Currently there are various z-index values that are causing:
- Toasts to be placed behind dialog blur background
- Menu being cropped off by header
## Changes Made
- Revert `z-[1000]` back to `z-50` for the header (not exactly sure why
it was bumped)
- Refactor z-indexes over 9000 to start from 1000
- Ensure z-index of toast is higher than dialog
2023-12-28 20:08:19 +11:00
c4800f74b9
feat: update disabled dropzone text ( #787 )
...
Update the dropzone so it will display the relevant disabled text based
on the reason it is disabled.
2023-12-28 20:07:29 +11:00
d8eff192fe
fix: update date format and add missing default
2023-12-27 14:05:50 +11:00
32633f96d2
feat: dateformat and timezone customization ( #506 )
2023-12-27 14:05:49 +11:00
5a11de1db9
feat: disable upload document animation for unverified users ( #749 )
2023-12-27 13:54:46 +11:00
8f4fea2f14
chore: user metrics naming, adopters description ( #769 )
...
Rename Metrics
2023-12-26 13:25:45 +11:00
5a32b5cafd
fix: added constants for theme variables ( #777 )
...
fixes : #776
2023-12-26 10:49:27 +11:00
8d1b960aa8
feat: add templates to command menu
2023-12-25 23:16:56 +00:00
e9312ada51
feat: show document title for delete dialog - [DOC-387] ( #772 )
2023-12-22 15:09:03 +11:00
1c52c7ebcd
chore: update copy
2023-12-22 03:43:12 +00:00