@cakemail-org/ui-components-v2 2.2.25 → 2.2.26
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/cjs/index.js
CHANGED
|
@@ -18519,6 +18519,7 @@ var ListPopupModel = /** @class */ (function () {
|
|
|
18519
18519
|
this.thumbnail_url = params.thumbnail_url;
|
|
18520
18520
|
this.overlay = params.overlay;
|
|
18521
18521
|
this.closeButton = params.closeButton;
|
|
18522
|
+
this.published_url = params.published_url;
|
|
18522
18523
|
}
|
|
18523
18524
|
ListPopupModel.prototype.toJson = function () {
|
|
18524
18525
|
return modelToJson(this);
|
|
@@ -21,6 +21,7 @@ export declare class ListPopupModel {
|
|
|
21
21
|
thumbnail_url: string;
|
|
22
22
|
overlay: TPopupOverlay;
|
|
23
23
|
closeButton: TPopupButton;
|
|
24
|
+
published_url: string | null;
|
|
24
25
|
constructor(params: TPopupModel);
|
|
25
26
|
toJson(): any;
|
|
26
27
|
set<T extends keyof this>(property: T, value: this[T]): void;
|
package/dist/esm/index.js
CHANGED
|
@@ -18499,6 +18499,7 @@ var ListPopupModel = /** @class */ (function () {
|
|
|
18499
18499
|
this.thumbnail_url = params.thumbnail_url;
|
|
18500
18500
|
this.overlay = params.overlay;
|
|
18501
18501
|
this.closeButton = params.closeButton;
|
|
18502
|
+
this.published_url = params.published_url;
|
|
18502
18503
|
}
|
|
18503
18504
|
ListPopupModel.prototype.toJson = function () {
|
|
18504
18505
|
return modelToJson(this);
|
|
@@ -21,6 +21,7 @@ export declare class ListPopupModel {
|
|
|
21
21
|
thumbnail_url: string;
|
|
22
22
|
overlay: TPopupOverlay;
|
|
23
23
|
closeButton: TPopupButton;
|
|
24
|
+
published_url: string | null;
|
|
24
25
|
constructor(params: TPopupModel);
|
|
25
26
|
toJson(): any;
|
|
26
27
|
set<T extends keyof this>(property: T, value: this[T]): void;
|