@umituz/web-design-system 1.8.5 → 1.8.7
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/package.json +1 -1
- package/src/presentation/atoms/AspectRatio.tsx +1 -1
- package/src/presentation/atoms/Badge.tsx +1 -1
- package/src/presentation/atoms/Button.tsx +1 -1
- package/src/presentation/atoms/Checkbox.tsx +1 -1
- package/src/presentation/atoms/Divider.tsx +1 -1
- package/src/presentation/atoms/Icon.tsx +1 -1
- package/src/presentation/atoms/Input.tsx +1 -1
- package/src/presentation/atoms/Label.tsx +1 -1
- package/src/presentation/atoms/Link.tsx +1 -1
- package/src/presentation/atoms/Progress.tsx +1 -1
- package/src/presentation/atoms/Radio.tsx +1 -1
- package/src/presentation/atoms/Skeleton.tsx +1 -1
- package/src/presentation/atoms/Slider.tsx +1 -1
- package/src/presentation/atoms/Spinner.tsx +1 -1
- package/src/presentation/atoms/Text.tsx +1 -1
- package/src/presentation/atoms/Tooltip.tsx +1 -1
- package/src/presentation/molecules/Avatar.tsx +1 -1
- package/src/presentation/molecules/CheckboxGroup.tsx +1 -1
- package/src/presentation/molecules/Chip.tsx +1 -1
- package/src/presentation/molecules/FormField.tsx +1 -1
- package/src/presentation/molecules/InputGroup.tsx +1 -1
- package/src/presentation/molecules/ListItem.tsx +1 -1
- package/src/presentation/molecules/RadioGroup.tsx +1 -1
- package/src/presentation/molecules/ScrollArea.tsx +1 -1
- package/src/presentation/molecules/SearchBox.tsx +1 -1
- package/src/presentation/molecules/Select.tsx +1 -1
- package/src/presentation/molecules/Textarea.tsx +1 -1
- package/src/presentation/molecules/Toggle.tsx +1 -1
- package/src/presentation/organisms/Accordion.tsx +1 -1
- package/src/presentation/organisms/Alert.tsx +1 -1
- package/src/presentation/organisms/AlertDialog.tsx +1 -1
- package/src/presentation/organisms/Breadcrumb.tsx +1 -1
- package/src/presentation/organisms/Calendar.tsx +1 -1
- package/src/presentation/organisms/Card.tsx +1 -1
- package/src/presentation/organisms/ConfirmDialog.tsx +1 -1
- package/src/presentation/organisms/DataTable.tsx +1 -1
- package/src/presentation/organisms/Dialog.tsx +1 -1
- package/src/presentation/organisms/EmptyState.tsx +1 -1
- package/src/presentation/organisms/Footer.tsx +1 -1
- package/src/presentation/organisms/FormModal.tsx +1 -1
- package/src/presentation/organisms/HoverCard.tsx +1 -1
- package/src/presentation/organisms/LoadingState.tsx +1 -1
- package/src/presentation/organisms/MetricCard.tsx +1 -1
- package/src/presentation/organisms/Modal.tsx +1 -1
- package/src/presentation/organisms/Navbar.tsx +1 -1
- package/src/presentation/organisms/Popover.tsx +1 -1
- package/src/presentation/organisms/QuickActionCard.tsx +1 -1
- package/src/presentation/organisms/Sheet.tsx +1 -1
- package/src/presentation/organisms/StatCard.tsx +1 -1
- package/src/presentation/organisms/Table.tsx +1 -1
- package/src/presentation/organisms/Tabs.tsx +1 -1
- package/src/presentation/templates/Form.tsx +1 -1
- package/src/presentation/templates/List.tsx +1 -1
- package/src/presentation/templates/PageHeader.tsx +1 -1
- package/src/presentation/templates/PageLayout.tsx +1 -1
- package/src/presentation/templates/ProjectSkeleton.tsx +1 -1
- package/src/presentation/templates/Section.tsx +1 -1
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ColorVariant, SizeVariant } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface BadgeProps extends HTMLAttributes<HTMLDivElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type ButtonHTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, SizeVariant, ColorVariant } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type InputHTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface DividerProps extends HTMLAttributes<HTMLDivElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type SVGAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, SizeVariant } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface IconProps extends SVGAttributes<SVGSVGElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type InputHTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, SizeVariant } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'>, BaseProps {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
8
|
-
import { cn } from '../../infrastructure/utils
|
|
8
|
+
import { cn } from '../../infrastructure/utils';
|
|
9
9
|
|
|
10
10
|
const Label = React.forwardRef<
|
|
11
11
|
React.ElementRef<typeof LabelPrimitive.Root>,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type AnchorHTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface ProgressProps extends HTMLAttributes<HTMLDivElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type InputHTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface RadioProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface SkeletonProps extends HTMLAttributes<HTMLDivElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type InputHTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface SliderProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size' | 'value'>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, SizeVariant } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface SpinnerProps extends HTMLAttributes<HTMLDivElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export type TextElement = 'p' | 'span' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'label';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes, type ReactNode, useState, useRef, useEffect } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface TooltipProps extends Omit<HTMLAttributes<HTMLDivElement>, 'content'>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes, type ElementType, type ComponentPropsWithoutRef } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, SizeVariant } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface AvatarProps extends HTMLAttributes<HTMLDivElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
import { Checkbox } from '../atoms/Checkbox';
|
|
10
10
|
import { Text } from '../atoms/Text';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type ReactNode } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ColorVariant } from '../../domain/types';
|
|
9
9
|
import { Badge } from '../atoms/Badge';
|
|
10
10
|
import { Icon } from '../atoms/Icon';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type ReactNode } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
import { Input } from '../atoms/Input';
|
|
10
10
|
import { Text } from '../atoms/Text';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type ReactNode, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
import { Input } from '../atoms/Input';
|
|
10
10
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import { forwardRef, type ReactNode, type MouseEvent } from 'react';
|
|
8
|
-
import { cn } from '../../infrastructure/utils
|
|
8
|
+
import { cn } from '../../infrastructure/utils';
|
|
9
9
|
import { Button } from '../atoms';
|
|
10
10
|
import type { BaseProps } from '../../domain/types';
|
|
11
11
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
import { Radio } from '../atoms/Radio';
|
|
10
10
|
import { Text } from '../atoms/Text';
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
8
|
-
import { cn } from '../../infrastructure/utils
|
|
8
|
+
import { cn } from '../../infrastructure/utils';
|
|
9
9
|
|
|
10
10
|
const ScrollArea = React.forwardRef<
|
|
11
11
|
React.ElementRef<typeof ScrollAreaPrimitive.Root>,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
import { Input } from '../atoms/Input';
|
|
10
10
|
import { Icon } from '../atoms/Icon';
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
8
8
|
import { Check, ChevronDown, ChevronUp } from 'lucide-react';
|
|
9
|
-
import { cn } from '../../infrastructure/utils
|
|
9
|
+
import { cn } from '../../infrastructure/utils';
|
|
10
10
|
|
|
11
11
|
const Select = SelectPrimitive.Root;
|
|
12
12
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type TextareaHTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type ButtonHTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface ToggleProps extends ButtonHTMLAttributes<HTMLButtonElement>, BaseProps {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
8
8
|
import { ChevronDown } from 'lucide-react';
|
|
9
|
-
import { cn } from '../../infrastructure/utils
|
|
9
|
+
import { cn } from '../../infrastructure/utils';
|
|
10
10
|
|
|
11
11
|
const Accordion = AccordionPrimitive.Root;
|
|
12
12
|
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
import * as React from "react";
|
|
25
25
|
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
|
|
26
26
|
|
|
27
|
-
import { cn } from "../../infrastructure/utils
|
|
27
|
+
import { cn } from "../../infrastructure/utils";
|
|
28
28
|
import { buttonVariants } from "../../atoms/Button";
|
|
29
29
|
|
|
30
30
|
const AlertDialog = AlertDialogPrimitive.Root;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes, type ReactNode } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
import { Icon } from '../atoms/Icon';
|
|
10
10
|
import { Link } from '../atoms/Link';
|
|
@@ -16,7 +16,7 @@ import * as React from "react";
|
|
|
16
16
|
import { ChevronLeft, ChevronRight } from "lucide-react";
|
|
17
17
|
import { DayPicker } from "react-day-picker";
|
|
18
18
|
|
|
19
|
-
import { cn } from "../../infrastructure/utils
|
|
19
|
+
import { cn } from "../../infrastructure/utils";
|
|
20
20
|
|
|
21
21
|
export type CalendarProps = React.ComponentProps<typeof DayPicker>;
|
|
22
22
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface CardProps extends HTMLAttributes<HTMLDivElement>, BaseProps {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
8
8
|
import { X } from 'lucide-react';
|
|
9
|
-
import { cn } from '../../infrastructure/utils
|
|
9
|
+
import { cn } from '../../infrastructure/utils';
|
|
10
10
|
|
|
11
11
|
const Dialog = DialogPrimitive.Root;
|
|
12
12
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, SizeVariant } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface EmptyStateProps extends BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes, type ReactNode } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface FooterProps extends HTMLAttributes<HTMLElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type ComponentProps } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import { Card, CardContent } from './Card';
|
|
9
9
|
import type { BaseProps, ColorVariant, SizeVariant } from '../../domain/types';
|
|
10
10
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes, type ReactNode } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface ModalProps extends HTMLAttributes<HTMLDivElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface NavbarProps extends HTMLAttributes<HTMLElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, SizeVariant } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface QuickActionCardProps extends BaseProps {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
7
7
|
import { X } from 'lucide-react';
|
|
8
8
|
import * as React from 'react';
|
|
9
|
-
import { cn } from '../../infrastructure/utils
|
|
9
|
+
import { cn } from '../../infrastructure/utils';
|
|
10
10
|
|
|
11
11
|
const Sheet = SheetPrimitive.Root;
|
|
12
12
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import { forwardRef, type ComponentType } from 'react';
|
|
8
|
-
import { cn } from '../../infrastructure/utils
|
|
8
|
+
import { cn } from '../../infrastructure/utils';
|
|
9
9
|
import { Card, CardContent } from './Card';
|
|
10
10
|
import { Progress } from '../atoms';
|
|
11
11
|
import { ArrowUpRight, ArrowDownRight } from 'lucide-react';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface TableProps extends HTMLAttributes<HTMLTableElement>, BaseProps {}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useState, useCallback, type ReactNode, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface Tab {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type FormHTMLAttributes, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface FormProps extends FormHTMLAttributes<HTMLFormElement>, BaseProps {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface ListProps extends HTMLAttributes<HTMLUListElement>, BaseProps {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
7
|
import { type ReactNode } from 'react';
|
|
8
|
-
import { cn } from '../../infrastructure/utils
|
|
8
|
+
import { cn } from '../../infrastructure/utils';
|
|
9
9
|
import type { BaseProps } from '../../domain/types';
|
|
10
10
|
|
|
11
11
|
export type TextAlign = 'left' | 'center' | 'right';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export type MaxWidth = '4xl' | '7xl' | 'full';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface ProjectSkeletonProps extends HTMLAttributes<HTMLDivElement>, BaseProps {}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { forwardRef, type HTMLAttributes } from 'react';
|
|
7
|
-
import { cn } from '../../infrastructure/utils
|
|
7
|
+
import { cn } from '../../infrastructure/utils';
|
|
8
8
|
import type { BaseProps, ChildrenProps } from '../../domain/types';
|
|
9
9
|
|
|
10
10
|
export interface SectionProps extends HTMLAttributes<HTMLElement>, BaseProps {
|