@nar-bus/ui-kit 1.0.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.
Files changed (134) hide show
  1. package/dist/atoms/Avatar.d.ts +9 -0
  2. package/dist/atoms/Avatar.d.ts.map +1 -0
  3. package/dist/atoms/Badge.d.ts +8 -0
  4. package/dist/atoms/Badge.d.ts.map +1 -0
  5. package/dist/atoms/Button.d.ts +13 -0
  6. package/dist/atoms/Button.d.ts.map +1 -0
  7. package/dist/atoms/Checkbox.d.ts +7 -0
  8. package/dist/atoms/Checkbox.d.ts.map +1 -0
  9. package/dist/atoms/Icon.d.ts +22 -0
  10. package/dist/atoms/Icon.d.ts.map +1 -0
  11. package/dist/atoms/Input.d.ts +12 -0
  12. package/dist/atoms/Input.d.ts.map +1 -0
  13. package/dist/atoms/Label.d.ts +6 -0
  14. package/dist/atoms/Label.d.ts.map +1 -0
  15. package/dist/atoms/RadioGroup.d.ts +15 -0
  16. package/dist/atoms/RadioGroup.d.ts.map +1 -0
  17. package/dist/atoms/Select.d.ts +21 -0
  18. package/dist/atoms/Select.d.ts.map +1 -0
  19. package/dist/atoms/Separator.d.ts +19 -0
  20. package/dist/atoms/Separator.d.ts.map +1 -0
  21. package/dist/atoms/Skeleton.d.ts +8 -0
  22. package/dist/atoms/Skeleton.d.ts.map +1 -0
  23. package/dist/atoms/Spinner.d.ts +6 -0
  24. package/dist/atoms/Spinner.d.ts.map +1 -0
  25. package/dist/atoms/Switch.d.ts +7 -0
  26. package/dist/atoms/Switch.d.ts.map +1 -0
  27. package/dist/atoms/Textarea.d.ts +15 -0
  28. package/dist/atoms/Textarea.d.ts.map +1 -0
  29. package/dist/atoms/Tooltip.d.ts +10 -0
  30. package/dist/atoms/Tooltip.d.ts.map +1 -0
  31. package/dist/atoms/index.d.ts +16 -0
  32. package/dist/atoms/index.d.ts.map +1 -0
  33. package/dist/hooks/index.d.ts +6 -0
  34. package/dist/hooks/index.d.ts.map +1 -0
  35. package/dist/hooks/useBreadcrumb.d.ts +13 -0
  36. package/dist/hooks/useBreadcrumb.d.ts.map +1 -0
  37. package/dist/hooks/useCopyToClipboard.d.ts +2 -0
  38. package/dist/hooks/useCopyToClipboard.d.ts.map +1 -0
  39. package/dist/hooks/useDataTable.d.ts +47 -0
  40. package/dist/hooks/useDataTable.d.ts.map +1 -0
  41. package/dist/hooks/useDebounce.d.ts +2 -0
  42. package/dist/hooks/useDebounce.d.ts.map +1 -0
  43. package/dist/hooks/useMediaQuery.d.ts +5 -0
  44. package/dist/hooks/useMediaQuery.d.ts.map +1 -0
  45. package/dist/i18n/en.json.d.ts +199 -0
  46. package/dist/i18n/index.d.ts +2 -0
  47. package/dist/i18n/index.d.ts.map +1 -0
  48. package/dist/i18n/setup.d.ts +3 -0
  49. package/dist/i18n/setup.d.ts.map +1 -0
  50. package/dist/i18n/tr.json.d.ts +199 -0
  51. package/dist/index.css +1 -0
  52. package/dist/index.d.ts +14 -0
  53. package/dist/index.d.ts.map +1 -0
  54. package/dist/index.js +7726 -0
  55. package/dist/molecules/Combobox.d.ts +29 -0
  56. package/dist/molecules/Combobox.d.ts.map +1 -0
  57. package/dist/molecules/ConfirmDialog.d.ts +13 -0
  58. package/dist/molecules/ConfirmDialog.d.ts.map +1 -0
  59. package/dist/molecules/CopyableText.d.ts +7 -0
  60. package/dist/molecules/CopyableText.d.ts.map +1 -0
  61. package/dist/molecules/DatePicker.d.ts +12 -0
  62. package/dist/molecules/DatePicker.d.ts.map +1 -0
  63. package/dist/molecules/DateRangePicker.d.ts +13 -0
  64. package/dist/molecules/DateRangePicker.d.ts.map +1 -0
  65. package/dist/molecules/EmptyState.d.ts +17 -0
  66. package/dist/molecules/EmptyState.d.ts.map +1 -0
  67. package/dist/molecules/FormField.d.ts +12 -0
  68. package/dist/molecules/FormField.d.ts.map +1 -0
  69. package/dist/molecules/KpiCard.d.ts +18 -0
  70. package/dist/molecules/KpiCard.d.ts.map +1 -0
  71. package/dist/molecules/SearchInput.d.ts +21 -0
  72. package/dist/molecules/SearchInput.d.ts.map +1 -0
  73. package/dist/molecules/StatusBadge.d.ts +9 -0
  74. package/dist/molecules/StatusBadge.d.ts.map +1 -0
  75. package/dist/molecules/index.d.ts +11 -0
  76. package/dist/molecules/index.d.ts.map +1 -0
  77. package/dist/organisms/Breadcrumb.d.ts +15 -0
  78. package/dist/organisms/Breadcrumb.d.ts.map +1 -0
  79. package/dist/organisms/DataTable/DataTableHeader.d.ts +8 -0
  80. package/dist/organisms/DataTable/DataTableHeader.d.ts.map +1 -0
  81. package/dist/organisms/DataTable/DataTableRow.d.ts +9 -0
  82. package/dist/organisms/DataTable/DataTableRow.d.ts.map +1 -0
  83. package/dist/organisms/DataTable.d.ts +45 -0
  84. package/dist/organisms/DataTable.d.ts.map +1 -0
  85. package/dist/organisms/DataTable.types.d.ts +20 -0
  86. package/dist/organisms/DataTable.types.d.ts.map +1 -0
  87. package/dist/organisms/Dialog.d.ts +12 -0
  88. package/dist/organisms/Dialog.d.ts.map +1 -0
  89. package/dist/organisms/FilterPanel.d.ts +22 -0
  90. package/dist/organisms/FilterPanel.d.ts.map +1 -0
  91. package/dist/organisms/JsonEditor.d.ts +10 -0
  92. package/dist/organisms/JsonEditor.d.ts.map +1 -0
  93. package/dist/organisms/Pagination.d.ts +12 -0
  94. package/dist/organisms/Pagination.d.ts.map +1 -0
  95. package/dist/organisms/Popover.d.ts +22 -0
  96. package/dist/organisms/Popover.d.ts.map +1 -0
  97. package/dist/organisms/Sheet.d.ts +16 -0
  98. package/dist/organisms/Sheet.d.ts.map +1 -0
  99. package/dist/organisms/Tabs.d.ts +17 -0
  100. package/dist/organisms/Tabs.d.ts.map +1 -0
  101. package/dist/organisms/Toast.d.ts +10 -0
  102. package/dist/organisms/Toast.d.ts.map +1 -0
  103. package/dist/organisms/index.d.ts +11 -0
  104. package/dist/organisms/index.d.ts.map +1 -0
  105. package/dist/templates/AuthLayout.d.ts +8 -0
  106. package/dist/templates/AuthLayout.d.ts.map +1 -0
  107. package/dist/templates/DetailPageLayout.d.ts +33 -0
  108. package/dist/templates/DetailPageLayout.d.ts.map +1 -0
  109. package/dist/templates/ListPageLayout.d.ts +31 -0
  110. package/dist/templates/ListPageLayout.d.ts.map +1 -0
  111. package/dist/templates/ReportLayout.d.ts +22 -0
  112. package/dist/templates/ReportLayout.d.ts.map +1 -0
  113. package/dist/templates/index.d.ts +5 -0
  114. package/dist/templates/index.d.ts.map +1 -0
  115. package/dist/test/setup.d.ts +1 -0
  116. package/dist/test/setup.d.ts.map +1 -0
  117. package/dist/theme/ThemeProvider.d.ts +9 -0
  118. package/dist/theme/ThemeProvider.d.ts.map +1 -0
  119. package/dist/theme/index.d.ts +4 -0
  120. package/dist/theme/index.d.ts.map +1 -0
  121. package/dist/theme/themeContext.d.ts +25 -0
  122. package/dist/theme/themeContext.d.ts.map +1 -0
  123. package/dist/theme/useTheme.d.ts +12 -0
  124. package/dist/theme/useTheme.d.ts.map +1 -0
  125. package/dist/theme.css +1 -0
  126. package/dist/utils/cn.d.ts +3 -0
  127. package/dist/utils/cn.d.ts.map +1 -0
  128. package/dist/utils/focusTrap.d.ts +24 -0
  129. package/dist/utils/focusTrap.d.ts.map +1 -0
  130. package/dist/utils/formatters.d.ts +25 -0
  131. package/dist/utils/formatters.d.ts.map +1 -0
  132. package/dist/utils/index.d.ts +3 -0
  133. package/dist/utils/index.d.ts.map +1 -0
  134. package/package.json +79 -0
