sellmate-design-system-react 7.0.0 → 7.1.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.
- package/dist/components/SStepper/README.md +17 -0
- package/dist/components/SStepper/SStepper.d.ts +21 -1
- package/dist/components/SStepper/index.d.ts +1 -1
- package/dist/components/SStepper/stepper.config.d.ts +40 -0
- package/dist/index.cjs +413 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +413 -45
- package/dist/index.js.map +1 -1
- package/dist/llms-full.txt +16 -0
- package/dist/styles.css +3 -0
- package/package.json +1 -1
package/dist/llms-full.txt
CHANGED
|
@@ -3606,15 +3606,31 @@ function OrderModal({ open, onOpenChange, onClose, modalRef, orderId }: OrderMod
|
|
|
3606
3606
|
| `items` | `SStepperItem[]` | — | 단계 목록 |
|
|
3607
3607
|
| `value?` | `string` | — | 현재 활성 단계 value |
|
|
3608
3608
|
| `size?` | `SStepperSize` | `'sm'` | 크기 |
|
|
3609
|
+
| `vertical?` | `boolean` | `false` | 세로형 여부 |
|
|
3610
|
+
| `clickable?` | `boolean` | — | 단계 클릭 가능 여부. 미지정 시 가로형=false, 세로형=true |
|
|
3609
3611
|
| `ariaLabel?` | `string` | `'진행 단계'` | 접근성 레이블 |
|
|
3610
3612
|
| `className?` | `string` | — | |
|
|
3611
3613
|
| `style?` | `CSSProperties` | — | |
|
|
3612
3614
|
|
|
3615
|
+
#### Events
|
|
3616
|
+
|
|
3617
|
+
| Event | Type | Description |
|
|
3618
|
+
|-------|------|-------------|
|
|
3619
|
+
| `onValueChange` | `(value: string, item: SStepperItem, index: number) => void` | 단계 선택 시 호출 |
|
|
3620
|
+
|
|
3621
|
+
#### Methods (ref)
|
|
3622
|
+
|
|
3623
|
+
| Method | Type | Description |
|
|
3624
|
+
|--------|------|-------------|
|
|
3625
|
+
| `showItemTooltip` | `() => void` | error 아이템 중 첫 번째에 툴팁을 연다. error 아이템이 없으면 아무 일도 일어나지 않는다. |
|
|
3626
|
+
| `hideItemTooltip` | `() => void` | 열려있는 커스텀 툴팁을 닫는다. 활성 단계(value prop)가 바뀌면 별도 호출 없이도 자동으로 닫힌다. |
|
|
3627
|
+
|
|
3613
3628
|
## Dependencies
|
|
3614
3629
|
|
|
3615
3630
|
### Depends on
|
|
3616
3631
|
|
|
3617
3632
|
- [SIcon](../SIcon)
|
|
3633
|
+
- [STooltip](../STooltip)
|
|
3618
3634
|
|
|
3619
3635
|
### Graph
|
|
3620
3636
|
|
package/dist/styles.css
CHANGED