abckit 0.0.10 → 0.0.12
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/dist/module.d.mts +16 -1
- package/dist/module.mjs +5 -5
- package/dist/runtime/components/app/AppBreadcrumbs.vue +1 -2
- package/dist/runtime/components/app/AppHeader.vue +2 -2
- package/dist/runtime/components/app/AppNavMain.d.vue.ts +1 -2
- package/dist/runtime/components/app/AppNavMain.vue +4 -4
- package/dist/runtime/components/app/AppNavMain.vue.d.ts +1 -2
- package/dist/runtime/components/ui/accordion/AccordionTrigger.vue +3 -2
- package/dist/runtime/components/ui/auto-form/AutoFormFieldArray.vue +3 -3
- package/dist/runtime/components/ui/auto-form/AutoFormFieldDate.vue +2 -2
- package/dist/runtime/components/ui/auto-form/AutoFormFieldFile.vue +2 -2
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbEllipsis.vue +2 -2
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbSeparator.vue +2 -2
- package/dist/runtime/components/ui/calendar/CalendarNextButton.vue +2 -2
- package/dist/runtime/components/ui/calendar/CalendarPrevButton.vue +2 -2
- package/dist/runtime/components/ui/carousel/CarouselNext.vue +2 -2
- package/dist/runtime/components/ui/carousel/CarouselPrevious.vue +2 -2
- package/dist/runtime/components/ui/checkbox/Checkbox.vue +2 -2
- package/dist/runtime/components/ui/combobox/ComboboxInput.vue +2 -2
- package/dist/runtime/components/ui/command/CommandInput.vue +2 -2
- package/dist/runtime/components/ui/context-menu/ContextMenuCheckboxItem.vue +2 -2
- package/dist/runtime/components/ui/context-menu/ContextMenuRadioItem.vue +2 -2
- package/dist/runtime/components/ui/context-menu/ContextMenuSubTrigger.vue +2 -2
- package/dist/runtime/components/ui/dialog/DialogContent.vue +2 -2
- package/dist/runtime/components/ui/dialog/DialogScrollContent.vue +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +2 -2
- package/dist/runtime/components/ui/file/FileEmptyState.vue +3 -3
- package/dist/runtime/components/ui/file/FileGrid.vue +10 -10
- package/dist/runtime/components/ui/file/FileTable.vue +16 -17
- package/dist/runtime/components/ui/input-otp/InputOTPSeparator.vue +2 -2
- package/dist/runtime/components/ui/menubar/MenubarCheckboxItem.vue +2 -2
- package/dist/runtime/components/ui/menubar/MenubarRadioItem.vue +2 -2
- package/dist/runtime/components/ui/menubar/MenubarSubTrigger.vue +2 -2
- package/dist/runtime/components/ui/native-select/NativeSelect.vue +3 -2
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuTrigger.vue +3 -2
- package/dist/runtime/components/ui/number-field/NumberFieldDecrement.vue +2 -2
- package/dist/runtime/components/ui/number-field/NumberFieldIncrement.vue +2 -2
- package/dist/runtime/components/ui/pagination/PaginationEllipsis.vue +2 -2
- package/dist/runtime/components/ui/pagination/PaginationFirst.vue +2 -2
- package/dist/runtime/components/ui/pagination/PaginationLast.vue +2 -2
- package/dist/runtime/components/ui/pagination/PaginationNext.vue +2 -2
- package/dist/runtime/components/ui/pagination/PaginationPrevious.vue +2 -2
- package/dist/runtime/components/ui/pin-input/PinInputSeparator.vue +2 -2
- package/dist/runtime/components/ui/radio-group/RadioGroupItem.vue +2 -2
- package/dist/runtime/components/ui/range-calendar/RangeCalendarNextButton.vue +2 -2
- package/dist/runtime/components/ui/range-calendar/RangeCalendarPrevButton.vue +2 -2
- package/dist/runtime/components/ui/resizable/ResizableHandle.vue +2 -2
- package/dist/runtime/components/ui/select/SelectItem.vue +2 -2
- package/dist/runtime/components/ui/select/SelectScrollDownButton.vue +2 -2
- package/dist/runtime/components/ui/select/SelectScrollUpButton.vue +2 -2
- package/dist/runtime/components/ui/select/SelectTrigger.vue +2 -2
- package/dist/runtime/components/ui/sheet/InnerSheetContent.vue +2 -2
- package/dist/runtime/components/ui/sheet/SheetContent.vue +2 -2
- package/dist/runtime/components/ui/sidebar/SidebarTrigger.vue +2 -2
- package/dist/runtime/components/ui/sonner/Sonner.vue +7 -7
- package/dist/runtime/components/ui/spinner/Spinner.vue +3 -2
- package/dist/runtime/components/ui/storage/StorageActionBar.vue +3 -4
- package/dist/runtime/components/ui/storage/StorageEmptyState.vue +3 -4
- package/dist/runtime/components/ui/storage/StorageGrid.vue +10 -11
- package/dist/runtime/components/ui/storage/StorageSelectionBar.vue +3 -3
- package/dist/runtime/components/ui/storage/StorageTable.vue +10 -11
- package/dist/runtime/components/ui/storage/StorageUploadZone.vue +5 -4
- package/dist/runtime/components/ui/tags-input/TagsInputItemDelete.vue +2 -2
- package/dist/runtime/composables/useAuth.d.ts +982 -1813
- package/dist/runtime/composables/useAuth.js +27 -9
- package/dist/runtime/shared/constants/r2.js +12 -6
- package/dist/runtime/types/nitro-graphql-client.d.ts +0 -1
- package/dist/types.d.mts +1 -1
- package/package.json +13 -14
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import { Cloud, Download, Eye, FileText, Film, Folder, Image, MoreVertical, RotateCcw, Trash2 } from "lucide-vue-next";
|
|
3
2
|
import { bytesToSize } from "abckit/shared/constants/r2";
|
|
4
3
|
import { Badge } from "abckit/shadcn/badge";
|
|
5
4
|
import { Button } from "abckit/shadcn/button";
|
|
@@ -28,13 +27,13 @@ const props = defineProps({
|
|
|
28
27
|
onPermanentDelete: { type: Function, required: false }
|
|
29
28
|
});
|
|
30
29
|
const FILE_TYPE_ICONS = {
|
|
31
|
-
IMAGE:
|
|
32
|
-
VIDEO:
|
|
33
|
-
AUDIO:
|
|
34
|
-
DOCUMENT:
|
|
35
|
-
ARCHIVE:
|
|
36
|
-
OTHER:
|
|
37
|
-
FOLDER:
|
|
30
|
+
IMAGE: "lucide:image",
|
|
31
|
+
VIDEO: "lucide:film",
|
|
32
|
+
AUDIO: "lucide:file-text",
|
|
33
|
+
DOCUMENT: "lucide:file-text",
|
|
34
|
+
ARCHIVE: "lucide:cloud",
|
|
35
|
+
OTHER: "lucide:cloud",
|
|
36
|
+
FOLDER: "lucide:folder"
|
|
38
37
|
};
|
|
39
38
|
const FILE_TYPE_LABELS = {
|
|
40
39
|
IMAGE: "Image",
|
|
@@ -125,9 +124,9 @@ const someSelected = computed(
|
|
|
125
124
|
class="h-full w-full"
|
|
126
125
|
fallback=""
|
|
127
126
|
/>
|
|
128
|
-
<
|
|
129
|
-
:is="getFileIcon(file)"
|
|
127
|
+
<Icon
|
|
130
128
|
v-else
|
|
129
|
+
:name="getFileIcon(file)"
|
|
131
130
|
class="h-5 w-5 text-muted-foreground"
|
|
132
131
|
/>
|
|
133
132
|
</div>
|
|
@@ -157,7 +156,7 @@ const someSelected = computed(
|
|
|
157
156
|
class="h-8 w-8"
|
|
158
157
|
@click.stop
|
|
159
158
|
>
|
|
160
|
-
<
|
|
159
|
+
<Icon name="lucide:more-vertical" class="h-4 w-4" />
|
|
161
160
|
</Button>
|
|
162
161
|
</DropdownMenuTrigger>
|
|
163
162
|
<DropdownMenuContent align="end">
|
|
@@ -181,17 +180,17 @@ const someSelected = computed(
|
|
|
181
180
|
class="text-destructive focus:text-destructive"
|
|
182
181
|
@click.stop="onDelete(file)"
|
|
183
182
|
>
|
|
184
|
-
<
|
|
183
|
+
<Icon name="lucide:trash-2" class="mr-2 h-4 w-4" />
|
|
185
184
|
Sil
|
|
186
185
|
</DropdownMenuItem>
|
|
187
186
|
</template>
|
|
188
187
|
<template v-else>
|
|
189
188
|
<DropdownMenuItem v-if="onView" @click.stop="onView(file)">
|
|
190
|
-
<
|
|
189
|
+
<Icon name="lucide:eye" class="mr-2 h-4 w-4" />
|
|
191
190
|
Görüntüle
|
|
192
191
|
</DropdownMenuItem>
|
|
193
192
|
<DropdownMenuItem v-if="onDownload" @click.stop="onDownload(file)">
|
|
194
|
-
<
|
|
193
|
+
<Icon name="lucide:download" class="mr-2 h-4 w-4" />
|
|
195
194
|
İndir
|
|
196
195
|
</DropdownMenuItem>
|
|
197
196
|
<DropdownMenuItem v-if="onRename" @click.stop="onRename(file)">
|
|
@@ -208,14 +207,14 @@ const someSelected = computed(
|
|
|
208
207
|
class="text-destructive focus:text-destructive"
|
|
209
208
|
@click.stop="onDelete(file)"
|
|
210
209
|
>
|
|
211
|
-
<
|
|
210
|
+
<Icon name="lucide:trash-2" class="mr-2 h-4 w-4" />
|
|
212
211
|
Çöp Kutusuna Taşı
|
|
213
212
|
</DropdownMenuItem>
|
|
214
213
|
</template>
|
|
215
214
|
</template>
|
|
216
215
|
<template v-else>
|
|
217
216
|
<DropdownMenuItem v-if="onRestore" @click.stop="onRestore(file)">
|
|
218
|
-
<
|
|
217
|
+
<Icon name="lucide:rotate-ccw" class="mr-2 h-4 w-4" />
|
|
219
218
|
Geri Yükle
|
|
220
219
|
</DropdownMenuItem>
|
|
221
220
|
<DropdownMenuSeparator />
|
|
@@ -224,7 +223,7 @@ const someSelected = computed(
|
|
|
224
223
|
class="text-destructive focus:text-destructive"
|
|
225
224
|
@click.stop="onDelete(file)"
|
|
226
225
|
>
|
|
227
|
-
<
|
|
226
|
+
<Icon name="lucide:trash-2" class="mr-2 h-4 w-4" />
|
|
228
227
|
Kalıcı Olarak Sil
|
|
229
228
|
</DropdownMenuItem>
|
|
230
229
|
</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import {
|
|
2
|
+
import { Icon } from "#components";
|
|
3
3
|
import { useForwardProps } from "reka-ui";
|
|
4
4
|
const props = defineProps({
|
|
5
5
|
class: { type: null, required: false }
|
|
@@ -14,7 +14,7 @@ const forwarded = useForwardProps(props);
|
|
|
14
14
|
v-bind="forwarded"
|
|
15
15
|
>
|
|
16
16
|
<slot>
|
|
17
|
-
<
|
|
17
|
+
<Icon name="lucide:minus" />
|
|
18
18
|
</slot>
|
|
19
19
|
</div>
|
|
20
20
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import {
|
|
5
5
|
MenubarCheckboxItem,
|
|
6
6
|
MenubarItemIndicator,
|
|
@@ -32,7 +32,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
|
32
32
|
<span class="pointer-events-none absolute left-2 flex size-3.5 items-center justify-center">
|
|
33
33
|
<MenubarItemIndicator>
|
|
34
34
|
<slot name="indicator-icon">
|
|
35
|
-
<
|
|
35
|
+
<Icon name="lucide:check" class="size-4" />
|
|
36
36
|
</slot>
|
|
37
37
|
</MenubarItemIndicator>
|
|
38
38
|
</span>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import {
|
|
5
5
|
MenubarItemIndicator,
|
|
6
6
|
MenubarRadioItem,
|
|
@@ -32,7 +32,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
|
32
32
|
<span class="pointer-events-none absolute left-2 flex size-3.5 items-center justify-center">
|
|
33
33
|
<MenubarItemIndicator>
|
|
34
34
|
<slot name="indicator-icon">
|
|
35
|
-
<
|
|
35
|
+
<Icon name="lucide:circle" class="size-2 fill-current" />
|
|
36
36
|
</slot>
|
|
37
37
|
</MenubarItemIndicator>
|
|
38
38
|
</span>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { MenubarSubTrigger, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
const props = defineProps({
|
|
@@ -26,6 +26,6 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
26
26
|
)"
|
|
27
27
|
>
|
|
28
28
|
<slot />
|
|
29
|
-
<
|
|
29
|
+
<Icon name="lucide:chevron-right" class="ml-auto size-4" />
|
|
30
30
|
</MenubarSubTrigger>
|
|
31
31
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit, useVModel } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { cn } from "abckit/utils";
|
|
5
5
|
defineOptions({
|
|
6
6
|
inheritAttrs: false
|
|
@@ -35,7 +35,8 @@ const delegatedProps = reactiveOmit(props, "class");
|
|
|
35
35
|
>
|
|
36
36
|
<slot />
|
|
37
37
|
</select>
|
|
38
|
-
<
|
|
38
|
+
<Icon
|
|
39
|
+
name="lucide:chevron-down"
|
|
39
40
|
class="text-muted-foreground pointer-events-none absolute top-1/2 right-3.5 size-4 -translate-y-1/2 opacity-50 select-none"
|
|
40
41
|
aria-hidden="true"
|
|
41
42
|
data-slot="native-select-icon"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import {
|
|
5
5
|
NavigationMenuTrigger,
|
|
6
6
|
useForwardProps
|
|
@@ -24,7 +24,8 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
24
24
|
:class="cn(navigationMenuTriggerStyle(), 'group', props.class)"
|
|
25
25
|
>
|
|
26
26
|
<slot />
|
|
27
|
-
<
|
|
27
|
+
<Icon
|
|
28
|
+
name="lucide:chevron-down"
|
|
28
29
|
class="relative top-[1px] ml-1 size-3 transition duration-300 group-data-[state=open]:rotate-180"
|
|
29
30
|
aria-hidden="true"
|
|
30
31
|
/>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { NumberFieldDecrement, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
const props = defineProps({
|
|
@@ -16,7 +16,7 @@ const forwarded = useForwardProps(delegatedProps);
|
|
|
16
16
|
<template>
|
|
17
17
|
<NumberFieldDecrement data-slot="decrement" v-bind="forwarded" :class="cn('absolute top-1/2 -translate-y-1/2 left-0 p-3 disabled:cursor-not-allowed disabled:opacity-20', props.class)">
|
|
18
18
|
<slot>
|
|
19
|
-
<
|
|
19
|
+
<Icon name="lucide:minus" class="h-4 w-4" />
|
|
20
20
|
</slot>
|
|
21
21
|
</NumberFieldDecrement>
|
|
22
22
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { NumberFieldIncrement, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
const props = defineProps({
|
|
@@ -16,7 +16,7 @@ const forwarded = useForwardProps(delegatedProps);
|
|
|
16
16
|
<template>
|
|
17
17
|
<NumberFieldIncrement data-slot="increment" v-bind="forwarded" :class="cn('absolute top-1/2 -translate-y-1/2 right-0 disabled:cursor-not-allowed disabled:opacity-20 p-3', props.class)">
|
|
18
18
|
<slot>
|
|
19
|
-
<
|
|
19
|
+
<Icon name="lucide:plus" class="h-4 w-4" />
|
|
20
20
|
</slot>
|
|
21
21
|
</NumberFieldIncrement>
|
|
22
22
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { PaginationEllipsis } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
const props = defineProps({
|
|
@@ -18,7 +18,7 @@ const delegatedProps = reactiveOmit(props, "class");
|
|
|
18
18
|
:class="cn('flex size-9 items-center justify-center', props.class)"
|
|
19
19
|
>
|
|
20
20
|
<slot>
|
|
21
|
-
<
|
|
21
|
+
<Icon name="lucide:more-horizontal" class="size-4" />
|
|
22
22
|
<span class="sr-only">More pages</span>
|
|
23
23
|
</slot>
|
|
24
24
|
</PaginationEllipsis>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { PaginationFirst, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
import { buttonVariants } from "abckit/shadcn/button";
|
|
@@ -21,7 +21,7 @@ const forwarded = useForwardProps(delegatedProps);
|
|
|
21
21
|
v-bind="forwarded"
|
|
22
22
|
>
|
|
23
23
|
<slot>
|
|
24
|
-
<
|
|
24
|
+
<Icon name="lucide:chevron-left" />
|
|
25
25
|
<span class="hidden sm:block">First</span>
|
|
26
26
|
</slot>
|
|
27
27
|
</PaginationFirst>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { PaginationLast, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
import { buttonVariants } from "abckit/shadcn/button";
|
|
@@ -22,7 +22,7 @@ const forwarded = useForwardProps(delegatedProps);
|
|
|
22
22
|
>
|
|
23
23
|
<slot>
|
|
24
24
|
<span class="hidden sm:block">Last</span>
|
|
25
|
-
<
|
|
25
|
+
<Icon name="lucide:chevron-right" />
|
|
26
26
|
</slot>
|
|
27
27
|
</PaginationLast>
|
|
28
28
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { PaginationNext, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
import { buttonVariants } from "abckit/shadcn/button";
|
|
@@ -22,7 +22,7 @@ const forwarded = useForwardProps(delegatedProps);
|
|
|
22
22
|
>
|
|
23
23
|
<slot>
|
|
24
24
|
<span class="hidden sm:block">Next</span>
|
|
25
|
-
<
|
|
25
|
+
<Icon name="lucide:chevron-right" />
|
|
26
26
|
</slot>
|
|
27
27
|
</PaginationNext>
|
|
28
28
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { PaginationPrev, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
import { buttonVariants } from "abckit/shadcn/button";
|
|
@@ -21,7 +21,7 @@ const forwarded = useForwardProps(delegatedProps);
|
|
|
21
21
|
v-bind="forwarded"
|
|
22
22
|
>
|
|
23
23
|
<slot>
|
|
24
|
-
<
|
|
24
|
+
<Icon name="lucide:chevron-left" />
|
|
25
25
|
<span class="hidden sm:block">Previous</span>
|
|
26
26
|
</slot>
|
|
27
27
|
</PaginationPrev>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import {
|
|
2
|
+
import { Icon } from "#components";
|
|
3
3
|
import { Primitive, useForwardProps } from "reka-ui";
|
|
4
4
|
const props = defineProps({
|
|
5
5
|
asChild: { type: Boolean, required: false },
|
|
@@ -14,7 +14,7 @@ const forwardedProps = useForwardProps(props);
|
|
|
14
14
|
v-bind="forwardedProps"
|
|
15
15
|
>
|
|
16
16
|
<slot>
|
|
17
|
-
<
|
|
17
|
+
<Icon name="lucide:minus" />
|
|
18
18
|
</slot>
|
|
19
19
|
</Primitive>
|
|
20
20
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import {
|
|
5
5
|
RadioGroupIndicator,
|
|
6
6
|
RadioGroupItem,
|
|
@@ -37,7 +37,7 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
37
37
|
class="relative flex items-center justify-center"
|
|
38
38
|
>
|
|
39
39
|
<slot>
|
|
40
|
-
<
|
|
40
|
+
<Icon name="lucide:circle" class="fill-primary absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2" />
|
|
41
41
|
</slot>
|
|
42
42
|
</RadioGroupIndicator>
|
|
43
43
|
</RadioGroupItem>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { RangeCalendarNext, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
import { buttonVariants } from "abckit/shadcn/button";
|
|
@@ -26,7 +26,7 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
26
26
|
v-bind="forwardedProps"
|
|
27
27
|
>
|
|
28
28
|
<slot>
|
|
29
|
-
<
|
|
29
|
+
<Icon name="lucide:chevron-right" class="size-4" />
|
|
30
30
|
</slot>
|
|
31
31
|
</RangeCalendarNext>
|
|
32
32
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { RangeCalendarPrev, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
import { buttonVariants } from "abckit/shadcn/button";
|
|
@@ -26,7 +26,7 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
26
26
|
v-bind="forwardedProps"
|
|
27
27
|
>
|
|
28
28
|
<slot>
|
|
29
|
-
<
|
|
29
|
+
<Icon name="lucide:chevron-left" class="size-4" />
|
|
30
30
|
</slot>
|
|
31
31
|
</RangeCalendarPrev>
|
|
32
32
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { SplitterResizeHandle, useForwardPropsEmits } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
const props = defineProps({
|
|
@@ -28,7 +28,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
|
28
28
|
<template v-if="props.withHandle">
|
|
29
29
|
<div class="bg-border z-10 flex h-4 w-3 items-center justify-center rounded-xs border">
|
|
30
30
|
<slot>
|
|
31
|
-
<
|
|
31
|
+
<Icon name="lucide:grip-vertical" class="size-2.5" />
|
|
32
32
|
</slot>
|
|
33
33
|
</div>
|
|
34
34
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import {
|
|
5
5
|
SelectItem,
|
|
6
6
|
SelectItemIndicator,
|
|
@@ -34,7 +34,7 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
34
34
|
<span class="absolute right-2 flex size-3.5 items-center justify-center">
|
|
35
35
|
<SelectItemIndicator>
|
|
36
36
|
<slot name="indicator-icon">
|
|
37
|
-
<
|
|
37
|
+
<Icon name="lucide:check" class="size-4" />
|
|
38
38
|
</slot>
|
|
39
39
|
</SelectItemIndicator>
|
|
40
40
|
</span>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { SelectScrollDownButton, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
const props = defineProps({
|
|
@@ -19,7 +19,7 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
19
19
|
:class="cn('flex cursor-default items-center justify-center py-1', props.class)"
|
|
20
20
|
>
|
|
21
21
|
<slot>
|
|
22
|
-
<
|
|
22
|
+
<Icon name="lucide:chevron-down" class="size-4" />
|
|
23
23
|
</slot>
|
|
24
24
|
</SelectScrollDownButton>
|
|
25
25
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { SelectScrollUpButton, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
const props = defineProps({
|
|
@@ -19,7 +19,7 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
19
19
|
:class="cn('flex cursor-default items-center justify-center py-1', props.class)"
|
|
20
20
|
>
|
|
21
21
|
<slot>
|
|
22
|
-
<
|
|
22
|
+
<Icon name="lucide:chevron-up" class="size-4" />
|
|
23
23
|
</slot>
|
|
24
24
|
</SelectScrollUpButton>
|
|
25
25
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import { SelectIcon, SelectTrigger, useForwardProps } from "reka-ui";
|
|
5
5
|
import { cn } from "abckit/utils";
|
|
6
6
|
const props = defineProps({
|
|
@@ -27,7 +27,7 @@ const forwardedProps = useForwardProps(delegatedProps);
|
|
|
27
27
|
>
|
|
28
28
|
<slot />
|
|
29
29
|
<SelectIcon as-child>
|
|
30
|
-
<
|
|
30
|
+
<Icon name="lucide:chevron-down" class="size-4 opacity-50" />
|
|
31
31
|
</SelectIcon>
|
|
32
32
|
</SelectTrigger>
|
|
33
33
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import {
|
|
5
5
|
DialogClose,
|
|
6
6
|
DialogContent,
|
|
@@ -45,7 +45,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
|
45
45
|
<DialogClose
|
|
46
46
|
class="absolute top-4 right-4 rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none"
|
|
47
47
|
>
|
|
48
|
-
<
|
|
48
|
+
<Icon name="lucide:x" class="size-4" />
|
|
49
49
|
<span class="sr-only">Close</span>
|
|
50
50
|
</DialogClose>
|
|
51
51
|
</DialogContent>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { reactiveOmit } from "@vueuse/core";
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "#components";
|
|
4
4
|
import {
|
|
5
5
|
DialogClose,
|
|
6
6
|
DialogContent,
|
|
@@ -45,7 +45,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
|
45
45
|
<DialogClose
|
|
46
46
|
class="ring-offset-background focus:ring-ring data-[state=open]:bg-secondary absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none"
|
|
47
47
|
>
|
|
48
|
-
<
|
|
48
|
+
<Icon name="lucide:x" class="size-4" />
|
|
49
49
|
<span class="sr-only">Close</span>
|
|
50
50
|
</DialogClose>
|
|
51
51
|
</DialogContent>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import {
|
|
2
|
+
import { Icon } from "#components";
|
|
3
3
|
import { cn } from "abckit/utils";
|
|
4
4
|
import { Button } from "abckit/shadcn/button";
|
|
5
5
|
import { useSidebar } from "./utils";
|
|
@@ -18,7 +18,7 @@ const { toggleSidebar } = useSidebar();
|
|
|
18
18
|
:class="cn('h-7 w-7', props.class)"
|
|
19
19
|
@click="toggleSidebar"
|
|
20
20
|
>
|
|
21
|
-
<
|
|
21
|
+
<Icon name="lucide:panel-left" />
|
|
22
22
|
<span class="sr-only">Toggle Sidebar</span>
|
|
23
23
|
</Button>
|
|
24
24
|
</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import {
|
|
2
|
+
import { Icon } from "#components";
|
|
3
3
|
import { Toaster as Sonner } from "vue-sonner";
|
|
4
4
|
import { cn } from "abckit/utils";
|
|
5
5
|
const props = defineProps({
|
|
@@ -39,24 +39,24 @@ const props = defineProps({
|
|
|
39
39
|
v-bind="props"
|
|
40
40
|
>
|
|
41
41
|
<template #success-icon>
|
|
42
|
-
<
|
|
42
|
+
<Icon name="lucide:circle-check" class="size-4" />
|
|
43
43
|
</template>
|
|
44
44
|
<template #info-icon>
|
|
45
|
-
<
|
|
45
|
+
<Icon name="lucide:info" class="size-4" />
|
|
46
46
|
</template>
|
|
47
47
|
<template #warning-icon>
|
|
48
|
-
<
|
|
48
|
+
<Icon name="lucide:triangle-alert" class="size-4" />
|
|
49
49
|
</template>
|
|
50
50
|
<template #error-icon>
|
|
51
|
-
<
|
|
51
|
+
<Icon name="lucide:octagon-x" class="size-4" />
|
|
52
52
|
</template>
|
|
53
53
|
<template #loading-icon>
|
|
54
54
|
<div>
|
|
55
|
-
<
|
|
55
|
+
<Icon name="lucide:loader-2" class="size-4 animate-spin" />
|
|
56
56
|
</div>
|
|
57
57
|
</template>
|
|
58
58
|
<template #close-icon>
|
|
59
|
-
<
|
|
59
|
+
<Icon name="lucide:x" class="size-4" />
|
|
60
60
|
</template>
|
|
61
61
|
</Sonner>
|
|
62
62
|
</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import {
|
|
2
|
+
import { Icon } from "#components";
|
|
3
3
|
import { cn } from "abckit/utils";
|
|
4
4
|
const props = defineProps({
|
|
5
5
|
class: { type: null, required: false }
|
|
@@ -7,7 +7,8 @@ const props = defineProps({
|
|
|
7
7
|
</script>
|
|
8
8
|
|
|
9
9
|
<template>
|
|
10
|
-
<
|
|
10
|
+
<Icon
|
|
11
|
+
name="lucide:loader-2"
|
|
11
12
|
role="status"
|
|
12
13
|
aria-label="Loading"
|
|
13
14
|
:class="cn('size-4 animate-spin', props.class)"
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import {
|
|
2
|
+
import { Icon } from "#components";
|
|
3
3
|
import { Button } from "abckit/shadcn/button";
|
|
4
4
|
import { Input } from "abckit/shadcn/input";
|
|
5
5
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "abckit/shadcn/select";
|
|
6
6
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "abckit/shadcn/tooltip";
|
|
7
|
-
import { Icon } from "#components";
|
|
8
7
|
import { computed } from "vue";
|
|
9
8
|
const props = defineProps({
|
|
10
9
|
searchQuery: { type: String, required: false, default: "" },
|
|
@@ -34,7 +33,7 @@ const selectedTypeModel = computed({
|
|
|
34
33
|
<div class="flex gap-2">
|
|
35
34
|
<!-- Search -->
|
|
36
35
|
<div class="relative flex-1">
|
|
37
|
-
<
|
|
36
|
+
<Icon name="lucide:search" class="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground" />
|
|
38
37
|
<Input
|
|
39
38
|
v-model="searchModel"
|
|
40
39
|
placeholder="Dosya ara..."
|
|
@@ -97,7 +96,7 @@ const selectedTypeModel = computed({
|
|
|
97
96
|
<Tooltip>
|
|
98
97
|
<TooltipTrigger as-child>
|
|
99
98
|
<Button variant="outline" size="icon" class="h-10 w-10" @click="emit('create-folder')">
|
|
100
|
-
<
|
|
99
|
+
<Icon name="lucide:folder-plus" class="h-4 w-4" />
|
|
101
100
|
</Button>
|
|
102
101
|
</TooltipTrigger>
|
|
103
102
|
<TooltipContent>
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import { Cloud, Trash2, Upload } from "lucide-vue-next";
|
|
3
2
|
import { Icon } from "#components";
|
|
4
3
|
import { ref } from "vue";
|
|
5
4
|
const props = defineProps({
|
|
@@ -33,9 +32,9 @@ function handleFileInput(event) {
|
|
|
33
32
|
class="hidden"
|
|
34
33
|
@change="handleFileInput"
|
|
35
34
|
>
|
|
36
|
-
<
|
|
37
|
-
<
|
|
38
|
-
<
|
|
35
|
+
<Icon v-if="type === 'empty' && showUpload" name="lucide:upload" class="h-16 w-16 text-muted-foreground" />
|
|
36
|
+
<Icon v-else-if="type === 'empty'" name="lucide:cloud" class="h-16 w-16 text-muted-foreground" />
|
|
37
|
+
<Icon v-else-if="type === 'trash'" name="lucide:trash-2" class="h-16 w-16 text-muted-foreground" />
|
|
39
38
|
<Icon v-else name="lucide:search-x" class="h-16 w-16 text-muted-foreground" />
|
|
40
39
|
</div>
|
|
41
40
|
|