@stoplight/elements-core 9.0.12 → 9.0.13-beta-0.2
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/components/Docs/Docs.d.ts +14 -1
- package/components/Docs/HttpOperation/Body.d.ts +9 -1
- package/components/Docs/HttpOperation/HttpOperation.d.ts +6 -2
- package/components/Docs/HttpOperation/LazySchemaTreePreviewer.d.ts +34 -0
- package/components/Docs/HttpOperation/Request.d.ts +6 -0
- package/components/Docs/HttpOperation/Responses.d.ts +12 -1
- package/index.esm.js +479 -27
- package/index.js +480 -27
- package/index.mjs +479 -27
- package/package.json +1 -1
- package/styled.d.ts +10 -3
package/package.json
CHANGED
package/styled.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
import * as PropTypes from 'prop-types';
|
|
1
2
|
import * as React from 'react';
|
|
2
|
-
export declare
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
export declare class Styled extends React.Component {
|
|
4
|
+
static childContextTypes: {
|
|
5
|
+
blueprintPortalClassName: PropTypes.Requireable<string>;
|
|
6
|
+
};
|
|
7
|
+
getChildContext(): {
|
|
8
|
+
blueprintPortalClassName: string;
|
|
9
|
+
};
|
|
10
|
+
render(): JSX.Element;
|
|
11
|
+
}
|
|
5
12
|
export declare function withStyles<T>(Component: React.ComponentType<T>): React.FC<T>;
|