@up42/up-components 0.10.15 → 0.11.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.
|
@@ -14,12 +14,9 @@ export declare type DocumentationPopoverProps = {
|
|
|
14
14
|
* i.e: `/getting-started/workflows/catalog`
|
|
15
15
|
*/
|
|
16
16
|
linkPath?: string;
|
|
17
|
-
|
|
18
|
-
* Contentful entry ID.
|
|
19
|
-
*/
|
|
20
|
-
contentfulId: string;
|
|
17
|
+
id?: string;
|
|
21
18
|
};
|
|
22
19
|
/**
|
|
23
20
|
* Documentation: https://up-components.up42.dev/?path=/docs/patterns-popovers-documentationpopover
|
|
24
21
|
*/
|
|
25
|
-
export declare const DocumentationPopover: ({ content, linkPath, linkText, heading,
|
|
22
|
+
export declare const DocumentationPopover: ({ content, linkPath, linkText, heading, id }: DocumentationPopoverProps) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -1865,15 +1865,12 @@ declare type DocumentationPopoverProps = {
|
|
|
1865
1865
|
* i.e: `/getting-started/workflows/catalog`
|
|
1866
1866
|
*/
|
|
1867
1867
|
linkPath?: string;
|
|
1868
|
-
|
|
1869
|
-
* Contentful entry ID.
|
|
1870
|
-
*/
|
|
1871
|
-
contentfulId: string;
|
|
1868
|
+
id?: string;
|
|
1872
1869
|
};
|
|
1873
1870
|
/**
|
|
1874
1871
|
* Documentation: https://up-components.up42.dev/?path=/docs/patterns-popovers-documentationpopover
|
|
1875
1872
|
*/
|
|
1876
|
-
declare const DocumentationPopover: ({ content, linkPath, linkText, heading,
|
|
1873
|
+
declare const DocumentationPopover: ({ content, linkPath, linkText, heading, id }: DocumentationPopoverProps) => JSX.Element;
|
|
1877
1874
|
|
|
1878
1875
|
interface CodeBoxProps {
|
|
1879
1876
|
text: string;
|