bt-core-app 2.0.180 → 2.0.181
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/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -883,6 +883,7 @@ export declare function extensionExists(elementId?: string): boolean;
|
|
|
883
883
|
export declare interface ExternalParty {
|
|
884
884
|
additionalUrl: string;
|
|
885
885
|
canUnlink: boolean;
|
|
886
|
+
externalTextProp?: string;
|
|
886
887
|
localIDProp: string;
|
|
887
888
|
party: string;
|
|
888
889
|
}
|
|
@@ -2432,11 +2433,13 @@ export declare function useList<T, TSave, TReturn>(props: ListProps<T, TSave, TR
|
|
|
2432
2433
|
externalParties: Ref< {
|
|
2433
2434
|
additionalUrl: string;
|
|
2434
2435
|
canUnlink: boolean;
|
|
2436
|
+
externalTextProp?: string | undefined;
|
|
2435
2437
|
localIDProp: string;
|
|
2436
2438
|
party: string;
|
|
2437
2439
|
}[], ExternalParty[] | {
|
|
2438
2440
|
additionalUrl: string;
|
|
2439
2441
|
canUnlink: boolean;
|
|
2442
|
+
externalTextProp?: string | undefined;
|
|
2440
2443
|
localIDProp: string;
|
|
2441
2444
|
party: string;
|
|
2442
2445
|
}[]>;
|
package/package.json
CHANGED