@docsvision/webclient 6.1.0 → 6.1.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.
Files changed (49) hide show
  1. package/BackOffice/AuthenticationKindsView.d.ts +1 -1
  2. package/BackOffice/ChildTasksPerformingImpl.d.ts +3 -3
  3. package/BackOffice/CommandMenuComponent.d.ts +1 -1
  4. package/BackOffice/DepartmentFilterViewComponents.d.ts +1 -1
  5. package/BackOffice/DirectoryDesignerRow.d.ts +4 -4
  6. package/BackOffice/DirectoryDesignerRowImpl.d.ts +2 -2
  7. package/BackOffice/DirectorySearchResultView.d.ts +1 -1
  8. package/BackOffice/DisplayPerformersImpl.d.ts +1 -1
  9. package/BackOffice/EmailButtonView.d.ts +1 -1
  10. package/BackOffice/ExistingCardLinkDialog.d.ts +1 -1
  11. package/BackOffice/NumeratorImpl.d.ts +1 -1
  12. package/BackOffice/PartnerBase.d.ts +2 -2
  13. package/BackOffice/PartnerDirectoryBase.d.ts +3 -3
  14. package/BackOffice/PrintButtonView.d.ts +1 -1
  15. package/BackOffice/StaffDirectoryItems.d.ts +1 -1
  16. package/BackOffice/StaffDirectoryItemsImpl.d.ts +1 -1
  17. package/BackOffice/TaskListItemComponent.d.ts +1 -1
  18. package/BackOffice/TasksTableView.d.ts +3 -3
  19. package/Generated/DocsVision.WebClient.Controllers.d.ts +55 -30
  20. package/Generated/DocsVision.WebClient.Models.d.ts +160 -284
  21. package/Helpers/ComboBox/ComboBoxElement.d.ts +1 -1
  22. package/Helpers/ComboBox/ComboBoxTitle.d.ts +1 -1
  23. package/Helpers/CustomTree/CustomTreeNode.d.ts +1 -1
  24. package/Helpers/InputMask/InputMaskView.d.ts +1 -1
  25. package/Helpers/InputMask/components/InputMaskField.d.ts +1 -1
  26. package/Helpers/SliderCheckBox/SliderCheckBox.d.ts +1 -1
  27. package/Legacy/BasicGridHtmlBuilder.d.ts +1 -1
  28. package/Platform/BaseMainMenuItemImpl.d.ts +2 -2
  29. package/Platform/ButtonPositionsSelection.d.ts +1 -1
  30. package/Platform/CardLink.d.ts +6 -6
  31. package/Platform/CardLinkImpl.d.ts +1 -1
  32. package/Platform/CertificateSettingsView.d.ts +1 -1
  33. package/Platform/CommentFileImpl.d.ts +1 -1
  34. package/Platform/FilePreviewImpl.d.ts +1 -1
  35. package/Platform/FolderViewItemsImpl.d.ts +8 -8
  36. package/Platform/ListCheckbox.d.ts +1 -1
  37. package/Platform/LoaderDialog.d.ts +1 -1
  38. package/Platform/ScanDialogService.d.ts +1 -1
  39. package/Platform/SearchTextInput.d.ts +1 -1
  40. package/Platform/SecurityDescriptorDialog.d.ts +1 -1
  41. package/Platform/TextListInputView.d.ts +2 -2
  42. package/Platform/UserProfileDialog.d.ts +1 -1
  43. package/README.md +1 -1
  44. package/System/BaseControlImpl.d.ts +1 -1
  45. package/System/DirectorySelectDialog.d.ts +2 -2
  46. package/System/InputBasedControlImpl.d.ts +1 -1
  47. package/System/StringUtils.d.ts +1 -1
  48. package/package.json +1 -1
  49. package/Account/AddBackgroundMovementEffect.d.ts +0 -2
@@ -3499,271 +3499,6 @@ export declare namespace GenModels {
3499
3499
  operationId: string;
3500
3500
  }
3501
3501
  }
