Update report.api.md

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2025-12-24 09:23:45 +01:00
parent b12ad76bd0
commit 8610fe8df8
+37 -5
View File
@@ -195,7 +195,15 @@ export const BoxDefinition: {
'maxHeight',
];
readonly dataAttributes: {
readonly surface: readonly ['0', '1', '2', '3'];
readonly surface: readonly [
'0',
'1',
'2',
'3',
'danger',
'warning',
'success',
];
};
};
@@ -664,7 +672,15 @@ export const FlexDefinition: {
'direction',
];
readonly dataAttributes: {
readonly surface: readonly ['0', '1', '2', '3'];
readonly surface: readonly [
'0',
'1',
'2',
'3',
'danger',
'warning',
'success',
];
};
};
@@ -726,7 +742,15 @@ export const GridDefinition: {
'py',
];
readonly dataAttributes: {
readonly surface: readonly ['0', '1', '2', '3'];
readonly surface: readonly [
'0',
'1',
'2',
'3',
'danger',
'warning',
'success',
];
};
};
@@ -737,7 +761,15 @@ export const GridItemDefinition: {
};
readonly utilityProps: ['colSpan', 'colEnd', 'colStart', 'rowSpan'];
readonly dataAttributes: {
readonly surface: readonly ['0', '1', '2', '3'];
readonly surface: readonly [
'0',
'1',
'2',
'3',
'danger',
'warning',
'success',
];
};
};
@@ -1251,7 +1283,7 @@ export const SubmenuTrigger: (props: SubmenuTriggerProps) => JSX_2.Element;
export interface SubmenuTriggerProps extends SubmenuTriggerProps_2 {}
// @public
export type Surface = '0' | '1' | '2' | '3';
export type Surface = '0' | '1' | '2' | '3' | 'danger' | 'warning' | 'success';
// @public (undocumented)
export const Switch: ForwardRefExoticComponent<