@pksep/yui 0.1.252 → 0.1.258

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.
@@ -60,6 +60,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
60
60
  };
61
61
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
62
62
  change: (value: string | string[]) => void;
63
+ "disabled-click": (value: string) => void;
63
64
  "unmount-open": (value: boolean) => void;
64
65
  "unmount-search": (value: string) => void;
65
66
  "unmount-search-enter": (value: string) => void;
@@ -118,6 +119,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
118
119
  };
119
120
  }>> & Readonly<{
120
121
  onChange?: ((value: string | string[]) => any) | undefined;
122
+ "onDisabled-click"?: ((value: string) => any) | undefined;
121
123
  "onUnmount-open"?: ((value: boolean) => any) | undefined;
122
124
  "onUnmount-search"?: ((value: string) => any) | undefined;
123
125
  "onUnmount-search-enter"?: ((value: string) => any) | undefined;
@@ -10,10 +10,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
10
10
  dataTestid: string;
11
11
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
12
  change: (value: string) => void;
13
+ "disabled-click": (value: string) => void;
13
14
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
14
15
  dataTestid: string;
15
16
  }>>> & Readonly<{
16
17
  onChange?: ((value: string) => any) | undefined;
18
+ "onDisabled-click"?: ((value: string) => any) | undefined;
17
19
  }>, {
18
20
  dataTestid: string;
19
21
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -11,6 +11,7 @@ export interface OptionsObject {
11
11
  key: string;
12
12
  value: string;
13
13
  used?: boolean;
14
+ disabled?: boolean;
14
15
  }
15
16
  export interface IOptionsObjectWithHint extends OptionsObject {
16
17
  hint: string;
@@ -54,6 +55,7 @@ export interface IBaseFilterProps extends Omit<IOptionsProps, 'options'> {
54
55
  }
55
56
  export interface IBaseFilterEmit {
56
57
  (e: 'change', value: string | string[]): void;
58
+ (e: 'disabled-click', value: string): void;
57
59
  (e: 'unmount-open', value: boolean): void;
58
60
  (e: 'unmount-search', value: string): void;
59
61
  (e: 'unmount-search-enter', value: string): void;