@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 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: string | null;
1261
- children: _elementor_editor_props.ChildElement[];
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<"html-v2", {
1264
- content: string | null;
1265
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1270
- children: _elementor_editor_props.ChildElement[];
1271
- }): _elementor_editor_props.TransformablePropValue<"html-v2", {
1272
- content: string | null;
1273
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1277
- children: _elementor_editor_props.ChildElement[];
1278
- }, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"html-v2", {
1279
- content: string | null;
1280
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1284
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1287
- children: _elementor_editor_props.ChildElement[];
1288
- }, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"html-v2", {
1289
- content: string | null;
1290
- children: _elementor_editor_props.ChildElement[];
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<"html-v2">;
1484
+ $$type: zod.ZodLiteral<"email">;
1295
1485
  value: zod.ZodType<{
1296
- content: string | null;
1297
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1300
- children: _elementor_editor_props.ChildElement[];
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: "html-v2";
1510
+ $$type: "email";
1305
1511
  value: {
1306
- content: string | null;
1307
- children: _elementor_editor_props.ChildElement[];
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: "html-v2";
1525
+ $$type: "email";
1312
1526
  value: {
1313
- content: string | null;
1314
- children: _elementor_editor_props.ChildElement[];
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: "html-v2";
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: string | null;
1261
- children: _elementor_editor_props.ChildElement[];
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<"html-v2", {
1264
- content: string | null;
1265
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1270
- children: _elementor_editor_props.ChildElement[];
1271
- }): _elementor_editor_props.TransformablePropValue<"html-v2", {
1272
- content: string | null;
1273
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1277
- children: _elementor_editor_props.ChildElement[];
1278
- }, createOptions?: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"html-v2", {
1279
- content: string | null;
1280
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1284
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1287
- children: _elementor_editor_props.ChildElement[];
1288
- }, createOptions: _elementor_editor_props.CreateOptions): _elementor_editor_props.TransformablePropValue<"html-v2", {
1289
- content: string | null;
1290
- children: _elementor_editor_props.ChildElement[];
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<"html-v2">;
1484
+ $$type: zod.ZodLiteral<"email">;
1295
1485
  value: zod.ZodType<{
1296
- content: string | null;
1297
- children: _elementor_editor_props.ChildElement[];
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
- content: string | null;
1300
- children: _elementor_editor_props.ChildElement[];
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: "html-v2";
1510
+ $$type: "email";
1305
1511
  value: {
1306
- content: string | null;
1307
- children: _elementor_editor_props.ChildElement[];
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: "html-v2";
1525
+ $$type: "email";
1312
1526
  value: {
1313
- content: string | null;
1314
- children: _elementor_editor_props.ChildElement[];
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: "html-v2";
1540
+ key: "email";
1319
1541
  };
1320
1542
  };
1321
1543
  };