No configuration classes available.
; + } + + return ( +Class | +Description | +Documentation | +
---|---|---|
{cls.name} |
+ {cls.description} | ++ {cls.link ? ( + View Details + ) : ( + '—' + )} + | +
@@ -11,10 +11,39 @@ function CodeValue({ value }) {); } - + return
{value}
;
}
+function NestedTypeTable({ nestedTypes }) {
+ if (!nestedTypes || nestedTypes.length === 0) return null;
+
+ return (
+ Type | +Description | +
---|---|
+ {type.type === 'link' ? ( + {type.text} + ) : ( + type.name || type.type + )} + | +{type.description || type.content} | +
{param.name} |
-
- {param.type}
- {param.nestedTypes && param.nestedTypes.length > 0 && (
-
- {' ('}
- {param.nestedTypes.map((type, idx) => (
- |
- {param.required ? '✅' : '❌'} | -
- {param.description}
- {param.validValues && (
-
- Valid values:
- {param.validValues.map((value, idx) => (
-
- )}
- {param.defaultValue && (
-
- Defaults:
- )}
- |
-
{param.name} |
+
+ {param.type}
+ {hasNestedTypes && (
+
+ )}
+ {hasNestedTypes && isExpanded && (
+
+
+ )}
+ |
+ {param.required ? '✅' : '❌'} | +
+ {param.description}
+ {param.validValues && (
+
+ Valid values:
+ {param.validValues.map((value, idx) => (
+
+ )}
+ {param.defaultValue && (
+
+ Defaults:
+ )}
+ |
+