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 +4 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/just_poker/table-summary/table-summary.d.ts +1 -0
- package/dist/just_poker_cards/card-drag-and-drop-table/card-bottom-selection-panel/card-bottom-selection-panel.d.ts +1 -0
- package/dist/just_poker_cards/card-drag-and-drop-table/card-bottom-selection-panel/card-bottom-sheet.d.ts +1 -0
- package/dist/just_poker_cards/card-drag-and-drop-table/card-drag-and-drop-table.d.ts +1 -0
- package/dist/just_poker_cards/card-drag-and-drop-table/card-drag-and-drop-table.style.d.ts +2 -6
- package/dist/just_poker_cards/card-table/card-table.d.ts +3 -1
- package/dist/just_poker_cards/card-table/seat-coord.d.ts +1 -1
- package/dist/mock/players.d.ts +2 -0
- package/dist/mock/table-players.d.ts +20 -0
- package/package.json +1 -1
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;
|