@opexa/portal-components 0.0.679 → 0.0.680
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/Banner/Banner.client.d.ts +12 -0
- package/dist/components/Banner/Banner.client.js +49 -0
- package/dist/components/DepositWithdrawal/Deposit/QRPHDeposit/QRPHQRCode.js +1 -1
- package/dist/components/DigitainLauncher/Loading.d.ts +1 -0
- package/dist/components/DigitainLauncher/Loading.js +5 -0
- package/dist/components/KYC/BasicInformation.d.ts +1 -0
- package/dist/components/KYC/BasicInformation.js +101 -0
- package/dist/components/KYC/IdentityVerification.d.ts +1 -0
- package/dist/components/KYC/IdentityVerification.js +120 -0
- package/dist/components/KYC/Indicator.d.ts +1 -0
- package/dist/components/KYC/Indicator.js +8 -0
- package/dist/components/KYC/KYC.lazy.d.ts +6 -0
- package/dist/components/KYC/KYC.lazy.js +45 -0
- package/dist/components/KYC/KYCContext.d.ts +6 -0
- package/dist/components/KYC/KYCContext.js +2 -0
- package/dist/components/KYC/KYCVerificationStatus.lazy.js +7 -4
- package/dist/components/KYC/PersonalInformation.d.ts +1 -0
- package/dist/components/KYC/PersonalInformation.js +122 -0
- package/dist/components/KYC/useKYC.d.ts +25 -0
- package/dist/components/KYC/useKYC.js +38 -0
- package/dist/components/PortalProvider/AndroidOnlyComponents.d.ts +1 -0
- package/dist/components/PortalProvider/AndroidOnlyComponents.js +12 -0
- package/dist/components/PortalProvider/CXDTokenObserver.d.ts +1 -0
- package/dist/components/PortalProvider/CXDTokenObserver.js +30 -0
- package/dist/components/SignIn/utils.d.ts +8 -0
- package/dist/components/SignIn/utils.js +26 -0
- package/dist/constants/Branches.d.ts +2 -0
- package/dist/constants/Branches.js +42 -0
- package/dist/images/responsible-gaming-yellow.png +0 -0
- package/dist/third-parties/FacebookPixel/FacebookPixel.d.ts +4 -0
- package/dist/third-parties/FacebookPixel/FacebookPixel.js +4 -0
- package/dist/third-parties/FacebookPixel/api.d.ts +0 -0
- package/dist/third-parties/FacebookPixel/api.js +1 -0
- package/dist/third-parties/FacebookPixel/index.d.ts +1 -0
- package/dist/third-parties/FacebookPixel/index.js +1 -0
- package/dist/third-parties/GoogleRecaptcha/GoogleRecaptcha.d.ts +4 -0
- package/dist/third-parties/GoogleRecaptcha/GoogleRecaptcha.js +4 -0
- package/dist/third-parties/GoogleRecaptcha/api.d.ts +0 -0
- package/dist/third-parties/GoogleRecaptcha/api.js +1 -0
- package/dist/third-parties/GoogleRecaptcha/index.d.ts +1 -0
- package/dist/third-parties/GoogleRecaptcha/index.js +1 -0
- package/dist/third-parties/index.d.ts +2 -0
- package/dist/third-parties/index.js +2 -0
- package/dist/ui/Carousel/Carousel.d.ts +45 -45
- package/dist/ui/Carousel/carousel.recipe.d.ts +5 -5
- 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/Collapsible/Collapsible.d.ts +20 -20
- package/dist/ui/Collapsible/collapsible.recipe.d.ts +5 -5
- 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/Menu/Menu.d.ts +306 -306
- package/dist/ui/Menu/menu.recipe.d.ts +17 -17
- 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/Select/Select.d.ts +45 -45
- package/dist/ui/Select/select.recipe.d.ts +3 -3
- package/dist/ui/Tabs/Tabs.d.ts +15 -15
- package/dist/ui/Tabs/tabs.recipe.d.ts +3 -3
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function CXDTokenObserver(): null;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { addHours } from 'date-fns';
|
|
3
|
+
import { clamp } from 'lodash-es';
|
|
4
|
+
import { useLocalStorage, useTimeout } from 'usehooks-ts';
|
|
5
|
+
import { useAccountQuery } from '../../client/hooks/useAccountQuery.js';
|
|
6
|
+
export function CXDTokenObserver() {
|
|
7
|
+
const { data: account } = useAccountQuery();
|
|
8
|
+
const accountCxd = {
|
|
9
|
+
cxd: account?.cellxpertDetails?.cxd,
|
|
10
|
+
};
|
|
11
|
+
const [cxd, setCxd, removeCxd] = useLocalStorage('cxd', null);
|
|
12
|
+
const now = new Date();
|
|
13
|
+
const removeCxdUntilInMs = cxd?.timestamp
|
|
14
|
+
? clamp(cxd.timestamp - now.getTime(), 0, Infinity)
|
|
15
|
+
: 0;
|
|
16
|
+
useTimeout(() => {
|
|
17
|
+
const isSame = cxd?.cxd === accountCxd.cxd;
|
|
18
|
+
if (!isSame) {
|
|
19
|
+
const extendedTimestamp = addHours(new Date(), 6).getTime();
|
|
20
|
+
setCxd({
|
|
21
|
+
cxd: accountCxd.cxd,
|
|
22
|
+
timestamp: extendedTimestamp,
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
}, account ? 100 : null);
|
|
26
|
+
useTimeout(() => {
|
|
27
|
+
removeCxd();
|
|
28
|
+
}, account ? removeCxdUntilInMs : null);
|
|
29
|
+
return null;
|
|
30
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type Options = {
|
|
2
|
+
accountName?: string;
|
|
3
|
+
siteName?: string;
|
|
4
|
+
signInOptions?: 'MOBILE_NUMBER' | 'NAME_AND_PASSWORD';
|
|
5
|
+
};
|
|
6
|
+
export type ErrorCode = 'MEMBER_ACCOUNT_BLACKLISTED' | 'MEMBER_ACCOUNT_SUSPENDED' | 'INVALID_RECAPTCHA_RESPONSE' | 'MEMBER_NOT_FOUND' | 'RATE_LIMIT_REACH' | 'NOT_READY_TO_SEND_VERIFICATION_ERROR' | 'Forbidden';
|
|
7
|
+
export declare function getFriendlyErrorMessage(code: ErrorCode, options?: Options): string;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export function getFriendlyErrorMessage(code, options) {
|
|
2
|
+
const accountName = options?.accountName ?? '';
|
|
3
|
+
const siteName = options?.siteName ?? '';
|
|
4
|
+
const signInOptions = options?.signInOptions ?? 'NAME_AND_PASSWORD';
|
|
5
|
+
switch (code) {
|
|
6
|
+
case 'MEMBER_ACCOUNT_BLACKLISTED':
|
|
7
|
+
return `Your account ${accountName} has been blacklisted due to a serious violation of our policies. For more information or to appeal, please contact the ${siteName} Chat Support team.`;
|
|
8
|
+
case 'MEMBER_ACCOUNT_SUSPENDED':
|
|
9
|
+
return `Your account ${accountName} has been temporarily suspended. Please reach out to the ${siteName} Chat Support team to learn more and get help with resolving the issue.`;
|
|
10
|
+
case 'INVALID_RECAPTCHA_RESPONSE':
|
|
11
|
+
return 'Invalid reCAPTCHA response';
|
|
12
|
+
case 'MEMBER_NOT_FOUND':
|
|
13
|
+
return 'Account not found. Please check your username and try again.';
|
|
14
|
+
case 'RATE_LIMIT_REACH':
|
|
15
|
+
return 'Rate limit exceeded';
|
|
16
|
+
case 'NOT_READY_TO_SEND_VERIFICATION_ERROR':
|
|
17
|
+
return 'Your account is not ready to send verification requests. Please try again later.';
|
|
18
|
+
case 'Forbidden':
|
|
19
|
+
if (signInOptions === 'MOBILE_NUMBER') {
|
|
20
|
+
return 'Invalid verification code. Please check the code and try again.';
|
|
21
|
+
}
|
|
22
|
+
return 'Invalid username or password, please try again.';
|
|
23
|
+
default:
|
|
24
|
+
return 'Something went wrong. Please try again later.';
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export const BRANCHES = [
|
|
2
|
+
{
|
|
3
|
+
code: 'BRCAL',
|
|
4
|
+
name: 'Bingo Republic 2nd floor Primark Center Deparo St., Caloocan City',
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
code: 'BRNAG',
|
|
8
|
+
name: 'Bingo Republic 3rd floor Robinsons Mall, Naga City, Camarines Sur',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
code: 'BRANT',
|
|
12
|
+
name: 'Bingo Republic 2nd floor Robinsons Mall, San Vicente,Antique',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
code: 'BRCLA',
|
|
16
|
+
name: 'Clark',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
code: 'BRLAG',
|
|
20
|
+
name: 'Laguna',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
code: 'BREAS',
|
|
24
|
+
name: 'Eastwood City, Quezon City',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
code: 'BRMAR',
|
|
28
|
+
name: 'Bingo ng Bayan 4th floor Marikina Public Market, Marikina City',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
code: 'BRILO',
|
|
32
|
+
name: 'Iloilo',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
code: 'BRFIM',
|
|
36
|
+
name: 'Fisher Mall,Quezon City',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
code: 'BRCAC',
|
|
40
|
+
name: 'Villa Caceres Hotel, Naga City,Camsur',
|
|
41
|
+
},
|
|
42
|
+
];
|
|
Binary file
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './FacebookPixel';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './FacebookPixel.js';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './GoogleRecaptcha';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './GoogleRecaptcha.js';
|
|
@@ -3,8 +3,8 @@ export declare const Root: import("react").ComponentType<import("@ark-ui/react")
|
|
|
3
3
|
[key: string]: {
|
|
4
4
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
5
5
|
root?: import("tailwind-variants").ClassValue;
|
|
6
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
7
6
|
control?: import("tailwind-variants").ClassValue;
|
|
7
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
8
8
|
item?: import("tailwind-variants").ClassValue;
|
|
9
9
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
10
10
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -17,8 +17,8 @@ export declare const Root: import("react").ComponentType<import("@ark-ui/react")
|
|
|
17
17
|
[x: string]: {
|
|
18
18
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
19
19
|
root?: import("tailwind-variants").ClassValue;
|
|
20
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
21
20
|
control?: import("tailwind-variants").ClassValue;
|
|
21
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
22
22
|
item?: import("tailwind-variants").ClassValue;
|
|
23
23
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
24
24
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -27,12 +27,12 @@ export declare const Root: import("react").ComponentType<import("@ark-ui/react")
|
|
|
27
27
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
28
28
|
};
|
|
29
29
|
};
|
|
30
|
-
} | {}, Record<"root" | "
|
|
30
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
31
31
|
[key: string]: {
|
|
32
32
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
33
33
|
root?: import("tailwind-variants").ClassValue;
|
|
34
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
35
34
|
control?: import("tailwind-variants").ClassValue;
|
|
35
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
36
36
|
item?: import("tailwind-variants").ClassValue;
|
|
37
37
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
38
38
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -41,13 +41,13 @@ export declare const Root: import("react").ComponentType<import("@ark-ui/react")
|
|
|
41
41
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
42
42
|
};
|
|
43
43
|
};
|
|
44
|
-
} | {}, Record<"root" | "
|
|
44
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
45
45
|
export declare const AutoplayTrigger: import("react").ComponentType<import("@ark-ui/react").Assign<Carousel.AutoplayTriggerProps & import("react").RefAttributes<HTMLButtonElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
46
46
|
[key: string]: {
|
|
47
47
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
48
48
|
root?: import("tailwind-variants").ClassValue;
|
|
49
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
50
49
|
control?: import("tailwind-variants").ClassValue;
|
|
50
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
51
51
|
item?: import("tailwind-variants").ClassValue;
|
|
52
52
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
53
53
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -60,8 +60,8 @@ export declare const AutoplayTrigger: import("react").ComponentType<import("@ark
|
|
|
60
60
|
[x: string]: {
|
|
61
61
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
62
62
|
root?: import("tailwind-variants").ClassValue;
|
|
63
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
64
63
|
control?: import("tailwind-variants").ClassValue;
|
|
64
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
65
65
|
item?: import("tailwind-variants").ClassValue;
|
|
66
66
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
67
67
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -70,12 +70,12 @@ export declare const AutoplayTrigger: import("react").ComponentType<import("@ark
|
|
|
70
70
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
71
71
|
};
|
|
72
72
|
};
|
|
73
|
-
} | {}, Record<"root" | "
|
|
73
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
74
74
|
[key: string]: {
|
|
75
75
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
76
76
|
root?: import("tailwind-variants").ClassValue;
|
|
77
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
78
77
|
control?: import("tailwind-variants").ClassValue;
|
|
78
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
79
79
|
item?: import("tailwind-variants").ClassValue;
|
|
80
80
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
81
81
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -84,13 +84,13 @@ export declare const AutoplayTrigger: import("react").ComponentType<import("@ark
|
|
|
84
84
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
|
-
} | {}, Record<"root" | "
|
|
87
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
88
88
|
export declare const Control: import("react").ComponentType<import("@ark-ui/react").Assign<Carousel.ControlProps & import("react").RefAttributes<HTMLDivElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
89
89
|
[key: string]: {
|
|
90
90
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
91
91
|
root?: import("tailwind-variants").ClassValue;
|
|
92
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
93
92
|
control?: import("tailwind-variants").ClassValue;
|
|
93
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
94
94
|
item?: import("tailwind-variants").ClassValue;
|
|
95
95
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
96
96
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -103,8 +103,8 @@ export declare const Control: import("react").ComponentType<import("@ark-ui/reac
|
|
|
103
103
|
[x: string]: {
|
|
104
104
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
105
105
|
root?: import("tailwind-variants").ClassValue;
|
|
106
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
107
106
|
control?: import("tailwind-variants").ClassValue;
|
|
107
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
108
108
|
item?: import("tailwind-variants").ClassValue;
|
|
109
109
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
110
110
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -113,12 +113,12 @@ export declare const Control: import("react").ComponentType<import("@ark-ui/reac
|
|
|
113
113
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
114
114
|
};
|
|
115
115
|
};
|
|
116
|
-
} | {}, Record<"root" | "
|
|
116
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
117
117
|
[key: string]: {
|
|
118
118
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
119
119
|
root?: import("tailwind-variants").ClassValue;
|
|
120
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
121
120
|
control?: import("tailwind-variants").ClassValue;
|
|
121
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
122
122
|
item?: import("tailwind-variants").ClassValue;
|
|
123
123
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
124
124
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -127,13 +127,13 @@ export declare const Control: import("react").ComponentType<import("@ark-ui/reac
|
|
|
127
127
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
128
128
|
};
|
|
129
129
|
};
|
|
130
|
-
} | {}, Record<"root" | "
|
|
130
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
131
131
|
export declare const Indicator: import("react").ComponentType<import("@ark-ui/react").Assign<Carousel.IndicatorProps & import("react").RefAttributes<HTMLButtonElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
132
132
|
[key: string]: {
|
|
133
133
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
134
134
|
root?: import("tailwind-variants").ClassValue;
|
|
135
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
136
135
|
control?: import("tailwind-variants").ClassValue;
|
|
136
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
137
137
|
item?: import("tailwind-variants").ClassValue;
|
|
138
138
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
139
139
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -146,8 +146,8 @@ export declare const Indicator: import("react").ComponentType<import("@ark-ui/re
|
|
|
146
146
|
[x: string]: {
|
|
147
147
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
148
148
|
root?: import("tailwind-variants").ClassValue;
|
|
149
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
150
149
|
control?: import("tailwind-variants").ClassValue;
|
|
150
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
151
151
|
item?: import("tailwind-variants").ClassValue;
|
|
152
152
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
153
153
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -156,12 +156,12 @@ export declare const Indicator: import("react").ComponentType<import("@ark-ui/re
|
|
|
156
156
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
157
157
|
};
|
|
158
158
|
};
|
|
159
|
-
} | {}, Record<"root" | "
|
|
159
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
160
160
|
[key: string]: {
|
|
161
161
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
162
162
|
root?: import("tailwind-variants").ClassValue;
|
|
163
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
164
163
|
control?: import("tailwind-variants").ClassValue;
|
|
164
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
165
165
|
item?: import("tailwind-variants").ClassValue;
|
|
166
166
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
167
167
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -170,13 +170,13 @@ export declare const Indicator: import("react").ComponentType<import("@ark-ui/re
|
|
|
170
170
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
171
171
|
};
|
|
172
172
|
};
|
|
173
|
-
} | {}, Record<"root" | "
|
|
173
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
174
174
|
export declare const IndicatorGroup: import("react").ComponentType<import("@ark-ui/react").Assign<Carousel.IndicatorGroupProps & import("react").RefAttributes<HTMLDivElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
175
175
|
[key: string]: {
|
|
176
176
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
177
177
|
root?: import("tailwind-variants").ClassValue;
|
|
178
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
179
178
|
control?: import("tailwind-variants").ClassValue;
|
|
179
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
180
180
|
item?: import("tailwind-variants").ClassValue;
|
|
181
181
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
182
182
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -189,8 +189,8 @@ export declare const IndicatorGroup: import("react").ComponentType<import("@ark-
|
|
|
189
189
|
[x: string]: {
|
|
190
190
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
191
191
|
root?: import("tailwind-variants").ClassValue;
|
|
192
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
193
192
|
control?: import("tailwind-variants").ClassValue;
|
|
193
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
194
194
|
item?: import("tailwind-variants").ClassValue;
|
|
195
195
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
196
196
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -199,12 +199,12 @@ export declare const IndicatorGroup: import("react").ComponentType<import("@ark-
|
|
|
199
199
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
200
200
|
};
|
|
201
201
|
};
|
|
202
|
-
} | {}, Record<"root" | "
|
|
202
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
203
203
|
[key: string]: {
|
|
204
204
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
205
205
|
root?: import("tailwind-variants").ClassValue;
|
|
206
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
207
206
|
control?: import("tailwind-variants").ClassValue;
|
|
207
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
208
208
|
item?: import("tailwind-variants").ClassValue;
|
|
209
209
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
210
210
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -213,13 +213,13 @@ export declare const IndicatorGroup: import("react").ComponentType<import("@ark-
|
|
|
213
213
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
214
214
|
};
|
|
215
215
|
};
|
|
216
|
-
} | {}, Record<"root" | "
|
|
216
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
217
217
|
export declare const Item: import("react").ComponentType<import("@ark-ui/react").Assign<Carousel.ItemProps & import("react").RefAttributes<HTMLDivElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
218
218
|
[key: string]: {
|
|
219
219
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
220
220
|
root?: import("tailwind-variants").ClassValue;
|
|
221
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
222
221
|
control?: import("tailwind-variants").ClassValue;
|
|
222
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
223
223
|
item?: import("tailwind-variants").ClassValue;
|
|
224
224
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
225
225
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -232,8 +232,8 @@ export declare const Item: import("react").ComponentType<import("@ark-ui/react")
|
|
|
232
232
|
[x: string]: {
|
|
233
233
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
234
234
|
root?: import("tailwind-variants").ClassValue;
|
|
235
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
236
235
|
control?: import("tailwind-variants").ClassValue;
|
|
236
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
237
237
|
item?: import("tailwind-variants").ClassValue;
|
|
238
238
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
239
239
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -242,12 +242,12 @@ export declare const Item: import("react").ComponentType<import("@ark-ui/react")
|
|
|
242
242
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
243
243
|
};
|
|
244
244
|
};
|
|
245
|
-
} | {}, Record<"root" | "
|
|
245
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
246
246
|
[key: string]: {
|
|
247
247
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
248
248
|
root?: import("tailwind-variants").ClassValue;
|
|
249
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
250
249
|
control?: import("tailwind-variants").ClassValue;
|
|
250
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
251
251
|
item?: import("tailwind-variants").ClassValue;
|
|
252
252
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
253
253
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -256,13 +256,13 @@ export declare const Item: import("react").ComponentType<import("@ark-ui/react")
|
|
|
256
256
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
257
257
|
};
|
|
258
258
|
};
|
|
259
|
-
} | {}, Record<"root" | "
|
|
259
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
260
260
|
export declare const ItemGroup: import("react").ComponentType<import("@ark-ui/react").Assign<Carousel.ItemGroupProps & import("react").RefAttributes<HTMLDivElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
261
261
|
[key: string]: {
|
|
262
262
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
263
263
|
root?: import("tailwind-variants").ClassValue;
|
|
264
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
265
264
|
control?: import("tailwind-variants").ClassValue;
|
|
265
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
266
266
|
item?: import("tailwind-variants").ClassValue;
|
|
267
267
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
268
268
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -275,8 +275,8 @@ export declare const ItemGroup: import("react").ComponentType<import("@ark-ui/re
|
|
|
275
275
|
[x: string]: {
|
|
276
276
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
277
277
|
root?: import("tailwind-variants").ClassValue;
|
|
278
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
279
278
|
control?: import("tailwind-variants").ClassValue;
|
|
279
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
280
280
|
item?: import("tailwind-variants").ClassValue;
|
|
281
281
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
282
282
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -285,12 +285,12 @@ export declare const ItemGroup: import("react").ComponentType<import("@ark-ui/re
|
|
|
285
285
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
286
286
|
};
|
|
287
287
|
};
|
|
288
|
-
} | {}, Record<"root" | "
|
|
288
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
289
289
|
[key: string]: {
|
|
290
290
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
291
291
|
root?: import("tailwind-variants").ClassValue;
|
|
292
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
293
292
|
control?: import("tailwind-variants").ClassValue;
|
|
293
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
294
294
|
item?: import("tailwind-variants").ClassValue;
|
|
295
295
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
296
296
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -299,13 +299,13 @@ export declare const ItemGroup: import("react").ComponentType<import("@ark-ui/re
|
|
|
299
299
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
300
300
|
};
|
|
301
301
|
};
|
|
302
|
-
} | {}, Record<"root" | "
|
|
302
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
303
303
|
export declare const NextTrigger: import("react").ComponentType<import("@ark-ui/react").Assign<Carousel.NextTriggerProps & import("react").RefAttributes<HTMLButtonElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
304
304
|
[key: string]: {
|
|
305
305
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
306
306
|
root?: import("tailwind-variants").ClassValue;
|
|
307
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
308
307
|
control?: import("tailwind-variants").ClassValue;
|
|
308
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
309
309
|
item?: import("tailwind-variants").ClassValue;
|
|
310
310
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
311
311
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -318,8 +318,8 @@ export declare const NextTrigger: import("react").ComponentType<import("@ark-ui/
|
|
|
318
318
|
[x: string]: {
|
|
319
319
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
320
320
|
root?: import("tailwind-variants").ClassValue;
|
|
321
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
322
321
|
control?: import("tailwind-variants").ClassValue;
|
|
322
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
323
323
|
item?: import("tailwind-variants").ClassValue;
|
|
324
324
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
325
325
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -328,12 +328,12 @@ export declare const NextTrigger: import("react").ComponentType<import("@ark-ui/
|
|
|
328
328
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
329
329
|
};
|
|
330
330
|
};
|
|
331
|
-
} | {}, Record<"root" | "
|
|
331
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
332
332
|
[key: string]: {
|
|
333
333
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
334
334
|
root?: import("tailwind-variants").ClassValue;
|
|
335
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
336
335
|
control?: import("tailwind-variants").ClassValue;
|
|
336
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
337
337
|
item?: import("tailwind-variants").ClassValue;
|
|
338
338
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
339
339
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -342,13 +342,13 @@ export declare const NextTrigger: import("react").ComponentType<import("@ark-ui/
|
|
|
342
342
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
343
343
|
};
|
|
344
344
|
};
|
|
345
|
-
} | {}, Record<"root" | "
|
|
345
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
346
346
|
export declare const PrevTrigger: import("react").ComponentType<import("@ark-ui/react").Assign<Carousel.PrevTriggerProps & import("react").RefAttributes<HTMLButtonElement>, import("tailwind-variants").VariantProps<import("tailwind-variants").TVReturnType<{
|
|
347
347
|
[key: string]: {
|
|
348
348
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
349
349
|
root?: import("tailwind-variants").ClassValue;
|
|
350
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
351
350
|
control?: import("tailwind-variants").ClassValue;
|
|
351
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
352
352
|
item?: import("tailwind-variants").ClassValue;
|
|
353
353
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
354
354
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -361,8 +361,8 @@ export declare const PrevTrigger: import("react").ComponentType<import("@ark-ui/
|
|
|
361
361
|
[x: string]: {
|
|
362
362
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
363
363
|
root?: import("tailwind-variants").ClassValue;
|
|
364
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
365
364
|
control?: import("tailwind-variants").ClassValue;
|
|
365
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
366
366
|
item?: import("tailwind-variants").ClassValue;
|
|
367
367
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
368
368
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -371,12 +371,12 @@ export declare const PrevTrigger: import("react").ComponentType<import("@ark-ui/
|
|
|
371
371
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
372
372
|
};
|
|
373
373
|
};
|
|
374
|
-
} | {}, Record<"root" | "
|
|
374
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
375
375
|
[key: string]: {
|
|
376
376
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
377
377
|
root?: import("tailwind-variants").ClassValue;
|
|
378
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
379
378
|
control?: import("tailwind-variants").ClassValue;
|
|
379
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
380
380
|
item?: import("tailwind-variants").ClassValue;
|
|
381
381
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
382
382
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -385,5 +385,5 @@ export declare const PrevTrigger: import("react").ComponentType<import("@ark-ui/
|
|
|
385
385
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
386
386
|
};
|
|
387
387
|
};
|
|
388
|
-
} | {}, Record<"root" | "
|
|
388
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>>>>;
|
|
389
389
|
export declare const Context: (props: Carousel.ContextProps) => import("react").ReactNode;
|
|
@@ -2,8 +2,8 @@ export declare const carouselRecipe: import("tailwind-variants").TVReturnType<{
|
|
|
2
2
|
[key: string]: {
|
|
3
3
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
4
4
|
root?: import("tailwind-variants").ClassValue;
|
|
5
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
6
5
|
control?: import("tailwind-variants").ClassValue;
|
|
6
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
7
7
|
item?: import("tailwind-variants").ClassValue;
|
|
8
8
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
9
9
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -16,8 +16,8 @@ export declare const carouselRecipe: import("tailwind-variants").TVReturnType<{
|
|
|
16
16
|
[x: string]: {
|
|
17
17
|
[x: string]: import("tailwind-variants").ClassValue | {
|
|
18
18
|
root?: import("tailwind-variants").ClassValue;
|
|
19
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
20
19
|
control?: import("tailwind-variants").ClassValue;
|
|
20
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
21
21
|
item?: import("tailwind-variants").ClassValue;
|
|
22
22
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
23
23
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -26,12 +26,12 @@ export declare const carouselRecipe: import("tailwind-variants").TVReturnType<{
|
|
|
26
26
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
|
-
} | {}, Record<"root" | "
|
|
29
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, {
|
|
30
30
|
[key: string]: {
|
|
31
31
|
[key: string]: import("tailwind-variants").ClassValue | {
|
|
32
32
|
root?: import("tailwind-variants").ClassValue;
|
|
33
|
-
indicator?: import("tailwind-variants").ClassValue;
|
|
34
33
|
control?: import("tailwind-variants").ClassValue;
|
|
34
|
+
indicator?: import("tailwind-variants").ClassValue;
|
|
35
35
|
item?: import("tailwind-variants").ClassValue;
|
|
36
36
|
itemGroup?: import("tailwind-variants").ClassValue;
|
|
37
37
|
nextTrigger?: import("tailwind-variants").ClassValue;
|
|
@@ -40,4 +40,4 @@ export declare const carouselRecipe: import("tailwind-variants").TVReturnType<{
|
|
|
40
40
|
autoplayTrigger?: import("tailwind-variants").ClassValue;
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
|
-
} | {}, Record<"root" | "
|
|
43
|
+
} | {}, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, import("tailwind-variants").TVReturnType<unknown, Record<"root" | "control" | "indicator" | "item" | "itemGroup" | "nextTrigger" | "prevTrigger" | "indicatorGroup" | "autoplayTrigger", string | string[]>, undefined, unknown, unknown, undefined>>;
|