@everlywell/consumer-ui 1.12.0 → 1.13.1
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.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface StepProps {
|
|
3
|
+
title: string;
|
|
4
|
+
}
|
|
5
|
+
export interface StepperProps {
|
|
6
|
+
steps: StepProps[];
|
|
7
|
+
activeStepIndex: number;
|
|
8
|
+
hideIndicators?: boolean;
|
|
9
|
+
stepperTheme?: {
|
|
10
|
+
light?: string;
|
|
11
|
+
base?: string;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
declare const _default: React.NamedExoticComponent<StepperProps>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Meta } from '@storybook/react';
|
|
2
|
+
import { StepperProps } from './Stepper';
|
|
3
|
+
declare const _default: Meta;
|
|
4
|
+
export default _default;
|
|
5
|
+
/**
|
|
6
|
+
* Example Story
|
|
7
|
+
*
|
|
8
|
+
* Here we can set the default props for interactive control on the story.
|
|
9
|
+
*/
|
|
10
|
+
export declare const ViridianExample: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, StepperProps>;
|
|
11
|
+
/**
|
|
12
|
+
* Example Story
|
|
13
|
+
*
|
|
14
|
+
* Here we can set the default props for interactive control on the story.
|
|
15
|
+
*/
|
|
16
|
+
export declare const ViridianHideIndicatorsExample: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, {
|
|
17
|
+
hideIndicators: boolean;
|
|
18
|
+
stepperTheme: {
|
|
19
|
+
light: string;
|
|
20
|
+
base: string;
|
|
21
|
+
};
|
|
22
|
+
steps: import("./Stepper").StepProps[];
|
|
23
|
+
activeStepIndex: number;
|
|
24
|
+
}>;
|
|
25
|
+
export declare const VarianEggplantExample: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, {
|
|
26
|
+
stepperTheme: {
|
|
27
|
+
light: string;
|
|
28
|
+
base: string;
|
|
29
|
+
};
|
|
30
|
+
steps: import("./Stepper").StepProps[];
|
|
31
|
+
activeStepIndex: number;
|
|
32
|
+
hideIndicators?: boolean;
|
|
33
|
+
}>;
|
|
34
|
+
export declare const VarianEggplanHideIndicatortExample: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, {
|
|
35
|
+
hideIndicators: boolean;
|
|
36
|
+
stepperTheme: {
|
|
37
|
+
light: string;
|
|
38
|
+
base: string;
|
|
39
|
+
};
|
|
40
|
+
steps: import("./Stepper").StepProps[];
|
|
41
|
+
activeStepIndex: number;
|
|
42
|
+
}>;
|