lucid-extension-sdk 0.0.443 → 0.0.444

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.
@@ -91,7 +91,12 @@ export declare enum OnClickHandlerKeys {
91
91
  /**
92
92
  * Display a panel on the canvas when a stencil is clicked, showing a list of items related to the stencil field
93
93
  */
94
- ListStencilPanel = "ListStencilPanel"
94
+ ListStencilPanel = "ListStencilPanel",
95
+ /**
96
+ * @experimental
97
+ * Open the right-hand card details panel and navigate to a specific target tab
98
+ */
99
+ OpenTargetTab = "OpenTargetTab"
95
100
  }
96
101
  export declare const isOnClickHandlerKey: (x: unknown) => x is OnClickHandlerKeys;
97
102
  declare const TextBadgeSettingsFormatter: import("../format/format").Format<import("../format/objectformat").ObjectFormatSerializedType<{
@@ -197,6 +202,11 @@ declare const StencilConfigFormatter: import("../format/format").Format<import("
197
202
  * If onClickHandlerKey is OpenBrowserWindow, this formula calculates the URL to open.
198
203
  */
199
204
  readonly linkFormula: readonly ["l", import("../format/format").Format<string | null | undefined, string | null | undefined>];
205
+ /**
206
+ * @experimental
207
+ * If onClickHandlerKey is OpenTargetTab, this specifies the label of the tab to open.
208
+ */
209
+ readonly targetTabLabel: readonly ["targetTabLabel", import("../format/format").Format<string | null | undefined, string | null | undefined>];
200
210
  /**
201
211
  * Allows the same card to have multiple textbadges but have different properties.
202
212
  * You can change bold, italic, underline, rounding, minwidth, minheight, maxtextwidth, maxfontsize
@@ -238,6 +248,7 @@ declare const StencilConfigFormatter: import("../format/format").Format<import("
238
248
  readonly verticalPosition?: VerticalBadgePos | null | undefined;
239
249
  readonly onClickHandlerKey?: OnClickHandlerKeys | null | undefined;
240
250
  readonly linkFormula?: string | null | undefined;
251
+ readonly targetTabLabel?: string | null | undefined;
241
252
  readonly textBadgeSettings?: {
242
253
  readonly rounding?: number | null | undefined;
243
254
  readonly bold?: boolean | null | undefined;
@@ -324,6 +335,11 @@ export declare const CardFieldDisplaySettingsFormatter: import("../format/format
324
335
  * If onClickHandlerKey is OpenBrowserWindow, this formula calculates the URL to open.
325
336
  */
326
337
  readonly linkFormula: readonly ["l", import("../format/format").Format<string | null | undefined, string | null | undefined>];
338
+ /**
339
+ * @experimental
340
+ * If onClickHandlerKey is OpenTargetTab, this specifies the label of the tab to open.
341
+ */
342
+ readonly targetTabLabel: readonly ["targetTabLabel", import("../format/format").Format<string | null | undefined, string | null | undefined>];
327
343
  /**
328
344
  * Allows the same card to have multiple textbadges but have different properties.
329
345
  * You can change bold, italic, underline, rounding, minwidth, minheight, maxtextwidth, maxfontsize
@@ -365,6 +381,7 @@ export declare const CardFieldDisplaySettingsFormatter: import("../format/format
365
381
  readonly verticalPosition?: VerticalBadgePos | null | undefined;
366
382
  readonly onClickHandlerKey?: OnClickHandlerKeys | null | undefined;
367
383
  readonly linkFormula?: string | null | undefined;
384
+ readonly targetTabLabel?: string | null | undefined;
368
385
  readonly textBadgeSettings?: {
369
386
  readonly rounding?: number | null | undefined;
370
387
  readonly bold?: boolean | null | undefined;
@@ -393,6 +410,7 @@ export declare const CardFieldDisplaySettingsFormatter: import("../format/format
393
410
  readonly verticalPosition?: VerticalBadgePos | null | undefined;
394
411
  readonly onClickHandlerKey?: OnClickHandlerKeys | null | undefined;
395
412
  readonly linkFormula?: string | null | undefined;
413
+ readonly targetTabLabel?: string | null | undefined;
396
414
  readonly textBadgeSettings?: {
397
415
  readonly rounding?: number | null | undefined;
398
416
  readonly bold?: boolean | null | undefined;
@@ -489,6 +507,11 @@ export declare const isSerializedLucidCardFieldDisplaySettings: import("../guard
489
507
  * If onClickHandlerKey is OpenBrowserWindow, this formula calculates the URL to open.
490
508
  */
491
509
  readonly linkFormula: readonly ["l", import("../format/format").Format<string | null | undefined, string | null | undefined>];
510
+ /**
511
+ * @experimental
512
+ * If onClickHandlerKey is OpenTargetTab, this specifies the label of the tab to open.
513
+ */
514
+ readonly targetTabLabel: readonly ["targetTabLabel", import("../format/format").Format<string | null | undefined, string | null | undefined>];
492
515
  /**
493
516
  * Allows the same card to have multiple textbadges but have different properties.
494
517
  * You can change bold, italic, underline, rounding, minwidth, minheight, maxtextwidth, maxfontsize
@@ -530,6 +553,7 @@ export declare const isSerializedLucidCardFieldDisplaySettings: import("../guard
530
553
  readonly verticalPosition?: VerticalBadgePos | null | undefined;
531
554
  readonly onClickHandlerKey?: OnClickHandlerKeys | null | undefined;
532
555
  readonly linkFormula?: string | null | undefined;
556
+ readonly targetTabLabel?: string | null | undefined;
533
557
  readonly textBadgeSettings?: {
534
558
  readonly rounding?: number | null | undefined;
535
559
  readonly bold?: boolean | null | undefined;
@@ -561,6 +585,7 @@ export declare const serializeLucidCardFieldDisplaySettings: (x: {
561
585
  readonly verticalPosition?: VerticalBadgePos | null | undefined;
562
586
  readonly onClickHandlerKey?: OnClickHandlerKeys | null | undefined;
563
587
  readonly linkFormula?: string | null | undefined;
588
+ readonly targetTabLabel?: string | null | undefined;
564
589
  readonly textBadgeSettings?: {
565
590
  readonly rounding?: number | null | undefined;
566
591
  readonly bold?: boolean | null | undefined;
@@ -646,6 +671,11 @@ export declare const serializeLucidCardFieldDisplaySettings: (x: {
646
671
  * If onClickHandlerKey is OpenBrowserWindow, this formula calculates the URL to open.
647
672
  */
648
673
  readonly linkFormula: readonly ["l", import("../format/format").Format<string | null | undefined, string | null | undefined>];
674
+ /**
675
+ * @experimental
676
+ * If onClickHandlerKey is OpenTargetTab, this specifies the label of the tab to open.
677
+ */
678
+ readonly targetTabLabel: readonly ["targetTabLabel", import("../format/format").Format<string | null | undefined, string | null | undefined>];
649
679
  /**
650
680
  * Allows the same card to have multiple textbadges but have different properties.
651
681
  * You can change bold, italic, underline, rounding, minwidth, minheight, maxtextwidth, maxfontsize
@@ -687,6 +717,7 @@ export declare const serializeLucidCardFieldDisplaySettings: (x: {
687
717
  readonly verticalPosition?: VerticalBadgePos | null | undefined;
688
718
  readonly onClickHandlerKey?: OnClickHandlerKeys | null | undefined;
689
719
  readonly linkFormula?: string | null | undefined;
720
+ readonly targetTabLabel?: string | null | undefined;
690
721
  readonly textBadgeSettings?: {
691
722
  readonly rounding?: number | null | undefined;
692
723
  readonly bold?: boolean | null | undefined;
@@ -774,6 +805,11 @@ export declare const deserializeLucidCardFieldDisplaySettings: (x: import("../fo
774
805
  * If onClickHandlerKey is OpenBrowserWindow, this formula calculates the URL to open.
775
806
  */
776
807
  readonly linkFormula: readonly ["l", import("../format/format").Format<string | null | undefined, string | null | undefined>];
808
+ /**
809
+ * @experimental
810
+ * If onClickHandlerKey is OpenTargetTab, this specifies the label of the tab to open.
811
+ */
812
+ readonly targetTabLabel: readonly ["targetTabLabel", import("../format/format").Format<string | null | undefined, string | null | undefined>];
777
813
  /**
778
814
  * Allows the same card to have multiple textbadges but have different properties.
779
815
  * You can change bold, italic, underline, rounding, minwidth, minheight, maxtextwidth, maxfontsize
@@ -815,6 +851,7 @@ export declare const deserializeLucidCardFieldDisplaySettings: (x: import("../fo
815
851
  readonly verticalPosition?: VerticalBadgePos | null | undefined;
816
852
  readonly onClickHandlerKey?: OnClickHandlerKeys | null | undefined;
817
853
  readonly linkFormula?: string | null | undefined;
854
+ readonly targetTabLabel?: string | null | undefined;
818
855
  readonly textBadgeSettings?: {
819
856
  readonly rounding?: number | null | undefined;
820
857
  readonly bold?: boolean | null | undefined;
@@ -843,6 +880,7 @@ export declare const deserializeLucidCardFieldDisplaySettings: (x: import("../fo
843
880
  readonly verticalPosition?: VerticalBadgePos | null | undefined;
844
881
  readonly onClickHandlerKey?: OnClickHandlerKeys | null | undefined;
845
882
  readonly linkFormula?: string | null | undefined;
883
+ readonly targetTabLabel?: string | null | undefined;
846
884
  readonly textBadgeSettings?: {
847
885
  readonly rounding?: number | null | undefined;
848
886
  readonly bold?: boolean | null | undefined;
@@ -100,6 +100,11 @@ var OnClickHandlerKeys;
100
100
  * Display a panel on the canvas when a stencil is clicked, showing a list of items related to the stencil field
101
101
  */
102
102
  OnClickHandlerKeys["ListStencilPanel"] = "ListStencilPanel";
103
+ /**
104
+ * @experimental
105
+ * Open the right-hand card details panel and navigate to a specific target tab
106
+ */
107
+ OnClickHandlerKeys["OpenTargetTab"] = "OpenTargetTab";
103
108
  })(OnClickHandlerKeys || (exports.OnClickHandlerKeys = OnClickHandlerKeys = {}));
