@muenchen/muc-patternlab-vue 1.15.0-beta.2 → 1.15.0-beta.3

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,33 @@
1
+ declare const _default: {
2
+ component: import('vue').DefineComponent<{
3
+ stepItems: import('./MucStepperTypes').StepperItem[];
4
+ activeItem: string;
5
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
6
+ changeStep: (id: string) => any;
7
+ }, string, import('vue').PublicProps, Readonly<{
8
+ stepItems: import('./MucStepperTypes').StepperItem[];
9
+ activeItem: string;
10
+ }> & Readonly<{
11
+ onChangeStep?: ((id: string) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
+ title: string;
14
+ tags: string[];
15
+ parameters: {
16
+ docs: {
17
+ description: {
18
+ component: string;
19
+ };
20
+ };
21
+ };
22
+ };
23
+ export default _default;
24
+ export declare const Default: {
25
+ args: {
26
+ stepItems: {
27
+ id: string;
28
+ label: string;
29
+ icon: string;
30
+ }[];
31
+ activeItem: string;
32
+ };
33
+ };
@@ -0,0 +1,25 @@
1
+ import { StepperItem } from './MucStepperTypes';
2
+ declare const _default: import('vue').DefineComponent<{
3
+ /**
4
+ * List of items displayed in the stepper
5
+ */
6
+ stepItems: StepperItem[];
7
+ /**
8
+ * Id of the current step item
9
+ */
10
+ activeItem: string;
11
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
12
+ changeStep: (id: string) => any;
13
+ }, string, import('vue').PublicProps, Readonly<{
14
+ /**
15
+ * List of items displayed in the stepper
16
+ */
17
+ stepItems: StepperItem[];
18
+ /**
19
+ * Id of the current step item
20
+ */
21
+ activeItem: string;
22
+ }> & Readonly<{
23
+ onChangeStep?: ((id: string) => any) | undefined;
24
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ export default _default;
@@ -0,0 +1,33 @@
1
+ import { StepperItem } from './MucStepperTypes';
2
+ declare const _default: import('vue').DefineComponent<{
3
+ /**
4
+ * Individual item to display inside the MucStepper component
5
+ */
6
+ item: StepperItem;
7
+ /**
8
+ * Show stepper as active
9
+ */
10
+ isActive: boolean;
11
+ /**
12
+ * Show stepper as done
13
+ */
14
+ isDone: boolean;
15
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
16
+ click: (id: string) => any;
17
+ }, string, import('vue').PublicProps, Readonly<{
18
+ /**
19
+ * Individual item to display inside the MucStepper component
20
+ */
21
+ item: StepperItem;
22
+ /**
23
+ * Show stepper as active
24
+ */
25
+ isActive: boolean;
26
+ /**
27
+ * Show stepper as done
28
+ */
29
+ isDone: boolean;
30
+ }> & Readonly<{
31
+ onClick?: ((id: string) => any) | undefined;
32
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
33
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export interface StepperItem {
2
+ id: string;
3
+ label: string;
4
+ icon: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ import { default as MucStepper } from './MucStepper.vue';
2
+ export { MucStepper };
@@ -1,5 +1,6 @@
1
1
  import { MucBanner } from './Banner';
2
2
  import { MucButton } from './Button';
3
+ import { MucCalendar } from './Calendar';
3
4
  import { MucCallout } from './Callout';
4
5
  import { MucCard, MucCardContainer } from './Card';
5
6
  import { MucComment, MucCommentText } from './Comment/';
@@ -10,4 +11,5 @@ import { MucIcon } from './Icon';
10
11
  import { MucIntro } from './Intro';
11
12
  import { MucLink } from './Link';
12
13
  import { MucPercentageSpinner } from './PercentageSpinner';
13
- export { MucButton, MucBanner, MucIntro, MucCallout, MucCard, MucCardContainer, MucComment, MucCommentText, MucRadioButton, MucRadioButtonGroup, MucInput, MucTextArea, MucCheckboxGroup, MucCheckbox, MucSelect, MucErrorList, MucIcon, MucDivider, MucLink, MucFileDropzone, MucCounter, MucPercentageSpinner, };
14
+ import { MucStepper } from './Stepper';
15
+ export { MucButton, MucBanner, MucIntro, MucCallout, MucCard, MucCardContainer, MucComment, MucCommentText, MucRadioButton, MucRadioButtonGroup, MucInput, MucTextArea, MucCheckboxGroup, MucCheckbox, MucSelect, MucErrorList, MucIcon, MucDivider, MucLink, MucFileDropzone, MucCounter, MucPercentageSpinner, MucStepper, MucCalendar, };