@team-monolith/cds 1.61.5 → 1.61.7

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.
@@ -192,20 +192,16 @@ const BookGradient = styled.div `
192
192
  border-radius: 8px;
193
193
  z-index: ${ZINDEX_COVER};
194
194
  `;
195
- const Buttons = styled(motion.div)(({ theme }) => css `
196
- display: flex;
197
- gap: 8px;
198
- width: 100%;
199
- padding: 0 12px 0 24px;
200
-
201
- position: absolute;
202
- bottom: 12px;
203
- z-index: ${ZINDEX_BUTTONS};
195
+ const Buttons = styled(motion.div) `
196
+ display: flex;
197
+ gap: 8px;
198
+ width: 100%;
199
+ padding: 0 12px 0 24px;
204
200
 
205
- svg {
206
- color: ${CARD_COLOR_PALETTE(theme).text};
207
- }
208
- `);
201
+ position: absolute;
202
+ bottom: 12px;
203
+ z-index: ${ZINDEX_BUTTONS};
204
+ `;
209
205
  const Shelf = styled.div(({ theme }) => css `
210
206
  height: ${SHELF_HEIGHT}px;
211
207
  width: calc(100% + 32px);
@@ -1 +1,2 @@
1
1
  export { default } from "./Book";
2
+ export * from "./Book";
@@ -1 +1,2 @@
1
1
  export { default } from "./Book";
2
+ export * from "./Book";
package/dist/index.d.ts CHANGED
@@ -4,6 +4,7 @@ export * from "./components/DecoratedNumber";
4
4
  export { default as Banner } from "./components/Banner";
5
5
  export * from "./components/Banner";
6
6
  export { default as Book } from "./components/Book";
7
+ export * from "./components/Book";
7
8
  export { default as Button } from "./components/Button";
8
9
  export * from "./components/Button";
9
10
  export { default as CheckboxInput } from "./components/CheckboxInput";
package/dist/index.js CHANGED
@@ -4,6 +4,7 @@ export * from "./components/DecoratedNumber";
4
4
  export { default as Banner } from "./components/Banner";
5
5
  export * from "./components/Banner";
6
6
  export { default as Book } from "./components/Book";
7
+ export * from "./components/Book";
7
8
  export { default as Button } from "./components/Button";
8
9
  export * from "./components/Button";
9
10
  export { default as CheckboxInput } from "./components/CheckboxInput";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-monolith/cds",
3
- "version": "1.61.5",
3
+ "version": "1.61.7",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,