@pronto-tools-and-more/components 11.9.0 → 11.11.0
Sign up to get free protection for your applications and to get access to all the features.
package/dist/main.js
CHANGED
@@ -313,6 +313,11 @@ var BaseBookmarkButton = ({
|
|
313
313
|
);
|
314
314
|
};
|
315
315
|
|
316
|
+
// src/parts/BaseSideBar/BaseSideBar.tsx
|
317
|
+
var BaseSideBar = ({ children }) => {
|
318
|
+
return /* @__PURE__ */ React.createElement("aside", { className: "SideBar" }, ...children);
|
319
|
+
};
|
320
|
+
|
316
321
|
// src/parts/Button/Button.tsx
|
317
322
|
var Button = ({
|
318
323
|
message,
|
@@ -1579,6 +1584,7 @@ export {
|
|
1579
1584
|
ArticleAuthors,
|
1580
1585
|
ArticleList,
|
1581
1586
|
BaseBookmarkButton,
|
1587
|
+
BaseSideBar,
|
1582
1588
|
Button,
|
1583
1589
|
CategoryList,
|
1584
1590
|
Collection,
|
@@ -2,6 +2,7 @@ export * from "../ArticleAuthors/ArticleAuthors.tsx";
|
|
2
2
|
export * from "../ArticleList/ArticleList.tsx";
|
3
3
|
export * from "../ArticleListItemRenderer/ArticleListItemRenderer.ts";
|
4
4
|
export * from "../BaseBookmarkButton/BaseBookmarkButton.tsx";
|
5
|
+
export * from "../BaseSideBar/BaseSideBar.tsx";
|
5
6
|
export * from "../Button/Button.tsx";
|
6
7
|
export * from "../CategoryList/CategoryList.tsx";
|
7
8
|
export * from "../Collection/Collection.tsx";
|