jp.ui.app.ds 1.0.8 → 1.0.9

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
@@ -366,14 +366,14 @@ declare const TableCardsRow: ({ cards }: CardsRowProps) => React$1.JSX.Element;
366
366
  type SummaryRequisiteItem = {
367
367
  label: string;
368
368
  value: string;
369
+ size: string;
370
+ type: string;
369
371
  };
370
372
  type TableSummaryProps = {
371
373
  requisites: Array<SummaryRequisiteItem>;
372
374
  requisitesTimer?: number;
373
- pot?: number;
374
- roomMessage?: string;
375
375
  };
376
- declare const TableSummary: (props: TableSummaryProps) => React$1.JSX.Element | undefined;
376
+ declare const TableSummary: ({ requisites, requisitesTimer }: TableSummaryProps) => React$1.JSX.Element;
377
377
 
378
378
  declare const WorkflowButtonsStyled: _emotion_styled.StyledComponent<{
379
379
  theme?: _emotion_react.Theme;