docthub-core-components 3.3.12 → 3.3.14
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/overrides/ui/inputs/phone-input.js +2 -1
- package/dist/components/reui/stepper.js +303 -0
- package/dist/components/ui/stepper.js +353 -0
- package/dist/index.js +190 -177
- package/dist/src/components/examples/c-stepper-1.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-10.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-11.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-12.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-13.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-14.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-15.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-2.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-3.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-4.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-5.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-6.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-7.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-8.d.ts +1 -0
- package/dist/src/components/examples/c-stepper-9.d.ts +1 -0
- package/dist/src/components/reui/badge.d.ts +12 -0
- package/dist/src/components/reui/stepper.d.ts +91 -0
- package/dist/src/components/ui/stepper.d.ts +65 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
/* empty css */
|
|
3
3
|
import { DoctAutocomplete as t } from "./components/overrides/ui/auto-complete.js";
|
|
4
4
|
import { AutocompleteCheckbox as D } from "./components/overrides/ui/autocomplete-checkbox.js";
|
|
5
|
-
import { Chip as
|
|
6
|
-
import { CircularProgress as
|
|
7
|
-
import { AddressFormSection as
|
|
8
|
-
import { ContactFormSection as
|
|
9
|
-
import { SearchFilterSection as
|
|
10
|
-
import { UserRegistrationSection as
|
|
5
|
+
import { Chip as c } from "./components/overrides/ui/chips/doct-chip.js";
|
|
6
|
+
import { CircularProgress as i } from "./components/overrides/ui/circular-progress.js";
|
|
7
|
+
import { AddressFormSection as _ } from "./components/overrides/ui/composed/address-form-section.js";
|
|
8
|
+
import { ContactFormSection as I } from "./components/overrides/ui/composed/contact-form-section.js";
|
|
9
|
+
import { SearchFilterSection as l } from "./components/overrides/ui/composed/search-filter-section.js";
|
|
10
|
+
import { UserRegistrationSection as O } from "./components/overrides/ui/composed/user-registration-section.js";
|
|
11
11
|
import { CurrencyInput as A } from "./components/overrides/ui/currencyInput/currency-input.js";
|
|
12
12
|
import { DoctAnimationLoader as N } from "./components/overrides/ui/doct-animation-loader.js";
|
|
13
13
|
import { ExpandableCard as u } from "./components/overrides/ui/expandable-card.js";
|
|
14
14
|
import { LabeledInput as P } from "./components/overrides/ui/inputs/labeled-input.js";
|
|
15
|
-
import { OtpInput as
|
|
16
|
-
import { PasswordInput as
|
|
17
|
-
import { DoctPhoneInput as
|
|
15
|
+
import { OtpInput as S } from "./components/overrides/ui/inputs/otp-input.js";
|
|
16
|
+
import { PasswordInput as b } from "./components/overrides/ui/inputs/password-input.js";
|
|
17
|
+
import { DoctPhoneInput as x } from "./components/overrides/ui/inputs/phone-input.js";
|
|
18
18
|
import { DatePickerField as f } from "./components/overrides/ui/pickers/date-picker-field.js";
|
|
19
19
|
import { DateRangePickerField as F } from "./components/overrides/ui/pickers/date-range-picker-field.js";
|
|
20
20
|
import { SelectField as v } from "./components/overrides/ui/pickers/select-field.js";
|
|
@@ -23,63 +23,64 @@ import { SearchInput as Y } from "./components/overrides/ui/search/search-input.
|
|
|
23
23
|
import { ComponentVariant as y, ComponentSection as W } from "./components/overrides/ui/showcase/component-section.js";
|
|
24
24
|
import { Alert as Q, AlertDescription as Z, AlertTitle as X } from "./components/ui/alert.js";
|
|
25
25
|
import { Avatar as j, AvatarFallback as q, AvatarImage as J } from "./components/ui/avatar.js";
|
|
26
|
-
import { Badge as oo, badgeVariants as
|
|
27
|
-
import { Breadcrumb as to, BreadcrumbEllipsis as ao, BreadcrumbItem as Do, BreadcrumbLink as
|
|
28
|
-
import { DoctButton as
|
|
29
|
-
import { CalendarDayButton as
|
|
30
|
-
import { Checkbox as
|
|
26
|
+
import { Badge as oo, badgeVariants as eo } from "./components/ui/badge.js";
|
|
27
|
+
import { Breadcrumb as to, BreadcrumbEllipsis as ao, BreadcrumbItem as Do, BreadcrumbLink as po, BreadcrumbList as co, BreadcrumbPage as no, BreadcrumbSeparator as io } from "./components/ui/breadcrumb.js";
|
|
28
|
+
import { DoctButton as _o } from "./components/ui/button.js";
|
|
29
|
+
import { CalendarDayButton as Io, Calendar as To } from "./components/ui/calendar.js";
|
|
30
|
+
import { Checkbox as Co } from "./components/ui/checkbox.js";
|
|
31
31
|
import { Collapsible as Lo, CollapsibleContent as Ao, CollapsibleTrigger as Eo } from "./components/ui/collapsible.js";
|
|
32
|
-
import { Command as uo, CommandDialog as Mo, CommandEmpty as Po, CommandGroup as Ro, CommandInput as
|
|
32
|
+
import { Command as uo, CommandDialog as Mo, CommandEmpty as Po, CommandGroup as Ro, CommandInput as So, CommandItem as go, CommandList as bo, CommandSeparator as Bo, CommandShortcut as xo } from "./components/ui/command.js";
|
|
33
33
|
import { CookieDialog as fo } from "./components/ui/cookie-dialog.js";
|
|
34
34
|
import { Dialog as Fo, DialogClose as wo, DialogContent as vo, DialogDescription as ho, DialogFooter as Ho, DialogHeader as ko, DialogScrollableBody as Yo, DialogTitle as Vo, DialogTrigger as yo } from "./components/ui/dialog.js";
|
|
35
35
|
import { Drawer as Ko, DrawerClose as Qo, DrawerContent as Zo, DrawerDescription as Xo, DrawerFooter as zo, DrawerHeader as jo, DrawerTitle as qo, DrawerTrigger as Jo } from "./components/ui/drawer.js";
|
|
36
|
-
import { DropdownMenu as
|
|
37
|
-
import { Input as
|
|
38
|
-
import { Label as
|
|
39
|
-
import { Popover as
|
|
40
|
-
import { Progress as
|
|
41
|
-
import { RadioGroup as
|
|
42
|
-
import { Skeleton as
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
36
|
+
import { DropdownMenu as oe, DropdownMenuCheckboxItem as ee, DropdownMenuContent as re, DropdownMenuGroup as te, DropdownMenuItem as ae, DropdownMenuLabel as De, DropdownMenuRadioGroup as pe, DropdownMenuRadioItem as ce, DropdownMenuSeparator as ne, DropdownMenuShortcut as ie, DropdownMenuSub as se, DropdownMenuSubContent as _e, DropdownMenuSubTrigger as me, DropdownMenuTrigger as Ie } from "./components/ui/dropdown-menu.js";
|
|
37
|
+
import { Input as le } from "./components/ui/input.js";
|
|
38
|
+
import { Label as Oe } from "./components/ui/label.js";
|
|
39
|
+
import { Popover as Ae, PopoverArrow as Ee, PopoverBackdrop as Ne, PopoverClose as de, PopoverContent as ue, PopoverDescription as Me, PopoverHeader as Pe, PopoverTitle as Re, PopoverTrigger as Se, PopoverViewport as ge } from "./components/ui/popover.js";
|
|
40
|
+
import { Progress as Be } from "./components/ui/progress.js";
|
|
41
|
+
import { RadioGroup as Ue, RadioGroupItem as fe } from "./components/ui/radio-group.js";
|
|
42
|
+
import { Skeleton as Fe } from "./components/ui/skeleton.js";
|
|
43
|
+
import { Stepper as ve, StepperContent as he, StepperDescription as He, StepperIndicator as ke, StepperItem as Ye, StepperNav as Ve, StepperPanel as ye, StepperSeparator as We, StepperTitle as Ke, StepperTrigger as Qe, useStepItem as Ze, useStepper as Xe } from "./components/ui/stepper.js";
|
|
44
|
+
import { Tabs as je, TabsContent as qe, TabsList as Je, TabsTrigger as $e } from "./components/ui/tabs.js";
|
|
45
|
+
import { Textarea as er } from "./components/ui/textarea.js";
|
|
46
|
+
import { Timeline as tr } from "./components/ui/timeline.js";
|
|
47
|
+
import { toast as Dr, Toaster as pr } from "./components/ui/toast.js";
|
|
48
|
+
import { Tooltip as nr, TooltipContent as ir, TooltipProvider as sr, TooltipTrigger as _r } from "./components/ui/tooltip.js";
|
|
49
|
+
import { DoctTypography as Ir } from "./components/ui/typography.js";
|
|
50
|
+
import { useAutocompleteCheckbox as lr } from "./hooks/useAutocompleteCheckbox.js";
|
|
51
|
+
import { ACCOUNT_CONFLICT_PROMPT_BODY_TITLE as Or, ACCOUNT_CONFLICT_PROMPT_DEFAULT_COUNTRY_CODE as Lr, ACCOUNT_CONFLICT_PROMPT_DEFAULT_EXISTING_ACCOUNT_ERROR as Ar, ACCOUNT_CONFLICT_PROMPT_DEFAULT_INFO_MESSAGE as Er, ACCOUNT_CONFLICT_PROMPT_DEFAULT_MASKED_EMAIL as Nr, ACCOUNT_CONFLICT_PROMPT_DEFAULT_PHONE_DISPLAY as dr, ACCOUNT_CONFLICT_PROMPT_DEFAULT_PHONE_NUMBER as ur, ACCOUNT_CONFLICT_PROMPT_DEFAULT_PHONE_PLACEHOLDER as Mr, ACCOUNT_CONFLICT_PROMPT_HEADER_TITLE as Pr, ACCOUNT_CONFLICT_PROMPT_LOGIN_UNIFY_HINT as Rr, ACCOUNT_CONFLICT_PROMPT_PRIMARY_LABEL as Sr, ACCOUNT_CONFLICT_PROMPT_SECONDARY_LABEL as gr, MOBILE_NUMBER_DIALOG_BODY_TITLE as br, MOBILE_NUMBER_DIALOG_DEFAULT_COUNTRY_CODE as Br, MOBILE_NUMBER_DIALOG_DEFAULT_EXISTING_ACCOUNT_ERROR as xr, MOBILE_NUMBER_DIALOG_DEFAULT_INFO_MESSAGE as Ur, MOBILE_NUMBER_DIALOG_DEFAULT_MASKED_EMAIL as fr, MOBILE_NUMBER_DIALOG_DEFAULT_PHONE_DISPLAY as Gr, MOBILE_NUMBER_DIALOG_DEFAULT_PHONE_NUMBER as Fr, MOBILE_NUMBER_DIALOG_DEFAULT_PHONE_PLACEHOLDER as wr, MOBILE_NUMBER_DIALOG_HEADER_TITLE as vr, MOBILE_NUMBER_DIALOG_LOGIN_UNIFY_HINT as hr, MOBILE_NUMBER_DIALOG_OTP_HEADER_TITLE as Hr, MOBILE_NUMBER_DIALOG_OTP_RESEND_BUTTON_LABEL as kr, MOBILE_NUMBER_DIALOG_OTP_RESEND_LABEL as Yr, MOBILE_NUMBER_DIALOG_OTP_SUBMIT_LABEL as Vr, MOBILE_NUMBER_DIALOG_OTP_TITLE as yr, MOBILE_NUMBER_DIALOG_PRIMARY_LABEL as Wr, MOBILE_NUMBER_DIALOG_SECONDARY_LABEL as Kr, buildExistingAccountError as Qr, buildExistingMobileNumberError as Zr, buildLoginWithMobileNumberLabel as Xr, buildLoginWithPhoneLabel as zr, buildMobileNumberDisplay as jr, buildPhoneDisplay as qr, isMobileNumberDialogPrimaryDisabled as Jr } from "./components/overrides/ui/mobile-number-dialog/presets.js";
|
|
52
|
+
import { ACCOUNT_CONFLICT_PROMPT_DRAWER_BACKDROP_CLASS as ot, MOBILE_NUMBER_DIALOG_DRAWER_BACKDROP_CLASS as et } from "./components/overrides/ui/mobile-number-dialog/types.js";
|
|
53
|
+
import { DoctAccountConflictPrompt as tt, DoctMobileNumberDialog as at, MobileNumberDialog as Dt } from "./components/overrides/ui/mobile-number-dialog/mobile-number-dialog.js";
|
|
54
|
+
import { DoctFooter as ct } from "./components/overrides/ui/footer/doct-footer.js";
|
|
55
|
+
import { DoctLoginDialog as it } from "./components/overrides/ui/login-dialog/login-dialog.js";
|
|
56
|
+
import { DoctNavigationMenu as _t } from "./components/overrides/ui/navigation-menu/doct-navigation-menu.js";
|
|
57
|
+
import { INDIVIDUAL_NAV_ROUTES as It, INDIVIDUAL_NAV_ROUTES_PROD as Tt, INDIVIDUAL_NAV_ROUTES_QA as lt } from "./components/overrides/ui/navigation-menu/individual-nav-routes.js";
|
|
58
|
+
import { IndividualNavigationMenu as Ot } from "./components/overrides/ui/navigation-menu/individual-navigation-menu.js";
|
|
59
|
+
import { LOGIN_DIALOG_ASSETS as At, LOGIN_DIALOG_CONTINUE_ANOTHER_WAY_LABEL as Et, LOGIN_DIALOG_CONTINUE_PHONE_EMAIL_LABEL as Nt, LOGIN_DIALOG_DEFAULT_COPY as dt, LOGIN_DIALOG_RETURNING_HINT as ut, LOGIN_DIALOG_RETURNING_PRIMARY_LABEL as Mt } from "./components/overrides/ui/login-dialog/presets.js";
|
|
60
|
+
import { LOGIN_DIALOG_IMAGE_HEIGHT as Rt, LOGIN_DIALOG_IMAGE_WIDTH as St, LOGIN_DRAWER_BACKDROP_CLASS as gt } from "./components/overrides/ui/login-dialog/types.js";
|
|
61
|
+
import { MobileNumberDialogOtpSurface as Bt } from "./components/overrides/ui/mobile-number-dialog/otp-dialog.js";
|
|
62
|
+
import { ORGANIZATION_NAV_ROUTES as Ut, ORGANIZATION_NAV_ROUTES_PROD as ft, ORGANIZATION_NAV_ROUTES_QA as Gt } from "./components/overrides/ui/navigation-menu/organization-nav-routes.js";
|
|
63
|
+
import { OrganizationNavigationMenu as wt } from "./components/overrides/ui/navigation-menu/organization-navigation-menu.js";
|
|
64
|
+
import { isPossiblePhoneNumber as ht, isValidPhoneNumber as Ht } from "react-phone-number-input";
|
|
65
|
+
import { isProdNav as Yt, isQaNav as Vt, resolveNavEnv as yt } from "./components/overrides/ui/navigation-menu/nav-env.js";
|
|
65
66
|
export {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
67
|
+
Or as ACCOUNT_CONFLICT_PROMPT_BODY_TITLE,
|
|
68
|
+
Lr as ACCOUNT_CONFLICT_PROMPT_DEFAULT_COUNTRY_CODE,
|
|
69
|
+
Ar as ACCOUNT_CONFLICT_PROMPT_DEFAULT_EXISTING_ACCOUNT_ERROR,
|
|
70
|
+
Er as ACCOUNT_CONFLICT_PROMPT_DEFAULT_INFO_MESSAGE,
|
|
71
|
+
Nr as ACCOUNT_CONFLICT_PROMPT_DEFAULT_MASKED_EMAIL,
|
|
72
|
+
dr as ACCOUNT_CONFLICT_PROMPT_DEFAULT_PHONE_DISPLAY,
|
|
73
|
+
ur as ACCOUNT_CONFLICT_PROMPT_DEFAULT_PHONE_NUMBER,
|
|
74
|
+
Mr as ACCOUNT_CONFLICT_PROMPT_DEFAULT_PHONE_PLACEHOLDER,
|
|
75
|
+
ot as ACCOUNT_CONFLICT_PROMPT_DRAWER_BACKDROP_CLASS,
|
|
76
|
+
Pr as ACCOUNT_CONFLICT_PROMPT_HEADER_TITLE,
|
|
77
|
+
Rr as ACCOUNT_CONFLICT_PROMPT_LOGIN_UNIFY_HINT,
|
|
78
|
+
Sr as ACCOUNT_CONFLICT_PROMPT_PRIMARY_LABEL,
|
|
79
|
+
gr as ACCOUNT_CONFLICT_PROMPT_SECONDARY_LABEL,
|
|
80
|
+
Io as CalendarDayButton,
|
|
80
81
|
y as ComponentVariant,
|
|
81
|
-
|
|
82
|
-
|
|
82
|
+
tt as DoctAccountConflictPrompt,
|
|
83
|
+
_ as DoctAddressFormSection,
|
|
83
84
|
Q as DoctAlert,
|
|
84
85
|
Z as DoctAlertDescription,
|
|
85
86
|
X as DoctAlertTitle,
|
|
@@ -94,15 +95,15 @@ export {
|
|
|
94
95
|
to as DoctBreadcrumb,
|
|
95
96
|
ao as DoctBreadcrumbEllipsis,
|
|
96
97
|
Do as DoctBreadcrumbItem,
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
98
|
+
po as DoctBreadcrumbLink,
|
|
99
|
+
co as DoctBreadcrumbList,
|
|
100
|
+
no as DoctBreadcrumbPage,
|
|
101
|
+
io as DoctBreadcrumbSeparator,
|
|
102
|
+
_o as DoctButton,
|
|
102
103
|
To as DoctCalendar,
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
Co as DoctCheckbox,
|
|
105
|
+
c as DoctChip,
|
|
106
|
+
i as DoctCircularProgress,
|
|
106
107
|
Lo as DoctCollapsible,
|
|
107
108
|
Ao as DoctCollapsibleContent,
|
|
108
109
|
Eo as DoctCollapsibleTrigger,
|
|
@@ -110,13 +111,13 @@ export {
|
|
|
110
111
|
Mo as DoctCommandDialog,
|
|
111
112
|
Po as DoctCommandEmpty,
|
|
112
113
|
Ro as DoctCommandGroup,
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
114
|
+
So as DoctCommandInput,
|
|
115
|
+
go as DoctCommandItem,
|
|
116
|
+
bo as DoctCommandList,
|
|
117
|
+
Bo as DoctCommandSeparator,
|
|
118
|
+
xo as DoctCommandShortcut,
|
|
118
119
|
W as DoctComponentSection,
|
|
119
|
-
|
|
120
|
+
I as DoctContactFormSection,
|
|
120
121
|
fo as DoctCookieDialog,
|
|
121
122
|
A as DoctCurrencyInput,
|
|
122
123
|
f as DoctDatePickerField,
|
|
@@ -138,111 +139,123 @@ export {
|
|
|
138
139
|
jo as DoctDrawerHeader,
|
|
139
140
|
qo as DoctDrawerTitle,
|
|
140
141
|
Jo as DoctDrawerTrigger,
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
142
|
+
oe as DoctDropdownMenu,
|
|
143
|
+
ee as DoctDropdownMenuCheckboxItem,
|
|
144
|
+
re as DoctDropdownMenuContent,
|
|
145
|
+
te as DoctDropdownMenuGroup,
|
|
146
|
+
ae as DoctDropdownMenuItem,
|
|
147
|
+
De as DoctDropdownMenuLabel,
|
|
148
|
+
pe as DoctDropdownMenuRadioGroup,
|
|
149
|
+
ce as DoctDropdownMenuRadioItem,
|
|
150
|
+
ne as DoctDropdownMenuSeparator,
|
|
151
|
+
ie as DoctDropdownMenuShortcut,
|
|
152
|
+
se as DoctDropdownMenuSub,
|
|
153
|
+
_e as DoctDropdownMenuSubContent,
|
|
154
|
+
me as DoctDropdownMenuSubTrigger,
|
|
155
|
+
Ie as DoctDropdownMenuTrigger,
|
|
155
156
|
u as DoctExpandableCard,
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
157
|
+
ct as DoctFooter,
|
|
158
|
+
le as DoctInput,
|
|
159
|
+
Oe as DoctLabel,
|
|
159
160
|
P as DoctLabeledInput,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
161
|
+
it as DoctLoginDialog,
|
|
162
|
+
at as DoctMobileNumberDialog,
|
|
163
|
+
_t as DoctNavigationMenu,
|
|
164
|
+
S as DoctOtpInput,
|
|
165
|
+
b as DoctPasswordInput,
|
|
166
|
+
x as DoctPhoneInput,
|
|
167
|
+
Ae as DoctPopover,
|
|
168
|
+
Ee as DoctPopoverArrow,
|
|
169
|
+
Ne as DoctPopoverBackdrop,
|
|
170
|
+
de as DoctPopoverClose,
|
|
171
|
+
ue as DoctPopoverContent,
|
|
172
|
+
Me as DoctPopoverDescription,
|
|
173
|
+
Pe as DoctPopoverHeader,
|
|
174
|
+
Re as DoctPopoverTitle,
|
|
175
|
+
Se as DoctPopoverTrigger,
|
|
176
|
+
ge as DoctPopoverViewport,
|
|
177
|
+
Be as DoctProgress,
|
|
178
|
+
Ue as DoctRadioGroup,
|
|
179
|
+
fe as DoctRadioGroupItem,
|
|
180
|
+
l as DoctSearchFilterSection,
|
|
180
181
|
Y as DoctSearchInput,
|
|
181
182
|
v as DoctSelectField,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
183
|
+
Fe as DoctSkeleton,
|
|
184
|
+
ve as DoctStepper,
|
|
185
|
+
he as DoctStepperContent,
|
|
186
|
+
He as DoctStepperDescription,
|
|
187
|
+
ke as DoctStepperIndicator,
|
|
188
|
+
Ye as DoctStepperItem,
|
|
189
|
+
Ve as DoctStepperNav,
|
|
190
|
+
ye as DoctStepperPanel,
|
|
191
|
+
We as DoctStepperSeparator,
|
|
192
|
+
Ke as DoctStepperTitle,
|
|
193
|
+
Qe as DoctStepperTrigger,
|
|
194
|
+
je as DoctTabs,
|
|
195
|
+
qe as DoctTabsContent,
|
|
196
|
+
Je as DoctTabsList,
|
|
197
|
+
$e as DoctTabsTrigger,
|
|
198
|
+
er as DoctTextareaField,
|
|
199
|
+
tr as DoctTimeline,
|
|
200
|
+
Dr as DoctToast,
|
|
201
|
+
pr as DoctToaster,
|
|
202
|
+
nr as DoctTooltip,
|
|
203
|
+
ir as DoctTooltipContent,
|
|
204
|
+
sr as DoctTooltipProvider,
|
|
205
|
+
_r as DoctTooltipTrigger,
|
|
206
|
+
Ir as DoctTypography,
|
|
207
|
+
O as DoctUserRegistrationSection,
|
|
208
|
+
It as INDIVIDUAL_NAV_ROUTES,
|
|
209
|
+
Tt as INDIVIDUAL_NAV_ROUTES_PROD,
|
|
210
|
+
lt as INDIVIDUAL_NAV_ROUTES_QA,
|
|
211
|
+
Ot as IndividualNavigationMenu,
|
|
212
|
+
At as LOGIN_DIALOG_ASSETS,
|
|
213
|
+
Et as LOGIN_DIALOG_CONTINUE_ANOTHER_WAY_LABEL,
|
|
214
|
+
Nt as LOGIN_DIALOG_CONTINUE_PHONE_EMAIL_LABEL,
|
|
215
|
+
dt as LOGIN_DIALOG_DEFAULT_COPY,
|
|
216
|
+
Rt as LOGIN_DIALOG_IMAGE_HEIGHT,
|
|
217
|
+
St as LOGIN_DIALOG_IMAGE_WIDTH,
|
|
218
|
+
ut as LOGIN_DIALOG_RETURNING_HINT,
|
|
219
|
+
Mt as LOGIN_DIALOG_RETURNING_PRIMARY_LABEL,
|
|
220
|
+
gt as LOGIN_DRAWER_BACKDROP_CLASS,
|
|
221
|
+
br as MOBILE_NUMBER_DIALOG_BODY_TITLE,
|
|
222
|
+
Br as MOBILE_NUMBER_DIALOG_DEFAULT_COUNTRY_CODE,
|
|
223
|
+
xr as MOBILE_NUMBER_DIALOG_DEFAULT_EXISTING_ACCOUNT_ERROR,
|
|
224
|
+
Ur as MOBILE_NUMBER_DIALOG_DEFAULT_INFO_MESSAGE,
|
|
225
|
+
fr as MOBILE_NUMBER_DIALOG_DEFAULT_MASKED_EMAIL,
|
|
226
|
+
Gr as MOBILE_NUMBER_DIALOG_DEFAULT_PHONE_DISPLAY,
|
|
227
|
+
Fr as MOBILE_NUMBER_DIALOG_DEFAULT_PHONE_NUMBER,
|
|
228
|
+
wr as MOBILE_NUMBER_DIALOG_DEFAULT_PHONE_PLACEHOLDER,
|
|
229
|
+
et as MOBILE_NUMBER_DIALOG_DRAWER_BACKDROP_CLASS,
|
|
230
|
+
vr as MOBILE_NUMBER_DIALOG_HEADER_TITLE,
|
|
231
|
+
hr as MOBILE_NUMBER_DIALOG_LOGIN_UNIFY_HINT,
|
|
232
|
+
Hr as MOBILE_NUMBER_DIALOG_OTP_HEADER_TITLE,
|
|
233
|
+
kr as MOBILE_NUMBER_DIALOG_OTP_RESEND_BUTTON_LABEL,
|
|
234
|
+
Yr as MOBILE_NUMBER_DIALOG_OTP_RESEND_LABEL,
|
|
235
|
+
Vr as MOBILE_NUMBER_DIALOG_OTP_SUBMIT_LABEL,
|
|
236
|
+
yr as MOBILE_NUMBER_DIALOG_OTP_TITLE,
|
|
237
|
+
Wr as MOBILE_NUMBER_DIALOG_PRIMARY_LABEL,
|
|
238
|
+
Kr as MOBILE_NUMBER_DIALOG_SECONDARY_LABEL,
|
|
239
|
+
Dt as MobileNumberDialog,
|
|
240
|
+
Bt as MobileNumberDialogOtpSurface,
|
|
241
|
+
Ut as ORGANIZATION_NAV_ROUTES,
|
|
242
|
+
ft as ORGANIZATION_NAV_ROUTES_PROD,
|
|
243
|
+
Gt as ORGANIZATION_NAV_ROUTES_QA,
|
|
244
|
+
wt as OrganizationNavigationMenu,
|
|
245
|
+
eo as badgeVariants,
|
|
246
|
+
Qr as buildExistingAccountError,
|
|
247
|
+
Zr as buildExistingMobileNumberError,
|
|
248
|
+
Xr as buildLoginWithMobileNumberLabel,
|
|
249
|
+
zr as buildLoginWithPhoneLabel,
|
|
250
|
+
jr as buildMobileNumberDisplay,
|
|
251
|
+
qr as buildPhoneDisplay,
|
|
252
|
+
Jr as isMobileNumberDialogPrimaryDisabled,
|
|
253
|
+
ht as isPossiblePhoneNumber,
|
|
254
|
+
Yt as isProdNav,
|
|
255
|
+
Vt as isQaNav,
|
|
256
|
+
Ht as isValidPhoneNumber,
|
|
257
|
+
yt as resolveNavEnv,
|
|
258
|
+
lr as useAutocompleteCheckbox,
|
|
259
|
+
Ze as useDoctStepItem,
|
|
260
|
+
Xe as useDoctStepper
|
|
248
261
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Pattern(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import type * as React from "react";
|
|
3
|
+
declare const badgeVariants: (props?: ({
|
|
4
|
+
variant?: "default" | "focus" | "secondary" | "destructive" | "outline" | "success" | "warning" | "info" | "invert" | "primary-light" | "warning-light" | "success-light" | "info-light" | "destructive-light" | "invert-light" | "focus-light" | "primary-outline" | "warning-outline" | "success-outline" | "info-outline" | "destructive-outline" | "invert-outline" | "focus-outline" | null | undefined;
|
|
5
|
+
size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
|
|
6
|
+
radius?: "default" | "full" | null | undefined;
|
|
7
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
8
|
+
interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
9
|
+
asChild?: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare function Badge({ className, variant, size, radius, asChild, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export { Badge, badgeVariants, type BadgeProps };
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { ButtonHTMLAttributes, ComponentProps, HTMLAttributes, ReactNode } from 'react';
|
|
2
|
+
type StepperOrientation = "horizontal" | "vertical";
|
|
3
|
+
type StepState = "active" | "completed" | "inactive" | "loading";
|
|
4
|
+
type StepIndicators = {
|
|
5
|
+
active?: ReactNode;
|
|
6
|
+
completed?: ReactNode;
|
|
7
|
+
inactive?: ReactNode;
|
|
8
|
+
loading?: ReactNode;
|
|
9
|
+
};
|
|
10
|
+
interface StepperContextValue {
|
|
11
|
+
activeStep: number;
|
|
12
|
+
setActiveStep: (step: number) => void;
|
|
13
|
+
stepsCount: number;
|
|
14
|
+
orientation: StepperOrientation;
|
|
15
|
+
registerTrigger: (node: HTMLButtonElement | null) => void;
|
|
16
|
+
triggerNodes: HTMLButtonElement[];
|
|
17
|
+
focusNext: (currentIdx: number) => void;
|
|
18
|
+
focusPrev: (currentIdx: number) => void;
|
|
19
|
+
focusFirst: () => void;
|
|
20
|
+
focusLast: () => void;
|
|
21
|
+
indicators: StepIndicators;
|
|
22
|
+
}
|
|
23
|
+
interface StepItemContextValue {
|
|
24
|
+
step: number;
|
|
25
|
+
state: StepState;
|
|
26
|
+
isDisabled: boolean;
|
|
27
|
+
isLoading: boolean;
|
|
28
|
+
}
|
|
29
|
+
declare function useStepper(): StepperContextValue;
|
|
30
|
+
declare function useStepItem(): StepItemContextValue;
|
|
31
|
+
interface StepperProps extends HTMLAttributes<HTMLDivElement> {
|
|
32
|
+
defaultValue?: number;
|
|
33
|
+
value?: number;
|
|
34
|
+
onValueChange?: (value: number) => void;
|
|
35
|
+
orientation?: StepperOrientation;
|
|
36
|
+
indicators?: StepIndicators;
|
|
37
|
+
}
|
|
38
|
+
declare function Stepper({ defaultValue, value, onValueChange, orientation, className, children, indicators, ...props }: StepperProps): import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
declare namespace Stepper {
|
|
40
|
+
var displayName: string;
|
|
41
|
+
}
|
|
42
|
+
interface StepperItemProps extends HTMLAttributes<HTMLDivElement> {
|
|
43
|
+
step: number;
|
|
44
|
+
completed?: boolean;
|
|
45
|
+
disabled?: boolean;
|
|
46
|
+
loading?: boolean;
|
|
47
|
+
}
|
|
48
|
+
declare function StepperItem({ step, completed, disabled, loading, className, children, ...props }: StepperItemProps): import("react/jsx-runtime").JSX.Element;
|
|
49
|
+
declare namespace StepperItem {
|
|
50
|
+
var displayName: string;
|
|
51
|
+
}
|
|
52
|
+
interface StepperTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
53
|
+
asChild?: boolean;
|
|
54
|
+
}
|
|
55
|
+
declare function StepperTrigger({ asChild, className, children, tabIndex, ...props }: StepperTriggerProps): import("react/jsx-runtime").JSX.Element;
|
|
56
|
+
declare namespace StepperTrigger {
|
|
57
|
+
var displayName: string;
|
|
58
|
+
}
|
|
59
|
+
declare function StepperIndicator({ children, className }: ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
60
|
+
declare namespace StepperIndicator {
|
|
61
|
+
var displayName: string;
|
|
62
|
+
}
|
|
63
|
+
declare function StepperSeparator({ className }: ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
64
|
+
declare namespace StepperSeparator {
|
|
65
|
+
var displayName: string;
|
|
66
|
+
}
|
|
67
|
+
declare function StepperTitle({ children, className }: ComponentProps<"h3">): import("react/jsx-runtime").JSX.Element;
|
|
68
|
+
declare namespace StepperTitle {
|
|
69
|
+
var displayName: string;
|
|
70
|
+
}
|
|
71
|
+
declare function StepperDescription({ children, className }: ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
72
|
+
declare namespace StepperDescription {
|
|
73
|
+
var displayName: string;
|
|
74
|
+
}
|
|
75
|
+
declare function StepperNav({ children, className }: ComponentProps<"nav">): import("react/jsx-runtime").JSX.Element;
|
|
76
|
+
declare namespace StepperNav {
|
|
77
|
+
var displayName: string;
|
|
78
|
+
}
|
|
79
|
+
declare function StepperPanel({ children, className }: ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
80
|
+
declare namespace StepperPanel {
|
|
81
|
+
var displayName: string;
|
|
82
|
+
}
|
|
83
|
+
interface StepperContentProps extends ComponentProps<"div"> {
|
|
84
|
+
value: number;
|
|
85
|
+
forceMount?: boolean;
|
|
86
|
+
}
|
|
87
|
+
declare function StepperContent({ value, forceMount, children, className }: StepperContentProps): import("react/jsx-runtime").JSX.Element | null;
|
|
88
|
+
declare namespace StepperContent {
|
|
89
|
+
var displayName: string;
|
|
90
|
+
}
|
|
91
|
+
export { useStepper, useStepItem, Stepper, StepperItem, StepperTrigger, StepperIndicator, StepperSeparator, StepperTitle, StepperDescription, StepperPanel, StepperContent, StepperNav, type StepperProps, type StepperItemProps, type StepperTriggerProps, type StepperContentProps, };
|