jp.ui.app.ds 1.0.6 → 1.0.8

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
@@ -136,14 +136,14 @@ type componentProps = {
136
136
  declare const CardProduct: (props: componentProps) => React$1.JSX.Element;
137
137
 
138
138
  type CardTableProps = {
139
- position: 'horizontal' | 'vertical';
140
- size: 3 | 6;
141
- tablePlayers: Array<{
142
- position: number;
139
+ orientation: 'horizontal' | 'vertical';
140
+ size: number;
141
+ seats: Array<{
142
+ seatNumber: number;
143
143
  player: JSX$1.Element;
144
144
  }>;
145
145
  };
146
- declare const CardTable: ({ tablePlayers, position, size }: CardTableProps) => JSX$1.Element;
146
+ declare const CardTable: ({ seats, orientation, size }: CardTableProps) => JSX$1.Element;
147
147
 
148
148
  type GameCardType = {
149
149
  id: number;