sep-yui 0.0.19 → 0.0.21
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/index.d.ts +2 -13
- package/dist/sep-yui.es.ts +53 -5100
- package/dist/sep-yui.umd.ts +1 -35
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/components/Badges/Badges.vue.d.ts +0 -38
- package/dist/components/BreadCrumbs/BreadCrumbs.vue.d.ts +0 -25
- package/dist/components/Dropdown/Dropdown.vue.d.ts +0 -25
- package/dist/components/Filter/Filter.vue.d.ts +0 -35
- package/dist/components/Icon/Icon.vue.d.ts +0 -34
- package/dist/components/Search/History.vue.d.ts +0 -17
- package/dist/components/Search/Search.vue.d.ts +0 -36
- package/dist/components/Search/SearchResult.vue.d.ts +0 -17
- package/dist/components/Slider/Slider.vue.d.ts +0 -21
- package/dist/components/Switch/Switch.vue.d.ts +0 -25
- package/dist/components/Table/Table.vue.d.ts +0 -2
- package/dist/components/Toggle/Toggle.vue.d.ts +0 -33
- package/dist/components/UserMenu/UserMenu.vue.d.ts +0 -31
@@ -1,25 +0,0 @@
|
|
1
|
-
import { IBreadCrumbsEmit, IBreadCrumbsProps } from './interface/interface';
|
2
|
-
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IBreadCrumbsProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
|
-
click: (item: IBreadCrumbsEmit) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IBreadCrumbsProps>, {}>>> & {
|
6
|
-
onClick?: ((item: IBreadCrumbsEmit) => any) | undefined;
|
7
|
-
}, {}, {}>;
|
8
|
-
export default _default;
|
9
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
10
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
11
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
12
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
13
|
-
} : {
|
14
|
-
type: import('vue').PropType<T[K]>;
|
15
|
-
required: true;
|
16
|
-
};
|
17
|
-
};
|
18
|
-
type __VLS_WithDefaults<P, D> = {
|
19
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
20
|
-
default: D[K];
|
21
|
-
}> : P[K];
|
22
|
-
};
|
23
|
-
type __VLS_Prettify<T> = {
|
24
|
-
[K in keyof T]: T[K];
|
25
|
-
} & {};
|
@@ -1,25 +0,0 @@
|
|
1
|
-
import { IDropdownProps } from './interface/interface';
|
2
|
-
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
|
-
click: (value: string) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDropdownProps>, {}>>> & {
|
6
|
-
onClick?: ((value: string) => any) | undefined;
|
7
|
-
}, {}, {}>;
|
8
|
-
export default _default;
|
9
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
10
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
11
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
12
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
13
|
-
} : {
|
14
|
-
type: import('vue').PropType<T[K]>;
|
15
|
-
required: true;
|
16
|
-
};
|
17
|
-
};
|
18
|
-
type __VLS_WithDefaults<P, D> = {
|
19
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
20
|
-
default: D[K];
|
21
|
-
}> : P[K];
|
22
|
-
};
|
23
|
-
type __VLS_Prettify<T> = {
|
24
|
-
[K in keyof T]: T[K];
|
25
|
-
} & {};
|
@@ -1,35 +0,0 @@
|
|
1
|
-
import { IFilterProps } from './interface/interface';
|
2
|
-
import { IconNameEnum } from '../Icon/enum/enum';
|
3
|
-
|
4
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterProps>, {
|
5
|
-
iconName: IconNameEnum;
|
6
|
-
multiselect: boolean;
|
7
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
8
|
-
scroll: (value: boolean) => void;
|
9
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterProps>, {
|
10
|
-
iconName: IconNameEnum;
|
11
|
-
multiselect: boolean;
|
12
|
-
}>>> & {
|
13
|
-
onScroll?: ((value: boolean) => any) | undefined;
|
14
|
-
}, {
|
15
|
-
iconName: IconNameEnum;
|
16
|
-
multiselect: boolean;
|
17
|
-
}, {}>;
|
18
|
-
export default _default;
|
19
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
20
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
21
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
22
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
23
|
-
} : {
|
24
|
-
type: import('vue').PropType<T[K]>;
|
25
|
-
required: true;
|
26
|
-
};
|
27
|
-
};
|
28
|
-
type __VLS_WithDefaults<P, D> = {
|
29
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
30
|
-
default: D[K];
|
31
|
-
}> : P[K];
|
32
|
-
};
|
33
|
-
type __VLS_Prettify<T> = {
|
34
|
-
[K in keyof T]: T[K];
|
35
|
-
} & {};
|
@@ -1,34 +0,0 @@
|
|
1
|
-
import { ColorsEnum } from '../../common/colors';
|
2
|
-
import { IIconPorps } from './interface/interface';
|
3
|
-
|
4
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IIconPorps>, {
|
5
|
-
width: number;
|
6
|
-
height: number;
|
7
|
-
color: ColorsEnum;
|
8
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IIconPorps>, {
|
9
|
-
width: number;
|
10
|
-
height: number;
|
11
|
-
color: ColorsEnum;
|
12
|
-
}>>>, {
|
13
|
-
height: number;
|
14
|
-
width: number;
|
15
|
-
color: ColorsEnum;
|
16
|
-
}, {}>;
|
17
|
-
export default _default;
|
18
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
19
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
20
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
21
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
22
|
-
} : {
|
23
|
-
type: import('vue').PropType<T[K]>;
|
24
|
-
required: true;
|
25
|
-
};
|
26
|
-
};
|
27
|
-
type __VLS_WithDefaults<P, D> = {
|
28
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
29
|
-
default: D[K];
|
30
|
-
}> : P[K];
|
31
|
-
};
|
32
|
-
type __VLS_Prettify<T> = {
|
33
|
-
[K in keyof T]: T[K];
|
34
|
-
} & {};
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { ISearchProps } from './interface/interface';
|
2
|
-
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<ISearchProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
|
-
choosePost: (value: string) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ISearchProps>>> & {
|
6
|
-
onChoosePost?: ((value: string) => any) | undefined;
|
7
|
-
}, {}, {}>;
|
8
|
-
export default _default;
|
9
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
10
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
11
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
12
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
13
|
-
} : {
|
14
|
-
type: import('vue').PropType<T[K]>;
|
15
|
-
required: true;
|
16
|
-
};
|
17
|
-
};
|
@@ -1,36 +0,0 @@
|
|
1
|
-
import { ISearchProps } from './interface/interface';
|
2
|
-
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISearchProps>, {
|
4
|
-
showHistory: boolean;
|
5
|
-
placeholder: string;
|
6
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
7
|
-
enter: (value: string) => void;
|
8
|
-
input: (value: string) => void;
|
9
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISearchProps>, {
|
10
|
-
showHistory: boolean;
|
11
|
-
placeholder: string;
|
12
|
-
}>>> & {
|
13
|
-
onInput?: ((value: string) => any) | undefined;
|
14
|
-
onEnter?: ((value: string) => any) | undefined;
|
15
|
-
}, {
|
16
|
-
placeholder: string;
|
17
|
-
showHistory: boolean;
|
18
|
-
}, {}>;
|
19
|
-
export default _default;
|
20
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
21
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
22
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
23
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
24
|
-
} : {
|
25
|
-
type: import('vue').PropType<T[K]>;
|
26
|
-
required: true;
|
27
|
-
};
|
28
|
-
};
|
29
|
-
type __VLS_WithDefaults<P, D> = {
|
30
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
31
|
-
default: D[K];
|
32
|
-
}> : P[K];
|
33
|
-
};
|
34
|
-
type __VLS_Prettify<T> = {
|
35
|
-
[K in keyof T]: T[K];
|
36
|
-
} & {};
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { ISearchProps, resultSearchType } from './interface/interface';
|
2
|
-
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<ISearchProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
|
-
choosePost: (post: resultSearchType) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ISearchProps>>> & {
|
6
|
-
onChoosePost?: ((post: resultSearchType) => any) | undefined;
|
7
|
-
}, {}, {}>;
|
8
|
-
export default _default;
|
9
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
10
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
11
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
12
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
13
|
-
} : {
|
14
|
-
type: import('vue').PropType<T[K]>;
|
15
|
-
required: true;
|
16
|
-
};
|
17
|
-
};
|
@@ -1,21 +0,0 @@
|
|
1
|
-
import { ISliderProps } from './interface/interface';
|
2
|
-
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {}>>>, {}, {}>;
|
4
|
-
export default _default;
|
5
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
6
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
7
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
8
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
9
|
-
} : {
|
10
|
-
type: import('vue').PropType<T[K]>;
|
11
|
-
required: true;
|
12
|
-
};
|
13
|
-
};
|
14
|
-
type __VLS_WithDefaults<P, D> = {
|
15
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
16
|
-
default: D[K];
|
17
|
-
}> : P[K];
|
18
|
-
};
|
19
|
-
type __VLS_Prettify<T> = {
|
20
|
-
[K in keyof T]: T[K];
|
21
|
-
} & {};
|
@@ -1,25 +0,0 @@
|
|
1
|
-
import { ISwitchProps, IChangeSwitchEmit } from './interface/interface';
|
2
|
-
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISwitchProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
|
-
languageSwitch: (event: IChangeSwitchEmit) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISwitchProps>, {}>>> & {
|
6
|
-
onLanguageSwitch?: ((event: IChangeSwitchEmit) => any) | undefined;
|
7
|
-
}, {}, {}>;
|
8
|
-
export default _default;
|
9
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
10
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
11
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
12
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
13
|
-
} : {
|
14
|
-
type: import('vue').PropType<T[K]>;
|
15
|
-
required: true;
|
16
|
-
};
|
17
|
-
};
|
18
|
-
type __VLS_WithDefaults<P, D> = {
|
19
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
20
|
-
default: D[K];
|
21
|
-
}> : P[K];
|
22
|
-
};
|
23
|
-
type __VLS_Prettify<T> = {
|
24
|
-
[K in keyof T]: T[K];
|
25
|
-
} & {};
|
@@ -1,33 +0,0 @@
|
|
1
|
-
import { IToggleProps } from './interface/interface';
|
2
|
-
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IToggleProps>, {
|
4
|
-
disabled: boolean;
|
5
|
-
checked: boolean;
|
6
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
7
|
-
themeChange: (isChecked: boolean) => void;
|
8
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IToggleProps>, {
|
9
|
-
disabled: boolean;
|
10
|
-
checked: boolean;
|
11
|
-
}>>> & {
|
12
|
-
onThemeChange?: ((isChecked: boolean) => any) | undefined;
|
13
|
-
}, {
|
14
|
-
disabled: boolean;
|
15
|
-
}, {}>;
|
16
|
-
export default _default;
|
17
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
18
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
19
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
20
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
21
|
-
} : {
|
22
|
-
type: import('vue').PropType<T[K]>;
|
23
|
-
required: true;
|
24
|
-
};
|
25
|
-
};
|
26
|
-
type __VLS_WithDefaults<P, D> = {
|
27
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
28
|
-
default: D[K];
|
29
|
-
}> : P[K];
|
30
|
-
};
|
31
|
-
type __VLS_Prettify<T> = {
|
32
|
-
[K in keyof T]: T[K];
|
33
|
-
} & {};
|
@@ -1,31 +0,0 @@
|
|
1
|
-
import { IMenuProps } from './interface/interface';
|
2
|
-
import { MenuTypeEnum } from './enum/enum';
|
3
|
-
import { IChangeSwitchEmit } from '../Switch/interface/interface';
|
4
|
-
|
5
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IMenuProps>, {}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
6
|
-
click: (type: MenuTypeEnum) => void;
|
7
|
-
themeChange: (value: boolean) => void;
|
8
|
-
languageSwitch: (value: IChangeSwitchEmit) => void;
|
9
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IMenuProps>, {}>>> & {
|
10
|
-
onClick?: ((type: MenuTypeEnum) => any) | undefined;
|
11
|
-
onLanguageSwitch?: ((value: IChangeSwitchEmit) => any) | undefined;
|
12
|
-
onThemeChange?: ((value: boolean) => any) | undefined;
|
13
|
-
}, {}, {}>;
|
14
|
-
export default _default;
|
15
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
16
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
17
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
18
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
19
|
-
} : {
|
20
|
-
type: import('vue').PropType<T[K]>;
|
21
|
-
required: true;
|
22
|
-
};
|
23
|
-
};
|
24
|
-
type __VLS_WithDefaults<P, D> = {
|
25
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
26
|
-
default: D[K];
|
27
|
-
}> : P[K];
|
28
|
-
};
|
29
|
-
type __VLS_Prettify<T> = {
|
30
|
-
[K in keyof T]: T[K];
|
31
|
-
} & {};
|