@ap-gen/ui 1.0.10 → 1.0.11
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/icon/index.d.ts +0 -1
- package/dist/components/popover/index.d.ts +1 -2
- package/dist/components/tooltip/index.d.ts +2 -1
- package/dist/index.js +427 -429
- package/dist/index.js.map +1 -1
- package/esm/index.mjs +427 -429
- package/esm/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -443,7 +443,6 @@ declare const ICONS: {
|
|
|
443
443
|
ship_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
444
444
|
switchIcon: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
445
445
|
ship: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
446
|
-
sparkles: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
447
446
|
snow: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
448
447
|
snowing_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
449
448
|
snowing: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
@@ -12,6 +12,5 @@ export type PopoverProps = {
|
|
|
12
12
|
primaryButton?: React.ReactNode;
|
|
13
13
|
secondaryButton?: React.ReactNode;
|
|
14
14
|
onChange?: (value: string) => void;
|
|
15
|
-
style?: React.CSSProperties;
|
|
16
15
|
};
|
|
17
|
-
export declare function Popover({ children, type, options, headline, primaryButton, secondaryButton, onChange, value, getOptionDisabled,
|
|
16
|
+
export declare function Popover({ children, type, options, headline, primaryButton, secondaryButton, onChange, value, getOptionDisabled, }: PopoverProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -6,6 +6,7 @@ type TooltipProps = {
|
|
|
6
6
|
description: string;
|
|
7
7
|
headline?: string;
|
|
8
8
|
closeIcon?: boolean;
|
|
9
|
+
maxWidth?: number | string;
|
|
9
10
|
};
|
|
10
|
-
export declare function Tooltip({ variant, tail, description, headline, closeIcon, }: TooltipProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare function Tooltip({ variant, tail, description, headline, closeIcon, maxWidth, }: TooltipProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
11
12
|
export {};
|