| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import type { DefaultRow } from './table/defaults';
- import type { TooltipInstance } from 'element-plus/es/components/tooltip';
- import type { Placement } from 'element-plus/es/components/popper';
- import type { PropType, WritableComputedRef } from 'vue';
- import type { TableColumnCtx } from './table-column/defaults';
- import type { Store } from './store';
- declare const _default: import("vue").DefineComponent<{
- placement: {
- type: PropType<Placement>;
- default: string;
- };
- store: {
- type: PropType<Store<DefaultRow>>;
- };
- column: {
- type: PropType<TableColumnCtx<DefaultRow>>;
- };
- upDataColumn: {
- type: FunctionConstructor;
- };
- appendTo: {
- readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
- readonly required: false;
- readonly validator: ((val: unknown) => boolean) | undefined;
- __epPropKey: true;
- };
- }, {
- tooltipVisible: import("vue").Ref<boolean>;
- multiple: import("vue").ComputedRef<boolean>;
- filterClassName: import("vue").ComputedRef<string>;
- filteredValue: WritableComputedRef<string[]>;
- filterValue: WritableComputedRef<string>;
- filters: import("vue").ComputedRef<import("./table-column/defaults").Filters | undefined>;
- handleConfirm: () => void;
- handleReset: () => void;
- handleSelect: (_filterValue?: string | null) => void;
- isPropAbsent: (prop: unknown) => prop is null | undefined;
- isActive: (filter: {
- value: string;
- text: string;
- }) => boolean;
- t: import("element-plus/es/hooks").Translator;
- ns: {
- namespace: import("vue").ComputedRef<string>;
- b: (blockSuffix?: string) => string;
- e: (element?: string) => string;
- m: (modifier?: string) => string;
- be: (blockSuffix?: string, element?: string) => string;
- em: (element?: string, modifier?: string) => string;
- bm: (blockSuffix?: string, modifier?: string) => string;
- bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
- is: {
- (name: string, state: boolean | undefined): string;
- (name: string): string;
- };
- cssVar: (object: Record<string, string>) => Record<string, string>;
- cssVarName: (name: string) => string;
- cssVarBlock: (object: Record<string, string>) => Record<string, string>;
- cssVarBlockName: (name: string) => string;
- };
- showFilterPanel: (e: MouseEvent) => void;
- hideFilterPanel: () => void;
- popperPaneRef: import("vue").ComputedRef<HTMLElement | undefined>;
- tooltip: import("vue").Ref<TooltipInstance | null>;
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
- placement: {
- type: PropType<Placement>;
- default: string;
- };
- store: {
- type: PropType<Store<DefaultRow>>;
- };
- column: {
- type: PropType<TableColumnCtx<DefaultRow>>;
- };
- upDataColumn: {
- type: FunctionConstructor;
- };
- appendTo: {
- readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
- readonly required: false;
- readonly validator: ((val: unknown) => boolean) | undefined;
- __epPropKey: true;
- };
- }>>, {
- placement: Placement;
- }>;
- export default _default;
|