Home > widget-integration > ViewMoreState

ViewMoreState type

Signature:

export type ViewMoreState = {
	label: string;
	values: any[];
	numberViewMore: number;
	enabled: boolean;
	isExpanded: boolean;
	showMoreType: string;
	dom: HTMLElement;
	viewMoreBtnDom: HTMLElement | null;
	option: any;
	swatchShape?: string;
	swatchType?: string;
	showDocCount?: boolean;
	selectedKeys: Record<string, boolean>;
	classNameSelected: string;
	classNameUnselected: string;
	lastClickedTime: number;
};