@muenchen/muc-patternlab-vue 2.0.1-beta.2 → 2.1.0-beta.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.
- package/components/BusinessHours/MucBusinessHours.test.d.ts +1 -0
- package/components/Stepper/MucStepper.stories.d.ts +14 -1
- package/components/Stepper/MucStepper.vue.d.ts +9 -1
- package/components/Stepper/MucStepperItem.vue.d.ts +9 -1
- package/muc-patternlab-vue.es.js +383 -375
- package/package.json +13 -13
- package/style.css +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,11 +2,13 @@ declare const _default: {
|
|
|
2
2
|
component: import('vue').DefineComponent<{
|
|
3
3
|
stepItems: import('./MucStepperTypes').StepperItem[];
|
|
4
4
|
activeItem: string;
|
|
5
|
-
|
|
5
|
+
disablePreviousSteps?: boolean;
|
|
6
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
7
|
changeStep: (id: string) => any;
|
|
7
8
|
}, string, import('vue').PublicProps, Readonly<{
|
|
8
9
|
stepItems: import('./MucStepperTypes').StepperItem[];
|
|
9
10
|
activeItem: string;
|
|
11
|
+
disablePreviousSteps?: boolean;
|
|
10
12
|
}> & Readonly<{
|
|
11
13
|
onChangeStep?: ((id: string) => any) | undefined;
|
|
12
14
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -31,3 +33,14 @@ export declare const Default: {
|
|
|
31
33
|
activeItem: string;
|
|
32
34
|
};
|
|
33
35
|
};
|
|
36
|
+
export declare const DisablePreviousSteps: {
|
|
37
|
+
args: {
|
|
38
|
+
stepItems: {
|
|
39
|
+
id: string;
|
|
40
|
+
label: string;
|
|
41
|
+
icon: string;
|
|
42
|
+
}[];
|
|
43
|
+
activeItem: string;
|
|
44
|
+
disablePreviousSteps: boolean;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
@@ -8,7 +8,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
8
8
|
* Id of the current step item
|
|
9
9
|
*/
|
|
10
10
|
activeItem: string;
|
|
11
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Disables the previous steps
|
|
13
|
+
*/
|
|
14
|
+
disablePreviousSteps?: boolean;
|
|
15
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
16
|
changeStep: (id: string) => any;
|
|
13
17
|
}, string, import('vue').PublicProps, Readonly<{
|
|
14
18
|
/**
|
|
@@ -19,6 +23,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
19
23
|
* Id of the current step item
|
|
20
24
|
*/
|
|
21
25
|
activeItem: string;
|
|
26
|
+
/**
|
|
27
|
+
* Disables the previous steps
|
|
28
|
+
*/
|
|
29
|
+
disablePreviousSteps?: boolean;
|
|
22
30
|
}> & Readonly<{
|
|
23
31
|
onChangeStep?: ((id: string) => any) | undefined;
|
|
24
32
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -12,7 +12,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
12
12
|
* Show stepper as done
|
|
13
13
|
*/
|
|
14
14
|
isDone: boolean;
|
|
15
|
-
|
|
15
|
+
/**
|
|
16
|
+
* Disabled stepper
|
|
17
|
+
*/
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
20
|
click: (id: string) => any;
|
|
17
21
|
}, string, import('vue').PublicProps, Readonly<{
|
|
18
22
|
/**
|
|
@@ -27,6 +31,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
27
31
|
* Show stepper as done
|
|
28
32
|
*/
|
|
29
33
|
isDone: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Disabled stepper
|
|
36
|
+
*/
|
|
37
|
+
disabled: boolean;
|
|
30
38
|
}> & Readonly<{
|
|
31
39
|
onClick?: ((id: string) => any) | undefined;
|
|
32
40
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|