lucid-extension-sdk 0.0.393 → 0.0.395
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.
|
@@ -12,6 +12,11 @@ import { LucidCardIntegrationStandardImportModal } from './lucidcardintegrations
|
|
|
12
12
|
export interface FieldDescriptor {
|
|
13
13
|
name: string;
|
|
14
14
|
label?: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* If true, the checkbox for this field is disabled in the card settings panel
|
|
17
|
+
* and visibility cannot be toggled.
|
|
18
|
+
* This is useful for fields that should always be shown, such as a "name" field.
|
|
19
|
+
*/
|
|
15
20
|
locked?: boolean | undefined;
|
|
16
21
|
}
|
|
17
22
|
export declare const isFieldDescriptor: (subject: unknown) => subject is import("../guards").DestructureGuardedTypeObj<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lucid-extension-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.395",
|
|
4
4
|
"description": "Utility classes for writing Lucid Software editor extensions",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -8,10 +8,8 @@
|
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
9
|
"declaration": true,
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"typedoc": "^0.23.15",
|
|
14
|
-
"typedoc-plugin-markdown": "^3.13.6",
|
|
11
|
+
"typedoc": "^0.23.28",
|
|
12
|
+
"typedoc-plugin-markdown": "^3.17.1",
|
|
15
13
|
"typescript": "5.1.6"
|
|
16
14
|
}
|
|
17
15
|
}
|