@qualcomm-ui/react 1.17.1 → 1.18.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 (36) hide show
  1. package/dist/stepper/index.d.ts +84 -0
  2. package/dist/stepper/index.d.ts.map +1 -0
  3. package/dist/stepper/index.js +3 -0
  4. package/dist/stepper/index.js.map +7 -0
  5. package/dist/stepper/qds-stepper-context.d.ts +3 -0
  6. package/dist/stepper/qds-stepper-context.d.ts.map +1 -0
  7. package/dist/stepper/stepper-completed-content.d.ts +9 -0
  8. package/dist/stepper/stepper-completed-content.d.ts.map +1 -0
  9. package/dist/stepper/stepper-content.d.ts +9 -0
  10. package/dist/stepper/stepper-content.d.ts.map +1 -0
  11. package/dist/stepper/stepper-context.d.ts +9 -0
  12. package/dist/stepper/stepper-context.d.ts.map +1 -0
  13. package/dist/stepper/stepper-hint.d.ts +9 -0
  14. package/dist/stepper/stepper-hint.d.ts.map +1 -0
  15. package/dist/stepper/stepper-indicator-icon.d.ts +6 -0
  16. package/dist/stepper/stepper-indicator-icon.d.ts.map +1 -0
  17. package/dist/stepper/stepper-indicator.d.ts +32 -0
  18. package/dist/stepper/stepper-indicator.d.ts.map +1 -0
  19. package/dist/stepper/stepper-item.d.ts +9 -0
  20. package/dist/stepper/stepper-item.d.ts.map +1 -0
  21. package/dist/stepper/stepper-label.d.ts +9 -0
  22. package/dist/stepper/stepper-label.d.ts.map +1 -0
  23. package/dist/stepper/stepper-list.d.ts +9 -0
  24. package/dist/stepper/stepper-list.d.ts.map +1 -0
  25. package/dist/stepper/stepper-next-trigger.d.ts +9 -0
  26. package/dist/stepper/stepper-next-trigger.d.ts.map +1 -0
  27. package/dist/stepper/stepper-prev-trigger.d.ts +9 -0
  28. package/dist/stepper/stepper-prev-trigger.d.ts.map +1 -0
  29. package/dist/stepper/stepper-root.d.ts +10 -0
  30. package/dist/stepper/stepper-root.d.ts.map +1 -0
  31. package/dist/stepper/stepper-separator.d.ts +9 -0
  32. package/dist/stepper/stepper-separator.d.ts.map +1 -0
  33. package/dist/stepper/stepper-trigger.d.ts +9 -0
  34. package/dist/stepper/stepper-trigger.d.ts.map +1 -0
  35. package/dist/tsbuildinfo +1 -1
  36. package/package.json +4 -4
