sep-yui 0.1.0 → 0.1.2

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.
@@ -7,6 +7,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
7
7
  inputMessage: string;
8
8
  modelValue: string;
9
9
  hideClearButton: boolean;
10
+ modelModifiers: () => {};
10
11
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
12
  "update:modelValue": (value: string) => void;
12
13
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputProps>, {
@@ -15,12 +16,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
15
16
  inputMessage: string;
16
17
  modelValue: string;
17
18
  hideClearButton: boolean;
19
+ modelModifiers: () => {};
18
20
  }>>> & {
19
21
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
20
22
  }, {
21
23
  type: TextFieldEnum;
22
24
  required: boolean;
23
25
  modelValue: string;
26
+ modelModifiers: object;
24
27
  inputMessage: string;
25
28
  hideClearButton: boolean;
26
29
  }, {}>;
@@ -8,6 +8,7 @@ export interface IInputProps {
8
8
  modelValue?: string;
9
9
  hideClearButton?: boolean;
10
10
  autocomplete?: string;
11
+ modelModifiers: object;
11
12
  }
12
13
  export interface IInputEmit {
13
14
  (e: 'update:modelValue', value: string): void;
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
6
6
  min: number;
7
7
  max: number;
8
8
  size: SizesEnum;
9
+ modelModifiers: () => {};
9
10
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
11
  "update:modelValue": (value: number) => void;
11
12
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputNumberProps>, {
@@ -13,11 +14,13 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
13
14
  min: number;
14
15
  max: number;
15
16
  size: SizesEnum;
17
+ modelModifiers: () => {};
16
18
  }>>> & {
17
19
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
18
20
  }, {
19
21
  size: SizesEnum.small | SizesEnum.medium;
20
22
  modelValue: number;
23
+ modelModifiers: object;
21
24
  min: number;
22
25
  max: number;
23
26
  }, {}>;
@@ -7,6 +7,7 @@ export interface IInputNumberProps {
7
7
  min?: number;
8
8
  max?: number;
9
9
  size?: SizesEnum.small | SizesEnum.medium;
10
+ modelModifiers: object;
10
11
  }
11
12
  export interface IState {
12
13
  isPressed: boolean;
@@ -5,11 +5,15 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
5
5
  iconName: IconNameEnum;
6
6
  options: () => never[];
7
7
  tooltip: string;
8
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ close: () => void;
10
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
9
11
  iconName: IconNameEnum;
10
12
  options: () => never[];
11
13
  tooltip: string;
12
- }>>>, {
14
+ }>>> & {
15
+ onClose?: (() => any) | undefined;
16
+ }, {
13
17
  options: IPopoverOption[];
14
18
  tooltip: string;
15
19
  iconName: IconNameEnum;
@@ -6,6 +6,7 @@ export interface IPopoverOption {
6
6
  function: () => void;
7
7
  }
8
8
  export interface IPopoverProps {
9
+ isShow?: boolean;
9
10
  iconName?: IconNameEnum;
10
11
  options: IPopoverOption[];
11
12
  tooltip?: string;
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
6
6
  modelValue: string;
7
7
  readonly: boolean;
8
8
  type: TextareaTypeEnum;
9
+ modelModifiers: () => {};
9
10
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
11
  "update:modelValue": (value: string) => void;
11
12
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITextareaProps>, {
@@ -13,12 +14,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
13
14
  modelValue: string;
14
15
  readonly: boolean;
15
16
  type: TextareaTypeEnum;
17
+ modelModifiers: () => {};
16
18
  }>>> & {
17
19
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
18
20
  }, {
19
21
  type: TextareaTypeEnum;
20
22
  required: boolean;
21
23
  modelValue: string;
24
+ modelModifiers: object;
22
25
  readonly: boolean;
23
26
  }, {}>;
24
27
  export default _default;
@@ -8,4 +8,5 @@ export interface ITextareaProps {
8
8
  modelValue: string;
9
9
  readonly?: boolean;
10
10
  type?: TextareaTypeEnum;
11
+ modelModifiers: object;
11
12
  }