ingred-ui 23.16.0 → 23.17.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.
@@ -29,6 +29,7 @@ export declare const SelectedPanelHeading: import("styled-components").StyledCom
29
29
  export declare const ItemActions: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
30
30
  export declare const DualListBox2Item: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
31
31
  export declare const DualListBox2SelectedItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
32
+ export declare const DualListBox2SelectedItemButton: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
32
33
  export declare const DualListBox2SelectedLabel: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
33
34
  export declare const AccordionHeader: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
34
35
  export declare const AccordionButton: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
@@ -13,6 +13,7 @@ export type TypographyProps = {
13
13
  size?: FontSize;
14
14
  weight?: FontWeight;
15
15
  lineHeight?: string;
16
+ trimVertical?: boolean;
16
17
  className?: string;
17
18
  children: React.ReactNode;
18
19
  };
@@ -5,6 +5,7 @@ type ContainerProps = {
5
5
  fontSize: string;
6
6
  weight: FontWeight;
7
7
  lineHeight: string;
8
+ $trimVertical?: boolean;
8
9
  };
9
10
  export declare const Container: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, ContainerProps, never>;
10
11
  export {};