@pksep/yui 0.1.164 → 0.1.166
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/components/Icon/enum/enum.d.ts +3 -1
- package/dist/components/Icon/icons.d.ts +2 -0
- package/dist/components/Preview/ImagePreview.vue.d.ts +6 -2
- package/dist/components/Preview/VideoPreview.vue.d.ts +6 -2
- package/dist/components/Slider/interface/interface.d.ts +2 -0
- package/dist/components/index.d.ts +4 -1
- package/dist/helpers/file/isPdfFile.d.ts +2 -0
- package/dist/sep-yui.es.ts +19459 -19364
- package/dist/sep-yui.umd.ts +221 -212
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -2,9 +2,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2
2
|
src: string | undefined;
|
|
3
3
|
}>>, {
|
|
4
4
|
rotateImage: (deltaAngle: number) => Promise<void>;
|
|
5
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
error: (error: Event) => void;
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
8
|
src: string | undefined;
|
|
7
|
-
}>>> & Readonly<{
|
|
9
|
+
}>>> & Readonly<{
|
|
10
|
+
onError?: ((error: Event) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
8
12
|
export default _default;
|
|
9
13
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
14
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
src: string | undefined;
|
|
3
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
|
+
error: (error: Event) => void;
|
|
5
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
6
|
src: string | undefined;
|
|
5
|
-
}>>> & Readonly<{
|
|
7
|
+
}>>> & Readonly<{
|
|
8
|
+
onError?: ((error: Event) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
10
|
export default _default;
|
|
7
11
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
12
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -4,10 +4,12 @@ import { IModalEmit, IModalProps } from '../../Modal/interface/interface';
|
|
|
4
4
|
export type SliderItem = {
|
|
5
5
|
path: string;
|
|
6
6
|
name?: string;
|
|
7
|
+
file?: File;
|
|
7
8
|
};
|
|
8
9
|
export type IFile = {
|
|
9
10
|
path: string;
|
|
10
11
|
name?: string;
|
|
12
|
+
file?: File;
|
|
11
13
|
};
|
|
12
14
|
export interface ISliderProps extends IDataTestIdProp {
|
|
13
15
|
items: SliderItem[];
|
|
@@ -67,9 +67,12 @@ import { TextareaTypeEnum } from './Textarea/enum';
|
|
|
67
67
|
import { CheckboxSizeEnum } from './Checkbox/enum/enum';
|
|
68
68
|
import { MenuTypeEnum } from './UserMenu/enum/enum';
|
|
69
69
|
import { default as SliderModal } from './Slider/SliderModal.vue';
|
|
70
|
+
import { default as PdfPreview } from './Preview/PdfPreview.vue';
|
|
71
|
+
import { default as ImagePreview } from './Preview/ImagePreview.vue';
|
|
72
|
+
import { default as VideoPreview } from './Preview/VideoPreview.vue';
|
|
70
73
|
|
|
71
74
|
declare const _default: {
|
|
72
75
|
install: (app: App) => void;
|
|
73
76
|
};
|
|
74
77
|
export default _default;
|
|
75
|
-
export { Accordion, Badges, BreadCrumbs, Button, Dialog, Card, Calendar, DragAndDrop, Switch, SelectList, Dropdown, Textarea, Filter, Icon, Input, Combobox, InputNumber, Search, PushNotification, Picture, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu, CopyIcon, Loader, FilterTag, CircularProgress, Popover, Table, TableSimple, TableNew, TableRow, TableRowNew, TableTd, TableTh, SectionTableRow, HeadTableRow, HeadTableRowNew, ScrollWrapper, Radio, Tooltip, BaseFilter, Range, Avatar, Tabs, ContentEditor, ModalCroppedAvatar, TimePicker, type IDialogProps, type IRangeForDatePicker, type OptionsObject, type IDataTestIdProp, CheckboxSizeEnum, TextFieldEnum, IconNameEnum, SizesEnum, ButtonTypeEnum, ColorsEnum, ImageExtensionsEnum, BadgesTypeEnum, VideoExtensionsEnum, InputTypeEnum, TextareaTypeEnum, MenuTypeEnum, getLastTime, getFirstTime, vuePluginRemoveTestid, SliderModal };
|
|
78
|
+
export { Accordion, Badges, BreadCrumbs, Button, Dialog, Card, Calendar, DragAndDrop, Switch, SelectList, Dropdown, Textarea, Filter, Icon, Input, Combobox, InputNumber, Search, PushNotification, Picture, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu, CopyIcon, Loader, FilterTag, CircularProgress, Popover, Table, TableSimple, TableNew, TableRow, TableRowNew, TableTd, TableTh, SectionTableRow, HeadTableRow, HeadTableRowNew, ScrollWrapper, Radio, Tooltip, BaseFilter, Range, Avatar, Tabs, ContentEditor, ModalCroppedAvatar, TimePicker, type IDialogProps, type IRangeForDatePicker, type OptionsObject, type IDataTestIdProp, CheckboxSizeEnum, TextFieldEnum, IconNameEnum, SizesEnum, ButtonTypeEnum, ColorsEnum, ImageExtensionsEnum, BadgesTypeEnum, VideoExtensionsEnum, InputTypeEnum, TextareaTypeEnum, MenuTypeEnum, getLastTime, getFirstTime, vuePluginRemoveTestid, SliderModal, PdfPreview, ImagePreview, VideoPreview };
|