@docsvision/webclient 5.17.7 → 5.17.8-beta.1

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.
@@ -52,6 +52,8 @@ export declare class CommentsParams extends BaseControlParams {
52
52
  useHtml?: boolean;
53
53
  /** Редактируется ли комментарий в данный момент. */
54
54
  isCommentEditing?: boolean;
55
+ /** Максимальный размер изображения в килобайтах для режима редактирования через HTML. */
56
+ maxImageSize?: number;
55
57
  services?: $CommentsController & $CurrentEmployeeId & $CardInfo & $LayoutInfo & $EditOperationStore & $DeviceType & $Locale & $IsIE & $ExperimentalFeature & $LayoutStaffController;
56
58
  }
57
59
  /** @internal */
@@ -15,7 +15,6 @@ export declare class CommentsImpl extends BaseControlImpl<CommentsParams, Commen
15
15
  private editInput;
16
16
  private htmlEditorHeight;
17
17
  private commentBlockWidth;
18
- private maxImageSize;
19
18
  private popoverImageDisplay;
20
19
  constructor(props: CommentsParams, state: CommentsState);
21
20
  componentDidMount(): void;
@@ -3,7 +3,7 @@ import { ISignatureListItemDataModel } from "@docsvision/webclient/Legacy/ISigna
3
3
  import { LoadingState } from "@docsvision/webclient/System/LoadingState";
4
4
  import React from "react";
5
5
  import { $LayoutDocumentController, $PowerOfAttorneyApiController, $SignatureController } from "@docsvision/webclient/Generated/DocsVision.WebClient.Controllers";
6
- import { $WebViewIOSEnabled } from "@docsvision/webclient/StandardServices";
6
+ import { $ApplicationSettings, $WebViewIOSEnabled } from "@docsvision/webclient/StandardServices";
7
7
  import { Popover } from "@docsvision/webclient/Helpers/PopoverHelpers/Popover";
8
8
  import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
9
9
  import { ISignatureListItemDetailDataModel } from "@docsvision/webclient/Legacy/ISignatureListItemDetailDataModel";
@@ -20,7 +20,7 @@ export interface IFileSignListDialogProps {
20
20
  onInit?: () => void;
21
21
  /** Вызывается при закрытии окна со списком подписей. */
22
22
  onClose?: () => void;
23
- services: $DocumentCardController & $SignatureController & $LayoutDocumentController & $WebViewIOSEnabled & $RequestManager & $CloudSignature & $PowerOfAttorneyApiController & $Resources & $MessageBox & $Router;
23
+ services: $DocumentCardController & $SignatureController & $LayoutDocumentController & $ApplicationSettings & $WebViewIOSEnabled & $RequestManager & $CloudSignature & $PowerOfAttorneyApiController & $Resources & $MessageBox & $Router;
24
24
  }
25
25
  /** @internal */
26
26
  export interface IFileSignListDialogState {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docsvision/webclient",
3
- "version": "5.17.7",
3
+ "version": "5.17.8-beta.1",
4
4
  "description": "Type definitions for DocsVision WebClient scripts and extensions.",
5
5
  "main": "index.js",
6
6
  "scripts": {},