@wix/design-system
Version:
@wix/design-system
16 lines • 599 B
TypeScript
import { APPEND_TO } from '../PopoverNext/PopoverNext.constants';
import { ValuesOf } from '../utils/typeUtils';
export declare const PLACEMENT: {
readonly top: "top";
readonly bottom: "bottom";
readonly right: "right";
readonly left: "left";
};
export declare const TEXT_SIZES: {
readonly small: "small";
readonly medium: "medium";
};
export type PopoverMenuPlacement = ValuesOf<typeof PLACEMENT>;
export type PopoverMenuAppendTo = ValuesOf<typeof APPEND_TO>;
export type PopoverMenuTextSize = ValuesOf<typeof TEXT_SIZES>;
//# sourceMappingURL=PopoverMenu.constants.d.ts.map