@up42/up-components 0.12.5 → 0.12.6
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.
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
export interface CodeBoxProps {
|
|
3
3
|
text: string;
|
|
4
4
|
label?: string;
|
|
5
|
+
'data-testid'?: string;
|
|
5
6
|
}
|
|
6
7
|
/**
|
|
7
8
|
* Documentation: https://up-components.up42.dev/?path=/docs/data-display-codebox
|
|
8
9
|
*/
|
|
9
|
-
export declare const CodeBox: ({ label, text }: CodeBoxProps) => JSX.Element;
|
|
10
|
+
export declare const CodeBox: ({ label, text, "data-testid": dataTestId }: CodeBoxProps) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -2014,11 +2014,12 @@ declare const DocumentationPopover: ({ content, linkPath, linkText, heading, id
|
|
|
2014
2014
|
interface CodeBoxProps {
|
|
2015
2015
|
text: string;
|
|
2016
2016
|
label?: string;
|
|
2017
|
+
'data-testid'?: string;
|
|
2017
2018
|
}
|
|
2018
2019
|
/**
|
|
2019
2020
|
* Documentation: https://up-components.up42.dev/?path=/docs/data-display-codebox
|
|
2020
2021
|
*/
|
|
2021
|
-
declare const CodeBox: ({ label, text }: CodeBoxProps) => JSX.Element;
|
|
2022
|
+
declare const CodeBox: ({ label, text, "data-testid": dataTestId }: CodeBoxProps) => JSX.Element;
|
|
2022
2023
|
|
|
2023
2024
|
declare type TableProps = MUIGlobalOmit<TableProps$1>;
|
|
2024
2025
|
/**
|