@@ -0,0 +1,84 @@
1
+ import { StepperCompletedContent, type StepperCompletedContentProps } from "./stepper-completed-content";
2
+ import { StepperContent, type StepperContentProps } from "./stepper-content";
3
+ import { StepperContext, type StepperContextProps } from "./stepper-context";
4
+ import { StepperHint, type StepperHintProps } from "./stepper-hint";
5
+ import { StepperIndicator, type StepperIndicatorProps } from "./stepper-indicator";
6
+ import { StepperIndicatorIcon, type StepperIndicatorIconProps } from "./stepper-indicator-icon";
7
+ import { StepperItem, type StepperItemProps } from "./stepper-item";
8
+ import { StepperLabel, type StepperLabelProps } from "./stepper-label";
9
+ import { StepperList, type StepperListProps } from "./stepper-list";
10
+ import { StepperNextTrigger, type StepperNextTriggerProps } from "./stepper-next-trigger";
11
+ import { StepperPrevTrigger, type StepperPrevTriggerProps } from "./stepper-prev-trigger";
12
+ import { StepperRoot, type StepperRootProps } from "./stepper-root";
13
+ import { StepperSeparator, type StepperSeparatorProps } from "./stepper-separator";
14
+ import { StepperTrigger, type StepperTriggerProps } from "./stepper-trigger";
15
+ export * from "./qds-stepper-context";
16
+ export type { StepperPrevTriggerProps, StepperIndicatorProps, StepperCompletedContentProps, StepperRootProps, StepperTriggerProps, StepperListProps, StepperNextTriggerProps, StepperIndicatorIconProps, StepperHintProps, StepperLabelProps, StepperItemProps, StepperSeparatorProps, StepperContextProps, StepperContentProps, };
17
+ type StepperComponent = {
18
+ /**
19
+ * Content area displayed when all steps are completed. Renders a `<div>` element
20
+ * by default.
21
+ */
22
+ CompletedContent: typeof StepperCompletedContent;
23
+ /**
24
+ * Content area for a step. Renders a `<div>` element by default.
25
+ */
26
+ Content: typeof StepperContent;
27
+ /**
28
+ * Render prop that provides the current stepper API context.
29
+ */
30
+ Context: typeof StepperContext;
31
+ /**
32
+ * Displays a step subtitle or hint. Renders a `<span>` element by default.
33
+ */
34
+ Hint: typeof StepperHint;
35
+ /**
36
+ * Visual indicator for the step state. Renders a `<div>` element by default.
37
+ *
38
+ * By default, displays the step number or icon. When a step is completed, it
39
+ * shows a checkmark icon. When a step is invalid, it shows an error icon.
40
+ *
41
+ * Rendering order:
42
+ *
43
+ * - errorIcon (when invalid)
44
+ * - children (current step)
45
+ * - completedIcon (when complete)
46
+ * - children (not current step)
47
+ */
48
+ Indicator: typeof StepperIndicator;
49
+ IndicatorIcon: typeof StepperIndicatorIcon;
50
+ /**
51
+ * Wrapper for a single step. Renders a `<div>` element by default.
52
+ */
53
+ Item: typeof StepperItem;
54
+ /**
55
+ * Displays the step title. Renders a `<span>` element by default.
56
+ */
57
+ Label: typeof StepperLabel;
58
+ /**
59
+ * Container for the step items. Renders a `<div>` element by default.
60
+ */
61
+ List: typeof StepperList;
62
+ /**
63
+ * Navigates to the next step. Renders a `<button>` element by default.
64
+ */
65
+ NextTrigger: typeof StepperNextTrigger;
66
+ /**
67
+ * Navigates to the previous step. Renders a `<button>` element by default.
68
+ */
69
+ PrevTrigger: typeof StepperPrevTrigger;
70
+ /**
71
+ * Groups all parts of the stepper. Renders a `<div>` element by default.
72
+ */
73
+ Root: typeof StepperRoot;
74
+ /**
75
+ * Visual connector between steps. Renders a `<div>` element by default.
76
+ */
77
+ Separator: typeof StepperSeparator;
78
+ /**
79
+ * Used to make each step item clickable. Renders a `<button>` element by default.
80
+ */
81
+ Trigger: typeof StepperTrigger;
82
+ };
83
+ export declare const Stepper: StepperComponent;
84
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/stepper/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,KAAK,4BAA4B,EAClC,MAAM,6BAA6B,CAAA;AACpC,OAAO,EAAC,cAAc,EAAE,KAAK,mBAAmB,EAAC,MAAM,mBAAmB,CAAA;AAC1E,OAAO,EAAC,cAAc,EAAE,KAAK,mBAAmB,EAAC,MAAM,mBAAmB,CAAA;AAC1E,OAAO,EAAC,WAAW,EAAE,KAAK,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AACjE,OAAO,EAAC,gBAAgB,EAAE,KAAK,qBAAqB,EAAC,MAAM,qBAAqB,CAAA;AAChF,OAAO,EACL,oBAAoB,EACpB,KAAK,yBAAyB,EAC/B,MAAM,0BAA0B,CAAA;AACjC,OAAO,EAAC,WAAW,EAAE,KAAK,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AACjE,OAAO,EAAC,YAAY,EAAE,KAAK,iBAAiB,EAAC,MAAM,iBAAiB,CAAA;AACpE,OAAO,EAAC,WAAW,EAAE,KAAK,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AACjE,OAAO,EACL,kBAAkB,EAClB,KAAK,uBAAuB,EAC7B,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EACL,kBAAkB,EAClB,KAAK,uBAAuB,EAC7B,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EAAC,WAAW,EAAE,KAAK,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AACjE,OAAO,EAAC,gBAAgB,EAAE,KAAK,qBAAqB,EAAC,MAAM,qBAAqB,CAAA;AAChF,OAAO,EAAC,cAAc,EAAE,KAAK,mBAAmB,EAAC,MAAM,mBAAmB,CAAA;AAE1E,cAAc,uBAAuB,CAAA;AACrC,YAAY,EACV,uBAAuB,EACvB,qBAAqB,EACrB,4BAA4B,EAC5B,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,EAChB,uBAAuB,EACvB,yBAAyB,EACzB,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EAChB,qBAAqB,EACrB,mBAAmB,EACnB,mBAAmB,GACpB,CAAA;AAED,KAAK,gBAAgB,GAAG;IACtB;;;OAGG;IACH,gBAAgB,EAAE,OAAO,uBAAuB,CAAA;IAChD;;OAEG;IACH,OAAO,EAAE,OAAO,cAAc,CAAA;IAC9B;;OAEG;IACH,OAAO,EAAE,OAAO,cAAc,CAAA;IAC9B;;OAEG;IACH,IAAI,EAAE,OAAO,WAAW,CAAA;IACxB;;;;;;;;;;;;OAYG;IACH,SAAS,EAAE,OAAO,gBAAgB,CAAA;IAClC,aAAa,EAAE,OAAO,oBAAoB,CAAA;IAC1C;;OAEG;IACH,IAAI,EAAE,OAAO,WAAW,CAAA;IACxB;;OAEG;IACH,KAAK,EAAE,OAAO,YAAY,CAAA;IAC1B;;OAEG;IACH,IAAI,EAAE,OAAO,WAAW,CAAA;IACxB;;OAEG;IACH,WAAW,EAAE,OAAO,kBAAkB,CAAA;IACtC;;OAEG;IACH,WAAW,EAAE,OAAO,kBAAkB,CAAA;IACtC;;OAEG;IACH,IAAI,EAAE,OAAO,WAAW,CAAA;IACxB;;OAEG;IACH,SAAS,EAAE,OAAO,gBAAgB,CAAA;IAClC;;OAEG;IACH,OAAO,EAAE,OAAO,cAAc,CAAA;CAC/B,CAAA;AAED,eAAO,MAAM,OAAO,EAAE,gBAerB,CAAA"}
@@ -0,0 +1,3 @@
1
+ "use client";
2
+ import{c as _c}from"react/compiler-runtime";import{jsx}from"react/jsx-runtime";import{CoreStepper}from"@qualcomm-ui/react-core/stepper";import{mergeProps}from"@qualcomm-ui/utils/merge-props";import{createGuardedContext}from"@qualcomm-ui/react-core/context";var[QdsStepperContextProvider,useQdsStepperContext]=createGuardedContext({hookName:"useQdsStepperContext",providerName:"<QdsStepperContextProvider>",strict:!0});function StepperCompletedContent(props){let $=_c(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps(qdsContext.getCompletedContentBindings(),props);t0=jsx(CoreStepper.CompletedContent,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{c as _c2}from"react/compiler-runtime";import{jsx as jsx2}from"react/jsx-runtime";import{CoreStepper as CoreStepper2}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps2}from"@qualcomm-ui/utils/merge-props";function StepperContent(props){let $=_c2(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps2(qdsContext.getContentBindings(),props);t0=jsx2(CoreStepper2.Content,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{jsx as jsx3}from"react/jsx-runtime";import{CoreStepper as CoreStepper3}from"@qualcomm-ui/react-core/stepper";function StepperContext({children}){return jsx3(CoreStepper3.Context,{children})}import{c as _c3}from"react/compiler-runtime";import{jsx as jsx4}from"react/jsx-runtime";import{CoreStepper as CoreStepper4}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps3}from"@qualcomm-ui/utils/merge-props";function StepperHint(props){let $=_c3(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps3(qdsContext.getHintBindings(),props);t0=jsx4(CoreStepper4.Hint,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{jsx as jsx5}from"react/jsx-runtime";import{Check,createLucideIcon}from"lucide-react";import{StepperIndicatorAlert}from"@qualcomm-ui/qds-core/stepper";import{IconOrNode}from"@qualcomm-ui/react/icon";import{CoreStepper as CoreStepper5,useStepperContext,useStepperItemContext}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps4}from"@qualcomm-ui/utils/merge-props";var AlertIcon=createLucideIcon("stepper-indicator-alert",StepperIndicatorAlert);function StepperIndicator(t0){let{children,completedIcon:t1,errorIcon:t2,...props}=t0,completedIcon=t1===void 0?Check:t1,errorIcon=t2===void 0?AlertIcon:t2,qdsContext=useQdsStepperContext(),stepperContext=useStepperContext(),itemContext=useStepperItemContext(),itemState=stepperContext.getItemState(itemContext),mergedProps=mergeProps4(qdsContext.getIndicatorBindings(),props);return jsx5(CoreStepper5.Indicator,{...mergedProps,children:itemState.current?jsx5("span",{children}):itemState.completed?jsx5(IconOrNode,{icon:completedIcon}):itemState.invalid?jsx5(IconOrNode,{icon:errorIcon}):jsx5("span",{children})})}import{c as _c4}from"react/compiler-runtime";import{jsx as jsx6}from"react/jsx-runtime";import{IconOrNode as IconOrNode2}from"@qualcomm-ui/react/icon";import{mergeProps as mergeProps5}from"@qualcomm-ui/utils/merge-props";function StepperIndicatorIcon(props){let $=_c4(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps5(qdsContext.getIndicatorIconBindings(),props);t0=jsx6(IconOrNode2,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{c as _c5}from"react/compiler-runtime";import{jsx as jsx7}from"react/jsx-runtime";import{CoreStepper as CoreStepper6}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps6}from"@qualcomm-ui/utils/merge-props";function StepperItem(props){let $=_c5(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps6(qdsContext.getItemBindings(),props);t0=jsx7(CoreStepper6.Item,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{c as _c6}from"react/compiler-runtime";import{jsx as jsx8}from"react/jsx-runtime";import{CoreStepper as CoreStepper7}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps7}from"@qualcomm-ui/utils/merge-props";function StepperLabel(props){let $=_c6(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps7(qdsContext.getLabelBindings(),props);t0=jsx8(CoreStepper7.Label,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{c as _c7}from"react/compiler-runtime";import{jsx as jsx9}from"react/jsx-runtime";import{CoreStepper as CoreStepper8}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps8}from"@qualcomm-ui/utils/merge-props";function StepperList(props){let $=_c7(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps8(qdsContext.getListBindings(),props);t0=jsx9(CoreStepper8.List,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{c as _c8}from"react/compiler-runtime";import{jsx as jsx10}from"react/jsx-runtime";import{CoreStepper as CoreStepper9}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps9}from"@qualcomm-ui/utils/merge-props";function StepperNextTrigger(props){let $=_c8(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps9(qdsContext.getNextTriggerBindings(),props);t0=jsx10(CoreStepper9.NextTrigger,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{c as _c9}from"react/compiler-runtime";import{jsx as jsx11}from"react/jsx-runtime";import{CoreStepper as CoreStepper10}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps10}from"@qualcomm-ui/utils/merge-props";function StepperPrevTrigger(props){let $=_c9(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps10(qdsContext.getPrevTriggerBindings(),props);t0=jsx11(CoreStepper10.PrevTrigger,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{c as _c10}from"react/compiler-runtime";import{jsx as jsx12}from"react/jsx-runtime";import"react";import{createQdsStepperApi}from"@qualcomm-ui/qds-core/stepper";import{normalizeProps}from"@qualcomm-ui/react-core/machine";import{CoreStepper as CoreStepper11}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps11}from"@qualcomm-ui/utils/merge-props";function StepperRoot(t0){let $=_c10(4),t1;if($[0]!==t0){let{size,...props}=t0,t2;$[2]!==size?(t2=createQdsStepperApi({size},normalizeProps),$[2]=size,$[3]=t2):t2=$[3];let qdsContext=t2,mergedProps=mergeProps11(qdsContext.getRootBindings(),props);t1=jsx12(QdsStepperContextProvider,{value:qdsContext,children:jsx12(CoreStepper11.Root,{...mergedProps})}),$[0]=t0,$[1]=t1}else t1=$[1];return t1}import{c as _c11}from"react/compiler-runtime";import{jsx as jsx13}from"react/jsx-runtime";import{CoreStepper as CoreStepper12}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps12}from"@qualcomm-ui/utils/merge-props";function StepperSeparator(props){let $=_c11(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps12(qdsContext.getSeparatorBindings(),props);t0=jsx13(CoreStepper12.Separator,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}import{c as _c12}from"react/compiler-runtime";import{jsx as jsx14}from"react/jsx-runtime";import{CoreStepper as CoreStepper13}from"@qualcomm-ui/react-core/stepper";import{mergeProps as mergeProps13}from"@qualcomm-ui/utils/merge-props";function StepperTrigger(props){let $=_c12(3),qdsContext=useQdsStepperContext(),t0;if($[0]!==props||$[1]!==qdsContext){let mergedProps=mergeProps13(qdsContext.getTriggerBindings(),props);t0=jsx14(CoreStepper13.Trigger,{...mergedProps}),$[0]=props,$[1]=qdsContext,$[2]=t0}else t0=$[2];return t0}var Stepper={CompletedContent:StepperCompletedContent,Content:StepperContent,Context:StepperContext,Hint:StepperHint,Indicator:StepperIndicator,IndicatorIcon:StepperIndicatorIcon,Item:StepperItem,Label:StepperLabel,List:StepperList,NextTrigger:StepperNextTrigger,PrevTrigger:StepperPrevTrigger,Root:StepperRoot,Separator:StepperSeparator,Trigger:StepperTrigger};export{QdsStepperContextProvider,Stepper,useQdsStepperContext};
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/stepper/stepper-completed-content.tsx", "../../src/stepper/qds-stepper-context.ts", "../../src/stepper/stepper-content.tsx", "../../src/stepper/stepper-context.tsx", "../../src/stepper/stepper-hint.tsx", "../../src/stepper/stepper-indicator.tsx", "../../src/stepper/stepper-indicator-icon.tsx", "../../src/stepper/stepper-item.tsx", "../../src/stepper/stepper-label.tsx", "../../src/stepper/stepper-list.tsx", "../../src/stepper/stepper-next-trigger.tsx", "../../src/stepper/stepper-prev-trigger.tsx", "../../src/stepper/stepper-root.tsx", "../../src/stepper/stepper-separator.tsx", "../../src/stepper/stepper-trigger.tsx", "../../src/stepper/index.ts"],
4
+ "sourcesContent": ["import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperCompletedContent(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getCompletedContentBindings(), props);\n t0 = jsx(CoreStepper.CompletedContent, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { createGuardedContext } from \"@qualcomm-ui/react-core/context\";\nexport const [QdsStepperContextProvider, useQdsStepperContext] = createGuardedContext({\n hookName: \"useQdsStepperContext\",\n providerName: \"<QdsStepperContextProvider>\",\n strict: true\n});", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperContent(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getContentBindings(), props);\n t0 = jsx(CoreStepper.Content, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nexport function StepperContext({\n children\n}) {\n return /* @__PURE__ */jsx(CoreStepper.Context, {\n children\n });\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperHint(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getHintBindings(), props);\n t0 = jsx(CoreStepper.Hint, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { jsx } from \"react/jsx-runtime\";\nimport { Check, createLucideIcon } from \"lucide-react\";\nimport { StepperIndicatorAlert } from \"@qualcomm-ui/qds-core/stepper\";\nimport { IconOrNode } from \"@qualcomm-ui/react/icon\";\nimport { CoreStepper, useStepperContext, useStepperItemContext } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nconst AlertIcon = createLucideIcon(\"stepper-indicator-alert\", StepperIndicatorAlert);\nexport function StepperIndicator(t0) {\n const {\n children,\n completedIcon: t1,\n errorIcon: t2,\n ...props\n } = t0;\n const completedIcon = t1 === undefined ? Check : t1;\n const errorIcon = t2 === undefined ? AlertIcon : t2;\n const qdsContext = useQdsStepperContext();\n const stepperContext = useStepperContext();\n const itemContext = useStepperItemContext();\n const itemState = stepperContext.getItemState(itemContext);\n const mergedProps = mergeProps(qdsContext.getIndicatorBindings(), props);\n return jsx(CoreStepper.Indicator, {\n ...mergedProps,\n children: itemState.current ? jsx(\"span\", {\n children\n }) : itemState.completed ? jsx(IconOrNode, {\n icon: completedIcon\n }) : itemState.invalid ? jsx(IconOrNode, {\n icon: errorIcon\n }) : jsx(\"span\", {\n children\n })\n });\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { IconOrNode } from \"@qualcomm-ui/react/icon\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperIndicatorIcon(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getIndicatorIconBindings(), props);\n t0 = jsx(IconOrNode, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperItem(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getItemBindings(), props);\n t0 = jsx(CoreStepper.Item, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperLabel(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getLabelBindings(), props);\n t0 = jsx(CoreStepper.Label, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperList(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getListBindings(), props);\n t0 = jsx(CoreStepper.List, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperNextTrigger(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getNextTriggerBindings(), props);\n t0 = jsx(CoreStepper.NextTrigger, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperPrevTrigger(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getPrevTriggerBindings(), props);\n t0 = jsx(CoreStepper.PrevTrigger, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { useMemo } from \"react\";\nimport { createQdsStepperApi } from \"@qualcomm-ui/qds-core/stepper\";\nimport { normalizeProps } from \"@qualcomm-ui/react-core/machine\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { QdsStepperContextProvider } from \"./qds-stepper-context\";\nexport function StepperRoot(t0) {\n const $ = _c(4);\n let t1;\n if ($[0] !== t0) {\n const {\n size,\n ...props\n } = t0;\n let t2;\n if ($[2] !== size) {\n t2 = createQdsStepperApi({\n size\n }, normalizeProps);\n $[2] = size;\n $[3] = t2;\n } else {\n t2 = $[3];\n }\n const qdsContext = t2;\n const mergedProps = mergeProps(qdsContext.getRootBindings(), props);\n t1 = jsx(QdsStepperContextProvider, {\n value: qdsContext,\n children: jsx(CoreStepper.Root, {\n ...mergedProps\n })\n });\n $[0] = t0;\n $[1] = t1;\n } else {\n t1 = $[1];\n }\n return t1;\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperSeparator(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getSeparatorBindings(), props);\n t0 = jsx(CoreStepper.Separator, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { c as _c } from \"react/compiler-runtime\";\nimport { jsx } from \"react/jsx-runtime\";\nimport { CoreStepper } from \"@qualcomm-ui/react-core/stepper\";\nimport { mergeProps } from \"@qualcomm-ui/utils/merge-props\";\nimport { useQdsStepperContext } from \"./qds-stepper-context\";\nexport function StepperTrigger(props) {\n const $ = _c(3);\n const qdsContext = useQdsStepperContext();\n let t0;\n if ($[0] !== props || $[1] !== qdsContext) {\n const mergedProps = mergeProps(qdsContext.getTriggerBindings(), props);\n t0 = jsx(CoreStepper.Trigger, {\n ...mergedProps\n });\n $[0] = props;\n $[1] = qdsContext;\n $[2] = t0;\n } else {\n t0 = $[2];\n }\n return t0;\n}", "import { StepperCompletedContent } from \"./stepper-completed-content\";\nimport { StepperContent } from \"./stepper-content\";\nimport { StepperContext } from \"./stepper-context\";\nimport { StepperHint } from \"./stepper-hint\";\nimport { StepperIndicator } from \"./stepper-indicator\";\nimport { StepperIndicatorIcon } from \"./stepper-indicator-icon\";\nimport { StepperItem } from \"./stepper-item\";\nimport { StepperLabel } from \"./stepper-label\";\nimport { StepperList } from \"./stepper-list\";\nimport { StepperNextTrigger } from \"./stepper-next-trigger\";\nimport { StepperPrevTrigger } from \"./stepper-prev-trigger\";\nimport { StepperRoot } from \"./stepper-root\";\nimport { StepperSeparator } from \"./stepper-separator\";\nimport { StepperTrigger } from \"./stepper-trigger\";\nexport * from \"./qds-stepper-context\";\nexport const Stepper = {\n CompletedContent: StepperCompletedContent,\n Content: StepperContent,\n Context: StepperContext,\n Hint: StepperHint,\n Indicator: StepperIndicator,\n IndicatorIcon: StepperIndicatorIcon,\n Item: StepperItem,\n Label: StepperLabel,\n List: StepperList,\n NextTrigger: StepperNextTrigger,\n PrevTrigger: StepperPrevTrigger,\n Root: StepperRoot,\n Separator: StepperSeparator,\n Trigger: StepperTrigger\n};"],
5
+ "mappings": "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",
6
+ "names": ["_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "jsx", "CoreStepper", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "jsx", "CoreStepper", "mergeProps", "mergeProps", "jsx", "CoreStepper", "_c", "jsx", "IconOrNode", "mergeProps", "_c", "mergeProps", "jsx", "IconOrNode", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper", "_c", "jsx", "CoreStepper", "mergeProps", "_c", "mergeProps", "jsx", "CoreStepper"]
7
+ }
@@ -0,0 +1,3 @@
1
+ import type { QdsStepperApi } from "@qualcomm-ui/qds-core/stepper";
2
+ export declare const QdsStepperContextProvider: import("react").Provider<QdsStepperApi>, useQdsStepperContext: (requireContext?: boolean) => QdsStepperApi;
3
+ //# sourceMappingURL=qds-stepper-context.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"qds-stepper-context.d.ts","sourceRoot":"","sources":["../../src/stepper/qds-stepper-context.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,+BAA+B,CAAA;AAGhE,eAAO,MAAO,yBAAyB,2CAAE,oBAAoB,6CAKzD,CAAA"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperCompletedContentProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperCompletedContentProps extends CoreStepperCompletedContentProps {
4
+ }
5
+ /**
6
+ * Content area displayed when all steps are completed. Renders a `<div>` element by default.
7
+ */
8
+ export declare function StepperCompletedContent(props: StepperCompletedContentProps): ReactElement;
9
+ //# sourceMappingURL=stepper-completed-content.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-completed-content.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-completed-content.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,gCAAgC,EACtC,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,4BACf,SAAQ,gCAAgC;CAAG;AAE7C;;GAEG;AACH,wBAAgB,uBAAuB,CACrC,KAAK,EAAE,4BAA4B,GAClC,YAAY,CAQd"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperContentProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperContentProps extends CoreStepperContentProps {
4
+ }
5
+ /**
6
+ * Content area for a step. Renders a `<div>` element by default.
7
+ */
8
+ export declare function StepperContent(props: StepperContentProps): ReactElement;
9
+ //# sourceMappingURL=stepper-content.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-content.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-content.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,mBAAoB,SAAQ,uBAAuB;CAAG;AAEvE;;GAEG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,GAAG,YAAY,CAKvE"}
@@ -0,0 +1,9 @@
1
+ import type { ReactNode } from "react";
2
+ import { type CoreStepperContextProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperContextProps extends CoreStepperContextProps {
4
+ }
5
+ /**
6
+ * Render prop that provides the current stepper API context.
7
+ */
8
+ export declare function StepperContext({ children }: StepperContextProps): ReactNode;
9
+ //# sourceMappingURL=stepper-context.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-context.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-context.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,OAAO,CAAA;AAEpC,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,iCAAiC,CAAA;AAExC,MAAM,WAAW,mBAAoB,SAAQ,uBAAuB;CAAG;AAEvE;;GAEG;AACH,wBAAgB,cAAc,CAAC,EAAC,QAAQ,EAAC,EAAE,mBAAmB,GAAG,SAAS,CAEzE"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperHintProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperHintProps extends CoreStepperHintProps {
4
+ }
5
+ /**
6
+ * Displays a step subtitle or hint. Renders a `<span>` element by default.
7
+ */
8
+ export declare function StepperHint(props: StepperHintProps): ReactElement;
9
+ //# sourceMappingURL=stepper-hint.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-hint.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-hint.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,oBAAoB,EAC1B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,gBAAiB,SAAQ,oBAAoB;CAAG;AAEjE;;GAEG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,GAAG,YAAY,CAKjE"}
@@ -0,0 +1,6 @@
1
+ import type { ReactElement } from "react";
2
+ import { type IconOrNodeProps } from "@qualcomm-ui/react/icon";
3
+ export interface StepperIndicatorIconProps extends Omit<IconOrNodeProps, "size"> {
4
+ }
5
+ export declare function StepperIndicatorIcon(props: StepperIndicatorIconProps): ReactElement;
6
+ //# sourceMappingURL=stepper-indicator-icon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-indicator-icon.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-indicator-icon.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAAa,KAAK,eAAe,EAAC,MAAM,yBAAyB,CAAA;AAKxE,MAAM,WAAW,yBACf,SAAQ,IAAI,CAAC,eAAe,EAAE,MAAM,CAAC;CAAG;AAE1C,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,yBAAyB,GAC/B,YAAY,CAKd"}
@@ -0,0 +1,32 @@
1
+ import type { ReactElement } from "react";
2
+ import type { LucideIconOrElement } from "@qualcomm-ui/react-core/lucide";
3
+ import { type CoreStepperIndicatorProps } from "@qualcomm-ui/react-core/stepper";
4
+ export interface StepperIndicatorProps extends CoreStepperIndicatorProps {
5
+ /**
6
+ * Icon to display when the step is completed.
7
+ *
8
+ * @default Check
9
+ */
10
+ completedIcon?: LucideIconOrElement;
11
+ /**
12
+ * Icon to display when the step is in an error state.
13
+ *
14
+ * @default StepperIndicatorAlert
15
+ */
16
+ errorIcon?: LucideIconOrElement;
17
+ }
18
+ /**
19
+ * Visual indicator for the step state. Renders a `<div>` element by default.
20
+ *
21
+ * By default, displays the step number or icon. When a step is completed, it shows a
22
+ * checkmark icon. When a step is invalid, it shows an error icon.
23
+ *
24
+ * Rendering order:
25
+ *
26
+ * - errorIcon (when invalid)
27
+ * - children (current step)
28
+ * - completedIcon (when complete)
29
+ * - children (not current step)
30
+ */
31
+ export declare function StepperIndicator({ children, completedIcon, errorIcon, ...props }: StepperIndicatorProps): ReactElement;
32
+ //# sourceMappingURL=stepper-indicator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-indicator.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-indicator.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAMvC,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gCAAgC,CAAA;AACvE,OAAO,EAEL,KAAK,yBAAyB,EAG/B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,qBAAsB,SAAQ,yBAAyB;IACtE;;;;OAIG;IACH,aAAa,CAAC,EAAE,mBAAmB,CAAA;IAEnC;;;;OAIG;IACH,SAAS,CAAC,EAAE,mBAAmB,CAAA;CAChC;AAOD;;;;;;;;;;;;GAYG;AACH,wBAAgB,gBAAgB,CAAC,EAC/B,QAAQ,EACR,aAAqB,EACrB,SAAqB,EACrB,GAAG,KAAK,EACT,EAAE,qBAAqB,GAAG,YAAY,CAoBtC"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperItemProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperItemProps extends CoreStepperItemProps {
4
+ }
5
+ /**
6
+ * Wrapper for a single step. Renders a `<div>` element by default.
7
+ */
8
+ export declare function StepperItem(props: StepperItemProps): ReactElement;
9
+ //# sourceMappingURL=stepper-item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-item.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-item.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,oBAAoB,EAC1B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,gBAAiB,SAAQ,oBAAoB;CAAG;AAEjE;;GAEG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,GAAG,YAAY,CAKjE"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperLabelProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperLabelProps extends CoreStepperLabelProps {
4
+ }
5
+ /**
6
+ * Displays the step title. Renders a `<span>` element by default.
7
+ */
8
+ export declare function StepperLabel(props: StepperLabelProps): ReactElement;
9
+ //# sourceMappingURL=stepper-label.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-label.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-label.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,qBAAqB,EAC3B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,iBAAkB,SAAQ,qBAAqB;CAAG;AAEnE;;GAEG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,YAAY,CAKnE"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperListProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperListProps extends CoreStepperListProps {
4
+ }
5
+ /**
6
+ * Container for the step items. Renders a `<div>` element by default.
7
+ */
8
+ export declare function StepperList(props: StepperListProps): ReactElement;
9
+ //# sourceMappingURL=stepper-list.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-list.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-list.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,oBAAoB,EAC1B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,gBAAiB,SAAQ,oBAAoB;CAAG;AAEjE;;GAEG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,GAAG,YAAY,CAKjE"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperNextTriggerProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperNextTriggerProps extends CoreStepperNextTriggerProps {
4
+ }
5
+ /**
6
+ * Navigates to the next step. Renders a `<button>` element by default.
7
+ */
8
+ export declare function StepperNextTrigger(props: StepperNextTriggerProps): ReactElement;
9
+ //# sourceMappingURL=stepper-next-trigger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-next-trigger.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-next-trigger.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,2BAA2B,EACjC,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,uBAAwB,SAAQ,2BAA2B;CAAG;AAE/E;;GAEG;AACH,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,uBAAuB,GAC7B,YAAY,CAKd"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperPrevTriggerProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperPrevTriggerProps extends CoreStepperPrevTriggerProps {
4
+ }
5
+ /**
6
+ * Navigates to the previous step. Renders a `<button>` element by default.
7
+ */
8
+ export declare function StepperPrevTrigger(props: StepperPrevTriggerProps): ReactElement;
9
+ //# sourceMappingURL=stepper-prev-trigger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-prev-trigger.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-prev-trigger.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,2BAA2B,EACjC,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,uBAAwB,SAAQ,2BAA2B;CAAG;AAE/E;;GAEG;AACH,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,uBAAuB,GAC7B,YAAY,CAKd"}
@@ -0,0 +1,10 @@
1
+ import { type ReactElement } from "react";
2
+ import { type QdsStepperApiProps } from "@qualcomm-ui/qds-core/stepper";
3
+ import { type CoreStepperRootProps } from "@qualcomm-ui/react-core/stepper";
4
+ export interface StepperRootProps extends CoreStepperRootProps, QdsStepperApiProps {
5
+ }
6
+ /**
7
+ * Groups all parts of the stepper. Renders a `<div>` element by default.
8
+ */
9
+ export declare function StepperRoot({ size, ...props }: StepperRootProps): ReactElement;
10
+ //# sourceMappingURL=stepper-root.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-root.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-root.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAC,KAAK,YAAY,EAAU,MAAM,OAAO,CAAA;AAEhD,OAAO,EAEL,KAAK,kBAAkB,EACxB,MAAM,+BAA+B,CAAA;AAEtC,OAAO,EAEL,KAAK,oBAAoB,EAC1B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,gBACf,SAAQ,oBAAoB,EAC1B,kBAAkB;CAAG;AAEzB;;GAEG;AACH,wBAAgB,WAAW,CAAC,EAAC,IAAI,EAAE,GAAG,KAAK,EAAC,EAAE,gBAAgB,GAAG,YAAY,CAa5E"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperSeparatorProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperSeparatorProps extends CoreStepperSeparatorProps {
4
+ }
5
+ /**
6
+ * Visual connector between steps. Renders a `<div>` element by default.
7
+ */
8
+ export declare function StepperSeparator(props: StepperSeparatorProps): ReactElement;
9
+ //# sourceMappingURL=stepper-separator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-separator.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-separator.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,yBAAyB,EAC/B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,qBAAsB,SAAQ,yBAAyB;CAAG;AAE3E;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,qBAAqB,GAAG,YAAY,CAK3E"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from "react";
2
+ import { type CoreStepperTriggerProps } from "@qualcomm-ui/react-core/stepper";
3
+ export interface StepperTriggerProps extends CoreStepperTriggerProps {
4
+ }
5
+ /**
6
+ * Used to make each step item clickable. Renders a `<button>` element by default.
7
+ */
8
+ export declare function StepperTrigger(props: StepperTriggerProps): ReactElement;
9
+ //# sourceMappingURL=stepper-trigger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-trigger.d.ts","sourceRoot":"","sources":["../../src/stepper/stepper-trigger.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,OAAO,CAAA;AAEvC,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,iCAAiC,CAAA;AAKxC,MAAM,WAAW,mBAAoB,SAAQ,uBAAuB;CAAG;AAEvE;;GAEG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,GAAG,YAAY,CAKvE"}