@beterdichtbij/component-library 0.63.1 → 0.63.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.
- package/dist/bd-component-lib.cjs.js +69 -69
- package/dist/bd-component-lib.es.js +18626 -17800
- package/dist/bd-component-lib.umd.js +63 -63
- package/dist/components/modals/BDConfirmationModal/BDConfirmationModal.vue.d.ts +2 -2
- package/dist/components/modals/BDMessageTemplateFormModal/BDMessageTemplateFormModal.vue.d.ts +16 -6
- package/dist/components/molecules/BDFileUpload/BDFileUpload.vue.d.ts +3 -3
- package/dist/components/organisms/BDMessageTemplateForm/BDMessageTemplateForm.vue.d.ts +15 -5
- package/dist/locales/nl.json +4 -1
- package/dist/scss/_form-multiple-checkbox.scss +4 -0
- package/dist/scss/_modal.scss +3 -0
- package/dist/scss/active-filters.scss +2 -6
- package/dist/scss/forms/_form-check.scss +1 -0
- package/dist/scss/templates/_content-library-template.scss +7 -0
- package/package.json +1 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
2
|
Confirm: () => Promise<any>;
|
|
3
|
+
description?: any;
|
|
3
4
|
modalTitle?: any;
|
|
4
5
|
modalId?: any;
|
|
5
|
-
description?: any;
|
|
6
6
|
submitButtonText?: any;
|
|
7
7
|
cancelButtonText?: any;
|
|
8
8
|
$props: {
|
|
9
|
+
readonly description?: any;
|
|
9
10
|
readonly modalTitle?: any;
|
|
10
11
|
readonly modalId?: any;
|
|
11
|
-
readonly description?: any;
|
|
12
12
|
readonly submitButtonText?: any;
|
|
13
13
|
readonly cancelButtonText?: any;
|
|
14
14
|
};
|
package/dist/components/modals/BDMessageTemplateFormModal/BDMessageTemplateFormModal.vue.d.ts
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
2
7
|
$emit: (event: "close" | "action" | "show-attachment" | "on-submit" | "on-input" | "change-department", ...args: any[]) => void;
|
|
3
8
|
modelValue: Record<string, any>;
|
|
4
9
|
visible: boolean;
|
|
10
|
+
validation: Record<string, any>;
|
|
5
11
|
editable: boolean;
|
|
6
12
|
serverErrors: unknown[];
|
|
7
|
-
validation: Record<string, any>;
|
|
8
13
|
contentLibraryExternalProviders: unknown[];
|
|
9
|
-
isOperator: boolean;
|
|
10
14
|
files?: unknown[] | undefined;
|
|
11
15
|
practitionerOptions?: unknown[] | undefined;
|
|
12
16
|
departmentOptions?: unknown[] | undefined;
|
|
@@ -14,15 +18,21 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
14
18
|
$props: {
|
|
15
19
|
readonly modelValue?: Record<string, any> | undefined;
|
|
16
20
|
readonly visible?: boolean | undefined;
|
|
21
|
+
readonly validation?: Record<string, any> | undefined;
|
|
17
22
|
readonly editable?: boolean | undefined;
|
|
18
23
|
readonly serverErrors?: unknown[] | undefined;
|
|
19
|
-
readonly validation?: Record<string, any> | undefined;
|
|
20
24
|
readonly contentLibraryExternalProviders?: unknown[] | undefined;
|
|
21
|
-
readonly isOperator?: boolean | undefined;
|
|
22
25
|
readonly files?: unknown[] | undefined;
|
|
23
26
|
readonly practitionerOptions?: unknown[] | undefined;
|
|
24
27
|
readonly departmentOptions?: unknown[] | undefined;
|
|
25
28
|
readonly categoryOptions?: unknown[] | undefined;
|
|
26
29
|
};
|
|
27
30
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
28
|
-
|
|
31
|
+
type __VLS_TemplateResult = {
|
|
32
|
+
attrs: Partial<{}>;
|
|
33
|
+
slots: {
|
|
34
|
+
'extra-fields'?(_: {}): any;
|
|
35
|
+
};
|
|
36
|
+
refs: {};
|
|
37
|
+
rootEl: HTMLDivElement;
|
|
38
|
+
};
|
|
@@ -6,10 +6,10 @@ declare const _default: import('vue').DefineComponent<BDFileUploadProps, {}, {},
|
|
|
6
6
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7
7
|
}>, {
|
|
8
8
|
url: string;
|
|
9
|
-
buttonText: string;
|
|
10
|
-
multiple: boolean;
|
|
11
9
|
errorMessage: string;
|
|
12
10
|
fileSizeExceededMessage: string;
|
|
11
|
+
buttonText: string;
|
|
12
|
+
multiple: boolean;
|
|
13
13
|
acceptedFiles: string;
|
|
14
14
|
tag: "form" | "div";
|
|
15
15
|
token: string;
|
|
@@ -17,7 +17,7 @@ declare const _default: import('vue').DefineComponent<BDFileUploadProps, {}, {},
|
|
|
17
17
|
fileUploadRef: ({
|
|
18
18
|
$props: import('primevue/fileupload').FileUploadProps & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
19
19
|
$slots: import('primevue/fileupload').FileUploadSlots;
|
|
20
|
-
$emit: ((e: "progress", event: import('primevue/fileupload').FileUploadProgressEvent) => void) & ((e: "select", event: import('primevue/fileupload').FileUploadSelectEvent) => void) & ((e: "remove", event: import('primevue/fileupload').FileUploadRemoveEvent) => void) & ((e: "error", event: import('primevue/fileupload').FileUploadErrorEvent) => void) & ((e: "before-upload", event: import('primevue/fileupload').FileUploadBeforeUploadEvent) => void) & ((e: "upload", event: import('primevue/fileupload').FileUploadUploadEvent) => void) & ((e: "uploader", event: FileUploadUploaderEvent) => void) & ((e: "before-send", event: import('primevue/fileupload').FileUploadBeforeSendEvent) => void) & ((e: "
|
|
20
|
+
$emit: ((e: "progress", event: import('primevue/fileupload').FileUploadProgressEvent) => void) & ((e: "select", event: import('primevue/fileupload').FileUploadSelectEvent) => void) & ((e: "remove", event: import('primevue/fileupload').FileUploadRemoveEvent) => void) & ((e: "error", event: import('primevue/fileupload').FileUploadErrorEvent) => void) & ((e: "clear") => void) & ((e: "before-upload", event: import('primevue/fileupload').FileUploadBeforeUploadEvent) => void) & ((e: "upload", event: import('primevue/fileupload').FileUploadUploadEvent) => void) & ((e: "uploader", event: FileUploadUploaderEvent) => void) & ((e: "before-send", event: import('primevue/fileupload').FileUploadBeforeSendEvent) => void) & ((e: "removeUploadedFile", event: import('primevue/fileupload').FileUploadRemoveUploadedFile) => void);
|
|
21
21
|
} & import('primevue/fileupload').FileUploadMethods) | null;
|
|
22
22
|
}, HTMLDivElement>;
|
|
23
23
|
export default _default;
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
declare const _default:
|
|
2
|
-
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
|
+
$emit: (event: "update:modelValue" | "action" | "show-attachment" | "on-input" | "change-department" | "change-text", ...args: any[]) => void;
|
|
3
8
|
modelValue: Record<string, any>;
|
|
4
9
|
validation: Record<string, any>;
|
|
5
10
|
practitionerOptions: unknown[];
|
|
6
11
|
departmentOptions: unknown[];
|
|
7
12
|
categoryOptions: unknown[];
|
|
8
13
|
contentLibraryExternalProviders: unknown[];
|
|
9
|
-
isOperator: boolean;
|
|
10
14
|
files?: unknown[] | undefined;
|
|
11
15
|
$props: {
|
|
12
16
|
readonly modelValue?: Record<string, any> | undefined;
|
|
@@ -15,8 +19,14 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
15
19
|
readonly departmentOptions?: unknown[] | undefined;
|
|
16
20
|
readonly categoryOptions?: unknown[] | undefined;
|
|
17
21
|
readonly contentLibraryExternalProviders?: unknown[] | undefined;
|
|
18
|
-
readonly isOperator?: boolean | undefined;
|
|
19
22
|
readonly files?: unknown[] | undefined;
|
|
20
23
|
};
|
|
21
24
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLFormElement>;
|
|
22
|
-
|
|
25
|
+
type __VLS_TemplateResult = {
|
|
26
|
+
attrs: Partial<{}>;
|
|
27
|
+
slots: {
|
|
28
|
+
'extra-fields'?(_: {}): any;
|
|
29
|
+
};
|
|
30
|
+
refs: {};
|
|
31
|
+
rootEl: HTMLFormElement;
|
|
32
|
+
};
|
package/dist/locales/nl.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"edit": "Wijzigen"
|
|
37
37
|
},
|
|
38
38
|
"contentLibraryOverview": {
|
|
39
|
-
"noResults": "Er zijn geen
|
|
39
|
+
"noResults": "Er zijn geen berichten gevonden voor deze zoekterm of filters; pas ze aan om opnieuw te zoeken."
|
|
40
40
|
},
|
|
41
41
|
"contentLibrarySplitButton": {
|
|
42
42
|
"messageTemplatesTitle": "Standaardberichten"
|
|
@@ -63,6 +63,9 @@
|
|
|
63
63
|
"download": "Download afbeelding",
|
|
64
64
|
"loading": "Afbeelding aan het laden"
|
|
65
65
|
},
|
|
66
|
+
"fileUpload": {
|
|
67
|
+
"errorMessage": "Er is een fout opgetreden tijdens het uploaden van het bestand."
|
|
68
|
+
},
|
|
66
69
|
"filterCard": {
|
|
67
70
|
"more": "Meer",
|
|
68
71
|
"less": "Minder"
|
package/dist/scss/_modal.scss
CHANGED