@ceed/ads 0.1.3 → 0.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ceed/ads",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -71,6 +71,5 @@
71
71
  "type": "git",
72
72
  "url": "git+ssh://git@github.com/Ecube-Labs/hds.git"
73
73
  },
74
- "packageManager": "yarn@4.1.0",
75
- "stableVersion": "0.1.0"
74
+ "packageManager": "yarn@4.1.0"
76
75
  }
@@ -1,33 +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
- 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 };
18
- declare const MotionModal: import("framer-motion").CustomDomComponent<Pick<import("@mui/base").ModalOwnProps, "children" | "container" | "open" | "disablePortal" | "keepMounted" | "disableAutoFocus" | "disableEnforceFocus" | "disableRestoreFocus" | "disableEscapeKeyDown" | "disableScrollLock" | "hideBackdrop"> & {
19
- onClose?: ((event: {}, reason: "backdropClick" | "escapeKeyDown" | "closeClick") => void) | undefined;
20
- sx?: import("@mui/joy/styles/types").SxProps | undefined;
21
- } & import("@mui/joy").ModalSlotsAndSlotProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
22
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
23
- }, "children" | "container" | "sx" | "open" | "onClose" | "disablePortal" | "keepMounted" | "disableAutoFocus" | "disableEnforceFocus" | "disableRestoreFocus" | "disableEscapeKeyDown" | "disableScrollLock" | "hideBackdrop" | keyof import("@mui/joy").ModalSlotsAndSlotProps>>;
24
- declare function Dialog(
25
- /**
26
- * NOTE: Modal에는 title prop관련 내용이 없다.
27
- * @see https://mui.com/joy-ui/api/modal/
28
- */
29
- props: Omit<React.ComponentProps<typeof MotionModal>, "title"> & Pick<DialogFrameProps, "title" | "actions" | "fullscreen" | "size">): React.JSX.Element;
30
- declare namespace Dialog {
31
- var displayName: string;
32
- }
33
- export { Dialog };
@@ -1,3 +0,0 @@
1
- import { Dialog } from "./Dialog";
2
- export * from "./Dialog";
3
- export default Dialog;
@@ -1,16 +0,0 @@
1
- /// <reference types="react" />
2
- declare const ModalDialog: import("@emotion/styled").StyledComponent<{
3
- children?: import("react").ReactNode;
4
- color?: import("@mui/types").OverridableStringUnion<import("@mui/joy").ColorPaletteProp, import("@mui/joy").ModalDialogPropsColorOverrides> | undefined;
5
- invertedColors?: boolean | undefined;
6
- maxWidth?: string | number | undefined;
7
- minWidth?: string | number | undefined;
8
- layout?: import("@mui/types").OverridableStringUnion<"center" | "fullscreen", import("@mui/joy").ModalDialogPropsLayoutOverrides> | undefined;
9
- orientation?: "horizontal" | "vertical" | undefined;
10
- size?: import("@mui/types").OverridableStringUnion<"sm" | "md" | "lg", import("@mui/joy").ModalDialogPropsSizeOverrides> | undefined;
11
- sx?: import("@mui/joy/styles/types").SxProps | undefined;
12
- variant?: import("@mui/types").OverridableStringUnion<import("@mui/joy").VariantProp, import("@mui/joy").ModalDialogPropsVariantOverrides> | undefined;
13
- } & import("@mui/joy").ModalDialogSlotsAndSlotProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
14
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
15
- }, "children" | "layout" | "color" | "maxWidth" | "minWidth" | "variant" | "sx" | "size" | "invertedColors" | "orientation" | keyof import("@mui/joy").ModalDialogSlotsAndSlotProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/joy").Theme>, {}, {}>;
16
- export { ModalDialog };
@@ -1,3 +0,0 @@
1
- import { ModalDialog } from "./ModalDialog";
2
- export * from "./ModalDialog";
3
- export default ModalDialog;