@uniformdev/mesh-sdk 19.151.2-alpha.16 → 19.153.1-alpha.1

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/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ApiClient, ClientOptions, ExceptProject } from '@uniformdev/context/api';
2
2
  import { ProjectMapNode } from '@uniformdev/project-map';
3
- import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition, EntryData } from '@uniformdev/canvas';
3
+ import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition } from '@uniformdev/canvas';
4
4
  export { AssetParamValue, AssetParamValueItem } from '@uniformdev/canvas';
5
5
  import { Emitter } from 'mitt';
6
6
 
@@ -68,9 +68,6 @@ interface paths$1 {
68
68
  /** @enum {string} */
69
69
  localizable?: "default-yes" | "default-no" | "yes" | "no";
70
70
  }[];
71
- editorTools?: {
72
- url: string;
73
- };
74
71
  };
75
72
  dataConnectors?: {
76
73
  type: string;
@@ -223,9 +220,6 @@ interface paths$1 {
223
220
  /** @enum {string} */
224
221
  localizable?: "default-yes" | "default-no" | "yes" | "no";
225
222
  }[];
226
- editorTools?: {
227
- url: string;
228
- };
229
223
  };
230
224
  dataConnectors?: {
231
225
  type: string;
@@ -331,7 +325,7 @@ interface paths$1 {
331
325
  "application/json": {
332
326
  /**
333
327
  * Format: uuid
334
- * @description The team ID.
328
+ * @description The team ID
335
329
  */
336
330
  teamId: string;
337
331
  data: {
@@ -377,9 +371,6 @@ interface paths$1 {
377
371
  /** @enum {string} */
378
372
  localizable?: "default-yes" | "default-no" | "yes" | "no";
379
373
  }[];
380
- editorTools?: {
381
- url: string;
382
- };
383
374
  };
384
375
  dataConnectors?: {
385
376
  type: string;
@@ -779,9 +770,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
779
770
  renderableInPropertyPanel?: boolean | undefined;
780
771
  localizable?: "default-yes" | "default-no" | "yes" | "no" | undefined;
781
772
  }[];
782
- editorTools?: {
783
- url: string;
784
- } | undefined;
785
773
  } | undefined;
786
774
  dataConnectors?: {
787
775
  type: string;
@@ -983,20 +971,14 @@ type ParamTypeLocation<TParamValue = unknown, TParamConfiguration = unknown, TPa
983
971
  editConnectedData: Awaited<ReturnType<typeof connectToParent>>['parent']['editConnectedData'];
984
972
  };
985
973
 
986
- type SettingsLocationMetadata = CommonMetadata & {
987
- locales: {
988
- locale: string;
989
- displayName: string;
990
- isDefault: boolean;
991
- }[];
992
- };
974
+ type SettingsLocationMetadata = CommonMetadata;
993
975
  type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsLocationMetadata, TSettingsType, 'settings'>;
994
976
 
995
977
  /**
996
978
  * Defines methods used for interacting with a Mesh location
997
979
  * To receive useful typings, check the `type` property of the location to narrow the typing.
998
980
  */
999
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
981
+ type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1000
982
  interface MeshContextData {
1001
983
  locationKey: string;
1002
984
  locationType: MeshLocationTypes;
@@ -1302,7 +1284,7 @@ type MeshLocationUserPermissions =
1302
1284
  /**
1303
1285
  * Known location types that can be passed to a mesh location
1304
1286
  */
1305
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'canvasEditorTools' | 'aiMetadata';
1287
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'aiMetadata';
1306
1288
  type SetValueOptions = ValidationResult;
1307
1289
  type SetValueMessage = {
1308
1290
  uniformMeshLocationValue: unknown;
@@ -1341,27 +1323,6 @@ type PromptSettingsLocationMetadata<TIntegrationConfiguration = unknown> = Commo
1341
1323
  type AIGenerateLocation<TType> = MeshLocationCore<TType, AIGenerateLocationMetadata, TType, 'aiGenerate'>;
1342
1324
  type AIPromptMetadataLocation = MeshLocationCore<Record<string, unknown>, PromptSettingsLocationMetadata, Record<string, unknown>, 'aiMetadata'>;
1343
1325
 
1344
- type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1345
- releaseId?: string;
1346
- state?: number;
1347
- locales: {
1348
- locale: string;
1349
- displayName: string;
1350
- isDefault: boolean;
1351
- }[];
1352
- }, TIntegrationConfiguration>;
1353
- type CanvasEditorToolsData = {
1354
- patternNamesIndex?: Record<string, string>;
1355
- entryNamesIndex?: Record<string, string>;
1356
- } & ({
1357
- rootEntity: RootComponentInstance;
1358
- type: 'composition';
1359
- } | {
1360
- rootEntity: EntryData;
1361
- type: 'entry';
1362
- });
1363
- type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1364
-
1365
1326
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1366
1327
  /** The Uniform project ID */
1367
1328
  componentDefinition: ComponentDefinition;
@@ -1471,4 +1432,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1471
1432
  */
1472
1433
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1473
1434
 
1474
- export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, hasPermissions, hasRole, initializeUniformMeshSDK };
1435
+ export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, hasPermissions, hasRole, initializeUniformMeshSDK };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ApiClient, ClientOptions, ExceptProject } from '@uniformdev/context/api';
2
2
  import { ProjectMapNode } from '@uniformdev/project-map';
3
- import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition, EntryData } from '@uniformdev/canvas';
3
+ import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition } from '@uniformdev/canvas';
4
4
  export { AssetParamValue, AssetParamValueItem } from '@uniformdev/canvas';
5
5
  import { Emitter } from 'mitt';
6
6
 
