Skip to content

Commit c68e6ce

Browse files
authored
Merge pull request #163 from ln-dev7/release
add redirectOnCompletion
2 parents 443fdab + f14c9a2 commit c68e6ce

11 files changed

Lines changed: 22 additions & 114 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @ln-dev7/sharuco
22

3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- Thanks [@ln-dev7](https://github.com/ln-dev7)!
8+
9+
**Full Changelog**: https://github.com/ln-dev7/sharuco/compare/v0.2.0...v1.0.0
10+
311
## 0.2.0
412

513
### Minor Changes
@@ -32,7 +40,7 @@
3240

3341
### Patch Changes
3442

35-
- [Change of star icon by heart icon ,add trash icon on delete button, use react-query for fetxh contributors and many update.](https://github.com/ln-dev7/sharuco/pull/141)
43+
- [Change of star icon by heart icon ,add trash icon on delete button, use react-query for fetch contributors and many update.](https://github.com/ln-dev7/sharuco/pull/141)
3644

3745
- Update dependencies.
3846

components/search-bar/search-bar-code.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function SearchBarCode({ ...props }: DialogProps) {
3131
defaultChecked={false}
3232
variant="outline"
3333
className={cn(
34-
"text-muted-foreground relative h-9 w-full justify-start rounded-[0.5rem] text-sm sm:pr-12 lg:w-72"
34+
"relative h-9 w-full justify-start rounded-[0.5rem] text-sm text-muted-foreground sm:pr-12 lg:w-72"
3535
)}
3636
onClick={() => setOpen(true)}
3737
{...props}
@@ -40,12 +40,12 @@ export function SearchBarCode({ ...props }: DialogProps) {
4040
Search publics codes ...
4141
</span>
4242
<span className="inline-flex sm:hidden">Search...</span>
43-
<kbd className="bg-muted pointer-events-none absolute right-1.5 top-2 hidden h-5 select-none items-center gap-1 rounded border px-1.5 font-mono text-[10px] font-medium opacity-100 sm:flex">
43+
<kbd className="pointer-events-none absolute right-1.5 top-2 hidden h-5 select-none items-center gap-1 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium opacity-100 sm:flex">
4444
<span className="text-xs"></span>K
4545
</kbd>
4646
</Button>
4747
</DialogTrigger>
48-
<DialogContent className="max-h-[640px] overflow-hidden overflow-y-auto p-0 scrollbar-hide">
48+
<DialogContent className="scrollbar-hide max-h-[640px] overflow-hidden overflow-y-auto p-0">
4949
<AlgoliaSearchCode />
5050
</DialogContent>
5151
</Dialog>

components/search-bar/search-bar-link.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ export function SearchBarLink({ ...props }: DialogProps) {
3131
defaultChecked={false}
3232
variant="outline"
3333
className={cn(
34-
"text-muted-foreground relative h-9 w-full justify-start rounded-[0.5rem] text-sm sm:pr-12 lg:w-72"
34+
"relative h-9 w-full justify-start rounded-[0.5rem] text-sm text-muted-foreground sm:pr-12 lg:w-72"
3535
)}
3636
onClick={() => setOpen(true)}
3737
{...props}
3838
>
3939
<span className="hidden sm:inline-flex">Search links ...</span>
4040
<span className="inline-flex sm:hidden">Search links ...</span>
41-
<kbd className="bg-muted pointer-events-none absolute right-1.5 top-2 hidden h-5 select-none items-center gap-1 rounded border px-1.5 font-mono text-[10px] font-medium opacity-100 sm:flex">
41+
<kbd className="pointer-events-none absolute right-1.5 top-2 hidden h-5 select-none items-center gap-1 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium opacity-100 sm:flex">
4242
<span className="text-xs"></span>K
4343
</kbd>
4444
</Button>
4545
</DialogTrigger>
46-
<DialogContent className="max-h-[640px] overflow-hidden overflow-y-auto p-0 scrollbar-hide">
46+
<DialogContent className="scrollbar-hide max-h-[640px] overflow-hidden overflow-y-auto p-0">
4747
<AlgoliaSearchLink />
4848
</DialogContent>
4949
</Dialog>

components/ui/card.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Card = React.forwardRef<
99
<div
1010
ref={ref}
1111
className={cn(
12-
"bg-card text-card-foreground rounded-lg border shadow-sm",
12+
"rounded-lg border bg-card text-card-foreground shadow-sm",
1313
className
1414
)}
1515
{...props}
@@ -50,7 +50,7 @@ const CardDescription = React.forwardRef<
5050
>(({ className, ...props }, ref) => (
5151
<p
5252
ref={ref}
53-
className={cn("text-muted-foreground text-sm", className)}
53+
className={cn("text-sm text-muted-foreground", className)}
5454
{...props}
5555
/>
5656
))

components/ui/skeleton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function Skeleton({
66
}: React.HTMLAttributes<HTMLDivElement>) {
77
return (
88
<div
9-
className={cn("bg-muted animate-pulse rounded-md", className)}
9+
className={cn("animate-pulse rounded-md bg-muted", className)}
1010
{...props}
1111
/>
1212
)

constants 2/languages.js

Lines changed: 0 additions & 58 deletions
This file was deleted.

constants 2/nbr-codes.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

constants 2/super-admin.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

constants 2/supports.js

Lines changed: 0 additions & 41 deletions
This file was deleted.

pages/changelog.mdx

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)