@designbasekorea/ui 0.1.30 → 0.1.31

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.
package/dist/index.d.ts CHANGED
@@ -3337,7 +3337,7 @@ interface SplitViewProps {
3337
3337
  /** 분할 모드: ratio(비율) 또는 fixed(고정크기) */
3338
3338
  mode?: SplitMode;
3339
3339
  /** 패널 목록 (2개 이상) */
3340
- panels?: SplitPanel[];
3340
+ panels: SplitPanel[];
3341
3341
  /** 분할선 크기 (px) */
3342
3342
  splitterSize?: number;
3343
3343
  /** 분할선 색상 */
@@ -3350,18 +3350,6 @@ interface SplitViewProps {
3350
3350
  fullHeight?: boolean;
3351
3351
  /** 추가 CSS 클래스 */
3352
3352
  className?: string;
3353
- /** @deprecated panels 사용 권장 */
3354
- first?: React$1.ReactNode;
3355
- /** @deprecated panels 사용 권장 */
3356
- second?: React$1.ReactNode;
3357
- /** @deprecated panels[0].size 사용 권장 */
3358
- initialSplit?: number;
3359
- /** @deprecated panels[0].size 사용 권장 */
3360
- firstSize?: number;
3361
- /** @deprecated panels[].minSize 사용 권장 */
3362
- minSize?: number;
3363
- /** @deprecated panels[].maxSize 사용 권장 */
3364
- maxSize?: number;
3365
3353
  }
3366
3354
  declare const SplitView: React$1.FC<SplitViewProps>;
3367
3355