@workday/canvas-kit-docs 11.0.0-alpha.726-next.0 → 11.0.0-alpha.760-next.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/es6/docgen/docParser.js +1 -1
- package/dist/es6/lib/docs.js +7079 -2908
- package/dist/es6/lib/specs.js +26 -0
- package/dist/mdx/11.0-UPGRADE-GUIDE.mdx +233 -37
- package/dist/mdx/preview-react/status-indicator/examples/Overflow.tsx +1 -1
- package/dist/mdx/react/card/card.mdx +10 -18
- package/dist/mdx/react/card/examples/CustomStyles.tsx +21 -0
- package/dist/mdx/react/card/examples/Stencils.tsx +108 -0
- package/dist/mdx/react/icon/examples/Overview.tsx +2 -3
- package/package.json +7 -7
- package/dist/mdx/react/card/examples/Depth.tsx +0 -20
- package/dist/mdx/react/card/examples/Padding.tsx +0 -21
|
@@ -805,7 +805,7 @@ function _getValueFromNode(parser, node) {
|
|
|
805
805
|
const type = checker.getTypeAtLocation(node);
|
|
806
806
|
if (symbol) {
|
|
807
807
|
if (type.getFlags() & ts.TypeFlags.Instantiable) {
|
|
808
|
-
symbol.name;
|
|
808
|
+
symbol.name;
|
|
809
809
|
// It is a generic type
|
|
810
810
|
return { kind: 'generic', name: symbol === null || symbol === void 0 ? void 0 : symbol.name };
|
|
811
811
|
}
|