@@ -0,0 +1,9 @@
1
+ import { ImgHTMLAttributes } from 'react';
2
+ export interface AvatarProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, "size"> {
3
+ src?: string;
4
+ alt?: string;
5
+ fallback?: string;
6
+ size?: "sm" | "md" | "lg";
7
+ }
8
+ export declare const Avatar: import('react').ForwardRefExoticComponent<AvatarProps & import('react').RefAttributes<HTMLDivElement>>;
9
+ //# sourceMappingURL=Avatar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../src/atoms/Avatar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAwB,KAAK,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAGrE,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IACpF,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC3B;AAQD,eAAO,MAAM,MAAM,wGA0ClB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
3
+ variant?: "success" | "warning" | "error" | "info" | "default" | "primary-subtle";
4
+ size?: "sm" | "md";
5
+ dot?: boolean;
6
+ }
7
+ export declare const Badge: import('react').ForwardRefExoticComponent<BadgeProps & import('react').RefAttributes<HTMLSpanElement>>;
8
+ //# sourceMappingURL=Badge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../src/atoms/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,cAAc,EAAE,MAAM,OAAO,CAAC;AAGxD,MAAM,WAAW,UAAW,SAAQ,cAAc,CAAC,eAAe,CAAC;IACjE,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,gBAAgB,CAAC;IAClF,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,GAAG,CAAC,EAAE,OAAO,CAAC;CACf;AAgBD,eAAO,MAAM,KAAK,wGA+BjB,CAAC"}
@@ -0,0 +1,13 @@
1
+ import { ButtonHTMLAttributes, ReactNode } from 'react';
2
+ import { LucideIcon } from 'lucide-react';
3
+ export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
4
+ variant?: "primary" | "secondary" | "outline" | "ghost" | "destructive" | "glass" | "glass-danger";
5
+ size?: "sm" | "md" | "lg";
6
+ loading?: boolean;
7
+ leftIcon?: LucideIcon;
8
+ rightIcon?: LucideIcon;
9
+ fullWidth?: boolean;
10
+ children?: ReactNode;
11
+ }
12
+ export declare const Button: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
13
+ //# sourceMappingURL=Button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../src/atoms/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,oBAAoB,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAC9E,OAAO,EAAW,KAAK,UAAU,EAAE,MAAM,cAAc,CAAC;AAGxD,MAAM,WAAW,WAAY,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC1E,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,OAAO,GAAG,aAAa,GAAG,OAAO,GAAG,cAAc,CAAC;IACnG,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,SAAS,CAAC,EAAE,UAAU,CAAC;IACvB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAwGD,eAAO,MAAM,MAAM,2GAmElB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { InputHTMLAttributes } from 'react';
2
+ export interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type"> {
3
+ label?: string;
4
+ indeterminate?: boolean;
5
+ }
6
+ export declare const Checkbox: import('react').ForwardRefExoticComponent<CheckboxProps & import('react').RefAttributes<HTMLInputElement>>;
7
+ //# sourceMappingURL=Checkbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../src/atoms/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAI7D,MAAM,WAAW,aAAc,SAAQ,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IACxF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,eAAO,MAAM,QAAQ,4GAwCpB,CAAC"}
@@ -0,0 +1,22 @@
1
+ import { SVGAttributes } from 'react';
2
+ import { LucideIcon } from 'lucide-react';
3
+ export interface IconProps extends SVGAttributes<SVGSVGElement> {
4
+ icon: LucideIcon;
5
+ size?: number;
6
+ }
7
+ /**
8
+ * Icon is a thin wrapper around Lucide icons.
9
+ *
10
+ * **Color:** Icon inherits color via `currentColor` from the parent context —
11
+ * set `text-[var(--color-*)]` on the parent element rather than on the Icon
12
+ * directly. This ensures the icon always respects the ambient text color token
13
+ * (e.g. `text-[var(--color-text-muted)]`, `text-[var(--color-status-danger)]`).
14
+ *
15
+ * **Size:** Controlled via the `size` numeric prop (Lucide native, in px).
16
+ * Default is 16.
17
+ *
18
+ * Token policy verified (STORY-203 Wave 2): no direct token consumption needed.
19
+ * `currentColor` inheritance is the correct token-free idiom for icon color.
20
+ */
21
+ export declare const Icon: import('react').ForwardRefExoticComponent<IconProps & import('react').RefAttributes<SVGSVGElement>>;
22
+ //# sourceMappingURL=Icon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../src/atoms/Icon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,aAAa,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,MAAM,WAAW,SAAU,SAAQ,aAAa,CAAC,aAAa,CAAC;IAC7D,IAAI,EAAE,UAAU,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,IAAI,qGAWhB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { InputHTMLAttributes } from 'react';
2
+ import { LucideIcon } from 'lucide-react';
3
+ export interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
4
+ error?: string;
5
+ leftIcon?: LucideIcon;
6
+ rightIcon?: LucideIcon;
7
+ clearable?: boolean;
8
+ onClear?: () => void;
9
+ inputSize?: "sm" | "md" | "lg";
10
+ }
11
+ export declare const Input: import('react').ForwardRefExoticComponent<InputProps & import('react').RefAttributes<HTMLInputElement>>;
12
+ //# sourceMappingURL=Input.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../src/atoms/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAC7D,OAAO,EAA0B,KAAK,UAAU,EAAE,MAAM,cAAc,CAAC;AAKvE,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IACrF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,SAAS,CAAC,EAAE,UAAU,CAAC;IACvB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAChC;AAQD,eAAO,MAAM,KAAK,yGA8FjB,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { LabelHTMLAttributes } from 'react';
2
+ export interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
3
+ required?: boolean;
4
+ }
5
+ export declare const Label: import('react').ForwardRefExoticComponent<LabelProps & import('react').RefAttributes<HTMLLabelElement>>;
6
+ //# sourceMappingURL=Label.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Label.d.ts","sourceRoot":"","sources":["../../src/atoms/Label.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAG7D,MAAM,WAAW,UAAW,SAAQ,mBAAmB,CAAC,gBAAgB,CAAC;IACvE,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,KAAK,yGAuBjB,CAAC"}
@@ -0,0 +1,15 @@
1
+ export interface RadioOption {
2
+ value: string;
3
+ label: string;
4
+ }
5
+ export interface RadioGroupProps {
6
+ options: RadioOption[];
7
+ value?: string;
8
+ onChange?: (value: string) => void;
9
+ direction?: "horizontal" | "vertical";
10
+ disabled?: boolean;
11
+ name?: string;
12
+ className?: string;
13
+ }
14
+ export declare const RadioGroup: import('react').ForwardRefExoticComponent<RadioGroupProps & import('react').RefAttributes<HTMLDivElement>>;
15
+ //# sourceMappingURL=RadioGroup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../../src/atoms/RadioGroup.tsx"],"names":[],"mappings":"AAGA,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,WAAW,EAAE,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,SAAS,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACtC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,UAAU,4GAkDtB,CAAC"}
@@ -0,0 +1,21 @@
1
+ export interface SelectOption {
2
+ value: string;
3
+ label: string;
4
+ }
5
+ export interface SelectProps {
6
+ options: SelectOption[];
7
+ value?: string;
8
+ onChange?: (value: string) => void;
9
+ placeholder?: string;
10
+ disabled?: boolean;
11
+ error?: string;
12
+ searchable?: boolean;
13
+ className?: string;
14
+ /** ARIA forwarding — injected by FormField via cloneElement */
15
+ "aria-invalid"?: boolean | "true" | "false";
16
+ "aria-describedby"?: string;
17
+ "aria-required"?: boolean | "true" | "false";
18
+ id?: string;
19
+ }
20
+ export declare const Select: import('react').ForwardRefExoticComponent<SelectProps & import('react').RefAttributes<HTMLDivElement>>;
21
+ //# sourceMappingURL=Select.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../src/atoms/Select.tsx"],"names":[],"mappings":"AAKA,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,WAAW;IAC1B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC;IAC5C,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,eAAe,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC;IAC7C,EAAE,CAAC,EAAE,MAAM,CAAC;CACb;AAED,eAAO,MAAM,MAAM,wGAwMlB,CAAC"}
@@ -0,0 +1,19 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export interface SeparatorProps extends HTMLAttributes<HTMLDivElement> {
3
+ orientation?: "horizontal" | "vertical";
4
+ }
5
+ /**
6
+ * Separator renders a 1px horizontal or vertical divider line.
7
+ *
8
+ * Color uses `--color-border-subtle` for a low-contrast visual boundary.
9
+ *
10
+ * **Density-aware margin:** Separator does NOT impose its own margin — the
11
+ * caller controls it. Example:
12
+ * ```tsx
13
+ * <Separator className="my-[var(--space-3)]" />
14
+ * ```
15
+ * This ensures the margin scales automatically with the active density
16
+ * (compact / comfortable / spacious) via the `--space-3` token cascade.
17
+ */
18
+ export declare const Separator: import('react').ForwardRefExoticComponent<SeparatorProps & import('react').RefAttributes<HTMLDivElement>>;
19
+ //# sourceMappingURL=Separator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Separator.d.ts","sourceRoot":"","sources":["../../src/atoms/Separator.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,cAAc,EAAE,MAAM,OAAO,CAAC;AAGxD,MAAM,WAAW,cAAe,SAAQ,cAAc,CAAC,cAAc,CAAC;IACpE,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;CACzC;AAED;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,SAAS,2GAgBrB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export interface SkeletonProps extends HTMLAttributes<HTMLDivElement> {
3
+ width?: string | number;
4
+ height?: string | number;
5
+ rounded?: boolean;
6
+ }
7
+ export declare const Skeleton: import('react').ForwardRefExoticComponent<SkeletonProps & import('react').RefAttributes<HTMLDivElement>>;
8
+ //# sourceMappingURL=Skeleton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["../../src/atoms/Skeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,cAAc,EAAE,MAAM,OAAO,CAAC;AAGxD,MAAM,WAAW,aAAc,SAAQ,cAAc,CAAC,cAAc,CAAC;IACnE,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,QAAQ,0GAmBpB,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export interface SpinnerProps extends HTMLAttributes<HTMLDivElement> {
3
+ size?: "sm" | "md" | "lg";
4
+ }
5
+ export declare const Spinner: import('react').ForwardRefExoticComponent<SpinnerProps & import('react').RefAttributes<HTMLDivElement>>;
6
+ //# sourceMappingURL=Spinner.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Spinner.d.ts","sourceRoot":"","sources":["../../src/atoms/Spinner.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,cAAc,EAAE,MAAM,OAAO,CAAC;AAIxD,MAAM,WAAW,YAAa,SAAQ,cAAc,CAAC,cAAc,CAAC;IAClE,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC3B;AAQD,eAAO,MAAM,OAAO,yGAanB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { InputHTMLAttributes } from 'react';
2
+ export interface SwitchProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "size"> {
3
+ label?: string;
4
+ switchSize?: "sm" | "md";
5
+ }
6
+ export declare const Switch: import('react').ForwardRefExoticComponent<SwitchProps & import('react').RefAttributes<HTMLInputElement>>;
7
+ //# sourceMappingURL=Switch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../src/atoms/Switch.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAG7D,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC/F,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAC1B;AAOD,eAAO,MAAM,MAAM,0GA6ClB,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { TextareaHTMLAttributes } from 'react';
2
+ export interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
3
+ error?: string;
4
+ }
5
+ /**
6
+ * Multi-line text input atom.
7
+ *
8
+ * Auto-grow: Uses CSS `field-sizing: content` (Chrome 124+, Safari 17.4+,
9
+ * Firefox 138+ — covers ~92% of users as of 2026-04). Older browsers fall
10
+ * back to fixed `rows`-based height (the existing behavior — no JS polyfill
11
+ * needed). The `rows` prop acts as a min-height baseline when field-sizing
12
+ * is supported.
13
+ */
14
+ export declare const Textarea: import('react').ForwardRefExoticComponent<TextareaProps & import('react').RefAttributes<HTMLTextAreaElement>>;
15
+ //# sourceMappingURL=Textarea.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Textarea.d.ts","sourceRoot":"","sources":["../../src/atoms/Textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAkC,KAAK,sBAAsB,EAAE,MAAM,OAAO,CAAC;AAGpF,MAAM,WAAW,aAAc,SAAQ,sBAAsB,CAAC,mBAAmB,CAAC;IAChF,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,QAAQ,+GAsCpB,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { ReactNode } from 'react';
2
+ export interface TooltipProps {
3
+ content: ReactNode;
4
+ children: ReactNode;
5
+ side?: "top" | "right" | "bottom" | "left";
6
+ delay?: number;
7
+ className?: string;
8
+ }
9
+ export declare function Tooltip({ content, children, side, delay, className }: TooltipProps): import("react").JSX.Element;
10
+ //# sourceMappingURL=Tooltip.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../src/atoms/Tooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA+B,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAIpE,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,SAAS,CAAC;IACnB,QAAQ,EAAE,SAAS,CAAC;IACpB,IAAI,CAAC,EAAE,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,OAAO,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAY,EAAE,KAAW,EAAE,SAAS,EAAE,EAAE,YAAY,+BA0GhG"}
@@ -0,0 +1,16 @@
1
+ export { Button, type ButtonProps } from './Button';
2
+ export { Input, type InputProps } from './Input';
3
+ export { Select, type SelectProps, type SelectOption } from './Select';
4
+ export { Checkbox, type CheckboxProps } from './Checkbox';
5
+ export { RadioGroup, type RadioGroupProps, type RadioOption } from './RadioGroup';
6
+ export { Switch, type SwitchProps } from './Switch';
7
+ export { Label, type LabelProps } from './Label';
8
+ export { Badge, type BadgeProps } from './Badge';
9
+ export { Avatar, type AvatarProps } from './Avatar';
10
+ export { Icon, type IconProps } from './Icon';
11
+ export { Spinner, type SpinnerProps } from './Spinner';
12
+ export { Skeleton, type SkeletonProps } from './Skeleton';
13
+ export { Tooltip, type TooltipProps } from './Tooltip';
14
+ export { Separator, type SeparatorProps } from './Separator';
15
+ export { Textarea, type TextareaProps } from './Textarea';
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/atoms/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,KAAK,YAAY,EAAE,MAAM,UAAU,CAAC;AACvE,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,KAAK,WAAW,EAAE,MAAM,cAAc,CAAC;AAClF,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,YAAY,CAAC"}
@@ -0,0 +1,6 @@
1
+ export { useDebounce } from './useDebounce';
2
+ export { useCopyToClipboard } from './useCopyToClipboard';
3
+ export { useMediaQuery, useIsMobile, useIsTablet, useIsDesktop } from './useMediaQuery';
4
+ export { useDataTable, type DataTableState, type UseDataTableOptions } from './useDataTable';
5
+ export { useBreadcrumb, useBreadcrumbStore } from './useBreadcrumb';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AACxF,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AAC7F,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC"}
@@ -0,0 +1,13 @@
1
+ import { BreadcrumbItem } from '../organisms/Breadcrumb';
2
+ interface BreadcrumbBackButton {
3
+ label?: string;
4
+ onClick: () => void;
5
+ }
6
+ interface BreadcrumbSnapshot {
7
+ items: BreadcrumbItem[];
8
+ backButton?: BreadcrumbBackButton;
9
+ }
10
+ export declare function useBreadcrumbStore(): BreadcrumbSnapshot;
11
+ export declare function useBreadcrumb(items: BreadcrumbItem[], backButton?: BreadcrumbBackButton): void;
12
+ export {};
13
+ //# sourceMappingURL=useBreadcrumb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useBreadcrumb.d.ts","sourceRoot":"","sources":["../../src/hooks/useBreadcrumb.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAE9D,UAAU,oBAAoB;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,UAAU,kBAAkB;IAC1B,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB,UAAU,CAAC,EAAE,oBAAoB,CAAC;CACnC;AAiDD,wBAAgB,kBAAkB,uBAEjC;AAED,wBAAgB,aAAa,CAC3B,KAAK,EAAE,cAAc,EAAE,EACvB,UAAU,CAAC,EAAE,oBAAoB,QAMlC"}
@@ -0,0 +1,2 @@
1
+ export declare function useCopyToClipboard(resetDelay?: number): [boolean, (text: string) => Promise<void>];
2
+ //# sourceMappingURL=useCopyToClipboard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useCopyToClipboard.d.ts","sourceRoot":"","sources":["../../src/hooks/useCopyToClipboard.ts"],"names":[],"mappings":"AAEA,wBAAgB,kBAAkB,CAAC,UAAU,SAAO,GAAG,CAAC,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC,CAiBhG"}
@@ -0,0 +1,47 @@
1
+ import { SortingState, ColumnFiltersState, RowSelectionState } from '@tanstack/react-table';
2
+ export interface DataTableState {
3
+ sorting: SortingState;
4
+ pagination: {
5
+ pageIndex: number;
6
+ pageSize: number;
7
+ };
8
+ columnFilters: ColumnFiltersState;
9
+ rowSelection: RowSelectionState;
10
+ globalFilter: string;
11
+ }
12
+ export interface UseDataTableOptions {
13
+ initialPageSize?: number;
14
+ initialSorting?: SortingState;
15
+ }
16
+ export declare function useDataTable(options?: UseDataTableOptions): {
17
+ sorting: SortingState;
18
+ setSorting: import('react').Dispatch<import('react').SetStateAction<SortingState>>;
19
+ pagination: {
20
+ pageIndex: number;
21
+ pageSize: number;
22
+ };
23
+ setPagination: import('react').Dispatch<import('react').SetStateAction<{
24
+ pageIndex: number;
25
+ pageSize: number;
26
+ }>>;
27
+ columnFilters: ColumnFiltersState;
28
+ setColumnFilters: import('react').Dispatch<import('react').SetStateAction<ColumnFiltersState>>;
29
+ rowSelection: RowSelectionState;
30
+ setRowSelection: import('react').Dispatch<import('react').SetStateAction<RowSelectionState>>;
31
+ globalFilter: string;
32
+ setGlobalFilter: import('react').Dispatch<import('react').SetStateAction<string>>;
33
+ resetSelection: () => void;
34
+ resetFilters: () => void;
35
+ selectedCount: number;
36
+ state: {
37
+ sorting: SortingState;
38
+ pagination: {
39
+ pageIndex: number;
40
+ pageSize: number;
41
+ };
42
+ columnFilters: ColumnFiltersState;
43
+ rowSelection: RowSelectionState;
44
+ globalFilter: string;
45
+ };
46
+ };
47
+ //# sourceMappingURL=useDataTable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDataTable.d.ts","sourceRoot":"","sources":["../../src/hooks/useDataTable.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAEjG,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,YAAY,CAAC;IACtB,UAAU,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC;IACpD,aAAa,EAAE,kBAAkB,CAAC;IAClC,YAAY,EAAE,iBAAiB,CAAC;IAChC,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,mBAAmB;IAClC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,cAAc,CAAC,EAAE,YAAY,CAAC;CAC/B;AAED,wBAAgB,YAAY,CAAC,OAAO,GAAE,mBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuC7D"}
@@ -0,0 +1,2 @@
1
+ export declare function useDebounce<T>(value: T, delay?: number): T;
2
+ //# sourceMappingURL=useDebounce.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDebounce.d.ts","sourceRoot":"","sources":["../../src/hooks/useDebounce.ts"],"names":[],"mappings":"AAEA,wBAAgB,WAAW,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,SAAM,GAAG,CAAC,CASvD"}
@@ -0,0 +1,5 @@
1
+ export declare function useMediaQuery(query: string): boolean;
2
+ export declare function useIsMobile(): boolean;
3
+ export declare function useIsTablet(): boolean;
4
+ export declare function useIsDesktop(): boolean;
5
+ //# sourceMappingURL=useMediaQuery.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useMediaQuery.d.ts","sourceRoot":"","sources":["../../src/hooks/useMediaQuery.ts"],"names":[],"mappings":"AAEA,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAepD;AAED,wBAAgB,WAAW,YAE1B;AAED,wBAAgB,WAAW,YAE1B;AAED,wBAAgB,YAAY,YAE3B"}
@@ -0,0 +1,199 @@
1
+ declare const _default: {
2
+ "common": {
3
+ "ara": "Search...",
4
+ "filtre": "Filter",
5
+ "kaydet": "Save",
6
+ "iptal": "Cancel",
7
+ "sil": "Delete",
8
+ "duzenle": "Edit",
9
+ "ekle": "Add",
10
+ "kapat": "Close",
11
+ "temizle": "Clear",
12
+ "tamam": "OK",
13
+ "geri": "Back",
14
+ "ileri": "Next",
15
+ "devam": "Continue",
16
+ "calistir": "Execute",
17
+ "onayla": "Confirm",
18
+ "gonder": "Send",
19
+ "yukle": "Upload",
20
+ "indir": "Download",
21
+ "kopyala": "Copy",
22
+ "kopyalandi": "Copied",
23
+ "yapistir": "Paste",
24
+ "sec": "Select",
25
+ "vazgec": "Cancel",
26
+ "detay": "Detail",
27
+ "detaya_git": "Go to Detail",
28
+ "yenile": "Refresh",
29
+ "disa_aktar": "Export",
30
+ "evet": "Yes",
31
+ "hayir": "No",
32
+ "tumu": "All",
33
+ "yok": "None",
34
+ "olustur": "Create \"{{value}}\""
35
+ },
36
+ "table": {
37
+ "sayfa": "Page",
38
+ "toplam": "Total",
39
+ "secili": "Selected",
40
+ "kayit_bulunamadi": "No records found",
41
+ "siralama": "Sort",
42
+ "filtrele": "Filter",
43
+ "tumunu_sec": "Select All",
44
+ "secimi_kaldir": "Deselect All",
45
+ "satirlar": "rows",
46
+ "sayfa_basina": "per page"
47
+ },
48
+ "form": {
49
+ "zorunlu_alan": "This field is required",
50
+ "gecersiz_deger": "Invalid value",
51
+ "min_karakter": "Must be at least {{min}} characters",
52
+ "max_karakter": "Must be at most {{max}} characters",
53
+ "email_gecersiz": "Please enter a valid email address",
54
+ "sayi_gecersiz": "Please enter a valid number"
55
+ },
56
+ "dialog": {
57
+ "emin_misiniz": "Are you sure?",
58
+ "bu_islem_geri_alinamaz": "This action cannot be undone.",
59
+ "onay": "Confirm",
60
+ "vazgec": "Cancel",
61
+ "silme_onay": "Are you sure you want to delete this record?",
62
+ "silme_baslik": "Delete Record"
63
+ },
64
+ "theme": {
65
+ "karanlik_mod": "Dark Mode",
66
+ "aydinlik_mod": "Light Mode",
67
+ "tema_degistir": "Toggle Theme"
68
+ },
69
+ "date": {
70
+ "bugun": "Today",
71
+ "dun": "Yesterday",
72
+ "bu_hafta": "This Week",
73
+ "bu_ay": "This Month",
74
+ "gecen_ay": "Last Month",
75
+ "son_7_gun": "Last 7 Days",
76
+ "son_30_gun": "Last 30 Days",
77
+ "baslangic": "Start",
78
+ "bitis": "End",
79
+ "tarih_sec": "Select Date"
80
+ },
81
+ "pagination": {
82
+ "onceki_sayfa": "Previous Page",
83
+ "sonraki_sayfa": "Next Page",
84
+ "previous_page": "Previous page",
85
+ "next_page": "Next page",
86
+ "sayfa_x_y": "Page {{current}} / {{total}}",
87
+ "kayit_gosteriliyor": "Showing {{from}}-{{to}} of {{total}} records",
88
+ "ilk_sayfa": "First Page",
89
+ "son_sayfa": "Last Page"
90
+ },
91
+ "empty": {
92
+ "kayit_bulunamadi": "No records found",
93
+ "henuz_veri_yok": "No data yet",
94
+ "sonuc_bulunamadi": "No results matching your criteria"
95
+ },
96
+ "status": {
97
+ "basarili": "Success",
98
+ "hata": "Error",
99
+ "uyari": "Warning",
100
+ "bilgi": "Info",
101
+ "yukleniyor": "Loading...",
102
+ "kaydediliyor": "Saving...",
103
+ "siliniyor": "Deleting..."
104
+ },
105
+ "filter": {
106
+ "filtre_uygula": "Apply Filter",
107
+ "filtreleri_temizle": "Clear Filters",
108
+ "aktif_filtre": "{{count}} active filter(s)",
109
+ "op_contains": "Contains",
110
+ "op_equals": "Equals",
111
+ "op_not_equals": "Not Equals",
112
+ "op_starts_with": "Starts With",
113
+ "op_ends_with": "Ends With",
114
+ "op_greater": "Greater Than",
115
+ "op_less": "Less Than",
116
+ "op_greater_eq": "Greater or Equal",
117
+ "op_less_eq": "Less or Equal",
118
+ "operator_sec": "Select operator",
119
+ "secili": "Selected"
120
+ },
121
+ "json_editor": {
122
+ "ham_json": "Raw JSON",
123
+ "form_gorunumu": "Form View",
124
+ "formatla": "Format",
125
+ "gecersiz_json": "Invalid JSON format",
126
+ "kopyalandi": "Copied!",
127
+ "kopyala": "Copy",
128
+ "icerik": "JSON content",
129
+ "duzenle": "Edit",
130
+ "goruntule": "View"
131
+ },
132
+ "aria": {
133
+ "sifreyi_goster": "Show password",
134
+ "sifreyi_gizle": "Hide password",
135
+ "onceki_ay": "Previous month",
136
+ "sonraki_ay": "Next month",
137
+ "filtreyi_kaldir": "Remove {{name}} filter",
138
+ "kopyala": "Copy",
139
+ "panel": "Panel",
140
+ "iletisim_kutusu": "Dialog",
141
+ "kaldir": "Remove {{label}}",
142
+ "filtrele": "Filter options",
143
+ "filtreler": "Filters",
144
+ "breadcrumb": "Breadcrumb",
145
+ "pagination": "Pagination",
146
+ "detay_sayfasi": "Detail page",
147
+ "filtreler_kenar": "Filter sidebar",
148
+ "giris": "Sign in",
149
+ "rapor_kriterleri": "Report criteria"
150
+ },
151
+ "detail_status": {
152
+ "lifecycle": {
153
+ "ACTIVE": "Active",
154
+ "INACTIVE": "Inactive",
155
+ "MAINTENANCE": "Maintenance",
156
+ "FAULTY": "Faulty"
157
+ },
158
+ "power": {
159
+ "ON": "Energized",
160
+ "OFF": "No Energy",
161
+ "UNKNOWN": "Unknown"
162
+ },
163
+ "disconnection": {
164
+ "ON": "Power OK",
165
+ "OFF": "No Power",
166
+ "UNKNOWN": "Unknown",
167
+ "OPENING": "Opening",
168
+ "CLOSING": "Closing"
169
+ }
170
+ },
171
+ "dashboard": {
172
+ "hero": {
173
+ "live": "LIVE",
174
+ "fleetOnline": "FLEET ONLINE",
175
+ "online": "online",
176
+ "vs1h": "vs 1h",
177
+ "fleet": {
178
+ "online": "ONLINE",
179
+ "offline": "OFF",
180
+ "unknown": "UNK"
181
+ },
182
+ "readingSla24h": "READING SLA · 24h",
183
+ "target": "target",
184
+ "activeOutages": "ACTIVE OUTAGES",
185
+ "affectedMeters": "meters affected",
186
+ "alarm": {
187
+ "crit": "CRIT",
188
+ "warn": "WARN",
189
+ "viewDetails": "View {{slug}} details"
190
+ },
191
+ "tape": {
192
+ "ariaLabel": "Recent system events"
193
+ }
194
+ }
195
+ }
196
+ }
197
+ ;
198
+
199
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { i18n } from './setup';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { default as i18n } from 'i18next';
2
+ export { i18n };
3
+ //# sourceMappingURL=setup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../src/i18n/setup.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,SAAS,CAAC;AA0B3B,OAAO,EAAE,IAAI,EAAE,CAAC"}