@pantheon-systems/pds-toolkit-react 1.7.1 → 1.8.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.
- package/_dist/components/ComparisonList/ComparisonList.d.ts +5 -1
- package/_dist/components/panels/ExpansionPanel/ExpansionPanel.d.ts +5 -1
- package/_dist/css/component-css/pds-comparison-list.css +1 -1
- package/_dist/css/component-css/pds-expansion-panel.css +1 -1
- package/_dist/css/component-css/pds-index.css +2 -2
- package/_dist/css/layout-css/pds-app-layout.css +2 -0
- package/_dist/css/layout-css/pds-dashboard-global.css +8 -0
- package/_dist/css/layout-css/pds-dashboard-inner.css +1 -0
- package/_dist/css/layout-css/pds-docs-layout.css +1 -0
- package/_dist/css/layout-css/pds-flex-container.css +1 -0
- package/_dist/css/layout-css/pds-index.css +9 -0
- package/_dist/css/layout-css/pds-stepper-layout.css +1 -0
- package/_dist/css/layout-css/pds-three-item-layout.css +1 -0
- package/_dist/css/layout-css/pds-two-item-layout.css +1 -0
- package/_dist/css/pds-components.css +2 -2
- package/_dist/docs/mcp-url-detector.d.ts +7 -1
- package/_dist/index.css +1 -1
- package/_dist/index.js +849 -831
- package/_dist/index.js.map +1 -1
- package/package.json +5 -6
|
@@ -6,7 +6,7 @@ export declare function MCPUrl(): import("react/jsx-runtime").JSX.Element;
|
|
|
6
6
|
* Component that displays a code block with the appropriate MCP configuration
|
|
7
7
|
*/
|
|
8
8
|
export declare function MCPConfigBlock({ type }: {
|
|
9
|
-
type: 'cli' | 'json';
|
|
9
|
+
type: 'cli' | 'json' | 'desktop';
|
|
10
10
|
}): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
/**
|
|
12
12
|
* Component that displays a curl command for testing the MCP endpoint
|
|
@@ -14,6 +14,12 @@ export declare function MCPConfigBlock({ type }: {
|
|
|
14
14
|
export declare function MCPCurlExample({ example, }: {
|
|
15
15
|
example: 'initialize' | 'tools-list' | 'list-docs' | 'get-component';
|
|
16
16
|
}): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
/**
|
|
18
|
+
* Component that displays the starter template download location.
|
|
19
|
+
* In local/PR environments, shows the file path in the repo.
|
|
20
|
+
* In production, shows a download link to the hosted file.
|
|
21
|
+
*/
|
|
22
|
+
export declare function MCPStarterTemplateDownload(): import("react/jsx-runtime").JSX.Element;
|
|
17
23
|
/**
|
|
18
24
|
* Component that displays environment-specific note
|
|
19
25
|
*/
|