rupoui 1.3.2 → 1.3.3
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/README.md +13 -13
- package/dist/components/button/Button.d.ts +6 -3
- package/dist/components/button/button.styles.d.ts +176 -162
- package/dist/components/button/button.types.d.ts +14 -14
- package/dist/components/button/index.d.ts +2 -2
- package/dist/components/calendar/Calendar.d.ts +3 -2
- package/dist/components/calendar/calendar.grid.d.ts +5 -2
- package/dist/components/calendar/calendar.navigation.d.ts +1 -1
- package/dist/components/calendar/calendar.selection.d.ts +6 -2
- package/dist/components/calendar/calendar.state.d.ts +1 -1
- package/dist/components/calendar/calendar.styles.d.ts +106 -83
- package/dist/components/calendar/calendar.types.d.ts +39 -39
- package/dist/components/calendar/index.d.ts +3 -3
- package/dist/components/checkbox/Checkbox.d.ts +4 -2
- package/dist/components/checkbox/CheckboxGroup.d.ts +4 -2
- package/dist/components/checkbox/checkbox-group-context.d.ts +12 -12
- package/dist/components/checkbox/checkbox.styles.d.ts +313 -285
- package/dist/components/checkbox/checkbox.types.d.ts +161 -154
- package/dist/components/checkbox/index.d.ts +3 -3
- package/dist/components/checkbox/useCheckbox.d.ts +389 -311
- package/dist/components/checkbox/useCheckboxGroup.d.ts +353 -280
- package/dist/components/chip/Chip.d.ts +4 -2
- package/dist/components/chip/ChipGroup.d.ts +4 -2
- package/dist/components/chip/chip-group-context.d.ts +9 -6
- package/dist/components/chip/chip.styles.d.ts +206 -192
- package/dist/components/chip/chip.types.d.ts +155 -149
- package/dist/components/chip/index.d.ts +5 -5
- package/dist/components/chip/useChip.d.ts +22 -20
- package/dist/components/chip/useChipGroup.d.ts +350 -277
- package/dist/components/datepicker/DatePart.d.ts +16 -14
- package/dist/components/datepicker/DatePicker.d.ts +17 -16
- package/dist/components/datepicker/DatePickerCalendar.d.ts +8 -7
- package/dist/components/datepicker/DatePickerDay.d.ts +11 -9
- package/dist/components/datepicker/DatePickerInput.d.ts +16 -15
- package/dist/components/datepicker/DatePickerPopover.d.ts +7 -6
- package/dist/components/datepicker/SegmentedDatePickerInput.d.ts +9 -8
- package/dist/components/datepicker/datepicker.controller.d.ts +6 -2
- package/dist/components/datepicker/datepicker.input.logic.d.ts +16 -6
- package/dist/components/datepicker/datepicker.input.state.d.ts +1 -1
- package/dist/components/datepicker/datepicker.input.types.d.ts +20 -20
- package/dist/components/datepicker/datepicker.keyboard.d.ts +6 -2
- package/dist/components/datepicker/datepicker.state.d.ts +1 -1
- package/dist/components/datepicker/datepicker.styles.d.ts +118 -95
- package/dist/components/datepicker/datepicker.types.d.ts +52 -52
- package/dist/components/datepicker/index.d.ts +5 -5
- package/dist/components/dropdown/Dropdown.d.ts +3 -2
- package/dist/components/dropdown/DropdownContent.d.ts +3 -2
- package/dist/components/dropdown/DropdownItem.d.ts +3 -2
- package/dist/components/dropdown/DropdownSection.d.ts +3 -2
- package/dist/components/dropdown/DropdownSeparator.d.ts +3 -2
- package/dist/components/dropdown/DropdownTrigger.d.ts +3 -2
- package/dist/components/dropdown/context.d.ts +22 -21
- package/dist/components/dropdown/dropdown.styles.d.ts +180 -166
- package/dist/components/dropdown/dropdown.types.d.ts +97 -85
- package/dist/components/dropdown/index.d.ts +9 -9
- package/dist/components/dropdown/useDropdown.d.ts +15 -15
- package/dist/components/input/Input.d.ts +9 -4
- package/dist/components/input/index.d.ts +2 -2
- package/dist/components/input/input.styles.d.ts +239 -225
- package/dist/components/input/input.types.d.ts +60 -58
- package/dist/components/input-number/InputNumber.d.ts +24 -5
- package/dist/components/input-number/index.d.ts +2 -2
- package/dist/components/input-number/input-number.styles.d.ts +331 -317
- package/dist/components/input-number/input-number.types.d.ts +132 -116
- package/dist/components/input-number/utils.d.ts +11 -3
- package/dist/components/modal/Modal.d.ts +4 -3
- package/dist/components/modal/ModalContent.d.ts +7 -3
- package/dist/components/modal/ModalLayout.d.ts +16 -4
- package/dist/components/modal/ModalTrigger.d.ts +5 -3
- package/dist/components/modal/context.d.ts +8 -8
- package/dist/components/modal/index.d.ts +6 -6
- package/dist/components/modal/modal.styles.d.ts +233 -219
- package/dist/components/modal/modal.types.d.ts +35 -34
- package/dist/components/modal/useModal.d.ts +7 -7
- package/dist/components/pagination/Pagination.d.ts +6 -3
- package/dist/components/pagination/PaginationContent.d.ts +6 -3
- package/dist/components/pagination/PaginationContext.d.ts +54 -54
- package/dist/components/pagination/PaginationEllipsis.d.ts +6 -3
- package/dist/components/pagination/PaginationItem.d.ts +6 -3
- package/dist/components/pagination/PaginationItems.d.ts +2 -2
- package/dist/components/pagination/PaginationNext.d.ts +6 -3
- package/dist/components/pagination/PaginationPrevious.d.ts +6 -3
- package/dist/components/pagination/index.d.ts +18 -9
- package/dist/components/pagination/pagination.styles.d.ts +147 -133
- package/dist/components/pagination/pagination.types.d.ts +125 -121
- package/dist/components/pagination/usePagination.d.ts +25 -20
- package/dist/components/popover/Popover.d.ts +3 -2
- package/dist/components/popover/PopoverContent.d.ts +3 -2
- package/dist/components/popover/PopoverContext.d.ts +103 -83
- package/dist/components/popover/PopoverTrigger.d.ts +3 -2
- package/dist/components/popover/index.d.ts +6 -6
- package/dist/components/popover/popover.styles.d.ts +122 -108
- package/dist/components/popover/popover.types.d.ts +96 -95
- package/dist/components/popover/usePopover.d.ts +52 -42
- package/dist/components/radio/Radio.d.ts +4 -2
- package/dist/components/radio/RadioGroup.d.ts +4 -2
- package/dist/components/radio/index.d.ts +3 -3
- package/dist/components/radio/radio-group-context.d.ts +12 -12
- package/dist/components/radio/radio.styles.d.ts +306 -278
- package/dist/components/radio/radio.types.d.ts +145 -138
- package/dist/components/radio/useRadio.d.ts +391 -311
- package/dist/components/radio/useRadioGroup.d.ts +354 -281
- package/dist/components/ripple/Ripple.d.ts +9 -9
- package/dist/components/select/Select.d.ts +6 -3
- package/dist/components/select/SelectItem.d.ts +15 -4
- package/dist/components/select/index.d.ts +5 -5
- package/dist/components/select/select.styles.d.ts +224 -210
- package/dist/components/select/select.types.d.ts +51 -50
- package/dist/components/select/useSelect.d.ts +16 -16
- package/dist/components/spinner/Spinner.d.ts +9 -3
- package/dist/components/spinner/index.d.ts +2 -2
- package/dist/components/spinner/spinner.styles.d.ts +91 -77
- package/dist/components/spinner/spinner.types.d.ts +4 -4
- package/dist/components/switch/Switch.d.ts +4 -2
- package/dist/components/switch/index.d.ts +2 -2
- package/dist/components/switch/switch.styles.d.ts +147 -133
- package/dist/components/switch/switch.types.d.ts +84 -80
- package/dist/components/switch/useSwitch.d.ts +389 -311
- package/dist/components/tabs/Tab.d.ts +1 -1
- package/dist/components/tabs/Tabs.d.ts +1 -1
- package/dist/components/tabs/index.d.ts +4 -4
- package/dist/components/tabs/tabs.styles.d.ts +341 -327
- package/dist/components/tabs/tabs.types.d.ts +67 -66
- package/dist/components/tabs/useTabs.d.ts +4 -4
- package/dist/components/textarea/Textarea.d.ts +9 -4
- package/dist/components/textarea/index.d.ts +2 -2
- package/dist/components/textarea/textarea.styles.d.ts +276 -262
- package/dist/components/textarea/textarea.types.d.ts +57 -55
- package/dist/components/toast/Toast.d.ts +8 -4
- package/dist/components/toast/ToastProvider.d.ts +8 -4
- package/dist/components/toast/ToastViewport.d.ts +14 -4
- package/dist/components/toast/Toaster.d.ts +4 -2
- package/dist/components/toast/index.d.ts +7 -7
- package/dist/components/toast/toast-store.d.ts +10 -10
- package/dist/components/toast/toast-subcomponents.d.ts +10 -4
- package/dist/components/toast/toast.types.d.ts +18 -18
- package/dist/components/toast/use-toast-internal.d.ts +1 -1
- package/dist/components/toast/utils.d.ts +1 -1
- package/dist/components/tooltip/Tooltip.d.ts +1 -1
- package/dist/components/tooltip/index.d.ts +3 -3
- package/dist/components/tooltip/tooltip.styles.d.ts +187 -173
- package/dist/components/tooltip/tooltip.types.d.ts +85 -72
- package/dist/components/tooltip/useTooltip.d.ts +25 -25
- package/dist/components/tooltip/utils.d.ts +24 -13
- package/dist/hooks/index.d.ts +3 -3
- package/dist/hooks/useDisclosure.d.ts +10 -10
- package/dist/hooks/useFocusTrap.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +24 -25
- package/dist/index.js +1697 -1632
- package/dist/motion/focus.d.ts +6 -6
- package/dist/motion/hover.d.ts +8 -8
- package/dist/motion/index.d.ts +5 -5
- package/dist/motion/press.d.ts +7 -7
- package/dist/motion/reveal.d.ts +16 -16
- package/dist/motion/tokens.d.ts +9 -9
- package/dist/provider/RupoUIContext.d.ts +2 -2
- package/dist/provider/RupoUIProvider.d.ts +9 -5
- package/dist/provider/types.d.ts +46 -25
- package/dist/provider/useRupoUI.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/styles/tokens/colors.d.ts +24 -24
- package/dist/styles/tokens/index.d.ts +5 -5
- package/dist/styles/tokens/motion.d.ts +9 -9
- package/dist/styles/tokens/radius.d.ts +6 -6
- package/dist/styles/tokens/spacing.d.ts +11 -11
- package/dist/styles/tokens/typography.d.ts +64 -32
- package/dist/tailwind/index.d.ts +7 -7
- package/dist/tailwind/plugin-utils.d.ts +1 -1
- package/dist/tailwind/theme.d.ts +1 -1
- package/package.json +11 -2
- package/dist/components/toast/ToastDemo.d.ts +0 -1
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
import { PaginationVariants } from
|
|
1
|
+
import { PaginationVariants } from "./pagination.types";
|
|
2
2
|
|
|
3
3
|
export interface PaginationContextValue {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
4
|
+
/**
|
|
5
|
+
* Current page
|
|
6
|
+
*/
|
|
7
|
+
currentPage: number;
|
|
8
|
+
/**
|
|
9
|
+
* Total number of pages
|
|
10
|
+
*/
|
|
11
|
+
totalPages: number;
|
|
12
|
+
/**
|
|
13
|
+
* Whether pagination is disabled
|
|
14
|
+
*/
|
|
15
|
+
disabled: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Variant styles
|
|
18
|
+
*/
|
|
19
|
+
variant?: PaginationVariants["variant"];
|
|
20
|
+
/**
|
|
21
|
+
* Size variant
|
|
22
|
+
*/
|
|
23
|
+
size?: PaginationVariants["size"];
|
|
24
|
+
/**
|
|
25
|
+
* Navigate to a specific page
|
|
26
|
+
*/
|
|
27
|
+
goToPage: (page: number) => void;
|
|
28
|
+
/**
|
|
29
|
+
* Go to previous page
|
|
30
|
+
*/
|
|
31
|
+
goToPrevious: () => void;
|
|
32
|
+
/**
|
|
33
|
+
* Go to next page
|
|
34
|
+
*/
|
|
35
|
+
goToNext: () => void;
|
|
36
|
+
/**
|
|
37
|
+
* Whether we can go to previous page
|
|
38
|
+
*/
|
|
39
|
+
canGoPrevious: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Whether we can go to next page
|
|
42
|
+
*/
|
|
43
|
+
canGoNext: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Class names for slots
|
|
46
|
+
*/
|
|
47
|
+
classNames?: Partial<Record<string, string>>;
|
|
48
|
+
/**
|
|
49
|
+
* Whether to show previous button
|
|
50
|
+
*/
|
|
51
|
+
showPrevious: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Whether to show next button
|
|
54
|
+
*/
|
|
55
|
+
showNext: boolean;
|
|
56
56
|
}
|
|
57
|
-
export declare const PaginationContext: import(
|
|
57
|
+
export declare const PaginationContext: import("react").Context<PaginationContextValue | null>;
|
|
58
58
|
export declare function usePaginationContext(): PaginationContextValue;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { default as React } from
|
|
2
|
-
import { PaginationEllipsisProps } from './pagination.types';
|
|
1
|
+
import { default as React } from "react";
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
import { PaginationEllipsisProps } from "./pagination.types";
|
|
4
|
+
|
|
5
|
+
export declare const PaginationEllipsis: React.ForwardRefExoticComponent<
|
|
6
|
+
Omit<PaginationEllipsisProps, "ref"> & React.RefAttributes<HTMLSpanElement>
|
|
7
|
+
>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { default as React } from
|
|
2
|
-
import { PaginationItemProps } from './pagination.types';
|
|
1
|
+
import { default as React } from "react";
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
import { PaginationItemProps } from "./pagination.types";
|
|
4
|
+
|
|
5
|
+
export declare const PaginationItem: React.ForwardRefExoticComponent<
|
|
6
|
+
Omit<PaginationItemProps, "ref"> & React.RefAttributes<HTMLButtonElement>
|
|
7
|
+
>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { default as React } from
|
|
2
|
-
import { PaginationNextProps } from './pagination.types';
|
|
1
|
+
import { default as React } from "react";
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
import { PaginationNextProps } from "./pagination.types";
|
|
4
|
+
|
|
5
|
+
export declare const PaginationNext: React.ForwardRefExoticComponent<
|
|
6
|
+
PaginationNextProps & React.RefAttributes<HTMLButtonElement>
|
|
7
|
+
>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { default as React } from
|
|
2
|
-
import { PaginationPreviousProps } from './pagination.types';
|
|
1
|
+
import { default as React } from "react";
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
import { PaginationPreviousProps } from "./pagination.types";
|
|
4
|
+
|
|
5
|
+
export declare const PaginationPrevious: React.ForwardRefExoticComponent<
|
|
6
|
+
PaginationPreviousProps & React.RefAttributes<HTMLButtonElement>
|
|
7
|
+
>;
|
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
export { Pagination } from
|
|
2
|
-
export { PaginationContent } from
|
|
3
|
-
export { PaginationItem } from
|
|
4
|
-
export { PaginationPrevious } from
|
|
5
|
-
export { PaginationNext } from
|
|
6
|
-
export { PaginationEllipsis } from
|
|
7
|
-
export { usePagination } from
|
|
8
|
-
export type {
|
|
9
|
-
|
|
1
|
+
export { Pagination } from "./Pagination";
|
|
2
|
+
export { PaginationContent } from "./PaginationContent";
|
|
3
|
+
export { PaginationItem } from "./PaginationItem";
|
|
4
|
+
export { PaginationPrevious } from "./PaginationPrevious";
|
|
5
|
+
export { PaginationNext } from "./PaginationNext";
|
|
6
|
+
export { PaginationEllipsis } from "./PaginationEllipsis";
|
|
7
|
+
export { usePagination } from "./usePagination";
|
|
8
|
+
export type {
|
|
9
|
+
PaginationProps,
|
|
10
|
+
PaginationContentProps,
|
|
11
|
+
PaginationItemProps,
|
|
12
|
+
PaginationPreviousProps,
|
|
13
|
+
PaginationNextProps,
|
|
14
|
+
PaginationEllipsisProps,
|
|
15
|
+
PaginationRange,
|
|
16
|
+
PaginationVariants,
|
|
17
|
+
} from "./pagination.types";
|
|
18
|
+
export type { UsePaginationParams } from "./usePagination";
|
|
@@ -1,169 +1,183 @@
|
|
|
1
|
-
export declare const pagination: import(
|
|
1
|
+
export declare const pagination: import("tailwind-variants").TVReturnType<
|
|
2
|
+
{
|
|
2
3
|
variant: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
4
|
+
solid: {
|
|
5
|
+
item: string[];
|
|
6
|
+
prev: string;
|
|
7
|
+
next: string;
|
|
8
|
+
};
|
|
9
|
+
outline: {
|
|
10
|
+
item: string[];
|
|
11
|
+
prev: string;
|
|
12
|
+
next: string;
|
|
13
|
+
};
|
|
14
|
+
ghost: {
|
|
15
|
+
item: string[];
|
|
16
|
+
prev: string;
|
|
17
|
+
next: string;
|
|
18
|
+
};
|
|
18
19
|
};
|
|
19
20
|
size: {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
21
|
+
sm: {
|
|
22
|
+
base: string;
|
|
23
|
+
content: string;
|
|
24
|
+
item: string;
|
|
25
|
+
ellipsis: string;
|
|
26
|
+
prev: string;
|
|
27
|
+
next: string;
|
|
28
|
+
};
|
|
29
|
+
md: {
|
|
30
|
+
base: string;
|
|
31
|
+
content: string;
|
|
32
|
+
item: string;
|
|
33
|
+
ellipsis: string;
|
|
34
|
+
prev: string;
|
|
35
|
+
next: string;
|
|
36
|
+
};
|
|
37
|
+
lg: {
|
|
38
|
+
base: string;
|
|
39
|
+
content: string;
|
|
40
|
+
item: string;
|
|
41
|
+
ellipsis: string;
|
|
42
|
+
prev: string;
|
|
43
|
+
next: string;
|
|
44
|
+
};
|
|
44
45
|
};
|
|
45
46
|
isDisabled: {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
true: {
|
|
48
|
+
base: string;
|
|
49
|
+
};
|
|
49
50
|
};
|
|
50
|
-
},
|
|
51
|
+
},
|
|
52
|
+
{
|
|
51
53
|
base: string;
|
|
52
54
|
content: string;
|
|
53
55
|
item: string[];
|
|
54
56
|
ellipsis: string;
|
|
55
57
|
prev: string[];
|
|
56
58
|
next: string[];
|
|
57
|
-
},
|
|
59
|
+
},
|
|
60
|
+
undefined,
|
|
61
|
+
{
|
|
58
62
|
variant: {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
63
|
+
solid: {
|
|
64
|
+
item: string[];
|
|
65
|
+
prev: string;
|
|
66
|
+
next: string;
|
|
67
|
+
};
|
|
68
|
+
outline: {
|
|
69
|
+
item: string[];
|
|
70
|
+
prev: string;
|
|
71
|
+
next: string;
|
|
72
|
+
};
|
|
73
|
+
ghost: {
|
|
74
|
+
item: string[];
|
|
75
|
+
prev: string;
|
|
76
|
+
next: string;
|
|
77
|
+
};
|
|
74
78
|
};
|
|
75
79
|
size: {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
80
|
+
sm: {
|
|
81
|
+
base: string;
|
|
82
|
+
content: string;
|
|
83
|
+
item: string;
|
|
84
|
+
ellipsis: string;
|
|
85
|
+
prev: string;
|
|
86
|
+
next: string;
|
|
87
|
+
};
|
|
88
|
+
md: {
|
|
89
|
+
base: string;
|
|
90
|
+
content: string;
|
|
91
|
+
item: string;
|
|
92
|
+
ellipsis: string;
|
|
93
|
+
prev: string;
|
|
94
|
+
next: string;
|
|
95
|
+
};
|
|
96
|
+
lg: {
|
|
97
|
+
base: string;
|
|
98
|
+
content: string;
|
|
99
|
+
item: string;
|
|
100
|
+
ellipsis: string;
|
|
101
|
+
prev: string;
|
|
102
|
+
next: string;
|
|
103
|
+
};
|
|
100
104
|
};
|
|
101
105
|
isDisabled: {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
106
|
+
true: {
|
|
107
|
+
base: string;
|
|
108
|
+
};
|
|
105
109
|
};
|
|
106
|
-
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
107
112
|
base: string;
|
|
108
113
|
content: string;
|
|
109
114
|
item: string[];
|
|
110
115
|
ellipsis: string;
|
|
111
116
|
prev: string[];
|
|
112
117
|
next: string[];
|
|
113
|
-
},
|
|
114
|
-
|
|
118
|
+
},
|
|
119
|
+
import("tailwind-variants").TVReturnType<
|
|
120
|
+
{
|
|
121
|
+
variant: {
|
|
115
122
|
solid: {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
123
|
+
item: string[];
|
|
124
|
+
prev: string;
|
|
125
|
+
next: string;
|
|
119
126
|
};
|
|
120
127
|
outline: {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
128
|
+
item: string[];
|
|
129
|
+
prev: string;
|
|
130
|
+
next: string;
|
|
124
131
|
};
|
|
125
132
|
ghost: {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
133
|
+
item: string[];
|
|
134
|
+
prev: string;
|
|
135
|
+
next: string;
|
|
129
136
|
};
|
|
130
|
-
|
|
131
|
-
|
|
137
|
+
};
|
|
138
|
+
size: {
|
|
132
139
|
sm: {
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
140
|
+
base: string;
|
|
141
|
+
content: string;
|
|
142
|
+
item: string;
|
|
143
|
+
ellipsis: string;
|
|
144
|
+
prev: string;
|
|
145
|
+
next: string;
|
|
139
146
|
};
|
|
140
147
|
md: {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
148
|
+
base: string;
|
|
149
|
+
content: string;
|
|
150
|
+
item: string;
|
|
151
|
+
ellipsis: string;
|
|
152
|
+
prev: string;
|
|
153
|
+
next: string;
|
|
147
154
|
};
|
|
148
155
|
lg: {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
};
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
base: string;
|
|
157
|
+
content: string;
|
|
158
|
+
item: string;
|
|
159
|
+
ellipsis: string;
|
|
160
|
+
prev: string;
|
|
161
|
+
next: string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
isDisabled: {
|
|
158
165
|
true: {
|
|
159
|
-
|
|
160
|
-
};
|
|
161
|
-
|
|
162
|
-
},
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
166
|
+
base: string;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
base: string;
|
|
172
|
+
content: string;
|
|
173
|
+
item: string[];
|
|
174
|
+
ellipsis: string;
|
|
175
|
+
prev: string[];
|
|
176
|
+
next: string[];
|
|
177
|
+
},
|
|
178
|
+
undefined,
|
|
179
|
+
unknown,
|
|
180
|
+
unknown,
|
|
181
|
+
undefined
|
|
182
|
+
>
|
|
183
|
+
>;
|