@davincihealthcare/elty-design-system-vue 1.54.3 → 1.55.0
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/ElCarousel.vue.d.ts +1 -15
- package/dist/forms/ElInputFile.vue.d.ts +2 -2
- package/dist/index.js +5330 -5309
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +10 -10
- package/dist/index.umd.cjs.map +1 -1
- package/dist/style.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/utils.d.ts +6 -0
- package/package.json +1 -1
package/dist/ElCarousel.vue.d.ts
CHANGED
|
@@ -13,13 +13,7 @@ export interface CarouselSlide {
|
|
|
13
13
|
picture: string;
|
|
14
14
|
button: InstanceType<typeof ElButton>['$props'];
|
|
15
15
|
}
|
|
16
|
-
declare const _default: import('vue').DefineComponent<
|
|
17
|
-
size: string;
|
|
18
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CarouselProps>, {
|
|
19
|
-
size: string;
|
|
20
|
-
}>>>, {
|
|
21
|
-
size: ElCarouselSizes;
|
|
22
|
-
}, {}>;
|
|
16
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<CarouselProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<CarouselProps>>>, {}, {}>;
|
|
23
17
|
export default _default;
|
|
24
18
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
25
19
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -30,11 +24,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
30
24
|
required: true;
|
|
31
25
|
};
|
|
32
26
|
};
|
|
33
|
-
type __VLS_WithDefaults<P, D> = {
|
|
34
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
-
default: D[K];
|
|
36
|
-
}> : P[K];
|
|
37
|
-
};
|
|
38
|
-
type __VLS_Prettify<T> = {
|
|
39
|
-
[K in keyof T]: T[K];
|
|
40
|
-
} & {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
|
|
3
|
-
export declare const elInputFileTypes: readonly ["image", "document", "csv", "excel", "any", "patientsImportDataFpfV5", "patientsImportDataHippocrates", "patientsImportDataIatros", "patientsImportDataMdb2000", "patientsImportDataMillewin", "patientsImportDataPhronesis", "patientsImportDataFastamb", "patientsImportDataMedico2000", "patientsImportDataTServe", "patientsImportDataProfim", "patientsImportDataMillewinAttachments"];
|
|
3
|
+
export declare const elInputFileTypes: readonly ["image", "document", "csv", "excel", "any", "patientsImportDataFpfV5", "patientsImportDataHippocrates", "patientsImportDataIatros", "patientsImportDataMdb2000", "patientsImportDataMillewin", "patientsImportDataPhronesis", "patientsImportDataFastamb", "patientsImportDataMedico2000", "patientsImportDataTServe", "patientsImportDataProfim", "patientsImportDataMillewinAttachments", "patientsImportDataAdvmednet"];
|
|
4
4
|
export type ElInputFileType = (typeof elInputFileTypes)[number];
|
|
5
5
|
declare const _default: import('vue').DefineComponent<{
|
|
6
6
|
modelValue: {
|
|
@@ -122,6 +122,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
122
122
|
hiddenErrorMessage: boolean;
|
|
123
123
|
validation: string;
|
|
124
124
|
multiple: boolean;
|
|
125
|
-
fileType: "image" | "document" | "csv" | "excel" | "any" | "patientsImportDataFpfV5" | "patientsImportDataHippocrates" | "patientsImportDataIatros" | "patientsImportDataMdb2000" | "patientsImportDataMillewin" | "patientsImportDataPhronesis" | "patientsImportDataFastamb" | "patientsImportDataMedico2000" | "patientsImportDataTServe" | "patientsImportDataProfim" | "patientsImportDataMillewinAttachments";
|
|
125
|
+
fileType: "image" | "document" | "csv" | "excel" | "any" | "patientsImportDataFpfV5" | "patientsImportDataHippocrates" | "patientsImportDataIatros" | "patientsImportDataMdb2000" | "patientsImportDataMillewin" | "patientsImportDataPhronesis" | "patientsImportDataFastamb" | "patientsImportDataMedico2000" | "patientsImportDataTServe" | "patientsImportDataProfim" | "patientsImportDataMillewinAttachments" | "patientsImportDataAdvmednet";
|
|
126
126
|
}, {}>;
|
|
127
127
|
export default _default;
|