@ceed/ads 0.0.93 → 0.0.95

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.
@@ -0,0 +1,7 @@
1
+ export declare const useCurrencySetting: (currencyCode?: "usd" | "krw") => {
2
+ symbol: string;
3
+ thousandSeparator: string;
4
+ decimalSeparator: string;
5
+ placeholder: string;
6
+ fixedDecimalScale: boolean;
7
+ };
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  declare const Modal: import("framer-motion").CustomDomComponent<Pick<import("@mui/base").ModalOwnProps, "children" | "container" | "open" | "disablePortal" | "keepMounted" | "disableAutoFocus" | "disableEnforceFocus" | "disableRestoreFocus" | "disableEscapeKeyDown" | "disableScrollLock" | "hideBackdrop"> & {
3
- onClose?: ((event: {}, reason: "backdropClick" | "escapeKeyDown" | "closeClick") => void) | undefined;
3
+ onClose?: ((event: {}, reason: "escapeKeyDown" | "backdropClick" | "closeClick") => void) | undefined;
4
4
  sx?: import("@mui/joy/styles/types").SxProps | undefined;
5
5
  } & import("@mui/joy").ModalSlotsAndSlotProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
6
6
  ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
2
  import { type SelectProps } from "@mui/joy";
3
3
  import { type MotionProps } from "framer-motion";
4
+ import { SelectValue } from "@mui/base";
4
5
  declare const Option: import("framer-motion").CustomDomComponent<{
5
6
  color?: import("@mui/types").OverridableStringUnion<import("@mui/joy").ColorPaletteProp, import("@mui/joy").OptionPropsColorOverrides> | undefined;
6
7
  children?: React.ReactNode;
@@ -13,10 +14,16 @@ declare const Option: import("framer-motion").CustomDomComponent<{
13
14
  ref?: ((instance: HTMLLIElement | null) => void) | React.RefObject<HTMLLIElement> | null | undefined;
14
15
  }, "label" | "children" | "color" | "variant" | "sx" | "disabled" | "value" | keyof import("@mui/joy").OptionSlotsAndSlotProps>>;
15
16
  export { Option };
16
- declare function Select<OptionValue extends {}, Multiple extends boolean = false>(props: {
17
+ declare function Select<OptionValue extends string, Multiple extends boolean = false>(props: {
17
18
  label?: string;
18
19
  helperText?: string;
19
20
  error?: boolean;
21
+ onChange?: (event: {
22
+ target: {
23
+ name?: string;
24
+ value?: SelectValue<OptionValue, Multiple>;
25
+ };
26
+ }) => void;
20
27
  } & SelectProps<OptionValue, Multiple> & MotionProps): React.JSX.Element;
21
28
  declare namespace Select {
22
29
  var displayName: string;
@@ -8,7 +8,7 @@ declare const Tabs: import("framer-motion").CustomDomComponent<Omit<import("@mui
8
8
  ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
9
9
  }, "children" | "color" | "direction" | "defaultValue" | "className" | "onChange" | "variant" | "sx" | "size" | "orientation" | "value" | "selectionFollowsFocus" | keyof import("@mui/joy").TabsSlotsAndSlotProps>>;
10
10
  export { Tabs };
11
- declare const Tab: import("framer-motion").CustomDomComponent<{
11
+ declare const Tab: import("@emotion/styled").StyledComponent<Omit<{
12
12
  action?: React.Ref<{
13
13
  focusVisible(): void;
14
14
  }> | undefined;
@@ -24,7 +24,7 @@ declare const Tab: import("framer-motion").CustomDomComponent<{
24
24
  variant?: import("@mui/types").OverridableStringUnion<import("@mui/joy").VariantProp, import("@mui/joy").TabPropsVariantOverrides> | undefined;
25
25
  } & import("@mui/joy").TabSlotsAndSlotProps & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
26
26
  ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
27
- }, "color" | "onChange" | "variant" | "sx" | "disabled" | "orientation" | "value" | "action" | "disableIndicator" | "indicatorPlacement" | "indicatorInset" | keyof import("@mui/joy").TabSlotsAndSlotProps>>;
27
+ }, "color" | "onChange" | "variant" | "sx" | "disabled" | "orientation" | "value" | "action" | "disableIndicator" | "indicatorPlacement" | "indicatorInset" | keyof import("@mui/joy").TabSlotsAndSlotProps> & import("framer-motion").MotionProps, "ref"> & React.RefAttributes<HTMLElement | SVGElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/joy").Theme>, {}, {}>;
28
28
  export { Tab };
29
29
  declare const TabList: import("framer-motion").CustomDomComponent<{
30
30
  color?: import("@mui/types").OverridableStringUnion<import("@mui/joy").ColorPaletteProp, import("@mui/joy").TabListPropsColorOverrides> | undefined;