Skip to content

Commit

Permalink
feat: add api reports after re-export ElasticGrid component
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakutoc committed Mar 2, 2023
1 parent 65995aa commit e309ec2
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 96 deletions.
13 changes: 4 additions & 9 deletions packages/plasma-b2c/api/plasma-b2c.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ import { DropdownProps } from '@salutejs/plasma-hope';
import { DsplL } from '@salutejs/plasma-typo';
import { DsplM } from '@salutejs/plasma-typo';
import { DsplS } from '@salutejs/plasma-typo';
import { ElasticGrid } from '@salutejs/plasma-hope';
import { ElasticGridProps } from '@salutejs/plasma-hope';
import { FC } from 'react';
import type { FieldProps } from '@salutejs/plasma-core';
import { FocusProps } from '@salutejs/plasma-core';
Expand Down Expand Up @@ -155,7 +157,6 @@ import { Price } from '@salutejs/plasma-hope';
import { PriceProps } from '@salutejs/plasma-hope';
import { Progress } from '@salutejs/plasma-hope';
import { ProgressProps } from '@salutejs/plasma-hope';
import { PropsWithChildren } from 'react';
import { Radiobox } from '@salutejs/plasma-hope';
import { RadioboxProps } from '@salutejs/plasma-hope';
import { RadioGroup } from '@salutejs/plasma-hope';
Expand Down Expand Up @@ -473,15 +474,9 @@ export interface EditableProps {
value?: string;
}

// @public
export const ElasticGrid: React_2.FC<PropsWithChildren<ElasticGridProps>>;
export { ElasticGrid }

// @public (undocumented)
export interface ElasticGridProps {
gapX?: number;
gapY?: number;
minColWidth: number;
}
export { ElasticGridProps }

export { FocusProps }

Expand Down
11 changes: 11 additions & 0 deletions packages/plasma-hope/api/plasma-hope.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ import { PinProps } from '@salutejs/plasma-core';
import { Popup } from '@salutejs/plasma-core';
import { PopupProps } from '@salutejs/plasma-core';
import type { PriceProps as PriceProps_2 } from '@salutejs/plasma-core';
import { PropsWithChildren } from 'react';
import { radiuses } from '@salutejs/plasma-core';
import { Ratio } from '@salutejs/plasma-core';
import { default as React_2 } from 'react';
Expand Down Expand Up @@ -522,6 +523,16 @@ export { DsplM }

export { DsplS }

// @public
export const ElasticGrid: FC<PropsWithChildren<ElasticGridProps>>;

// @public (undocumented)
export interface ElasticGridProps {
gapX?: number;
gapY?: number;
minColWidth: number;
}

export { extractTextFrom }

export { FocusProps }
Expand Down
6 changes: 6 additions & 0 deletions packages/plasma-web/api/plasma-web.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ import { DropdownProps } from '@salutejs/plasma-hope';
import { DsplL } from '@salutejs/plasma-typo';
import { DsplM } from '@salutejs/plasma-typo';
import { DsplS } from '@salutejs/plasma-typo';
import { ElasticGrid } from '@salutejs/plasma-hope';
import { ElasticGridProps } from '@salutejs/plasma-hope';
import { extractTextFrom } from '@salutejs/plasma-core';
import { FC } from 'react';
import type { FieldProps as FieldProps_2 } from '@salutejs/plasma-core';
Expand Down Expand Up @@ -433,6 +435,10 @@ export { DsplM }

export { DsplS }

export { ElasticGrid }

export { ElasticGridProps }

export { extractTextFrom }

export { FocusProps }
Expand Down

0 comments on commit e309ec2

Please sign in to comment.