@opexa/portal-components 0.0.799 → 0.0.801
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/components/GameProviders/GameProvidersList.d.ts +4 -0
- package/dist/components/GameProviders/GameProvidersList.js +7 -1
- package/dist/constants/GameProvider.js +6 -6
- package/dist/images/game-providers/JK8.png +0 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/ui/AlertDialog/AlertDialog.d.ts +55 -55
- package/dist/ui/AlertDialog/alertDialog.recipe.d.ts +5 -5
- package/dist/ui/Badge/Badge.d.ts +12 -12
- package/dist/ui/Badge/badge.anatomy.d.ts +1 -1
- package/dist/ui/Badge/badge.recipe.d.ts +3 -3
- package/dist/ui/Carousel/Carousel.d.ts +72 -72
- package/dist/ui/Carousel/carousel.recipe.d.ts +8 -8
- package/dist/ui/Checkbox/Checkbox.d.ts +23 -23
- package/dist/ui/Checkbox/checkbox.recipe.d.ts +3 -3
- package/dist/ui/Clipboard/Clipboard.d.ts +18 -18
- package/dist/ui/Clipboard/clipboard.recipe.d.ts +3 -3
- package/dist/ui/Combobox/Combobox.d.ts +42 -42
- package/dist/ui/Combobox/combobox.recipe.d.ts +3 -3
- package/dist/ui/DatePicker/DatePicker.d.ts +72 -72
- package/dist/ui/DatePicker/datePicker.recipe.d.ts +3 -3
- package/dist/ui/Dialog/Dialog.d.ts +33 -33
- package/dist/ui/Dialog/dialog.recipe.d.ts +3 -3
- package/dist/ui/Drawer/Drawer.d.ts +33 -33
- package/dist/ui/Drawer/drawer.recipe.d.ts +3 -3
- package/dist/ui/Menu/Menu.d.ts +144 -144
- package/dist/ui/Menu/menu.recipe.d.ts +8 -8
- package/dist/ui/PasswordInput/PasswordInput.d.ts +18 -18
- package/dist/ui/PasswordInput/passwordInput.recipe.d.ts +3 -3
- package/dist/ui/Popover/Popover.d.ts +55 -55
- package/dist/ui/Popover/popover.recipe.d.ts +5 -5
- package/dist/ui/Progress/Progress.d.ts +27 -27
- package/dist/ui/Progress/progress.recipe.d.ts +3 -3
- package/dist/ui/QrCode/QrCode.d.ts +40 -40
- package/dist/ui/QrCode/qrCode.recipe.d.ts +8 -8
- package/dist/ui/SegmentGroup/SegmentGroup.d.ts +18 -18
- package/dist/ui/SegmentGroup/segmentGroup.recipe.d.ts +3 -3
- package/dist/ui/Select/Select.d.ts +45 -45
- package/dist/ui/Select/select.recipe.d.ts +3 -3
- package/dist/ui/Table/Table.d.ts +21 -21
- package/dist/ui/Table/table.anatomy.d.ts +1 -1
- package/dist/ui/Table/table.recipe.d.ts +3 -3
- package/package.json +1 -1
|
@@ -29,5 +29,9 @@ export interface GameProvidersListProps {
|
|
|
29
29
|
showAllProviders?: boolean;
|
|
30
30
|
viewAllUrl?: string;
|
|
31
31
|
futureGameProviders?: GameProvider[];
|
|
32
|
+
providerUrlMappings?: {
|
|
33
|
+
providers: GameProvider[];
|
|
34
|
+
url: string;
|
|
35
|
+
}[];
|
|
32
36
|
}
|
|
33
37
|
export declare function GameProvidersList(props: GameProvidersListProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -32,6 +32,12 @@ export function GameProvidersList(props) {
|
|
|
32
32
|
: chunked.loadedItems;
|
|
33
33
|
return (_jsxs("div", { className: classNames.root, children: [_jsx("h2", { className: "font-semibold text-lg", children: props.heading ?? 'Providers' }), _jsxs("div", { className: "mt-lg grid grid-cols-3 gap-1.5 lg:grid-cols-6 lg:gap-2.5", children: [props.showAllProviders && (_jsx(Link, { href: props.viewAllUrl ?? '/providers', className: twMerge('flex h-full w-full items-center justify-center overflow-hidden rounded-md bg-brand-800 font-extrabold lg:h-[5.75rem]', classNames.thumbnailRoot), "aria-label": `View all games`, children: _jsx("p", { className: "text-center text-4xl", children: " ALL" }) })), items.map((provider) => {
|
|
34
34
|
const customLogo = props.gameProviderImages?.[provider.id];
|
|
35
|
-
|
|
35
|
+
const url = props.providerUrlMappings
|
|
36
|
+
? (props.providerUrlMappings
|
|
37
|
+
?.find(({ providers }) => providers.includes(provider.id))
|
|
38
|
+
?.url.replace(':slug', provider.slug)
|
|
39
|
+
.replace(':id', provider?.id) ?? `/providers/${provider.slug}`)
|
|
40
|
+
: null;
|
|
41
|
+
return (_jsx(Link, { href: url ?? viewGamesUrl(provider), className: twMerge('flex h-full w-full items-center overflow-hidden rounded-md bg-brand-800 lg:h-[5.75rem]', !customLogo && 'px-2 py-1.5', classNames.thumbnailRoot), "aria-label": `View ${provider.name} games`, children: _jsx(Image, { src: customLogo ?? provider.logo, alt: "", width: 300, height: 150, className: twMerge('mx-auto h-auto w-full', classNames.thumbnailImage) }) }, provider.id));
|
|
36
42
|
})] }), !props.showAllProviders && (_jsxs("div", { className: "mt-2xl flex flex-col items-center lg:mt-3xl", children: [_jsx(Progress.Root, { min: 0, max: chunked.totalItems, value: chunked.totalLoadedItems, onValueChange: noop, className: twMerge('w-[12.5rem]', classNames.progressRoot), children: _jsx(Progress.Track, { className: twMerge('bg-bg-tertiary', classNames.progressTrack), children: _jsx(Progress.Range, {}) }) }), _jsx("p", { className: "mt-md text-button-tertiary-fg text-sm", children: `Displaying ${chunked.totalLoadedItems} of ${chunked.totalItems}` }), chunked.hasNext && (_jsx(Button, { size: "sm", variant: "outline", fullWidth: false, onClick: chunked.next, className: twMerge('mt-lg', classNames.loadMoreButton), children: "Load More" }))] }))] }));
|
|
37
43
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import alize from '../images/game-providers/ALIZE.png';
|
|
2
|
-
import alphaChinko from '../images/game-providers/ALPHACHINKO.png';
|
|
3
2
|
import bgaming from '../images/game-providers/BGAMING.png';
|
|
4
3
|
import btg from '../images/game-providers/BIG_TIME_GAMING.png';
|
|
5
4
|
import bng from '../images/game-providers/BNG.png';
|
|
@@ -23,6 +22,7 @@ import jdb from '../images/game-providers/JDB.png';
|
|
|
23
22
|
import jdbGtf from '../images/game-providers/JDB_GTF.png';
|
|
24
23
|
import jdbSpribe from '../images/game-providers/JDB_SPRIBE.png';
|
|
25
24
|
import jili from '../images/game-providers/JILI.png';
|
|
25
|
+
import jk8 from '../images/game-providers/JK8.png';
|
|
26
26
|
import joker from '../images/game-providers/JOKER.png';
|
|
27
27
|
import kingmaker from '../images/game-providers/KINGMAKER.png';
|
|
28
28
|
import kingmidas from '../images/game-providers/KINGMIDAS.png';
|
|
@@ -313,11 +313,11 @@ export const GAME_PROVIDER_DATA = {
|
|
|
313
313
|
slug: 'sagaming',
|
|
314
314
|
logo: sagaming,
|
|
315
315
|
},
|
|
316
|
-
|
|
317
|
-
id: '
|
|
318
|
-
name: '
|
|
319
|
-
slug: '
|
|
320
|
-
logo:
|
|
316
|
+
JK8: {
|
|
317
|
+
id: 'JK8',
|
|
318
|
+
name: 'JK8',
|
|
319
|
+
slug: 'jk8',
|
|
320
|
+
logo: jk8,
|
|
321
321
|
},
|
|
322
322
|
ONEAPI_SPADEGAMING: {
|
|
323
323
|
id: 'ONEAPI_SPADEGAMING',
|
|
Binary file
|
package/dist/types/index.d.ts
CHANGED
|
@@ -157,7 +157,7 @@ export interface Announcement {
|
|
|
157
157
|
dateTimeLastUpdated: string;
|
|
158
158
|
}
|
|
159
159
|
export type GameType = 'SLOTS' | 'SPORTS' | 'FISHING' | 'BINGO' | 'LIVE' | 'GAMES' | 'TABLE' | 'SPECIALTY' | 'NUMERICAL' | 'NUMERIC' | 'ARCADE';
|
|
160
|
-
export type GameProvider = 'JILI' | 'JILI_BINGO' | 'PGSOFT' | 'FACHAI' | 'BTI' | 'DG' | 'PLAYTECH' | 'E2E' | 'ONEAPI_EVOLUTION' | 'EVOLUTION' | 'EVOLUTION_NETENT' | 'EVOLUTION_REDTIGER' | 'MEGABALL' | 'MEGA2SPIN' | 'DARWIN' | 'RTG' | 'DRBINGO' | 'HOLLYWOODTV' | 'CQ9' | 'JDB' | 'HABANERO' | 'SPINIX' | 'JOKER' | 'HACKSAW' | 'JDBGTF' | 'JDBSPRIBE' | 'MICROGAMING' | 'RELAXGAMING' | 'EVOPLAY' | 'BOOONGO' | 'BGAMING' | 'KINGMAKER' | 'KINGMIDAS' | 'YELLOWBAT' | 'ETENGJUE' | 'SABA' | 'PRAGMATICPLAY' | 'SPRIBE' | 'EZUGI' | 'ALIZE' | 'DIGITAIN' | 'BNG' | 'NO_LIMIT_CITY' | 'BIG_TIME_GAMING' | 'SAGAMING' | 'ONEAPI_SPADEGAMING' | '
|
|
160
|
+
export type GameProvider = 'JILI' | 'JILI_BINGO' | 'PGSOFT' | 'FACHAI' | 'BTI' | 'DG' | 'PLAYTECH' | 'E2E' | 'ONEAPI_EVOLUTION' | 'EVOLUTION' | 'EVOLUTION_NETENT' | 'EVOLUTION_REDTIGER' | 'MEGABALL' | 'MEGA2SPIN' | 'DARWIN' | 'RTG' | 'DRBINGO' | 'HOLLYWOODTV' | 'CQ9' | 'JDB' | 'HABANERO' | 'SPINIX' | 'JOKER' | 'HACKSAW' | 'JDBGTF' | 'JDBSPRIBE' | 'MICROGAMING' | 'RELAXGAMING' | 'EVOPLAY' | 'BOOONGO' | 'BGAMING' | 'KINGMAKER' | 'KINGMIDAS' | 'YELLOWBAT' | 'ETENGJUE' | 'SABA' | 'PRAGMATICPLAY' | 'SPRIBE' | 'EZUGI' | 'ALIZE' | 'DIGITAIN' | 'BNG' | 'NO_LIMIT_CITY' | 'BIG_TIME_GAMING' | 'SAGAMING' | 'ONEAPI_SPADEGAMING' | 'JK8';
|
|
161
161
|
export type GameStatus = 'ACTIVE' | 'INACTIVE';
|
|
162
162
|
export type GameTag = 'HOT' | 'hot' | 'NEW' | 'new' | 'TOP' | 'top' | 'POPULAR' | 'popular' | (string & {});
|
|
163
163
|
export interface Game {
|
|
@@ -7,10 +7,10 @@ export declare const Root: import("react").ComponentType<import("@ark-ui/react")
|
|
|
7
7
|
body?: import("tailwind-variants").ClassValue;
|
|
8
8
|
footer?: import("tailwind-variants").ClassValue;
|
|
9
9
|
header?: import("tailwind-variants").ClassValue;
|
|
10
|
+
description?: import("tailwind-variants").ClassValue;
|
|
10
11
|
trigger?: import("tailwind-variants").ClassValue;
|
|
11
12
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
12
13
|
positioner?: import("tailwind-variants").ClassValue;
|
|
13
|
-
description?: import("tailwind-variants").ClassValue;
|
|
14
14
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
15
15
|
};
|
|
16
16
|
};
|
|
@@ -22,14 +22,14 @@ export declare const Root: import("react").ComponentType<import("@ark-ui/react")
|
|
|
22
22
|
body?: import("tailwind-variants").ClassValue;
|
|
23
23
|
footer?: import("tailwind-variants").ClassValue;
|
|
24
24
|
header?: import("tailwind-variants").ClassValue;
|
|
25
|
+
description?: import("tailwind-variants").ClassValue;
|
|
25
26
|
trigger?: import("tailwind-variants").ClassValue;
|
|
26
27
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
27
28
|
positioner?: import("tailwind-variants").ClassValue;
|
|
28
|
-
description?: import("tailwind-variants").ClassValue;
|
|
29
29
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
32
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
33
33
|
[key: string]: {
|
|
34
34
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
35
35
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -37,14 +37,14 @@ export declare const Root: import("react").ComponentType<import("@ark-ui/react")
|
|
|
37
37
|
body?: import("tailwind-variants").ClassValue;
|
|
38
38
|
footer?: import("tailwind-variants").ClassValue;
|
|
39
39
|
header?: import("tailwind-variants").ClassValue;
|
|
40
|
+
description?: import("tailwind-variants").ClassValue;
|
|
40
41
|
trigger?: import("tailwind-variants").ClassValue;
|
|
41
42
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
42
43
|
positioner?: import("tailwind-variants").ClassValue;
|
|
43
|
-
description?: import("tailwind-variants").ClassValue;
|
|
44
44
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
47
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
48
48
|
export declare const Backdrop: import("react").ComponentType<import("@ark-ui/react").Assign<Dialog.BackdropProps & import("react").RefAttributes<HTMLDivElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
49
49
|
[key: string]: {
|
|
50
50
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -53,10 +53,10 @@ export declare const Backdrop: import("react").ComponentType<import("@ark-ui/rea
|
|
|
53
53
|
body?: import("tailwind-variants").ClassValue;
|
|
54
54
|
footer?: import("tailwind-variants").ClassValue;
|
|
55
55
|
header?: import("tailwind-variants").ClassValue;
|
|
56
|
+
description?: import("tailwind-variants").ClassValue;
|
|
56
57
|
trigger?: import("tailwind-variants").ClassValue;
|
|
57
58
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
58
59
|
positioner?: import("tailwind-variants").ClassValue;
|
|
59
|
-
description?: import("tailwind-variants").ClassValue;
|
|
60
60
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
61
61
|
};
|
|
62
62
|
};
|
|
@@ -68,14 +68,14 @@ export declare const Backdrop: import("react").ComponentType<import("@ark-ui/rea
|
|
|
68
68
|
body?: import("tailwind-variants").ClassValue;
|
|
69
69
|
footer?: import("tailwind-variants").ClassValue;
|
|
70
70
|
header?: import("tailwind-variants").ClassValue;
|
|
71
|
+
description?: import("tailwind-variants").ClassValue;
|
|
71
72
|
trigger?: import("tailwind-variants").ClassValue;
|
|
72
73
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
73
74
|
positioner?: import("tailwind-variants").ClassValue;
|
|
74
|
-
description?: import("tailwind-variants").ClassValue;
|
|
75
75
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
78
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
79
79
|
[key: string]: {
|
|
80
80
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
81
81
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -83,14 +83,14 @@ export declare const Backdrop: import("react").ComponentType<import("@ark-ui/rea
|
|
|
83
83
|
body?: import("tailwind-variants").ClassValue;
|
|
84
84
|
footer?: import("tailwind-variants").ClassValue;
|
|
85
85
|
header?: import("tailwind-variants").ClassValue;
|
|
86
|
+
description?: import("tailwind-variants").ClassValue;
|
|
86
87
|
trigger?: import("tailwind-variants").ClassValue;
|
|
87
88
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
88
89
|
positioner?: import("tailwind-variants").ClassValue;
|
|
89
|
-
description?: import("tailwind-variants").ClassValue;
|
|
90
90
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
91
91
|
};
|
|
92
92
|
};
|
|
93
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
93
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
94
94
|
export declare const CloseTrigger: import("react").ComponentType<import("@ark-ui/react").Assign<Dialog.CloseTriggerProps & import("react").RefAttributes<HTMLButtonElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
95
95
|
[key: string]: {
|
|
96
96
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -99,10 +99,10 @@ export declare const CloseTrigger: import("react").ComponentType<import("@ark-ui
|
|
|
99
99
|
body?: import("tailwind-variants").ClassValue;
|
|
100
100
|
footer?: import("tailwind-variants").ClassValue;
|
|
101
101
|
header?: import("tailwind-variants").ClassValue;
|
|
102
|
+
description?: import("tailwind-variants").ClassValue;
|
|
102
103
|
trigger?: import("tailwind-variants").ClassValue;
|
|
103
104
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
104
105
|
positioner?: import("tailwind-variants").ClassValue;
|
|
105
|
-
description?: import("tailwind-variants").ClassValue;
|
|
106
106
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
107
107
|
};
|
|
108
108
|
};
|
|
@@ -114,14 +114,14 @@ export declare const CloseTrigger: import("react").ComponentType<import("@ark-ui
|
|
|
114
114
|
body?: import("tailwind-variants").ClassValue;
|
|
115
115
|
footer?: import("tailwind-variants").ClassValue;
|
|
116
116
|
header?: import("tailwind-variants").ClassValue;
|
|
117
|
+
description?: import("tailwind-variants").ClassValue;
|
|
117
118
|
trigger?: import("tailwind-variants").ClassValue;
|
|
118
119
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
119
120
|
positioner?: import("tailwind-variants").ClassValue;
|
|
120
|
-
description?: import("tailwind-variants").ClassValue;
|
|
121
121
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
122
122
|
};
|
|
123
123
|
};
|
|
124
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
124
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
125
125
|
[key: string]: {
|
|
126
126
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
127
127
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -129,14 +129,14 @@ export declare const CloseTrigger: import("react").ComponentType<import("@ark-ui
|
|
|
129
129
|
body?: import("tailwind-variants").ClassValue;
|
|
130
130
|
footer?: import("tailwind-variants").ClassValue;
|
|
131
131
|
header?: import("tailwind-variants").ClassValue;
|
|
132
|
+
description?: import("tailwind-variants").ClassValue;
|
|
132
133
|
trigger?: import("tailwind-variants").ClassValue;
|
|
133
134
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
134
135
|
positioner?: import("tailwind-variants").ClassValue;
|
|
135
|
-
description?: import("tailwind-variants").ClassValue;
|
|
136
136
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
137
137
|
};
|
|
138
138
|
};
|
|
139
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
139
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
140
140
|
export declare const Content: import("react").ComponentType<import("@ark-ui/react").Assign<Dialog.ContentProps & import("react").RefAttributes<HTMLDivElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
141
141
|
[key: string]: {
|
|
142
142
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -145,10 +145,10 @@ export declare const Content: import("react").ComponentType<import("@ark-ui/reac
|
|
|
145
145
|
body?: import("tailwind-variants").ClassValue;
|
|
146
146
|
footer?: import("tailwind-variants").ClassValue;
|
|
147
147
|
header?: import("tailwind-variants").ClassValue;
|
|
148
|
+
description?: import("tailwind-variants").ClassValue;
|
|
148
149
|
trigger?: import("tailwind-variants").ClassValue;
|
|
149
150
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
150
151
|
positioner?: import("tailwind-variants").ClassValue;
|
|
151
|
-
description?: import("tailwind-variants").ClassValue;
|
|
152
152
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
153
153
|
};
|
|
154
154
|
};
|
|
@@ -160,14 +160,14 @@ export declare const Content: import("react").ComponentType<import("@ark-ui/reac
|
|
|
160
160
|
body?: import("tailwind-variants").ClassValue;
|
|
161
161
|
footer?: import("tailwind-variants").ClassValue;
|
|
162
162
|
header?: import("tailwind-variants").ClassValue;
|
|
163
|
+
description?: import("tailwind-variants").ClassValue;
|
|
163
164
|
trigger?: import("tailwind-variants").ClassValue;
|
|
164
165
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
165
166
|
positioner?: import("tailwind-variants").ClassValue;
|
|
166
|
-
description?: import("tailwind-variants").ClassValue;
|
|
167
167
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
168
168
|
};
|
|
169
169
|
};
|
|
170
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
170
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
171
171
|
[key: string]: {
|
|
172
172
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
173
173
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -175,14 +175,14 @@ export declare const Content: import("react").ComponentType<import("@ark-ui/reac
|
|
|
175
175
|
body?: import("tailwind-variants").ClassValue;
|
|
176
176
|
footer?: import("tailwind-variants").ClassValue;
|
|
177
177
|
header?: import("tailwind-variants").ClassValue;
|
|
178
|
+
description?: import("tailwind-variants").ClassValue;
|
|
178
179
|
trigger?: import("tailwind-variants").ClassValue;
|
|
179
180
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
180
181
|
positioner?: import("tailwind-variants").ClassValue;
|
|
181
|
-
description?: import("tailwind-variants").ClassValue;
|
|
182
182
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
183
183
|
};
|
|
184
184
|
};
|
|
185
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
185
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
186
186
|
export declare const Description: import("react").ComponentType<import("@ark-ui/react").Assign<Dialog.DescriptionProps & import("react").RefAttributes<HTMLDivElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
187
187
|
[key: string]: {
|
|
188
188
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -191,10 +191,10 @@ export declare const Description: import("react").ComponentType<import("@ark-ui/
|
|
|
191
191
|
body?: import("tailwind-variants").ClassValue;
|
|
192
192
|
footer?: import("tailwind-variants").ClassValue;
|
|
193
193
|
header?: import("tailwind-variants").ClassValue;
|
|
194
|
+
description?: import("tailwind-variants").ClassValue;
|
|
194
195
|
trigger?: import("tailwind-variants").ClassValue;
|
|
195
196
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
196
197
|
positioner?: import("tailwind-variants").ClassValue;
|
|
197
|
-
description?: import("tailwind-variants").ClassValue;
|
|
198
198
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
199
199
|
};
|
|
200
200
|
};
|
|
@@ -206,14 +206,14 @@ export declare const Description: import("react").ComponentType<import("@ark-ui/
|
|
|
206
206
|
body?: import("tailwind-variants").ClassValue;
|
|
207
207
|
footer?: import("tailwind-variants").ClassValue;
|
|
208
208
|
header?: import("tailwind-variants").ClassValue;
|
|
209
|
+
description?: import("tailwind-variants").ClassValue;
|
|
209
210
|
trigger?: import("tailwind-variants").ClassValue;
|
|
210
211
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
211
212
|
positioner?: import("tailwind-variants").ClassValue;
|
|
212
|
-
description?: import("tailwind-variants").ClassValue;
|
|
213
213
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
214
214
|
};
|
|
215
215
|
};
|
|
216
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
216
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
217
217
|
[key: string]: {
|
|
218
218
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
219
219
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -221,14 +221,14 @@ export declare const Description: import("react").ComponentType<import("@ark-ui/
|
|
|
221
221
|
body?: import("tailwind-variants").ClassValue;
|
|
222
222
|
footer?: import("tailwind-variants").ClassValue;
|
|
223
223
|
header?: import("tailwind-variants").ClassValue;
|
|
224
|
+
description?: import("tailwind-variants").ClassValue;
|
|
224
225
|
trigger?: import("tailwind-variants").ClassValue;
|
|
225
226
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
226
227
|
positioner?: import("tailwind-variants").ClassValue;
|
|
227
|
-
description?: import("tailwind-variants").ClassValue;
|
|
228
228
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
229
229
|
};
|
|
230
230
|
};
|
|
231
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
231
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
232
232
|
export declare const Positioner: import("react").ComponentType<import("@ark-ui/react").Assign<Dialog.PositionerProps & import("react").RefAttributes<HTMLDivElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
233
233
|
[key: string]: {
|
|
234
234
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -237,10 +237,10 @@ export declare const Positioner: import("react").ComponentType<import("@ark-ui/r
|
|
|
237
237
|
body?: import("tailwind-variants").ClassValue;
|
|
238
238
|
footer?: import("tailwind-variants").ClassValue;
|
|
239
239
|
header?: import("tailwind-variants").ClassValue;
|
|
240
|
+
description?: import("tailwind-variants").ClassValue;
|
|
240
241
|
trigger?: import("tailwind-variants").ClassValue;
|
|
241
242
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
242
243
|
positioner?: import("tailwind-variants").ClassValue;
|
|
243
|
-
description?: import("tailwind-variants").ClassValue;
|
|
244
244
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
245
245
|
};
|
|
246
246
|
};
|
|
@@ -252,14 +252,14 @@ export declare const Positioner: import("react").ComponentType<import("@ark-ui/r
|
|
|
252
252
|
body?: import("tailwind-variants").ClassValue;
|
|
253
253
|
footer?: import("tailwind-variants").ClassValue;
|
|
254
254
|
header?: import("tailwind-variants").ClassValue;
|
|
255
|
+
description?: import("tailwind-variants").ClassValue;
|
|
255
256
|
trigger?: import("tailwind-variants").ClassValue;
|
|
256
257
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
257
258
|
positioner?: import("tailwind-variants").ClassValue;
|
|
258
|
-
description?: import("tailwind-variants").ClassValue;
|
|
259
259
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
260
260
|
};
|
|
261
261
|
};
|
|
262
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
262
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
263
263
|
[key: string]: {
|
|
264
264
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
265
265
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -267,14 +267,14 @@ export declare const Positioner: import("react").ComponentType<import("@ark-ui/r
|
|
|
267
267
|
body?: import("tailwind-variants").ClassValue;
|
|
268
268
|
footer?: import("tailwind-variants").ClassValue;
|
|
269
269
|
header?: import("tailwind-variants").ClassValue;
|
|
270
|
+
description?: import("tailwind-variants").ClassValue;
|
|
270
271
|
trigger?: import("tailwind-variants").ClassValue;
|
|
271
272
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
272
273
|
positioner?: import("tailwind-variants").ClassValue;
|
|
273
|
-
description?: import("tailwind-variants").ClassValue;
|
|
274
274
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
275
275
|
};
|
|
276
276
|
};
|
|
277
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
277
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
278
278
|
export declare const Title: import("react").ComponentType<import("@ark-ui/react").Assign<Dialog.TitleProps & import("react").RefAttributes<HTMLHeadingElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
279
279
|
[key: string]: {
|
|
280
280
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -283,10 +283,10 @@ export declare const Title: import("react").ComponentType<import("@ark-ui/react"
|
|
|
283
283
|
body?: import("tailwind-variants").ClassValue;
|
|
284
284
|
footer?: import("tailwind-variants").ClassValue;
|
|
285
285
|
header?: import("tailwind-variants").ClassValue;
|
|
286
|
+
description?: import("tailwind-variants").ClassValue;
|
|
286
287
|
trigger?: import("tailwind-variants").ClassValue;
|
|
287
288
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
288
289
|
positioner?: import("tailwind-variants").ClassValue;
|
|
289
|
-
description?: import("tailwind-variants").ClassValue;
|
|
290
290
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
291
291
|
};
|
|
292
292
|
};
|
|
@@ -298,14 +298,14 @@ export declare const Title: import("react").ComponentType<import("@ark-ui/react"
|
|
|
298
298
|
body?: import("tailwind-variants").ClassValue;
|
|
299
299
|
footer?: import("tailwind-variants").ClassValue;
|
|
300
300
|
header?: import("tailwind-variants").ClassValue;
|
|
301
|
+
description?: import("tailwind-variants").ClassValue;
|
|
301
302
|
trigger?: import("tailwind-variants").ClassValue;
|
|
302
303
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
303
304
|
positioner?: import("tailwind-variants").ClassValue;
|
|
304
|
-
description?: import("tailwind-variants").ClassValue;
|
|
305
305
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
306
306
|
};
|
|
307
307
|
};
|
|
308
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
308
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
309
309
|
[key: string]: {
|
|
310
310
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
311
311
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -313,14 +313,14 @@ export declare const Title: import("react").ComponentType<import("@ark-ui/react"
|
|
|
313
313
|
body?: import("tailwind-variants").ClassValue;
|
|
314
314
|
footer?: import("tailwind-variants").ClassValue;
|
|
315
315
|
header?: import("tailwind-variants").ClassValue;
|
|
316
|
+
description?: import("tailwind-variants").ClassValue;
|
|
316
317
|
trigger?: import("tailwind-variants").ClassValue;
|
|
317
318
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
318
319
|
positioner?: import("tailwind-variants").ClassValue;
|
|
319
|
-
description?: import("tailwind-variants").ClassValue;
|
|
320
320
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
321
321
|
};
|
|
322
322
|
};
|
|
323
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
323
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
324
324
|
export declare const Trigger: import("react").ComponentType<import("@ark-ui/react").Assign<Dialog.TriggerProps & import("react").RefAttributes<HTMLButtonElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
325
325
|
[key: string]: {
|
|
326
326
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -329,10 +329,10 @@ export declare const Trigger: import("react").ComponentType<import("@ark-ui/reac
|
|
|
329
329
|
body?: import("tailwind-variants").ClassValue;
|
|
330
330
|
footer?: import("tailwind-variants").ClassValue;
|
|
331
331
|
header?: import("tailwind-variants").ClassValue;
|
|
332
|
+
description?: import("tailwind-variants").ClassValue;
|
|
332
333
|
trigger?: import("tailwind-variants").ClassValue;
|
|
333
334
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
334
335
|
positioner?: import("tailwind-variants").ClassValue;
|
|
335
|
-
description?: import("tailwind-variants").ClassValue;
|
|
336
336
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
337
337
|
};
|
|
338
338
|
};
|
|
@@ -344,14 +344,14 @@ export declare const Trigger: import("react").ComponentType<import("@ark-ui/reac
|
|
|
344
344
|
body?: import("tailwind-variants").ClassValue;
|
|
345
345
|
footer?: import("tailwind-variants").ClassValue;
|
|
346
346
|
header?: import("tailwind-variants").ClassValue;
|
|
347
|
+
description?: import("tailwind-variants").ClassValue;
|
|
347
348
|
trigger?: import("tailwind-variants").ClassValue;
|
|
348
349
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
349
350
|
positioner?: import("tailwind-variants").ClassValue;
|
|
350
|
-
description?: import("tailwind-variants").ClassValue;
|
|
351
351
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
352
352
|
};
|
|
353
353
|
};
|
|
354
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
354
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
355
355
|
[key: string]: {
|
|
356
356
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
357
357
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -359,14 +359,14 @@ export declare const Trigger: import("react").ComponentType<import("@ark-ui/reac
|
|
|
359
359
|
body?: import("tailwind-variants").ClassValue;
|
|
360
360
|
footer?: import("tailwind-variants").ClassValue;
|
|
361
361
|
header?: import("tailwind-variants").ClassValue;
|
|
362
|
+
description?: import("tailwind-variants").ClassValue;
|
|
362
363
|
trigger?: import("tailwind-variants").ClassValue;
|
|
363
364
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
364
365
|
positioner?: import("tailwind-variants").ClassValue;
|
|
365
|
-
description?: import("tailwind-variants").ClassValue;
|
|
366
366
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
367
367
|
};
|
|
368
368
|
};
|
|
369
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
369
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
370
370
|
export declare const Header: import("react").ComponentType<import("@ark-ui/react").Assign<import("react").ClassAttributes<HTMLElement> & import("react").HTMLAttributes<HTMLElement> & import("@ark-ui/react").PolymorphicProps, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
371
371
|
[key: string]: {
|
|
372
372
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -375,10 +375,10 @@ export declare const Header: import("react").ComponentType<import("@ark-ui/react
|
|
|
375
375
|
body?: import("tailwind-variants").ClassValue;
|
|
376
376
|
footer?: import("tailwind-variants").ClassValue;
|
|
377
377
|
header?: import("tailwind-variants").ClassValue;
|
|
378
|
+
description?: import("tailwind-variants").ClassValue;
|
|
378
379
|
trigger?: import("tailwind-variants").ClassValue;
|
|
379
380
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
380
381
|
positioner?: import("tailwind-variants").ClassValue;
|
|
381
|
-
description?: import("tailwind-variants").ClassValue;
|
|
382
382
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
383
383
|
};
|
|
384
384
|
};
|
|
@@ -390,14 +390,14 @@ export declare const Header: import("react").ComponentType<import("@ark-ui/react
|
|
|
390
390
|
body?: import("tailwind-variants").ClassValue;
|
|
391
391
|
footer?: import("tailwind-variants").ClassValue;
|
|
392
392
|
header?: import("tailwind-variants").ClassValue;
|
|
393
|
+
description?: import("tailwind-variants").ClassValue;
|
|
393
394
|
trigger?: import("tailwind-variants").ClassValue;
|
|
394
395
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
395
396
|
positioner?: import("tailwind-variants").ClassValue;
|
|
396
|
-
description?: import("tailwind-variants").ClassValue;
|
|
397
397
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
398
398
|
};
|
|
399
399
|
};
|
|
400
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
400
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
401
401
|
[key: string]: {
|
|
402
402
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
403
403
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -405,14 +405,14 @@ export declare const Header: import("react").ComponentType<import("@ark-ui/react
|
|
|
405
405
|
body?: import("tailwind-variants").ClassValue;
|
|
406
406
|
footer?: import("tailwind-variants").ClassValue;
|
|
407
407
|
header?: import("tailwind-variants").ClassValue;
|
|
408
|
+
description?: import("tailwind-variants").ClassValue;
|
|
408
409
|
trigger?: import("tailwind-variants").ClassValue;
|
|
409
410
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
410
411
|
positioner?: import("tailwind-variants").ClassValue;
|
|
411
|
-
description?: import("tailwind-variants").ClassValue;
|
|
412
412
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
413
413
|
};
|
|
414
414
|
};
|
|
415
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
415
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
416
416
|
export declare const Body: import("react").ComponentType<import("@ark-ui/react").Assign<import("react").ClassAttributes<HTMLElement> & import("react").HTMLAttributes<HTMLElement> & import("@ark-ui/react").PolymorphicProps, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
417
417
|
[key: string]: {
|
|
418
418
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -421,10 +421,10 @@ export declare const Body: import("react").ComponentType<import("@ark-ui/react")
|
|
|
421
421
|
body?: import("tailwind-variants").ClassValue;
|
|
422
422
|
footer?: import("tailwind-variants").ClassValue;
|
|
423
423
|
header?: import("tailwind-variants").ClassValue;
|
|
424
|
+
description?: import("tailwind-variants").ClassValue;
|
|
424
425
|
trigger?: import("tailwind-variants").ClassValue;
|
|
425
426
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
426
427
|
positioner?: import("tailwind-variants").ClassValue;
|
|
427
|
-
description?: import("tailwind-variants").ClassValue;
|
|
428
428
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
429
429
|
};
|
|
430
430
|
};
|
|
@@ -436,14 +436,14 @@ export declare const Body: import("react").ComponentType<import("@ark-ui/react")
|
|
|
436
436
|
body?: import("tailwind-variants").ClassValue;
|
|
437
437
|
footer?: import("tailwind-variants").ClassValue;
|
|
438
438
|
header?: import("tailwind-variants").ClassValue;
|
|
439
|
+
description?: import("tailwind-variants").ClassValue;
|
|
439
440
|
trigger?: import("tailwind-variants").ClassValue;
|
|
440
441
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
441
442
|
positioner?: import("tailwind-variants").ClassValue;
|
|
442
|
-
description?: import("tailwind-variants").ClassValue;
|
|
443
443
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
444
444
|
};
|
|
445
445
|
};
|
|
446
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
446
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
447
447
|
[key: string]: {
|
|
448
448
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
449
449
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -451,14 +451,14 @@ export declare const Body: import("react").ComponentType<import("@ark-ui/react")
|
|
|
451
451
|
body?: import("tailwind-variants").ClassValue;
|
|
452
452
|
footer?: import("tailwind-variants").ClassValue;
|
|
453
453
|
header?: import("tailwind-variants").ClassValue;
|
|
454
|
+
description?: import("tailwind-variants").ClassValue;
|
|
454
455
|
trigger?: import("tailwind-variants").ClassValue;
|
|
455
456
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
456
457
|
positioner?: import("tailwind-variants").ClassValue;
|
|
457
|
-
description?: import("tailwind-variants").ClassValue;
|
|
458
458
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
459
459
|
};
|
|
460
460
|
};
|
|
461
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
461
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
462
462
|
export declare const Footer: import("react").ComponentType<import("@ark-ui/react").Assign<import("react").ClassAttributes<HTMLElement> & import("react").HTMLAttributes<HTMLElement> & import("@ark-ui/react").PolymorphicProps, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
463
463
|
[key: string]: {
|
|
464
464
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
@@ -467,10 +467,10 @@ export declare const Footer: import("react").ComponentType<import("@ark-ui/react
|
|
|
467
467
|
body?: import("tailwind-variants").ClassValue;
|
|
468
468
|
footer?: import("tailwind-variants").ClassValue;
|
|
469
469
|
header?: import("tailwind-variants").ClassValue;
|
|
470
|
+
description?: import("tailwind-variants").ClassValue;
|
|
470
471
|
trigger?: import("tailwind-variants").ClassValue;
|
|
471
472
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
472
473
|
positioner?: import("tailwind-variants").ClassValue;
|
|
473
|
-
description?: import("tailwind-variants").ClassValue;
|
|
474
474
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
475
475
|
};
|
|
476
476
|
};
|
|
@@ -482,14 +482,14 @@ export declare const Footer: import("react").ComponentType<import("@ark-ui/react
|
|
|
482
482
|
body?: import("tailwind-variants").ClassValue;
|
|
483
483
|
footer?: import("tailwind-variants").ClassValue;
|
|
484
484
|
header?: import("tailwind-variants").ClassValue;
|
|
485
|
+
description?: import("tailwind-variants").ClassValue;
|
|
485
486
|
trigger?: import("tailwind-variants").ClassValue;
|
|
486
487
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
487
488
|
positioner?: import("tailwind-variants").ClassValue;
|
|
488
|
-
description?: import("tailwind-variants").ClassValue;
|
|
489
489
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
490
490
|
};
|
|
491
491
|
};
|
|
492
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
492
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, {
|
|
493
493
|
[key: string]: {
|
|
494
494
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
495
495
|
title?: import("tailwind-variants").ClassValue;
|
|
@@ -497,12 +497,12 @@ export declare const Footer: import("react").ComponentType<import("@ark-ui/react
|
|
|
497
497
|
body?: import("tailwind-variants").ClassValue;
|
|
498
498
|
footer?: import("tailwind-variants").ClassValue;
|
|
499
499
|
header?: import("tailwind-variants").ClassValue;
|
|
500
|
+
description?: import("tailwind-variants").ClassValue;
|
|
500
501
|
trigger?: import("tailwind-variants").ClassValue;
|
|
501
502
|
backdrop?: import("tailwind-variants").ClassValue;
|
|
502
503
|
positioner?: import("tailwind-variants").ClassValue;
|
|
503
|
-
description?: import("tailwind-variants").ClassValue;
|
|
504
504
|
closeTrigger?: import("tailwind-variants").ClassValue;
|
|
505
505
|
};
|
|
506
506
|
};
|
|
507
|
-
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "
|
|
507
|
+
} | {}, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"title" | "content" | "body" | "footer" | "header" | "description" | "trigger" | "backdrop" | "positioner" | "closeTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
508
508
|
export declare const Context: (props: Dialog.ContextProps) => import("react").ReactNode;
|