@@ -68,9 +68,6 @@ interface paths$1 {
68
68
  /** @enum {string} */
69
69
  localizable?: "default-yes" | "default-no" | "yes" | "no";
70
70
  }[];
71
- editorTools?: {
72
- url: string;
73
- };
74
71
  };
75
72
  dataConnectors?: {
76
73
  type: string;
@@ -223,9 +220,6 @@ interface paths$1 {
223
220
  /** @enum {string} */
224
221
  localizable?: "default-yes" | "default-no" | "yes" | "no";
225
222
  }[];
226
- editorTools?: {
227
- url: string;
228
- };
229
223
  };
230
224
  dataConnectors?: {
231
225
  type: string;
@@ -331,7 +325,7 @@ interface paths$1 {
331
325
  "application/json": {
332
326
  /**
333
327
  * Format: uuid
334
- * @description The team ID.
328
+ * @description The team ID
335
329
  */
336
330
  teamId: string;
337
331
  data: {
@@ -377,9 +371,6 @@ interface paths$1 {
377
371
  /** @enum {string} */
378
372
  localizable?: "default-yes" | "default-no" | "yes" | "no";
379
373
  }[];
380
- editorTools?: {
381
- url: string;
382
- };
383
374
  };
384
375
  dataConnectors?: {
385
376
  type: string;
@@ -779,9 +770,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
779
770
  renderableInPropertyPanel?: boolean | undefined;
780
771
  localizable?: "default-yes" | "default-no" | "yes" | "no" | undefined;
781
772
  }[];
782
- editorTools?: {
783
- url: string;
784
- } | undefined;
785
773
  } | undefined;
786
774
  dataConnectors?: {
787
775
  type: string;
@@ -983,20 +971,14 @@ type ParamTypeLocation<TParamValue = unknown, TParamConfiguration = unknown, TPa
983
971
  editConnectedData: Awaited<ReturnType<typeof connectToParent>>['parent']['editConnectedData'];
984
972
  };
985
973
 
986
- type SettingsLocationMetadata = CommonMetadata & {
987
- locales: {
988
- locale: string;
989
- displayName: string;
990
- isDefault: boolean;
991
- }[];
992
- };
974
+ type SettingsLocationMetadata = CommonMetadata;
993
975
  type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsLocationMetadata, TSettingsType, 'settings'>;
994
976
 
995
977
  /**
996
978
  * Defines methods used for interacting with a Mesh location
997
979
  * To receive useful typings, check the `type` property of the location to narrow the typing.
998
980
  */
999
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
981
+ type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1000
982
  interface MeshContextData {
1001
983
  locationKey: string;
1002
984
  locationType: MeshLocationTypes;
@@ -1302,7 +1284,7 @@ type MeshLocationUserPermissions =
1302
1284
  /**
1303
1285
  * Known location types that can be passed to a mesh location
1304
1286
  */
1305
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'canvasEditorTools' | 'aiMetadata';
1287
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'aiMetadata';
1306
1288
  type SetValueOptions = ValidationResult;
1307
1289
  type SetValueMessage = {
1308
1290
  uniformMeshLocationValue: unknown;
@@ -1341,27 +1323,6 @@ type PromptSettingsLocationMetadata<TIntegrationConfiguration = unknown> = Commo
1341
1323
  type AIGenerateLocation<TType> = MeshLocationCore<TType, AIGenerateLocationMetadata, TType, 'aiGenerate'>;
1342
1324
  type AIPromptMetadataLocation = MeshLocationCore<Record<string, unknown>, PromptSettingsLocationMetadata, Record<string, unknown>, 'aiMetadata'>;
1343
1325
 
1344
- type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1345
- releaseId?: string;
1346
- state?: number;
1347
- locales: {
1348
- locale: string;
1349
- displayName: string;
1350
- isDefault: boolean;
1351
- }[];
1352
- }, TIntegrationConfiguration>;
1353
- type CanvasEditorToolsData = {
1354
- patternNamesIndex?: Record<string, string>;
1355
- entryNamesIndex?: Record<string, string>;
1356
- } & ({
1357
- rootEntity: RootComponentInstance;
1358
- type: 'composition';
1359
- } | {
1360
- rootEntity: EntryData;
1361
- type: 'entry';
1362
- });
1363
- type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1364
-
1365
1326
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1366
1327
  /** The Uniform project ID */
1367
1328
  componentDefinition: ComponentDefinition;
@@ -1471,4 +1432,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1471
1432
  */
1472
1433
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1473
1434
 
1474
- export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, hasPermissions, hasRole, initializeUniformMeshSDK };
1435
+ export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, hasPermissions, hasRole, initializeUniformMeshSDK };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "19.151.2-alpha.16+eb158bfedd",
3
+ "version": "19.153.1-alpha.1+f8537157ec",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -33,14 +33,14 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@uniformdev/canvas": "19.151.2-alpha.16+eb158bfedd",
37
- "@uniformdev/context": "19.151.2-alpha.16+eb158bfedd",
38
- "@uniformdev/project-map": "19.151.2-alpha.16+eb158bfedd",
36
+ "@uniformdev/canvas": "19.153.1-alpha.1+f8537157ec",
37
+ "@uniformdev/context": "19.153.1-alpha.1+f8537157ec",
38
+ "@uniformdev/project-map": "19.153.1-alpha.1+f8537157ec",
39
39
  "imagesloaded": "^5.0.0",
40
40
  "mitt": "^3.0.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/imagesloaded": "^4.1.2"
44
44
  },
45
- "gitHead": "eb158bfeddbe40a7d4aa98b489345e76aaf2930b"
45
+ "gitHead": "f8537157ec48cfc9eeeafb95a733eb987e246427"
46
46
  }