Skip to content

Commit

Permalink
docs(plasma-b2c, plasma-web, sdds-serv): api reports regenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
denivladislav committed Jun 25, 2024
1 parent 918ab32 commit 0b2112e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
8 changes: 6 additions & 2 deletions packages/plasma-b2c/api/plasma-b2c.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ import { TabsContext } from '@salutejs/plasma-new-hope/styled-components';
import { TabsControllerProps } from '@salutejs/plasma-new-hope/styled-components';
import { TabsProps } from '@salutejs/plasma-new-hope/styled-components';
import { TextareaHTMLAttributes } from '@salutejs/plasma-core';
import { TextAreaProps } from '@salutejs/plasma-hope';
import type { TextAreaProps as TextAreaProps_2 } from '@salutejs/plasma-hope';
import { TextareaResize } from '@salutejs/plasma-core';
import { TextFieldPrimitiveValue } from '@salutejs/plasma-new-hope/types/components/TextField/TextField.types';
import { TextfieldPrimitiveValue } from '@salutejs/plasma-new-hope/types/components/Range/Range.types';
Expand Down Expand Up @@ -1993,7 +1993,11 @@ export const TextArea: ForwardRefExoticComponent<TextAreaProps & RefAttributes<H

export { TextareaHTMLAttributes }

export { TextAreaProps }
// @public (undocumented)
export interface TextAreaProps extends TextAreaProps_2 {
// @deprecated (undocumented)
resize?: 'none' | 'both' | 'horizontal' | 'vertical';
}

export { TextareaResize }

Expand Down
8 changes: 6 additions & 2 deletions packages/plasma-web/api/plasma-web.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ import { TabsContext } from '@salutejs/plasma-new-hope/styled-components';
import { TabsControllerProps } from '@salutejs/plasma-new-hope/styled-components';
import { TabsProps } from '@salutejs/plasma-new-hope/styled-components';
import { TextareaHTMLAttributes } from '@salutejs/plasma-core';
import { TextAreaProps } from '@salutejs/plasma-hope';
import type { TextAreaProps as TextAreaProps_2 } from '@salutejs/plasma-hope';
import { TextareaResize } from '@salutejs/plasma-core';
import { TextFieldPrimitiveValue } from '@salutejs/plasma-new-hope/types/components/TextField/TextField.types';
import { TextfieldPrimitiveValue } from '@salutejs/plasma-new-hope/types/components/Range/Range.types';
Expand Down Expand Up @@ -1995,7 +1995,11 @@ export const TextArea: ForwardRefExoticComponent<TextAreaProps & RefAttributes<H

export { TextareaHTMLAttributes }

export { TextAreaProps }
// @public (undocumented)
export interface TextAreaProps extends TextAreaProps_2 {
// @deprecated (undocumented)
resize?: 'none' | 'both' | 'horizontal' | 'vertical';
}

export { TextareaResize }

Expand Down
22 changes: 22 additions & 0 deletions packages/sdds-serv/api/sdds-serv.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ import { TabItemRefs } from '@salutejs/plasma-new-hope/styled-components';
import { TabsContext } from '@salutejs/plasma-new-hope/styled-components';
import { TabsControllerProps } from '@salutejs/plasma-new-hope/styled-components';
import { TabsProps } from '@salutejs/plasma-new-hope/styled-components';
import { TextareaHTMLAttributes } from '@salutejs/plasma-new-hope/types/types';
import { TextAreaPropsExtends } from '@salutejs/plasma-new-hope/types/components/TextArea/TextArea.types';
import { TextFieldPrimitiveValue } from '@salutejs/plasma-new-hope/types/components/TextField/TextField.types';
import { TextfieldPrimitiveValue } from '@salutejs/plasma-new-hope/types/components/Range/Range.types';
import { TextFieldProps } from '@salutejs/plasma-new-hope/styled-components';
Expand Down Expand Up @@ -1478,6 +1480,26 @@ export { TabsControllerProps }

export { TabsProps }

// @public
export const TextArea: FunctionComponent<PropsType< {
size: {
xs: string;
s: string;
m: string;
l: string;
};
view: {
default: string;
primary: string;
positive: string;
warning: string;
negative: string;
};
disabled: {
true: string;
};
}> & TextareaHTMLAttributes<HTMLTextAreaElement> & TextAreaPropsExtends & RefAttributes<HTMLTextAreaElement>>;

// @public
export const TextField: FunctionComponent<PropsType< {
view: {
Expand Down

0 comments on commit 0b2112e

Please sign in to comment.