@ceed/ads 0.1.2 → 0.1.3
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/Dialog/Dialog.d.ts +16 -1
- package/dist/components/Modal/Modal.d.ts +44 -9
- package/dist/components/index.d.ts +10 -12
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/framer/index.js +25 -25
- package/package.json +1 -1
- package/dist/components/DialogFrame/DialogFrame.d.ts +0 -17
- package/dist/components/DialogFrame/index.d.ts +0 -3
- package/dist/components/ModalFrame/ModalFrame.d.ts +0 -24
- package/dist/components/ModalFrame/index.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import ModalDialog from "../ModalDialog";
|
|
3
|
-
/**
|
|
4
|
-
* NOTE: ModalDialog에는 title prop관련 내용이 없다.
|
|
5
|
-
* @see https://mui.com/joy-ui/api/modal-dialog/
|
|
6
|
-
*/
|
|
7
|
-
export type DialogFrameProps = Omit<React.ComponentProps<typeof ModalDialog>, "title"> & {
|
|
8
|
-
title?: React.ReactNode;
|
|
9
|
-
children: React.ReactNode;
|
|
10
|
-
actions?: React.ReactNode;
|
|
11
|
-
fullscreen?: boolean;
|
|
12
|
-
};
|
|
13
|
-
/**
|
|
14
|
-
* @deprecated v1.0.0에서 완전히 제거될 예정
|
|
15
|
-
*/
|
|
16
|
-
declare const DialogFrame: React.ForwardRefExoticComponent<Omit<DialogFrameProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
-
export { DialogFrame };
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import ModalDialog from "../ModalDialog";
|
|
3
|
-
declare const ModalClose: import("@emotion/styled").StyledComponent<Omit<{
|
|
4
|
-
color?: import("@mui/types").OverridableStringUnion<import("@mui/joy").ColorPaletteProp, import("@mui/joy").ModalClosePropsColorOverrides> | undefined;
|
|
5
|
-
size?: import("@mui/types").OverridableStringUnion<"sm" | "md" | "lg", import("@mui/joy").ModalClosePropsSizeOverrides> | undefined;
|
|
6
|
-
sx?: import("@mui/joy/styles/types").SxProps | undefined;
|
|
7
|
-
variant?: import("@mui/types").OverridableStringUnion<import("@mui/joy").VariantProp, import("@mui/joy").ModalClosePropsVariantOverrides> | undefined;
|
|
8
|
-
} & import("@mui/joy").ModalCloseSlotsAndSlotProps & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
9
|
-
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
10
|
-
}, "color" | "variant" | "sx" | "size" | keyof import("@mui/joy").ModalCloseSlotsAndSlotProps> & import("framer-motion").MotionProps, "ref"> & React.RefAttributes<HTMLElement | SVGElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/joy").Theme>, {}, {}>;
|
|
11
|
-
export { ModalClose };
|
|
12
|
-
/**
|
|
13
|
-
* NOTE: ModalDialog에는 title prop관련 내용이 없다.
|
|
14
|
-
* @see https://mui.com/joy-ui/api/modal-dialog/
|
|
15
|
-
*/
|
|
16
|
-
export type ModalFrameProps = Omit<React.ComponentProps<typeof ModalDialog>, "title"> & {
|
|
17
|
-
title?: React.ReactNode;
|
|
18
|
-
children: React.ReactNode;
|
|
19
|
-
};
|
|
20
|
-
/**
|
|
21
|
-
* @deprecated v1.0.0에서 완전히 제거될 예정
|
|
22
|
-
*/
|
|
23
|
-
declare const ModalFrame: React.ForwardRefExoticComponent<Omit<ModalFrameProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
24
|
-
export { ModalFrame };
|