@pksep/yui 0.1.189 → 0.1.191
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.
- package/dist/components/Badges/Badges.vue.d.ts +1 -1
- package/dist/components/Badges/enum/enum.d.ts +2 -1
- package/dist/components/Icon/icons.d.ts +15 -0
- package/dist/components/Select/BaseFilter.vue.d.ts +3 -0
- package/dist/components/Select/interface/interface.d.ts +1 -0
- package/dist/sep-yui.es.ts +9888 -9821
- package/dist/sep-yui.umd.ts +50 -23
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -123,3 +123,18 @@ export declare const notDelivered: IVectorIcon;
|
|
|
123
123
|
export declare const delivered: IVectorIcon;
|
|
124
124
|
export declare const zoomMinus: IVectorIcon;
|
|
125
125
|
export declare const zoomPlus: IVectorIcon;
|
|
126
|
+
export declare const timeAttention: IVectorIcon;
|
|
127
|
+
export declare const timeError: {
|
|
128
|
+
name: string;
|
|
129
|
+
style: string;
|
|
130
|
+
fill: string;
|
|
131
|
+
path: string;
|
|
132
|
+
viewbox: string;
|
|
133
|
+
};
|
|
134
|
+
export declare const materials: {
|
|
135
|
+
name: string;
|
|
136
|
+
style: string;
|
|
137
|
+
fill: string;
|
|
138
|
+
path: string;
|
|
139
|
+
viewbox: string;
|
|
140
|
+
};
|
|
@@ -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 {
|