@thryveai/theme-interfaces 2.8.30 → 2.8.32
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/JSONSchemas/index.d.ts +357 -144
- package/dist/JSONSchemas/index.js +609 -344
- package/dist/interfaces/default-theme.interface.d.ts +60 -0
- package/dist/interfaces/icons.interfaces.d.ts +2 -2
- package/dist/interfaces/theme.interfaces.d.ts +60 -0
- package/dist/storefront/defaultIconsStorefront.js +1 -1
- package/dist/storefront/defaultThemeStorefront.js +273 -0
- package/dist/storefront/productBadgeAttributes.js +1 -1
- package/package.json +1 -1
|
@@ -1239,6 +1239,279 @@ var DefaultThemeSFUI = function (colors) {
|
|
|
1239
1239
|
{ name: "theme-color", content: "#ffffff" },
|
|
1240
1240
|
],
|
|
1241
1241
|
scripts: {},
|
|
1242
|
+
timeSlotGrid: {
|
|
1243
|
+
expressDeliveryBanner: {
|
|
1244
|
+
color: colors.greyscale5,
|
|
1245
|
+
backgroundColor: colors.successLight,
|
|
1246
|
+
iconColor: colors.success,
|
|
1247
|
+
},
|
|
1248
|
+
timeSlot: {
|
|
1249
|
+
wrapper: {
|
|
1250
|
+
color: {
|
|
1251
|
+
available: {
|
|
1252
|
+
default: colors.greyscale5,
|
|
1253
|
+
expressTimeframe: colors.greyscale5,
|
|
1254
|
+
},
|
|
1255
|
+
reserved: {
|
|
1256
|
+
default: colors.greyscale5,
|
|
1257
|
+
expressTimeframe: colors.greyscale5,
|
|
1258
|
+
},
|
|
1259
|
+
unavailable: {
|
|
1260
|
+
default: colors.greyscale5,
|
|
1261
|
+
expressTimeframe: colors.greyscale5,
|
|
1262
|
+
},
|
|
1263
|
+
},
|
|
1264
|
+
backgroundColor: {
|
|
1265
|
+
available: {
|
|
1266
|
+
default: "transparent",
|
|
1267
|
+
expressTimeframe: "transparent",
|
|
1268
|
+
},
|
|
1269
|
+
reserved: {
|
|
1270
|
+
default: colors.successLight,
|
|
1271
|
+
expressTimeframe: colors.successLight,
|
|
1272
|
+
},
|
|
1273
|
+
unavailable: {
|
|
1274
|
+
default: "transparent",
|
|
1275
|
+
expressTimeframe: "transparent",
|
|
1276
|
+
},
|
|
1277
|
+
},
|
|
1278
|
+
iconColor: {
|
|
1279
|
+
available: {
|
|
1280
|
+
default: colors.greyscale5,
|
|
1281
|
+
expressTimeframe: colors.success,
|
|
1282
|
+
},
|
|
1283
|
+
reserved: {
|
|
1284
|
+
default: colors.greyscale5,
|
|
1285
|
+
expressTimeframe: colors.success,
|
|
1286
|
+
},
|
|
1287
|
+
unavailable: {
|
|
1288
|
+
default: colors.greyscale5,
|
|
1289
|
+
expressTimeframe: colors.success,
|
|
1290
|
+
},
|
|
1291
|
+
},
|
|
1292
|
+
fontSize: {
|
|
1293
|
+
available: {
|
|
1294
|
+
default: exports.globalTheme.baseFontSize,
|
|
1295
|
+
expressTimeframe: exports.globalTheme.baseFontSize,
|
|
1296
|
+
},
|
|
1297
|
+
reserved: {
|
|
1298
|
+
default: exports.globalTheme.baseFontSize,
|
|
1299
|
+
expressTimeframe: exports.globalTheme.baseFontSize,
|
|
1300
|
+
},
|
|
1301
|
+
unavailable: {
|
|
1302
|
+
default: exports.globalTheme.baseFontSize,
|
|
1303
|
+
expressTimeframe: exports.globalTheme.baseFontSize,
|
|
1304
|
+
},
|
|
1305
|
+
},
|
|
1306
|
+
fontWeight: {
|
|
1307
|
+
available: {
|
|
1308
|
+
default: exports.globalTheme.FontWeight,
|
|
1309
|
+
expressTimeframe: exports.globalTheme.FontWeight,
|
|
1310
|
+
},
|
|
1311
|
+
reserved: {
|
|
1312
|
+
default: exports.globalTheme.FontWeightBold,
|
|
1313
|
+
expressTimeframe: exports.globalTheme.FontWeightBold,
|
|
1314
|
+
},
|
|
1315
|
+
unavailable: {
|
|
1316
|
+
default: exports.globalTheme.FontWeight,
|
|
1317
|
+
expressTimeframe: exports.globalTheme.FontWeight,
|
|
1318
|
+
},
|
|
1319
|
+
},
|
|
1320
|
+
},
|
|
1321
|
+
radio: {
|
|
1322
|
+
iconColor: {
|
|
1323
|
+
available: {
|
|
1324
|
+
default: colors.greyscale5,
|
|
1325
|
+
expressTimeframe: colors.greyscale5,
|
|
1326
|
+
},
|
|
1327
|
+
reserved: {
|
|
1328
|
+
default: colors.success,
|
|
1329
|
+
expressTimeframe: colors.success,
|
|
1330
|
+
},
|
|
1331
|
+
unavailable: {
|
|
1332
|
+
default: colors.greyscale3,
|
|
1333
|
+
expressTimeframe: colors.greyscale3,
|
|
1334
|
+
},
|
|
1335
|
+
},
|
|
1336
|
+
},
|
|
1337
|
+
timeRangeText: {
|
|
1338
|
+
color: {
|
|
1339
|
+
available: {
|
|
1340
|
+
default: colors.greyscale5,
|
|
1341
|
+
expressTimeframe: colors.greyscale5,
|
|
1342
|
+
},
|
|
1343
|
+
reserved: {
|
|
1344
|
+
default: colors.greyscale5,
|
|
1345
|
+
expressTimeframe: colors.greyscale5,
|
|
1346
|
+
},
|
|
1347
|
+
unavailable: {
|
|
1348
|
+
default: colors.greyscale4,
|
|
1349
|
+
expressTimeframe: colors.greyscale4,
|
|
1350
|
+
},
|
|
1351
|
+
},
|
|
1352
|
+
fontSize: {
|
|
1353
|
+
available: {
|
|
1354
|
+
default: "14px",
|
|
1355
|
+
expressTimeframe: "14px",
|
|
1356
|
+
},
|
|
1357
|
+
reserved: {
|
|
1358
|
+
default: "14px",
|
|
1359
|
+
expressTimeframe: "14px",
|
|
1360
|
+
},
|
|
1361
|
+
unavailable: {
|
|
1362
|
+
default: "14px",
|
|
1363
|
+
expressTimeframe: "14px",
|
|
1364
|
+
},
|
|
1365
|
+
},
|
|
1366
|
+
fontWeight: {
|
|
1367
|
+
available: {
|
|
1368
|
+
default: exports.globalTheme.FontWeightBold,
|
|
1369
|
+
expressTimeframe: exports.globalTheme.FontWeightBold,
|
|
1370
|
+
},
|
|
1371
|
+
reserved: {
|
|
1372
|
+
default: exports.globalTheme.FontWeightBold,
|
|
1373
|
+
expressTimeframe: exports.globalTheme.FontWeightBold,
|
|
1374
|
+
},
|
|
1375
|
+
unavailable: {
|
|
1376
|
+
default: exports.globalTheme.FontWeightBold,
|
|
1377
|
+
expressTimeframe: exports.globalTheme.FontWeightBold,
|
|
1378
|
+
},
|
|
1379
|
+
},
|
|
1380
|
+
lineHeight: {
|
|
1381
|
+
available: {
|
|
1382
|
+
default: "18px",
|
|
1383
|
+
expressTimeframe: "18px",
|
|
1384
|
+
},
|
|
1385
|
+
reserved: {
|
|
1386
|
+
default: "18px",
|
|
1387
|
+
expressTimeframe: "18px",
|
|
1388
|
+
},
|
|
1389
|
+
unavailable: {
|
|
1390
|
+
default: "18px",
|
|
1391
|
+
expressTimeframe: "18px",
|
|
1392
|
+
},
|
|
1393
|
+
},
|
|
1394
|
+
textTransform: {
|
|
1395
|
+
available: {
|
|
1396
|
+
default: "lowercase",
|
|
1397
|
+
expressTimeframe: "none",
|
|
1398
|
+
},
|
|
1399
|
+
reserved: {
|
|
1400
|
+
default: "lowercase",
|
|
1401
|
+
expressTimeframe: "none",
|
|
1402
|
+
},
|
|
1403
|
+
unavailable: {
|
|
1404
|
+
default: "lowercase",
|
|
1405
|
+
expressTimeframe: "none",
|
|
1406
|
+
},
|
|
1407
|
+
},
|
|
1408
|
+
},
|
|
1409
|
+
priceText: {
|
|
1410
|
+
color: {
|
|
1411
|
+
available: {
|
|
1412
|
+
default: colors.greyscale5,
|
|
1413
|
+
expressTimeframe: colors.greyscale5,
|
|
1414
|
+
},
|
|
1415
|
+
reserved: {
|
|
1416
|
+
default: colors.greyscale5,
|
|
1417
|
+
expressTimeframe: colors.greyscale5,
|
|
1418
|
+
},
|
|
1419
|
+
unavailable: {
|
|
1420
|
+
default: colors.greyscale4,
|
|
1421
|
+
expressTimeframe: colors.greyscale4,
|
|
1422
|
+
},
|
|
1423
|
+
},
|
|
1424
|
+
},
|
|
1425
|
+
titleText: {
|
|
1426
|
+
color: {
|
|
1427
|
+
available: {
|
|
1428
|
+
default: colors.greyscale4,
|
|
1429
|
+
expressTimeframe: colors.greyscale4,
|
|
1430
|
+
},
|
|
1431
|
+
reserved: {
|
|
1432
|
+
default: colors.greyscale4,
|
|
1433
|
+
expressTimeframe: colors.greyscale4,
|
|
1434
|
+
},
|
|
1435
|
+
unavailable: {
|
|
1436
|
+
default: colors.greyscale4,
|
|
1437
|
+
expressTimeframe: colors.greyscale4,
|
|
1438
|
+
},
|
|
1439
|
+
},
|
|
1440
|
+
fontSize: {
|
|
1441
|
+
available: {
|
|
1442
|
+
default: "12px",
|
|
1443
|
+
expressTimeframe: "12px",
|
|
1444
|
+
},
|
|
1445
|
+
reserved: {
|
|
1446
|
+
default: "12px",
|
|
1447
|
+
expressTimeframe: "12px",
|
|
1448
|
+
},
|
|
1449
|
+
unavailable: {
|
|
1450
|
+
default: "12px",
|
|
1451
|
+
expressTimeframe: "12px",
|
|
1452
|
+
},
|
|
1453
|
+
},
|
|
1454
|
+
lineHeight: {
|
|
1455
|
+
available: {
|
|
1456
|
+
default: "16px",
|
|
1457
|
+
expressTimeframe: "16px",
|
|
1458
|
+
},
|
|
1459
|
+
reserved: {
|
|
1460
|
+
default: "16px",
|
|
1461
|
+
expressTimeframe: "16px",
|
|
1462
|
+
},
|
|
1463
|
+
unavailable: {
|
|
1464
|
+
default: "16px",
|
|
1465
|
+
expressTimeframe: "16px",
|
|
1466
|
+
},
|
|
1467
|
+
},
|
|
1468
|
+
},
|
|
1469
|
+
descriptionText: {
|
|
1470
|
+
fontSize: {
|
|
1471
|
+
available: {
|
|
1472
|
+
default: "12px",
|
|
1473
|
+
expressTimeframe: "12px",
|
|
1474
|
+
},
|
|
1475
|
+
reserved: {
|
|
1476
|
+
default: "12px",
|
|
1477
|
+
expressTimeframe: "12px",
|
|
1478
|
+
},
|
|
1479
|
+
unavailable: {
|
|
1480
|
+
default: "12px",
|
|
1481
|
+
expressTimeframe: "12px",
|
|
1482
|
+
},
|
|
1483
|
+
},
|
|
1484
|
+
lineHeight: {
|
|
1485
|
+
available: {
|
|
1486
|
+
default: "16px",
|
|
1487
|
+
expressTimeframe: "16px",
|
|
1488
|
+
},
|
|
1489
|
+
reserved: {
|
|
1490
|
+
default: "16px",
|
|
1491
|
+
expressTimeframe: "16px",
|
|
1492
|
+
},
|
|
1493
|
+
unavailable: {
|
|
1494
|
+
default: "16px",
|
|
1495
|
+
expressTimeframe: "16px",
|
|
1496
|
+
},
|
|
1497
|
+
},
|
|
1498
|
+
fontWeight: {
|
|
1499
|
+
available: {
|
|
1500
|
+
default: exports.globalTheme.FontWeightBold,
|
|
1501
|
+
expressTimeframe: exports.globalTheme.FontWeightBold,
|
|
1502
|
+
},
|
|
1503
|
+
reserved: {
|
|
1504
|
+
default: exports.globalTheme.FontWeightBold,
|
|
1505
|
+
expressTimeframe: exports.globalTheme.FontWeightBold,
|
|
1506
|
+
},
|
|
1507
|
+
unavailable: {
|
|
1508
|
+
default: exports.globalTheme.FontWeightBold,
|
|
1509
|
+
expressTimeframe: exports.globalTheme.FontWeightBold,
|
|
1510
|
+
},
|
|
1511
|
+
},
|
|
1512
|
+
},
|
|
1513
|
+
},
|
|
1514
|
+
},
|
|
1242
1515
|
});
|
|
1243
1516
|
};
|
|
1244
1517
|
exports.default = DefaultThemeSFUI;
|