@muenchen/muc-patternlab-vue 1.13.0-beta.8 → 1.13.0-beta.9
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/FileDropzone/IconFileUpload.vue.d.ts +2 -0
- package/components/FileDropzone/MucFileDropzone.stories.d.ts +49 -0
- package/components/FileDropzone/MucFileDropzone.vue.d.ts +80 -0
- package/components/FileDropzone/index.d.ts +2 -0
- package/components/PercentageSpinner/MucPercentageSpinner.stories.d.ts +1 -3
- package/components/PercentageSpinner/MucPercentageSpinner.vue.d.ts +1 -3
- package/components/index.d.ts +2 -1
- package/muc-patternlab-vue.es.js +608 -476
- package/package.json +3 -3
- package/style.css +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
component: import('vue').DefineComponent<{
|
|
3
|
+
buttonText: string;
|
|
4
|
+
additionalInformation?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
multiple?: boolean;
|
|
7
|
+
invalidAmountWarning?: string;
|
|
8
|
+
maxFileSize?: number;
|
|
9
|
+
maxFileSizeWarning?: string;
|
|
10
|
+
maxTotalFileSize?: number;
|
|
11
|
+
maxTotalFileSizeWarning?: string;
|
|
12
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
files: (...args: any[]) => void;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
15
|
+
buttonText: string;
|
|
16
|
+
additionalInformation?: string;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
multiple?: boolean;
|
|
19
|
+
invalidAmountWarning?: string;
|
|
20
|
+
maxFileSize?: number;
|
|
21
|
+
maxFileSizeWarning?: string;
|
|
22
|
+
maxTotalFileSize?: number;
|
|
23
|
+
maxTotalFileSizeWarning?: string;
|
|
24
|
+
}> & Readonly<{
|
|
25
|
+
onFiles?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
title: string;
|
|
28
|
+
tags: string[];
|
|
29
|
+
parameters: {
|
|
30
|
+
docs: {
|
|
31
|
+
description: {
|
|
32
|
+
component: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export default _default;
|
|
38
|
+
export declare const Example: {
|
|
39
|
+
args: {
|
|
40
|
+
buttonText: string;
|
|
41
|
+
additionalInformation: string;
|
|
42
|
+
invalidAmountWarning: string;
|
|
43
|
+
maxFileSize: number;
|
|
44
|
+
maxFileSizeWarning: string;
|
|
45
|
+
maxTotalFileSize: number;
|
|
46
|
+
maxTotalFileSizeWarning: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export declare const Default: {};
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
/**
|
|
3
|
+
* Text on the upload button
|
|
4
|
+
*/
|
|
5
|
+
buttonText: string;
|
|
6
|
+
/**
|
|
7
|
+
* Additional Information, e.g. max file size
|
|
8
|
+
*/
|
|
9
|
+
additionalInformation?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Flag to disable the upload field
|
|
12
|
+
*/
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Flag to switch between multiple and single file upload
|
|
16
|
+
*/
|
|
17
|
+
multiple?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Warning for invalid amount of files
|
|
20
|
+
*/
|
|
21
|
+
invalidAmountWarning?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Maximum file size in MByte
|
|
24
|
+
*/
|
|
25
|
+
maxFileSize?: number;
|
|
26
|
+
/**
|
|
27
|
+
* Warning for invalid file size
|
|
28
|
+
*/
|
|
29
|
+
maxFileSizeWarning?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Maximum file size sum in MByte
|
|
32
|
+
*/
|
|
33
|
+
maxTotalFileSize?: number;
|
|
34
|
+
/**
|
|
35
|
+
* Warning for invalid file size sum
|
|
36
|
+
*/
|
|
37
|
+
maxTotalFileSizeWarning?: string;
|
|
38
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
39
|
+
files: (...args: any[]) => void;
|
|
40
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
41
|
+
/**
|
|
42
|
+
* Text on the upload button
|
|
43
|
+
*/
|
|
44
|
+
buttonText: string;
|
|
45
|
+
/**
|
|
46
|
+
* Additional Information, e.g. max file size
|
|
47
|
+
*/
|
|
48
|
+
additionalInformation?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Flag to disable the upload field
|
|
51
|
+
*/
|
|
52
|
+
disabled?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Flag to switch between multiple and single file upload
|
|
55
|
+
*/
|
|
56
|
+
multiple?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Warning for invalid amount of files
|
|
59
|
+
*/
|
|
60
|
+
invalidAmountWarning?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Maximum file size in MByte
|
|
63
|
+
*/
|
|
64
|
+
maxFileSize?: number;
|
|
65
|
+
/**
|
|
66
|
+
* Warning for invalid file size
|
|
67
|
+
*/
|
|
68
|
+
maxFileSizeWarning?: string;
|
|
69
|
+
/**
|
|
70
|
+
* Maximum file size sum in MByte
|
|
71
|
+
*/
|
|
72
|
+
maxTotalFileSize?: number;
|
|
73
|
+
/**
|
|
74
|
+
* Warning for invalid file size sum
|
|
75
|
+
*/
|
|
76
|
+
maxTotalFileSizeWarning?: string;
|
|
77
|
+
}> & Readonly<{
|
|
78
|
+
onFiles?: ((...args: any[]) => any) | undefined;
|
|
79
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
80
|
+
export default _default;
|
|
@@ -5,9 +5,7 @@ declare const _default: {
|
|
|
5
5
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
6
6
|
size: string;
|
|
7
7
|
percentage?: number;
|
|
8
|
-
}> & Readonly<{}>, {
|
|
9
|
-
size: string;
|
|
10
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
8
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
9
|
title: string;
|
|
12
10
|
tags: string[];
|
|
13
11
|
parameters: {
|
|
@@ -24,7 +24,5 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
24
24
|
* An empty value results in an empty string.
|
|
25
25
|
*/
|
|
26
26
|
percentage?: number;
|
|
27
|
-
}> & Readonly<{}>, {
|
|
28
|
-
size: string;
|
|
29
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
30
28
|
export default _default;
|
package/components/index.d.ts
CHANGED
|
@@ -4,9 +4,10 @@ import { MucCallout } from './Callout';
|
|
|
4
4
|
import { MucCard, MucCardContainer } from './Card';
|
|
5
5
|
import { MucComment, MucCommentText } from './Comment/';
|
|
6
6
|
import { MucDivider } from './Divider';
|
|
7
|
+
import { MucFileDropzone } from './FileDropzone';
|
|
7
8
|
import { MucCheckbox, MucCheckboxGroup, MucCounter, MucErrorList, MucInput, MucRadioButton, MucRadioButtonGroup, MucSelect, MucTextArea } from './Form';
|
|
8
9
|
import { MucIcon } from './Icon';
|
|
9
10
|
import { MucIntro } from './Intro';
|
|
10
11
|
import { MucLink } from './Link';
|
|
11
12
|
import { MucPercentageSpinner } from './PercentageSpinner';
|
|
12
|
-
export { MucButton, MucBanner, MucIntro, MucCallout, MucCard, MucCardContainer, MucComment, MucCommentText, MucRadioButton, MucRadioButtonGroup, MucInput, MucTextArea, MucCheckboxGroup, MucCheckbox, MucSelect, MucErrorList, MucIcon, MucDivider, MucLink, MucCounter, MucPercentageSpinner, };
|
|
13
|
+
export { MucButton, MucBanner, MucIntro, MucCallout, MucCard, MucCardContainer, MucComment, MucCommentText, MucRadioButton, MucRadioButtonGroup, MucInput, MucTextArea, MucCheckboxGroup, MucCheckbox, MucSelect, MucErrorList, MucIcon, MucDivider, MucLink, MucFileDropzone, MucCounter, MucPercentageSpinner, };
|