jp.ui.app.ds 1.0.17 → 1.0.19

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
@@ -253,6 +253,7 @@ declare const Skeleton: _emotion_styled.StyledComponent<{
253
253
  } & SkeletonType, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
254
254
 
255
255
  type SummaryRequisiteItem = {
256
+ id: string;
256
257
  label: string;
257
258
  value: string;
258
259
  size: string;
@@ -325,8 +326,9 @@ type CardTableProps = {
325
326
  seatNumber: number;
326
327
  player: JSX$1.Element;
327
328
  }>;
329
+ children?: React$1.ReactNode;
328
330
  };
329
- declare const CardTable: ({ seats, orientation, size }: CardTableProps) => JSX$1.Element;
331
+ declare const CardTable: ({ seats, orientation, size, children }: CardTableProps) => JSX$1.Element;
330
332
 
331
333
  type GameCardType = {
332
334
  id: number;
@@ -359,6 +361,7 @@ type CardDropTableProps$1 = {
359
361
  cardPairSlots: Array<CardPair>;
360
362
  cardsPanelCards: Array<GameCardType>;
361
363
  cardsPanelIsOpen: boolean;
364
+ cardsPanelBackdropVisible: boolean;
362
365
  cardsPanelMoves: Array<PlayerMoveButtonsType$1>;
363
366
  cardsPanelOnMoveButtonClick?: (id: string) => void;
364
367
  cardsPanelOnCloseClick?: () => void;