fds-react-components-test 0.2.0 → 0.4.0
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/fds-react-components-test.css +1 -0
- package/dist/index.d.ts +2310 -0
- package/dist/index.es.js +13092 -12820
- package/dist/index.umd.js +51 -68
- package/package.json +12 -23
- package/dist/favicon.ico +0 -0
- package/dist/fds-react-components.css +0 -1
- package/dist/parasut.svg +0 -4
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,2310 @@
|
|
|
1
|
+
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
2
|
+
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
3
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
4
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
5
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
6
|
+
import { ClassValue } from 'clsx';
|
|
7
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
8
|
+
import { Command as Command_2 } from 'cmdk';
|
|
9
|
+
import { Control } from 'react-hook-form';
|
|
10
|
+
import { ControllerProps } from 'react-hook-form';
|
|
11
|
+
import { DayButton } from 'react-day-picker';
|
|
12
|
+
import { DayPicker } from 'react-day-picker';
|
|
13
|
+
import { default as default_2 } from 'react';
|
|
14
|
+
import { default as default_3 } from 'embla-carousel-react';
|
|
15
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
16
|
+
import { Dispatch } from 'react';
|
|
17
|
+
import { Drawer as Drawer_2 } from 'vaul';
|
|
18
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
19
|
+
import { FieldError as FieldError_2 } from 'react-hook-form';
|
|
20
|
+
import { FieldPath } from 'react-hook-form';
|
|
21
|
+
import { FieldValues } from 'react-hook-form';
|
|
22
|
+
import { FormProviderProps } from 'react-hook-form';
|
|
23
|
+
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
24
|
+
import { JSX } from 'react/jsx-runtime';
|
|
25
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
26
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
|
27
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
28
|
+
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
29
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
30
|
+
import * as React_2 from 'react';
|
|
31
|
+
import { ReactNode } from 'react';
|
|
32
|
+
import * as RechartsPrimitive from 'recharts';
|
|
33
|
+
import { RowSelectionState } from '@tanstack/react-table';
|
|
34
|
+
import * as RPNInput from 'react-phone-number-input';
|
|
35
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
36
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
37
|
+
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
38
|
+
import { SetStateAction } from 'react';
|
|
39
|
+
import { Slot } from '@radix-ui/react-slot';
|
|
40
|
+
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
41
|
+
import { Table as Table_2 } from '@tanstack/react-table';
|
|
42
|
+
import { Tabs as Tabs_2 } from 'radix-ui';
|
|
43
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
44
|
+
import { ThemeProvider as ThemeProvider_2 } from 'next-themes';
|
|
45
|
+
import { ToasterProps } from 'sonner';
|
|
46
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
47
|
+
import { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
48
|
+
import { useForm } from 'react-hook-form';
|
|
49
|
+
import { UseFormReturn } from 'react-hook-form';
|
|
50
|
+
import { VariantProps } from 'class-variance-authority';
|
|
51
|
+
import { z } from 'zod';
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Active filter structure
|
|
55
|
+
*/
|
|
56
|
+
export declare interface ActiveFilter {
|
|
57
|
+
id: string;
|
|
58
|
+
category: string;
|
|
59
|
+
value: string;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export declare function AddCollectionButton({ label }: AddCollectionButtonProps): JSX.Element;
|
|
63
|
+
|
|
64
|
+
declare interface AddCollectionButtonProps {
|
|
65
|
+
label?: string;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export declare function Alert({ className, variant, ...props }: React_2.ComponentProps<'div'> & VariantProps<typeof alertVariants>): JSX.Element;
|
|
69
|
+
|
|
70
|
+
export declare function AlertDescription({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
71
|
+
|
|
72
|
+
export declare function AlertDialog({ ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Root>): JSX.Element;
|
|
73
|
+
|
|
74
|
+
export declare function AlertDialogAction({ className, variant, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Action> & VariantProps<typeof buttonVariants>): JSX.Element;
|
|
75
|
+
|
|
76
|
+
export declare function AlertDialogCancel({ className, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Cancel>): JSX.Element;
|
|
77
|
+
|
|
78
|
+
export declare function AlertDialogContent({ className, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Content>): JSX.Element;
|
|
79
|
+
|
|
80
|
+
export declare function AlertDialogDescription({ className, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Description>): JSX.Element;
|
|
81
|
+
|
|
82
|
+
export declare function AlertDialogFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
83
|
+
|
|
84
|
+
export declare function AlertDialogHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
85
|
+
|
|
86
|
+
export declare function AlertDialogOverlay({ className, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Overlay>): JSX.Element;
|
|
87
|
+
|
|
88
|
+
export declare function AlertDialogPortal({ ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Portal>): JSX.Element;
|
|
89
|
+
|
|
90
|
+
export declare function AlertDialogTitle({ className, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Title>): JSX.Element;
|
|
91
|
+
|
|
92
|
+
export declare function AlertDialogTrigger({ ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Trigger>): JSX.Element;
|
|
93
|
+
|
|
94
|
+
export declare function AlertTitle({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
95
|
+
|
|
96
|
+
declare const alertVariants: (props?: ({
|
|
97
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
98
|
+
} & ClassProp) | undefined) => string;
|
|
99
|
+
|
|
100
|
+
export declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): JSX.Element;
|
|
101
|
+
|
|
102
|
+
export declare function Avatar({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Root>): JSX.Element;
|
|
103
|
+
|
|
104
|
+
export declare function AvatarFallback({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Fallback>): JSX.Element;
|
|
105
|
+
|
|
106
|
+
export declare function AvatarImage({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Image>): JSX.Element;
|
|
107
|
+
|
|
108
|
+
export declare function Badge({ className, variant, asChild, ...props }: React_2.ComponentProps<'span'> & VariantProps<typeof badgeVariants> & {
|
|
109
|
+
asChild?: boolean;
|
|
110
|
+
}): JSX.Element;
|
|
111
|
+
|
|
112
|
+
export declare const badgeVariants: (props?: ({
|
|
113
|
+
variant?: "default" | "outline" | "secondary" | "destructive" | null | undefined;
|
|
114
|
+
} & ClassProp) | undefined) => string;
|
|
115
|
+
|
|
116
|
+
export declare function Breadcrumb({ ...props }: React_2.ComponentProps<'nav'>): JSX.Element;
|
|
117
|
+
|
|
118
|
+
export declare function BreadcrumbEllipsis({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
119
|
+
|
|
120
|
+
export declare function BreadcrumbItem({ className, ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
121
|
+
|
|
122
|
+
export declare function BreadcrumbLink({ asChild, className, ...props }: React_2.ComponentProps<'a'> & {
|
|
123
|
+
asChild?: boolean;
|
|
124
|
+
}): JSX.Element;
|
|
125
|
+
|
|
126
|
+
export declare function BreadcrumbList({ className, ...props }: React_2.ComponentProps<'ol'>): JSX.Element;
|
|
127
|
+
|
|
128
|
+
export declare function BreadcrumbPage({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
129
|
+
|
|
130
|
+
export declare function BreadcrumbSeparator({ children, className, ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
131
|
+
|
|
132
|
+
export declare function Button({ className, variant, size, isIcon, asChild, ...props }: React_2.ComponentProps<'button'> & VariantProps<typeof buttonVariants> & {
|
|
133
|
+
asChild?: boolean;
|
|
134
|
+
}): JSX.Element;
|
|
135
|
+
|
|
136
|
+
export declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): JSX.Element;
|
|
137
|
+
|
|
138
|
+
export declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): JSX.Element;
|
|
139
|
+
|
|
140
|
+
export declare function ButtonGroupText({ className, asChild, ...props }: React.ComponentProps<'div'> & {
|
|
141
|
+
asChild?: boolean;
|
|
142
|
+
}): JSX.Element;
|
|
143
|
+
|
|
144
|
+
export declare const buttonGroupVariants: (props?: ({
|
|
145
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
146
|
+
} & ClassProp) | undefined) => string;
|
|
147
|
+
|
|
148
|
+
export declare const buttonVariants: (props?: ({
|
|
149
|
+
variant?: "default" | "outline" | "secondary" | "ghost" | "link" | "sort" | "destructive" | "destructiveOutline" | null | undefined;
|
|
150
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
151
|
+
isIcon?: boolean | null | undefined;
|
|
152
|
+
} & ClassProp) | undefined) => string;
|
|
153
|
+
|
|
154
|
+
export declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React_2.ComponentProps<typeof DayPicker> & {
|
|
155
|
+
buttonVariant?: React_2.ComponentProps<typeof Button>['variant'];
|
|
156
|
+
}): JSX.Element;
|
|
157
|
+
|
|
158
|
+
export declare function CalendarDayButton({ className, day, modifiers, ...props }: React_2.ComponentProps<typeof DayButton>): JSX.Element;
|
|
159
|
+
|
|
160
|
+
export declare function Card({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
161
|
+
|
|
162
|
+
export declare function CardAction({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
163
|
+
|
|
164
|
+
export declare function CardContent({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
165
|
+
|
|
166
|
+
export declare function CardDescription({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
167
|
+
|
|
168
|
+
export declare function CardFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
169
|
+
|
|
170
|
+
export declare function CardHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
171
|
+
|
|
172
|
+
export declare function CardTitle({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
173
|
+
|
|
174
|
+
export declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React_2.ComponentProps<'div'> & CarouselProps): JSX.Element;
|
|
175
|
+
|
|
176
|
+
export declare type CarouselApi = UseEmblaCarouselType[1];
|
|
177
|
+
|
|
178
|
+
export declare function CarouselContent({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
179
|
+
|
|
180
|
+
export declare function CarouselItem({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
181
|
+
|
|
182
|
+
export declare function CarouselNext({ className, variant, size, ...props }: React_2.ComponentProps<typeof Button>): JSX.Element;
|
|
183
|
+
|
|
184
|
+
declare type CarouselOptions = UseCarouselParameters[0];
|
|
185
|
+
|
|
186
|
+
declare type CarouselPlugin = UseCarouselParameters[1];
|
|
187
|
+
|
|
188
|
+
export declare function CarouselPrevious({ className, variant, size, ...props }: React_2.ComponentProps<typeof Button>): JSX.Element;
|
|
189
|
+
|
|
190
|
+
declare type CarouselProps = {
|
|
191
|
+
opts?: CarouselOptions;
|
|
192
|
+
plugins?: CarouselPlugin;
|
|
193
|
+
orientation?: 'horizontal' | 'vertical';
|
|
194
|
+
setApi?: (api: CarouselApi) => void;
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
export declare type ChartConfig = {
|
|
198
|
+
[k in string]: {
|
|
199
|
+
label?: React_2.ReactNode;
|
|
200
|
+
icon?: React_2.ComponentType;
|
|
201
|
+
} & ({
|
|
202
|
+
color?: string;
|
|
203
|
+
theme?: never;
|
|
204
|
+
} | {
|
|
205
|
+
color?: never;
|
|
206
|
+
theme: Record<keyof typeof THEMES, string>;
|
|
207
|
+
});
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
export declare function ChartContainer({ id, className, children, config, ...props }: React_2.ComponentProps<'div'> & {
|
|
211
|
+
config: ChartConfig;
|
|
212
|
+
children: React_2.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>['children'];
|
|
213
|
+
}): JSX.Element;
|
|
214
|
+
|
|
215
|
+
export declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
216
|
+
|
|
217
|
+
export declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React_2.ComponentProps<'div'> & Pick<RechartsPrimitive.LegendProps, 'payload' | 'verticalAlign'> & {
|
|
218
|
+
hideIcon?: boolean;
|
|
219
|
+
nameKey?: string;
|
|
220
|
+
}): JSX.Element | null;
|
|
221
|
+
|
|
222
|
+
export declare const ChartStyle: ({ id, config }: {
|
|
223
|
+
id: string;
|
|
224
|
+
config: ChartConfig;
|
|
225
|
+
}) => JSX.Element | null;
|
|
226
|
+
|
|
227
|
+
export declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
228
|
+
|
|
229
|
+
export declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React_2.ComponentProps<typeof RechartsPrimitive.Tooltip> & React_2.ComponentProps<'div'> & {
|
|
230
|
+
hideLabel?: boolean;
|
|
231
|
+
hideIndicator?: boolean;
|
|
232
|
+
indicator?: 'line' | 'dot' | 'dashed';
|
|
233
|
+
nameKey?: string;
|
|
234
|
+
labelKey?: string;
|
|
235
|
+
}): JSX.Element | null;
|
|
236
|
+
|
|
237
|
+
export declare function Checkbox({ className, ...props }: React_2.ComponentProps<typeof CheckboxPrimitive.Root>): JSX.Element;
|
|
238
|
+
|
|
239
|
+
export declare function cn(...inputs: ClassValue[]): string;
|
|
240
|
+
|
|
241
|
+
export declare function Collapsible({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): JSX.Element;
|
|
242
|
+
|
|
243
|
+
export declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): JSX.Element;
|
|
244
|
+
|
|
245
|
+
export declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): JSX.Element;
|
|
246
|
+
|
|
247
|
+
export declare function Command({ className, ...props }: React_2.ComponentProps<typeof Command_2>): JSX.Element;
|
|
248
|
+
|
|
249
|
+
export declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: React_2.ComponentProps<typeof Dialog> & {
|
|
250
|
+
title?: string;
|
|
251
|
+
description?: string;
|
|
252
|
+
className?: string;
|
|
253
|
+
showCloseButton?: boolean;
|
|
254
|
+
}): JSX.Element;
|
|
255
|
+
|
|
256
|
+
export declare function CommandEmpty({ ...props }: React_2.ComponentProps<typeof Command_2.Empty>): JSX.Element;
|
|
257
|
+
|
|
258
|
+
export declare function CommandGroup({ className, ...props }: React_2.ComponentProps<typeof Command_2.Group>): JSX.Element;
|
|
259
|
+
|
|
260
|
+
export declare function CommandInput({ className, ...props }: React_2.ComponentProps<typeof Command_2.Input>): JSX.Element;
|
|
261
|
+
|
|
262
|
+
export declare function CommandItem({ className, ...props }: React_2.ComponentProps<typeof Command_2.Item>): JSX.Element;
|
|
263
|
+
|
|
264
|
+
export declare function CommandList({ className, ...props }: React_2.ComponentProps<typeof Command_2.List>): JSX.Element;
|
|
265
|
+
|
|
266
|
+
export declare function CommandSeparator({ className, ...props }: React_2.ComponentProps<typeof Command_2.Separator>): JSX.Element;
|
|
267
|
+
|
|
268
|
+
export declare function CommandShortcut({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
269
|
+
|
|
270
|
+
export declare const CURRENCY_DATA: CurrencyItem[];
|
|
271
|
+
|
|
272
|
+
export declare type CurrencyApiRate = {
|
|
273
|
+
CurrencyCode: CurrencyCode;
|
|
274
|
+
PurchaseRate: string;
|
|
275
|
+
SaleRate: string;
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
export declare type CurrencyApiResponse = {
|
|
279
|
+
Data: {
|
|
280
|
+
Currency: CurrencyApiRate[];
|
|
281
|
+
};
|
|
282
|
+
Date: string;
|
|
283
|
+
};
|
|
284
|
+
|
|
285
|
+
export declare type CurrencyCode = 'USD' | 'EUR' | 'GBP';
|
|
286
|
+
|
|
287
|
+
export declare interface CurrencyItem {
|
|
288
|
+
id: number;
|
|
289
|
+
symbol: string;
|
|
290
|
+
labelKey: CurrencyLabelKey;
|
|
291
|
+
code?: CurrencyCode;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export declare type CurrencyLabelKey = 'try' | 'usd' | 'eur' | 'gbp';
|
|
295
|
+
|
|
296
|
+
declare type CurrencyRateState = {
|
|
297
|
+
status: 'idle';
|
|
298
|
+
} | {
|
|
299
|
+
status: 'loading';
|
|
300
|
+
} | {
|
|
301
|
+
status: 'success';
|
|
302
|
+
data: ExchangeRate;
|
|
303
|
+
} | {
|
|
304
|
+
status: 'error';
|
|
305
|
+
error: Error;
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
export declare const CurrencySection: default_2.FC<CurrencySectionProps>;
|
|
309
|
+
|
|
310
|
+
declare interface CurrencySectionProps {
|
|
311
|
+
disabled?: boolean;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
export declare function DatePicker(): JSX.Element;
|
|
315
|
+
|
|
316
|
+
export declare function DateRangePicker(): JSX.Element;
|
|
317
|
+
|
|
318
|
+
export declare function DeleteDialog({ onConfirm, children, mode, count, open: controlledOpen, onOpenChange: controlledOnOpenChange, title, description, }: DeleteDialogProps): JSX.Element;
|
|
319
|
+
|
|
320
|
+
declare interface DeleteDialogProps {
|
|
321
|
+
/**
|
|
322
|
+
* Callback when delete is confirmed
|
|
323
|
+
*/
|
|
324
|
+
onConfirm: () => void;
|
|
325
|
+
/**
|
|
326
|
+
* Custom trigger element (defaults to a button with generic delete text)
|
|
327
|
+
*/
|
|
328
|
+
children?: ReactNode;
|
|
329
|
+
/**
|
|
330
|
+
* Delete mode: single item or bulk items
|
|
331
|
+
* @default 'single'
|
|
332
|
+
*/
|
|
333
|
+
mode?: 'single' | 'bulk';
|
|
334
|
+
/**
|
|
335
|
+
* Number of items to delete (used in bulk mode)
|
|
336
|
+
* @default 1
|
|
337
|
+
*/
|
|
338
|
+
count?: number;
|
|
339
|
+
/**
|
|
340
|
+
* Controlled open state
|
|
341
|
+
*/
|
|
342
|
+
open?: boolean;
|
|
343
|
+
/**
|
|
344
|
+
* Controlled open state handler
|
|
345
|
+
*/
|
|
346
|
+
onOpenChange?: (open: boolean) => void;
|
|
347
|
+
/**
|
|
348
|
+
* Override dialog title (otherwise uses i18n default)
|
|
349
|
+
*/
|
|
350
|
+
title?: string;
|
|
351
|
+
/**
|
|
352
|
+
* Override dialog description (otherwise uses i18n default based on mode)
|
|
353
|
+
*/
|
|
354
|
+
description?: string;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export declare function Dialog({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Root>): JSX.Element;
|
|
358
|
+
|
|
359
|
+
export declare function DialogClose({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Close>): JSX.Element;
|
|
360
|
+
|
|
361
|
+
export declare function DialogContent({ className, children, showCloseButton, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
362
|
+
showCloseButton?: boolean;
|
|
363
|
+
}): JSX.Element;
|
|
364
|
+
|
|
365
|
+
export declare function DialogDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): JSX.Element;
|
|
366
|
+
|
|
367
|
+
export declare function DialogFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
368
|
+
|
|
369
|
+
export declare function DialogHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
370
|
+
|
|
371
|
+
export declare function DialogOverlay({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Overlay>): JSX.Element;
|
|
372
|
+
|
|
373
|
+
export declare function DialogPortal({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Portal>): JSX.Element;
|
|
374
|
+
|
|
375
|
+
export declare function DialogTitle({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Title>): JSX.Element;
|
|
376
|
+
|
|
377
|
+
export declare function DialogTrigger({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Trigger>): JSX.Element;
|
|
378
|
+
|
|
379
|
+
declare type Dictionary = Awaited<ReturnType<typeof getDictionary>>;
|
|
380
|
+
|
|
381
|
+
export declare function DictionaryProvider({ dictionary, children, }: {
|
|
382
|
+
dictionary: Dictionary;
|
|
383
|
+
children: React_2.ReactNode;
|
|
384
|
+
}): JSX.Element;
|
|
385
|
+
|
|
386
|
+
export declare function Drawer({ ...props }: React_2.ComponentProps<typeof Drawer_2.Root>): JSX.Element;
|
|
387
|
+
|
|
388
|
+
export declare function DrawerClose({ ...props }: React_2.ComponentProps<typeof Drawer_2.Close>): JSX.Element;
|
|
389
|
+
|
|
390
|
+
export declare function DrawerContent({ className, children, ...props }: React_2.ComponentProps<typeof Drawer_2.Content>): JSX.Element;
|
|
391
|
+
|
|
392
|
+
export declare function DrawerDescription({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Description>): JSX.Element;
|
|
393
|
+
|
|
394
|
+
export declare function DrawerFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
395
|
+
|
|
396
|
+
export declare function DrawerHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
397
|
+
|
|
398
|
+
export declare function DrawerOverlay({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Overlay>): JSX.Element;
|
|
399
|
+
|
|
400
|
+
export declare function DrawerPortal({ ...props }: React_2.ComponentProps<typeof Drawer_2.Portal>): JSX.Element;
|
|
401
|
+
|
|
402
|
+
export declare function DrawerTitle({ className, ...props }: React_2.ComponentProps<typeof Drawer_2.Title>): JSX.Element;
|
|
403
|
+
|
|
404
|
+
export declare function DrawerTrigger({ ...props }: React_2.ComponentProps<typeof Drawer_2.Trigger>): JSX.Element;
|
|
405
|
+
|
|
406
|
+
export declare function DropdownMenu({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Root>): JSX.Element;
|
|
407
|
+
|
|
408
|
+
export declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): JSX.Element;
|
|
409
|
+
|
|
410
|
+
export declare function DropdownMenuContent({ className, sideOffset, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Content>): JSX.Element;
|
|
411
|
+
|
|
412
|
+
export declare function DropdownMenuGroup({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Group>): JSX.Element;
|
|
413
|
+
|
|
414
|
+
export declare function DropdownMenuItem({ className, inset, variant, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
415
|
+
inset?: boolean;
|
|
416
|
+
variant?: 'default' | 'destructive';
|
|
417
|
+
}): JSX.Element;
|
|
418
|
+
|
|
419
|
+
export declare function DropdownMenuLabel({ className, inset, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
420
|
+
inset?: boolean;
|
|
421
|
+
}): JSX.Element;
|
|
422
|
+
|
|
423
|
+
export declare function DropdownMenuPortal({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Portal>): JSX.Element;
|
|
424
|
+
|
|
425
|
+
export declare function DropdownMenuRadioGroup({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): JSX.Element;
|
|
426
|
+
|
|
427
|
+
export declare function DropdownMenuRadioItem({ className, children, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): JSX.Element;
|
|
428
|
+
|
|
429
|
+
export declare function DropdownMenuSeparator({ className, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Separator>): JSX.Element;
|
|
430
|
+
|
|
431
|
+
export declare function DropdownMenuShortcut({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
432
|
+
|
|
433
|
+
export declare function DropdownMenuSub({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Sub>): JSX.Element;
|
|
434
|
+
|
|
435
|
+
export declare function DropdownMenuSubContent({ className, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): JSX.Element;
|
|
436
|
+
|
|
437
|
+
export declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
438
|
+
inset?: boolean;
|
|
439
|
+
}): JSX.Element;
|
|
440
|
+
|
|
441
|
+
export declare function DropdownMenuTrigger({ ...props }: React_2.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): JSX.Element;
|
|
442
|
+
|
|
443
|
+
export declare function EmailInput<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ control, name, label, description, className, disabled, required, ...props }: EmailInputProps<TFieldValues, TName>): JSX.Element;
|
|
444
|
+
|
|
445
|
+
declare interface EmailInputProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<InputProps, 'type' | 'name' | 'placeholder'> {
|
|
446
|
+
control: Control<TFieldValues>;
|
|
447
|
+
name: TName;
|
|
448
|
+
label?: string;
|
|
449
|
+
description?: string;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
/**
|
|
453
|
+
* Creates a Zod schema for email validation.
|
|
454
|
+
*
|
|
455
|
+
* @param options - Configuration for the schema.
|
|
456
|
+
* @param {boolean} [options.required=false] - If true, the email is required.
|
|
457
|
+
* @returns A Zod schema for email validation.
|
|
458
|
+
*/
|
|
459
|
+
export declare const emailSchema: (options?: {
|
|
460
|
+
required?: boolean;
|
|
461
|
+
}) => z.ZodString | z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
462
|
+
|
|
463
|
+
export declare function Empty({ className, ...props }: React.ComponentProps<"div">): JSX.Element;
|
|
464
|
+
|
|
465
|
+
export declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): JSX.Element;
|
|
466
|
+
|
|
467
|
+
export declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): JSX.Element;
|
|
468
|
+
|
|
469
|
+
export declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): JSX.Element;
|
|
470
|
+
|
|
471
|
+
export declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): JSX.Element;
|
|
472
|
+
|
|
473
|
+
declare const emptyMediaVariants: (props?: ({
|
|
474
|
+
variant?: "default" | "icon" | null | undefined;
|
|
475
|
+
} & ClassProp) | undefined) => string;
|
|
476
|
+
|
|
477
|
+
export declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): JSX.Element;
|
|
478
|
+
|
|
479
|
+
export declare type ExchangeRate = {
|
|
480
|
+
purchase: number;
|
|
481
|
+
sale: number;
|
|
482
|
+
};
|
|
483
|
+
|
|
484
|
+
export declare function ExportButton({ label }: ExportButtonProps): JSX.Element;
|
|
485
|
+
|
|
486
|
+
declare interface ExportButtonProps {
|
|
487
|
+
label?: string;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
export declare function Field({ className, orientation, ...props }: React.ComponentProps<'div'> & VariantProps<typeof fieldVariants>): JSX.Element;
|
|
491
|
+
|
|
492
|
+
export declare function FieldContent({ className, ...props }: React.ComponentProps<'div'>): JSX.Element;
|
|
493
|
+
|
|
494
|
+
export declare function FieldDescription({ className, ...props }: React.ComponentProps<'p'>): JSX.Element;
|
|
495
|
+
|
|
496
|
+
export declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<'div'> & {
|
|
497
|
+
errors?: Array<{
|
|
498
|
+
message?: string;
|
|
499
|
+
} | undefined>;
|
|
500
|
+
}): JSX.Element | null;
|
|
501
|
+
|
|
502
|
+
export declare function FieldGroup({ className, ...props }: React.ComponentProps<'div'>): JSX.Element;
|
|
503
|
+
|
|
504
|
+
export declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): JSX.Element;
|
|
505
|
+
|
|
506
|
+
export declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<'legend'> & {
|
|
507
|
+
variant?: 'legend' | 'label';
|
|
508
|
+
}): JSX.Element;
|
|
509
|
+
|
|
510
|
+
export declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<'div'> & {
|
|
511
|
+
children?: React.ReactNode;
|
|
512
|
+
}): JSX.Element;
|
|
513
|
+
|
|
514
|
+
export declare function FieldSet({ className, ...props }: React.ComponentProps<'fieldset'>): JSX.Element;
|
|
515
|
+
|
|
516
|
+
export declare function FieldTitle({ className, ...props }: React.ComponentProps<'div'>): JSX.Element;
|
|
517
|
+
|
|
518
|
+
declare const fieldVariants: (props?: ({
|
|
519
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
520
|
+
} & ClassProp) | undefined) => string;
|
|
521
|
+
|
|
522
|
+
/**
|
|
523
|
+
* Filter category configuration
|
|
524
|
+
*/
|
|
525
|
+
export declare interface FilterCategory {
|
|
526
|
+
/** Unique category identifier */
|
|
527
|
+
id: string;
|
|
528
|
+
/** Display label for the category */
|
|
529
|
+
label: string;
|
|
530
|
+
/** Available options for this category */
|
|
531
|
+
options: FilterOption[];
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* Generic searchable filter combobox with remove functionality
|
|
536
|
+
*/
|
|
537
|
+
export declare function FilterCombobox({ value, options, onValueChange, onRemove, disabled, autoOpen, emptyText, width, }: FilterComboboxProps): JSX.Element;
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* Filter combobox props
|
|
541
|
+
*/
|
|
542
|
+
export declare interface FilterComboboxProps {
|
|
543
|
+
/** Current selected value */
|
|
544
|
+
value: string;
|
|
545
|
+
/** Available options */
|
|
546
|
+
options: FilterOption[];
|
|
547
|
+
/** Callback when value changes */
|
|
548
|
+
onValueChange: (value: string) => void;
|
|
549
|
+
/** Callback when remove button is clicked */
|
|
550
|
+
onRemove: () => void;
|
|
551
|
+
/** Disabled state */
|
|
552
|
+
disabled?: boolean;
|
|
553
|
+
/** Auto-open on mount */
|
|
554
|
+
autoOpen?: boolean;
|
|
555
|
+
/** Empty state text */
|
|
556
|
+
emptyText?: string;
|
|
557
|
+
/** Popover width (default: w-[210px]) */
|
|
558
|
+
width?: string;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* Generic filter dropdown with dynamic categories
|
|
563
|
+
*/
|
|
564
|
+
export declare function FilterDropdown({ categories, activeFilters, onFiltersChange, addFilterLabel, removeAllLabel, disabled, }: FilterDropdownProps): JSX.Element;
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* Filter dropdown props
|
|
568
|
+
*/
|
|
569
|
+
export declare interface FilterDropdownProps {
|
|
570
|
+
/** Available filter categories */
|
|
571
|
+
categories: FilterCategory[];
|
|
572
|
+
/** Current active filters */
|
|
573
|
+
activeFilters: ActiveFilter[];
|
|
574
|
+
/** Callback when filters change */
|
|
575
|
+
onFiltersChange: (filters: ActiveFilter[]) => void;
|
|
576
|
+
/** Label for add filter button */
|
|
577
|
+
addFilterLabel: string;
|
|
578
|
+
/** Label for remove all button */
|
|
579
|
+
removeAllLabel: string;
|
|
580
|
+
/** Disabled state */
|
|
581
|
+
disabled?: boolean;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* Filter option structure
|
|
586
|
+
*/
|
|
587
|
+
export declare interface FilterOption {
|
|
588
|
+
value: string;
|
|
589
|
+
label: string;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
export declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React_2.JSX.Element;
|
|
593
|
+
|
|
594
|
+
export declare function formatNumberTR(value: number, minimumFractionDigits?: number, maximumFractionDigits?: number): string;
|
|
595
|
+
|
|
596
|
+
export declare const FormattedInput: default_2.FC<FormattedInputProps>;
|
|
597
|
+
|
|
598
|
+
declare interface FormattedInputProps {
|
|
599
|
+
value: number;
|
|
600
|
+
onChange: (value: number) => void;
|
|
601
|
+
className?: string;
|
|
602
|
+
isCurrency?: boolean;
|
|
603
|
+
isPercentage?: boolean;
|
|
604
|
+
showModeToggle?: boolean;
|
|
605
|
+
onModeChange?: (mode: 'currency' | 'percentage') => void;
|
|
606
|
+
mode?: 'currency' | 'percentage';
|
|
607
|
+
decimalLimit?: number;
|
|
608
|
+
disabled?: boolean;
|
|
609
|
+
selectedCurrencySymbol?: string;
|
|
610
|
+
showExchangeRateType?: boolean;
|
|
611
|
+
exchangeRateType?: 'Alış' | 'Satış';
|
|
612
|
+
onExchangeRateTypeChange?: (type: 'Alış' | 'Satış') => void;
|
|
613
|
+
showDiscountModeToggle?: boolean;
|
|
614
|
+
discountMode?: 'currency' | 'percentage';
|
|
615
|
+
onDiscountModeChange?: (mode: 'currency' | 'percentage') => void;
|
|
616
|
+
showReset?: boolean;
|
|
617
|
+
onReset?: () => void;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
export declare function FormControl({ ...props }: React_2.ComponentProps<typeof Slot>): JSX.Element;
|
|
621
|
+
|
|
622
|
+
export declare function FormDescription({ className, ...props }: React_2.ComponentProps<'p'>): JSX.Element;
|
|
623
|
+
|
|
624
|
+
export declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => JSX.Element;
|
|
625
|
+
|
|
626
|
+
export declare function FormItem({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
627
|
+
|
|
628
|
+
export declare function FormLabel({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
|
|
629
|
+
|
|
630
|
+
export declare function FormMessage({ className, ...props }: React_2.ComponentProps<'p'>): JSX.Element | null;
|
|
631
|
+
|
|
632
|
+
export declare const getClientDictionary: () => {
|
|
633
|
+
readonly page: {
|
|
634
|
+
readonly home: {
|
|
635
|
+
readonly title: "Lorem ipsum dolor sit amet";
|
|
636
|
+
readonly description: " ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.";
|
|
637
|
+
};
|
|
638
|
+
};
|
|
639
|
+
readonly component: {
|
|
640
|
+
readonly input: {
|
|
641
|
+
readonly placeholder: "Tasarımın Geleceğine Hoş Geldiniz";
|
|
642
|
+
};
|
|
643
|
+
readonly email_input: {
|
|
644
|
+
readonly placeholder: "email@ornek.com";
|
|
645
|
+
readonly error: {
|
|
646
|
+
readonly invalid: "Lütfen geçerli bir e-posta adresi girin.";
|
|
647
|
+
readonly required: "E-posta adresi zorunludur.";
|
|
648
|
+
};
|
|
649
|
+
};
|
|
650
|
+
readonly password_input: {
|
|
651
|
+
readonly placeholder: "Parolanız";
|
|
652
|
+
readonly strength: {
|
|
653
|
+
readonly weak: "Zayıf";
|
|
654
|
+
readonly medium: "Orta";
|
|
655
|
+
readonly strong: "Güçlü";
|
|
656
|
+
};
|
|
657
|
+
readonly criteria: {
|
|
658
|
+
readonly uppercase: "Parola bir büyük harf içermelidir.";
|
|
659
|
+
readonly lowercase: "Parola bir küçük harf içermelidir.";
|
|
660
|
+
readonly number: "Parola bir rakam içermelidir.";
|
|
661
|
+
readonly special: "Parola bir özel karakter içermelidir.";
|
|
662
|
+
readonly minLength: "Parola en az {min} karakter olmalıdır.";
|
|
663
|
+
};
|
|
664
|
+
readonly error: {
|
|
665
|
+
readonly required: "Parola zorunludur.";
|
|
666
|
+
readonly minLength: "Parola en az {min} karakter olmalıdır.";
|
|
667
|
+
};
|
|
668
|
+
readonly showPassword: "Parolayı göster";
|
|
669
|
+
readonly hidePassword: "Parolayı gizle";
|
|
670
|
+
};
|
|
671
|
+
readonly button: {
|
|
672
|
+
readonly submit: "Gönder";
|
|
673
|
+
readonly export: "Dışa Aktar";
|
|
674
|
+
readonly add_collection: "Tahsilat ekle";
|
|
675
|
+
};
|
|
676
|
+
readonly phone_input: {
|
|
677
|
+
readonly placeholder: "Telefon numarası";
|
|
678
|
+
readonly error: {
|
|
679
|
+
readonly required: "Telefon numarası gerekli.";
|
|
680
|
+
readonly invalid: "Geçersiz telefon numarası.";
|
|
681
|
+
};
|
|
682
|
+
};
|
|
683
|
+
readonly postal_code_input: {
|
|
684
|
+
readonly placeholder: "34000";
|
|
685
|
+
readonly error: {
|
|
686
|
+
readonly required: "Posta kodu zorunludur.";
|
|
687
|
+
readonly invalid: "Posta kodu 5 haneli olmalıdır.";
|
|
688
|
+
};
|
|
689
|
+
};
|
|
690
|
+
readonly date_picker: {
|
|
691
|
+
readonly select_date: "Tarih seçiniz";
|
|
692
|
+
readonly select_date_range: "Tarih aralığı seçiniz";
|
|
693
|
+
};
|
|
694
|
+
readonly currency: {
|
|
695
|
+
readonly change_currency: "Döviz değiştir";
|
|
696
|
+
readonly sale: "Satış";
|
|
697
|
+
readonly purchase: "Alış";
|
|
698
|
+
readonly currencies: {
|
|
699
|
+
readonly try: "Türk Lirası";
|
|
700
|
+
readonly usd: "ABD Doları";
|
|
701
|
+
readonly eur: "Euro";
|
|
702
|
+
readonly gbp: "İngiliz Sterlini";
|
|
703
|
+
};
|
|
704
|
+
};
|
|
705
|
+
readonly sidebar: {
|
|
706
|
+
readonly hideMenu: "Menüyü gizle";
|
|
707
|
+
readonly showMenu: "Menüyü göster";
|
|
708
|
+
};
|
|
709
|
+
readonly vkn_tckn_input: {
|
|
710
|
+
readonly label: "VKN/TCKN";
|
|
711
|
+
readonly placeholder: "Câri VKN/TCKN";
|
|
712
|
+
readonly description: "VKN/TCKN girildiğinde otomatik olarak GİB üzerinden sorgulanır.";
|
|
713
|
+
readonly clear_tooltip: "Temizle";
|
|
714
|
+
readonly searching: "Sorgulanıyor...";
|
|
715
|
+
readonly success: "Bilgiler başarıyla getirildi";
|
|
716
|
+
readonly error: {
|
|
717
|
+
readonly required: "VKN/TCKN zorunludur.";
|
|
718
|
+
readonly invalid_length: "VKN 10, TCKN 11 haneli olmalıdır.";
|
|
719
|
+
readonly only_numbers: "Sadece rakam girebilirsiniz.";
|
|
720
|
+
readonly invalid_format: "Geçersiz VKN/TCKN. 10 veya 11 haneli bir numara giriniz.";
|
|
721
|
+
readonly not_found: "Bu VKN/TCKN ile kayıtlı mükellef bulunamadı.";
|
|
722
|
+
readonly no_active_records: "Mükellef bulundu ancak aktif kayıt bulunamadı.";
|
|
723
|
+
readonly invalid_tax_id: "Geçersiz VKN/TCKN formatı.";
|
|
724
|
+
readonly missing_parameter: "VKN/TCKN parametresi eksik.";
|
|
725
|
+
readonly api_error: "API bağlantı hatası. Lütfen tekrar deneyiniz.";
|
|
726
|
+
readonly internal_error: "Sunucu hatası. Lütfen daha sonra tekrar deneyiniz.";
|
|
727
|
+
readonly generic: "Bir hata oluştu. Lütfen tekrar deneyiniz.";
|
|
728
|
+
readonly unexpected: "Beklenmeyen bir hata oluştu.";
|
|
729
|
+
};
|
|
730
|
+
};
|
|
731
|
+
readonly iban_input: {
|
|
732
|
+
readonly placeholder: "TR00 0000 0000 0000 0000 0000 00";
|
|
733
|
+
readonly label: "IBAN";
|
|
734
|
+
readonly description: "Uluslararası banka hesap numarası";
|
|
735
|
+
readonly validating: "Doğrulanıyor...";
|
|
736
|
+
readonly valid: "Geçerli IBAN";
|
|
737
|
+
readonly error: {
|
|
738
|
+
readonly required: "IBAN zorunludur.";
|
|
739
|
+
readonly invalid: "Geçersiz IBAN.";
|
|
740
|
+
readonly invalid_length: "IBAN 15-34 karakter uzunluğunda olmalıdır.";
|
|
741
|
+
readonly validation_failed: "IBAN doğrulaması başarısız. Lütfen geçerli bir IBAN girin.";
|
|
742
|
+
readonly service_unavailable: "IBAN doğrulama servisi kullanılamıyor.";
|
|
743
|
+
};
|
|
744
|
+
};
|
|
745
|
+
readonly filter_dropdown: {
|
|
746
|
+
readonly add_filter: "Filtreler";
|
|
747
|
+
readonly remove_all: "Tümünü Kaldır";
|
|
748
|
+
};
|
|
749
|
+
readonly data_table: {
|
|
750
|
+
readonly no_results: "Sonuç bulunamadı";
|
|
751
|
+
readonly pagination: {
|
|
752
|
+
readonly rows_per_page: "Sayfa başına satır";
|
|
753
|
+
readonly total_records: "Kayıt";
|
|
754
|
+
readonly previous: "Önceki";
|
|
755
|
+
readonly next: "Sonraki";
|
|
756
|
+
};
|
|
757
|
+
};
|
|
758
|
+
readonly delete_dialog: {
|
|
759
|
+
readonly title: "Silme işlemini onaylayın";
|
|
760
|
+
readonly description: {
|
|
761
|
+
readonly single: "Bu kaydı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
762
|
+
readonly bulk: "{count} kaydı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
763
|
+
};
|
|
764
|
+
readonly button: "Seçilenleri Sil";
|
|
765
|
+
readonly confirm: "Onayla ve sil";
|
|
766
|
+
readonly cancel: "Vazgeç";
|
|
767
|
+
};
|
|
768
|
+
readonly list_page_error: {
|
|
769
|
+
readonly title: "Veriler yüklenirken bir hata oluştu";
|
|
770
|
+
readonly retry: "Tekrar Dene";
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
readonly features: {
|
|
774
|
+
readonly accounts: {
|
|
775
|
+
readonly form: {
|
|
776
|
+
readonly actions: {
|
|
777
|
+
readonly save: "Kaydet";
|
|
778
|
+
readonly saveAndNew: "Kaydet ve yeni oluştur";
|
|
779
|
+
readonly cancel: "Vazgeç";
|
|
780
|
+
};
|
|
781
|
+
readonly tax_information: {
|
|
782
|
+
readonly title: "Türü";
|
|
783
|
+
readonly legal_person: "Tüzel kişi";
|
|
784
|
+
readonly real_person: "Gerçek kişi";
|
|
785
|
+
readonly legal_person_description: "Şahıs şirketleri dahil LTD, AŞ, vb. tüm şirketler Tüzel Kişi kapsamındadır.";
|
|
786
|
+
readonly tax_office: "Vergi dairesi";
|
|
787
|
+
readonly currency_rate: "Döviz kuru";
|
|
788
|
+
readonly purchase: "Alış";
|
|
789
|
+
readonly sale: "Satış";
|
|
790
|
+
readonly currency_rate_description: "Bakiye hesaplanırken kullanılır.";
|
|
791
|
+
};
|
|
792
|
+
readonly labels: {
|
|
793
|
+
readonly email: "E-posta adresi";
|
|
794
|
+
readonly phone: "Telefon numarası";
|
|
795
|
+
readonly fax: "Fax numarası";
|
|
796
|
+
readonly iban: "IBAN";
|
|
797
|
+
readonly accountName: "Cari unvan";
|
|
798
|
+
readonly accountNameShort: "Firma kısa adı";
|
|
799
|
+
readonly fullName: "Adı Soyadı";
|
|
800
|
+
readonly clientName: "Müşteri";
|
|
801
|
+
readonly addIbanButtonLabel: "IBAN ekle";
|
|
802
|
+
readonly addFaxButtonLabel: "Fax numarası ekle";
|
|
803
|
+
readonly address: "Adres";
|
|
804
|
+
readonly additionalAddress: "İl / İlçe";
|
|
805
|
+
readonly postalCode: "Posta kodu";
|
|
806
|
+
readonly addressAbroad: "Adres yurt dışında";
|
|
807
|
+
readonly eInvoiceAlias: "e-Fatura posta kutusu";
|
|
808
|
+
readonly eDespatchAlias: "e-İrsaliye posta kutusu";
|
|
809
|
+
readonly selectAlias: "Bir seçim yapınız";
|
|
810
|
+
readonly addressName: "Adres adı";
|
|
811
|
+
readonly addressNamePlaceholder: "Merkez, Şube, Depo, vb.";
|
|
812
|
+
readonly addressLine: "Adres";
|
|
813
|
+
readonly addressLinePlaceholder: "Mahalle, sokak, bina no, vb.";
|
|
814
|
+
readonly postalCodePlaceholder: "34000";
|
|
815
|
+
readonly city: "İl";
|
|
816
|
+
readonly district: "İlçe";
|
|
817
|
+
readonly addAddress: "Adres ekle";
|
|
818
|
+
readonly editAddress: "Adresi düzenle";
|
|
819
|
+
readonly deleteAddress: "Adresi sil";
|
|
820
|
+
readonly noAddresses: "Henüz adres eklenmedi";
|
|
821
|
+
};
|
|
822
|
+
readonly address_modal: {
|
|
823
|
+
readonly title_add: "Yeni adres ekle";
|
|
824
|
+
readonly title_edit: "Adresi düzenle";
|
|
825
|
+
readonly save: "Kaydet";
|
|
826
|
+
readonly cancel: "Vazgeç";
|
|
827
|
+
readonly delete: "Sil";
|
|
828
|
+
readonly delete_confirm_title: "Adresi sil";
|
|
829
|
+
readonly delete_confirm_description: "Bu adresi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
830
|
+
};
|
|
831
|
+
readonly errors: {
|
|
832
|
+
readonly accountName_required: "Cari unvan zorunludur.";
|
|
833
|
+
readonly accountNameShort_required: "Firma kısa adı zorunludur.";
|
|
834
|
+
readonly clientName_required: "Müşteri seçimi zorunludur.";
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
readonly list: {
|
|
838
|
+
readonly search_placeholder: "VKN/TCKN veya unvan ile ara...";
|
|
839
|
+
readonly filters: {
|
|
840
|
+
readonly categories: {
|
|
841
|
+
readonly balance_status: "Bakiye Durumu";
|
|
842
|
+
readonly account_type: "Cari Tipi";
|
|
843
|
+
};
|
|
844
|
+
readonly balance_status: {
|
|
845
|
+
readonly all: "Tümü";
|
|
846
|
+
readonly has_opening_balance: "Açılış Bakiyesi Olan";
|
|
847
|
+
readonly has_balance: "Bakiyesi Olan";
|
|
848
|
+
readonly no_balance: "Bakiyesi Olmayan";
|
|
849
|
+
readonly receivable: "Tahsil Edilecek";
|
|
850
|
+
readonly payable: "Ödenecek";
|
|
851
|
+
};
|
|
852
|
+
readonly account_type: {
|
|
853
|
+
readonly all: "Tümü";
|
|
854
|
+
readonly customer: "Müşteri";
|
|
855
|
+
readonly supplier: "Tedarikçi";
|
|
856
|
+
readonly both: "Her İkisi";
|
|
857
|
+
};
|
|
858
|
+
};
|
|
859
|
+
readonly columns: {
|
|
860
|
+
readonly vknTckn: "VKN/TCKN";
|
|
861
|
+
readonly accountNameShort: "Cari Unvan";
|
|
862
|
+
readonly receivable: "Tahsil Edilecek";
|
|
863
|
+
readonly payable: "Ödenecek";
|
|
864
|
+
};
|
|
865
|
+
readonly actions: {
|
|
866
|
+
readonly view: "Görüntüle";
|
|
867
|
+
readonly edit: "Düzenle";
|
|
868
|
+
readonly delete: "Sil";
|
|
869
|
+
readonly new: "Yeni Cari";
|
|
870
|
+
readonly bulk_delete: "Seçilenleri Sil";
|
|
871
|
+
readonly export: "Dışa Aktar";
|
|
872
|
+
readonly import: "İçe Aktar";
|
|
873
|
+
};
|
|
874
|
+
readonly column_visibility: {
|
|
875
|
+
readonly title: "Sütunlar";
|
|
876
|
+
readonly toggle: "Sütun görünürlüğü";
|
|
877
|
+
};
|
|
878
|
+
readonly row_selection: {
|
|
879
|
+
readonly selected: "{count} satır seçildi";
|
|
880
|
+
readonly clear: "Seçimi temizle";
|
|
881
|
+
};
|
|
882
|
+
readonly pagination: {
|
|
883
|
+
readonly previous: "Önceki";
|
|
884
|
+
readonly next: "Sonraki";
|
|
885
|
+
readonly page: "Sayfa";
|
|
886
|
+
readonly of: "/";
|
|
887
|
+
readonly rows_per_page: "Sayfa başına satır";
|
|
888
|
+
readonly total_records: "kayıt";
|
|
889
|
+
};
|
|
890
|
+
readonly no_results: "Sonuç bulunamadı";
|
|
891
|
+
readonly error: {
|
|
892
|
+
readonly fetch_failed: "Cariler yüklenirken bir hata oluştu.";
|
|
893
|
+
readonly delete_failed: "Cari silinirken bir hata oluştu.";
|
|
894
|
+
readonly bulk_delete_failed: "Seçili cariler silinirken bir hata oluştu.";
|
|
895
|
+
readonly retry: "Tekrar Dene";
|
|
896
|
+
};
|
|
897
|
+
readonly a11y: {
|
|
898
|
+
readonly select_all: "Tümünü seç";
|
|
899
|
+
readonly select_row: "Satırı seç";
|
|
900
|
+
readonly open_menu: "Menüyü aç";
|
|
901
|
+
};
|
|
902
|
+
readonly delete_dialog: {
|
|
903
|
+
readonly title: "Silme işlemini onaylayın";
|
|
904
|
+
readonly description: {
|
|
905
|
+
readonly single: "Bu cariyi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
906
|
+
readonly bulk: "{count} cariyi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
907
|
+
};
|
|
908
|
+
readonly button: "Seçilenleri Sil";
|
|
909
|
+
readonly confirm: "Onayla ve sil";
|
|
910
|
+
readonly cancel: "Vazgeç";
|
|
911
|
+
};
|
|
912
|
+
};
|
|
913
|
+
readonly show: {
|
|
914
|
+
readonly tabs: {
|
|
915
|
+
readonly invoices: "Açık Faturalar";
|
|
916
|
+
readonly history: "İşlem Geçmişi";
|
|
917
|
+
};
|
|
918
|
+
readonly history_empty: {
|
|
919
|
+
readonly title: "İşlem geçmiş yok";
|
|
920
|
+
readonly description: "İşlem geçmiş yok, geçmiş işlemler burada görebileceksiniz.";
|
|
921
|
+
};
|
|
922
|
+
readonly header: {
|
|
923
|
+
readonly fields: {
|
|
924
|
+
readonly accountName: "Cari Unvanı";
|
|
925
|
+
readonly shortName: "Kısa İsim";
|
|
926
|
+
readonly email: "E-posta Adresi";
|
|
927
|
+
readonly phone: "Telefon Numarası";
|
|
928
|
+
readonly fax: "Faks Numarası";
|
|
929
|
+
readonly address: "Açık Adres";
|
|
930
|
+
readonly taxInfo: "Vergi Bilgileri";
|
|
931
|
+
readonly iban: "İBAN Numaraları";
|
|
932
|
+
readonly exchangeRate: "Döviz Kuru";
|
|
933
|
+
readonly priceList: "Fiyat Listesi";
|
|
934
|
+
};
|
|
935
|
+
readonly toggle: {
|
|
936
|
+
readonly showSummary: "Özet bilgileri göster";
|
|
937
|
+
readonly showAll: "Tüm bilgileri göster";
|
|
938
|
+
};
|
|
939
|
+
readonly actions: {
|
|
940
|
+
readonly edit: "Düzenle";
|
|
941
|
+
readonly create_sale_invoice: "Satış faturası oluştur";
|
|
942
|
+
readonly create_purchase_receipt: "Alış fişi / faturası oluştur";
|
|
943
|
+
readonly create_export_invoice: "İhracat faturası oluştur";
|
|
944
|
+
readonly pay_with_akbank: "Akbank ile öde";
|
|
945
|
+
readonly add_payment: "Ödeme ekle";
|
|
946
|
+
readonly transfer: "Virman yap";
|
|
947
|
+
readonly archive: "Arşivle";
|
|
948
|
+
readonly delete: "Sil";
|
|
949
|
+
};
|
|
950
|
+
};
|
|
951
|
+
readonly sidebar: {
|
|
952
|
+
readonly summary: {
|
|
953
|
+
readonly overdue_title: "GECİKMİŞ İŞLEMLER";
|
|
954
|
+
readonly upcoming_title: "YAKLAŞAN İŞLEMLER";
|
|
955
|
+
readonly total_title: "TOPLAM";
|
|
956
|
+
readonly collection: "Tahsilat";
|
|
957
|
+
readonly payment: "Ödeme";
|
|
958
|
+
readonly total_collection: "Toplam Tahsilat";
|
|
959
|
+
};
|
|
960
|
+
readonly communication: {
|
|
961
|
+
readonly title: "Müşteri / Tedarikçi Mesajları";
|
|
962
|
+
readonly tabs: {
|
|
963
|
+
readonly all: "Tümü";
|
|
964
|
+
readonly messages: "Mesajlar";
|
|
965
|
+
readonly notes: "Notlar";
|
|
966
|
+
};
|
|
967
|
+
readonly empty_state: "Müşteri / Tedarikçiye ait geçmiş bir işlem bulunmuyor.";
|
|
968
|
+
readonly messages: {
|
|
969
|
+
readonly textarea_placeholder: "Mesaj yazınız...";
|
|
970
|
+
};
|
|
971
|
+
readonly notes: {
|
|
972
|
+
readonly textarea_placeholder: "Not ekleyin...";
|
|
973
|
+
};
|
|
974
|
+
readonly shared_with_count: "{count} kişi ile paylaşıldı";
|
|
975
|
+
};
|
|
976
|
+
readonly sharing: {
|
|
977
|
+
readonly send_statement: "Ekstre gönder";
|
|
978
|
+
readonly download_statement_pdf: "Ekstre PDF İndir";
|
|
979
|
+
};
|
|
980
|
+
};
|
|
981
|
+
};
|
|
982
|
+
};
|
|
983
|
+
};
|
|
984
|
+
readonly themes: {
|
|
985
|
+
readonly default: "Default";
|
|
986
|
+
readonly parasut: "Paraşüt";
|
|
987
|
+
readonly bizmu: "Bizmu";
|
|
988
|
+
};
|
|
989
|
+
};
|
|
990
|
+
|
|
991
|
+
export declare const getDictionary: () => Promise<{
|
|
992
|
+
readonly page: {
|
|
993
|
+
readonly home: {
|
|
994
|
+
readonly title: "Lorem ipsum dolor sit amet";
|
|
995
|
+
readonly description: " ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.";
|
|
996
|
+
};
|
|
997
|
+
};
|
|
998
|
+
readonly component: {
|
|
999
|
+
readonly input: {
|
|
1000
|
+
readonly placeholder: "Tasarımın Geleceğine Hoş Geldiniz";
|
|
1001
|
+
};
|
|
1002
|
+
readonly email_input: {
|
|
1003
|
+
readonly placeholder: "email@ornek.com";
|
|
1004
|
+
readonly error: {
|
|
1005
|
+
readonly invalid: "Lütfen geçerli bir e-posta adresi girin.";
|
|
1006
|
+
readonly required: "E-posta adresi zorunludur.";
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
readonly password_input: {
|
|
1010
|
+
readonly placeholder: "Parolanız";
|
|
1011
|
+
readonly strength: {
|
|
1012
|
+
readonly weak: "Zayıf";
|
|
1013
|
+
readonly medium: "Orta";
|
|
1014
|
+
readonly strong: "Güçlü";
|
|
1015
|
+
};
|
|
1016
|
+
readonly criteria: {
|
|
1017
|
+
readonly uppercase: "Parola bir büyük harf içermelidir.";
|
|
1018
|
+
readonly lowercase: "Parola bir küçük harf içermelidir.";
|
|
1019
|
+
readonly number: "Parola bir rakam içermelidir.";
|
|
1020
|
+
readonly special: "Parola bir özel karakter içermelidir.";
|
|
1021
|
+
readonly minLength: "Parola en az {min} karakter olmalıdır.";
|
|
1022
|
+
};
|
|
1023
|
+
readonly error: {
|
|
1024
|
+
readonly required: "Parola zorunludur.";
|
|
1025
|
+
readonly minLength: "Parola en az {min} karakter olmalıdır.";
|
|
1026
|
+
};
|
|
1027
|
+
readonly showPassword: "Parolayı göster";
|
|
1028
|
+
readonly hidePassword: "Parolayı gizle";
|
|
1029
|
+
};
|
|
1030
|
+
readonly button: {
|
|
1031
|
+
readonly submit: "Gönder";
|
|
1032
|
+
readonly export: "Dışa Aktar";
|
|
1033
|
+
readonly add_collection: "Tahsilat ekle";
|
|
1034
|
+
};
|
|
1035
|
+
readonly phone_input: {
|
|
1036
|
+
readonly placeholder: "Telefon numarası";
|
|
1037
|
+
readonly error: {
|
|
1038
|
+
readonly required: "Telefon numarası gerekli.";
|
|
1039
|
+
readonly invalid: "Geçersiz telefon numarası.";
|
|
1040
|
+
};
|
|
1041
|
+
};
|
|
1042
|
+
readonly postal_code_input: {
|
|
1043
|
+
readonly placeholder: "34000";
|
|
1044
|
+
readonly error: {
|
|
1045
|
+
readonly required: "Posta kodu zorunludur.";
|
|
1046
|
+
readonly invalid: "Posta kodu 5 haneli olmalıdır.";
|
|
1047
|
+
};
|
|
1048
|
+
};
|
|
1049
|
+
readonly date_picker: {
|
|
1050
|
+
readonly select_date: "Tarih seçiniz";
|
|
1051
|
+
readonly select_date_range: "Tarih aralığı seçiniz";
|
|
1052
|
+
};
|
|
1053
|
+
readonly currency: {
|
|
1054
|
+
readonly change_currency: "Döviz değiştir";
|
|
1055
|
+
readonly sale: "Satış";
|
|
1056
|
+
readonly purchase: "Alış";
|
|
1057
|
+
readonly currencies: {
|
|
1058
|
+
readonly try: "Türk Lirası";
|
|
1059
|
+
readonly usd: "ABD Doları";
|
|
1060
|
+
readonly eur: "Euro";
|
|
1061
|
+
readonly gbp: "İngiliz Sterlini";
|
|
1062
|
+
};
|
|
1063
|
+
};
|
|
1064
|
+
readonly sidebar: {
|
|
1065
|
+
readonly hideMenu: "Menüyü gizle";
|
|
1066
|
+
readonly showMenu: "Menüyü göster";
|
|
1067
|
+
};
|
|
1068
|
+
readonly vkn_tckn_input: {
|
|
1069
|
+
readonly label: "VKN/TCKN";
|
|
1070
|
+
readonly placeholder: "Câri VKN/TCKN";
|
|
1071
|
+
readonly description: "VKN/TCKN girildiğinde otomatik olarak GİB üzerinden sorgulanır.";
|
|
1072
|
+
readonly clear_tooltip: "Temizle";
|
|
1073
|
+
readonly searching: "Sorgulanıyor...";
|
|
1074
|
+
readonly success: "Bilgiler başarıyla getirildi";
|
|
1075
|
+
readonly error: {
|
|
1076
|
+
readonly required: "VKN/TCKN zorunludur.";
|
|
1077
|
+
readonly invalid_length: "VKN 10, TCKN 11 haneli olmalıdır.";
|
|
1078
|
+
readonly only_numbers: "Sadece rakam girebilirsiniz.";
|
|
1079
|
+
readonly invalid_format: "Geçersiz VKN/TCKN. 10 veya 11 haneli bir numara giriniz.";
|
|
1080
|
+
readonly not_found: "Bu VKN/TCKN ile kayıtlı mükellef bulunamadı.";
|
|
1081
|
+
readonly no_active_records: "Mükellef bulundu ancak aktif kayıt bulunamadı.";
|
|
1082
|
+
readonly invalid_tax_id: "Geçersiz VKN/TCKN formatı.";
|
|
1083
|
+
readonly missing_parameter: "VKN/TCKN parametresi eksik.";
|
|
1084
|
+
readonly api_error: "API bağlantı hatası. Lütfen tekrar deneyiniz.";
|
|
1085
|
+
readonly internal_error: "Sunucu hatası. Lütfen daha sonra tekrar deneyiniz.";
|
|
1086
|
+
readonly generic: "Bir hata oluştu. Lütfen tekrar deneyiniz.";
|
|
1087
|
+
readonly unexpected: "Beklenmeyen bir hata oluştu.";
|
|
1088
|
+
};
|
|
1089
|
+
};
|
|
1090
|
+
readonly iban_input: {
|
|
1091
|
+
readonly placeholder: "TR00 0000 0000 0000 0000 0000 00";
|
|
1092
|
+
readonly label: "IBAN";
|
|
1093
|
+
readonly description: "Uluslararası banka hesap numarası";
|
|
1094
|
+
readonly validating: "Doğrulanıyor...";
|
|
1095
|
+
readonly valid: "Geçerli IBAN";
|
|
1096
|
+
readonly error: {
|
|
1097
|
+
readonly required: "IBAN zorunludur.";
|
|
1098
|
+
readonly invalid: "Geçersiz IBAN.";
|
|
1099
|
+
readonly invalid_length: "IBAN 15-34 karakter uzunluğunda olmalıdır.";
|
|
1100
|
+
readonly validation_failed: "IBAN doğrulaması başarısız. Lütfen geçerli bir IBAN girin.";
|
|
1101
|
+
readonly service_unavailable: "IBAN doğrulama servisi kullanılamıyor.";
|
|
1102
|
+
};
|
|
1103
|
+
};
|
|
1104
|
+
readonly filter_dropdown: {
|
|
1105
|
+
readonly add_filter: "Filtreler";
|
|
1106
|
+
readonly remove_all: "Tümünü Kaldır";
|
|
1107
|
+
};
|
|
1108
|
+
readonly data_table: {
|
|
1109
|
+
readonly no_results: "Sonuç bulunamadı";
|
|
1110
|
+
readonly pagination: {
|
|
1111
|
+
readonly rows_per_page: "Sayfa başına satır";
|
|
1112
|
+
readonly total_records: "Kayıt";
|
|
1113
|
+
readonly previous: "Önceki";
|
|
1114
|
+
readonly next: "Sonraki";
|
|
1115
|
+
};
|
|
1116
|
+
};
|
|
1117
|
+
readonly delete_dialog: {
|
|
1118
|
+
readonly title: "Silme işlemini onaylayın";
|
|
1119
|
+
readonly description: {
|
|
1120
|
+
readonly single: "Bu kaydı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
1121
|
+
readonly bulk: "{count} kaydı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
1122
|
+
};
|
|
1123
|
+
readonly button: "Seçilenleri Sil";
|
|
1124
|
+
readonly confirm: "Onayla ve sil";
|
|
1125
|
+
readonly cancel: "Vazgeç";
|
|
1126
|
+
};
|
|
1127
|
+
readonly list_page_error: {
|
|
1128
|
+
readonly title: "Veriler yüklenirken bir hata oluştu";
|
|
1129
|
+
readonly retry: "Tekrar Dene";
|
|
1130
|
+
};
|
|
1131
|
+
};
|
|
1132
|
+
readonly features: {
|
|
1133
|
+
readonly accounts: {
|
|
1134
|
+
readonly form: {
|
|
1135
|
+
readonly actions: {
|
|
1136
|
+
readonly save: "Kaydet";
|
|
1137
|
+
readonly saveAndNew: "Kaydet ve yeni oluştur";
|
|
1138
|
+
readonly cancel: "Vazgeç";
|
|
1139
|
+
};
|
|
1140
|
+
readonly tax_information: {
|
|
1141
|
+
readonly title: "Türü";
|
|
1142
|
+
readonly legal_person: "Tüzel kişi";
|
|
1143
|
+
readonly real_person: "Gerçek kişi";
|
|
1144
|
+
readonly legal_person_description: "Şahıs şirketleri dahil LTD, AŞ, vb. tüm şirketler Tüzel Kişi kapsamındadır.";
|
|
1145
|
+
readonly tax_office: "Vergi dairesi";
|
|
1146
|
+
readonly currency_rate: "Döviz kuru";
|
|
1147
|
+
readonly purchase: "Alış";
|
|
1148
|
+
readonly sale: "Satış";
|
|
1149
|
+
readonly currency_rate_description: "Bakiye hesaplanırken kullanılır.";
|
|
1150
|
+
};
|
|
1151
|
+
readonly labels: {
|
|
1152
|
+
readonly email: "E-posta adresi";
|
|
1153
|
+
readonly phone: "Telefon numarası";
|
|
1154
|
+
readonly fax: "Fax numarası";
|
|
1155
|
+
readonly iban: "IBAN";
|
|
1156
|
+
readonly accountName: "Cari unvan";
|
|
1157
|
+
readonly accountNameShort: "Firma kısa adı";
|
|
1158
|
+
readonly fullName: "Adı Soyadı";
|
|
1159
|
+
readonly clientName: "Müşteri";
|
|
1160
|
+
readonly addIbanButtonLabel: "IBAN ekle";
|
|
1161
|
+
readonly addFaxButtonLabel: "Fax numarası ekle";
|
|
1162
|
+
readonly address: "Adres";
|
|
1163
|
+
readonly additionalAddress: "İl / İlçe";
|
|
1164
|
+
readonly postalCode: "Posta kodu";
|
|
1165
|
+
readonly addressAbroad: "Adres yurt dışında";
|
|
1166
|
+
readonly eInvoiceAlias: "e-Fatura posta kutusu";
|
|
1167
|
+
readonly eDespatchAlias: "e-İrsaliye posta kutusu";
|
|
1168
|
+
readonly selectAlias: "Bir seçim yapınız";
|
|
1169
|
+
readonly addressName: "Adres adı";
|
|
1170
|
+
readonly addressNamePlaceholder: "Merkez, Şube, Depo, vb.";
|
|
1171
|
+
readonly addressLine: "Adres";
|
|
1172
|
+
readonly addressLinePlaceholder: "Mahalle, sokak, bina no, vb.";
|
|
1173
|
+
readonly postalCodePlaceholder: "34000";
|
|
1174
|
+
readonly city: "İl";
|
|
1175
|
+
readonly district: "İlçe";
|
|
1176
|
+
readonly addAddress: "Adres ekle";
|
|
1177
|
+
readonly editAddress: "Adresi düzenle";
|
|
1178
|
+
readonly deleteAddress: "Adresi sil";
|
|
1179
|
+
readonly noAddresses: "Henüz adres eklenmedi";
|
|
1180
|
+
};
|
|
1181
|
+
readonly address_modal: {
|
|
1182
|
+
readonly title_add: "Yeni adres ekle";
|
|
1183
|
+
readonly title_edit: "Adresi düzenle";
|
|
1184
|
+
readonly save: "Kaydet";
|
|
1185
|
+
readonly cancel: "Vazgeç";
|
|
1186
|
+
readonly delete: "Sil";
|
|
1187
|
+
readonly delete_confirm_title: "Adresi sil";
|
|
1188
|
+
readonly delete_confirm_description: "Bu adresi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
1189
|
+
};
|
|
1190
|
+
readonly errors: {
|
|
1191
|
+
readonly accountName_required: "Cari unvan zorunludur.";
|
|
1192
|
+
readonly accountNameShort_required: "Firma kısa adı zorunludur.";
|
|
1193
|
+
readonly clientName_required: "Müşteri seçimi zorunludur.";
|
|
1194
|
+
};
|
|
1195
|
+
};
|
|
1196
|
+
readonly list: {
|
|
1197
|
+
readonly search_placeholder: "VKN/TCKN veya unvan ile ara...";
|
|
1198
|
+
readonly filters: {
|
|
1199
|
+
readonly categories: {
|
|
1200
|
+
readonly balance_status: "Bakiye Durumu";
|
|
1201
|
+
readonly account_type: "Cari Tipi";
|
|
1202
|
+
};
|
|
1203
|
+
readonly balance_status: {
|
|
1204
|
+
readonly all: "Tümü";
|
|
1205
|
+
readonly has_opening_balance: "Açılış Bakiyesi Olan";
|
|
1206
|
+
readonly has_balance: "Bakiyesi Olan";
|
|
1207
|
+
readonly no_balance: "Bakiyesi Olmayan";
|
|
1208
|
+
readonly receivable: "Tahsil Edilecek";
|
|
1209
|
+
readonly payable: "Ödenecek";
|
|
1210
|
+
};
|
|
1211
|
+
readonly account_type: {
|
|
1212
|
+
readonly all: "Tümü";
|
|
1213
|
+
readonly customer: "Müşteri";
|
|
1214
|
+
readonly supplier: "Tedarikçi";
|
|
1215
|
+
readonly both: "Her İkisi";
|
|
1216
|
+
};
|
|
1217
|
+
};
|
|
1218
|
+
readonly columns: {
|
|
1219
|
+
readonly vknTckn: "VKN/TCKN";
|
|
1220
|
+
readonly accountNameShort: "Cari Unvan";
|
|
1221
|
+
readonly receivable: "Tahsil Edilecek";
|
|
1222
|
+
readonly payable: "Ödenecek";
|
|
1223
|
+
};
|
|
1224
|
+
readonly actions: {
|
|
1225
|
+
readonly view: "Görüntüle";
|
|
1226
|
+
readonly edit: "Düzenle";
|
|
1227
|
+
readonly delete: "Sil";
|
|
1228
|
+
readonly new: "Yeni Cari";
|
|
1229
|
+
readonly bulk_delete: "Seçilenleri Sil";
|
|
1230
|
+
readonly export: "Dışa Aktar";
|
|
1231
|
+
readonly import: "İçe Aktar";
|
|
1232
|
+
};
|
|
1233
|
+
readonly column_visibility: {
|
|
1234
|
+
readonly title: "Sütunlar";
|
|
1235
|
+
readonly toggle: "Sütun görünürlüğü";
|
|
1236
|
+
};
|
|
1237
|
+
readonly row_selection: {
|
|
1238
|
+
readonly selected: "{count} satır seçildi";
|
|
1239
|
+
readonly clear: "Seçimi temizle";
|
|
1240
|
+
};
|
|
1241
|
+
readonly pagination: {
|
|
1242
|
+
readonly previous: "Önceki";
|
|
1243
|
+
readonly next: "Sonraki";
|
|
1244
|
+
readonly page: "Sayfa";
|
|
1245
|
+
readonly of: "/";
|
|
1246
|
+
readonly rows_per_page: "Sayfa başına satır";
|
|
1247
|
+
readonly total_records: "kayıt";
|
|
1248
|
+
};
|
|
1249
|
+
readonly no_results: "Sonuç bulunamadı";
|
|
1250
|
+
readonly error: {
|
|
1251
|
+
readonly fetch_failed: "Cariler yüklenirken bir hata oluştu.";
|
|
1252
|
+
readonly delete_failed: "Cari silinirken bir hata oluştu.";
|
|
1253
|
+
readonly bulk_delete_failed: "Seçili cariler silinirken bir hata oluştu.";
|
|
1254
|
+
readonly retry: "Tekrar Dene";
|
|
1255
|
+
};
|
|
1256
|
+
readonly a11y: {
|
|
1257
|
+
readonly select_all: "Tümünü seç";
|
|
1258
|
+
readonly select_row: "Satırı seç";
|
|
1259
|
+
readonly open_menu: "Menüyü aç";
|
|
1260
|
+
};
|
|
1261
|
+
readonly delete_dialog: {
|
|
1262
|
+
readonly title: "Silme işlemini onaylayın";
|
|
1263
|
+
readonly description: {
|
|
1264
|
+
readonly single: "Bu cariyi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
1265
|
+
readonly bulk: "{count} cariyi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
1266
|
+
};
|
|
1267
|
+
readonly button: "Seçilenleri Sil";
|
|
1268
|
+
readonly confirm: "Onayla ve sil";
|
|
1269
|
+
readonly cancel: "Vazgeç";
|
|
1270
|
+
};
|
|
1271
|
+
};
|
|
1272
|
+
readonly show: {
|
|
1273
|
+
readonly tabs: {
|
|
1274
|
+
readonly invoices: "Açık Faturalar";
|
|
1275
|
+
readonly history: "İşlem Geçmişi";
|
|
1276
|
+
};
|
|
1277
|
+
readonly history_empty: {
|
|
1278
|
+
readonly title: "İşlem geçmiş yok";
|
|
1279
|
+
readonly description: "İşlem geçmiş yok, geçmiş işlemler burada görebileceksiniz.";
|
|
1280
|
+
};
|
|
1281
|
+
readonly header: {
|
|
1282
|
+
readonly fields: {
|
|
1283
|
+
readonly accountName: "Cari Unvanı";
|
|
1284
|
+
readonly shortName: "Kısa İsim";
|
|
1285
|
+
readonly email: "E-posta Adresi";
|
|
1286
|
+
readonly phone: "Telefon Numarası";
|
|
1287
|
+
readonly fax: "Faks Numarası";
|
|
1288
|
+
readonly address: "Açık Adres";
|
|
1289
|
+
readonly taxInfo: "Vergi Bilgileri";
|
|
1290
|
+
readonly iban: "İBAN Numaraları";
|
|
1291
|
+
readonly exchangeRate: "Döviz Kuru";
|
|
1292
|
+
readonly priceList: "Fiyat Listesi";
|
|
1293
|
+
};
|
|
1294
|
+
readonly toggle: {
|
|
1295
|
+
readonly showSummary: "Özet bilgileri göster";
|
|
1296
|
+
readonly showAll: "Tüm bilgileri göster";
|
|
1297
|
+
};
|
|
1298
|
+
readonly actions: {
|
|
1299
|
+
readonly edit: "Düzenle";
|
|
1300
|
+
readonly create_sale_invoice: "Satış faturası oluştur";
|
|
1301
|
+
readonly create_purchase_receipt: "Alış fişi / faturası oluştur";
|
|
1302
|
+
readonly create_export_invoice: "İhracat faturası oluştur";
|
|
1303
|
+
readonly pay_with_akbank: "Akbank ile öde";
|
|
1304
|
+
readonly add_payment: "Ödeme ekle";
|
|
1305
|
+
readonly transfer: "Virman yap";
|
|
1306
|
+
readonly archive: "Arşivle";
|
|
1307
|
+
readonly delete: "Sil";
|
|
1308
|
+
};
|
|
1309
|
+
};
|
|
1310
|
+
readonly sidebar: {
|
|
1311
|
+
readonly summary: {
|
|
1312
|
+
readonly overdue_title: "GECİKMİŞ İŞLEMLER";
|
|
1313
|
+
readonly upcoming_title: "YAKLAŞAN İŞLEMLER";
|
|
1314
|
+
readonly total_title: "TOPLAM";
|
|
1315
|
+
readonly collection: "Tahsilat";
|
|
1316
|
+
readonly payment: "Ödeme";
|
|
1317
|
+
readonly total_collection: "Toplam Tahsilat";
|
|
1318
|
+
};
|
|
1319
|
+
readonly communication: {
|
|
1320
|
+
readonly title: "Müşteri / Tedarikçi Mesajları";
|
|
1321
|
+
readonly tabs: {
|
|
1322
|
+
readonly all: "Tümü";
|
|
1323
|
+
readonly messages: "Mesajlar";
|
|
1324
|
+
readonly notes: "Notlar";
|
|
1325
|
+
};
|
|
1326
|
+
readonly empty_state: "Müşteri / Tedarikçiye ait geçmiş bir işlem bulunmuyor.";
|
|
1327
|
+
readonly messages: {
|
|
1328
|
+
readonly textarea_placeholder: "Mesaj yazınız...";
|
|
1329
|
+
};
|
|
1330
|
+
readonly notes: {
|
|
1331
|
+
readonly textarea_placeholder: "Not ekleyin...";
|
|
1332
|
+
};
|
|
1333
|
+
readonly shared_with_count: "{count} kişi ile paylaşıldı";
|
|
1334
|
+
};
|
|
1335
|
+
readonly sharing: {
|
|
1336
|
+
readonly send_statement: "Ekstre gönder";
|
|
1337
|
+
readonly download_statement_pdf: "Ekstre PDF İndir";
|
|
1338
|
+
};
|
|
1339
|
+
};
|
|
1340
|
+
};
|
|
1341
|
+
};
|
|
1342
|
+
};
|
|
1343
|
+
readonly themes: {
|
|
1344
|
+
readonly default: "Default";
|
|
1345
|
+
readonly parasut: "Paraşüt";
|
|
1346
|
+
readonly bizmu: "Bizmu";
|
|
1347
|
+
};
|
|
1348
|
+
}>;
|
|
1349
|
+
|
|
1350
|
+
export declare function HoverCard({ ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Root>): JSX.Element;
|
|
1351
|
+
|
|
1352
|
+
export declare function HoverCardContent({ className, align, sideOffset, ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Content>): JSX.Element;
|
|
1353
|
+
|
|
1354
|
+
export declare function HoverCardTrigger({ ...props }: React_2.ComponentProps<typeof HoverCardPrimitive.Trigger>): JSX.Element;
|
|
1355
|
+
|
|
1356
|
+
export declare function IbanInput<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: IbanInputProps<TFieldValues, TName>): JSX.Element;
|
|
1357
|
+
|
|
1358
|
+
declare interface IbanInputProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<InputProps, 'type' | 'name' | 'placeholder'> {
|
|
1359
|
+
control: Control<TFieldValues>;
|
|
1360
|
+
name: TName;
|
|
1361
|
+
label?: string;
|
|
1362
|
+
description?: string;
|
|
1363
|
+
formItemClassName?: string;
|
|
1364
|
+
formLabelClassName?: string;
|
|
1365
|
+
formControlClassName?: string;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
export declare const ibanSchema: () => z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
1369
|
+
|
|
1370
|
+
export declare const Input: React_2.ForwardRefExoticComponent<InputProps & React_2.RefAttributes<HTMLInputElement>>;
|
|
1371
|
+
|
|
1372
|
+
export declare function InputGroup({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1373
|
+
|
|
1374
|
+
export declare function InputGroupAddon({ className, align, ...props }: React_2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): JSX.Element;
|
|
1375
|
+
|
|
1376
|
+
declare const inputGroupAddonVariants: (props?: ({
|
|
1377
|
+
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
|
|
1378
|
+
} & ClassProp) | undefined) => string;
|
|
1379
|
+
|
|
1380
|
+
export declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React_2.ComponentProps<typeof Button>, 'size'> & VariantProps<typeof inputGroupButtonVariants>): JSX.Element;
|
|
1381
|
+
|
|
1382
|
+
declare const inputGroupButtonVariants: (props?: ({
|
|
1383
|
+
size?: "sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined;
|
|
1384
|
+
} & ClassProp) | undefined) => string;
|
|
1385
|
+
|
|
1386
|
+
export declare function InputGroupInput({ className, ...props }: React_2.ComponentProps<'input'>): JSX.Element;
|
|
1387
|
+
|
|
1388
|
+
export declare function InputGroupText({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
1389
|
+
|
|
1390
|
+
export declare function InputGroupTextarea({ className, ...props }: React_2.ComponentProps<'textarea'>): JSX.Element;
|
|
1391
|
+
|
|
1392
|
+
export declare interface InputProps extends Omit<React_2.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
declare const inputVariants: (props?: ({
|
|
1396
|
+
variant?: "default" | "outline" | null | undefined;
|
|
1397
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1398
|
+
} & ClassProp) | undefined) => string;
|
|
1399
|
+
|
|
1400
|
+
export declare function Item({ className, variant, size, asChild, ...props }: React_2.ComponentProps<"div"> & VariantProps<typeof itemVariants> & {
|
|
1401
|
+
asChild?: boolean;
|
|
1402
|
+
}): JSX.Element;
|
|
1403
|
+
|
|
1404
|
+
export declare function ItemActions({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
1405
|
+
|
|
1406
|
+
export declare function ItemContent({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
1407
|
+
|
|
1408
|
+
export declare function ItemDescription({ className, ...props }: React_2.ComponentProps<"p">): JSX.Element;
|
|
1409
|
+
|
|
1410
|
+
export declare function ItemFooter({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
1411
|
+
|
|
1412
|
+
export declare function ItemGroup({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
1413
|
+
|
|
1414
|
+
export declare function ItemHeader({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
1415
|
+
|
|
1416
|
+
export declare function ItemMedia({ className, variant, ...props }: React_2.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): JSX.Element;
|
|
1417
|
+
|
|
1418
|
+
declare const itemMediaVariants: (props?: ({
|
|
1419
|
+
variant?: "default" | "image" | "icon" | null | undefined;
|
|
1420
|
+
} & ClassProp) | undefined) => string;
|
|
1421
|
+
|
|
1422
|
+
export declare function ItemSeparator({ className, ...props }: React_2.ComponentProps<typeof Separator>): JSX.Element;
|
|
1423
|
+
|
|
1424
|
+
export declare function ItemTitle({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
1425
|
+
|
|
1426
|
+
declare const itemVariants: (props?: ({
|
|
1427
|
+
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
1428
|
+
size?: "default" | "sm" | null | undefined;
|
|
1429
|
+
} & ClassProp) | undefined) => string;
|
|
1430
|
+
|
|
1431
|
+
export declare function Label({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
|
|
1432
|
+
|
|
1433
|
+
/**
|
|
1434
|
+
* Error state for list pages
|
|
1435
|
+
* Automatically gets error labels from i18n
|
|
1436
|
+
*/
|
|
1437
|
+
export declare function ListPageError({ message, onRetry, className, }: ListPageErrorProps): JSX.Element;
|
|
1438
|
+
|
|
1439
|
+
declare interface ListPageErrorProps {
|
|
1440
|
+
/**
|
|
1441
|
+
* Error message to display
|
|
1442
|
+
*/
|
|
1443
|
+
message: string;
|
|
1444
|
+
/**
|
|
1445
|
+
* Callback when retry button is clicked
|
|
1446
|
+
*/
|
|
1447
|
+
onRetry: () => void;
|
|
1448
|
+
/**
|
|
1449
|
+
* Optional className override
|
|
1450
|
+
*/
|
|
1451
|
+
className?: string;
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
/**
|
|
1455
|
+
* Loading skeleton for list pages
|
|
1456
|
+
* Automatically calculates content height based on app chrome
|
|
1457
|
+
*/
|
|
1458
|
+
export declare function ListPageLoading({ className }: ListPageLoadingProps): JSX.Element;
|
|
1459
|
+
|
|
1460
|
+
declare interface ListPageLoadingProps {
|
|
1461
|
+
/**
|
|
1462
|
+
* Optional className override
|
|
1463
|
+
*/
|
|
1464
|
+
className?: string;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
export declare function NavigationMenu({ className, children, viewport, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
|
|
1468
|
+
viewport?: boolean;
|
|
1469
|
+
}): JSX.Element;
|
|
1470
|
+
|
|
1471
|
+
export declare function NavigationMenuContent({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Content>): JSX.Element;
|
|
1472
|
+
|
|
1473
|
+
export declare function NavigationMenuIndicator({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): JSX.Element;
|
|
1474
|
+
|
|
1475
|
+
export declare function NavigationMenuItem({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Item>): JSX.Element;
|
|
1476
|
+
|
|
1477
|
+
export declare function NavigationMenuLink({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Link>): JSX.Element;
|
|
1478
|
+
|
|
1479
|
+
export declare function NavigationMenuList({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.List>): JSX.Element;
|
|
1480
|
+
|
|
1481
|
+
export declare function NavigationMenuTrigger({ className, children, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): JSX.Element;
|
|
1482
|
+
|
|
1483
|
+
export declare const navigationMenuTriggerStyle: (props?: ClassProp | undefined) => string;
|
|
1484
|
+
|
|
1485
|
+
export declare function NavigationMenuViewport({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): JSX.Element;
|
|
1486
|
+
|
|
1487
|
+
export declare function NavigationTrigger({ className, onClick, ...props }: default_2.ComponentProps<typeof SidebarMenuButton>): JSX.Element;
|
|
1488
|
+
|
|
1489
|
+
export declare function Pagination({ className, ...props }: React_2.ComponentProps<'nav'>): JSX.Element;
|
|
1490
|
+
|
|
1491
|
+
export declare function PaginationContent({ className, ...props }: React_2.ComponentProps<'ul'>): JSX.Element;
|
|
1492
|
+
|
|
1493
|
+
export declare function PaginationEllipsis({ className, ...props }: React_2.ComponentProps<'span'>): JSX.Element;
|
|
1494
|
+
|
|
1495
|
+
export declare function PaginationItem({ ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
1496
|
+
|
|
1497
|
+
export declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): JSX.Element;
|
|
1498
|
+
|
|
1499
|
+
declare type PaginationLinkProps = {
|
|
1500
|
+
isActive?: boolean;
|
|
1501
|
+
} & Pick<React_2.ComponentProps<typeof Button>, 'size'> & React_2.ComponentProps<'a'>;
|
|
1502
|
+
|
|
1503
|
+
export declare function PaginationNext({ className, ...props }: React_2.ComponentProps<typeof PaginationLink>): JSX.Element;
|
|
1504
|
+
|
|
1505
|
+
export declare function PaginationPrevious({ className, ...props }: React_2.ComponentProps<typeof PaginationLink>): JSX.Element;
|
|
1506
|
+
|
|
1507
|
+
export declare function PasswordInput<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ control, name, label, description, className, disabled, required, showStrengthIndicator, minLength, ...props }: PasswordInputProps<TFieldValues, TName>): JSX.Element;
|
|
1508
|
+
|
|
1509
|
+
declare interface PasswordInputProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<InputProps, 'type' | 'name' | 'placeholder'> {
|
|
1510
|
+
control: Control<TFieldValues>;
|
|
1511
|
+
name: TName;
|
|
1512
|
+
label?: string;
|
|
1513
|
+
description?: string;
|
|
1514
|
+
showStrengthIndicator?: boolean;
|
|
1515
|
+
minLength?: number;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
/**
|
|
1519
|
+
* Creates a Zod schema for password validation.
|
|
1520
|
+
*
|
|
1521
|
+
* @param options - Configuration for the schema.
|
|
1522
|
+
* @param {boolean} [options.required=true] - If true, the password is required.
|
|
1523
|
+
* @param {number} [options.minLength=8] - The minimum length for the password.
|
|
1524
|
+
* @returns A Zod schema for password validation.
|
|
1525
|
+
*/
|
|
1526
|
+
export declare const passwordSchema: (options?: {
|
|
1527
|
+
required?: boolean;
|
|
1528
|
+
minLength?: number;
|
|
1529
|
+
}) => z.ZodPipe<z.ZodString, z.ZodString> | z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"">, z.ZodString]>>;
|
|
1530
|
+
|
|
1531
|
+
export declare function PhoneInput<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ control, name, label, description, className, disabled, required, ...props }: PhoneInputProps<TFieldValues, TName>): JSX.Element;
|
|
1532
|
+
|
|
1533
|
+
declare type PhoneInputProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = Omit<InputProps, 'onChange' | 'value' | 'ref' | 'name'> & Omit<RPNInput.Props<typeof RPNInput.default>, 'onChange'> & {
|
|
1534
|
+
control: Control<TFieldValues>;
|
|
1535
|
+
name: TName;
|
|
1536
|
+
label?: string;
|
|
1537
|
+
description?: string;
|
|
1538
|
+
onChange?: (value: RPNInput.Value) => void;
|
|
1539
|
+
required?: boolean;
|
|
1540
|
+
formItemClassName?: string;
|
|
1541
|
+
formLabelClassName?: string;
|
|
1542
|
+
formControlClassName?: string;
|
|
1543
|
+
};
|
|
1544
|
+
|
|
1545
|
+
/**
|
|
1546
|
+
* Creates a Zod schema for phone number validation.
|
|
1547
|
+
*
|
|
1548
|
+
* @param options - Configuration for the schema.
|
|
1549
|
+
* @param {boolean} [options.required=false] - If true, the phone number is required.
|
|
1550
|
+
* @returns A Zod schema for phone number validation.
|
|
1551
|
+
*/
|
|
1552
|
+
export declare const phoneSchema: (options?: {
|
|
1553
|
+
required?: boolean;
|
|
1554
|
+
}) => z.ZodString | z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
1555
|
+
|
|
1556
|
+
export declare function Popover({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Root>): JSX.Element;
|
|
1557
|
+
|
|
1558
|
+
export declare function PopoverAnchor({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Anchor>): JSX.Element;
|
|
1559
|
+
|
|
1560
|
+
export declare function PopoverContent({ className, align, sideOffset, ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Content>): JSX.Element;
|
|
1561
|
+
|
|
1562
|
+
export declare function PopoverTrigger({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Trigger>): JSX.Element;
|
|
1563
|
+
|
|
1564
|
+
export declare function PostalCodeInput<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ control, name, label, description, className, disabled, required, ...props }: PostalCodeInputProps<TFieldValues, TName>): JSX.Element;
|
|
1565
|
+
|
|
1566
|
+
declare interface PostalCodeInputProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<InputProps, 'type' | 'name' | 'placeholder'> {
|
|
1567
|
+
control: Control<TFieldValues>;
|
|
1568
|
+
name: TName;
|
|
1569
|
+
label?: string;
|
|
1570
|
+
description?: string;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
/**
|
|
1574
|
+
* Creates a Zod schema for Turkish postal code validation (5 digits).
|
|
1575
|
+
*
|
|
1576
|
+
* @param options - Configuration for the schema.
|
|
1577
|
+
* @param {boolean} [options.required=false] - If true, the postal code is required.
|
|
1578
|
+
* @returns A Zod schema for postal code validation.
|
|
1579
|
+
*/
|
|
1580
|
+
export declare const postalCodeSchema: (options?: {
|
|
1581
|
+
required?: boolean;
|
|
1582
|
+
}) => z.ZodString | z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
1583
|
+
|
|
1584
|
+
declare interface ProductThemeContextType {
|
|
1585
|
+
themeSet: ThemeSet;
|
|
1586
|
+
setThemeSet: (set: ThemeSet) => void;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
export declare function ProductThemeProvider({ children, defaultSet, }: {
|
|
1590
|
+
children: React_2.ReactNode;
|
|
1591
|
+
defaultSet?: ThemeSet;
|
|
1592
|
+
}): JSX.Element;
|
|
1593
|
+
|
|
1594
|
+
export declare function ProductThemeSwitcher({ dictionary, }: ProductThemeSwitcherProps): JSX.Element;
|
|
1595
|
+
|
|
1596
|
+
declare interface ProductThemeSwitcherProps {
|
|
1597
|
+
dictionary: {
|
|
1598
|
+
themes: {
|
|
1599
|
+
default: string;
|
|
1600
|
+
parasut: string;
|
|
1601
|
+
bizmu: string;
|
|
1602
|
+
};
|
|
1603
|
+
};
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
export declare function Progress({ className, value, ...props }: React_2.ComponentProps<typeof ProgressPrimitive.Root>): JSX.Element;
|
|
1607
|
+
|
|
1608
|
+
export declare function RadioGroup({ className, ...props }: React_2.ComponentProps<typeof RadioGroupPrimitive.Root>): JSX.Element;
|
|
1609
|
+
|
|
1610
|
+
export declare function RadioGroupItem({ className, ...props }: React_2.ComponentProps<typeof RadioGroupPrimitive.Item>): JSX.Element;
|
|
1611
|
+
|
|
1612
|
+
export declare function ScrollArea({ className, children, ...props }: React_2.ComponentProps<typeof ScrollAreaPrimitive.Root>): JSX.Element;
|
|
1613
|
+
|
|
1614
|
+
export declare function ScrollBar({ className, orientation, ...props }: React_2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): JSX.Element;
|
|
1615
|
+
|
|
1616
|
+
export declare function SearchableDropdown<T extends object>({ items, value, onChange, onSelect, filterFn, renderItem, getItemKey, getDisplayValue, placeholder, onAddNew, addNewLabel, className, disabled, variant, }: SearchableDropdownProps<T>): JSX.Element;
|
|
1617
|
+
|
|
1618
|
+
export declare interface SearchableDropdownProps<T extends object> {
|
|
1619
|
+
items: T[];
|
|
1620
|
+
value?: string;
|
|
1621
|
+
onChange?: (value: string) => void;
|
|
1622
|
+
onSelect?: (item: T | null) => void;
|
|
1623
|
+
filterFn: (item: T, searchTerm: string) => boolean;
|
|
1624
|
+
renderItem: (item: T) => React_2.ReactNode;
|
|
1625
|
+
getItemKey: (item: T) => string | number;
|
|
1626
|
+
getDisplayValue: (item: T) => string;
|
|
1627
|
+
placeholder?: string;
|
|
1628
|
+
onAddNew?: (searchTerm: string) => void;
|
|
1629
|
+
addNewLabel?: string;
|
|
1630
|
+
className?: string;
|
|
1631
|
+
disabled?: boolean;
|
|
1632
|
+
variant?: 'default' | 'outline';
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
/**
|
|
1636
|
+
* Reusable search input with icon
|
|
1637
|
+
*/
|
|
1638
|
+
export declare function SearchInput({ value, onChange, placeholder, disabled, className, showClearButton, variant, }: SearchInputProps): JSX.Element;
|
|
1639
|
+
|
|
1640
|
+
/**
|
|
1641
|
+
* Search input props
|
|
1642
|
+
*/
|
|
1643
|
+
export declare interface SearchInputProps {
|
|
1644
|
+
/** Current search value */
|
|
1645
|
+
value: string;
|
|
1646
|
+
/** Callback when value changes */
|
|
1647
|
+
onChange: (value: string) => void;
|
|
1648
|
+
/** Placeholder text */
|
|
1649
|
+
placeholder?: string;
|
|
1650
|
+
/** Disabled state */
|
|
1651
|
+
disabled?: boolean;
|
|
1652
|
+
/** Additional CSS classes */
|
|
1653
|
+
className?: string;
|
|
1654
|
+
/** Show clear button when value exists */
|
|
1655
|
+
showClearButton?: boolean;
|
|
1656
|
+
/** Position variant (affects border radius) */
|
|
1657
|
+
variant?: 'default' | 'connected-left' | 'connected-right';
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;
|
|
1661
|
+
|
|
1662
|
+
export declare function SelectContent({ className, children, position, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Content>): JSX.Element;
|
|
1663
|
+
|
|
1664
|
+
export declare function SelectGroup({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Group>): JSX.Element;
|
|
1665
|
+
|
|
1666
|
+
export declare function SelectItem({ className, children, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Item>): JSX.Element;
|
|
1667
|
+
|
|
1668
|
+
export declare function SelectLabel({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Label>): JSX.Element;
|
|
1669
|
+
|
|
1670
|
+
export declare function SelectScrollDownButton({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): JSX.Element;
|
|
1671
|
+
|
|
1672
|
+
export declare function SelectScrollUpButton({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): JSX.Element;
|
|
1673
|
+
|
|
1674
|
+
export declare function SelectSeparator({ className, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Separator>): JSX.Element;
|
|
1675
|
+
|
|
1676
|
+
export declare const SelectTrigger: React_2.ForwardRefExoticComponent<Omit<SelectTriggerProps, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
1677
|
+
|
|
1678
|
+
export declare interface SelectTriggerProps extends Omit<React_2.ComponentProps<typeof SelectPrimitive.Trigger>, 'size'>, VariantProps<typeof selectTriggerVariants> {
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
declare const selectTriggerVariants: (props?: ({
|
|
1682
|
+
variant?: "default" | "outline" | null | undefined;
|
|
1683
|
+
size?: "default" | "sm" | null | undefined;
|
|
1684
|
+
} & ClassProp) | undefined) => string;
|
|
1685
|
+
|
|
1686
|
+
export declare function SelectValue({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Value>): JSX.Element;
|
|
1687
|
+
|
|
1688
|
+
export declare function Separator({ className, orientation, decorative, ...props }: React_2.ComponentProps<typeof SeparatorPrimitive.Root>): JSX.Element;
|
|
1689
|
+
|
|
1690
|
+
export declare function Sheet({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Root>): JSX.Element;
|
|
1691
|
+
|
|
1692
|
+
export declare function SheetClose({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Close>): JSX.Element;
|
|
1693
|
+
|
|
1694
|
+
export declare function SheetContent({ className, children, side, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
1695
|
+
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
1696
|
+
}): JSX.Element;
|
|
1697
|
+
|
|
1698
|
+
export declare function SheetDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): JSX.Element;
|
|
1699
|
+
|
|
1700
|
+
export declare function SheetFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1701
|
+
|
|
1702
|
+
export declare function SheetHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1703
|
+
|
|
1704
|
+
export declare function SheetTitle({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Title>): JSX.Element;
|
|
1705
|
+
|
|
1706
|
+
export declare function SheetTrigger({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Trigger>): JSX.Element;
|
|
1707
|
+
|
|
1708
|
+
export declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React_2.ComponentProps<'div'> & {
|
|
1709
|
+
side?: 'left' | 'right';
|
|
1710
|
+
variant?: 'sidebar' | 'floating' | 'inset';
|
|
1711
|
+
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
1712
|
+
}): JSX.Element;
|
|
1713
|
+
|
|
1714
|
+
export declare function SidebarContent({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1715
|
+
|
|
1716
|
+
declare type SidebarContextProps = {
|
|
1717
|
+
state: 'expanded' | 'collapsed';
|
|
1718
|
+
open: boolean;
|
|
1719
|
+
setOpen: (open: boolean) => void;
|
|
1720
|
+
openMobile: boolean;
|
|
1721
|
+
setOpenMobile: (open: boolean) => void;
|
|
1722
|
+
isMobile: boolean;
|
|
1723
|
+
toggleSidebar: () => void;
|
|
1724
|
+
};
|
|
1725
|
+
|
|
1726
|
+
export declare function SidebarFooter({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1727
|
+
|
|
1728
|
+
export declare function SidebarGroup({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1729
|
+
|
|
1730
|
+
export declare function SidebarGroupAction({ className, asChild, ...props }: React_2.ComponentProps<'button'> & {
|
|
1731
|
+
asChild?: boolean;
|
|
1732
|
+
}): JSX.Element;
|
|
1733
|
+
|
|
1734
|
+
export declare function SidebarGroupContent({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1735
|
+
|
|
1736
|
+
export declare function SidebarGroupLabel({ className, asChild, ...props }: React_2.ComponentProps<'div'> & {
|
|
1737
|
+
asChild?: boolean;
|
|
1738
|
+
}): JSX.Element;
|
|
1739
|
+
|
|
1740
|
+
export declare function SidebarHeader({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1741
|
+
|
|
1742
|
+
export declare function SidebarInput({ className, ...props }: React_2.ComponentProps<typeof Input>): JSX.Element;
|
|
1743
|
+
|
|
1744
|
+
export declare function SidebarInset({ className, ...props }: React_2.ComponentProps<'main'>): JSX.Element;
|
|
1745
|
+
|
|
1746
|
+
export declare function SidebarMenu({ className, ...props }: React_2.ComponentProps<'ul'>): JSX.Element;
|
|
1747
|
+
|
|
1748
|
+
export declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React_2.ComponentProps<'button'> & {
|
|
1749
|
+
asChild?: boolean;
|
|
1750
|
+
showOnHover?: boolean;
|
|
1751
|
+
}): JSX.Element;
|
|
1752
|
+
|
|
1753
|
+
export declare function SidebarMenuBadge({ className, ...props }: React_2.ComponentProps<'div'>): JSX.Element;
|
|
1754
|
+
|
|
1755
|
+
export declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React_2.ComponentProps<'button'> & {
|
|
1756
|
+
asChild?: boolean;
|
|
1757
|
+
isActive?: boolean;
|
|
1758
|
+
tooltip?: string | React_2.ComponentProps<typeof TooltipContent>;
|
|
1759
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): JSX.Element;
|
|
1760
|
+
|
|
1761
|
+
declare const sidebarMenuButtonVariants: (props?: ({
|
|
1762
|
+
variant?: "default" | "outline" | null | undefined;
|
|
1763
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1764
|
+
} & ClassProp) | undefined) => string;
|
|
1765
|
+
|
|
1766
|
+
export declare function SidebarMenuItem({ className, ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
1767
|
+
|
|
1768
|
+
export declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React_2.ComponentProps<'div'> & {
|
|
1769
|
+
showIcon?: boolean;
|
|
1770
|
+
}): JSX.Element;
|
|
1771
|
+
|
|
1772
|
+
export declare function SidebarMenuSub({ className, ...props }: React_2.ComponentProps<'ul'>): JSX.Element;
|
|
1773
|
+
|
|
1774
|
+
export declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React_2.ComponentProps<'a'> & {
|
|
1775
|
+
asChild?: boolean;
|
|
1776
|
+
size?: 'sm' | 'md';
|
|
1777
|
+
isActive?: boolean;
|
|
1778
|
+
}): JSX.Element;
|
|
1779
|
+
|
|
1780
|
+
export declare function SidebarMenuSubItem({ className, ...props }: React_2.ComponentProps<'li'>): JSX.Element;
|
|
1781
|
+
|
|
1782
|
+
export declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React_2.ComponentProps<'div'> & {
|
|
1783
|
+
defaultOpen?: boolean;
|
|
1784
|
+
open?: boolean;
|
|
1785
|
+
onOpenChange?: (open: boolean) => void;
|
|
1786
|
+
}): JSX.Element;
|
|
1787
|
+
|
|
1788
|
+
export declare function SidebarRightShell({ children }: SidebarRightShellProps): JSX.Element;
|
|
1789
|
+
|
|
1790
|
+
declare interface SidebarRightShellProps {
|
|
1791
|
+
children: ReactNode;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
export declare function SidebarSeparator({ className, ...props }: React_2.ComponentProps<typeof Separator>): JSX.Element;
|
|
1795
|
+
|
|
1796
|
+
export declare function SidebarTrigger({ onClick, ...props }: React_2.ComponentProps<typeof Button>): JSX.Element;
|
|
1797
|
+
|
|
1798
|
+
export declare function Skeleton({ className, ...props }: React.ComponentProps<'div'>): JSX.Element;
|
|
1799
|
+
|
|
1800
|
+
export declare function Switch({ className, ...props }: React_2.ComponentProps<typeof SwitchPrimitive.Root>): JSX.Element;
|
|
1801
|
+
|
|
1802
|
+
export declare const Table: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLTableElement> & {
|
|
1803
|
+
noWrapper?: boolean;
|
|
1804
|
+
divClassname?: string;
|
|
1805
|
+
sticky?: boolean;
|
|
1806
|
+
} & React_2.RefAttributes<HTMLTableElement>>;
|
|
1807
|
+
|
|
1808
|
+
export declare function TableBody({ className, rounded, constrainColumns, ...props }: React_2.ComponentProps<'tbody'> & {
|
|
1809
|
+
rounded?: boolean;
|
|
1810
|
+
constrainColumns?: boolean;
|
|
1811
|
+
}): JSX.Element;
|
|
1812
|
+
|
|
1813
|
+
export declare function TableCaption({ className, ...props }: React_2.ComponentProps<'caption'>): JSX.Element;
|
|
1814
|
+
|
|
1815
|
+
export declare function TableCell({ className, ...props }: React_2.ComponentProps<'td'>): JSX.Element;
|
|
1816
|
+
|
|
1817
|
+
export declare function TableFooter({ className, ...props }: React_2.ComponentProps<'tfoot'>): JSX.Element;
|
|
1818
|
+
|
|
1819
|
+
export declare function TableHead({ className, ...props }: React_2.ComponentProps<'th'>): JSX.Element;
|
|
1820
|
+
|
|
1821
|
+
export declare function TableHeader({ className, sticky, constrainColumns, stickyTop, ...props }: React_2.ComponentProps<'thead'> & {
|
|
1822
|
+
sticky?: boolean;
|
|
1823
|
+
constrainColumns?: boolean;
|
|
1824
|
+
stickyTop?: number;
|
|
1825
|
+
}): JSX.Element;
|
|
1826
|
+
|
|
1827
|
+
/**
|
|
1828
|
+
* Numbered pagination component for TanStack Table
|
|
1829
|
+
* Features:
|
|
1830
|
+
* - Previous/Next buttons with chevron icons
|
|
1831
|
+
* - Numbered page buttons
|
|
1832
|
+
* - Smart ellipsis for large page counts
|
|
1833
|
+
* - Active page highlighting
|
|
1834
|
+
* - Disabled states
|
|
1835
|
+
*/
|
|
1836
|
+
export declare function TablePagination<TData>({ table }: TablePaginationProps<TData>): JSX.Element;
|
|
1837
|
+
|
|
1838
|
+
declare interface TablePaginationProps<TData> {
|
|
1839
|
+
table: Table_2<TData>;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
export declare function TableRow({ className, ...props }: React_2.ComponentProps<'tr'>): JSX.Element;
|
|
1843
|
+
|
|
1844
|
+
export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX.Element;
|
|
1845
|
+
|
|
1846
|
+
export declare function TabsAlt({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.Root>): JSX.Element;
|
|
1847
|
+
|
|
1848
|
+
export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Content>): JSX.Element;
|
|
1849
|
+
|
|
1850
|
+
export declare function TabsContentAlt({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.Content>): JSX.Element;
|
|
1851
|
+
|
|
1852
|
+
export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List>): JSX.Element;
|
|
1853
|
+
|
|
1854
|
+
export declare function TabsListAlt({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.List>): JSX.Element;
|
|
1855
|
+
|
|
1856
|
+
export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): JSX.Element;
|
|
1857
|
+
|
|
1858
|
+
export declare function TabsTriggerAlt({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.Trigger>): JSX.Element;
|
|
1859
|
+
|
|
1860
|
+
export declare const Textarea: React_2.ForwardRefExoticComponent<TextareaProps & React_2.RefAttributes<HTMLTextAreaElement>>;
|
|
1861
|
+
|
|
1862
|
+
export declare interface TextareaProps extends React_2.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
declare const textareaVariants: (props?: ({
|
|
1866
|
+
variant?: "default" | "outline" | null | undefined;
|
|
1867
|
+
} & ClassProp) | undefined) => string;
|
|
1868
|
+
|
|
1869
|
+
export declare function ThemeProvider({ children, ...props }: React_2.ComponentProps<typeof ThemeProvider_2>): JSX.Element;
|
|
1870
|
+
|
|
1871
|
+
declare const THEMES: {
|
|
1872
|
+
readonly light: "";
|
|
1873
|
+
readonly dark: ".dark";
|
|
1874
|
+
};
|
|
1875
|
+
|
|
1876
|
+
declare type ThemeSet = 'default' | 'parasut' | 'bizmu';
|
|
1877
|
+
|
|
1878
|
+
export declare const Toaster: ({ ...props }: ToasterProps) => JSX.Element;
|
|
1879
|
+
|
|
1880
|
+
export declare function Tooltip({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Root>): JSX.Element;
|
|
1881
|
+
|
|
1882
|
+
export declare function TooltipContent({ className, sideOffset, children, ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Content>): JSX.Element;
|
|
1883
|
+
|
|
1884
|
+
export declare function TooltipProvider({ delayDuration, ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Provider>): JSX.Element;
|
|
1885
|
+
|
|
1886
|
+
export declare function TooltipTrigger({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Trigger>): JSX.Element;
|
|
1887
|
+
|
|
1888
|
+
declare type UseCarouselParameters = Parameters<typeof default_3>;
|
|
1889
|
+
|
|
1890
|
+
export declare const useCurrencyRates: (currencyCode: CurrencyCode | null) => CurrencyRateState;
|
|
1891
|
+
|
|
1892
|
+
export declare const useDictionary: () => {
|
|
1893
|
+
readonly page: {
|
|
1894
|
+
readonly home: {
|
|
1895
|
+
readonly title: "Lorem ipsum dolor sit amet";
|
|
1896
|
+
readonly description: " ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.";
|
|
1897
|
+
};
|
|
1898
|
+
};
|
|
1899
|
+
readonly component: {
|
|
1900
|
+
readonly input: {
|
|
1901
|
+
readonly placeholder: "Tasarımın Geleceğine Hoş Geldiniz";
|
|
1902
|
+
};
|
|
1903
|
+
readonly email_input: {
|
|
1904
|
+
readonly placeholder: "email@ornek.com";
|
|
1905
|
+
readonly error: {
|
|
1906
|
+
readonly invalid: "Lütfen geçerli bir e-posta adresi girin.";
|
|
1907
|
+
readonly required: "E-posta adresi zorunludur.";
|
|
1908
|
+
};
|
|
1909
|
+
};
|
|
1910
|
+
readonly password_input: {
|
|
1911
|
+
readonly placeholder: "Parolanız";
|
|
1912
|
+
readonly strength: {
|
|
1913
|
+
readonly weak: "Zayıf";
|
|
1914
|
+
readonly medium: "Orta";
|
|
1915
|
+
readonly strong: "Güçlü";
|
|
1916
|
+
};
|
|
1917
|
+
readonly criteria: {
|
|
1918
|
+
readonly uppercase: "Parola bir büyük harf içermelidir.";
|
|
1919
|
+
readonly lowercase: "Parola bir küçük harf içermelidir.";
|
|
1920
|
+
readonly number: "Parola bir rakam içermelidir.";
|
|
1921
|
+
readonly special: "Parola bir özel karakter içermelidir.";
|
|
1922
|
+
readonly minLength: "Parola en az {min} karakter olmalıdır.";
|
|
1923
|
+
};
|
|
1924
|
+
readonly error: {
|
|
1925
|
+
readonly required: "Parola zorunludur.";
|
|
1926
|
+
readonly minLength: "Parola en az {min} karakter olmalıdır.";
|
|
1927
|
+
};
|
|
1928
|
+
readonly showPassword: "Parolayı göster";
|
|
1929
|
+
readonly hidePassword: "Parolayı gizle";
|
|
1930
|
+
};
|
|
1931
|
+
readonly button: {
|
|
1932
|
+
readonly submit: "Gönder";
|
|
1933
|
+
readonly export: "Dışa Aktar";
|
|
1934
|
+
readonly add_collection: "Tahsilat ekle";
|
|
1935
|
+
};
|
|
1936
|
+
readonly phone_input: {
|
|
1937
|
+
readonly placeholder: "Telefon numarası";
|
|
1938
|
+
readonly error: {
|
|
1939
|
+
readonly required: "Telefon numarası gerekli.";
|
|
1940
|
+
readonly invalid: "Geçersiz telefon numarası.";
|
|
1941
|
+
};
|
|
1942
|
+
};
|
|
1943
|
+
readonly postal_code_input: {
|
|
1944
|
+
readonly placeholder: "34000";
|
|
1945
|
+
readonly error: {
|
|
1946
|
+
readonly required: "Posta kodu zorunludur.";
|
|
1947
|
+
readonly invalid: "Posta kodu 5 haneli olmalıdır.";
|
|
1948
|
+
};
|
|
1949
|
+
};
|
|
1950
|
+
readonly date_picker: {
|
|
1951
|
+
readonly select_date: "Tarih seçiniz";
|
|
1952
|
+
readonly select_date_range: "Tarih aralığı seçiniz";
|
|
1953
|
+
};
|
|
1954
|
+
readonly currency: {
|
|
1955
|
+
readonly change_currency: "Döviz değiştir";
|
|
1956
|
+
readonly sale: "Satış";
|
|
1957
|
+
readonly purchase: "Alış";
|
|
1958
|
+
readonly currencies: {
|
|
1959
|
+
readonly try: "Türk Lirası";
|
|
1960
|
+
readonly usd: "ABD Doları";
|
|
1961
|
+
readonly eur: "Euro";
|
|
1962
|
+
readonly gbp: "İngiliz Sterlini";
|
|
1963
|
+
};
|
|
1964
|
+
};
|
|
1965
|
+
readonly sidebar: {
|
|
1966
|
+
readonly hideMenu: "Menüyü gizle";
|
|
1967
|
+
readonly showMenu: "Menüyü göster";
|
|
1968
|
+
};
|
|
1969
|
+
readonly vkn_tckn_input: {
|
|
1970
|
+
readonly label: "VKN/TCKN";
|
|
1971
|
+
readonly placeholder: "Câri VKN/TCKN";
|
|
1972
|
+
readonly description: "VKN/TCKN girildiğinde otomatik olarak GİB üzerinden sorgulanır.";
|
|
1973
|
+
readonly clear_tooltip: "Temizle";
|
|
1974
|
+
readonly searching: "Sorgulanıyor...";
|
|
1975
|
+
readonly success: "Bilgiler başarıyla getirildi";
|
|
1976
|
+
readonly error: {
|
|
1977
|
+
readonly required: "VKN/TCKN zorunludur.";
|
|
1978
|
+
readonly invalid_length: "VKN 10, TCKN 11 haneli olmalıdır.";
|
|
1979
|
+
readonly only_numbers: "Sadece rakam girebilirsiniz.";
|
|
1980
|
+
readonly invalid_format: "Geçersiz VKN/TCKN. 10 veya 11 haneli bir numara giriniz.";
|
|
1981
|
+
readonly not_found: "Bu VKN/TCKN ile kayıtlı mükellef bulunamadı.";
|
|
1982
|
+
readonly no_active_records: "Mükellef bulundu ancak aktif kayıt bulunamadı.";
|
|
1983
|
+
readonly invalid_tax_id: "Geçersiz VKN/TCKN formatı.";
|
|
1984
|
+
readonly missing_parameter: "VKN/TCKN parametresi eksik.";
|
|
1985
|
+
readonly api_error: "API bağlantı hatası. Lütfen tekrar deneyiniz.";
|
|
1986
|
+
readonly internal_error: "Sunucu hatası. Lütfen daha sonra tekrar deneyiniz.";
|
|
1987
|
+
readonly generic: "Bir hata oluştu. Lütfen tekrar deneyiniz.";
|
|
1988
|
+
readonly unexpected: "Beklenmeyen bir hata oluştu.";
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
readonly iban_input: {
|
|
1992
|
+
readonly placeholder: "TR00 0000 0000 0000 0000 0000 00";
|
|
1993
|
+
readonly label: "IBAN";
|
|
1994
|
+
readonly description: "Uluslararası banka hesap numarası";
|
|
1995
|
+
readonly validating: "Doğrulanıyor...";
|
|
1996
|
+
readonly valid: "Geçerli IBAN";
|
|
1997
|
+
readonly error: {
|
|
1998
|
+
readonly required: "IBAN zorunludur.";
|
|
1999
|
+
readonly invalid: "Geçersiz IBAN.";
|
|
2000
|
+
readonly invalid_length: "IBAN 15-34 karakter uzunluğunda olmalıdır.";
|
|
2001
|
+
readonly validation_failed: "IBAN doğrulaması başarısız. Lütfen geçerli bir IBAN girin.";
|
|
2002
|
+
readonly service_unavailable: "IBAN doğrulama servisi kullanılamıyor.";
|
|
2003
|
+
};
|
|
2004
|
+
};
|
|
2005
|
+
readonly filter_dropdown: {
|
|
2006
|
+
readonly add_filter: "Filtreler";
|
|
2007
|
+
readonly remove_all: "Tümünü Kaldır";
|
|
2008
|
+
};
|
|
2009
|
+
readonly data_table: {
|
|
2010
|
+
readonly no_results: "Sonuç bulunamadı";
|
|
2011
|
+
readonly pagination: {
|
|
2012
|
+
readonly rows_per_page: "Sayfa başına satır";
|
|
2013
|
+
readonly total_records: "Kayıt";
|
|
2014
|
+
readonly previous: "Önceki";
|
|
2015
|
+
readonly next: "Sonraki";
|
|
2016
|
+
};
|
|
2017
|
+
};
|
|
2018
|
+
readonly delete_dialog: {
|
|
2019
|
+
readonly title: "Silme işlemini onaylayın";
|
|
2020
|
+
readonly description: {
|
|
2021
|
+
readonly single: "Bu kaydı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
2022
|
+
readonly bulk: "{count} kaydı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
2023
|
+
};
|
|
2024
|
+
readonly button: "Seçilenleri Sil";
|
|
2025
|
+
readonly confirm: "Onayla ve sil";
|
|
2026
|
+
readonly cancel: "Vazgeç";
|
|
2027
|
+
};
|
|
2028
|
+
readonly list_page_error: {
|
|
2029
|
+
readonly title: "Veriler yüklenirken bir hata oluştu";
|
|
2030
|
+
readonly retry: "Tekrar Dene";
|
|
2031
|
+
};
|
|
2032
|
+
};
|
|
2033
|
+
readonly features: {
|
|
2034
|
+
readonly accounts: {
|
|
2035
|
+
readonly form: {
|
|
2036
|
+
readonly actions: {
|
|
2037
|
+
readonly save: "Kaydet";
|
|
2038
|
+
readonly saveAndNew: "Kaydet ve yeni oluştur";
|
|
2039
|
+
readonly cancel: "Vazgeç";
|
|
2040
|
+
};
|
|
2041
|
+
readonly tax_information: {
|
|
2042
|
+
readonly title: "Türü";
|
|
2043
|
+
readonly legal_person: "Tüzel kişi";
|
|
2044
|
+
readonly real_person: "Gerçek kişi";
|
|
2045
|
+
readonly legal_person_description: "Şahıs şirketleri dahil LTD, AŞ, vb. tüm şirketler Tüzel Kişi kapsamındadır.";
|
|
2046
|
+
readonly tax_office: "Vergi dairesi";
|
|
2047
|
+
readonly currency_rate: "Döviz kuru";
|
|
2048
|
+
readonly purchase: "Alış";
|
|
2049
|
+
readonly sale: "Satış";
|
|
2050
|
+
readonly currency_rate_description: "Bakiye hesaplanırken kullanılır.";
|
|
2051
|
+
};
|
|
2052
|
+
readonly labels: {
|
|
2053
|
+
readonly email: "E-posta adresi";
|
|
2054
|
+
readonly phone: "Telefon numarası";
|
|
2055
|
+
readonly fax: "Fax numarası";
|
|
2056
|
+
readonly iban: "IBAN";
|
|
2057
|
+
readonly accountName: "Cari unvan";
|
|
2058
|
+
readonly accountNameShort: "Firma kısa adı";
|
|
2059
|
+
readonly fullName: "Adı Soyadı";
|
|
2060
|
+
readonly clientName: "Müşteri";
|
|
2061
|
+
readonly addIbanButtonLabel: "IBAN ekle";
|
|
2062
|
+
readonly addFaxButtonLabel: "Fax numarası ekle";
|
|
2063
|
+
readonly address: "Adres";
|
|
2064
|
+
readonly additionalAddress: "İl / İlçe";
|
|
2065
|
+
readonly postalCode: "Posta kodu";
|
|
2066
|
+
readonly addressAbroad: "Adres yurt dışında";
|
|
2067
|
+
readonly eInvoiceAlias: "e-Fatura posta kutusu";
|
|
2068
|
+
readonly eDespatchAlias: "e-İrsaliye posta kutusu";
|
|
2069
|
+
readonly selectAlias: "Bir seçim yapınız";
|
|
2070
|
+
readonly addressName: "Adres adı";
|
|
2071
|
+
readonly addressNamePlaceholder: "Merkez, Şube, Depo, vb.";
|
|
2072
|
+
readonly addressLine: "Adres";
|
|
2073
|
+
readonly addressLinePlaceholder: "Mahalle, sokak, bina no, vb.";
|
|
2074
|
+
readonly postalCodePlaceholder: "34000";
|
|
2075
|
+
readonly city: "İl";
|
|
2076
|
+
readonly district: "İlçe";
|
|
2077
|
+
readonly addAddress: "Adres ekle";
|
|
2078
|
+
readonly editAddress: "Adresi düzenle";
|
|
2079
|
+
readonly deleteAddress: "Adresi sil";
|
|
2080
|
+
readonly noAddresses: "Henüz adres eklenmedi";
|
|
2081
|
+
};
|
|
2082
|
+
readonly address_modal: {
|
|
2083
|
+
readonly title_add: "Yeni adres ekle";
|
|
2084
|
+
readonly title_edit: "Adresi düzenle";
|
|
2085
|
+
readonly save: "Kaydet";
|
|
2086
|
+
readonly cancel: "Vazgeç";
|
|
2087
|
+
readonly delete: "Sil";
|
|
2088
|
+
readonly delete_confirm_title: "Adresi sil";
|
|
2089
|
+
readonly delete_confirm_description: "Bu adresi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
2090
|
+
};
|
|
2091
|
+
readonly errors: {
|
|
2092
|
+
readonly accountName_required: "Cari unvan zorunludur.";
|
|
2093
|
+
readonly accountNameShort_required: "Firma kısa adı zorunludur.";
|
|
2094
|
+
readonly clientName_required: "Müşteri seçimi zorunludur.";
|
|
2095
|
+
};
|
|
2096
|
+
};
|
|
2097
|
+
readonly list: {
|
|
2098
|
+
readonly search_placeholder: "VKN/TCKN veya unvan ile ara...";
|
|
2099
|
+
readonly filters: {
|
|
2100
|
+
readonly categories: {
|
|
2101
|
+
readonly balance_status: "Bakiye Durumu";
|
|
2102
|
+
readonly account_type: "Cari Tipi";
|
|
2103
|
+
};
|
|
2104
|
+
readonly balance_status: {
|
|
2105
|
+
readonly all: "Tümü";
|
|
2106
|
+
readonly has_opening_balance: "Açılış Bakiyesi Olan";
|
|
2107
|
+
readonly has_balance: "Bakiyesi Olan";
|
|
2108
|
+
readonly no_balance: "Bakiyesi Olmayan";
|
|
2109
|
+
readonly receivable: "Tahsil Edilecek";
|
|
2110
|
+
readonly payable: "Ödenecek";
|
|
2111
|
+
};
|
|
2112
|
+
readonly account_type: {
|
|
2113
|
+
readonly all: "Tümü";
|
|
2114
|
+
readonly customer: "Müşteri";
|
|
2115
|
+
readonly supplier: "Tedarikçi";
|
|
2116
|
+
readonly both: "Her İkisi";
|
|
2117
|
+
};
|
|
2118
|
+
};
|
|
2119
|
+
readonly columns: {
|
|
2120
|
+
readonly vknTckn: "VKN/TCKN";
|
|
2121
|
+
readonly accountNameShort: "Cari Unvan";
|
|
2122
|
+
readonly receivable: "Tahsil Edilecek";
|
|
2123
|
+
readonly payable: "Ödenecek";
|
|
2124
|
+
};
|
|
2125
|
+
readonly actions: {
|
|
2126
|
+
readonly view: "Görüntüle";
|
|
2127
|
+
readonly edit: "Düzenle";
|
|
2128
|
+
readonly delete: "Sil";
|
|
2129
|
+
readonly new: "Yeni Cari";
|
|
2130
|
+
readonly bulk_delete: "Seçilenleri Sil";
|
|
2131
|
+
readonly export: "Dışa Aktar";
|
|
2132
|
+
readonly import: "İçe Aktar";
|
|
2133
|
+
};
|
|
2134
|
+
readonly column_visibility: {
|
|
2135
|
+
readonly title: "Sütunlar";
|
|
2136
|
+
readonly toggle: "Sütun görünürlüğü";
|
|
2137
|
+
};
|
|
2138
|
+
readonly row_selection: {
|
|
2139
|
+
readonly selected: "{count} satır seçildi";
|
|
2140
|
+
readonly clear: "Seçimi temizle";
|
|
2141
|
+
};
|
|
2142
|
+
readonly pagination: {
|
|
2143
|
+
readonly previous: "Önceki";
|
|
2144
|
+
readonly next: "Sonraki";
|
|
2145
|
+
readonly page: "Sayfa";
|
|
2146
|
+
readonly of: "/";
|
|
2147
|
+
readonly rows_per_page: "Sayfa başına satır";
|
|
2148
|
+
readonly total_records: "kayıt";
|
|
2149
|
+
};
|
|
2150
|
+
readonly no_results: "Sonuç bulunamadı";
|
|
2151
|
+
readonly error: {
|
|
2152
|
+
readonly fetch_failed: "Cariler yüklenirken bir hata oluştu.";
|
|
2153
|
+
readonly delete_failed: "Cari silinirken bir hata oluştu.";
|
|
2154
|
+
readonly bulk_delete_failed: "Seçili cariler silinirken bir hata oluştu.";
|
|
2155
|
+
readonly retry: "Tekrar Dene";
|
|
2156
|
+
};
|
|
2157
|
+
readonly a11y: {
|
|
2158
|
+
readonly select_all: "Tümünü seç";
|
|
2159
|
+
readonly select_row: "Satırı seç";
|
|
2160
|
+
readonly open_menu: "Menüyü aç";
|
|
2161
|
+
};
|
|
2162
|
+
readonly delete_dialog: {
|
|
2163
|
+
readonly title: "Silme işlemini onaylayın";
|
|
2164
|
+
readonly description: {
|
|
2165
|
+
readonly single: "Bu cariyi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
2166
|
+
readonly bulk: "{count} cariyi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.";
|
|
2167
|
+
};
|
|
2168
|
+
readonly button: "Seçilenleri Sil";
|
|
2169
|
+
readonly confirm: "Onayla ve sil";
|
|
2170
|
+
readonly cancel: "Vazgeç";
|
|
2171
|
+
};
|
|
2172
|
+
};
|
|
2173
|
+
readonly show: {
|
|
2174
|
+
readonly tabs: {
|
|
2175
|
+
readonly invoices: "Açık Faturalar";
|
|
2176
|
+
readonly history: "İşlem Geçmişi";
|
|
2177
|
+
};
|
|
2178
|
+
readonly history_empty: {
|
|
2179
|
+
readonly title: "İşlem geçmiş yok";
|
|
2180
|
+
readonly description: "İşlem geçmiş yok, geçmiş işlemler burada görebileceksiniz.";
|
|
2181
|
+
};
|
|
2182
|
+
readonly header: {
|
|
2183
|
+
readonly fields: {
|
|
2184
|
+
readonly accountName: "Cari Unvanı";
|
|
2185
|
+
readonly shortName: "Kısa İsim";
|
|
2186
|
+
readonly email: "E-posta Adresi";
|
|
2187
|
+
readonly phone: "Telefon Numarası";
|
|
2188
|
+
readonly fax: "Faks Numarası";
|
|
2189
|
+
readonly address: "Açık Adres";
|
|
2190
|
+
readonly taxInfo: "Vergi Bilgileri";
|
|
2191
|
+
readonly iban: "İBAN Numaraları";
|
|
2192
|
+
readonly exchangeRate: "Döviz Kuru";
|
|
2193
|
+
readonly priceList: "Fiyat Listesi";
|
|
2194
|
+
};
|
|
2195
|
+
readonly toggle: {
|
|
2196
|
+
readonly showSummary: "Özet bilgileri göster";
|
|
2197
|
+
readonly showAll: "Tüm bilgileri göster";
|
|
2198
|
+
};
|
|
2199
|
+
readonly actions: {
|
|
2200
|
+
readonly edit: "Düzenle";
|
|
2201
|
+
readonly create_sale_invoice: "Satış faturası oluştur";
|
|
2202
|
+
readonly create_purchase_receipt: "Alış fişi / faturası oluştur";
|
|
2203
|
+
readonly create_export_invoice: "İhracat faturası oluştur";
|
|
2204
|
+
readonly pay_with_akbank: "Akbank ile öde";
|
|
2205
|
+
readonly add_payment: "Ödeme ekle";
|
|
2206
|
+
readonly transfer: "Virman yap";
|
|
2207
|
+
readonly archive: "Arşivle";
|
|
2208
|
+
readonly delete: "Sil";
|
|
2209
|
+
};
|
|
2210
|
+
};
|
|
2211
|
+
readonly sidebar: {
|
|
2212
|
+
readonly summary: {
|
|
2213
|
+
readonly overdue_title: "GECİKMİŞ İŞLEMLER";
|
|
2214
|
+
readonly upcoming_title: "YAKLAŞAN İŞLEMLER";
|
|
2215
|
+
readonly total_title: "TOPLAM";
|
|
2216
|
+
readonly collection: "Tahsilat";
|
|
2217
|
+
readonly payment: "Ödeme";
|
|
2218
|
+
readonly total_collection: "Toplam Tahsilat";
|
|
2219
|
+
};
|
|
2220
|
+
readonly communication: {
|
|
2221
|
+
readonly title: "Müşteri / Tedarikçi Mesajları";
|
|
2222
|
+
readonly tabs: {
|
|
2223
|
+
readonly all: "Tümü";
|
|
2224
|
+
readonly messages: "Mesajlar";
|
|
2225
|
+
readonly notes: "Notlar";
|
|
2226
|
+
};
|
|
2227
|
+
readonly empty_state: "Müşteri / Tedarikçiye ait geçmiş bir işlem bulunmuyor.";
|
|
2228
|
+
readonly messages: {
|
|
2229
|
+
readonly textarea_placeholder: "Mesaj yazınız...";
|
|
2230
|
+
};
|
|
2231
|
+
readonly notes: {
|
|
2232
|
+
readonly textarea_placeholder: "Not ekleyin...";
|
|
2233
|
+
};
|
|
2234
|
+
readonly shared_with_count: "{count} kişi ile paylaşıldı";
|
|
2235
|
+
};
|
|
2236
|
+
readonly sharing: {
|
|
2237
|
+
readonly send_statement: "Ekstre gönder";
|
|
2238
|
+
readonly download_statement_pdf: "Ekstre PDF İndir";
|
|
2239
|
+
};
|
|
2240
|
+
};
|
|
2241
|
+
};
|
|
2242
|
+
};
|
|
2243
|
+
};
|
|
2244
|
+
readonly themes: {
|
|
2245
|
+
readonly default: "Default";
|
|
2246
|
+
readonly parasut: "Paraşüt";
|
|
2247
|
+
readonly bizmu: "Bizmu";
|
|
2248
|
+
};
|
|
2249
|
+
};
|
|
2250
|
+
|
|
2251
|
+
export declare const useFormField: () => {
|
|
2252
|
+
invalid: boolean;
|
|
2253
|
+
isDirty: boolean;
|
|
2254
|
+
isTouched: boolean;
|
|
2255
|
+
isValidating: boolean;
|
|
2256
|
+
error?: FieldError_2;
|
|
2257
|
+
id: string;
|
|
2258
|
+
name: string;
|
|
2259
|
+
formItemId: string;
|
|
2260
|
+
formDescriptionId: string;
|
|
2261
|
+
formMessageId: string;
|
|
2262
|
+
};
|
|
2263
|
+
|
|
2264
|
+
export declare function useIsMobile(): boolean;
|
|
2265
|
+
|
|
2266
|
+
/**
|
|
2267
|
+
* Generic hook for list page state management
|
|
2268
|
+
* Handles common state for filters, search, and row selection
|
|
2269
|
+
*/
|
|
2270
|
+
export declare function useListPage<TData>(): {
|
|
2271
|
+
globalFilter: string;
|
|
2272
|
+
setGlobalFilter: Dispatch<SetStateAction<string>>;
|
|
2273
|
+
activeFilters: ActiveFilter[];
|
|
2274
|
+
setActiveFilters: Dispatch<SetStateAction<ActiveFilter[]>>;
|
|
2275
|
+
rowSelection: RowSelectionState;
|
|
2276
|
+
setRowSelection: Dispatch<SetStateAction<RowSelectionState>>;
|
|
2277
|
+
getSelectedItems: (filteredData: TData[]) => TData[];
|
|
2278
|
+
clearSelection: () => void;
|
|
2279
|
+
};
|
|
2280
|
+
|
|
2281
|
+
export declare function useProductTheme(): ProductThemeContextType;
|
|
2282
|
+
|
|
2283
|
+
export declare function useSidebar(): SidebarContextProps;
|
|
2284
|
+
|
|
2285
|
+
/**
|
|
2286
|
+
* Generic React Hook Form wrapper with Zod validation.
|
|
2287
|
+
*
|
|
2288
|
+
* TL;DR on options?.mode ?? 'onTouched':
|
|
2289
|
+
* - We allow the user to override our default validation behavior if they want
|
|
2290
|
+
* - If they don't specify a mode, we use 'onTouched' (validate when user leaves field)
|
|
2291
|
+
* - If they don't specify reValidateMode, we use 'onChange' (re-validate on every keystroke after first validation)
|
|
2292
|
+
* - This pattern gives flexibility while maintaining good UX defaults
|
|
2293
|
+
*
|
|
2294
|
+
* Example:
|
|
2295
|
+
* ```tsx
|
|
2296
|
+
* import { z } from 'zod'
|
|
2297
|
+
*
|
|
2298
|
+
* const LoginSchema = z.object({
|
|
2299
|
+
* email: z.string().email(),
|
|
2300
|
+
* password: z.string().min(8)
|
|
2301
|
+
* })
|
|
2302
|
+
*
|
|
2303
|
+
* const form = useZodForm(LoginSchema, {
|
|
2304
|
+
* defaultValues: { email: '', password: '' }
|
|
2305
|
+
* })
|
|
2306
|
+
* ```
|
|
2307
|
+
*/
|
|
2308
|
+
export declare function useZodForm<TSchema extends z.ZodType<FieldValues>>(schema: TSchema, options?: Parameters<typeof useForm<z.infer<TSchema>>>[0]): UseFormReturn<z.core.output<TSchema>, any, z.core.output<TSchema>>;
|
|
2309
|
+
|
|
2310
|
+
export { }
|