ingred-ui 23.11.1 → 23.12.0

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.
@@ -30,6 +30,7 @@ export default _default;
30
30
  export declare const Overview: StoryObj<typeof ContextMenu2>;
31
31
  export declare const Triggers: StoryObj<typeof ContextMenu2>;
32
32
  export declare const WithButton: StoryObj<typeof ContextMenu2>;
33
+ export declare const WithInfo: StoryObj<typeof ContextMenu2>;
33
34
  export declare const WithCheck: StoryObj<typeof ContextMenu2>;
34
35
  export declare const WithCheckAsRadio: StoryObj<typeof ContextMenu2>;
35
36
  export declare const WithSwitch: StoryObj<typeof ContextMenu2>;
@@ -5,6 +5,7 @@ type Theme = {
5
5
  export declare const ContextMenu2ButtonItem: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<{
6
6
  pressed?: boolean | undefined;
7
7
  prepend?: ReactNode;
8
+ append?: ReactNode;
8
9
  children: ReactNode;
9
10
  closeOnClick?: boolean | undefined;
10
11
  color?: "danger" | undefined;
@@ -7,8 +7,9 @@ export declare const ContextMenu2CheckItem: import("styled-components").StyledCo
7
7
  checked?: boolean | undefined;
8
8
  closeOnChange?: boolean | undefined;
9
9
  prepend?: ReactNode;
10
+ append?: ReactNode;
10
11
  children: ReactNode;
11
12
  onChange?: ((checked: boolean) => void) | undefined;
12
13
  color?: "danger" | undefined;
13
- } & React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>, import("styled-components").DefaultTheme, Theme, never>;
14
+ } & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange"> & React.RefAttributes<HTMLButtonElement>>, import("styled-components").DefaultTheme, Theme, never>;
14
15
  export {};
@@ -16,10 +16,11 @@ export declare const StyledContextMenu2CheckItem: import("styled-components").St
16
16
  checked?: boolean | undefined;
17
17
  closeOnChange?: boolean | undefined;
18
18
  prepend?: import("react").ReactNode;
19
+ append?: import("react").ReactNode;
19
20
  children: import("react").ReactNode;
20
21
  onChange?: ((checked: boolean) => void) | undefined;
21
22
  color?: "danger" | undefined;
22
- } & import("react").ButtonHTMLAttributes<HTMLButtonElement> & import("react").RefAttributes<HTMLButtonElement>>, import("styled-components").DefaultTheme, {
23
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange"> & import("react").RefAttributes<HTMLButtonElement>>, import("styled-components").DefaultTheme, {
23
24
  checked?: boolean | undefined;
24
25
  colors?: "danger" | undefined;
25
26
  }, never>;