2023-10-24 06:20:57 +00:00
|
|
|
---
|
|
|
|
title: SheetJS Constellation
|
|
|
|
pagination_prev: miscellany/index
|
|
|
|
---
|
|
|
|
|
|
|
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
|
|
|
|
2025-04-21 02:17:01 +00:00
|
|
|
For historical and legal reasons, many related projects have been separated into
|
|
|
|
dedicated libraries and tools. Some projects live in separate repositories and
|
|
|
|
others live in the [main repo](https://git.sheetjs.com/sheetjs/sheetjs/issues).
|
2023-10-24 06:20:57 +00:00
|
|
|
|
|
|
|
### Contents
|
|
|
|
|
|
|
|
<ul>{useCurrentSidebarCategory().items.map(globalThis.lambda = (item, index) => {
|
|
|
|
const listyle = (item.customProps?.icon) ? {
|
|
|
|
listStyleImage: `url("${item.customProps.icon}")`
|
|
|
|
} : {};
|
|
|
|
return (<li style={listyle} {...(item.customProps?.class ? {className: item.customProps.class}: {})}>
|
|
|
|
<a href={item.href}>{item.label}</a>{item.customProps?.summary && (" - " + item.customProps.summary)}
|
|
|
|
<ul>{item.items && item.items.map(lambda)}</ul>
|
|
|
|
</li>);
|
|
|
|
})}</ul>
|