sep-yui 0.0.47 → 0.0.49

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.
@@ -0,0 +1,3 @@
1
+ export interface IDragAndDropProps {
2
+ singleFileMode?: boolean;
3
+ }
@@ -1,18 +1,14 @@
1
- import { ColorsEnum } from '../../common/colors';
2
1
  import { IIconPorps } from './interface/interface';
3
2
 
4
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IIconPorps>, {
5
4
  width: number;
6
5
  height: number;
7
- color: ColorsEnum;
8
6
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IIconPorps>, {
9
7
  width: number;
10
8
  height: number;
11
- color: ColorsEnum;
12
9
  }>>>, {
13
10
  height: number;
14
11
  width: number;
15
- color: ColorsEnum;
16
12
  }, {}>;
17
13
  export default _default;
18
14
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -5,7 +5,7 @@ export interface IIconPorps {
5
5
  height?: number;
6
6
  width?: number;
7
7
  name: IconNameEnum;
8
- color?: ColorsEnum;
8
+ color?: ColorsEnum | string;
9
9
  }
10
10
  export interface IVectorIcon {
11
11
  name: string;
@@ -2,15 +2,18 @@ import { ISearchProps } from './interface/interface';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISearchProps>, {
4
4
  placeholder: string;
5
+ height: string;
5
6
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
7
  enter: (value: string) => void;
7
8
  input: (value: string) => void;
8
9
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISearchProps>, {
9
10
  placeholder: string;
11
+ height: string;
10
12
  }>>> & {
11
13
  onInput?: ((value: string) => any) | undefined;
12
14
  onEnter?: ((value: string) => any) | undefined;
13
15
  }, {
16
+ height: string;
14
17
  placeholder: string;
15
18
  }, {}>;
16
19
  export default _default;
@@ -1,9 +1,9 @@
1
- import { ISearchProps, resultSearchType } from './interface/interface';
1
+ import { ISearchProps, ResultSearchType } from './interface/interface';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<ISearchProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
- choosePost: (post: resultSearchType) => void;
4
+ choosePost: (post: ResultSearchType) => void;
5
5
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ISearchProps>>> & {
6
- onChoosePost?: ((post: resultSearchType) => any) | undefined;
6
+ onChoosePost?: ((post: ResultSearchType) => any) | undefined;
7
7
  }, {}, {}>;
8
8
  export default _default;
9
9
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,6 +1,6 @@
1
1
  import { IconNameEnum } from '../../Icon/enum/enum';
2
2
 
3
- export type resultSearchType = {
3
+ export type ResultSearchType = {
4
4
  icon: IconNameEnum;
5
5
  nameArea: string;
6
6
  searchResult: string;
@@ -11,9 +11,11 @@ export interface ISearchProps {
11
11
  showHistory?: boolean;
12
12
  global?: boolean;
13
13
  options?: string[];
14
- globalResultsFunction?: () => resultSearchType[];
14
+ globalResultsFunction?: () => ResultSearchType[];
15
15
  isShowResult?: boolean;
16
16
  isShowList?: boolean;
17
17
  isShowButtonHistory?: boolean;
18
18
  searchValue?: string;
19
+ width?: string;
20
+ height?: string;
19
21
  }
@@ -1,6 +1,7 @@
1
1
  export interface ISwitchProps {
2
2
  items: string[];
3
3
  defaultValue?: string;
4
+ isIcons?: boolean;
4
5
  }
5
6
  export interface IChangeSwitchEmit {
6
7
  index: number;
package/dist/main.d.ts CHANGED
@@ -1 +1 @@
1
- export {};
1
+