lucid-extension-sdk 0.0.431 → 0.0.432
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.
|
@@ -276,16 +276,3 @@ export type ExtensionFieldConfiguration = {
|
|
|
276
276
|
* Use the `createLucidIconData()` helper to format the icon data in this map.
|
|
277
277
|
*/
|
|
278
278
|
export type ExtensionCardFieldLabelIcons = Map<string, SerializedLucidDictionary>;
|
|
279
|
-
/** @ignore */
|
|
280
|
-
export declare const isSerializedExtensionCardFieldLabelIcons: (p1: unknown) => p1 is import("../guards").DestructureGuardedTypeObj<{
|
|
281
|
-
k: typeof isString;
|
|
282
|
-
v: (subject: unknown) => subject is import("../guards").DestructureGuardedTypeObj<{
|
|
283
|
-
dict: (subject: unknown) => subject is import("../guards").DestructureGuardedTypeObj<{
|
|
284
|
-
icon: typeof isString;
|
|
285
|
-
ariaLabel: typeof isString;
|
|
286
|
-
tooltipLabel: (x: unknown) => x is string | undefined;
|
|
287
|
-
roundedIcon: (x: unknown) => x is boolean | undefined;
|
|
288
|
-
}>;
|
|
289
|
-
}>;
|
|
290
|
-
}>[];
|
|
291
|
-
export type ExtensionCardFieldLabelIconsCallback = ((dataSourceId: string, collectionId: string, primaryKey: string) => Promise<ExtensionCardFieldLabelIcons>) | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.deserializePlaceholderImportMetadata = exports.serializePlaceholderImportMetadata = exports.isSerializedPlaceholderImportMetadata = exports.isSearchResult = exports.deserializeCardFieldArrayDefinition = exports.deserializeCardFieldDefinition = exports.isSerializedExtensionCardFieldDefinition = exports.isSerializedFieldOptions = exports.isSerializedFieldOption = exports.deserializeFieldOption = exports.serializeCardFieldArrayDefinition = exports.serializeCardFieldDefinition = exports.serializeCardFieldOption = exports.isSerializedCardUserDataArray = exports.isSerializedCardUserData = exports.deserializeCardUserData = exports.serializeCardUserData = void 0;
|
|
4
4
|
const collectiondefinition_1 = require("../../data/collectiondefinition");
|
|
5
5
|
const schemadefinition_1 = require("../../data/schemadefinition");
|
|
6
6
|
const checks_1 = require("../checks");
|
|
@@ -104,5 +104,3 @@ function deserializePlaceholderImportMetadata(serializedPlaceholderImportMetadat
|
|
|
104
104
|
};
|
|
105
105
|
}
|
|
106
106
|
exports.deserializePlaceholderImportMetadata = deserializePlaceholderImportMetadata;
|
|
107
|
-
/** @ignore */
|
|
108
|
-
exports.isSerializedExtensionCardFieldLabelIcons = (0, validators_1.arrayValidator)((0, validators_1.objectValidator)({ 'k': checks_1.isString, 'v': serializedfields_1.isSerializedLucidIconDataDictionary }));
|