@redocly/theme-experimental 0.82.2-rc.1 → 0.82.2-rc.3

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.
@@ -1,11 +1,12 @@
1
1
  import React from 'react';
2
2
  import styled from 'styled-components';
3
+
4
+ import type { ResolvedNavItem } from '@redocly/config';
5
+
3
6
  import { Link } from '@redocly/theme/components/Link/Link';
4
7
  import { H3 } from '@redocly/theme/components/Typography/H3';
5
8
  import { useThemeHooks } from '@redocly/theme/core/hooks';
6
9
 
7
- import type { ResolvedNavItem } from '@redocly/config';
8
-
9
10
  export interface CardProps {
10
11
  title?: string;
11
12
  icon?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/theme-experimental",
3
- "version": "0.82.2-rc.1",
3
+ "version": "0.82.2-rc.3",
4
4
  "description": "Experimental UI components lib",
5
5
  "keywords": [
6
6
  "theme-experimental",
@@ -77,8 +77,8 @@
77
77
  "webpack": "5.88.2"
78
78
  },
79
79
  "dependencies": {
80
- "@redocly/config": "0.5.0",
81
- "@redocly/theme": "0.82.2-rc.1"
80
+ "@redocly/config": "0.82.2-rc.3",
81
+ "@redocly/theme": "0.82.2-rc.3"
82
82
  },
83
83
  "scripts": {
84
84
  "start": "npm-run-all --parallel storybook storybook:tokens:watch",
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import styled from 'styled-components';
3
- import { CodeBlock } from '@redocly/theme/components/CodeBlock/CodeBlock';
4
3
 
4
+ import { CodeBlock } from '@redocly/theme/components/CodeBlock/CodeBlock';
5
5
  import { CodeGuideContext, useCodeGuideHighlightLines } from '@portal/CodeGuide';
6
6
 
7
7
  export function CodeDemo() {
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import styled from 'styled-components';
3
- import { Markdown } from '@redocly/theme/components/Markdown/Markdown';
4
3
 
4
+ import { Markdown } from '@redocly/theme/components/Markdown/Markdown';
5
5
  import { CodeGuideProvider } from '@portal/CodeGuide';
6
6
 
7
7
  import { CodeDemo } from './CodeDemo';