@tribepad/themis 1.1.3 → 1.2.0

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.
Files changed (39) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/elements/Wizard/Wizard.d.ts +35 -0
  3. package/dist/elements/Wizard/Wizard.d.ts.map +1 -0
  4. package/dist/elements/Wizard/Wizard.styles.d.ts +43 -0
  5. package/dist/elements/Wizard/Wizard.styles.d.ts.map +1 -0
  6. package/dist/elements/Wizard/Wizard.types.d.ts +222 -0
  7. package/dist/elements/Wizard/Wizard.types.d.ts.map +1 -0
  8. package/dist/elements/Wizard/WizardContent.d.ts +14 -0
  9. package/dist/elements/Wizard/WizardContent.d.ts.map +1 -0
  10. package/dist/elements/Wizard/WizardContext.d.ts +16 -0
  11. package/dist/elements/Wizard/WizardContext.d.ts.map +1 -0
  12. package/dist/elements/Wizard/WizardLayout.d.ts +19 -0
  13. package/dist/elements/Wizard/WizardLayout.d.ts.map +1 -0
  14. package/dist/elements/Wizard/WizardMobileProgress.d.ts +16 -0
  15. package/dist/elements/Wizard/WizardMobileProgress.d.ts.map +1 -0
  16. package/dist/elements/Wizard/WizardNavigation.d.ts +14 -0
  17. package/dist/elements/Wizard/WizardNavigation.d.ts.map +1 -0
  18. package/dist/elements/Wizard/WizardStep.d.ts +12 -0
  19. package/dist/elements/Wizard/WizardStep.d.ts.map +1 -0
  20. package/dist/elements/Wizard/WizardStepper.d.ts +12 -0
  21. package/dist/elements/Wizard/WizardStepper.d.ts.map +1 -0
  22. package/dist/elements/Wizard/index.d.ts +12 -0
  23. package/dist/elements/Wizard/index.d.ts.map +1 -0
  24. package/dist/elements/Wizard/index.js +3 -0
  25. package/dist/elements/Wizard/index.js.map +1 -0
  26. package/dist/elements/Wizard/index.mjs +3 -0
  27. package/dist/elements/Wizard/index.mjs.map +1 -0
  28. package/dist/elements/index.d.ts +2 -0
  29. package/dist/elements/index.d.ts.map +1 -1
  30. package/dist/elements/index.js +1 -1
  31. package/dist/elements/index.js.map +1 -1
  32. package/dist/elements/index.mjs +1 -1
  33. package/dist/elements/index.mjs.map +1 -1
  34. package/dist/index.js +2 -2
  35. package/dist/index.js.map +1 -1
  36. package/dist/index.mjs +2 -2
  37. package/dist/index.mjs.map +1 -1
  38. package/package.json +1 -1
  39. package/src/elements/Wizard/Wizard.stories.tsx +285 -0
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.0] - 2026-04-21
9
+
10
+ ### Added
11
+ - **Wizard** — accessible multi-step wizard for linear flows (WCAG 2.2 AAA).
12
+ Compound API: `Wizard.Stepper`, `Wizard.Content`, `Wizard.Step`, `Wizard.Navigation`, `Wizard.MobileProgress`, `Wizard.Layout`.
13
+ - Semantic `<ol>` + `aria-current="step"` markup (not `role="tablist"`).
14
+ - Root-owned live regions: polite `role="status"` for step progress, assertive `role="alert"` for `errors`.
15
+ - Focus management: step heading focused with `tabIndex={-1}` after step change (not the first form field).
16
+ - Steps keyed by `id` (not positional index) so conditional/reordered steps don't drift.
17
+ - Lazy render: only the active step's children are mounted.
18
+ - `Wizard.MobileProgress` shows a dot indicator with visible "Step N of M · Title" caption.
19
+ - Themis Button's Layer 1 / Layer 2 architecture keeps 44×44 touch targets on stepper jump buttons.
20
+
8
21
  ## [1.0.0] - 2026-02-08
9
22
 
10
23
  ### Added
