sep-yui 0.0.71 → 0.0.72

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.
@@ -41,6 +41,7 @@ export declare const closeVision: IVectorIcon;
41
41
  export declare const deleteSmall: IVectorIcon;
42
42
  export declare const openVision: IVectorIcon;
43
43
  export declare const trash: IVectorIcon;
44
+ export declare const trashSmall: IVectorIcon;
44
45
  export declare const printer: IVectorIcon;
45
46
  export declare const uploadCloud: IVectorIcon;
46
47
  export declare const archive: IVectorIcon;
@@ -9,3 +9,6 @@ export interface IInputProps {
9
9
  hideClearButton?: boolean;
10
10
  autocomplete?: string;
11
11
  }
12
+ export interface IInputEmit {
13
+ (e: 'update:modelValue', value: string): void;
14
+ }
@@ -4,11 +4,14 @@ import { IconNameEnum } from '../Icon/enum/enum';
4
4
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
5
5
  iconName: IconNameEnum;
6
6
  options: () => never[];
7
+ tooltip: string;
7
8
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
8
9
  iconName: IconNameEnum;
9
10
  options: () => never[];
11
+ tooltip: string;
10
12
  }>>>, {
11
13
  options: IPopoverOption[];
14
+ tooltip: string;
12
15
  iconName: IconNameEnum;
13
16
  }, {}>;
14
17
  export default _default;
@@ -8,6 +8,7 @@ export interface IPopoverOption {
8
8
  export interface IPopoverProps {
9
9
  iconName?: IconNameEnum;
10
10
  options: IPopoverOption[];
11
+ tooltip?: string;
11
12
  }
12
13
  export interface IPopoverHoverProps {
13
14
  position: PopoverHoverEnum;