@cakemail-org/ui-components-v2 2.0.62 → 2.0.64
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
|
@@ -8269,7 +8269,7 @@ function Search(_a) {
|
|
|
8269
8269
|
else if (onChange) {
|
|
8270
8270
|
onChange(value);
|
|
8271
8271
|
}
|
|
8272
|
-
|
|
8272
|
+
clearTimeout(timeoutRef.current);
|
|
8273
8273
|
}
|
|
8274
8274
|
}
|
|
8275
8275
|
function handleOnChange(event) {
|
|
@@ -16658,7 +16658,7 @@ var FormModel = /** @class */ (function (_super) {
|
|
|
16658
16658
|
var SummaryEnhancedFormModel = /** @class */ (function (_super) {
|
|
16659
16659
|
__extends(SummaryEnhancedFormModel, _super);
|
|
16660
16660
|
function SummaryEnhancedFormModel(_a) {
|
|
16661
|
-
var id = _a.id, list_id = _a.list_id, enabled = _a.enabled, name = _a.name, description = _a.description, tags = _a.tags, post_redirect_url = _a.post_redirect_url, double_opt_in = _a.double_opt_in, double_opt_in_redirect_url = _a.double_opt_in_redirect_url, submission_url = _a.submission_url, async_processing = _a.async_processing, branding = _a.branding,
|
|
16661
|
+
var id = _a.id, list_id = _a.list_id, enabled = _a.enabled, name = _a.name, description = _a.description, tags = _a.tags, post_redirect_url = _a.post_redirect_url, double_opt_in = _a.double_opt_in, double_opt_in_redirect_url = _a.double_opt_in_redirect_url, submission_url = _a.submission_url, async_processing = _a.async_processing, branding = _a.branding, created_on = _a.created_on, updated_on = _a.updated_on, published_on = _a.published_on, edited_by = _a.edited_by, thumbnail_url = _a.thumbnail_url, recaptcha = _a.recaptcha;
|
|
16662
16662
|
var _this = _super.call(this, { id: id, name: name, list_id: list_id, double_opt_in: double_opt_in }) || this;
|
|
16663
16663
|
_this.enabled = enabled;
|
|
16664
16664
|
_this.description = description;
|
|
@@ -16668,9 +16668,9 @@ var SummaryEnhancedFormModel = /** @class */ (function (_super) {
|
|
|
16668
16668
|
_this.submission_url = submission_url;
|
|
16669
16669
|
_this.async_processing = async_processing;
|
|
16670
16670
|
_this.branding = branding;
|
|
16671
|
-
_this.
|
|
16672
|
-
_this.
|
|
16673
|
-
_this.
|
|
16671
|
+
_this.created_on = created_on;
|
|
16672
|
+
_this.updated_on = updated_on;
|
|
16673
|
+
_this.published_on = published_on;
|
|
16674
16674
|
_this.edited_by = edited_by;
|
|
16675
16675
|
_this.thumbnail_url = thumbnail_url;
|
|
16676
16676
|
_this.recaptcha = recaptcha;
|
|
@@ -47,13 +47,13 @@ export declare class SummaryEnhancedFormModel extends CommonFormModel {
|
|
|
47
47
|
submission_url: string;
|
|
48
48
|
async_processing: boolean;
|
|
49
49
|
branding: string;
|
|
50
|
-
readonly
|
|
51
|
-
readonly
|
|
52
|
-
readonly
|
|
50
|
+
readonly created_on: number;
|
|
51
|
+
readonly updated_on: number;
|
|
52
|
+
readonly published_on: number;
|
|
53
53
|
readonly edited_by: TEnhancedFormEditedBy;
|
|
54
54
|
readonly thumbnail_url: string;
|
|
55
55
|
recaptcha: TEnhancedFormRecaptcha;
|
|
56
|
-
constructor({ id, list_id, enabled, name, description, tags, post_redirect_url, double_opt_in, double_opt_in_redirect_url, submission_url, async_processing, branding,
|
|
56
|
+
constructor({ id, list_id, enabled, name, description, tags, post_redirect_url, double_opt_in, double_opt_in_redirect_url, submission_url, async_processing, branding, created_on, updated_on, published_on, edited_by, thumbnail_url, recaptcha, }: TSummaryEnhancedFormModel);
|
|
57
57
|
enable(): Promise<TEnableApiResource>;
|
|
58
58
|
disable(): Promise<TDisableApiResource>;
|
|
59
59
|
publish(): Promise<TGenericReturn<EnhancedFormModel>>;
|
|
@@ -47,9 +47,9 @@ export interface TSummaryEnhancedFormModel {
|
|
|
47
47
|
submission_url: string;
|
|
48
48
|
async_processing: boolean;
|
|
49
49
|
branding: string;
|
|
50
|
-
readonly
|
|
51
|
-
readonly
|
|
52
|
-
readonly
|
|
50
|
+
readonly created_on: number;
|
|
51
|
+
readonly updated_on: number;
|
|
52
|
+
readonly published_on: number;
|
|
53
53
|
readonly edited_by: TEnhancedFormEditedBy;
|
|
54
54
|
readonly thumbnail_url: string;
|
|
55
55
|
recaptcha: TEnhancedFormRecaptcha;
|
package/dist/esm/index.js
CHANGED
|
@@ -8249,7 +8249,7 @@ function Search(_a) {
|
|
|
8249
8249
|
else if (onChange) {
|
|
8250
8250
|
onChange(value);
|
|
8251
8251
|
}
|
|
8252
|
-
|
|
8252
|
+
clearTimeout(timeoutRef.current);
|
|
8253
8253
|
}
|
|
8254
8254
|
}
|
|
8255
8255
|
function handleOnChange(event) {
|
|
@@ -16638,7 +16638,7 @@ var FormModel = /** @class */ (function (_super) {
|
|
|
16638
16638
|
var SummaryEnhancedFormModel = /** @class */ (function (_super) {
|
|
16639
16639
|
__extends(SummaryEnhancedFormModel, _super);
|
|
16640
16640
|
function SummaryEnhancedFormModel(_a) {
|
|
16641
|
-
var id = _a.id, list_id = _a.list_id, enabled = _a.enabled, name = _a.name, description = _a.description, tags = _a.tags, post_redirect_url = _a.post_redirect_url, double_opt_in = _a.double_opt_in, double_opt_in_redirect_url = _a.double_opt_in_redirect_url, submission_url = _a.submission_url, async_processing = _a.async_processing, branding = _a.branding,
|
|
16641
|
+
var id = _a.id, list_id = _a.list_id, enabled = _a.enabled, name = _a.name, description = _a.description, tags = _a.tags, post_redirect_url = _a.post_redirect_url, double_opt_in = _a.double_opt_in, double_opt_in_redirect_url = _a.double_opt_in_redirect_url, submission_url = _a.submission_url, async_processing = _a.async_processing, branding = _a.branding, created_on = _a.created_on, updated_on = _a.updated_on, published_on = _a.published_on, edited_by = _a.edited_by, thumbnail_url = _a.thumbnail_url, recaptcha = _a.recaptcha;
|
|
16642
16642
|
var _this = _super.call(this, { id: id, name: name, list_id: list_id, double_opt_in: double_opt_in }) || this;
|
|
16643
16643
|
_this.enabled = enabled;
|
|
16644
16644
|
_this.description = description;
|
|
@@ -16648,9 +16648,9 @@ var SummaryEnhancedFormModel = /** @class */ (function (_super) {
|
|
|
16648
16648
|
_this.submission_url = submission_url;
|
|
16649
16649
|
_this.async_processing = async_processing;
|
|
16650
16650
|
_this.branding = branding;
|
|
16651
|
-
_this.
|
|
16652
|
-
_this.
|
|
16653
|
-
_this.
|
|
16651
|
+
_this.created_on = created_on;
|
|
16652
|
+
_this.updated_on = updated_on;
|
|
16653
|
+
_this.published_on = published_on;
|
|
16654
16654
|
_this.edited_by = edited_by;
|
|
16655
16655
|
_this.thumbnail_url = thumbnail_url;
|
|
16656
16656
|
_this.recaptcha = recaptcha;
|
|
@@ -47,13 +47,13 @@ export declare class SummaryEnhancedFormModel extends CommonFormModel {
|
|
|
47
47
|
submission_url: string;
|
|
48
48
|
async_processing: boolean;
|
|
49
49
|
branding: string;
|
|
50
|
-
readonly
|
|
51
|
-
readonly
|
|
52
|
-
readonly
|
|
50
|
+
readonly created_on: number;
|
|
51
|
+
readonly updated_on: number;
|
|
52
|
+
readonly published_on: number;
|
|
53
53
|
readonly edited_by: TEnhancedFormEditedBy;
|
|
54
54
|
readonly thumbnail_url: string;
|
|
55
55
|
recaptcha: TEnhancedFormRecaptcha;
|
|
56
|
-
constructor({ id, list_id, enabled, name, description, tags, post_redirect_url, double_opt_in, double_opt_in_redirect_url, submission_url, async_processing, branding,
|
|
56
|
+
constructor({ id, list_id, enabled, name, description, tags, post_redirect_url, double_opt_in, double_opt_in_redirect_url, submission_url, async_processing, branding, created_on, updated_on, published_on, edited_by, thumbnail_url, recaptcha, }: TSummaryEnhancedFormModel);
|
|
57
57
|
enable(): Promise<TEnableApiResource>;
|
|
58
58
|
disable(): Promise<TDisableApiResource>;
|
|
59
59
|
publish(): Promise<TGenericReturn<EnhancedFormModel>>;
|
|
@@ -47,9 +47,9 @@ export interface TSummaryEnhancedFormModel {
|
|
|
47
47
|
submission_url: string;
|
|
48
48
|
async_processing: boolean;
|
|
49
49
|
branding: string;
|
|
50
|
-
readonly
|
|
51
|
-
readonly
|
|
52
|
-
readonly
|
|
50
|
+
readonly created_on: number;
|
|
51
|
+
readonly updated_on: number;
|
|
52
|
+
readonly published_on: number;
|
|
53
53
|
readonly edited_by: TEnhancedFormEditedBy;
|
|
54
54
|
readonly thumbnail_url: string;
|
|
55
55
|
recaptcha: TEnhancedFormRecaptcha;
|