jp.ui.app.ds 1.0.16 → 1.0.17

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
@@ -349,8 +349,6 @@ type CardDropTableProps$1 = {
349
349
  onFailDrop?: (event: DragAndDropEvent) => void;
350
350
  onDragItemClick?: (event: DragAndDropEvent) => void;
351
351
  onDropZoneClick?: (event: DragAndDropZoneClick) => void;
352
- onMoveButtonClick?: (id: string) => void;
353
- onCloseClick?: () => void;
354
352
  tableSize: number;
355
353
  tableOrientation: 'horizontal' | 'vertical';
356
354
  tableSeats: Array<{
@@ -362,6 +360,8 @@ type CardDropTableProps$1 = {
362
360
  cardsPanelCards: Array<GameCardType>;
363
361
  cardsPanelIsOpen: boolean;
364
362
  cardsPanelMoves: Array<PlayerMoveButtonsType$1>;
363
+ cardsPanelOnMoveButtonClick?: (id: string) => void;
364
+ cardsPanelOnCloseClick?: () => void;
365
365
  summaryRequisites?: Array<SummaryRequisiteItem>;
366
366
  summaryRequisitesTimer?: number;
367
367
  };