wini-web-components 2.7.6 → 2.7.8
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/component/calendar/calendar.d.ts +1 -1
- package/dist/component/import-file/import-file.d.ts +1 -1
- package/dist/component/input-multi-select/input-multi-select.d.ts +1 -1
- package/dist/component/select1/select1.d.ts +1 -1
- package/dist/index.cjs.js +32 -0
- package/dist/{index.mjs → index.es.js} +2756 -2790
- package/package.json +4 -2
- package/dist/index.js +0 -32
- /package/dist/{index.css → wini-web-components.css} +0 -0
|
@@ -26,6 +26,6 @@ interface CalendarProps extends WithTranslation {
|
|
|
26
26
|
header?: ReactNode;
|
|
27
27
|
footer?: ReactNode;
|
|
28
28
|
}
|
|
29
|
-
export declare const Calendar: React.ComponentType<Omit<import('
|
|
29
|
+
export declare const Calendar: React.ComponentType<Omit<import('react-i18next/helpers').$Subtract<CalendarProps, import('react-i18next').WithTranslationProps>, keyof WithTranslation<Ns, undefined>> & import('react-i18next').WithTranslationProps>;
|
|
30
30
|
export {};
|
|
31
31
|
//# sourceMappingURL=calendar.d.ts.map
|
|
@@ -29,6 +29,6 @@ interface ImportFileProps extends WithTranslation {
|
|
|
29
29
|
*/
|
|
30
30
|
maxSize?: number;
|
|
31
31
|
}
|
|
32
|
-
export declare const ImportFile: React.ComponentType<Omit<import('
|
|
32
|
+
export declare const ImportFile: React.ComponentType<Omit<import('react-i18next/helpers').$Subtract<ImportFileProps | Readonly<ImportFileProps>, import('react-i18next').WithTranslationProps>, keyof WithTranslation<Ns, undefined>> & import('react-i18next').WithTranslationProps>;
|
|
33
33
|
export {};
|
|
34
34
|
//# sourceMappingURL=import-file.d.ts.map
|
|
@@ -17,6 +17,6 @@ interface SelectMultipleProps extends WithTranslation {
|
|
|
17
17
|
showClearValueButton?: boolean;
|
|
18
18
|
popupClassName?: string;
|
|
19
19
|
}
|
|
20
|
-
export declare const SelectMultiple: React.ComponentType<Omit<import('
|
|
20
|
+
export declare const SelectMultiple: React.ComponentType<Omit<import('react-i18next/helpers').$Subtract<SelectMultipleProps, import('react-i18next').WithTranslationProps>, keyof WithTranslation<Ns, undefined>> & import('react-i18next').WithTranslationProps>;
|
|
21
21
|
export {};
|
|
22
22
|
//# sourceMappingURL=input-multi-select.d.ts.map
|
|
@@ -27,6 +27,6 @@ interface Select1Props extends WithTranslation {
|
|
|
27
27
|
suffix?: ReactNode;
|
|
28
28
|
onOpenOptions?: (popupRef: HTMLDivElement) => void;
|
|
29
29
|
}
|
|
30
|
-
export declare const Select1: React.ComponentType<Omit<import('
|
|
30
|
+
export declare const Select1: React.ComponentType<Omit<import('react-i18next/helpers').$Subtract<Select1Props, import('react-i18next').WithTranslationProps>, keyof WithTranslation<Ns, undefined>> & import('react-i18next').WithTranslationProps>;
|
|
31
31
|
export {};
|
|
32
32
|
//# sourceMappingURL=select1.d.ts.map
|