3502
- export declare namespace Microsoft.AspNetCore.Mvc {
3503
- interface ControllerBase {
3504
- httpContext: Microsoft.AspNetCore.Http.HttpContext;
3505
- request: Microsoft.AspNetCore.Http.HttpRequest;
3506
- response: Microsoft.AspNetCore.Http.HttpResponse;
3507
- routeData: Microsoft.AspNetCore.Routing.RouteData;
3508
- modelState: Array<Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry>;
3509
- controllerContext: Microsoft.AspNetCore.Mvc.ControllerContext;
3510
- metadataProvider: Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider;
3511
- modelBinderFactory: Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderFactory;
3512
- url: Microsoft.AspNetCore.Mvc.IUrlHelper;
3513
- objectValidator: Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IObjectModelValidator;
3514
- problemDetailsFactory: Microsoft.AspNetCore.Mvc.Infrastructure.ProblemDetailsFactory;
3515
- user: any;
3516
- }
3517
- }
3518
- export declare namespace Microsoft.AspNetCore.Http {
3519
- interface HttpContext {
3520
- features: Array<any>;
3521
- request: Microsoft.AspNetCore.Http.HttpRequest;
3522
- response: Microsoft.AspNetCore.Http.HttpResponse;
3523
- connection: Microsoft.AspNetCore.Http.ConnectionInfo;
3524
- webSockets: Microsoft.AspNetCore.Http.WebSocketManager;
3525
- user: any;
3526
- items: Array<any>;
3527
- requestServices: any;
3528
- requestAborted: any;
3529
- traceIdentifier: string;
3530
- session: Microsoft.AspNetCore.Http.ISession;
3531
- }
3532
- }
3533
- export declare namespace Microsoft.AspNetCore.Http {
3534
- interface HttpRequest {
3535
- httpContext: Microsoft.AspNetCore.Http.HttpContext;
3536
- method: string;
3537
- scheme: string;
3538
- isHttps: boolean;
3539
- host: Microsoft.AspNetCore.Http.HostString;
3540
- pathBase: Microsoft.AspNetCore.Http.PathString;
3541
- path: Microsoft.AspNetCore.Http.PathString;
3542
- queryString: Microsoft.AspNetCore.Http.QueryString;
3543
- query: Array<Array<string>>;
3544
- protocol: string;
3545
- headers: Array<Array<string>>;
3546
- cookies: Array<string>;
3547
- contentLength?: number;
3548
- contentType: string;
3549
- body: any;
3550
- bodyReader: any;
3551
- hasFormContentType: boolean;
3552
- form: Array<Array<string>>;
3553
- routeValues: Array<any>;
3554
- }
3555
- }
3556
- export declare namespace Microsoft.AspNetCore.Http {
3557
- interface HostString {
3558
- value: string;
3559
- hasValue: boolean;
3560
- host: string;
3561
- port?: number;
3562
- }
3563
- }
3564
- export declare namespace Microsoft.AspNetCore.Http {
3565
- interface PathString {
3566
- value: string;
3567
- hasValue: boolean;
3568
- }
3569
- }
3570
- export declare namespace Microsoft.AspNetCore.Http {
3571
- interface QueryString {
3572
- value: string;
3573
- hasValue: boolean;
3574
- }
3575
- }
3576
- export declare namespace Microsoft.AspNetCore.Http {
3577
- interface HttpResponse {
3578
- httpContext: Microsoft.AspNetCore.Http.HttpContext;
3579
- statusCode: number;
3580
- headers: Array<Array<string>>;
3581
- body: any;
3582
- bodyWriter: any;
3583
- contentLength?: number;
3584
- contentType: string;
3585
- cookies: Microsoft.AspNetCore.Http.IResponseCookies;
3586
- hasStarted: boolean;
3587
- }
3588
- }
3589
- export declare namespace Microsoft.AspNetCore.Http {
3590
- interface IResponseCookies {
3591
- }
3592
- }
3593
- export declare namespace Microsoft.AspNetCore.Http {
3594
- interface ConnectionInfo {
3595
- id: string;
3596
- remoteIpAddress: any;
3597
- remotePort: number;
3598
- localIpAddress: any;
3599
- localPort: number;
3600
- clientCertificate: any;
3601
- }
3602
- }
3603
- export declare namespace Microsoft.AspNetCore.Http {
3604
- interface WebSocketManager {
3605
- isWebSocketRequest: boolean;
3606
- webSocketRequestedProtocols: Array<string>;
3607
- }
3608
- }
3609
- export declare namespace Microsoft.AspNetCore.Http {
3610
- interface ISession {
3611
- isAvailable: boolean;
3612
- id: string;
3613
- keys: Array<string>;
3614
- }
3615
- }
3616
- export declare namespace Microsoft.AspNetCore.Routing {
3617
- interface RouteData {
3618
- dataTokens: Array<any>;
3619
- routers: Array<Microsoft.AspNetCore.Routing.IRouter>;
3620
- values: Array<any>;
3621
- }
3622
- }
3623
- export declare namespace Microsoft.AspNetCore.Routing {
3624
- interface IRouter {
3625
- }
3626
- }
3627
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
3628
- interface ModelStateEntry {
3629
- rawValue: any;
3630
- attemptedValue: string;
3631
- errors: Array<Microsoft.AspNetCore.Mvc.ModelBinding.ModelError>;
3632
- validationState: Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState;
3633
- isContainerNode: boolean;
3634
- children: Array<Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry>;
3635
- }
3636
- }
3637
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
3638
- interface ModelError {
3639
- exception: any;
3640
- errorMessage: string;
3641
- }
3642
- }
3643
- export declare namespace Microsoft.AspNetCore.Mvc {
3644
- interface ActionContext {
3645
- actionDescriptor: Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor;
3646
- httpContext: Microsoft.AspNetCore.Http.HttpContext;
3647
- modelState: Array<Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry>;
3648
- routeData: Microsoft.AspNetCore.Routing.RouteData;
3649
- }
3650
- }
3651
- export declare namespace Microsoft.AspNetCore.Mvc.Abstractions {
3652
- interface ActionDescriptor {
3653
- id: string;
3654
- routeValues: Array<any>;
3655
- attributeRouteInfo: Microsoft.AspNetCore.Mvc.Routing.AttributeRouteInfo;
3656
- actionConstraints: Array<Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintMetadata>;
3657
- endpointMetadata: Array<any>;
3658
- parameters: Array<Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor>;
3659
- boundProperties: Array<Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor>;
3660
- filterDescriptors: Array<Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor>;
3661
- displayName: string;
3662
- properties: Array<any>;
3663
- }
3664
- }
3665
- export declare namespace Microsoft.AspNetCore.Mvc.Routing {
3666
- interface AttributeRouteInfo {
3667
- template: string;
3668
- order: number;
3669
- name: string;
3670
- suppressLinkGeneration: boolean;
3671
- suppressPathMatching: boolean;
3672
- }
3673
- }
3674
- export declare namespace Microsoft.AspNetCore.Mvc.ActionConstraints {
3675
- interface IActionConstraintMetadata {
3676
- }
3677
- }
3678
- export declare namespace Microsoft.AspNetCore.Mvc.Abstractions {
3679
- interface ParameterDescriptor {
3680
- name: string;
3681
- parameterType: any;
3682
- bindingInfo: Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo;
3683
- }
3684
- }
3685
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
3686
- interface BindingInfo {
3687
- bindingSource: Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource;
3688
- binderModelName: string;
3689
- binderType: any;
3690
- propertyFilterProvider: Microsoft.AspNetCore.Mvc.ModelBinding.IPropertyFilterProvider;
3691
- requestPredicate: any;
3692
- emptyBodyBehavior: Microsoft.AspNetCore.Mvc.ModelBinding.EmptyBodyBehavior;
3693
- }
3694
- }
3695
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
3696
- interface BindingSource {
3697
- displayName: string;
3698
- id: string;
3699
- isGreedy: boolean;
3700
- isFromRequest: boolean;
3701
- }
3702
- }
3703
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
3704
- interface IPropertyFilterProvider {
3705
- propertyFilter: any;
3706
- }
3707
- }
3708
- export declare namespace Microsoft.AspNetCore.Mvc.Filters {
3709
- interface FilterDescriptor {
3710
- filter: Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata;
3711
- order: number;
3712
- scope: number;
3713
- }
3714
- }
3715
- export declare namespace Microsoft.AspNetCore.Mvc.Filters {
3716
- interface IFilterMetadata {
3717
- }
3718
- }
3719
- export declare namespace Microsoft.AspNetCore.Mvc {
3720
- interface ControllerContext extends Microsoft.AspNetCore.Mvc.ActionContext {
3721
- actionDescriptor: Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor;
3722
- valueProviderFactories: Array<Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory>;
3723
- }
3724
- }
3725
- export declare namespace Microsoft.AspNetCore.Mvc.Controllers {
3726
- interface ControllerActionDescriptor extends Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor {
3727
- controllerName: string;
3728
- actionName: string;
3729
- methodInfo: any;
3730
- controllerTypeInfo: any;
3731
- displayName: string;
3732
- }
3733
- }
3734
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
3735
- interface IValueProviderFactory {
3736
- }
3737
- }
3738
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
3739
- interface IModelMetadataProvider {
3740
- }
3741
- }
3742
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
3743
- interface IModelBinderFactory {
3744
- }
3745
- }
3746
- export declare namespace Microsoft.AspNetCore.Mvc {
3747
- interface IUrlHelper {
3748
- actionContext: Microsoft.AspNetCore.Mvc.ActionContext;
3749
- }
3750
- }
3751
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding.Validation {
3752
- interface IObjectModelValidator {
3753
- }
3754
- }
3755
- export declare namespace Microsoft.AspNetCore.Mvc.Infrastructure {
3756
- interface ProblemDetailsFactory {
3757
- }
3758
- }
3759
- export declare namespace GenControllers {
3760
- interface FileUploadApiControllerBase extends Microsoft.AspNetCore.Mvc.ControllerBase {
3761
- }
3762
- }
3763
- export declare namespace GenControllers {
3764
- interface FileUploadApiController extends GenControllers.FileUploadApiControllerBase {
3765
- }
3766
- }
3767
3502
  export declare namespace GenModels {
3768
3503
  interface MergeGroupModel {
3769
3504
  versionedFileCardId: string;
@@ -4150,6 +3885,147 @@ export declare namespace GenModels {
4150
3885
  canDelete: boolean;
4151
3886
  }
4152
3887
  }
3888
+ export declare namespace GenModels {
3889
+ interface LoginModel {
3890
+ /**
3891
+ * User name
3892
+ */
3893
+ userName: string;
3894
+ /**
3895
+ * Password
3896
+ */
3897
+ password: string;
3898
+ /**
3899
+ * Tenant identifier
3900
+ */
3901
+ tenantId: string;
3902
+ /**
3903
+ * Environment service
3904
+ */
3905
+ environmentService: GenModels.IEnvironmentService;
3906
+ /**
3907
+ * Application timestamp
3908
+ */
3909
+ applicationTimestamp: string;
3910
+ /**
3911
+ * Gets BundleProvider instance
3912
+ */
3913
+ bundleProvider: GenModels.IBundleProvider;
3914
+ /**
3915
+ * Gets Debug mode
3916
+ */
3917
+ isDebug: boolean;
3918
+ }
3919
+ }
3920
+ export declare namespace GenModels {
3921
+ interface IEnvironmentService {
3922
+ /**
3923
+ * Gets upload file path
3924
+ */
3925
+ uploadFilePath: string;
3926
+ /**
3927
+ * Gets download file path
3928
+ */
3929
+ downloadFilePath: string;
3930
+ /**
3931
+ * Gets application path
3932
+ */
3933
+ applicationPath: string;
3934
+ /**
3935
+ * Gets application start timestamp
3936
+ */
3937
+ applicationTimestamp: string;
3938
+ /**
3939
+ * Gets site root directory
3940
+ */
3941
+ siteRootDir: string;
3942
+ /**
3943
+ * Gets request url
3944
+ */
3945
+ requestUrl: any;
3946
+ /**
3947
+ * Gets user host address
3948
+ */
3949
+ userHostAddress: string;
3950
+ /**
3951
+ * Gets server name
3952
+ */
3953
+ machineName: string;
3954
+ /**
3955
+ * Gets or sets current device type
3956
+ */
3957
+ deviceType: GenModels.DeviceType;
3958
+ /**
3959
+ * Gets default device type
3960
+ */
3961
+ defaultDeviceType: GenModels.DeviceType;
3962
+ /**
3963
+ * Gets switch view device type
3964
+ */
3965
+ switchViewDeviceType: GenModels.DeviceType;
3966
+ /**
3967
+ * Request from ios native application, based on web view.
3968
+ */
3969
+ clientType: GenModels.ClientType;
3970
+ }
3971
+ }
3972
+ export declare namespace GenModels {
3973
+ interface IBundleProvider {
3974
+ /**
3975
+ * Property return enable optimizations flag
3976
+ */
3977
+ enableOptimizations: boolean;
3978
+ /**
3979
+ * Property return links to styles
3980
+ */
3981
+ metaScripts: string;
3982
+ /**
3983
+ * Property return links to styles
3984
+ */
3985
+ modulesStyles: string;
3986
+ /**
3987
+ * Property return links to styles
3988
+ */
3989
+ loginStyles: string;
3990
+ /**
3991
+ * Property return links to scripts
3992
+ */
3993
+ loginScripts: string;
3994
+ /**
3995
+ * Property return links to styles
3996
+ */
3997
+ legacyExtensionsStyles: string;
3998
+ /**
3999
+ * Property return links to scripts
4000
+ */
4001
+ extensionScriptsLoader: string;
4002
+ }
4003
+ }
4004
+ export declare namespace GenModels {
4005
+ interface ExtensionModel {
4006
+ id_token: string;
4007
+ /**
4008
+ * @format datatype.uuid
4009
+ */
4010
+ session_state: string;
4011
+ /**
4012
+ * @format datatype.uuid
4013
+ */
4014
+ state: string;
4015
+ }
4016
+ }
4017
+ export declare namespace GenModels {
4018
+ interface ExtensionModelCode {
4019
+ /**
4020
+ * string with access token
4021
+ */
4022
+ code: string;
4023
+ /**
4024
+ * state for token
4025
+ */
4026
+ state: string;
4027
+ }
4028
+ }
4153
4029
  export declare namespace GenModels {
4154
4030
  interface WasReadRequest {
4155
4031
  /**
@@ -9820,6 +9696,7 @@ export declare namespace GenModels {
9820
9696
  }
9821
9697
  export declare namespace GenModels {
9822
9698
  enum CardDataRights {
9699
+ GenericRead = -2147483648,
9823
9700
  ListChildObjects = 1,
9824
9701
  CreateChildObjects = 2,
9825
9702
  DeleteChildObjects = 4,
@@ -9839,8 +9716,7 @@ export declare namespace GenModels {
9839
9716
  FullControl = 983359,
9840
9717
  GenericAll = 268435456,
9841
9718
  GenericExecute = 536870912,
9842
- GenericWrite = 1073741824,
9843
- GenericRead = -2147483648
9719
+ GenericWrite = 1073741824
9844
9720
  }
9845
9721
  }
9846
9722
  export declare namespace GenModels {
@@ -9941,21 +9817,6 @@ export declare namespace GenModels {
9941
9817
  CertificateCanNotValidated = 7
9942
9818
  }
9943
9819
  }
9944
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
9945
- enum ModelValidationState {
9946
- Unvalidated = 0,
9947
- Invalid = 1,
9948
- Valid = 2,
9949
- Skipped = 3
9950
- }
9951
- }
9952
- export declare namespace Microsoft.AspNetCore.Mvc.ModelBinding {
9953
- enum EmptyBodyBehavior {
9954
- Default = 0,
9955
- Allow = 1,
9956
- Disallow = 2
9957
- }
9958
- }
9959
9820
  export declare namespace GenModels {
9960
9821
  /**
9961
9822
  * Group task tasks distribution mode for group performers.
@@ -10093,6 +9954,21 @@ export declare namespace GenModels {
10093
9954
  HasFileReport = 7
10094
9955
  }
10095
9956
  }
9957
+ export declare namespace GenModels {
9958
+ /**
9959
+ * Declare device types
9960
+ */
9961
+ enum ClientType {
9962
+ /**
9963
+ * Unknown
9964
+ */
9965
+ Unknown = 0,
9966
+ /**
9967
+ * Digdes native application for IOS based on WebView.
9968
+ */
9969
+ IosWebView = 1
9970
+ }
9971
+ }
10096
9972
  export declare namespace GenModels {
10097
9973
  /**
10098
9974
  * Javascript log message level.
@@ -10696,10 +10572,10 @@ export declare namespace GenModels {
10696
10572
  }
10697
10573
  export declare namespace GenModels {
10698
10574
  enum AgreementManagementAvailableButtons {
10575
+ All = -1,
10699
10576
  Pause = 1,
10700
10577
  Cancel = 2,
10701
- Complete = 4,
10702
- All = -1
10578
+ Complete = 4
10703
10579
  }
10704
10580
  }
10705
10581
  export declare namespace GenModels {
@@ -44,7 +44,7 @@ export declare class ComboBoxElement extends React.Component<IComboBoxElementPro
44
44
  */
45
45
  protected onSelect: () => void;
46
46
  protected onKeyDown: (e: React.KeyboardEvent<any>) => void;
47
- get tabIndex(): -1 | 0;
47
+ get tabIndex(): 0 | -1;
48
48
  /**
49
49
  * Фокусирует элемент
50
50
  */
@@ -32,7 +32,7 @@ export declare class ComboBoxTitle extends React.Component<IComboBoxTitleProps,
32
32
  protected onClick: () => void;
33
33
  protected onKeyDown: (e: React.KeyboardEvent<any>) => void;
34
34
  /** @internal */
35
- get tabIndex(): -1 | 0;
35
+ get tabIndex(): 0 | -1;
36
36
  componentDidMount(): void;
37
37
  componentWillUnmount(): void;
38
38
  /** @internal */
@@ -19,7 +19,7 @@ export interface ICustomTreeNodeProps {
19
19
  */
20
20
  export declare class CustomTreeNode extends React.Component<ICustomTreeNodeProps, undefined> {
21
21
  protected onClick: () => void;
22
- get tabIndex(): -1 | 0;
22
+ get tabIndex(): 0 | -1;
23
23
  /** @internal */
24
24
  render(): JSX.Element;
25
25
  }
@@ -9,6 +9,6 @@ export declare class InputMaskView {
9
9
  inputMask: typeof InputMask;
10
10
  input:
11
11
  import("react").ForwardRefExoticComponent<Pick<
12
- | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "accept" | "alt" | "capture" | "checked" | "enterKeyHint" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "src" | "step" | "isError"> &
12
+ | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "alt" | "src" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "capture" | "checked" | "enterKeyHint" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "step" | "isError"> &
13
13
  import("react").RefAttributes<HTMLInputElement>>;
14
14
  }
@@ -4,4 +4,4 @@ import { HtmlProps } from '@docsvision/web/core/component/HtmlProps';
4
4
  export interface IInputMaskFieldProps extends HtmlProps.input {
5
5
  isError: boolean;
6
6
  }
7
- export declare const InputMaskField: React.ForwardRefExoticComponent<Pick<IInputMaskFieldProps, "form" | "slot" | "style" | "title" | "pattern" | "children" | "name" | "id" | "disabled" | "onSubmit" | "autoComplete" | "type" | "placeholder" | "value" | "autoFocus" | "dir" | "className" | "color" | "height" | "lang" | "max" | "min" | "width" | "role" | "tabIndex" | "crossOrigin" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "accept" | "alt" | "capture" | "checked" | "enterKeyHint" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "src" | "step" | "isError"> & React.RefAttributes<HTMLInputElement>>;
7
+ export declare const InputMaskField: React.ForwardRefExoticComponent<Pick<IInputMaskFieldProps, "form" | "slot" | "style" | "title" | "pattern" | "children" | "name" | "id" | "disabled" | "onSubmit" | "autoComplete" | "type" | "placeholder" | "value" | "autoFocus" | "dir" | "className" | "color" | "height" | "lang" | "max" | "min" | "width" | "role" | "tabIndex" | "crossOrigin" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "alt" | "src" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "accept" | "capture" | "checked" | "enterKeyHint" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "step" | "isError"> & React.RefAttributes<HTMLInputElement>>;
@@ -30,7 +30,7 @@ export declare class SliderCheckBox extends React.Component<SliderCheckBoxProps,
30
30
  constructor(props: SliderCheckBoxProps);
31
31
  protected get canEdit(): boolean;
32
32
  protected handleCheckBoxClick(event: any): void;
33
- protected getTabIndex(): -1 | 0;
33
+ protected getTabIndex(): 0 | -1;
34
34
  protected getCssClass(): string;
35
35
  /** @internal */
36
36
  render(): JSX.Element;
@@ -54,7 +54,7 @@ export declare abstract class BasicGridHtmlBuilder implements IGridHtmlBuilder {
54
54
  protected abstract buildRowSwitcher(options: GridOptions, model: GenModels.GridViewModel, rowSwitcher: HTMLDivElement, rootElement: HTMLElement): HTMLDivElement;
55
55
  abstract getChanges(): Promise<GenModels.GridViewModel>;
56
56
  getSelection():
57
- import("C:/Dev/WebCDev/Bin/TypeScriptDefinitions/@docsvision/Platform/Services/Table/TableRowsSelectionModel").TableRowsSelectionModel;
57
+ import("C:/Dev/WebC6.1/Bin/TypeScriptDefinitions/@docsvision/Platform/Services/Table/TableRowsSelectionModel").TableRowsSelectionModel;
58
58
  clearSelection(cardIds?: string[]): void;
59
59
  selectionChanged: SimpleEvent<any>;
60
60
  protected addActionButtons(header: HTMLElement): void;
@@ -16,10 +16,10 @@ export declare class BaseMainMenuItemImpl<PropsT extends BaseMainMenuItemParams,
16
16
  UNSAFE_componentWillMount(): void;
17
17
  componentDidMount(): void;
18
18
  onSelecting():
19
- import("C:/Dev/WebCDev/Bin/System/Events/CancelableEventArgs").CancelableEventArgs<boolean>;
19
+ import("C:/Dev/WebC6.1/Bin/System/Events/CancelableEventArgs").CancelableEventArgs<boolean>;
20
20
  onSelected(): void;
21
21
  onToggling():
22
- import("C:/Dev/WebCDev/Bin/System/Events/CancelableEventArgs").CancelableEventArgs<boolean>;
22
+ import("C:/Dev/WebC6.1/Bin/System/Events/CancelableEventArgs").CancelableEventArgs<boolean>;
23
23
  onToggled(): void;
24
24
  protected onClick(event: React.MouseEvent): void;
25
25
  protected getCssClass(): string;
@@ -31,7 +31,7 @@ export declare class ButtonPositionsSelection extends BaseControl<ButtonPosition
31
31
  /** @internal */
32
32
  protected createImpl(): ControlImpl;
33
33
  /** @internal */
34
- protected getTabIndex(): -1 | 0;
34
+ protected getTabIndex(): 0 | -1;
35
35
  /** @internal */
36
36
  componentDidMount(): void;
37
37
  /** @internal */
@@ -82,12 +82,12 @@ export declare class CardLink extends InputBasedControl<GenModels.CardLinkDataMo
82
82
  protected construct(): void;
83
83
  componentDidMount(): void;
84
84
  protected getServices(): $FileController & $LayoutFileController & $LayoutLinksController & $LayoutController & Partial<$CardId> & $EditOperationStore & $CardId & Partial<$LabelWidth> & $LayoutManager & $Layout &
85
- import("C:/Dev/WebCDev/Bin/TypeScriptDefinitions/System/Services/$LayoutCheckService").$LayoutCheck &
86
- import("C:/Dev/WebCDev/Bin/TypeScriptDefinitions/System/Controls/Layout/LayoutServices").$CardInfo &
87
- import("C:/Dev/WebCDev/Bin/TypeScriptDefinitions/System/Core/RequestProcessing/$RequestManager").$RequestManager &
88
- import("C:/Dev/WebCDev/Bin/TypeScriptDefinitions/StandardServices").$ApplicationSettings &
89
- import("C:/Dev/WebCDev/Bin/TypeScriptDefinitions/System/Services/$FileService").$FileService &
90
- import("C:/Dev/WebCDev/Bin/TypeScriptDefinitions/StandardServices").$DeviceType & Partial<
85
+ import("C:/Dev/WebC6.1/Bin/TypeScriptDefinitions/System/Services/$LayoutCheckService").$LayoutCheck &
86
+ import("C:/Dev/WebC6.1/Bin/TypeScriptDefinitions/System/Controls/Layout/LayoutServices").$CardInfo &
87
+ import("C:/Dev/WebC6.1/Bin/TypeScriptDefinitions/System/Core/RequestProcessing/$RequestManager").$RequestManager &
88
+ import("C:/Dev/WebC6.1/Bin/TypeScriptDefinitions/StandardServices").$ApplicationSettings &
89
+ import("C:/Dev/WebC6.1/Bin/TypeScriptDefinitions/System/Services/$FileService").$FileService &
90
+ import("C:/Dev/WebC6.1/Bin/TypeScriptDefinitions/StandardServices").$DeviceType & Partial<
91
91
  import("@docsvision/webclient/FilePreview/$FilePreview").$FilePreview> & $CardOperationsController & Partial<$LinksSearchCards> & $CardsPresentationController;
92
92
  protected createParams(): CardLinkParams;
93
93
  protected createImpl(): CardLinkImpl;
@@ -71,7 +71,7 @@ export declare class CardLinkImpl extends InputBasedControlImpl<GenModels.CardLi
71
71
  protected updateValidationMessage(): void;
72
72
  protected getCssClass(): string;
73
73
  protected getTextValue(): string;
74
- protected getTextTabIndex(): -1 | 0;
74
+ protected getTextTabIndex(): 0 | -1;
75
75
  protected onTextKeyDown: (event: React.KeyboardEvent) => void;
76
76
  protected onMenuKeyDown: (event: React.KeyboardEvent) => void;
77
77
  protected onSelected: (variant: ITypeaheadVariant) => Promise<void>;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
2
  export declare class CertificateSettingsView {
3
3
  setup: (props:
4
- import("C:/Dev/WebCDev/Bin/TypeScriptDefinitions/BackOffice/Dialogs/SignatureMethodsSetup/SignatureMethodsSetup").ISignatureMethodsSetupProps) => JSX.Element;
4
+ import("C:/Dev/WebC6.1/Bin/TypeScriptDefinitions/BackOffice/Dialogs/SignatureMethodsSetup/SignatureMethodsSetup").ISignatureMethodsSetupProps) => JSX.Element;
5
5
  }
@@ -61,7 +61,7 @@ export declare class CommentFileImpl extends BaseControlImpl<CommentFileParams,
61
61
  protected renderValidationMessage(): JSX.Element;
62
62
  protected get editAvailable(): boolean;
63
63
  protected getCssClass(): string;
64
- protected getTextTabIndex(): -1 | 0;
64
+ protected getTextTabIndex(): 0 | -1;
65
65
  protected onTextKeyDown: (event: React.KeyboardEvent) => void;
66
66
  protected onMenuKeyDown: (event: React.KeyboardEvent) => void;
67
67
  protected initFileUpload(attach: FileListAttachedElements): void;