Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@idui/react-popover

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@idui/react-popover - npm Package Compare versions

Comparing version
3.1.0
to
3.1.1
+1
-1
package.json
{
"name": "@idui/react-popover",
"version": "3.1.0",
"version": "3.1.1",
"description": "React Popover Component",

@@ -5,0 +5,0 @@ "author": "kaprisa57@gmail.com",

import { FlattenSimpleInterpolation } from 'styled-components';
interface PopoverStyledContainerProps {
zIndex?: number;
width?: string;
height?: string;
positionStyles?: FlattenSimpleInterpolation;
withArrow?: boolean;
arrowSize?: number;
arrowStyles?: FlattenSimpleInterpolation;
isCheckingContentDimensions?: boolean;
}
export declare const Container: import("styled-components").StyledComponent<import("framer-motion").ForwardRefComponent<HTMLDivElement, import("framer-motion").HTMLMotionProps<"div">>, any, PopoverStyledContainerProps, never>;
interface PopoverInnerContentProps {
maxHeight?: string;
maxWidth?: string;
}
export declare const Inner: import("styled-components").StyledComponent<"div", any, PopoverInnerContentProps, never>;
export {};
import React from 'react';
import { ComponentMeta, ComponentStory } from '@storybook/react';
import Popover from './PopoverContainer';
declare const _default: ComponentMeta<React.ForwardRefExoticComponent<import("./types").PopoverProps & React.RefAttributes<HTMLElement>>>;
export default _default;
export declare const Playground: ComponentStory<typeof Popover>;
export declare const DraggablePopover: ComponentStory<typeof Popover>;
export declare const Slider: ComponentStory<typeof Popover>;
export declare const PopoverWithLongContent: ComponentStory<typeof Popover>;
export declare const PopoverWithFunctionChildren: ComponentStory<typeof Popover>;
export declare const PopoverWithFocusTrigger: ComponentStory<typeof Popover>;
export declare const PopoverWithCustomSimpleAnimation: ComponentStory<typeof Popover>;
export declare const StyledPopover: ComponentStory<typeof Popover>;
export declare const PopoverWithCustomArrow: ComponentStory<typeof Popover>;
export declare const RenderOnPlace: ComponentStory<typeof Popover>;
export declare const CloseOnScroll: ComponentStory<typeof Popover>;
import { ComponentStory, ComponentMeta } from '@storybook/react';
import Tooltip from './Tooltip';
declare const _default: ComponentMeta<typeof Tooltip>;
export default _default;
export declare const SimpleTooltip: ComponentStory<typeof Tooltip>;