lucid-extension-sdk
Advanced tools
Comparing version 0.0.300 to 0.0.301
@@ -718,2 +718,6 @@ import { SerializedFieldTypeDefinition } from './core/data/fieldtypedefinition/fieldtypedefinition'; | ||
'im'?: { | ||
/** Import Modal Heading */ | ||
'imh'?: string; | ||
/** Use Isolated Search Bar */ | ||
'uisbui'?: boolean; | ||
/** Get search fields action */ | ||
@@ -720,0 +724,0 @@ 'gsf': string; |
@@ -90,2 +90,8 @@ "use strict"; | ||
}; | ||
if (importModal.importModalHeading) { | ||
serialized['im']['imh'] = importModal.importModalHeading; | ||
} | ||
if (importModal.useIsolatedSearchBarUI) { | ||
serialized['im']['uisbui'] = importModal.useIsolatedSearchBarUI; | ||
} | ||
client.registerAction(serialized['im']['gsf'], async ({ 's': searchSoFar }) => { | ||
@@ -92,0 +98,0 @@ const result = await importModal.getSearchFields(new Map(searchSoFar)); |
@@ -36,2 +36,7 @@ import { CollectionDefinition } from '../../data/collectiondefinition'; | ||
export interface LucidCardIntegrationStandardImportModal { | ||
/** | ||
* Heading used in the import modal. | ||
*/ | ||
importModalHeading?: string; | ||
useIsolatedSearchBarUI?: boolean; | ||
getSearchFields: (searchSoFar: Map<string, SerializedFieldType>) => Promise<ExtensionCardFieldDefinition[]>; | ||
@@ -38,0 +43,0 @@ search: (fields: Map<string, SerializedFieldType>) => Promise<SearchResult>; |
{ | ||
"name": "lucid-extension-sdk", | ||
"version": "0.0.300", | ||
"version": "0.0.301", | ||
"description": "Utility classes for writing Lucid Software editor extensions", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
832089
19061