@team-monolith/cds 1.103.3 → 1.104.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.
@@ -15,11 +15,11 @@ export interface ProgressInfo {
15
15
  export interface BookProps {
16
16
  className?: string;
17
17
  /** 제목 영역 (하단에 노출되는) 텍스트 */
18
- title?: string;
18
+ title?: React.ReactNode;
19
19
  /** subtitle 영역 (상단) 텍스트 */
20
- subtitle?: string;
20
+ subtitle?: React.ReactNode;
21
21
  /** subtitleBold 영역 (상단, subtitle 영역보다 1줄 낮음) 텍스트 */
22
- subtitleBold?: string;
22
+ subtitleBold?: React.ReactNode;
23
23
  /** 숨김 상태인지 여부 */
24
24
  isHidden?: boolean;
25
25
  /** 버튼 영역 (최하단에 노출되는) */
@@ -193,8 +193,7 @@ const CoverTitle = styled("h1", {
193
193
  const BookGradient = styled.div `
194
194
  width: 200px;
195
195
  height: ${BOOK_HEIGHT}px;
196
- background:
197
- linear-gradient(
196
+ background: linear-gradient(
198
197
  180deg,
199
198
  rgba(255, 255, 255, 0) 0%,
200
199
  rgba(0, 0, 0, 0.75) 100%
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-monolith/cds",
3
- "version": "1.103.3",
3
+ "version": "1.104.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,