@openfin/ui-library 0.9.0-alpha.1672940195 → 0.9.0-alpha.1674571475

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.
@@ -6,9 +6,10 @@ export declare type SecondaryButtonProps = {
6
6
  disabled?: boolean;
7
7
  onClick: (event: React.MouseEvent, closeSecondaryButtonsPanel?: () => void) => void;
8
8
  };
9
- export declare type ExpandableButtonProps = Omit<ButtonProps, "shape"> & {
9
+ export declare type ExpandableButtonProps = Omit<ButtonProps, 'shape'> & {
10
10
  secondaryButtons?: SecondaryButtonProps[];
11
11
  closePanelOnSecondaryButtonClick?: boolean;
12
12
  expandDirection?: ExpandDirection;
13
+ stretchExpandablePanel?: boolean;
13
14
  };
14
15
  export declare const ExpandableButton: (props: ExpandableButtonProps) => JSX.Element;
@@ -8,5 +8,6 @@ export declare type ExpandablePanelProps = {
8
8
  buttonSize?: ButtonSizeType;
9
9
  expandDirection: ExpandDirection;
10
10
  panelId?: string;
11
+ stretch?: boolean;
11
12
  };
12
13
  export declare const ExpandablePanel: (props: ExpandablePanelProps) => JSX.Element;
@@ -1,2 +1,2 @@
1
1
  import { ExpandDirection } from './expandDirection';
2
- export declare const setupExpandablePanel: (node: HTMLDivElement, expandDirection: ExpandDirection) => void;
2
+ export declare const setupExpandablePanel: (node: HTMLDivElement, expandDirection: ExpandDirection, stretch?: boolean) => void;
@@ -131,6 +131,7 @@ export declare const UnitPx: {
131
131
  * The border radius values supported in the design system
132
132
  */
133
133
  export declare const Radius: {
134
+ readonly xsmall: "2px";
134
135
  readonly small: "4px";
135
136
  readonly base: "8px";
136
137
  readonly large: "24px";