@cesdk/cesdk-js 1.44.0 → 1.45.0

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/index.d.ts CHANGED
@@ -155,7 +155,10 @@ export { AssetEnumProperty }
155
155
 
156
156
  export { AssetGroups }
157
157
 
158
- declare type AssetLibraryDockComponent = {
158
+ /**
159
+ * @public
160
+ */
161
+ export declare type AssetLibraryDockComponent = {
159
162
  id: 'ly.img.assetLibrary.dock';
160
163
  key?: string;
161
164
  label?: string;
@@ -173,7 +176,7 @@ declare type AssetLibraryEntries = AssetLibraryEntry[] | ((currentAssetLibraryEn
173
176
  }) => AssetLibraryEntry[]);
174
177
 
175
178
  /** @public */
176
- declare interface AssetLibraryEntry extends AssetLibraryEntryData, AssetLibraryEntryView {
179
+ export declare interface AssetLibraryEntry extends AssetLibraryEntryData, AssetLibraryEntryView {
177
180
  }
178
181
 
179
182
  /** @public */
@@ -325,7 +328,10 @@ declare interface AssetLibraryEntryView {
325
328
  }[];
326
329
  }
327
330
 
328
- declare type AssetLibraryPanelPayload = {
331
+ /**
332
+ * @public
333
+ */
334
+ export declare type AssetLibraryPanelPayload = {
329
335
  title?: string | string[];
330
336
  entries?: string[];
331
337
  };
@@ -392,8 +398,9 @@ export { Buffer }
392
398
  * Interface for all available builder. Depending on the context different
393
399
  * implementation might be used. A "Button" in the canvas menu might render
394
400
  * different component than a button in the topbar or a panel.
401
+ * @public
395
402
  */
396
- declare interface Builder {
403
+ export declare interface Builder {
397
404
  Button: (id: string, options: ButtonOptions) => void;
398
405
  ButtonGroup: (id: string, options: ButtonGroupOptions) => void;
399
406
  Checkbox: (id: string, options: CheckboxOptions) => void;
@@ -414,10 +421,15 @@ declare interface Builder {
414
421
 
415
422
  /**
416
423
  * Function that defines a component with the help of the passed builder object.
424
+ *
425
+ * @public
417
426
  */
418
- declare type BuilderRenderFunction<P = {}> = (context: BuilderRenderFunctionContext<P>) => void;
427
+ export declare type BuilderRenderFunction<P = {}> = (context: BuilderRenderFunctionContext<P>) => void;
419
428
 
420
- declare interface BuilderRenderFunctionContext<P> {
429
+ /**
430
+ * @public
431
+ */
432
+ export declare interface BuilderRenderFunctionContext<P> {
421
433
  builder: Builder;
422
434
  engine: CreativeEngine_2;
423
435
  /**
@@ -487,14 +499,20 @@ declare interface BuilderRenderFunctionContext<P> {
487
499
  renderOptimizedSmallViewport: boolean;
488
500
  }
489
501
 
490
- declare interface ButtonGroupOptions {
502
+ /**
503
+ * @public
504
+ */
505
+ export declare interface ButtonGroupOptions {
491
506
  inputLabel?: string | string[];
492
507
  inputLabelPosition?: 'top' | 'left';
493
508
  children?: () => void;
494
509
  suffix?: Suffix;
495
510
  }
496
511
 
497
- declare interface ButtonOptions {
512
+ /**
513
+ * @public
514
+ */
515
+ export declare interface ButtonOptions {
498
516
  inputLabel?: string | string[];
499
517
  inputLabelPosition?: 'top' | 'left';
500
518
  label?: string | string[];
@@ -505,6 +523,7 @@ declare interface ButtonOptions {
505
523
  color?: 'accent' | 'danger';
506
524
  size?: 'normal' | 'large';
507
525
  icon?: CustomIcon;
526
+ trailingIcon?: CustomIcon;
508
527
  isActive?: boolean;
509
528
  isSelected?: boolean;
510
529
  isDisabled?: boolean;
@@ -537,9 +556,15 @@ declare const CANVAS_MENU_TEXT_ORDER_DEFAULT: readonly ["ly.img.text.color.canva
537
556
 
538
557
  declare const CANVAS_MENU_TRANSFORM_ORDER_DEFAULT: readonly ["ly.img.group.enter.canvasMenu", "ly.img.group.select.canvasMenu", "ly.img.page.moveUp.canvasMenu", "ly.img.page.moveDown.canvasMenu", "ly.img.separator", "ly.img.text.edit.canvasMenu", "ly.img.replace.canvasMenu", "ly.img.separator", "ly.img.placeholder.canvasMenu", "ly.img.separator", "ly.img.duplicate.canvasMenu", "ly.img.delete.canvasMenu"];
539
558
 
540
- declare type CanvasBarComponentId = 'ly.img.separator' | 'ly.img.spacer' | (typeof CANVAS_BAR_ORDER_DEFAULT)[number] | (string & {});
559
+ /**
560
+ * @public
561
+ */
562
+ export declare type CanvasBarComponentId = 'ly.img.separator' | 'ly.img.spacer' | (typeof CANVAS_BAR_ORDER_DEFAULT)[number] | (string & {});
541
563
 
542
- declare type CanvasMenuComponentId = 'ly.img.separator' | 'ly.img.spacer' | (typeof CANVAS_MENU_TRANSFORM_ORDER_DEFAULT)[number] | (typeof CANVAS_MENU_TEXT_ORDER_DEFAULT)[number] | (string & {});
564
+ /**
565
+ * @public
566
+ */
567
+ export declare type CanvasMenuComponentId = 'ly.img.separator' | 'ly.img.spacer' | (typeof CANVAS_MENU_TRANSFORM_ORDER_DEFAULT)[number] | (typeof CANVAS_MENU_TEXT_ORDER_DEFAULT)[number] | (string & {});
543
568
 
544
569
  /** @public */
545
570
  declare type CardBackground = {
@@ -579,7 +604,10 @@ export declare namespace CESDKConfiguration {
579
604
  };
580
605
  }
581
606
 
582
- declare interface CheckboxOptions extends InputOptions<boolean, 'left' | 'right'> {
607
+ /**
608
+ * @public
609
+ */
610
+ export declare interface CheckboxOptions extends InputOptions<boolean, 'left' | 'right'> {
583
611
  icon?: CustomIcon;
584
612
  }
585
613
 
@@ -587,7 +615,10 @@ export { CMYK }
587
615
 
588
616
  export { CMYKColor }
589
617
 
590
- declare interface ColorInputOptions extends InputOptions<Color> {
618
+ /**
619
+ * @public
620
+ */
621
+ export declare interface ColorInputOptions extends InputOptions<Color> {
591
622
  label?: string | string[];
592
623
  }
593
624
 
@@ -598,9 +629,15 @@ declare type CombinedConfiguration = CESDKConfiguration & Omit<_EngineConfigurat
598
629
 
599
630
  export { CompleteAssetResult }
600
631
 
601
- declare type ComponentId = DockOrderComponentId | CanvasMenuComponentId | NavigationBarComponentId | CanvasBarComponentId | InspectorBarComponentId;
632
+ /**
633
+ * @public
634
+ */
635
+ export declare type ComponentId = DockOrderComponentId | CanvasMenuComponentId | NavigationBarComponentId | CanvasBarComponentId | InspectorBarComponentId;
602
636
 
603
- declare interface ComponentPayload {
637
+ /**
638
+ * @public
639
+ */
640
+ export declare interface ComponentPayload {
604
641
  [key: string]: unknown;
605
642
  }
606
643
 
@@ -859,7 +896,10 @@ declare type CustomCardSvgVectorPathBackground = {
859
896
  clipRule?: 'nonzero' | 'evenodd';
860
897
  };
861
898
 
862
- declare interface CustomDockComponent extends ComponentPayload {
899
+ /**
900
+ * @public
901
+ */
902
+ export declare interface CustomDockComponent extends ComponentPayload {
863
903
  id: ComponentId;
864
904
  }
865
905
 
@@ -869,7 +909,10 @@ declare type CustomIcon = string | (({ theme, iconSize }: {
869
909
  iconSize: 'normal' | 'large';
870
910
  }) => string);
871
911
 
872
- declare type CustomPanelMountFunction = (domElement: HTMLDivElement) => PanelDisposer;
912
+ /**
913
+ * @public
914
+ */
915
+ export declare type CustomPanelMountFunction = (domElement: HTMLDivElement) => PanelDisposer;
873
916
 
874
917
  export { CutoutOperation }
875
918
 
@@ -889,7 +932,10 @@ export { DesignBlockTypeShorthand }
889
932
 
890
933
  export { DesignUnit }
891
934
 
892
- declare interface Dialog {
935
+ /**
936
+ * @public
937
+ */
938
+ export declare interface Dialog {
893
939
  type?: DialogType;
894
940
  size?: DialogSize;
895
941
  content: DialogContent;
@@ -900,7 +946,10 @@ declare interface Dialog {
900
946
  clickOutsideToClose?: boolean;
901
947
  }
902
948
 
903
- declare type DialogAction = {
949
+ /**
950
+ * @public
951
+ */
952
+ export declare type DialogAction = {
904
953
  variant?: 'regular' | 'plain';
905
954
  color?: 'accent' | 'danger';
906
955
  label: string;
@@ -909,19 +958,31 @@ declare type DialogAction = {
909
958
  }) => void;
910
959
  };
911
960
 
912
- declare type DialogContent = string | {
961
+ /**
962
+ * @public
963
+ */
964
+ export declare type DialogContent = string | {
913
965
  title?: string;
914
966
  message: string | string[];
915
967
  };
916
968
 
917
- declare type DialogProgress = number | 'indeterminate' | {
969
+ /**
970
+ * @public
971
+ */
972
+ export declare type DialogProgress = number | 'indeterminate' | {
918
973
  value: number;
919
974
  max: number;
920
975
  };
921
976
 
922
- declare type DialogSize = 'regular' | 'large';
977
+ /**
978
+ * @public
979
+ */
980
+ export declare type DialogSize = 'regular' | 'large';
923
981
 
924
- declare type DialogType = 'regular' | 'success' | 'error' | 'info' | 'warning' | 'loading';
982
+ /**
983
+ * @public
984
+ */
985
+ export declare type DialogType = 'regular' | 'success' | 'error' | 'info' | 'warning' | 'loading';
925
986
 
926
987
  /**
927
988
  * @public
@@ -933,15 +994,27 @@ declare interface DockGroup {
933
994
  entryIds?: string[];
934
995
  }
935
996
 
936
- declare type DockOrderComponent = CustomDockComponent | AssetLibraryDockComponent;
997
+ /**
998
+ * @public
999
+ */
1000
+ export declare type DockOrderComponent = CustomDockComponent | AssetLibraryDockComponent;
937
1001
 
938
- declare type DockOrderComponentId = 'ly.img.separator' | 'ly.img.spacer' | (string & {});
1002
+ /**
1003
+ * @public
1004
+ */
1005
+ export declare type DockOrderComponentId = 'ly.img.separator' | 'ly.img.spacer' | (string & {});
939
1006
 
940
- declare interface DropdownChildrenContext {
1007
+ /**
1008
+ * @public
1009
+ */
1010
+ export declare interface DropdownChildrenContext {
941
1011
  close: () => void;
942
1012
  }
943
1013
 
944
- declare interface DropdownOptions {
1014
+ /**
1015
+ * @public
1016
+ */
1017
+ export declare interface DropdownOptions {
945
1018
  inputLabel?: string | string[];
946
1019
  inputLabelPosition?: 'top' | 'left';
947
1020
  label?: string | string[];
@@ -1067,7 +1140,10 @@ export { GradientColorStop }
1067
1140
 
1068
1141
  export { GradientstopRGBA }
1069
1142
 
1070
- declare interface HeadingOptions {
1143
+ /**
1144
+ * @public
1145
+ */
1146
+ export declare interface HeadingOptions {
1071
1147
  content: string;
1072
1148
  }
1073
1149
 
@@ -1086,7 +1162,10 @@ export { HTMLCreativeEngineCanvasElement }
1086
1162
  */
1087
1163
  declare type I18n = Record<string, Translations>;
1088
1164
 
1089
- declare interface InputOptions<T, P = 'top' | 'left'> {
1165
+ /**
1166
+ * @public
1167
+ */
1168
+ export declare interface InputOptions<T, P = 'top' | 'left'> {
1090
1169
  inputLabel?: string | string[];
1091
1170
  inputLabelPosition?: P;
1092
1171
  value: T;
@@ -1101,7 +1180,10 @@ declare const INSPECTOR_BAR_TRANSFORM_ORDER_DEFAULT: readonly ["ly.img.text.type
1101
1180
 
1102
1181
  declare const INSPECTOR_BAR_TRIM_ORDER_DEFAULT: readonly ["ly.img.trimControls.inspectorBar"];
1103
1182
 
1104
- declare type InspectorBarComponentId = 'ly.img.separator' | 'ly.img.spacer' | (typeof INSPECTOR_BAR_TRANSFORM_ORDER_DEFAULT)[number] | (typeof INSPECTOR_BAR_TRIM_ORDER_DEFAULT)[number] | (typeof INSPECTOR_BAR_CROP_ORDER_DEFAULT)[number] | (string & {});
1183
+ /**
1184
+ * @public
1185
+ */
1186
+ export declare type InspectorBarComponentId = 'ly.img.separator' | 'ly.img.spacer' | (typeof INSPECTOR_BAR_TRANSFORM_ORDER_DEFAULT)[number] | (typeof INSPECTOR_BAR_TRIM_ORDER_DEFAULT)[number] | (typeof INSPECTOR_BAR_CROP_ORDER_DEFAULT)[number] | (string & {});
1105
1187
 
1106
1188
  declare class InternationalisationAPI {
1107
1189
  #private;
@@ -1140,7 +1222,10 @@ declare type IsEnabledFeatureContext = {
1140
1222
  engine: CreativeEngine_2;
1141
1223
  };
1142
1224
 
1143
- declare interface LibraryOptions {
1225
+ /**
1226
+ * @public
1227
+ */
1228
+ export declare interface LibraryOptions {
1144
1229
  /**
1145
1230
  * `AssetLibraryEntry[]` is deprecated and will be removed in the future;
1146
1231
  * use `string[]` instead to pass a list of the asset library entries.
@@ -1157,7 +1242,10 @@ export { Logger }
1157
1242
 
1158
1243
  export { LogLevel }
1159
1244
 
1160
- declare interface MediaPreviewOptions {
1245
+ /**
1246
+ * @public
1247
+ */
1248
+ export declare interface MediaPreviewOptions {
1161
1249
  size?: 'small' | 'medium';
1162
1250
  preview?: PreviewType;
1163
1251
  action?: ButtonOptions;
@@ -1167,7 +1255,10 @@ export { MimeType_2 as MimeType }
1167
1255
 
1168
1256
  declare const NAVIGATION_BAR_ORDER_DEFAULT: readonly ["ly.img.back.navigationBar", "ly.img.undoRedo.navigationBar", "ly.img.spacer", "ly.img.title.navigationBar", "ly.img.spacer", "ly.img.zoom.navigationBar", "ly.img.preview.navigationBar", "ly.img.actions.navigationBar", "ly.img.close.navigationBar"];
1169
1257
 
1170
- declare type NavigationBarComponentId = 'ly.img.separator' | 'ly.img.spacer' | (typeof NAVIGATION_BAR_ORDER_DEFAULT)[number] | (string & {});
1258
+ /**
1259
+ * @public
1260
+ */
1261
+ export declare type NavigationBarComponentId = 'ly.img.separator' | 'ly.img.spacer' | (typeof NAVIGATION_BAR_ORDER_DEFAULT)[number] | (string & {});
1171
1262
 
1172
1263
  /** @public */
1173
1264
  declare enum NavigationPosition {
@@ -1175,6 +1266,9 @@ declare enum NavigationPosition {
1175
1266
  Bottom = "bottom"
1176
1267
  }
1177
1268
 
1269
+ /**
1270
+ * @public
1271
+ */
1178
1272
  declare interface Notification_2 {
1179
1273
  type?: NotificationType;
1180
1274
  message: string;
@@ -1187,12 +1281,22 @@ declare interface Notification_2 {
1187
1281
  }) => void;
1188
1282
  };
1189
1283
  }
1284
+ export { Notification_2 as Notification }
1190
1285
 
1191
- declare type NotificationDuration = number | 'infinite' | 'short' | 'medium' | 'long';
1286
+ /**
1287
+ * @public
1288
+ */
1289
+ export declare type NotificationDuration = number | 'infinite' | 'short' | 'medium' | 'long';
1192
1290
 
1193
- declare type NotificationType = 'success' | 'error' | 'info' | 'warning' | 'loading';
1291
+ /**
1292
+ * @public
1293
+ */
1294
+ export declare type NotificationType = 'success' | 'error' | 'info' | 'warning' | 'loading';
1194
1295
 
1195
- declare interface NumberInputOptions extends InputOptions<number> {
1296
+ /**
1297
+ * @public
1298
+ */
1299
+ export declare interface NumberInputOptions extends InputOptions<number> {
1196
1300
  min?: number;
1197
1301
  max?: number;
1198
1302
  step?: number;
@@ -1220,11 +1324,17 @@ declare type OnUploadOptions = {
1220
1324
  */
1221
1325
  export declare type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;
1222
1326
 
1223
- declare interface OrderComponent<I = ComponentId> extends ComponentPayload {
1327
+ /**
1328
+ * @public
1329
+ */
1330
+ export declare interface OrderComponent<I = ComponentId> extends ComponentPayload {
1224
1331
  id: I;
1225
1332
  }
1226
1333
 
1227
- declare interface OrderContext {
1334
+ /**
1335
+ * @public
1336
+ */
1337
+ export declare interface OrderContext {
1228
1338
  editMode: EditMode;
1229
1339
  }
1230
1340
 
@@ -1239,35 +1349,56 @@ export declare type PageFormatDefinition = {
1239
1349
 
1240
1350
  export { PaletteColor }
1241
1351
 
1242
- declare type PanelDisposer = () => void;
1352
+ /**
1353
+ * @public
1354
+ */
1355
+ export declare type PanelDisposer = () => void;
1243
1356
 
1244
- declare type PanelId = '//ly.img.panel/assetLibrary' | '//ly.img.panel/assetLibrary.replace' | '//ly.img.panel/settings' | '//ly.img.panel/inspector' | (string & {});
1357
+ /**
1358
+ * @public
1359
+ */
1360
+ export declare type PanelId = '//ly.img.panel/assetLibrary' | '//ly.img.panel/assetLibrary.replace' | '//ly.img.panel/settings' | '//ly.img.panel/inspector' | (string & {});
1245
1361
 
1246
- declare type PanelOptions<T extends PanelId> = {
1362
+ /**
1363
+ * @public
1364
+ */
1365
+ export declare type PanelOptions<T extends PanelId> = {
1247
1366
  closableByUser?: boolean;
1248
1367
  position?: PanelPosition;
1249
1368
  floating?: boolean;
1250
1369
  payload?: PanelPayload<T>;
1251
1370
  };
1252
1371
 
1253
- declare type PanelPayload<T extends PanelId> = T extends '//ly.img.panel/assetLibrary' ? AssetLibraryPanelPayload : UnknownPanelPayload;
1372
+ /**
1373
+ * @public
1374
+ */
1375
+ export declare type PanelPayload<T extends PanelId> = T extends '//ly.img.panel/assetLibrary' ? AssetLibraryPanelPayload : UnknownPanelPayload;
1254
1376
 
1255
1377
  /** @public */
1256
- declare enum PanelPosition {
1378
+ export declare enum PanelPosition {
1257
1379
  Left = "left",
1258
1380
  Right = "right"
1259
1381
  }
1260
1382
 
1261
1383
  export { PositionMode }
1262
1384
 
1263
- declare type PreviewType = PreviewTypeImage | PreviewTypeColor;
1385
+ /**
1386
+ * @public
1387
+ */
1388
+ export declare type PreviewType = PreviewTypeImage | PreviewTypeColor;
1264
1389
 
1265
- declare type PreviewTypeColor = {
1390
+ /**
1391
+ * @public
1392
+ */
1393
+ export declare type PreviewTypeColor = {
1266
1394
  type: 'color';
1267
1395
  color: string;
1268
1396
  };
1269
1397
 
1270
- declare type PreviewTypeImage = {
1398
+ /**
1399
+ * @public
1400
+ */
1401
+ export declare type PreviewTypeImage = {
1271
1402
  type: 'image';
1272
1403
  uri: string;
1273
1404
  };
@@ -1277,7 +1408,7 @@ export { PropertyType }
1277
1408
  export { Range_2 as Range }
1278
1409
 
1279
1410
  /** @public */
1280
- declare interface ReplaceAssetLibraryEntriesContext {
1411
+ export declare interface ReplaceAssetLibraryEntriesContext {
1281
1412
  selectedBlocks: {
1282
1413
  id: DesignBlockId;
1283
1414
  blockType: DesignBlockTypeLonghand;
@@ -1308,12 +1439,18 @@ export { SceneMode }
1308
1439
 
1309
1440
  export { Scope }
1310
1441
 
1311
- declare interface SectionOptions {
1442
+ /**
1443
+ * @public
1444
+ */
1445
+ export declare interface SectionOptions {
1312
1446
  title?: string;
1313
1447
  children?: () => void;
1314
1448
  }
1315
1449
 
1316
- declare interface SelectOptions extends InputOptions<SelectValue> {
1450
+ /**
1451
+ * @public
1452
+ */
1453
+ export declare interface SelectOptions extends InputOptions<SelectValue> {
1317
1454
  icon?: CustomIcon;
1318
1455
  inputLabel?: string | string[];
1319
1456
  tooltip?: string | string[];
@@ -1324,7 +1461,10 @@ declare interface SelectOptions extends InputOptions<SelectValue> {
1324
1461
  values: SelectValue[];
1325
1462
  }
1326
1463
 
1327
- declare interface SelectValue {
1464
+ /**
1465
+ * @public
1466
+ */
1467
+ export declare interface SelectValue {
1328
1468
  id: string;
1329
1469
  label: string | string[];
1330
1470
  icon?: CustomIcon;
@@ -1352,7 +1492,10 @@ export { ShapeTypeShorthand }
1352
1492
 
1353
1493
  export { SizeMode }
1354
1494
 
1355
- declare interface SliderOptions extends InputOptions<number> {
1495
+ /**
1496
+ * @public
1497
+ */
1498
+ export declare interface SliderOptions extends InputOptions<number> {
1356
1499
  min: number;
1357
1500
  max: number;
1358
1501
  step?: number;
@@ -1371,7 +1514,10 @@ export { StrokePosition }
1371
1514
 
1372
1515
  export { StrokeStyle }
1373
1516
 
1374
- declare type Suffix = Partial<Omit<ButtonOptions, 'label' | 'inputLabel' | 'inputLabelPosition' | 'suffix'>>;
1517
+ /**
1518
+ * @public
1519
+ */
1520
+ export declare type Suffix = Partial<Omit<ButtonOptions, 'label' | 'inputLabel' | 'inputLabelPosition' | 'suffix'>>;
1375
1521
 
1376
1522
  export { supportsBrowser }
1377
1523
 
@@ -1381,15 +1527,24 @@ export { supportsVideoExport }
1381
1527
 
1382
1528
  export { supportsWasm }
1383
1529
 
1384
- declare interface TextAreaOptions extends Omit<InputOptions<string>, 'suffix'> {
1530
+ /**
1531
+ * @public
1532
+ */
1533
+ export declare interface TextAreaOptions extends Omit<InputOptions<string>, 'suffix'> {
1385
1534
  }
1386
1535
 
1387
1536
  export { TextCase }
1388
1537
 
1389
- declare interface TextInputOptions extends InputOptions<string> {
1538
+ /**
1539
+ * @public
1540
+ */
1541
+ export declare interface TextInputOptions extends InputOptions<string> {
1390
1542
  }
1391
1543
 
1392
- declare interface TextOptions {
1544
+ /**
1545
+ * @public
1546
+ */
1547
+ export declare interface TextOptions {
1393
1548
  content: string;
1394
1549
  align?: 'left' | 'center' | 'right';
1395
1550
  }
@@ -1420,7 +1575,10 @@ declare interface UIOptionsPerDesignUnit {
1420
1575
  in: UIOptionsForSingleDesignUnit;
1421
1576
  }
1422
1577
 
1423
- declare type UnknownPanelPayload = {
1578
+ /**
1579
+ * @public
1580
+ */
1581
+ export declare type UnknownPanelPayload = {
1424
1582
  [key: string]: unknown;
1425
1583
  };
1426
1584
 
@@ -2087,7 +2245,7 @@ export { VariableAPI }
2087
2245
  export { VerticalBlockAlignment }
2088
2246
 
2089
2247
  /** @public */
2090
- declare enum ViewStyle {
2248
+ export declare enum ViewStyle {
2091
2249
  Advanced = "advanced",
2092
2250
  Default = "default"
2093
2251
  }