Add changeset + report
Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/canon': patch
|
||||
---
|
||||
|
||||
Add new Collapsible component for Canon.
|
||||
@@ -6,6 +6,7 @@
|
||||
import { Avatar as Avatar_2 } from '@base-ui-components/react/avatar';
|
||||
import { Breakpoint as Breakpoint_2 } from '@backstage/canon';
|
||||
import { ChangeEvent } from 'react';
|
||||
import { Collapsible as Collapsible_2 } from '@base-ui-components/react/collapsible';
|
||||
import { Context } from 'react';
|
||||
import type { CSSProperties } from 'react';
|
||||
import { FC } from 'react';
|
||||
@@ -207,6 +208,25 @@ export interface CheckboxProps {
|
||||
value?: string;
|
||||
}
|
||||
|
||||
// @public
|
||||
export const Collapsible: {
|
||||
Root: ForwardRefExoticComponent<
|
||||
Omit<Collapsible_2.Root.Props & RefAttributes<HTMLDivElement>, 'ref'> &
|
||||
RefAttributes<HTMLDivElement>
|
||||
>;
|
||||
Trigger: ForwardRefExoticComponent<
|
||||
Omit<
|
||||
Collapsible_2.Trigger.Props & RefAttributes<HTMLButtonElement>,
|
||||
'ref'
|
||||
> &
|
||||
RefAttributes<HTMLButtonElement>
|
||||
>;
|
||||
Panel: ForwardRefExoticComponent<
|
||||
Omit<Collapsible_2.Panel.Props & RefAttributes<HTMLButtonElement>, 'ref'> &
|
||||
RefAttributes<HTMLButtonElement>
|
||||
>;
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
export type Columns = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'auto';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user