@docsvision/webclient 5.16.8 → 5.16.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/Platform/CardLink.d.ts +4 -10
- package/Platform/CardLinkImpl.d.ts +5 -5
- package/package.json +1 -1
package/Platform/CardLink.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { EditMode } from "@docsvision/webclient/System/EditMode";
|
|
|
9
9
|
import { BasicApiEvent, CancelableApiEvent } from "@docsvision/webclient/System/ApiEvent";
|
|
10
10
|
import { IEventArgs } from "@docsvision/webclient/System/IEventArgs";
|
|
11
11
|
import { IValidationResult } from "@docsvision/webclient/System/IValidationResult";
|
|
12
|
-
import { Optional } from "@docsvision/
|
|
12
|
+
import { Optional } from "@docsvision/webclient/System/ServiceContainer";
|
|
13
13
|
import { $LabelWidth } from '@docsvision/webclient/System/$LabelWidth';
|
|
14
14
|
import { $LayoutManager } from '@docsvision/webclient/System/$LayoutManager';
|
|
15
15
|
import { $LinksSearchCards } from '@docsvision/webclient/BackOffice/$LinksSearchCardsService';
|
|
@@ -79,15 +79,9 @@ export declare class CardLinkParams extends InputBasedControlParams<GenModels.Ca
|
|
|
79
79
|
export declare class CardLink extends InputBasedControl<GenModels.CardLinkDataModel, CardLinkParams, CardLinkState> {
|
|
80
80
|
protected construct(): void;
|
|
81
81
|
componentDidMount(): void;
|
|
82
|
-
protected getServices(): $FileController & $LayoutFileController & $LayoutLinksController & $LayoutController
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
import("C:/dev/WebClient/Bin/TypeScriptDefinitions/System/Core/RequestProcessing/$RequestManager").$RequestManager &
|
|
86
|
-
import("C:/dev/WebClient/Bin/TypeScriptDefinitions/StandardServices").$ApplicationSettings &
|
|
87
|
-
import("C:/dev/WebClient/Bin/TypeScriptDefinitions/System/Services/$FileService").$FileService &
|
|
88
|
-
import("C:/dev/WebClient/Bin/TypeScriptDefinitions/System/Controls/Layout/LayoutServices").$LayoutInfo &
|
|
89
|
-
import("C:/dev/WebClient/Bin/TypeScriptDefinitions/StandardServices").$DeviceType & Partial<
|
|
90
|
-
import("@docsvision/webclient/FilePreview/$FilePreview").$FilePreview> & $CardOperationsController & Partial<$LinksSearchCards> & $CardsPresentationController;
|
|
82
|
+
protected getServices(): $FileController & $LayoutFileController & $LayoutLinksController & $LayoutController
|
|
83
|
+
& Optional<$CardId> & $EditOperationStore & $CardId & Optional<$LabelWidth> & $LayoutManager
|
|
84
|
+
& $Layout & $FilePreviewServices & $CardOperationsController & Optional<$LinksSearchCards> & $CardsPresentationController;
|
|
91
85
|
protected createParams(): CardLinkParams;
|
|
92
86
|
protected createImpl(): CardLinkImpl;
|
|
93
87
|
private set binding(value);
|
|
@@ -10,11 +10,11 @@ import React from "react";
|
|
|
10
10
|
import { $LinksSearchCards } from '@docsvision/webclient/BackOffice/$LinksSearchCardsService';
|
|
11
11
|
import { $LayoutLinksController } from '@docsvision/webclient/Generated/DocsVision.WebClient.Controllers';
|
|
12
12
|
import { $CardId, $CardTimestamp } from '@docsvision/webclient/System/LayoutServices';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
13
|
+
import { ITypeaheadSearchQuery } from "@docsvision/webclient/Helpers/Typeahead/Models/ITypeaheadSearchQuery";
|
|
14
|
+
import { ITypeaheadSearchResult } from "@docsvision/webclient/Helpers/Typeahead/Models/ITypeaheadSearchResult";
|
|
15
|
+
import { ITypeaheadVariant } from "@docsvision/webclient/Helpers/Typeahead/Models/ITypeaheadVariant";
|
|
16
|
+
import { Typeahead } from "@docsvision/webclient/Helpers/Typeahead/Typeahead";
|
|
17
|
+
import { InputBasedControlState, InputBasedControlImpl } from "@docsvision/webclient/System/InputBasedControlImpl"
|
|
18
18
|
/** @internal */
|
|
19
19
|
export interface CardLinkState extends CardLinkParams, InputBasedControlState<GenModels.CardLinkDataModel> {
|
|
20
20
|
addExistingCardLinkDialog: ExistingCardLinkDialog;
|