@@ -0,0 +1,35 @@
1
+ import type { WizardProps } from './Wizard.types';
2
+ /**
3
+ * Wizard compound component with dot-syntax sub-components.
4
+ *
5
+ * @example
6
+ * ```tsx
7
+ * <Wizard
8
+ * currentStep={step}
9
+ * steps={[
10
+ * { id: 'welcome', label: 'Welcome' },
11
+ * { id: 'logo', label: 'Logo' },
12
+ * ]}
13
+ * onStepChange={(ev) => setStep(ev.index)}
14
+ * >
15
+ * <Wizard.Layout preview={<BrandingPreview />}>
16
+ * <Wizard.Stepper sectionLabel="Branding" sectionNumber={1} totalSections={3} />
17
+ * <Wizard.MobileProgress />
18
+ * <Wizard.Content>
19
+ * <Wizard.Step id="welcome"><WelcomeForm /></Wizard.Step>
20
+ * <Wizard.Step id="logo"><LogoForm /></Wizard.Step>
21
+ * </Wizard.Content>
22
+ * <Wizard.Navigation showSkip />
23
+ * </Wizard.Layout>
24
+ * </Wizard>
25
+ * ```
26
+ */
27
+ export declare const Wizard: import("react").ForwardRefExoticComponent<WizardProps & import("react").RefAttributes<HTMLDivElement>> & {
28
+ Layout: import("react").ForwardRefExoticComponent<import("./WizardLayout").WizardLayoutProps & import("react").RefAttributes<HTMLDivElement>>;
29
+ Stepper: import("react").ForwardRefExoticComponent<import("./Wizard.types").WizardStepperProps & import("react").RefAttributes<HTMLDivElement>>;
30
+ Content: import("react").ForwardRefExoticComponent<import("./Wizard.types").WizardContentProps & import("react").RefAttributes<HTMLDivElement>>;
31
+ Step: import("react").ForwardRefExoticComponent<import("./Wizard.types").WizardStepProps & import("react").RefAttributes<HTMLElement>>;
32
+ Navigation: import("react").ForwardRefExoticComponent<import("./Wizard.types").WizardNavigationProps & import("react").RefAttributes<HTMLDivElement>>;
33
+ MobileProgress: import("react").ForwardRefExoticComponent<import("./Wizard.types").WizardMobileProgressProps & import("react").RefAttributes<HTMLDivElement>>;
34
+ };
35
+ //# sourceMappingURL=Wizard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Wizard.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/Wizard.tsx"],"names":[],"mappings":"AAsCA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAkIlD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,eAAO,MAAM,MAAM;;;;;;;CAOjB,CAAC"}
@@ -0,0 +1,43 @@
1
+ export declare const wizardRootVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
2
+ export declare const wizardLayoutVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
3
+ export declare const wizardLayoutMainVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
4
+ export declare const wizardLayoutStepperSlotVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
5
+ export declare const wizardLayoutContentSlotVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
6
+ export declare const wizardLayoutHelpTextVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
7
+ export declare const wizardLayoutPreviewVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
8
+ export declare const wizardStepperContainerVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
9
+ export declare const wizardStepperSectionLabelVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
10
+ export declare const wizardStepperSectionHeadingVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
11
+ export declare const wizardStepperListVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
12
+ export declare const wizardStepperItemVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
13
+ export declare const wizardStepperIndicatorColumnVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
14
+ export declare const wizardStepperCircleVariants: (props?: ({
15
+ state?: "current" | "completed" | "upcoming" | null | undefined;
16
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
17
+ export declare const wizardStepperConnectorVariants: (props?: ({
18
+ completed?: boolean | null | undefined;
19
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
20
+ export declare const wizardStepperLabelColumnVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
21
+ export declare const wizardStepperLabelVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
22
+ export declare const wizardStepperLabelTextVariants: (props?: ({
23
+ state?: "current" | "completed" | "upcoming" | null | undefined;
24
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
25
+ export declare const wizardStepperCurrentSubtitleVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
26
+ export declare const wizardStepContainerVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
27
+ export declare const wizardStepHeaderRowVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
28
+ export declare const wizardStepIconVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
29
+ export declare const wizardStepHeadingVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
30
+ export declare const wizardStepDescriptionVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
31
+ export declare const wizardContentCardVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
32
+ export declare const wizardNavigationVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
33
+ export declare const wizardNavigationLeftVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
34
+ export declare const wizardNavigationRightVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
35
+ export declare const wizardMobileProgressContainerVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
36
+ export declare const wizardMobileProgressDotRowVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
37
+ export declare const wizardMobileProgressDotVariants: (props?: ({
38
+ state?: "current" | "completed" | "upcoming" | null | undefined;
39
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
40
+ export declare const wizardMobileProgressCaptionVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
41
+ export declare const wizardMobileProgressCaptionTitleVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
42
+ export declare const wizardLiveRegionVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
43
+ //# sourceMappingURL=Wizard.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Wizard.styles.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/Wizard.styles.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,kBAAkB,oFAE9B,CAAC;AAMF,eAAO,MAAM,oBAAoB,oFAEhC,CAAC;AAEF,eAAO,MAAM,wBAAwB,oFAEpC,CAAC;AAEF,eAAO,MAAM,+BAA+B,oFAE3C,CAAC;AAEF,eAAO,MAAM,+BAA+B,oFAE3C,CAAC;AAEF,eAAO,MAAM,4BAA4B,oFAExC,CAAC;AAEF,eAAO,MAAM,2BAA2B,oFAEvC,CAAC;AAOF,eAAO,MAAM,8BAA8B,oFAE1C,CAAC;AAEF,eAAO,MAAM,iCAAiC,oFAE7C,CAAC;AAEF,eAAO,MAAM,mCAAmC,oFAE/C,CAAC;AAEF,eAAO,MAAM,yBAAyB,oFAErC,CAAC;AAEF,eAAO,MAAM,yBAAyB,oFAErC,CAAC;AAEF,eAAO,MAAM,oCAAoC,oFAEhD,CAAC;AAEF,eAAO,MAAM,2BAA2B;;8EAqBvC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;8EAa1C,CAAC;AAEF,eAAO,MAAM,gCAAgC,oFAE5C,CAAC;AAEF,eAAO,MAAM,0BAA0B,oFAEtC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;8EAc1C,CAAC;AAEF,eAAO,MAAM,oCAAoC,oFAEhD,CAAC;AAMF,eAAO,MAAM,2BAA2B,oFAEvC,CAAC;AAEF,eAAO,MAAM,2BAA2B,oFAEvC,CAAC;AAEF,eAAO,MAAM,sBAAsB,oFAElC,CAAC;AAEF,eAAO,MAAM,yBAAyB,oFAIrC,CAAC;AAEF,eAAO,MAAM,6BAA6B,oFAEzC,CAAC;AAMF,eAAO,MAAM,yBAAyB,oFAErC,CAAC;AAMF,eAAO,MAAM,wBAAwB,oFAEpC,CAAC;AAEF,eAAO,MAAM,4BAA4B,oFAAU,CAAC;AAEpD,eAAO,MAAM,6BAA6B,oFAEzC,CAAC;AAMF,eAAO,MAAM,qCAAqC,oFAEjD,CAAC;AAEF,eAAO,MAAM,kCAAkC,oFAE9C,CAAC;AAEF,eAAO,MAAM,+BAA+B;;8EAc3C,CAAC;AAEF,eAAO,MAAM,mCAAmC,oFAE/C,CAAC;AAEF,eAAO,MAAM,wCAAwC,oFAEpD,CAAC;AAMF,eAAO,MAAM,wBAAwB,oFAEpC,CAAC"}
@@ -0,0 +1,222 @@
1
+ import { z } from 'zod';
2
+ import type { ReactNode, ReactElement } from 'react';
3
+ export declare const WizardChangeReasonSchema: z.ZodEnum<{
4
+ back: "back";
5
+ next: "next";
6
+ skip: "skip";
7
+ jump: "jump";
8
+ }>;
9
+ export type WizardChangeReason = z.infer<typeof WizardChangeReasonSchema>;
10
+ export declare const WizardStepDescriptorSchema: z.ZodObject<{
11
+ id: z.ZodString;
12
+ label: z.ZodString;
13
+ description: z.ZodOptional<z.ZodString>;
14
+ }, z.core.$strip>;
15
+ export interface WizardStepDescriptor {
16
+ id: string;
17
+ label: string;
18
+ description?: string;
19
+ }
20
+ export interface WizardStepChangeEvent {
21
+ index: number;
22
+ id: string;
23
+ label: string;
24
+ reason: WizardChangeReason;
25
+ }
26
+ export interface WizardNavigationLabelContext {
27
+ index: number;
28
+ total: number;
29
+ id: string;
30
+ }
31
+ export type WizardNavigationLabel = string | ((ctx: WizardNavigationLabelContext) => string);
32
+ export interface WizardNavigationLabels {
33
+ back?: WizardNavigationLabel;
34
+ skip?: WizardNavigationLabel;
35
+ next?: WizardNavigationLabel;
36
+ start?: WizardNavigationLabel;
37
+ finish?: WizardNavigationLabel;
38
+ }
39
+ export type WizardAnnounceTemplate = (index: number, total: number, label: string) => string;
40
+ export declare const WizardPropsSchema: z.ZodObject<{
41
+ className: z.ZodOptional<z.ZodString>;
42
+ id: z.ZodOptional<z.ZodString>;
43
+ 'aria-label': z.ZodOptional<z.ZodString>;
44
+ 'aria-labelledby': z.ZodOptional<z.ZodString>;
45
+ 'aria-describedby': z.ZodOptional<z.ZodString>;
46
+ 'aria-live': z.ZodOptional<z.ZodEnum<{
47
+ off: "off";
48
+ polite: "polite";
49
+ assertive: "assertive";
50
+ }>>;
51
+ 'aria-hidden': z.ZodOptional<z.ZodBoolean>;
52
+ 'data-testid': z.ZodOptional<z.ZodString>;
53
+ children: z.ZodCustom<ReactNode, ReactNode>;
54
+ currentStep: z.ZodNumber;
55
+ steps: z.ZodArray<z.ZodObject<{
56
+ id: z.ZodString;
57
+ label: z.ZodString;
58
+ description: z.ZodOptional<z.ZodString>;
59
+ }, z.core.$strip>>;
60
+ onStepChange: z.ZodCustom<(event: WizardStepChangeEvent) => void, (event: WizardStepChangeEvent) => void>;
61
+ isLoading: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
62
+ errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
63
+ announceTemplate: z.ZodOptional<z.ZodCustom<WizardAnnounceTemplate, WizardAnnounceTemplate>>;
64
+ }, z.core.$strip>;
65
+ export interface WizardProps {
66
+ children: ReactNode;
67
+ currentStep: number;
68
+ steps: WizardStepDescriptor[];
69
+ onStepChange: (event: WizardStepChangeEvent) => void;
70
+ isLoading?: boolean;
71
+ errors?: string[];
72
+ announceTemplate?: WizardAnnounceTemplate;
73
+ className?: string;
74
+ id?: string;
75
+ 'aria-label'?: string;
76
+ 'aria-labelledby'?: string;
77
+ 'data-testid'?: string;
78
+ }
79
+ export declare const WizardLayoutPropsSchema: z.ZodObject<{
80
+ className: z.ZodOptional<z.ZodString>;
81
+ id: z.ZodOptional<z.ZodString>;
82
+ 'aria-label': z.ZodOptional<z.ZodString>;
83
+ 'aria-labelledby': z.ZodOptional<z.ZodString>;
84
+ 'aria-describedby': z.ZodOptional<z.ZodString>;
85
+ 'aria-live': z.ZodOptional<z.ZodEnum<{
86
+ off: "off";
87
+ polite: "polite";
88
+ assertive: "assertive";
89
+ }>>;
90
+ 'aria-hidden': z.ZodOptional<z.ZodBoolean>;
91
+ 'data-testid': z.ZodOptional<z.ZodString>;
92
+ children: z.ZodCustom<ReactNode, ReactNode>;
93
+ preview: z.ZodOptional<z.ZodCustom<ReactNode, ReactNode>>;
94
+ helpText: z.ZodOptional<z.ZodString>;
95
+ }, z.core.$strip>;
96
+ export interface WizardLayoutProps {
97
+ children: ReactNode;
98
+ preview?: ReactNode;
99
+ helpText?: string;
100
+ className?: string;
101
+ 'data-testid'?: string;
102
+ }
103
+ export declare const WizardStepperPropsSchema: z.ZodObject<{
104
+ className: z.ZodOptional<z.ZodString>;
105
+ children: z.ZodOptional<z.ZodAny>;
106
+ id: z.ZodOptional<z.ZodString>;
107
+ 'aria-label': z.ZodOptional<z.ZodString>;
108
+ 'aria-labelledby': z.ZodOptional<z.ZodString>;
109
+ 'aria-describedby': z.ZodOptional<z.ZodString>;
110
+ 'aria-live': z.ZodOptional<z.ZodEnum<{
111
+ off: "off";
112
+ polite: "polite";
113
+ assertive: "assertive";
114
+ }>>;
115
+ 'aria-hidden': z.ZodOptional<z.ZodBoolean>;
116
+ 'data-testid': z.ZodOptional<z.ZodString>;
117
+ sectionLabel: z.ZodOptional<z.ZodString>;
118
+ sectionNumber: z.ZodOptional<z.ZodNumber>;
119
+ totalSections: z.ZodOptional<z.ZodNumber>;
120
+ allowClickOnCompleted: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
121
+ }, z.core.$strip>;
122
+ export interface WizardStepperProps {
123
+ sectionLabel?: string;
124
+ sectionNumber?: number;
125
+ totalSections?: number;
126
+ allowClickOnCompleted?: boolean;
127
+ className?: string;
128
+ 'aria-label'?: string;
129
+ 'data-testid'?: string;
130
+ }
131
+ export declare const WizardStepPropsSchema: z.ZodObject<{
132
+ className: z.ZodOptional<z.ZodString>;
133
+ 'aria-label': z.ZodOptional<z.ZodString>;
134
+ 'aria-labelledby': z.ZodOptional<z.ZodString>;
135
+ 'aria-describedby': z.ZodOptional<z.ZodString>;
136
+ 'aria-live': z.ZodOptional<z.ZodEnum<{
137
+ off: "off";
138
+ polite: "polite";
139
+ assertive: "assertive";
140
+ }>>;
141
+ 'aria-hidden': z.ZodOptional<z.ZodBoolean>;
142
+ 'data-testid': z.ZodOptional<z.ZodString>;
143
+ id: z.ZodString;
144
+ children: z.ZodCustom<ReactNode, ReactNode>;
145
+ icon: z.ZodOptional<z.ZodCustom<ReactElement<unknown, string | import("react").JSXElementConstructor<any>>, ReactElement<unknown, string | import("react").JSXElementConstructor<any>>>>;
146
+ }, z.core.$strip>;
147
+ export interface WizardStepProps {
148
+ id: string;
149
+ children: ReactNode;
150
+ icon?: ReactElement;
151
+ className?: string;
152
+ 'data-testid'?: string;
153
+ }
154
+ export declare const WizardContentPropsSchema: z.ZodObject<{
155
+ className: z.ZodOptional<z.ZodString>;
156
+ id: z.ZodOptional<z.ZodString>;
157
+ 'aria-label': z.ZodOptional<z.ZodString>;
158
+ 'aria-labelledby': z.ZodOptional<z.ZodString>;
159
+ 'aria-describedby': z.ZodOptional<z.ZodString>;
160
+ 'aria-live': z.ZodOptional<z.ZodEnum<{
161
+ off: "off";
162
+ polite: "polite";
163
+ assertive: "assertive";
164
+ }>>;
165
+ 'aria-hidden': z.ZodOptional<z.ZodBoolean>;
166
+ 'data-testid': z.ZodOptional<z.ZodString>;
167
+ children: z.ZodCustom<ReactNode, ReactNode>;
168
+ }, z.core.$strip>;
169
+ export interface WizardContentProps {
170
+ children: ReactNode;
171
+ className?: string;
172
+ 'data-testid'?: string;
173
+ }
174
+ export declare const WizardNavigationPropsSchema: z.ZodObject<{
175
+ className: z.ZodOptional<z.ZodString>;
176
+ children: z.ZodOptional<z.ZodAny>;
177
+ id: z.ZodOptional<z.ZodString>;
178
+ 'aria-label': z.ZodOptional<z.ZodString>;
179
+ 'aria-labelledby': z.ZodOptional<z.ZodString>;
180
+ 'aria-describedby': z.ZodOptional<z.ZodString>;
181
+ 'aria-live': z.ZodOptional<z.ZodEnum<{
182
+ off: "off";
183
+ polite: "polite";
184
+ assertive: "assertive";
185
+ }>>;
186
+ 'aria-hidden': z.ZodOptional<z.ZodBoolean>;
187
+ 'data-testid': z.ZodOptional<z.ZodString>;
188
+ labels: z.ZodOptional<z.ZodCustom<WizardNavigationLabels, WizardNavigationLabels>>;
189
+ showSkip: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
190
+ onBack: z.ZodOptional<z.ZodCustom<() => void, () => void>>;
191
+ onNext: z.ZodOptional<z.ZodCustom<() => void, () => void>>;
192
+ onSkip: z.ZodOptional<z.ZodCustom<() => void, () => void>>;
193
+ }, z.core.$strip>;
194
+ export interface WizardNavigationProps {
195
+ labels?: WizardNavigationLabels;
196
+ showSkip?: boolean;
197
+ onBack?: () => void;
198
+ onNext?: () => void;
199
+ onSkip?: () => void;
200
+ className?: string;
201
+ 'data-testid'?: string;
202
+ }
203
+ export declare const WizardMobileProgressPropsSchema: z.ZodObject<{
204
+ className: z.ZodOptional<z.ZodString>;
205
+ children: z.ZodOptional<z.ZodAny>;
206
+ id: z.ZodOptional<z.ZodString>;
207
+ 'aria-label': z.ZodOptional<z.ZodString>;
208
+ 'aria-labelledby': z.ZodOptional<z.ZodString>;
209
+ 'aria-describedby': z.ZodOptional<z.ZodString>;
210
+ 'aria-live': z.ZodOptional<z.ZodEnum<{
211
+ off: "off";
212
+ polite: "polite";
213
+ assertive: "assertive";
214
+ }>>;
215
+ 'aria-hidden': z.ZodOptional<z.ZodBoolean>;
216
+ 'data-testid': z.ZodOptional<z.ZodString>;
217
+ }, z.core.$strip>;
218
+ export interface WizardMobileProgressProps {
219
+ className?: string;
220
+ 'data-testid'?: string;
221
+ }
222
+ //# sourceMappingURL=Wizard.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Wizard.types.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/Wizard.types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import type { WizardContentProps } from './Wizard.types';
2
+ /**
3
+ * Renders ONLY the currently-selected Wizard.Step's subtree. Inactive steps
4
+ * are unmounted — this is deliberate. It preserves the pre-migration
5
+ * `renderStepContent()` switch-case behaviour (one step mounted at a time)
6
+ * and prevents 6 file-upload forms from mounting simultaneously on a 6-step
7
+ * branding wizard.
8
+ *
9
+ * If you need state preserved across step transitions, keep it in the
10
+ * consumer's parent state (Formik, Zustand, etc.) rather than inside step
11
+ * subtree local state.
12
+ */
13
+ export declare const WizardContent: import("react").ForwardRefExoticComponent<WizardContentProps & import("react").RefAttributes<HTMLDivElement>>;
14
+ //# sourceMappingURL=WizardContent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WizardContent.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/WizardContent.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,kBAAkB,EAAmB,MAAM,gBAAgB,CAAC;AAW1E;;;;;;;;;;GAUG;AACH,eAAO,MAAM,aAAa,+GAmCzB,CAAC"}
@@ -0,0 +1,16 @@
1
+ import type { WizardStepChangeEvent, WizardStepDescriptor, WizardAnnounceTemplate } from './Wizard.types';
2
+ export interface WizardContextValue {
3
+ currentStepIndex: number;
4
+ currentStepId: string;
5
+ steps: WizardStepDescriptor[];
6
+ totalSteps: number;
7
+ isLoading: boolean;
8
+ errors: string[];
9
+ announceTemplate: WizardAnnounceTemplate;
10
+ onStepChange: (event: WizardStepChangeEvent) => void;
11
+ /** Callback invoked by Wizard.Content after a step change to hand the heading node to the root for focus-on-change. */
12
+ registerStepHeading: (node: HTMLHeadingElement | null) => void;
13
+ }
14
+ export declare const WizardContext: import("react").Context<WizardContextValue | null>;
15
+ export declare function useWizardContext(): WizardContextValue;
16
+ //# sourceMappingURL=WizardContext.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WizardContext.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/WizardContext.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,qBAAqB,EACrB,oBAAoB,EACpB,sBAAsB,EACvB,MAAM,gBAAgB,CAAC;AAExB,MAAM,WAAW,kBAAkB;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,oBAAoB,EAAE,CAAC;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;IACnB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,gBAAgB,EAAE,sBAAsB,CAAC;IACzC,YAAY,EAAE,CAAC,KAAK,EAAE,qBAAqB,KAAK,IAAI,CAAC;IACrD,uHAAuH;IACvH,mBAAmB,EAAE,CAAC,IAAI,EAAE,kBAAkB,GAAG,IAAI,KAAK,IAAI,CAAC;CAChE;AAED,eAAO,MAAM,aAAa,oDAAiD,CAAC;AAE5E,wBAAgB,gBAAgB,IAAI,kBAAkB,CAMrD"}
@@ -0,0 +1,19 @@
1
+ import { type ReactNode } from 'react';
2
+ import type { WizardLayoutProps as BaseWizardLayoutProps } from './Wizard.types';
3
+ /**
4
+ * 3-column layout helper.
5
+ *
6
+ * - `stepper` renders in a <nav> on the left, hidden below lg.
7
+ * - `children` render in the centre column (intended for Wizard.MobileProgress,
8
+ * Wizard.Content, Wizard.Navigation, in that order).
9
+ * - `preview` renders in an <aside aria-hidden> on the right, hidden below xl.
10
+ *
11
+ * Wizard.Layout is opinionated. Consumers who need a different arrangement can
12
+ * skip it entirely and compose sub-components themselves — the root (<Wizard>)
13
+ * handles all the a11y plumbing regardless.
14
+ */
15
+ export interface WizardLayoutProps extends BaseWizardLayoutProps {
16
+ stepper?: ReactNode;
17
+ }
18
+ export declare const WizardLayout: import("react").ForwardRefExoticComponent<WizardLayoutProps & import("react").RefAttributes<HTMLDivElement>>;
19
+ //# sourceMappingURL=WizardLayout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WizardLayout.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/WizardLayout.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAiC,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAUtE,OAAO,KAAK,EAAE,iBAAiB,IAAI,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAEjF;;;;;;;;;;;GAWG;AAEH,MAAM,WAAW,iBAAkB,SAAQ,qBAAqB;IAC9D,OAAO,CAAC,EAAE,SAAS,CAAC;CACrB;AAED,eAAO,MAAM,YAAY,8GA+CxB,CAAC"}
@@ -0,0 +1,16 @@
1
+ import type { WizardMobileProgressProps } from './Wizard.types';
2
+ /**
3
+ * Horizontal dot progress for narrow viewports, with a visible caption below
4
+ * the dots ("Step N of M · Title"). Hidden on lg+ where `Wizard.Stepper` is the
5
+ * primary indicator.
6
+ *
7
+ * Accessibility:
8
+ * - `role="progressbar"` on the container.
9
+ * - `aria-label="Wizard progress"` names the widget.
10
+ * - `aria-valuetext` carries the "Step N of M: Title" state.
11
+ * - The visible caption is redundant with `aria-valuetext` — that's intentional
12
+ * so sighted users also see the orientation; `aria-valuetext` already speaks
13
+ * it, so the caption is marked `aria-hidden` to avoid double-announcement.
14
+ */
15
+ export declare const WizardMobileProgress: import("react").ForwardRefExoticComponent<WizardMobileProgressProps & import("react").RefAttributes<HTMLDivElement>>;
16
+ //# sourceMappingURL=WizardMobileProgress.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WizardMobileProgress.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/WizardMobileProgress.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AAEhE;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,oBAAoB,sHAuDhC,CAAC"}
@@ -0,0 +1,14 @@
1
+ import type { WizardNavigationProps } from './Wizard.types';
2
+ /**
3
+ * Back / Skip / Next footer.
4
+ *
5
+ * Next label resolves from context:
6
+ * - `labels.start` when currentStepIndex === 0
7
+ * - `labels.finish` when currentStepIndex === totalSteps - 2 (last content step)
8
+ * - `labels.next` otherwise
9
+ *
10
+ * Omit `showSkip` to hide Skip entirely. Skip is also hidden on the first
11
+ * and last-content steps by default (where it's semantically meaningless).
12
+ */
13
+ export declare const WizardNavigation: import("react").ForwardRefExoticComponent<WizardNavigationProps & import("react").RefAttributes<HTMLDivElement>>;
14
+ //# sourceMappingURL=WizardNavigation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WizardNavigation.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/WizardNavigation.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAGV,qBAAqB,EACtB,MAAM,gBAAgB,CAAC;AAmBxB;;;;;;;;;;GAUG;AACH,eAAO,MAAM,gBAAgB,kHAuH5B,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { WizardStepProps } from './Wizard.types';
2
+ /**
3
+ * A single step panel. Rendered only when it's the active step (Wizard.Content
4
+ * filters). The heading is the focus target after step changes — receives
5
+ * `tabIndex={-1}` so it can be programmatically focused without landing in
6
+ * the tab order.
7
+ *
8
+ * Each step gets its own `useId` for heading + description, then links them
9
+ * via `aria-labelledby` / `aria-describedby` on the <section>.
10
+ */
11
+ export declare const WizardStep: import("react").ForwardRefExoticComponent<WizardStepProps & import("react").RefAttributes<HTMLElement>>;
12
+ //# sourceMappingURL=WizardStep.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WizardStep.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/WizardStep.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAEtD;;;;;;;;GAQG;AACH,eAAO,MAAM,UAAU,yGAmDtB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { WizardStepperProps } from './Wizard.types';
2
+ /**
3
+ * Vertical stepper. Semantic <ol> + `aria-current="step"` — NOT role="tablist".
4
+ *
5
+ * The flex layout lives on an inner <div>, not on the <ol>/<li>, so Safari's
6
+ * flexbox list-role stripping doesn't kill the list semantics.
7
+ *
8
+ * Completed steps are clickable when `allowClickOnCompleted` is true and the
9
+ * context exposes `onStepChange`. Current and upcoming steps are not clickable.
10
+ */
11
+ export declare const WizardStepper: import("react").ForwardRefExoticComponent<WizardStepperProps & import("react").RefAttributes<HTMLDivElement>>;
12
+ //# sourceMappingURL=WizardStepper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WizardStepper.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/WizardStepper.tsx"],"names":[],"mappings":"AAqBA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEzD;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa,+GAmHzB,CAAC"}
@@ -0,0 +1,12 @@
1
+ export { Wizard } from './Wizard';
2
+ export { WizardLayout } from './WizardLayout';
3
+ export { WizardStepper } from './WizardStepper';
4
+ export { WizardContent } from './WizardContent';
5
+ export { WizardStep } from './WizardStep';
6
+ export { WizardNavigation } from './WizardNavigation';
7
+ export { WizardMobileProgress } from './WizardMobileProgress';
8
+ export { useWizardContext, type WizardContextValue } from './WizardContext';
9
+ export { wizardRootVariants, wizardLayoutVariants, wizardLayoutMainVariants, wizardLayoutStepperSlotVariants, wizardLayoutContentSlotVariants, wizardLayoutHelpTextVariants, wizardLayoutPreviewVariants, wizardStepperContainerVariants, wizardStepperSectionLabelVariants, wizardStepperSectionHeadingVariants, wizardStepperListVariants, wizardStepperItemVariants, wizardStepperIndicatorColumnVariants, wizardStepperCircleVariants, wizardStepperConnectorVariants, wizardStepperLabelColumnVariants, wizardStepperLabelVariants, wizardStepperLabelTextVariants, wizardStepperCurrentSubtitleVariants, wizardStepContainerVariants, wizardStepHeaderRowVariants, wizardStepIconVariants, wizardStepHeadingVariants, wizardStepDescriptionVariants, wizardContentCardVariants, wizardNavigationVariants, wizardNavigationLeftVariants, wizardNavigationRightVariants, wizardMobileProgressContainerVariants, wizardMobileProgressDotRowVariants, wizardMobileProgressDotVariants, wizardMobileProgressCaptionVariants, wizardMobileProgressCaptionTitleVariants, wizardLiveRegionVariants, } from './Wizard.styles';
10
+ export { WizardPropsSchema, WizardLayoutPropsSchema, WizardStepperPropsSchema, WizardContentPropsSchema, WizardStepPropsSchema, WizardNavigationPropsSchema, WizardMobileProgressPropsSchema, WizardStepDescriptorSchema, WizardChangeReasonSchema, } from './Wizard.types';
11
+ export type { WizardProps, WizardLayoutProps, WizardStepperProps, WizardContentProps, WizardStepProps, WizardNavigationProps, WizardMobileProgressProps, WizardStepDescriptor, WizardStepChangeEvent, WizardChangeReason, WizardNavigationLabel, WizardNavigationLabels, WizardNavigationLabelContext, WizardAnnounceTemplate, } from './Wizard.types';
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/elements/Wizard/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAG9D,OAAO,EAAE,gBAAgB,EAAE,KAAK,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAG5E,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,EACxB,+BAA+B,EAC/B,+BAA+B,EAC/B,4BAA4B,EAC5B,2BAA2B,EAC3B,8BAA8B,EAC9B,iCAAiC,EACjC,mCAAmC,EACnC,yBAAyB,EACzB,yBAAyB,EACzB,oCAAoC,EACpC,2BAA2B,EAC3B,8BAA8B,EAC9B,gCAAgC,EAChC,0BAA0B,EAC1B,8BAA8B,EAC9B,oCAAoC,EACpC,2BAA2B,EAC3B,2BAA2B,EAC3B,sBAAsB,EACtB,yBAAyB,EACzB,6BAA6B,EAC7B,yBAAyB,EACzB,wBAAwB,EACxB,4BAA4B,EAC5B,6BAA6B,EAC7B,qCAAqC,EACrC,kCAAkC,EAClC,+BAA+B,EAC/B,mCAAmC,EACnC,wCAAwC,EACxC,wBAAwB,GACzB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EACL,iBAAiB,EACjB,uBAAuB,EACvB,wBAAwB,EACxB,wBAAwB,EACxB,qBAAqB,EACrB,2BAA2B,EAC3B,+BAA+B,EAC/B,0BAA0B,EAC1B,wBAAwB,GACzB,MAAM,gBAAgB,CAAC;AAGxB,YAAY,EACV,WAAW,EACX,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,eAAe,EACf,qBAAqB,EACrB,yBAAyB,EACzB,oBAAoB,EACpB,qBAAqB,EACrB,kBAAkB,EAClB,qBAAqB,EACrB,sBAAsB,EACtB,4BAA4B,EAC5B,sBAAsB,GACvB,MAAM,gBAAgB,CAAC"}
@@ -0,0 +1,3 @@
1
+ "use client";
2
+ 'use strict';var react=require('react'),clsx=require('clsx'),tailwindMerge=require('tailwind-merge'),classVarianceAuthority=require('class-variance-authority'),jsxRuntime=require('react/jsx-runtime'),lucideReact=require('lucide-react'),reactAriaComponents=require('react-aria-components'),zod=require('zod');function z(...s){return tailwindMerge.twMerge(clsx.clsx(s))}var et=react.createContext(null);function W(){let s=react.useContext(et);if(!s)throw new Error("Wizard compound components must be used within <Wizard>");return s}var H=["motion-reduce:transition-none","motion-reduce:animate-none"],rt=["transition-colors","duration-200"];function G(...s){return s.flatMap(t=>Array.isArray(t)?[...t]:[t])}var it=classVarianceAuthority.cva("flex min-h-0 flex-1 flex-col"),ot=classVarianceAuthority.cva("flex min-h-0 flex-1 flex-col lg:flex-row"),nt=classVarianceAuthority.cva("flex min-w-0 flex-1 justify-center gap-8 overflow-y-auto bg-[var(--page-background)] p-6"),st=classVarianceAuthority.cva("hidden w-56 shrink-0 pt-2 lg:block"),dt=classVarianceAuthority.cva("flex w-full max-w-2xl flex-col"),pt=classVarianceAuthority.cva("mt-3 text-center text-xs text-[var(--menu-muted)]"),lt=classVarianceAuthority.cva("hidden w-80 shrink-0 border-l border-[var(--border)] bg-[var(--accent-background)] p-6 xl:block"),ct=classVarianceAuthority.cva("flex flex-col gap-2"),ut=classVarianceAuthority.cva("text-xs font-semibold uppercase tracking-wide text-[var(--primary)]"),mt=classVarianceAuthority.cva("text-sm font-bold text-[var(--content-foreground)]"),ft=classVarianceAuthority.cva("mt-6 flex flex-col"),xt=classVarianceAuthority.cva("flex items-start"),gt=classVarianceAuthority.cva("flex w-11 shrink-0 flex-col items-center"),vt=classVarianceAuthority.cva(G("flex h-9 w-9 shrink-0 items-center justify-center rounded-full text-sm font-semibold",rt,H),{variants:{state:{completed:"bg-[var(--primary)] text-[var(--primary-foreground)]",current:"border-2 border-[var(--primary)] bg-[var(--content-background)] text-[var(--primary)]",upcoming:"border border-[var(--border)] bg-[var(--content-background)] text-[var(--menu-muted)]"}},defaultVariants:{state:"upcoming"}}),zt=classVarianceAuthority.cva(G("my-0.5 h-5 w-0.5",rt,H),{variants:{completed:{true:"bg-[var(--primary)]",false:"bg-[var(--border)]"}},defaultVariants:{completed:false}}),bt=classVarianceAuthority.cva("flex min-h-11 items-center pl-3"),St=classVarianceAuthority.cva("flex flex-col justify-center"),ht=classVarianceAuthority.cva("text-sm",{variants:{state:{completed:"font-medium text-[var(--content-foreground)]",current:"font-semibold text-[var(--content-foreground)]",upcoming:"text-[var(--menu-muted)]"}},defaultVariants:{state:"upcoming"}}),wt=classVarianceAuthority.cva("text-xs text-[var(--primary)]"),Nt=classVarianceAuthority.cva("flex flex-col gap-6"),Wt=classVarianceAuthority.cva("flex items-start gap-4"),Vt=classVarianceAuthority.cva("flex h-12 w-12 shrink-0 items-center justify-center rounded-full bg-[var(--accent-background)] text-[var(--primary)]"),yt=classVarianceAuthority.cva("text-lg font-bold text-[var(--content-foreground)] focus:outline-none"),Ct=classVarianceAuthority.cva("mt-1 text-sm text-[var(--menu-muted)]"),Lt=classVarianceAuthority.cva("rounded-lg border border-[var(--border)] bg-[var(--content-background)] p-6 text-[var(--content-foreground)]"),Et=classVarianceAuthority.cva("mt-4 flex items-center justify-between border-t border-[var(--border)] pt-4"),Rt=classVarianceAuthority.cva(""),Pt=classVarianceAuthority.cva("flex items-center gap-3"),Tt=classVarianceAuthority.cva("flex flex-col items-center gap-1.5 py-3 lg:hidden"),It=classVarianceAuthority.cva("flex items-center justify-center gap-2"),_t=classVarianceAuthority.cva(G("h-2 rounded-full transition-all duration-200",H),{variants:{state:{completed:"w-2 bg-[var(--primary)] opacity-60",current:"w-8 bg-[var(--primary)]",upcoming:"w-2 bg-[var(--border)]"}},defaultVariants:{state:"upcoming"}}),At=classVarianceAuthority.cva("text-xs font-medium text-[var(--menu-muted)]"),kt=classVarianceAuthority.cva("text-[var(--content-foreground)]"),$=classVarianceAuthority.cva("sr-only");var U=react.forwardRef(function({children:t,stepper:m,preview:d,helpText:l,className:x,"data-testid":r="wizard-layout"},i){return jsxRuntime.jsxs("div",{ref:i,className:z(ot(),x),"data-testid":r,children:[jsxRuntime.jsxs("div",{className:nt(),children:[m?jsxRuntime.jsx("nav",{className:st(),"aria-label":"Wizard steps","data-testid":`${r}-stepper-slot`,children:m}):null,jsxRuntime.jsxs("div",{className:dt(),children:[t,l?jsxRuntime.jsx("p",{className:pt(),children:l}):null]})]}),d?jsxRuntime.jsx("aside",{className:lt(),"aria-hidden":"true","data-testid":`${r}-preview`,children:d}):null]})});U.displayName="Wizard.Layout";var qt=classVarianceAuthority.cva("inline-flex justify-center min-h-[44px] min-w-[44px] focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[var(--ring)] focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:pointer-events-none disabled:opacity-50",{variants:{fullWidth:{true:"w-full",false:""},inVerticalGroup:{true:"items-stretch",false:"items-center"}},defaultVariants:{fullWidth:false,inVerticalGroup:false}}),Xt=classVarianceAuthority.cva("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background motion-safe:transition-transform motion-safe:duration-200 motion-safe:[transition-timing-function:cubic-bezier(0.34,1.56,0.64,1)] motion-reduce:transition-none [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 relative cursor-pointer",{variants:{variant:{default:"bg-[var(--primary-action)] text-[var(--primary-action-foreground)] shadow-md hover:bg-[var(--primary-action-hover)] hover:-translate-y-1",destructive:"bg-[var(--destructive-background)] text-[var(--destructive-foreground)] shadow-md hover:bg-[var(--destructive-background-hover,var(--destructive-background))] motion-safe:hover:btn-warn-shake",outline:"border border-[var(--input-border)] bg-[var(--page-background)] hover:bg-[var(--input-border)]",secondary:"bg-[var(--secondary)] text-[var(--secondary-foreground)] shadow-md hover:bg-[var(--secondary-hover,var(--secondary))]",ghost:"hover:bg-[var(--accent)] hover:text-[var(--accent-foreground)]",link:"text-[var(--text-link)] underline underline-offset-4 hover:bg-[var(--accent)] hover:text-[var(--text-link-hover)]"},fullWidth:{true:"w-full",false:""},visualSize:{default:"h-10 px-4 py-2",sm:"h-9 rounded-md px-3 text-xs",lg:"h-11 rounded-md px-8",icon:"h-10 w-10",dot:"h-5 w-5 rounded-full p-0 min-h-0 min-w-0"},paywall:{true:"!bg-[var(--paywall)] !text-[var(--paywall-foreground)] !shadow-md hover:!bg-[var(--paywall)]/90 !cursor-not-allowed !border-transparent",false:""}},defaultVariants:{variant:"default",visualSize:"default",paywall:false}});var Ot="data-[pressed]:scale-[0.97]";var Bt="data-[hovered]:shadow-md";var F="hc:data-[hovered]:outline hc:data-[hovered]:outline-2 hc:data-[hovered]:outline-foreground",Y="hc:data-[pressed]:outline hc:data-[pressed]:outline-2 hc:data-[pressed]:outline-offset-1 hc:data-[pressed]:outline-foreground";var te=react.createContext(null);te.displayName="ButtonGroupContext";function ee(){return react.useContext(te)}var ae=react.createContext(null);ae.displayName="ButtonGroupItemContext";function re(){return react.useContext(ae)}classVarianceAuthority.cva("inline-flex items-center gap-0",{variants:{orientation:{horizontal:"flex-row",vertical:"flex-col w-full"}},defaultVariants:{orientation:"horizontal"}});var ie=classVarianceAuthority.cva("",{variants:{orientation:{horizontal:"min-w-[44px]",vertical:"flex min-h-[44px]"},position:{first:"",middle:"",last:"",only:""}},compoundVariants:[{orientation:"horizontal",position:"first",className:"rounded-r-none border-r-0"},{orientation:"horizontal",position:"middle",className:"rounded-none border-r-0"},{orientation:"horizontal",position:"last",className:"rounded-l-none"},{orientation:"vertical",position:"first",className:"rounded-b-none border-b-0"},{orientation:"vertical",position:"middle",className:"rounded-none border-b-0"},{orientation:"vertical",position:"last",className:"rounded-t-none"}],defaultVariants:{orientation:"horizontal",position:"only"}});classVarianceAuthority.cva("bg-[var(--border)]",{variants:{orientation:{horizontal:"w-px h-6 mx-1",vertical:"h-px w-full my-1"}},defaultVariants:{orientation:"horizontal"}});var I=react.memo(react.forwardRef(({className:s,buttonVisualClassName:t,variant:m,size:d,visualSize:l,fullWidth:x,loading:r=false,loadingText:i="Loading...",shortcut:b,children:n,isDisabled:g,paywall:p=false,paywallRedirect:c,paywallDescription:o,onPress:u,...f},v)=>{let h=react.useId(),S=ee(),V=re(),R=m??S?.variant??"default",C=d??S?.size,A=g??S?.isDisabled??false,P=S?.orientation==="vertical",T=x||P,k=V?ie({orientation:S?.orientation??"horizontal",position:V.position}):"",L=l??C??"default";return process.env.NODE_ENV!=="production"&&(L==="dot"||L==="icon")&&!f["aria-label"]&&!n&&console.warn('[Button] visualSize="dot" or "icon" requires aria-label when no visible text is provided (WCAG 1.1.1)'),jsxRuntime.jsx(reactAriaComponents.Button,{ref:v,isDisabled:A||r||void 0,"aria-disabled":p?true:void 0,"aria-describedby":p?h:void 0,onPress:B=>{if(p){c&&window.open(c,"_blank","noopener,noreferrer");return}u?.(B);},className:z(qt({fullWidth:T,inVerticalGroup:P}),s),...f,children:B=>jsxRuntime.jsxs("span",{className:z(Xt({variant:R,visualSize:L,paywall:p,fullWidth:T}),k,t,Ot,Bt,F,Y),"data-pressed":B.isPressed||void 0,children:[r&&jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx(lucideReact.Loader2,{className:"motion-safe:animate-spin","aria-hidden":"true"}),jsxRuntime.jsx("span",{className:"sr-only","aria-live":"polite",children:i})]}),!r&&n,p&&jsxRuntime.jsx(lucideReact.Zap,{"data-testid":"zap-icon","aria-hidden":"true",className:"ml-1"}),p&&jsxRuntime.jsxs("span",{id:h,className:"sr-only",children:["Premium feature: ",o||"Upgrade required to access this feature"]}),B.isFocusVisible&&b&&jsxRuntime.jsx("kbd",{className:"ml-auto hidden text-xs opacity-60 lg:inline",children:b})]})})}));I.displayName="Button";var j=react.forwardRef(function({sectionLabel:t,sectionNumber:m,totalSections:d,allowClickOnCompleted:l=true,className:x,"aria-label":r,"data-testid":i="wizard-stepper"},b){let{currentStepIndex:n,steps:g,onStepChange:p,isLoading:c}=W();return jsxRuntime.jsxs("div",{ref:b,className:z(ct(),x),"aria-label":r,"data-testid":i,children:[t&&m!==void 0&&d!==void 0?jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsxs("p",{className:ut(),children:["Section ",m," of ",d]}),jsxRuntime.jsx("h2",{className:mt(),children:t})]}):null,jsxRuntime.jsx("ol",{className:ft(),children:g.map((o,u)=>{let f=u<n,v=u===n,h=f?"completed":v?"current":"upcoming",S=f&&l&&!c,V=u===g.length-1,R=vt({state:h}),C=jsxRuntime.jsx("span",{className:R,"aria-hidden":"true",children:f?jsxRuntime.jsx(lucideReact.Check,{className:"h-4 w-4"}):jsxRuntime.jsx("span",{children:u+1})});return jsxRuntime.jsx("li",{"data-testid":`${i}-item-${o.id}`,"aria-current":v?"step":void 0,children:jsxRuntime.jsxs("div",{className:xt(),children:[jsxRuntime.jsxs("div",{className:gt(),children:[S?jsxRuntime.jsx(I,{variant:"ghost",visualSize:"icon",buttonVisualClassName:"rounded-full","aria-label":`Go back to ${o.label}`,onPress:()=>p({index:u,id:o.id,label:o.label,reason:"jump"}),"data-testid":`${i}-button-${o.id}`,children:C}):jsxRuntime.jsx("span",{className:"flex h-11 w-11 items-center justify-center",children:C}),V?null:jsxRuntime.jsx("span",{className:zt({completed:f}),"aria-hidden":"true"})]}),jsxRuntime.jsxs("div",{className:bt(),children:[jsxRuntime.jsxs("span",{className:St(),children:[jsxRuntime.jsx("span",{className:ht({state:h}),children:o.label}),v?jsxRuntime.jsx("span",{className:wt(),children:"Current step"}):null]}),v?null:jsxRuntime.jsx("span",{className:"sr-only",children:f?"(completed)":"(upcoming)"})]})]})},o.id)})})]})});j.displayName="Wizard.Stepper";function Ee(s){if(!react.isValidElement(s))return false;let t=s.type;return typeof t=="string"?false:t?.displayName==="Wizard.Step"}var Z=react.forwardRef(function({children:t,className:m,"data-testid":d="wizard-content"},l){let{currentStepId:x,steps:r}=W(),i=react.Children.toArray(t).filter(Ee);if(process.env.NODE_ENV!=="production"){let n=i.map(o=>o.props.id),g=r.map(o=>o.id),p=g.filter(o=>!n.includes(o)),c=n.filter(o=>!g.includes(o));(p.length>0||c.length>0)&&console.warn("[Wizard] Wizard.Step children do not match `steps` descriptors. "+(p.length?`Missing steps: ${p.join(", ")}. `:"")+(c.length?`Unknown step ids: ${c.join(", ")}.`:""));}let b=i.find(n=>n.props.id===x)??null;return jsxRuntime.jsx("div",{ref:l,className:z(Lt(),m),"data-testid":d,children:b})});Z.displayName="Wizard.Content";var X=react.forwardRef(function({id:t,icon:m,children:d,className:l,"data-testid":x},r){let{steps:i,currentStepIndex:b,registerStepHeading:n}=W(),g=i.find(v=>v.id===t),p=g?.label??t,c=g?.description,o=react.useId(),u=react.useId(),f=x??`wizard-step-${t}`;return jsxRuntime.jsxs("section",{ref:r,className:z(Nt(),l),"aria-labelledby":o,"aria-describedby":c?u:void 0,"data-testid":f,"data-wizard-step-id":t,"data-wizard-step-index":b,children:[jsxRuntime.jsxs("div",{className:Wt(),children:[m?jsxRuntime.jsx("span",{className:Vt(),"aria-hidden":"true",children:m}):null,jsxRuntime.jsxs("div",{children:[jsxRuntime.jsx("h3",{id:o,ref:n,tabIndex:-1,className:yt(),children:p}),c?jsxRuntime.jsx("p",{id:u,className:Ct(),children:c}):null]})]}),jsxRuntime.jsx("div",{children:d})]})});X.displayName="Wizard.Step";var D={back:"Back",skip:"Skip for now",next:"Next",start:"Next",finish:"Finish"};function O(s,t){return typeof s=="function"?s(t):s}var J=react.forwardRef(function({labels:t,showSkip:m=false,onBack:d,onNext:l,onSkip:x,className:r,"data-testid":i="wizard-navigation"},b){let{currentStepIndex:n,currentStepId:g,totalSteps:p,steps:c,isLoading:o,onStepChange:u}=W(),f={index:n,total:p,id:g},v={back:O(t?.back??D.back,f),skip:O(t?.skip??D.skip,f),next:O(t?.next??D.next,f),start:O(t?.start??t?.next??D.start,f),finish:O(t?.finish??D.finish,f)},h=n===0,S=n===p-1,V=n===p-2,R=!h&&!S,C=!S,A=m&&!h&&!S&&!V,P=h?v.start:V?v.finish:v.next,T=()=>{let w=Math.max(0,n-1);u({index:w,id:c[w]?.id??"",label:c[w]?.label??"",reason:"back"}),d?.();},k=()=>{let w=Math.min(p-1,n+1);u({index:w,id:c[w]?.id??"",label:c[w]?.label??"",reason:"next"}),l?.();},L=()=>{let w=Math.min(p-1,n+1);u({index:w,id:c[w]?.id??"",label:c[w]?.label??"",reason:"skip"}),x?.();};return jsxRuntime.jsxs("div",{ref:b,className:z(Et(),r),"data-testid":i,children:[jsxRuntime.jsx("div",{className:Rt(),children:R?jsxRuntime.jsxs(I,{variant:"secondary",onPress:T,isDisabled:o,"data-testid":`${i}-back`,children:[jsxRuntime.jsx(lucideReact.ArrowLeft,{className:"mr-1 h-4 w-4 rtl:rotate-180","aria-hidden":"true"}),v.back]}):null}),jsxRuntime.jsxs("div",{className:Pt(),children:[A?jsxRuntime.jsx(I,{variant:"ghost",onPress:L,isDisabled:o,"data-testid":`${i}-skip`,children:v.skip}):null,C?jsxRuntime.jsxs(I,{variant:"default",onPress:k,isDisabled:o,loading:o,"data-testid":`${i}-next`,children:[P,V?null:jsxRuntime.jsx(lucideReact.ArrowRight,{className:"ml-1 h-4 w-4 rtl:rotate-180","aria-hidden":"true"})]}):null]})]})});J.displayName="Wizard.Navigation";var tt=react.forwardRef(function({className:t,"data-testid":m="wizard-mobile-progress"},d){let{currentStepIndex:l,steps:x,totalSteps:r}=W(),i=x[l]?.label,b=i?`Step ${l+1} of ${r}: ${i}`:`Step ${l+1} of ${r}`;return jsxRuntime.jsxs("div",{ref:d,className:z(Tt(),t),role:"progressbar","aria-label":"Wizard progress","aria-valuemin":1,"aria-valuemax":r,"aria-valuenow":l+1,"aria-valuetext":b,"data-testid":m,children:[jsxRuntime.jsx("div",{className:It(),children:x.map((n,g)=>{let p=g<l?"completed":g===l?"current":"upcoming";return jsxRuntime.jsx("span",{className:_t({state:p}),"aria-hidden":"true","data-testid":`${m}-dot-${n.id}`},n.id)})}),i?jsxRuntime.jsxs("p",{className:At(),"aria-hidden":"true","data-testid":`${m}-caption`,children:["Step ",l+1," of ",r," \xB7 ",jsxRuntime.jsx("span",{className:kt(),children:i})]}):null]})});tt.displayName="Wizard.MobileProgress";var Oe=(s,t)=>`Step ${s} of ${t}`,pe=react.forwardRef(function({children:t,currentStep:m,steps:d,onStepChange:l,isLoading:x=false,errors:r,announceTemplate:i=Oe,className:b,id:n,"aria-label":g,"aria-labelledby":p,"data-testid":c="wizard"},o){let u=Math.min(Math.max(m,0),Math.max(d.length-1,0)),f=d[u],v=f?.id??"",h=f?.label??"",[S,V]=react.useState("");react.useEffect(()=>{d.length!==0&&V(i(u+1,d.length,h));},[u,d.length,h,i]);let[R,C]=react.useState("");react.useEffect(()=>{if(!r||r.length===0){C("");return}C(r.join(". "));},[r]);let A=react.useRef(null),P=react.useRef(true),T=react.useCallback(L=>{A.current=L;},[]);react.useEffect(()=>{if(P.current){P.current=false;return}let L=requestAnimationFrame(()=>{A.current?.focus();});return ()=>cancelAnimationFrame(L)},[u]);let k=react.useMemo(()=>({currentStepIndex:u,currentStepId:v,steps:d,totalSteps:d.length,isLoading:x,errors:r??[],announceTemplate:i,onStepChange:l,registerStepHeading:T}),[u,v,d,x,r,i,l,T]);return jsxRuntime.jsx(et.Provider,{value:k,children:jsxRuntime.jsxs("div",{ref:o,id:n,className:z(it(),b),"aria-label":g,"aria-labelledby":p,"data-testid":c,"data-wizard-step":u,children:[t,jsxRuntime.jsx("div",{role:"status","aria-live":"polite","aria-atomic":"true",className:$(),"data-testid":`${c}-live-polite`,children:S}),jsxRuntime.jsx("div",{role:"alert","aria-live":"assertive","aria-atomic":"true",className:$(),"data-testid":`${c}-live-assertive`,children:R})]})})});pe.displayName="Wizard";var Be=Object.assign(pe,{Layout:U,Stepper:j,Content:Z,Step:X,Navigation:J,MobileProgress:tt});var E=zod.z.object({className:zod.z.string().optional(),children:zod.z.any().optional(),id:zod.z.string().optional(),"aria-label":zod.z.string().optional(),"aria-labelledby":zod.z.string().optional(),"aria-describedby":zod.z.string().optional(),"aria-live":zod.z.enum(["off","polite","assertive"]).optional(),"aria-hidden":zod.z.boolean().optional(),"data-testid":zod.z.string().optional()});var Ge=zod.z.enum(["next","back","skip","jump"]),le=zod.z.object({id:zod.z.string().min(1),label:zod.z.string().min(1),description:zod.z.string().optional()}),$e=E.extend({children:zod.z.custom(),currentStep:zod.z.number().int().min(0),steps:zod.z.array(le).min(1),onStepChange:zod.z.custom(),isLoading:zod.z.boolean().optional().default(false),errors:zod.z.array(zod.z.string()).optional(),announceTemplate:zod.z.custom().optional()}),Ue=E.extend({children:zod.z.custom(),preview:zod.z.custom().optional(),helpText:zod.z.string().optional()}),Fe=E.extend({sectionLabel:zod.z.string().optional(),sectionNumber:zod.z.number().int().min(1).optional(),totalSections:zod.z.number().int().min(1).optional(),allowClickOnCompleted:zod.z.boolean().optional().default(true)}),Ye=E.extend({id:zod.z.string().min(1),children:zod.z.custom(),icon:zod.z.custom().optional()}),je=E.extend({children:zod.z.custom()}),Ze=E.extend({labels:zod.z.custom().optional(),showSkip:zod.z.boolean().optional().default(false),onBack:zod.z.custom().optional(),onNext:zod.z.custom().optional(),onSkip:zod.z.custom().optional()}),qe=E.extend({});exports.Wizard=Be;exports.WizardChangeReasonSchema=Ge;exports.WizardContent=Z;exports.WizardContentPropsSchema=je;exports.WizardLayout=U;exports.WizardLayoutPropsSchema=Ue;exports.WizardMobileProgress=tt;exports.WizardMobileProgressPropsSchema=qe;exports.WizardNavigation=J;exports.WizardNavigationPropsSchema=Ze;exports.WizardPropsSchema=$e;exports.WizardStep=X;exports.WizardStepDescriptorSchema=le;exports.WizardStepPropsSchema=Ye;exports.WizardStepper=j;exports.WizardStepperPropsSchema=Fe;exports.useWizardContext=W;exports.wizardContentCardVariants=Lt;exports.wizardLayoutContentSlotVariants=dt;exports.wizardLayoutHelpTextVariants=pt;exports.wizardLayoutMainVariants=nt;exports.wizardLayoutPreviewVariants=lt;exports.wizardLayoutStepperSlotVariants=st;exports.wizardLayoutVariants=ot;exports.wizardLiveRegionVariants=$;exports.wizardMobileProgressCaptionTitleVariants=kt;exports.wizardMobileProgressCaptionVariants=At;exports.wizardMobileProgressContainerVariants=Tt;exports.wizardMobileProgressDotRowVariants=It;exports.wizardMobileProgressDotVariants=_t;exports.wizardNavigationLeftVariants=Rt;exports.wizardNavigationRightVariants=Pt;exports.wizardNavigationVariants=Et;exports.wizardRootVariants=it;exports.wizardStepContainerVariants=Nt;exports.wizardStepDescriptionVariants=Ct;exports.wizardStepHeaderRowVariants=Wt;exports.wizardStepHeadingVariants=yt;exports.wizardStepIconVariants=Vt;exports.wizardStepperCircleVariants=vt;exports.wizardStepperConnectorVariants=zt;exports.wizardStepperContainerVariants=ct;exports.wizardStepperCurrentSubtitleVariants=wt;exports.wizardStepperIndicatorColumnVariants=gt;exports.wizardStepperItemVariants=xt;exports.wizardStepperLabelColumnVariants=bt;exports.wizardStepperLabelTextVariants=ht;exports.wizardStepperLabelVariants=St;exports.wizardStepperListVariants=ft;exports.wizardStepperSectionHeadingVariants=mt;exports.wizardStepperSectionLabelVariants=ut;//# sourceMappingURL=index.js.map
3
+ //# sourceMappingURL=index.js.map