@redocly/portal-plugin-async-api 1.0.233 → 1.0.234

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/lib/styles.js CHANGED
@@ -47,5 +47,13 @@ export const StylesProvider = styled.div `
47
47
  color: var(--h1-text-color);
48
48
  text-transform: var(--h1-text-transform);
49
49
  }
50
+
51
+ .aui-root .prose h3 {
52
+ color: var(--text-color-primary);
53
+ }
54
+
55
+ .aui-root .text-gray-800 {
56
+ color: var(--text-color-primary);
57
+ }
50
58
  `;
51
59
  //# sourceMappingURL=styles.js.map
package/lib/styles.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"styles.js","sourceRoot":"","sources":["../src/styles.tsx"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,mBAAmB,CAAC;AAEvC,MAAM,CAAC,MAAM,cAAc,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgDvC,CAAC"}
1
+ {"version":3,"file":"styles.js","sourceRoot":"","sources":["../src/styles.tsx"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,mBAAmB,CAAC;AAEvC,MAAM,CAAC,MAAM,cAAc,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwDvC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/portal-plugin-async-api",
3
- "version": "1.0.233",
3
+ "version": "1.0.234",
4
4
  "description": "Async API plugin for @redocly/portal",
5
5
  "type": "module",
6
6
  "exports": {
@@ -34,8 +34,8 @@
34
34
  "peerDependencies": {
35
35
  "react": "^18.0.0",
36
36
  "react-dom": "^18.0.0",
37
- "@redocly/realm": "0.92.4",
38
- "@redocly/theme": "0.39.0"
37
+ "@redocly/realm": "0.92.5",
38
+ "@redocly/theme": "0.39.1"
39
39
  },
40
40
  "peerDependenciesMeta": {
41
41
  "@redocly/realm": {
package/src/styles.tsx CHANGED
@@ -48,4 +48,12 @@ export const StylesProvider = styled.div`
48
48
  color: var(--h1-text-color);
49
49
  text-transform: var(--h1-text-transform);
50
50
  }
51
+
52
+ .aui-root .prose h3 {
53
+ color: var(--text-color-primary);
54
+ }
55
+
56
+ .aui-root .text-gray-800 {
57
+ color: var(--text-color-primary);
58
+ }
51
59
  `;