@pksep/yui 0.1.190 → 0.1.192

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.
@@ -20,8 +20,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
20
20
  }>, {
21
21
  dataTestid: string;
22
22
  type: BadgesTypeEnum;
23
- choosed: boolean;
24
23
  disabled: boolean;
24
+ choosed: boolean;
25
25
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
26
26
  export default _default;
27
27
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -8,5 +8,6 @@ export declare enum BadgesTypeEnum {
8
8
  pink = "pink",
9
9
  violet = "violet",
10
10
  yellow = "yellow",
11
- contrastBlue = "contrast-blue"
11
+ contrastBlue = "contrast-blue",
12
+ disabled = "disabled"
12
13
  }
@@ -21,6 +21,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
21
21
  };
22
22
  disabled: {
23
23
  type: import('vue').PropType<boolean>;
24
+ default: boolean;
24
25
  };
25
26
  options: {
26
27
  type: import('vue').PropType<OptionsObject[] | import('./interface/interface').IOptionsObjectWithHint[]>;
@@ -78,6 +79,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
78
79
  };
79
80
  disabled: {
80
81
  type: import('vue').PropType<boolean>;
82
+ default: boolean;
81
83
  };
82
84
  options: {
83
85
  type: import('vue').PropType<OptionsObject[] | import('./interface/interface').IOptionsObjectWithHint[]>;
@@ -122,6 +124,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
122
124
  "onUnmount-pagination"?: (() => any) | undefined;
123
125
  }>, {
124
126
  dataTestid: string;
127
+ disabled: boolean;
125
128
  tooltipPosition: import('../Tooltip/interface/interface').TTooltipPosition;
126
129
  defaultOption: string;
127
130
  isOpened: boolean;
@@ -49,6 +49,7 @@ export interface IBaseFilterProps extends Omit<IOptionsProps, 'options'> {
49
49
  isUseAnchor?: boolean;
50
50
  isOpened?: boolean;
51
51
  tooltipPosition?: TTooltipPosition;
52
+ disabled?: boolean;
52
53
  onUnmountPagination?: () => void;
53
54
  }
54
55
  export interface IBaseFilterEmit {