@zealicsolutions/web-ui 1.1.11 → 1.1.13

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.
@@ -322,6 +322,7 @@ export interface VideoMoleculeType extends BaseMoleculeType {
322
322
  properties: {
323
323
  video: VideoProperties;
324
324
  coverImage: ImageProperties;
325
+ dataCapture?: DataCaptureProperties;
325
326
  };
326
327
  }
327
328
  export interface ImageMoleculeType extends BaseMoleculeType {
@@ -332,6 +333,7 @@ export interface ImageMoleculeType extends BaseMoleculeType {
332
333
  properties: {
333
334
  image: ImageProperties;
334
335
  link: LinkProperties;
336
+ dataCapture?: DataCaptureProperties;
335
337
  };
336
338
  }
337
339
  export interface ButtonMoleculeType extends BaseMoleculeType {
@@ -351,6 +353,7 @@ export interface ChipMoleculeType extends BaseMoleculeType {
351
353
  };
352
354
  properties: {
353
355
  text: TextProperties;
356
+ dataCapture?: DataCaptureProperties;
354
357
  };
355
358
  }
356
359
  export interface BadgeMoleculeType extends BaseMoleculeType {
@@ -360,6 +363,7 @@ export interface BadgeMoleculeType extends BaseMoleculeType {
360
363
  };
361
364
  properties: {
362
365
  text: TextProperties;
366
+ dataCapture?: DataCaptureProperties;
363
367
  };
364
368
  }
365
369
  export interface AlertMoleculeType extends BaseMoleculeType {