sep-yui 0.1.71 → 0.1.73

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.
@@ -9,6 +9,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
9
9
  multiply: boolean;
10
10
  showClearButton: boolean;
11
11
  dataTestid: string;
12
+ disallowNull: boolean;
12
13
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
14
  change: (value: string[]) => void;
14
15
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterTagProps>, {
@@ -19,6 +20,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
19
20
  multiply: boolean;
20
21
  showClearButton: boolean;
21
22
  dataTestid: string;
23
+ disallowNull: boolean;
22
24
  }>>> & {
23
25
  onChange?: ((value: string[]) => any) | undefined;
24
26
  }, {
@@ -29,6 +31,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
29
31
  selectedValues: string[];
30
32
  maxShowCount: number;
31
33
  showClearButton: boolean;
34
+ disallowNull: boolean;
32
35
  }, {}>;
33
36
  export default _default;
34
37
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -15,4 +15,5 @@ export interface IFilterTagProps extends IDataTestIdProp {
15
15
  multiply?: boolean;
16
16
  maxShowCount?: number;
17
17
  showClearButton?: boolean;
18
+ disallowNull?: boolean;
18
19
  }