104
109
  exports.isOnClickHandlerKey = (0, validators_1.enumValidator)(OnClickHandlerKeys);
105
110
  const TextBadgeSettingsFormatter = (0, objectformat_1.ObjectFormat)({
@@ -180,6 +185,11 @@ const StencilConfigFormatter = (0, objectformat_1.ObjectFormat)({
180
185
  * If onClickHandlerKey is OpenBrowserWindow, this formula calculates the URL to open.
181
186
  */
182
187
  linkFormula: ['l', (0, format_1.OptionFormat)(primitiveformat_1.StringFormat)],
188
+ /**
189
+ * @experimental
190
+ * If onClickHandlerKey is OpenTargetTab, this specifies the label of the tab to open.
191
+ */
192
+ targetTabLabel: ['targetTabLabel', (0, format_1.OptionFormat)(primitiveformat_1.StringFormat)],
183
193
  /**
184
194
  * Allows the same card to have multiple textbadges but have different properties.
185
195
  * You can change bold, italic, underline, rounding, minwidth, minheight, maxtextwidth, maxfontsize
@@ -67,6 +67,7 @@ export interface AutoSyncConfigPhrasesType {
67
67
  removingGrowlMessage?: ((count: number) => string) | undefined;
68
68
  }
69
69
  export declare enum SupportedAutoSyncGeneratorType {
70
- Timeline = "timeline"
70
+ Timeline = "timeline",
71
+ DynamicMatrix = "dynamic matrix"
71
72
  }
72
- export declare const isSupportedAutoSyncGeneratorType: (x: unknown) => x is SupportedAutoSyncGeneratorType.Timeline;
73
+ export declare const isSupportedAutoSyncGeneratorType: (x: unknown) => x is SupportedAutoSyncGeneratorType;
@@ -11,5 +11,6 @@ exports.AutoSyncPaginationSize = 50;
11
11
  var SupportedAutoSyncGeneratorType;
12
12
  (function (SupportedAutoSyncGeneratorType) {
13
13
  SupportedAutoSyncGeneratorType["Timeline"] = "timeline";
14
+ SupportedAutoSyncGeneratorType["DynamicMatrix"] = "dynamic matrix";
14
15
  })(SupportedAutoSyncGeneratorType || (exports.SupportedAutoSyncGeneratorType = SupportedAutoSyncGeneratorType = {}));
15
16
  exports.isSupportedAutoSyncGeneratorType = (0, validators_1.stringEnumValidator)(SupportedAutoSyncGeneratorType);
@@ -49,6 +49,7 @@ declare const CardIntegrationConfigFormatter: import("../format/format").Format<
49
49
  readonly verticalPosition: readonly ["v", import("../format/format").Format<import("../..").VerticalBadgePos | null | undefined, import("../..").VerticalBadgePos | null | undefined>];
50
50
  readonly onClickHandlerKey: readonly ["onClickHandlerKey", import("../format/format").Format<import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined, import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined>];
51
51
  readonly linkFormula: readonly ["l", import("../format/format").Format<string | null | undefined, string | null | undefined>];
52
+ readonly targetTabLabel: readonly ["targetTabLabel", import("../format/format").Format<string | null | undefined, string | null | undefined>];
52
53
  readonly textBadgeSettings: readonly ["textBadgeSettings", import("../format/format").Format<import("../format/objectformat").ObjectFormatSerializedType<{
53
54
  readonly rounding: readonly ["rounding", import("../format/format").Format<number | null | undefined, number | null | undefined>];
54
55
  readonly bold: readonly ["bold", import("../format/format").Format<boolean | null | undefined, boolean | null | undefined>];
@@ -86,6 +87,7 @@ declare const CardIntegrationConfigFormatter: import("../format/format").Format<
86
87
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
87
88
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
88
89
  readonly linkFormula?: string | null | undefined;
90
+ readonly targetTabLabel?: string | null | undefined;
89
91
  readonly textBadgeSettings?: {
90
92
  readonly rounding?: number | null | undefined;
91
93
  readonly bold?: boolean | null | undefined;
@@ -114,6 +116,7 @@ declare const CardIntegrationConfigFormatter: import("../format/format").Format<
114
116
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
115
117
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
116
118
  readonly linkFormula?: string | null | undefined;
119
+ readonly targetTabLabel?: string | null | undefined;
117
120
  readonly textBadgeSettings?: {
118
121
  readonly rounding?: number | null | undefined;
119
122
  readonly bold?: boolean | null | undefined;
@@ -154,6 +157,7 @@ declare const CardIntegrationConfigFormatter: import("../format/format").Format<
154
157
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
155
158
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
156
159
  readonly linkFormula?: string | null | undefined;
160
+ readonly targetTabLabel?: string | null | undefined;
157
161
  readonly textBadgeSettings?: {
158
162
  readonly rounding?: number | null | undefined;
159
163
  readonly bold?: boolean | null | undefined;
@@ -219,6 +223,7 @@ declare const CardIntegrationConfigFormatter: import("../format/format").Format<
219
223
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
220
224
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
221
225
  readonly linkFormula?: string | null | undefined;
226
+ readonly targetTabLabel?: string | null | undefined;
222
227
  readonly textBadgeSettings?: {
223
228
  readonly rounding?: number | null | undefined;
224
229
  readonly bold?: boolean | null | undefined;
@@ -293,6 +298,7 @@ export declare const isSerializedCardIntegrationConfig: import("../guards").Vali
293
298
  readonly verticalPosition: readonly ["v", import("../format/format").Format<import("../..").VerticalBadgePos | null | undefined, import("../..").VerticalBadgePos | null | undefined>];
294
299
  readonly onClickHandlerKey: readonly ["onClickHandlerKey", import("../format/format").Format<import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined, import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined>];
295
300
  readonly linkFormula: readonly ["l", import("../format/format").Format<string | null | undefined, string | null | undefined>];
301
+ readonly targetTabLabel: readonly ["targetTabLabel", import("../format/format").Format<string | null | undefined, string | null | undefined>];
296
302
  readonly textBadgeSettings: readonly ["textBadgeSettings", import("../format/format").Format<import("../format/objectformat").ObjectFormatSerializedType<{
297
303
  readonly rounding: readonly ["rounding", import("../format/format").Format<number | null | undefined, number | null | undefined>];
298
304
  readonly bold: readonly ["bold", import("../format/format").Format<boolean | null | undefined, boolean | null | undefined>];
@@ -330,6 +336,7 @@ export declare const isSerializedCardIntegrationConfig: import("../guards").Vali
330
336
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
331
337
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
332
338
  readonly linkFormula?: string | null | undefined;
339
+ readonly targetTabLabel?: string | null | undefined;
333
340
  readonly textBadgeSettings?: {
334
341
  readonly rounding?: number | null | undefined;
335
342
  readonly bold?: boolean | null | undefined;
@@ -358,6 +365,7 @@ export declare const isSerializedCardIntegrationConfig: import("../guards").Vali
358
365
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
359
366
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
360
367
  readonly linkFormula?: string | null | undefined;
368
+ readonly targetTabLabel?: string | null | undefined;
361
369
  readonly textBadgeSettings?: {
362
370
  readonly rounding?: number | null | undefined;
363
371
  readonly bold?: boolean | null | undefined;
@@ -398,6 +406,7 @@ export declare const isSerializedCardIntegrationConfig: import("../guards").Vali
398
406
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
399
407
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
400
408
  readonly linkFormula?: string | null | undefined;
409
+ readonly targetTabLabel?: string | null | undefined;
401
410
  readonly textBadgeSettings?: {
402
411
  readonly rounding?: number | null | undefined;
403
412
  readonly bold?: boolean | null | undefined;
@@ -465,6 +474,7 @@ export declare const serializeCardIntegrationConfig: (x: {
465
474
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
466
475
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
467
476
  readonly linkFormula?: string | null | undefined;
477
+ readonly targetTabLabel?: string | null | undefined;
468
478
  readonly textBadgeSettings?: {
469
479
  readonly rounding?: number | null | undefined;
470
480
  readonly bold?: boolean | null | undefined;
@@ -535,6 +545,7 @@ export declare const serializeCardIntegrationConfig: (x: {
535
545
  readonly verticalPosition: readonly ["v", import("../format/format").Format<import("../..").VerticalBadgePos | null | undefined, import("../..").VerticalBadgePos | null | undefined>];
536
546
  readonly onClickHandlerKey: readonly ["onClickHandlerKey", import("../format/format").Format<import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined, import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined>];
537
547
  readonly linkFormula: readonly ["l", import("../format/format").Format<string | null | undefined, string | null | undefined>];
548
+ readonly targetTabLabel: readonly ["targetTabLabel", import("../format/format").Format<string | null | undefined, string | null | undefined>];
538
549
  readonly textBadgeSettings: readonly ["textBadgeSettings", import("../format/format").Format<import("../format/objectformat").ObjectFormatSerializedType<{
539
550
  readonly rounding: readonly ["rounding", import("../format/format").Format<number | null | undefined, number | null | undefined>];
540
551
  readonly bold: readonly ["bold", import("../format/format").Format<boolean | null | undefined, boolean | null | undefined>];
@@ -572,6 +583,7 @@ export declare const serializeCardIntegrationConfig: (x: {
572
583
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
573
584
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
574
585
  readonly linkFormula?: string | null | undefined;
586
+ readonly targetTabLabel?: string | null | undefined;
575
587
  readonly textBadgeSettings?: {
576
588
  readonly rounding?: number | null | undefined;
577
589
  readonly bold?: boolean | null | undefined;
@@ -600,6 +612,7 @@ export declare const serializeCardIntegrationConfig: (x: {
600
612
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
601
613
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
602
614
  readonly linkFormula?: string | null | undefined;
615
+ readonly targetTabLabel?: string | null | undefined;
603
616
  readonly textBadgeSettings?: {
604
617
  readonly rounding?: number | null | undefined;
605
618
  readonly bold?: boolean | null | undefined;
@@ -640,6 +653,7 @@ export declare const serializeCardIntegrationConfig: (x: {
640
653
  readonly verticalPosition?: import("../..").VerticalBadgePos | null | undefined;
641
654
  readonly onClickHandlerKey?: import("./cardfielddisplaysettings").OnClickHandlerKeys | null | undefined;
642
655
  readonly linkFormula?: string | null | undefined;
656
+ readonly targetTabLabel?: string | null | undefined;
643
657
  readonly textBadgeSettings?: {
644
658
  readonly rounding?: number | null | undefined;
645
659
  readonly bold?: boolean | null | undefined;
@@ -10,12 +10,12 @@ import { ExtensionDataPanelListItemTag, SerializedExtensionDataPanelListItemTag
10
10
  * @experimental Information about an item in a list.
11
11
  */
12
12
  export interface ExtensionDataPanelListItem {
13
- title?: string;
14
- description?: string;
15
- caption?: string;
16
- icon?: SerializedLucidIconData;
17
- externalLink?: string;
18
- tags?: ExtensionDataPanelListItemTag[];
13
+ title?: string | undefined;
14
+ description?: string | undefined;
15
+ caption?: string | undefined;
16
+ icon?: SerializedLucidIconData | undefined;
17
+ externalLink?: string | undefined;
18
+ tags?: ExtensionDataPanelListItemTag[] | undefined;
19
19
  }
20
20
  /** @ignore */
21
21
  export declare const isValidExtensionDataPanelListItem: (subject: unknown) => subject is import("../../guards").DestructureGuardedTypeObj<{
@@ -14,6 +14,7 @@ export declare enum DocumentElementType {
14
14
  TaskCardFieldsConfig = "TaskCardFieldsConfig",
15
15
  CachedExtensionMetadata = "CachedExtensionMetadata",
16
16
  GeneratorView = "GeneratorView",
17
+ DataReference = "DataReference",
17
18
  OutputField = "OutputField",
18
19
  ShapeStylePreset = "ShapeStylePreset",
19
20
  ShapeSpecificDefaultProperties = "ShapeSpecificDefaultProperties",
@@ -26,6 +26,7 @@ var DocumentElementType;
26
26
  DocumentElementType["TaskCardFieldsConfig"] = "TaskCardFieldsConfig";
27
27
  DocumentElementType["CachedExtensionMetadata"] = "CachedExtensionMetadata";
28
28
  DocumentElementType["GeneratorView"] = "GeneratorView";
29
+ DocumentElementType["DataReference"] = "DataReference";
29
30
  DocumentElementType["OutputField"] = "OutputField";
30
31
  DocumentElementType["ShapeStylePreset"] = "ShapeStylePreset";
31
32
  DocumentElementType["ShapeSpecificDefaultProperties"] = "ShapeSpecificDefaultProperties";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.443",
3
+ "version": "0.0.444",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",