@elementor/editor-editing-panel 4.0.0-564 → 4.0.0-591
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 +257 -35
- package/dist/index.d.ts +257 -35
- package/dist/index.js +838 -872
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +720 -751
- package/dist/index.mjs.map +1 -1
- package/package.json +21 -21
- package/src/components/section.tsx +1 -2
- package/src/components/style-tab-collapsible-content.tsx +2 -1
- package/src/controls-registry/controls-registry.tsx +5 -2
- package/src/controls-registry/settings-field.tsx +12 -0
- package/src/utils/prop-dependency-utils.ts +4 -1
- package/src/components/collapsible-content.tsx +0 -65
package/dist/index.d.mts
CHANGED
|
@@ -54,7 +54,7 @@ type SettingsFieldProps = {
|
|
|
54
54
|
propDisplayName: string;
|
|
55
55
|
children: react.ReactNode;
|
|
56
56
|
};
|
|
57
|
-
declare const SettingsField: ({ bind, children, propDisplayName }: SettingsFieldProps) => react.JSX.Element;
|
|
57
|
+
declare const SettingsField: ({ bind, children, propDisplayName }: SettingsFieldProps) => react.JSX.Element | null;
|
|
58
58
|
|
|
59
59
|
declare const StyleIndicator: _emotion_styled.StyledComponent<_mui_system.MUIStyledCommonProps<Theme> & ({
|
|
60
60
|
isOverridden?: boolean;
|
|
@@ -1257,65 +1257,287 @@ declare const controlTypes: {
|
|
|
1257
1257
|
readonly layout: "full";
|
|
1258
1258
|
readonly propTypeUtil: {
|
|
1259
1259
|
extract: (prop: unknown) => {
|
|
1260
|
-
content:
|
|
1261
|
-
|
|
1260
|
+
content: {
|
|
1261
|
+
$$type: "string";
|
|
1262
|
+
value: string | null;
|
|
1263
|
+
disabled?: boolean | undefined;
|
|
1264
|
+
} | null;
|
|
1265
|
+
children: unknown[];
|
|
1266
|
+
} | null;
|
|
1267
|
+
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"html-v3", {
|
|
1268
|
+
content: {
|
|
1269
|
+
$$type: "string";
|
|
1270
|
+
value: string | null;
|
|
1271
|
+
disabled?: boolean | undefined;
|
|
1272
|
+
} | null;
|
|
1273
|
+
children: unknown[];
|
|
1274
|
+
}>;
|
|
1275
|
+
create: {
|
|
1276
|
+
(value: {
|
|
1277
|
+
content: {
|
|
1278
|
+
$$type: "string";
|
|
1279
|
+
value: string | null;
|
|
1280
|
+
disabled?: boolean | undefined;
|
|
1281
|
+
} | null;
|
|
1282
|
+
children: unknown[];
|
|
1283
|
+
}): _elementor_editor_props.TransformablePropValue<"html-v3", {
|
|
1284
|
+
content: {
|
|
1285
|
+
$$type: "string";
|
|
1286
|
+
value: string | null;
|
|
1287
|
+
disabled?: boolean | undefined;
|
|
1288
|
+
} | null;
|
|
1289
|
+
children: unknown[];
|
|
1290
|
+
}>;
|
|
1291
|
+
(value: {
|
|
1292
|
+
content: {
|
|
1293
|
+
$$type: "string";
|
|
1294
|
+
value: string | null;
|
|
1295
|
+
disabled?: boolean | undefined;
|
|
1296
|
+
} | null;
|
|
1297
|
+
children: unknown[];
|
|
1298
|
+
}, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"html-v3", {
|
|
1299
|
+
content: {
|
|
1300
|
+
$$type: "string";
|
|
1301
|
+
value: string | null;
|
|
1302
|
+
disabled?: boolean | undefined;
|
|
1303
|
+
} | null;
|
|
1304
|
+
children: unknown[];
|
|
1305
|
+
}>;
|
|
1306
|
+
(value: (prev?: {
|
|
1307
|
+
content: {
|
|
1308
|
+
$$type: "string";
|
|
1309
|
+
value: string | null;
|
|
1310
|
+
disabled?: boolean | undefined;
|
|
1311
|
+
} | null;
|
|
1312
|
+
children: unknown[];
|
|
1313
|
+
} | undefined) => {
|
|
1314
|
+
content: {
|
|
1315
|
+
$$type: "string";
|
|
1316
|
+
value: string | null;
|
|
1317
|
+
disabled?: boolean | undefined;
|
|
1318
|
+
} | null;
|
|
1319
|
+
children: unknown[];
|
|
1320
|
+
}, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"html-v3", {
|
|
1321
|
+
content: {
|
|
1322
|
+
$$type: "string";
|
|
1323
|
+
value: string | null;
|
|
1324
|
+
disabled?: boolean | undefined;
|
|
1325
|
+
} | null;
|
|
1326
|
+
children: unknown[];
|
|
1327
|
+
}>;
|
|
1328
|
+
};
|
|
1329
|
+
schema: zod.ZodObject<{
|
|
1330
|
+
$$type: zod.ZodLiteral<"html-v3">;
|
|
1331
|
+
value: zod.ZodType<{
|
|
1332
|
+
content: {
|
|
1333
|
+
$$type: "string";
|
|
1334
|
+
value: string | null;
|
|
1335
|
+
disabled?: boolean | undefined;
|
|
1336
|
+
} | null;
|
|
1337
|
+
children: unknown[];
|
|
1338
|
+
}, zod.ZodTypeDef, {
|
|
1339
|
+
content: {
|
|
1340
|
+
$$type: "string";
|
|
1341
|
+
value: string | null;
|
|
1342
|
+
disabled?: boolean | undefined;
|
|
1343
|
+
} | null;
|
|
1344
|
+
children: unknown[];
|
|
1345
|
+
}>;
|
|
1346
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
1347
|
+
}, "strict", zod.ZodTypeAny, {
|
|
1348
|
+
$$type: "html-v3";
|
|
1349
|
+
value: {
|
|
1350
|
+
content: {
|
|
1351
|
+
$$type: "string";
|
|
1352
|
+
value: string | null;
|
|
1353
|
+
disabled?: boolean | undefined;
|
|
1354
|
+
} | null;
|
|
1355
|
+
children: unknown[];
|
|
1356
|
+
};
|
|
1357
|
+
disabled?: boolean | undefined;
|
|
1358
|
+
}, {
|
|
1359
|
+
$$type: "html-v3";
|
|
1360
|
+
value: {
|
|
1361
|
+
content: {
|
|
1362
|
+
$$type: "string";
|
|
1363
|
+
value: string | null;
|
|
1364
|
+
disabled?: boolean | undefined;
|
|
1365
|
+
} | null;
|
|
1366
|
+
children: unknown[];
|
|
1367
|
+
};
|
|
1368
|
+
disabled?: boolean | undefined;
|
|
1369
|
+
}>;
|
|
1370
|
+
key: "html-v3";
|
|
1371
|
+
};
|
|
1372
|
+
};
|
|
1373
|
+
readonly email: {
|
|
1374
|
+
readonly component: ControlComponent<() => react.JSX.Element>;
|
|
1375
|
+
readonly layout: "custom";
|
|
1376
|
+
readonly propTypeUtil: {
|
|
1377
|
+
extract: (prop: unknown) => {
|
|
1378
|
+
message?: any;
|
|
1379
|
+
to?: any;
|
|
1380
|
+
subject?: any;
|
|
1381
|
+
from?: any;
|
|
1382
|
+
"meta-data"?: any;
|
|
1383
|
+
"send-as"?: any;
|
|
1384
|
+
"from-name"?: any;
|
|
1385
|
+
"reply-to"?: any;
|
|
1386
|
+
cc?: any;
|
|
1387
|
+
bcc?: any;
|
|
1262
1388
|
} | null;
|
|
1263
|
-
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"
|
|
1264
|
-
|
|
1265
|
-
|
|
1389
|
+
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"email", {
|
|
1390
|
+
message?: any;
|
|
1391
|
+
to?: any;
|
|
1392
|
+
subject?: any;
|
|
1393
|
+
from?: any;
|
|
1394
|
+
"meta-data"?: any;
|
|
1395
|
+
"send-as"?: any;
|
|
1396
|
+
"from-name"?: any;
|
|
1397
|
+
"reply-to"?: any;
|
|
1398
|
+
cc?: any;
|
|
1399
|
+
bcc?: any;
|
|
1266
1400
|
}>;
|
|
1267
1401
|
create: {
|
|
1268
1402
|
(value: {
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1403
|
+
message?: any;
|
|
1404
|
+
to?: any;
|
|
1405
|
+
subject?: any;
|
|
1406
|
+
from?: any;
|
|
1407
|
+
"meta-data"?: any;
|
|
1408
|
+
"send-as"?: any;
|
|
1409
|
+
"from-name"?: any;
|
|
1410
|
+
"reply-to"?: any;
|
|
1411
|
+
cc?: any;
|
|
1412
|
+
bcc?: any;
|
|
1413
|
+
}): _elementor_editor_props.TransformablePropValue<"email", {
|
|
1414
|
+
message?: any;
|
|
1415
|
+
to?: any;
|
|
1416
|
+
subject?: any;
|
|
1417
|
+
from?: any;
|
|
1418
|
+
"meta-data"?: any;
|
|
1419
|
+
"send-as"?: any;
|
|
1420
|
+
"from-name"?: any;
|
|
1421
|
+
"reply-to"?: any;
|
|
1422
|
+
cc?: any;
|
|
1423
|
+
bcc?: any;
|
|
1274
1424
|
}>;
|
|
1275
1425
|
(value: {
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1426
|
+
message?: any;
|
|
1427
|
+
to?: any;
|
|
1428
|
+
subject?: any;
|
|
1429
|
+
from?: any;
|
|
1430
|
+
"meta-data"?: any;
|
|
1431
|
+
"send-as"?: any;
|
|
1432
|
+
"from-name"?: any;
|
|
1433
|
+
"reply-to"?: any;
|
|
1434
|
+
cc?: any;
|
|
1435
|
+
bcc?: any;
|
|
1436
|
+
}, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"email", {
|
|
1437
|
+
message?: any;
|
|
1438
|
+
to?: any;
|
|
1439
|
+
subject?: any;
|
|
1440
|
+
from?: any;
|
|
1441
|
+
"meta-data"?: any;
|
|
1442
|
+
"send-as"?: any;
|
|
1443
|
+
"from-name"?: any;
|
|
1444
|
+
"reply-to"?: any;
|
|
1445
|
+
cc?: any;
|
|
1446
|
+
bcc?: any;
|
|
1281
1447
|
}>;
|
|
1282
1448
|
(value: (prev?: {
|
|
1283
|
-
|
|
1284
|
-
|
|
1449
|
+
message?: any;
|
|
1450
|
+
to?: any;
|
|
1451
|
+
subject?: any;
|
|
1452
|
+
from?: any;
|
|
1453
|
+
"meta-data"?: any;
|
|
1454
|
+
"send-as"?: any;
|
|
1455
|
+
"from-name"?: any;
|
|
1456
|
+
"reply-to"?: any;
|
|
1457
|
+
cc?: any;
|
|
1458
|
+
bcc?: any;
|
|
1285
1459
|
} | undefined) => {
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1460
|
+
message?: any;
|
|
1461
|
+
to?: any;
|
|
1462
|
+
subject?: any;
|
|
1463
|
+
from?: any;
|
|
1464
|
+
"meta-data"?: any;
|
|
1465
|
+
"send-as"?: any;
|
|
1466
|
+
"from-name"?: any;
|
|
1467
|
+
"reply-to"?: any;
|
|
1468
|
+
cc?: any;
|
|
1469
|
+
bcc?: any;
|
|
1470
|
+
}, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"email", {
|
|
1471
|
+
message?: any;
|
|
1472
|
+
to?: any;
|
|
1473
|
+
subject?: any;
|
|
1474
|
+
from?: any;
|
|
1475
|
+
"meta-data"?: any;
|
|
1476
|
+
"send-as"?: any;
|
|
1477
|
+
"from-name"?: any;
|
|
1478
|
+
"reply-to"?: any;
|
|
1479
|
+
cc?: any;
|
|
1480
|
+
bcc?: any;
|
|
1291
1481
|
}>;
|
|
1292
1482
|
};
|
|
1293
1483
|
schema: zod.ZodObject<{
|
|
1294
|
-
$$type: zod.ZodLiteral<"
|
|
1484
|
+
$$type: zod.ZodLiteral<"email">;
|
|
1295
1485
|
value: zod.ZodType<{
|
|
1296
|
-
|
|
1297
|
-
|
|
1486
|
+
message?: any;
|
|
1487
|
+
to?: any;
|
|
1488
|
+
subject?: any;
|
|
1489
|
+
from?: any;
|
|
1490
|
+
"meta-data"?: any;
|
|
1491
|
+
"send-as"?: any;
|
|
1492
|
+
"from-name"?: any;
|
|
1493
|
+
"reply-to"?: any;
|
|
1494
|
+
cc?: any;
|
|
1495
|
+
bcc?: any;
|
|
1298
1496
|
}, zod.ZodTypeDef, {
|
|
1299
|
-
|
|
1300
|
-
|
|
1497
|
+
message?: any;
|
|
1498
|
+
to?: any;
|
|
1499
|
+
subject?: any;
|
|
1500
|
+
from?: any;
|
|
1501
|
+
"meta-data"?: any;
|
|
1502
|
+
"send-as"?: any;
|
|
1503
|
+
"from-name"?: any;
|
|
1504
|
+
"reply-to"?: any;
|
|
1505
|
+
cc?: any;
|
|
1506
|
+
bcc?: any;
|
|
1301
1507
|
}>;
|
|
1302
1508
|
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
1303
1509
|
}, "strict", zod.ZodTypeAny, {
|
|
1304
|
-
$$type: "
|
|
1510
|
+
$$type: "email";
|
|
1305
1511
|
value: {
|
|
1306
|
-
|
|
1307
|
-
|
|
1512
|
+
message?: any;
|
|
1513
|
+
to?: any;
|
|
1514
|
+
subject?: any;
|
|
1515
|
+
from?: any;
|
|
1516
|
+
"meta-data"?: any;
|
|
1517
|
+
"send-as"?: any;
|
|
1518
|
+
"from-name"?: any;
|
|
1519
|
+
"reply-to"?: any;
|
|
1520
|
+
cc?: any;
|
|
1521
|
+
bcc?: any;
|
|
1308
1522
|
};
|
|
1309
1523
|
disabled?: boolean | undefined;
|
|
1310
1524
|
}, {
|
|
1311
|
-
$$type: "
|
|
1525
|
+
$$type: "email";
|
|
1312
1526
|
value: {
|
|
1313
|
-
|
|
1314
|
-
|
|
1527
|
+
message?: any;
|
|
1528
|
+
to?: any;
|
|
1529
|
+
subject?: any;
|
|
1530
|
+
from?: any;
|
|
1531
|
+
"meta-data"?: any;
|
|
1532
|
+
"send-as"?: any;
|
|
1533
|
+
"from-name"?: any;
|
|
1534
|
+
"reply-to"?: any;
|
|
1535
|
+
cc?: any;
|
|
1536
|
+
bcc?: any;
|
|
1315
1537
|
};
|
|
1316
1538
|
disabled?: boolean | undefined;
|
|
1317
1539
|
}>;
|
|
1318
|
-
key: "
|
|
1540
|
+
key: "email";
|
|
1319
1541
|
};
|
|
1320
1542
|
};
|
|
1321
1543
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ type SettingsFieldProps = {
|
|
|
54
54
|
propDisplayName: string;
|
|
55
55
|
children: react.ReactNode;
|
|
56
56
|
};
|
|
57
|
-
declare const SettingsField: ({ bind, children, propDisplayName }: SettingsFieldProps) => react.JSX.Element;
|
|
57
|
+
declare const SettingsField: ({ bind, children, propDisplayName }: SettingsFieldProps) => react.JSX.Element | null;
|
|
58
58
|
|
|
59
59
|
declare const StyleIndicator: _emotion_styled.StyledComponent<_mui_system.MUIStyledCommonProps<Theme> & ({
|
|
60
60
|
isOverridden?: boolean;
|
|
@@ -1257,65 +1257,287 @@ declare const controlTypes: {
|
|
|
1257
1257
|
readonly layout: "full";
|
|
1258
1258
|
readonly propTypeUtil: {
|
|
1259
1259
|
extract: (prop: unknown) => {
|
|
1260
|
-
content:
|
|
1261
|
-
|
|
1260
|
+
content: {
|
|
1261
|
+
$$type: "string";
|
|
1262
|
+
value: string | null;
|
|
1263
|
+
disabled?: boolean | undefined;
|
|
1264
|
+
} | null;
|
|
1265
|
+
children: unknown[];
|
|
1266
|
+
} | null;
|
|
1267
|
+
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"html-v3", {
|
|
1268
|
+
content: {
|
|
1269
|
+
$$type: "string";
|
|
1270
|
+
value: string | null;
|
|
1271
|
+
disabled?: boolean | undefined;
|
|
1272
|
+
} | null;
|
|
1273
|
+
children: unknown[];
|
|
1274
|
+
}>;
|
|
1275
|
+
create: {
|
|
1276
|
+
(value: {
|
|
1277
|
+
content: {
|
|
1278
|
+
$$type: "string";
|
|
1279
|
+
value: string | null;
|
|
1280
|
+
disabled?: boolean | undefined;
|
|
1281
|
+
} | null;
|
|
1282
|
+
children: unknown[];
|
|
1283
|
+
}): _elementor_editor_props.TransformablePropValue<"html-v3", {
|
|
1284
|
+
content: {
|
|
1285
|
+
$$type: "string";
|
|
1286
|
+
value: string | null;
|
|
1287
|
+
disabled?: boolean | undefined;
|
|
1288
|
+
} | null;
|
|
1289
|
+
children: unknown[];
|
|
1290
|
+
}>;
|
|
1291
|
+
(value: {
|
|
1292
|
+
content: {
|
|
1293
|
+
$$type: "string";
|
|
1294
|
+
value: string | null;
|
|
1295
|
+
disabled?: boolean | undefined;
|
|
1296
|
+
} | null;
|
|
1297
|
+
children: unknown[];
|
|
1298
|
+
}, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"html-v3", {
|
|
1299
|
+
content: {
|
|
1300
|
+
$$type: "string";
|
|
1301
|
+
value: string | null;
|
|
1302
|
+
disabled?: boolean | undefined;
|
|
1303
|
+
} | null;
|
|
1304
|
+
children: unknown[];
|
|
1305
|
+
}>;
|
|
1306
|
+
(value: (prev?: {
|
|
1307
|
+
content: {
|
|
1308
|
+
$$type: "string";
|
|
1309
|
+
value: string | null;
|
|
1310
|
+
disabled?: boolean | undefined;
|
|
1311
|
+
} | null;
|
|
1312
|
+
children: unknown[];
|
|
1313
|
+
} | undefined) => {
|
|
1314
|
+
content: {
|
|
1315
|
+
$$type: "string";
|
|
1316
|
+
value: string | null;
|
|
1317
|
+
disabled?: boolean | undefined;
|
|
1318
|
+
} | null;
|
|
1319
|
+
children: unknown[];
|
|
1320
|
+
}, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"html-v3", {
|
|
1321
|
+
content: {
|
|
1322
|
+
$$type: "string";
|
|
1323
|
+
value: string | null;
|
|
1324
|
+
disabled?: boolean | undefined;
|
|
1325
|
+
} | null;
|
|
1326
|
+
children: unknown[];
|
|
1327
|
+
}>;
|
|
1328
|
+
};
|
|
1329
|
+
schema: zod.ZodObject<{
|
|
1330
|
+
$$type: zod.ZodLiteral<"html-v3">;
|
|
1331
|
+
value: zod.ZodType<{
|
|
1332
|
+
content: {
|
|
1333
|
+
$$type: "string";
|
|
1334
|
+
value: string | null;
|
|
1335
|
+
disabled?: boolean | undefined;
|
|
1336
|
+
} | null;
|
|
1337
|
+
children: unknown[];
|
|
1338
|
+
}, zod.ZodTypeDef, {
|
|
1339
|
+
content: {
|
|
1340
|
+
$$type: "string";
|
|
1341
|
+
value: string | null;
|
|
1342
|
+
disabled?: boolean | undefined;
|
|
1343
|
+
} | null;
|
|
1344
|
+
children: unknown[];
|
|
1345
|
+
}>;
|
|
1346
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
1347
|
+
}, "strict", zod.ZodTypeAny, {
|
|
1348
|
+
$$type: "html-v3";
|
|
1349
|
+
value: {
|
|
1350
|
+
content: {
|
|
1351
|
+
$$type: "string";
|
|
1352
|
+
value: string | null;
|
|
1353
|
+
disabled?: boolean | undefined;
|
|
1354
|
+
} | null;
|
|
1355
|
+
children: unknown[];
|
|
1356
|
+
};
|
|
1357
|
+
disabled?: boolean | undefined;
|
|
1358
|
+
}, {
|
|
1359
|
+
$$type: "html-v3";
|
|
1360
|
+
value: {
|
|
1361
|
+
content: {
|
|
1362
|
+
$$type: "string";
|
|
1363
|
+
value: string | null;
|
|
1364
|
+
disabled?: boolean | undefined;
|
|
1365
|
+
} | null;
|
|
1366
|
+
children: unknown[];
|
|
1367
|
+
};
|
|
1368
|
+
disabled?: boolean | undefined;
|
|
1369
|
+
}>;
|
|
1370
|
+
key: "html-v3";
|
|
1371
|
+
};
|
|
1372
|
+
};
|
|
1373
|
+
readonly email: {
|
|
1374
|
+
readonly component: ControlComponent<() => react.JSX.Element>;
|
|
1375
|
+
readonly layout: "custom";
|
|
1376
|
+
readonly propTypeUtil: {
|
|
1377
|
+
extract: (prop: unknown) => {
|
|
1378
|
+
message?: any;
|
|
1379
|
+
to?: any;
|
|
1380
|
+
subject?: any;
|
|
1381
|
+
from?: any;
|
|
1382
|
+
"meta-data"?: any;
|
|
1383
|
+
"send-as"?: any;
|
|
1384
|
+
"from-name"?: any;
|
|
1385
|
+
"reply-to"?: any;
|
|
1386
|
+
cc?: any;
|
|
1387
|
+
bcc?: any;
|
|
1262
1388
|
} | null;
|
|
1263
|
-
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"
|
|
1264
|
-
|
|
1265
|
-
|
|
1389
|
+
isValid: (prop: unknown) => prop is _elementor_editor_props.TransformablePropValue<"email", {
|
|
1390
|
+
message?: any;
|
|
1391
|
+
to?: any;
|
|
1392
|
+
subject?: any;
|
|
1393
|
+
from?: any;
|
|
1394
|
+
"meta-data"?: any;
|
|
1395
|
+
"send-as"?: any;
|
|
1396
|
+
"from-name"?: any;
|
|
1397
|
+
"reply-to"?: any;
|
|
1398
|
+
cc?: any;
|
|
1399
|
+
bcc?: any;
|
|
1266
1400
|
}>;
|
|
1267
1401
|
create: {
|
|
1268
1402
|
(value: {
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1403
|
+
message?: any;
|
|
1404
|
+
to?: any;
|
|
1405
|
+
subject?: any;
|
|
1406
|
+
from?: any;
|
|
1407
|
+
"meta-data"?: any;
|
|
1408
|
+
"send-as"?: any;
|
|
1409
|
+
"from-name"?: any;
|
|
1410
|
+
"reply-to"?: any;
|
|
1411
|
+
cc?: any;
|
|
1412
|
+
bcc?: any;
|
|
1413
|
+
}): _elementor_editor_props.TransformablePropValue<"email", {
|
|
1414
|
+
message?: any;
|
|
1415
|
+
to?: any;
|
|
1416
|
+
subject?: any;
|
|
1417
|
+
from?: any;
|
|
1418
|
+
"meta-data"?: any;
|
|
1419
|
+
"send-as"?: any;
|
|
1420
|
+
"from-name"?: any;
|
|
1421
|
+
"reply-to"?: any;
|
|
1422
|
+
cc?: any;
|
|
1423
|
+
bcc?: any;
|
|
1274
1424
|
}>;
|
|
1275
1425
|
(value: {
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1426
|
+
message?: any;
|
|
1427
|
+
to?: any;
|
|
1428
|
+
subject?: any;
|
|
1429
|
+
from?: any;
|
|
1430
|
+
"meta-data"?: any;
|
|
1431
|
+
"send-as"?: any;
|
|
1432
|
+
"from-name"?: any;
|
|
1433
|
+
"reply-to"?: any;
|
|
1434
|
+
cc?: any;
|
|
1435
|
+
bcc?: any;
|
|
1436
|
+
}, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"email", {
|
|
1437
|
+
message?: any;
|
|
1438
|
+
to?: any;
|
|
1439
|
+
subject?: any;
|
|
1440
|
+
from?: any;
|
|
1441
|
+
"meta-data"?: any;
|
|
1442
|
+
"send-as"?: any;
|
|
1443
|
+
"from-name"?: any;
|
|
1444
|
+
"reply-to"?: any;
|
|
1445
|
+
cc?: any;
|
|
1446
|
+
bcc?: any;
|
|
1281
1447
|
}>;
|
|
1282
1448
|
(value: (prev?: {
|
|
1283
|
-
|
|
1284
|
-
|
|
1449
|
+
message?: any;
|
|
1450
|
+
to?: any;
|
|
1451
|
+
subject?: any;
|
|
1452
|
+
from?: any;
|
|
1453
|
+
"meta-data"?: any;
|
|
1454
|
+
"send-as"?: any;
|
|
1455
|
+
"from-name"?: any;
|
|
1456
|
+
"reply-to"?: any;
|
|
1457
|
+
cc?: any;
|
|
1458
|
+
bcc?: any;
|
|
1285
1459
|
} | undefined) => {
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1460
|
+
message?: any;
|
|
1461
|
+
to?: any;
|
|
1462
|
+
subject?: any;
|
|
1463
|
+
from?: any;
|
|
1464
|
+
"meta-data"?: any;
|
|
1465
|
+
"send-as"?: any;
|
|
1466
|
+
"from-name"?: any;
|
|
1467
|
+
"reply-to"?: any;
|
|
1468
|
+
cc?: any;
|
|
1469
|
+
bcc?: any;
|
|
1470
|
+
}, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"email", {
|
|
1471
|
+
message?: any;
|
|
1472
|
+
to?: any;
|
|
1473
|
+
subject?: any;
|
|
1474
|
+
from?: any;
|
|
1475
|
+
"meta-data"?: any;
|
|
1476
|
+
"send-as"?: any;
|
|
1477
|
+
"from-name"?: any;
|
|
1478
|
+
"reply-to"?: any;
|
|
1479
|
+
cc?: any;
|
|
1480
|
+
bcc?: any;
|
|
1291
1481
|
}>;
|
|
1292
1482
|
};
|
|
1293
1483
|
schema: zod.ZodObject<{
|
|
1294
|
-
$$type: zod.ZodLiteral<"
|
|
1484
|
+
$$type: zod.ZodLiteral<"email">;
|
|
1295
1485
|
value: zod.ZodType<{
|
|
1296
|
-
|
|
1297
|
-
|
|
1486
|
+
message?: any;
|
|
1487
|
+
to?: any;
|
|
1488
|
+
subject?: any;
|
|
1489
|
+
from?: any;
|
|
1490
|
+
"meta-data"?: any;
|
|
1491
|
+
"send-as"?: any;
|
|
1492
|
+
"from-name"?: any;
|
|
1493
|
+
"reply-to"?: any;
|
|
1494
|
+
cc?: any;
|
|
1495
|
+
bcc?: any;
|
|
1298
1496
|
}, zod.ZodTypeDef, {
|
|
1299
|
-
|
|
1300
|
-
|
|
1497
|
+
message?: any;
|
|
1498
|
+
to?: any;
|
|
1499
|
+
subject?: any;
|
|
1500
|
+
from?: any;
|
|
1501
|
+
"meta-data"?: any;
|
|
1502
|
+
"send-as"?: any;
|
|
1503
|
+
"from-name"?: any;
|
|
1504
|
+
"reply-to"?: any;
|
|
1505
|
+
cc?: any;
|
|
1506
|
+
bcc?: any;
|
|
1301
1507
|
}>;
|
|
1302
1508
|
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
1303
1509
|
}, "strict", zod.ZodTypeAny, {
|
|
1304
|
-
$$type: "
|
|
1510
|
+
$$type: "email";
|
|
1305
1511
|
value: {
|
|
1306
|
-
|
|
1307
|
-
|
|
1512
|
+
message?: any;
|
|
1513
|
+
to?: any;
|
|
1514
|
+
subject?: any;
|
|
1515
|
+
from?: any;
|
|
1516
|
+
"meta-data"?: any;
|
|
1517
|
+
"send-as"?: any;
|
|
1518
|
+
"from-name"?: any;
|
|
1519
|
+
"reply-to"?: any;
|
|
1520
|
+
cc?: any;
|
|
1521
|
+
bcc?: any;
|
|
1308
1522
|
};
|
|
1309
1523
|
disabled?: boolean | undefined;
|
|
1310
1524
|
}, {
|
|
1311
|
-
$$type: "
|
|
1525
|
+
$$type: "email";
|
|
1312
1526
|
value: {
|
|
1313
|
-
|
|
1314
|
-
|
|
1527
|
+
message?: any;
|
|
1528
|
+
to?: any;
|
|
1529
|
+
subject?: any;
|
|
1530
|
+
from?: any;
|
|
1531
|
+
"meta-data"?: any;
|
|
1532
|
+
"send-as"?: any;
|
|
1533
|
+
"from-name"?: any;
|
|
1534
|
+
"reply-to"?: any;
|
|
1535
|
+
cc?: any;
|
|
1536
|
+
bcc?: any;
|
|
1315
1537
|
};
|
|
1316
1538
|
disabled?: boolean | undefined;
|
|
1317
1539
|
}>;
|
|
1318
|
-
key: "
|
|
1540
|
+
key: "email";
|
|
1319
1541
|
};
|
|
1320
1542
|
};
|
|
1321
1543
|
};
|