@omnia/fx 8.0.209-dev → 8.0.210-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. package/internal-do-not-import-from-here/core/utils/Utils.d.ts +6 -0
  2. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  3. package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
  4. package/internal-do-not-import-from-here/services/identities/UserService.d.ts +1 -1
  5. package/internal-do-not-import-from-here/stores/mediapicker/ImageTransformerStore.d.ts +105 -4
  6. package/internal-do-not-import-from-here/stores/mediapicker/constants.d.ts +7 -0
  7. package/internal-do-not-import-from-here/stores/mediapicker/handlers/Utils/utils.d.ts +3 -0
  8. package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/filter.d.ts +4 -1
  9. package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
  10. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.css.d.ts +4 -0
  11. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.d.ts +68 -0
  12. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/ExampleComponents.d.ts +1 -0
  13. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/SampleComponent.d.ts +47 -0
  14. package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/index.d.ts +1 -0
  15. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +847 -3511
  16. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +847 -3511
  17. package/internal-do-not-import-from-here/ux/directives/Scroll.d.ts +0 -23
  18. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +17 -0
  19. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +2 -2
  20. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayConfiguration.d.ts +5 -0
  21. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeConfiguration.d.ts +5 -0
  22. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +5 -0
  23. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +5 -0
  24. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +5 -0
  25. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +5 -0
  26. package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +5 -0
  27. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +5 -0
  28. package/internal-do-not-import-from-here/ux/signin/AuthenticationBlockSettings.d.ts +47 -0
  29. package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +7 -0
  30. package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +4 -0
  31. package/internal-do-not-import-from-here/ux/signin/omnia/Login.d.ts +51 -15
  32. package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +6 -0
  33. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.css.d.ts +2 -0
  34. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +50 -0
  35. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.css.d.ts +2 -0
  36. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +10 -0
  37. package/internal-do-not-import-from-here/wctypings.d.ts +29 -1
  38. package/internal-do-not-import-from-here/workers/ServiceWorker.d.ts +2 -0
  39. package/package.json +2 -2
@@ -1062,157 +1062,9 @@ export declare const useTypographyBlueprintStore: () => {
1062
1062
  };
1063
1063
  size?: number;
1064
1064
  };
1065
- definition?: {
1065
+ viewTemplate?: {
1066
1066
  id: import("@omnia/fx-models").VelcronRendererId;
1067
1067
  version: string;
1068
- } | {
1069
- type: "velcron";
1070
- version?: string;
1071
- name?: string;
1072
- body?: {
1073
- body?: any[];
1074
- style?: {
1075
- margin?: string;
1076
- marginTop?: string | number;
1077
- marginRight?: string | number;
1078
- marginBottom?: string | number;
1079
- marginLeft?: string | number;
1080
- padding?: string | number;
1081
- paddingTop?: string | number;
1082
- paddingRight?: string | number;
1083
- paddingBottom?: string | number;
1084
- paddingLeft?: string | number;
1085
- height?: string | number;
1086
- width?: string | number;
1087
- };
1088
- foreach?: string;
1089
- if?: string;
1090
- events?: import("@omnia/fx-models").VelcronEvent;
1091
- type: string;
1092
- name?: string;
1093
- key?: string;
1094
- margin?: {
1095
- top?: string | number;
1096
- right?: string | number;
1097
- bottom?: string | number;
1098
- left?: string | number;
1099
- };
1100
- padding?: {
1101
- top?: string | number;
1102
- right?: string | number;
1103
- bottom?: string | number;
1104
- left?: string | number;
1105
- };
1106
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1107
- }[];
1108
- events?: {
1109
- onLoaded?: string[];
1110
- onEditMode?: string[];
1111
- onSaving?: string[];
1112
- onPersistState?: string[];
1113
- onRestoreState?: string[];
1114
- onActive?: string[];
1115
- };
1116
- actions?: {
1117
- [name: string]: string[];
1118
- };
1119
- components?: {
1120
- type: string;
1121
- events?: any;
1122
- properties?: {
1123
- [name: string]: any;
1124
- };
1125
- icon?: any;
1126
- body?: {
1127
- body?: any[];
1128
- style?: {
1129
- margin?: string;
1130
- marginTop?: string | number;
1131
- marginRight?: string | number;
1132
- marginBottom?: string | number;
1133
- marginLeft?: string | number;
1134
- padding?: string | number;
1135
- paddingTop?: string | number;
1136
- paddingRight?: string | number;
1137
- paddingBottom?: string | number;
1138
- paddingLeft?: string | number;
1139
- height?: string | number;
1140
- width?: string | number;
1141
- };
1142
- foreach?: string;
1143
- if?: string;
1144
- events?: import("@omnia/fx-models").VelcronEvent;
1145
- type: string;
1146
- name?: string;
1147
- key?: string;
1148
- margin?: {
1149
- top?: string | number;
1150
- right?: string | number;
1151
- bottom?: string | number;
1152
- left?: string | number;
1153
- };
1154
- padding?: {
1155
- top?: string | number;
1156
- right?: string | number;
1157
- bottom?: string | number;
1158
- left?: string | number;
1159
- };
1160
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1161
- }[];
1162
- style?: {
1163
- margin?: string;
1164
- marginTop?: string | number;
1165
- marginRight?: string | number;
1166
- marginBottom?: string | number;
1167
- marginLeft?: string | number;
1168
- padding?: string | number;
1169
- paddingTop?: string | number;
1170
- paddingRight?: string | number;
1171
- paddingBottom?: string | number;
1172
- paddingLeft?: string | number;
1173
- height?: string | number;
1174
- width?: string | number;
1175
- };
1176
- foreach?: string;
1177
- if?: string;
1178
- name?: string;
1179
- key?: string;
1180
- margin?: {
1181
- top?: string | number;
1182
- right?: string | number;
1183
- bottom?: string | number;
1184
- left?: string | number;
1185
- };
1186
- padding?: {
1187
- top?: string | number;
1188
- right?: string | number;
1189
- bottom?: string | number;
1190
- left?: string | number;
1191
- };
1192
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1193
- }[];
1194
- editors?: {
1195
- name?: string;
1196
- icon?: {
1197
- faClass: string;
1198
- iconType: import("@omnia/fx-models").IconTypes;
1199
- role?: string;
1200
- };
1201
- category?: string;
1202
- locations?: import("@omnia/fx-models").EditorLocation[];
1203
- type: string;
1204
- settings?: any;
1205
- state?: string;
1206
- propertyMapping?: boolean;
1207
- multiple?: boolean;
1208
- component?: unknown;
1209
- }[];
1210
- state?: object;
1211
- computed?: {
1212
- [name: string]: string[];
1213
- };
1214
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
1215
- key?: string;
1216
1068
  };
1217
1069
  };
1218
1070
  basic?: {
@@ -1348,160 +1200,150 @@ export declare const useTypographyBlueprintStore: () => {
1348
1200
  };
1349
1201
  size?: number;
1350
1202
  };
1351
- definition?: {
1203
+ viewTemplate?: {
1352
1204
  id: import("@omnia/fx-models").VelcronRendererId;
1353
1205
  version: string;
1354
- } | {
1355
- type: "velcron";
1356
- version?: string;
1357
- name?: string;
1358
- body?: {
1359
- body?: any[];
1360
- style?: {
1361
- margin?: string;
1362
- marginTop?: string | number;
1363
- marginRight?: string | number;
1364
- marginBottom?: string | number;
1365
- marginLeft?: string | number;
1366
- padding?: string | number;
1367
- paddingTop?: string | number;
1368
- paddingRight?: string | number;
1369
- paddingBottom?: string | number;
1370
- paddingLeft?: string | number;
1371
- height?: string | number;
1372
- width?: string | number;
1206
+ };
1207
+ };
1208
+ accent1?: {
1209
+ padding?: {
1210
+ top?: import("@omnia/fx-models").SpacingValue;
1211
+ right?: import("@omnia/fx-models").SpacingValue;
1212
+ bottom?: import("@omnia/fx-models").SpacingValue;
1213
+ left?: import("@omnia/fx-models").SpacingValue;
1214
+ };
1215
+ background?: {
1216
+ fill?: string | {
1217
+ colors: (string | {
1218
+ colorType: "base" | "onBase" | "container" | "onContainer";
1219
+ toned?: boolean;
1220
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1221
+ opacity?: number;
1222
+ } | {
1223
+ color: string | {
1224
+ colorType: "base" | "onBase" | "container" | "onContainer";
1225
+ toned?: boolean;
1226
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1227
+ opacity?: number;
1228
+ };
1229
+ stop?: number;
1230
+ })[];
1231
+ acrylic?: boolean;
1232
+ } | {
1233
+ colorType: "base" | "onBase" | "container" | "onContainer";
1234
+ toned?: boolean;
1235
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1236
+ opacity?: number;
1237
+ };
1238
+ border?: {
1239
+ radius?: {
1240
+ top?: import("@omnia/fx-models").SpacingValue;
1241
+ right?: import("@omnia/fx-models").SpacingValue;
1242
+ bottom?: import("@omnia/fx-models").SpacingValue;
1243
+ left?: import("@omnia/fx-models").SpacingValue;
1373
1244
  };
1374
- foreach?: string;
1375
- if?: string;
1376
- events?: import("@omnia/fx-models").VelcronEvent;
1377
- type: string;
1378
- name?: string;
1379
- key?: string;
1380
- margin?: {
1381
- top?: string | number;
1382
- right?: string | number;
1383
- bottom?: string | number;
1384
- left?: string | number;
1245
+ width?: {
1246
+ top?: import("@omnia/fx-models").SpacingValue;
1247
+ right?: import("@omnia/fx-models").SpacingValue;
1248
+ bottom?: import("@omnia/fx-models").SpacingValue;
1249
+ left?: import("@omnia/fx-models").SpacingValue;
1385
1250
  };
1386
- padding?: {
1387
- top?: string | number;
1388
- right?: string | number;
1389
- bottom?: string | number;
1390
- left?: string | number;
1251
+ fill?: {
1252
+ colors: (string | {
1253
+ colorType: "base" | "onBase" | "container" | "onContainer";
1254
+ toned?: boolean;
1255
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1256
+ opacity?: number;
1257
+ } | {
1258
+ color: string | any;
1259
+ stop?: number;
1260
+ })[];
1261
+ acrylic?: boolean;
1391
1262
  };
1392
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1393
- }[];
1394
- events?: {
1395
- onLoaded?: string[];
1396
- onEditMode?: string[];
1397
- onSaving?: string[];
1398
- onPersistState?: string[];
1399
- onRestoreState?: string[];
1400
- onActive?: string[];
1401
1263
  };
1402
- actions?: {
1403
- [name: string]: string[];
1264
+ elevation?: number;
1265
+ media?: {
1266
+ type: import("@omnia/fx-models").BackgroundMedia;
1267
+ src: string;
1404
1268
  };
1405
- components?: {
1406
- type: string;
1407
- events?: any;
1408
- properties?: {
1409
- [name: string]: any;
1410
- };
1411
- icon?: any;
1412
- body?: {
1413
- body?: any[];
1414
- style?: {
1415
- margin?: string;
1416
- marginTop?: string | number;
1417
- marginRight?: string | number;
1418
- marginBottom?: string | number;
1419
- marginLeft?: string | number;
1420
- padding?: string | number;
1421
- paddingTop?: string | number;
1422
- paddingRight?: string | number;
1423
- paddingBottom?: string | number;
1424
- paddingLeft?: string | number;
1425
- height?: string | number;
1426
- width?: string | number;
1427
- };
1428
- foreach?: string;
1429
- if?: string;
1430
- events?: import("@omnia/fx-models").VelcronEvent;
1431
- type: string;
1432
- name?: string;
1433
- key?: string;
1434
- margin?: {
1435
- top?: string | number;
1436
- right?: string | number;
1437
- bottom?: string | number;
1438
- left?: string | number;
1439
- };
1440
- padding?: {
1441
- top?: string | number;
1442
- right?: string | number;
1443
- bottom?: string | number;
1444
- left?: string | number;
1269
+ };
1270
+ alterCase?: boolean;
1271
+ text?: {
1272
+ color?: string | {
1273
+ colors: (string | {
1274
+ colorType: "base" | "onBase" | "container" | "onContainer";
1275
+ toned?: boolean;
1276
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1277
+ opacity?: number;
1278
+ } | {
1279
+ color: string | {
1280
+ colorType: "base" | "onBase" | "container" | "onContainer";
1281
+ toned?: boolean;
1282
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1283
+ opacity?: number;
1445
1284
  };
1446
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1447
- }[];
1448
- style?: {
1449
- margin?: string;
1450
- marginTop?: string | number;
1451
- marginRight?: string | number;
1452
- marginBottom?: string | number;
1453
- marginLeft?: string | number;
1454
- padding?: string | number;
1455
- paddingTop?: string | number;
1456
- paddingRight?: string | number;
1457
- paddingBottom?: string | number;
1458
- paddingLeft?: string | number;
1459
- height?: string | number;
1460
- width?: string | number;
1461
- };
1462
- foreach?: string;
1463
- if?: string;
1464
- name?: string;
1465
- key?: string;
1466
- margin?: {
1467
- top?: string | number;
1468
- right?: string | number;
1469
- bottom?: string | number;
1470
- left?: string | number;
1285
+ stop?: number;
1286
+ })[];
1287
+ acrylic?: boolean;
1288
+ } | {
1289
+ colorType: "base" | "onBase" | "container" | "onContainer";
1290
+ toned?: boolean;
1291
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1292
+ opacity?: number;
1293
+ };
1294
+ typography?: {
1295
+ decoration?: string;
1296
+ lg: {
1297
+ weight: number;
1298
+ size: number;
1299
+ lineHeight: number;
1471
1300
  };
1472
- padding?: {
1473
- top?: string | number;
1474
- right?: string | number;
1475
- bottom?: string | number;
1476
- left?: string | number;
1301
+ md?: {
1302
+ weight: number;
1303
+ size: number;
1304
+ lineHeight: number;
1477
1305
  };
1478
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1479
- }[];
1480
- editors?: {
1481
- name?: string;
1482
- icon?: {
1483
- faClass: string;
1484
- iconType: import("@omnia/fx-models").IconTypes;
1485
- role?: string;
1306
+ sm?: {
1307
+ weight: number;
1308
+ size: number;
1309
+ lineHeight: number;
1486
1310
  };
1487
- category?: string;
1488
- locations?: import("@omnia/fx-models").EditorLocation[];
1489
- type: string;
1490
- settings?: any;
1491
- state?: string;
1492
- propertyMapping?: boolean;
1493
- multiple?: boolean;
1494
- component?: unknown;
1495
- }[];
1496
- state?: object;
1497
- computed?: {
1498
- [name: string]: string[];
1311
+ } | {
1312
+ type: "text" | "title" | "navigation";
1313
+ size: "xs" | "s" | "m" | "l" | "xl";
1499
1314
  };
1500
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
1501
- key?: string;
1315
+ };
1316
+ icon?: {
1317
+ color?: string | {
1318
+ colors: (string | {
1319
+ colorType: "base" | "onBase" | "container" | "onContainer";
1320
+ toned?: boolean;
1321
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1322
+ opacity?: number;
1323
+ } | {
1324
+ color: string | {
1325
+ colorType: "base" | "onBase" | "container" | "onContainer";
1326
+ toned?: boolean;
1327
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1328
+ opacity?: number;
1329
+ };
1330
+ stop?: number;
1331
+ })[];
1332
+ acrylic?: boolean;
1333
+ } | {
1334
+ colorType: "base" | "onBase" | "container" | "onContainer";
1335
+ toned?: boolean;
1336
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1337
+ opacity?: number;
1338
+ };
1339
+ size?: number;
1340
+ };
1341
+ viewTemplate?: {
1342
+ id: import("@omnia/fx-models").VelcronRendererId;
1343
+ version: string;
1502
1344
  };
1503
1345
  };
1504
- accent1?: {
1346
+ warn?: {
1505
1347
  padding?: {
1506
1348
  top?: import("@omnia/fx-models").SpacingValue;
1507
1349
  right?: import("@omnia/fx-models").SpacingValue;
@@ -1634,160 +1476,150 @@ export declare const useTypographyBlueprintStore: () => {
1634
1476
  };
1635
1477
  size?: number;
1636
1478
  };
1637
- definition?: {
1479
+ viewTemplate?: {
1638
1480
  id: import("@omnia/fx-models").VelcronRendererId;
1639
1481
  version: string;
1640
- } | {
1641
- type: "velcron";
1642
- version?: string;
1643
- name?: string;
1644
- body?: {
1645
- body?: any[];
1646
- style?: {
1647
- margin?: string;
1648
- marginTop?: string | number;
1649
- marginRight?: string | number;
1650
- marginBottom?: string | number;
1651
- marginLeft?: string | number;
1652
- padding?: string | number;
1653
- paddingTop?: string | number;
1654
- paddingRight?: string | number;
1655
- paddingBottom?: string | number;
1656
- paddingLeft?: string | number;
1657
- height?: string | number;
1658
- width?: string | number;
1482
+ };
1483
+ };
1484
+ link?: {
1485
+ padding?: {
1486
+ top?: import("@omnia/fx-models").SpacingValue;
1487
+ right?: import("@omnia/fx-models").SpacingValue;
1488
+ bottom?: import("@omnia/fx-models").SpacingValue;
1489
+ left?: import("@omnia/fx-models").SpacingValue;
1490
+ };
1491
+ background?: {
1492
+ fill?: string | {
1493
+ colors: (string | {
1494
+ colorType: "base" | "onBase" | "container" | "onContainer";
1495
+ toned?: boolean;
1496
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1497
+ opacity?: number;
1498
+ } | {
1499
+ color: string | {
1500
+ colorType: "base" | "onBase" | "container" | "onContainer";
1501
+ toned?: boolean;
1502
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1503
+ opacity?: number;
1504
+ };
1505
+ stop?: number;
1506
+ })[];
1507
+ acrylic?: boolean;
1508
+ } | {
1509
+ colorType: "base" | "onBase" | "container" | "onContainer";
1510
+ toned?: boolean;
1511
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1512
+ opacity?: number;
1513
+ };
1514
+ border?: {
1515
+ radius?: {
1516
+ top?: import("@omnia/fx-models").SpacingValue;
1517
+ right?: import("@omnia/fx-models").SpacingValue;
1518
+ bottom?: import("@omnia/fx-models").SpacingValue;
1519
+ left?: import("@omnia/fx-models").SpacingValue;
1659
1520
  };
1660
- foreach?: string;
1661
- if?: string;
1662
- events?: import("@omnia/fx-models").VelcronEvent;
1663
- type: string;
1664
- name?: string;
1665
- key?: string;
1666
- margin?: {
1667
- top?: string | number;
1668
- right?: string | number;
1669
- bottom?: string | number;
1670
- left?: string | number;
1521
+ width?: {
1522
+ top?: import("@omnia/fx-models").SpacingValue;
1523
+ right?: import("@omnia/fx-models").SpacingValue;
1524
+ bottom?: import("@omnia/fx-models").SpacingValue;
1525
+ left?: import("@omnia/fx-models").SpacingValue;
1671
1526
  };
1672
- padding?: {
1673
- top?: string | number;
1674
- right?: string | number;
1675
- bottom?: string | number;
1676
- left?: string | number;
1527
+ fill?: {
1528
+ colors: (string | {
1529
+ colorType: "base" | "onBase" | "container" | "onContainer";
1530
+ toned?: boolean;
1531
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1532
+ opacity?: number;
1533
+ } | {
1534
+ color: string | any;
1535
+ stop?: number;
1536
+ })[];
1537
+ acrylic?: boolean;
1677
1538
  };
1678
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1679
- }[];
1680
- events?: {
1681
- onLoaded?: string[];
1682
- onEditMode?: string[];
1683
- onSaving?: string[];
1684
- onPersistState?: string[];
1685
- onRestoreState?: string[];
1686
- onActive?: string[];
1687
1539
  };
1688
- actions?: {
1689
- [name: string]: string[];
1540
+ elevation?: number;
1541
+ media?: {
1542
+ type: import("@omnia/fx-models").BackgroundMedia;
1543
+ src: string;
1690
1544
  };
1691
- components?: {
1692
- type: string;
1693
- events?: any;
1694
- properties?: {
1695
- [name: string]: any;
1696
- };
1697
- icon?: any;
1698
- body?: {
1699
- body?: any[];
1700
- style?: {
1701
- margin?: string;
1702
- marginTop?: string | number;
1703
- marginRight?: string | number;
1704
- marginBottom?: string | number;
1705
- marginLeft?: string | number;
1706
- padding?: string | number;
1707
- paddingTop?: string | number;
1708
- paddingRight?: string | number;
1709
- paddingBottom?: string | number;
1710
- paddingLeft?: string | number;
1711
- height?: string | number;
1712
- width?: string | number;
1713
- };
1714
- foreach?: string;
1715
- if?: string;
1716
- events?: import("@omnia/fx-models").VelcronEvent;
1717
- type: string;
1718
- name?: string;
1719
- key?: string;
1720
- margin?: {
1721
- top?: string | number;
1722
- right?: string | number;
1723
- bottom?: string | number;
1724
- left?: string | number;
1725
- };
1726
- padding?: {
1727
- top?: string | number;
1728
- right?: string | number;
1729
- bottom?: string | number;
1730
- left?: string | number;
1545
+ };
1546
+ alterCase?: boolean;
1547
+ text?: {
1548
+ color?: string | {
1549
+ colors: (string | {
1550
+ colorType: "base" | "onBase" | "container" | "onContainer";
1551
+ toned?: boolean;
1552
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1553
+ opacity?: number;
1554
+ } | {
1555
+ color: string | {
1556
+ colorType: "base" | "onBase" | "container" | "onContainer";
1557
+ toned?: boolean;
1558
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1559
+ opacity?: number;
1731
1560
  };
1732
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1733
- }[];
1734
- style?: {
1735
- margin?: string;
1736
- marginTop?: string | number;
1737
- marginRight?: string | number;
1738
- marginBottom?: string | number;
1739
- marginLeft?: string | number;
1740
- padding?: string | number;
1741
- paddingTop?: string | number;
1742
- paddingRight?: string | number;
1743
- paddingBottom?: string | number;
1744
- paddingLeft?: string | number;
1745
- height?: string | number;
1746
- width?: string | number;
1747
- };
1748
- foreach?: string;
1749
- if?: string;
1750
- name?: string;
1751
- key?: string;
1752
- margin?: {
1753
- top?: string | number;
1754
- right?: string | number;
1755
- bottom?: string | number;
1756
- left?: string | number;
1561
+ stop?: number;
1562
+ })[];
1563
+ acrylic?: boolean;
1564
+ } | {
1565
+ colorType: "base" | "onBase" | "container" | "onContainer";
1566
+ toned?: boolean;
1567
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1568
+ opacity?: number;
1569
+ };
1570
+ typography?: {
1571
+ decoration?: string;
1572
+ lg: {
1573
+ weight: number;
1574
+ size: number;
1575
+ lineHeight: number;
1757
1576
  };
1758
- padding?: {
1759
- top?: string | number;
1760
- right?: string | number;
1761
- bottom?: string | number;
1762
- left?: string | number;
1577
+ md?: {
1578
+ weight: number;
1579
+ size: number;
1580
+ lineHeight: number;
1763
1581
  };
1764
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1765
- }[];
1766
- editors?: {
1767
- name?: string;
1768
- icon?: {
1769
- faClass: string;
1770
- iconType: import("@omnia/fx-models").IconTypes;
1771
- role?: string;
1582
+ sm?: {
1583
+ weight: number;
1584
+ size: number;
1585
+ lineHeight: number;
1772
1586
  };
1773
- category?: string;
1774
- locations?: import("@omnia/fx-models").EditorLocation[];
1775
- type: string;
1776
- settings?: any;
1777
- state?: string;
1778
- propertyMapping?: boolean;
1779
- multiple?: boolean;
1780
- component?: unknown;
1781
- }[];
1782
- state?: object;
1783
- computed?: {
1784
- [name: string]: string[];
1587
+ } | {
1588
+ type: "text" | "title" | "navigation";
1589
+ size: "xs" | "s" | "m" | "l" | "xl";
1785
1590
  };
1786
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
1787
- key?: string;
1591
+ };
1592
+ icon?: {
1593
+ color?: string | {
1594
+ colors: (string | {
1595
+ colorType: "base" | "onBase" | "container" | "onContainer";
1596
+ toned?: boolean;
1597
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1598
+ opacity?: number;
1599
+ } | {
1600
+ color: string | {
1601
+ colorType: "base" | "onBase" | "container" | "onContainer";
1602
+ toned?: boolean;
1603
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1604
+ opacity?: number;
1605
+ };
1606
+ stop?: number;
1607
+ })[];
1608
+ acrylic?: boolean;
1609
+ } | {
1610
+ colorType: "base" | "onBase" | "container" | "onContainer";
1611
+ toned?: boolean;
1612
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1613
+ opacity?: number;
1614
+ };
1615
+ size?: number;
1616
+ };
1617
+ viewTemplate?: {
1618
+ id: import("@omnia/fx-models").VelcronRendererId;
1619
+ version: string;
1788
1620
  };
1789
1621
  };
1790
- warn?: {
1622
+ variant1?: {
1791
1623
  padding?: {
1792
1624
  top?: import("@omnia/fx-models").SpacingValue;
1793
1625
  right?: import("@omnia/fx-models").SpacingValue;
@@ -1920,160 +1752,150 @@ export declare const useTypographyBlueprintStore: () => {
1920
1752
  };
1921
1753
  size?: number;
1922
1754
  };
1923
- definition?: {
1755
+ viewTemplate?: {
1924
1756
  id: import("@omnia/fx-models").VelcronRendererId;
1925
1757
  version: string;
1926
- } | {
1927
- type: "velcron";
1928
- version?: string;
1929
- name?: string;
1930
- body?: {
1931
- body?: any[];
1932
- style?: {
1933
- margin?: string;
1934
- marginTop?: string | number;
1935
- marginRight?: string | number;
1936
- marginBottom?: string | number;
1937
- marginLeft?: string | number;
1938
- padding?: string | number;
1939
- paddingTop?: string | number;
1940
- paddingRight?: string | number;
1941
- paddingBottom?: string | number;
1942
- paddingLeft?: string | number;
1943
- height?: string | number;
1944
- width?: string | number;
1945
- };
1946
- foreach?: string;
1947
- if?: string;
1948
- events?: import("@omnia/fx-models").VelcronEvent;
1949
- type: string;
1950
- name?: string;
1951
- key?: string;
1952
- margin?: {
1953
- top?: string | number;
1954
- right?: string | number;
1955
- bottom?: string | number;
1956
- left?: string | number;
1758
+ };
1759
+ };
1760
+ variant2?: {
1761
+ padding?: {
1762
+ top?: import("@omnia/fx-models").SpacingValue;
1763
+ right?: import("@omnia/fx-models").SpacingValue;
1764
+ bottom?: import("@omnia/fx-models").SpacingValue;
1765
+ left?: import("@omnia/fx-models").SpacingValue;
1766
+ };
1767
+ background?: {
1768
+ fill?: string | {
1769
+ colors: (string | {
1770
+ colorType: "base" | "onBase" | "container" | "onContainer";
1771
+ toned?: boolean;
1772
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1773
+ opacity?: number;
1774
+ } | {
1775
+ color: string | {
1776
+ colorType: "base" | "onBase" | "container" | "onContainer";
1777
+ toned?: boolean;
1778
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1779
+ opacity?: number;
1780
+ };
1781
+ stop?: number;
1782
+ })[];
1783
+ acrylic?: boolean;
1784
+ } | {
1785
+ colorType: "base" | "onBase" | "container" | "onContainer";
1786
+ toned?: boolean;
1787
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1788
+ opacity?: number;
1789
+ };
1790
+ border?: {
1791
+ radius?: {
1792
+ top?: import("@omnia/fx-models").SpacingValue;
1793
+ right?: import("@omnia/fx-models").SpacingValue;
1794
+ bottom?: import("@omnia/fx-models").SpacingValue;
1795
+ left?: import("@omnia/fx-models").SpacingValue;
1957
1796
  };
1958
- padding?: {
1959
- top?: string | number;
1960
- right?: string | number;
1961
- bottom?: string | number;
1962
- left?: string | number;
1797
+ width?: {
1798
+ top?: import("@omnia/fx-models").SpacingValue;
1799
+ right?: import("@omnia/fx-models").SpacingValue;
1800
+ bottom?: import("@omnia/fx-models").SpacingValue;
1801
+ left?: import("@omnia/fx-models").SpacingValue;
1802
+ };
1803
+ fill?: {
1804
+ colors: (string | {
1805
+ colorType: "base" | "onBase" | "container" | "onContainer";
1806
+ toned?: boolean;
1807
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1808
+ opacity?: number;
1809
+ } | {
1810
+ color: string | any;
1811
+ stop?: number;
1812
+ })[];
1813
+ acrylic?: boolean;
1963
1814
  };
1964
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
1965
- }[];
1966
- events?: {
1967
- onLoaded?: string[];
1968
- onEditMode?: string[];
1969
- onSaving?: string[];
1970
- onPersistState?: string[];
1971
- onRestoreState?: string[];
1972
- onActive?: string[];
1973
1815
  };
1974
- actions?: {
1975
- [name: string]: string[];
1816
+ elevation?: number;
1817
+ media?: {
1818
+ type: import("@omnia/fx-models").BackgroundMedia;
1819
+ src: string;
1976
1820
  };
1977
- components?: {
1978
- type: string;
1979
- events?: any;
1980
- properties?: {
1981
- [name: string]: any;
1982
- };
1983
- icon?: any;
1984
- body?: {
1985
- body?: any[];
1986
- style?: {
1987
- margin?: string;
1988
- marginTop?: string | number;
1989
- marginRight?: string | number;
1990
- marginBottom?: string | number;
1991
- marginLeft?: string | number;
1992
- padding?: string | number;
1993
- paddingTop?: string | number;
1994
- paddingRight?: string | number;
1995
- paddingBottom?: string | number;
1996
- paddingLeft?: string | number;
1997
- height?: string | number;
1998
- width?: string | number;
1999
- };
2000
- foreach?: string;
2001
- if?: string;
2002
- events?: import("@omnia/fx-models").VelcronEvent;
2003
- type: string;
2004
- name?: string;
2005
- key?: string;
2006
- margin?: {
2007
- top?: string | number;
2008
- right?: string | number;
2009
- bottom?: string | number;
2010
- left?: string | number;
2011
- };
2012
- padding?: {
2013
- top?: string | number;
2014
- right?: string | number;
2015
- bottom?: string | number;
2016
- left?: string | number;
1821
+ };
1822
+ alterCase?: boolean;
1823
+ text?: {
1824
+ color?: string | {
1825
+ colors: (string | {
1826
+ colorType: "base" | "onBase" | "container" | "onContainer";
1827
+ toned?: boolean;
1828
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1829
+ opacity?: number;
1830
+ } | {
1831
+ color: string | {
1832
+ colorType: "base" | "onBase" | "container" | "onContainer";
1833
+ toned?: boolean;
1834
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1835
+ opacity?: number;
2017
1836
  };
2018
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2019
- }[];
2020
- style?: {
2021
- margin?: string;
2022
- marginTop?: string | number;
2023
- marginRight?: string | number;
2024
- marginBottom?: string | number;
2025
- marginLeft?: string | number;
2026
- padding?: string | number;
2027
- paddingTop?: string | number;
2028
- paddingRight?: string | number;
2029
- paddingBottom?: string | number;
2030
- paddingLeft?: string | number;
2031
- height?: string | number;
2032
- width?: string | number;
2033
- };
2034
- foreach?: string;
2035
- if?: string;
2036
- name?: string;
2037
- key?: string;
2038
- margin?: {
2039
- top?: string | number;
2040
- right?: string | number;
2041
- bottom?: string | number;
2042
- left?: string | number;
1837
+ stop?: number;
1838
+ })[];
1839
+ acrylic?: boolean;
1840
+ } | {
1841
+ colorType: "base" | "onBase" | "container" | "onContainer";
1842
+ toned?: boolean;
1843
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1844
+ opacity?: number;
1845
+ };
1846
+ typography?: {
1847
+ decoration?: string;
1848
+ lg: {
1849
+ weight: number;
1850
+ size: number;
1851
+ lineHeight: number;
2043
1852
  };
2044
- padding?: {
2045
- top?: string | number;
2046
- right?: string | number;
2047
- bottom?: string | number;
2048
- left?: string | number;
1853
+ md?: {
1854
+ weight: number;
1855
+ size: number;
1856
+ lineHeight: number;
2049
1857
  };
2050
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2051
- }[];
2052
- editors?: {
2053
- name?: string;
2054
- icon?: {
2055
- faClass: string;
2056
- iconType: import("@omnia/fx-models").IconTypes;
2057
- role?: string;
1858
+ sm?: {
1859
+ weight: number;
1860
+ size: number;
1861
+ lineHeight: number;
2058
1862
  };
2059
- category?: string;
2060
- locations?: import("@omnia/fx-models").EditorLocation[];
2061
- type: string;
2062
- settings?: any;
2063
- state?: string;
2064
- propertyMapping?: boolean;
2065
- multiple?: boolean;
2066
- component?: unknown;
2067
- }[];
2068
- state?: object;
2069
- computed?: {
2070
- [name: string]: string[];
1863
+ } | {
1864
+ type: "text" | "title" | "navigation";
1865
+ size: "xs" | "s" | "m" | "l" | "xl";
2071
1866
  };
2072
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
2073
- key?: string;
1867
+ };
1868
+ icon?: {
1869
+ color?: string | {
1870
+ colors: (string | {
1871
+ colorType: "base" | "onBase" | "container" | "onContainer";
1872
+ toned?: boolean;
1873
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1874
+ opacity?: number;
1875
+ } | {
1876
+ color: string | {
1877
+ colorType: "base" | "onBase" | "container" | "onContainer";
1878
+ toned?: boolean;
1879
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1880
+ opacity?: number;
1881
+ };
1882
+ stop?: number;
1883
+ })[];
1884
+ acrylic?: boolean;
1885
+ } | {
1886
+ colorType: "base" | "onBase" | "container" | "onContainer";
1887
+ toned?: boolean;
1888
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
1889
+ opacity?: number;
1890
+ };
1891
+ size?: number;
1892
+ };
1893
+ viewTemplate?: {
1894
+ id: import("@omnia/fx-models").VelcronRendererId;
1895
+ version: string;
2074
1896
  };
2075
1897
  };
2076
- link?: {
1898
+ variant3?: {
2077
1899
  padding?: {
2078
1900
  top?: import("@omnia/fx-models").SpacingValue;
2079
1901
  right?: import("@omnia/fx-models").SpacingValue;
@@ -2206,160 +2028,152 @@ export declare const useTypographyBlueprintStore: () => {
2206
2028
  };
2207
2029
  size?: number;
2208
2030
  };
2209
- definition?: {
2031
+ viewTemplate?: {
2210
2032
  id: import("@omnia/fx-models").VelcronRendererId;
2211
2033
  version: string;
2212
- } | {
2213
- type: "velcron";
2214
- version?: string;
2215
- name?: string;
2216
- body?: {
2217
- body?: any[];
2218
- style?: {
2219
- margin?: string;
2220
- marginTop?: string | number;
2221
- marginRight?: string | number;
2222
- marginBottom?: string | number;
2223
- marginLeft?: string | number;
2224
- padding?: string | number;
2225
- paddingTop?: string | number;
2226
- paddingRight?: string | number;
2227
- paddingBottom?: string | number;
2228
- paddingLeft?: string | number;
2229
- height?: string | number;
2230
- width?: string | number;
2034
+ };
2035
+ };
2036
+ variant4?: {
2037
+ padding?: {
2038
+ top?: import("@omnia/fx-models").SpacingValue;
2039
+ right?: import("@omnia/fx-models").SpacingValue;
2040
+ bottom?: import("@omnia/fx-models").SpacingValue;
2041
+ left?: import("@omnia/fx-models").SpacingValue;
2042
+ };
2043
+ background?: {
2044
+ fill?: string | {
2045
+ colors: (string | {
2046
+ colorType: "base" | "onBase" | "container" | "onContainer";
2047
+ toned?: boolean;
2048
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2049
+ opacity?: number;
2050
+ } | {
2051
+ color: string | {
2052
+ colorType: "base" | "onBase" | "container" | "onContainer";
2053
+ toned?: boolean;
2054
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2055
+ opacity?: number;
2056
+ };
2057
+ stop?: number;
2058
+ })[];
2059
+ acrylic?: boolean;
2060
+ } | {
2061
+ colorType: "base" | "onBase" | "container" | "onContainer";
2062
+ toned?: boolean;
2063
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2064
+ opacity?: number;
2065
+ };
2066
+ border?: {
2067
+ radius?: {
2068
+ top?: import("@omnia/fx-models").SpacingValue;
2069
+ right?: import("@omnia/fx-models").SpacingValue;
2070
+ bottom?: import("@omnia/fx-models").SpacingValue;
2071
+ left?: import("@omnia/fx-models").SpacingValue;
2231
2072
  };
2232
- foreach?: string;
2233
- if?: string;
2234
- events?: import("@omnia/fx-models").VelcronEvent;
2235
- type: string;
2236
- name?: string;
2237
- key?: string;
2238
- margin?: {
2239
- top?: string | number;
2240
- right?: string | number;
2241
- bottom?: string | number;
2242
- left?: string | number;
2073
+ width?: {
2074
+ top?: import("@omnia/fx-models").SpacingValue;
2075
+ right?: import("@omnia/fx-models").SpacingValue;
2076
+ bottom?: import("@omnia/fx-models").SpacingValue;
2077
+ left?: import("@omnia/fx-models").SpacingValue;
2243
2078
  };
2244
- padding?: {
2245
- top?: string | number;
2246
- right?: string | number;
2247
- bottom?: string | number;
2248
- left?: string | number;
2079
+ fill?: {
2080
+ colors: (string | {
2081
+ colorType: "base" | "onBase" | "container" | "onContainer";
2082
+ toned?: boolean;
2083
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2084
+ opacity?: number;
2085
+ } | {
2086
+ color: string | any;
2087
+ stop?: number;
2088
+ })[];
2089
+ acrylic?: boolean;
2249
2090
  };
2250
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2251
- }[];
2252
- events?: {
2253
- onLoaded?: string[];
2254
- onEditMode?: string[];
2255
- onSaving?: string[];
2256
- onPersistState?: string[];
2257
- onRestoreState?: string[];
2258
- onActive?: string[];
2259
2091
  };
2260
- actions?: {
2261
- [name: string]: string[];
2092
+ elevation?: number;
2093
+ media?: {
2094
+ type: import("@omnia/fx-models").BackgroundMedia;
2095
+ src: string;
2262
2096
  };
2263
- components?: {
2264
- type: string;
2265
- events?: any;
2266
- properties?: {
2267
- [name: string]: any;
2268
- };
2269
- icon?: any;
2270
- body?: {
2271
- body?: any[];
2272
- style?: {
2273
- margin?: string;
2274
- marginTop?: string | number;
2275
- marginRight?: string | number;
2276
- marginBottom?: string | number;
2277
- marginLeft?: string | number;
2278
- padding?: string | number;
2279
- paddingTop?: string | number;
2280
- paddingRight?: string | number;
2281
- paddingBottom?: string | number;
2282
- paddingLeft?: string | number;
2283
- height?: string | number;
2284
- width?: string | number;
2285
- };
2286
- foreach?: string;
2287
- if?: string;
2288
- events?: import("@omnia/fx-models").VelcronEvent;
2289
- type: string;
2290
- name?: string;
2291
- key?: string;
2292
- margin?: {
2293
- top?: string | number;
2294
- right?: string | number;
2295
- bottom?: string | number;
2296
- left?: string | number;
2297
- };
2298
- padding?: {
2299
- top?: string | number;
2300
- right?: string | number;
2301
- bottom?: string | number;
2302
- left?: string | number;
2097
+ };
2098
+ alterCase?: boolean;
2099
+ text?: {
2100
+ color?: string | {
2101
+ colors: (string | {
2102
+ colorType: "base" | "onBase" | "container" | "onContainer";
2103
+ toned?: boolean;
2104
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2105
+ opacity?: number;
2106
+ } | {
2107
+ color: string | {
2108
+ colorType: "base" | "onBase" | "container" | "onContainer";
2109
+ toned?: boolean;
2110
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2111
+ opacity?: number;
2303
2112
  };
2304
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2305
- }[];
2306
- style?: {
2307
- margin?: string;
2308
- marginTop?: string | number;
2309
- marginRight?: string | number;
2310
- marginBottom?: string | number;
2311
- marginLeft?: string | number;
2312
- padding?: string | number;
2313
- paddingTop?: string | number;
2314
- paddingRight?: string | number;
2315
- paddingBottom?: string | number;
2316
- paddingLeft?: string | number;
2317
- height?: string | number;
2318
- width?: string | number;
2319
- };
2320
- foreach?: string;
2321
- if?: string;
2322
- name?: string;
2323
- key?: string;
2324
- margin?: {
2325
- top?: string | number;
2326
- right?: string | number;
2327
- bottom?: string | number;
2328
- left?: string | number;
2113
+ stop?: number;
2114
+ })[];
2115
+ acrylic?: boolean;
2116
+ } | {
2117
+ colorType: "base" | "onBase" | "container" | "onContainer";
2118
+ toned?: boolean;
2119
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2120
+ opacity?: number;
2121
+ };
2122
+ typography?: {
2123
+ decoration?: string;
2124
+ lg: {
2125
+ weight: number;
2126
+ size: number;
2127
+ lineHeight: number;
2329
2128
  };
2330
- padding?: {
2331
- top?: string | number;
2332
- right?: string | number;
2333
- bottom?: string | number;
2334
- left?: string | number;
2129
+ md?: {
2130
+ weight: number;
2131
+ size: number;
2132
+ lineHeight: number;
2335
2133
  };
2336
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2337
- }[];
2338
- editors?: {
2339
- name?: string;
2340
- icon?: {
2341
- faClass: string;
2342
- iconType: import("@omnia/fx-models").IconTypes;
2343
- role?: string;
2134
+ sm?: {
2135
+ weight: number;
2136
+ size: number;
2137
+ lineHeight: number;
2344
2138
  };
2345
- category?: string;
2346
- locations?: import("@omnia/fx-models").EditorLocation[];
2347
- type: string;
2348
- settings?: any;
2349
- state?: string;
2350
- propertyMapping?: boolean;
2351
- multiple?: boolean;
2352
- component?: unknown;
2353
- }[];
2354
- state?: object;
2355
- computed?: {
2356
- [name: string]: string[];
2139
+ } | {
2140
+ type: "text" | "title" | "navigation";
2141
+ size: "xs" | "s" | "m" | "l" | "xl";
2357
2142
  };
2358
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
2359
- key?: string;
2143
+ };
2144
+ icon?: {
2145
+ color?: string | {
2146
+ colors: (string | {
2147
+ colorType: "base" | "onBase" | "container" | "onContainer";
2148
+ toned?: boolean;
2149
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2150
+ opacity?: number;
2151
+ } | {
2152
+ color: string | {
2153
+ colorType: "base" | "onBase" | "container" | "onContainer";
2154
+ toned?: boolean;
2155
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2156
+ opacity?: number;
2157
+ };
2158
+ stop?: number;
2159
+ })[];
2160
+ acrylic?: boolean;
2161
+ } | {
2162
+ colorType: "base" | "onBase" | "container" | "onContainer";
2163
+ toned?: boolean;
2164
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2165
+ opacity?: number;
2166
+ };
2167
+ size?: number;
2168
+ };
2169
+ viewTemplate?: {
2170
+ id: import("@omnia/fx-models").VelcronRendererId;
2171
+ version: string;
2360
2172
  };
2361
2173
  };
2362
- variant1?: {
2174
+ };
2175
+ icon: {
2176
+ primary?: {
2363
2177
  padding?: {
2364
2178
  top?: import("@omnia/fx-models").SpacingValue;
2365
2179
  right?: import("@omnia/fx-models").SpacingValue;
@@ -2492,160 +2306,12 @@ export declare const useTypographyBlueprintStore: () => {
2492
2306
  };
2493
2307
  size?: number;
2494
2308
  };
2495
- definition?: {
2309
+ viewTemplate?: {
2496
2310
  id: import("@omnia/fx-models").VelcronRendererId;
2497
2311
  version: string;
2498
- } | {
2499
- type: "velcron";
2500
- version?: string;
2501
- name?: string;
2502
- body?: {
2503
- body?: any[];
2504
- style?: {
2505
- margin?: string;
2506
- marginTop?: string | number;
2507
- marginRight?: string | number;
2508
- marginBottom?: string | number;
2509
- marginLeft?: string | number;
2510
- padding?: string | number;
2511
- paddingTop?: string | number;
2512
- paddingRight?: string | number;
2513
- paddingBottom?: string | number;
2514
- paddingLeft?: string | number;
2515
- height?: string | number;
2516
- width?: string | number;
2517
- };
2518
- foreach?: string;
2519
- if?: string;
2520
- events?: import("@omnia/fx-models").VelcronEvent;
2521
- type: string;
2522
- name?: string;
2523
- key?: string;
2524
- margin?: {
2525
- top?: string | number;
2526
- right?: string | number;
2527
- bottom?: string | number;
2528
- left?: string | number;
2529
- };
2530
- padding?: {
2531
- top?: string | number;
2532
- right?: string | number;
2533
- bottom?: string | number;
2534
- left?: string | number;
2535
- };
2536
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2537
- }[];
2538
- events?: {
2539
- onLoaded?: string[];
2540
- onEditMode?: string[];
2541
- onSaving?: string[];
2542
- onPersistState?: string[];
2543
- onRestoreState?: string[];
2544
- onActive?: string[];
2545
- };
2546
- actions?: {
2547
- [name: string]: string[];
2548
- };
2549
- components?: {
2550
- type: string;
2551
- events?: any;
2552
- properties?: {
2553
- [name: string]: any;
2554
- };
2555
- icon?: any;
2556
- body?: {
2557
- body?: any[];
2558
- style?: {
2559
- margin?: string;
2560
- marginTop?: string | number;
2561
- marginRight?: string | number;
2562
- marginBottom?: string | number;
2563
- marginLeft?: string | number;
2564
- padding?: string | number;
2565
- paddingTop?: string | number;
2566
- paddingRight?: string | number;
2567
- paddingBottom?: string | number;
2568
- paddingLeft?: string | number;
2569
- height?: string | number;
2570
- width?: string | number;
2571
- };
2572
- foreach?: string;
2573
- if?: string;
2574
- events?: import("@omnia/fx-models").VelcronEvent;
2575
- type: string;
2576
- name?: string;
2577
- key?: string;
2578
- margin?: {
2579
- top?: string | number;
2580
- right?: string | number;
2581
- bottom?: string | number;
2582
- left?: string | number;
2583
- };
2584
- padding?: {
2585
- top?: string | number;
2586
- right?: string | number;
2587
- bottom?: string | number;
2588
- left?: string | number;
2589
- };
2590
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2591
- }[];
2592
- style?: {
2593
- margin?: string;
2594
- marginTop?: string | number;
2595
- marginRight?: string | number;
2596
- marginBottom?: string | number;
2597
- marginLeft?: string | number;
2598
- padding?: string | number;
2599
- paddingTop?: string | number;
2600
- paddingRight?: string | number;
2601
- paddingBottom?: string | number;
2602
- paddingLeft?: string | number;
2603
- height?: string | number;
2604
- width?: string | number;
2605
- };
2606
- foreach?: string;
2607
- if?: string;
2608
- name?: string;
2609
- key?: string;
2610
- margin?: {
2611
- top?: string | number;
2612
- right?: string | number;
2613
- bottom?: string | number;
2614
- left?: string | number;
2615
- };
2616
- padding?: {
2617
- top?: string | number;
2618
- right?: string | number;
2619
- bottom?: string | number;
2620
- left?: string | number;
2621
- };
2622
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2623
- }[];
2624
- editors?: {
2625
- name?: string;
2626
- icon?: {
2627
- faClass: string;
2628
- iconType: import("@omnia/fx-models").IconTypes;
2629
- role?: string;
2630
- };
2631
- category?: string;
2632
- locations?: import("@omnia/fx-models").EditorLocation[];
2633
- type: string;
2634
- settings?: any;
2635
- state?: string;
2636
- propertyMapping?: boolean;
2637
- multiple?: boolean;
2638
- component?: unknown;
2639
- }[];
2640
- state?: object;
2641
- computed?: {
2642
- [name: string]: string[];
2643
- };
2644
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
2645
- key?: string;
2646
2312
  };
2647
2313
  };
2648
- variant2?: {
2314
+ basic?: {
2649
2315
  padding?: {
2650
2316
  top?: import("@omnia/fx-models").SpacingValue;
2651
2317
  right?: import("@omnia/fx-models").SpacingValue;
@@ -2778,160 +2444,12 @@ export declare const useTypographyBlueprintStore: () => {
2778
2444
  };
2779
2445
  size?: number;
2780
2446
  };
2781
- definition?: {
2447
+ viewTemplate?: {
2782
2448
  id: import("@omnia/fx-models").VelcronRendererId;
2783
2449
  version: string;
2784
- } | {
2785
- type: "velcron";
2786
- version?: string;
2787
- name?: string;
2788
- body?: {
2789
- body?: any[];
2790
- style?: {
2791
- margin?: string;
2792
- marginTop?: string | number;
2793
- marginRight?: string | number;
2794
- marginBottom?: string | number;
2795
- marginLeft?: string | number;
2796
- padding?: string | number;
2797
- paddingTop?: string | number;
2798
- paddingRight?: string | number;
2799
- paddingBottom?: string | number;
2800
- paddingLeft?: string | number;
2801
- height?: string | number;
2802
- width?: string | number;
2803
- };
2804
- foreach?: string;
2805
- if?: string;
2806
- events?: import("@omnia/fx-models").VelcronEvent;
2807
- type: string;
2808
- name?: string;
2809
- key?: string;
2810
- margin?: {
2811
- top?: string | number;
2812
- right?: string | number;
2813
- bottom?: string | number;
2814
- left?: string | number;
2815
- };
2816
- padding?: {
2817
- top?: string | number;
2818
- right?: string | number;
2819
- bottom?: string | number;
2820
- left?: string | number;
2821
- };
2822
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2823
- }[];
2824
- events?: {
2825
- onLoaded?: string[];
2826
- onEditMode?: string[];
2827
- onSaving?: string[];
2828
- onPersistState?: string[];
2829
- onRestoreState?: string[];
2830
- onActive?: string[];
2831
- };
2832
- actions?: {
2833
- [name: string]: string[];
2834
- };
2835
- components?: {
2836
- type: string;
2837
- events?: any;
2838
- properties?: {
2839
- [name: string]: any;
2840
- };
2841
- icon?: any;
2842
- body?: {
2843
- body?: any[];
2844
- style?: {
2845
- margin?: string;
2846
- marginTop?: string | number;
2847
- marginRight?: string | number;
2848
- marginBottom?: string | number;
2849
- marginLeft?: string | number;
2850
- padding?: string | number;
2851
- paddingTop?: string | number;
2852
- paddingRight?: string | number;
2853
- paddingBottom?: string | number;
2854
- paddingLeft?: string | number;
2855
- height?: string | number;
2856
- width?: string | number;
2857
- };
2858
- foreach?: string;
2859
- if?: string;
2860
- events?: import("@omnia/fx-models").VelcronEvent;
2861
- type: string;
2862
- name?: string;
2863
- key?: string;
2864
- margin?: {
2865
- top?: string | number;
2866
- right?: string | number;
2867
- bottom?: string | number;
2868
- left?: string | number;
2869
- };
2870
- padding?: {
2871
- top?: string | number;
2872
- right?: string | number;
2873
- bottom?: string | number;
2874
- left?: string | number;
2875
- };
2876
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2877
- }[];
2878
- style?: {
2879
- margin?: string;
2880
- marginTop?: string | number;
2881
- marginRight?: string | number;
2882
- marginBottom?: string | number;
2883
- marginLeft?: string | number;
2884
- padding?: string | number;
2885
- paddingTop?: string | number;
2886
- paddingRight?: string | number;
2887
- paddingBottom?: string | number;
2888
- paddingLeft?: string | number;
2889
- height?: string | number;
2890
- width?: string | number;
2891
- };
2892
- foreach?: string;
2893
- if?: string;
2894
- name?: string;
2895
- key?: string;
2896
- margin?: {
2897
- top?: string | number;
2898
- right?: string | number;
2899
- bottom?: string | number;
2900
- left?: string | number;
2901
- };
2902
- padding?: {
2903
- top?: string | number;
2904
- right?: string | number;
2905
- bottom?: string | number;
2906
- left?: string | number;
2907
- };
2908
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
2909
- }[];
2910
- editors?: {
2911
- name?: string;
2912
- icon?: {
2913
- faClass: string;
2914
- iconType: import("@omnia/fx-models").IconTypes;
2915
- role?: string;
2916
- };
2917
- category?: string;
2918
- locations?: import("@omnia/fx-models").EditorLocation[];
2919
- type: string;
2920
- settings?: any;
2921
- state?: string;
2922
- propertyMapping?: boolean;
2923
- multiple?: boolean;
2924
- component?: unknown;
2925
- }[];
2926
- state?: object;
2927
- computed?: {
2928
- [name: string]: string[];
2929
- };
2930
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
2931
- key?: string;
2932
2450
  };
2933
2451
  };
2934
- variant3?: {
2452
+ accent1?: {
2935
2453
  padding?: {
2936
2454
  top?: import("@omnia/fx-models").SpacingValue;
2937
2455
  right?: import("@omnia/fx-models").SpacingValue;
@@ -3064,1878 +2582,12 @@ export declare const useTypographyBlueprintStore: () => {
3064
2582
  };
3065
2583
  size?: number;
3066
2584
  };
3067
- definition?: {
2585
+ viewTemplate?: {
3068
2586
  id: import("@omnia/fx-models").VelcronRendererId;
3069
2587
  version: string;
3070
- } | {
3071
- type: "velcron";
3072
- version?: string;
3073
- name?: string;
3074
- body?: {
3075
- body?: any[];
3076
- style?: {
3077
- margin?: string;
3078
- marginTop?: string | number;
3079
- marginRight?: string | number;
3080
- marginBottom?: string | number;
3081
- marginLeft?: string | number;
3082
- padding?: string | number;
3083
- paddingTop?: string | number;
3084
- paddingRight?: string | number;
3085
- paddingBottom?: string | number;
3086
- paddingLeft?: string | number;
3087
- height?: string | number;
3088
- width?: string | number;
3089
- };
3090
- foreach?: string;
3091
- if?: string;
3092
- events?: import("@omnia/fx-models").VelcronEvent;
3093
- type: string;
3094
- name?: string;
3095
- key?: string;
3096
- margin?: {
3097
- top?: string | number;
3098
- right?: string | number;
3099
- bottom?: string | number;
3100
- left?: string | number;
3101
- };
3102
- padding?: {
3103
- top?: string | number;
3104
- right?: string | number;
3105
- bottom?: string | number;
3106
- left?: string | number;
3107
- };
3108
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3109
- }[];
3110
- events?: {
3111
- onLoaded?: string[];
3112
- onEditMode?: string[];
3113
- onSaving?: string[];
3114
- onPersistState?: string[];
3115
- onRestoreState?: string[];
3116
- onActive?: string[];
3117
- };
3118
- actions?: {
3119
- [name: string]: string[];
3120
- };
3121
- components?: {
3122
- type: string;
3123
- events?: any;
3124
- properties?: {
3125
- [name: string]: any;
3126
- };
3127
- icon?: any;
3128
- body?: {
3129
- body?: any[];
3130
- style?: {
3131
- margin?: string;
3132
- marginTop?: string | number;
3133
- marginRight?: string | number;
3134
- marginBottom?: string | number;
3135
- marginLeft?: string | number;
3136
- padding?: string | number;
3137
- paddingTop?: string | number;
3138
- paddingRight?: string | number;
3139
- paddingBottom?: string | number;
3140
- paddingLeft?: string | number;
3141
- height?: string | number;
3142
- width?: string | number;
3143
- };
3144
- foreach?: string;
3145
- if?: string;
3146
- events?: import("@omnia/fx-models").VelcronEvent;
3147
- type: string;
3148
- name?: string;
3149
- key?: string;
3150
- margin?: {
3151
- top?: string | number;
3152
- right?: string | number;
3153
- bottom?: string | number;
3154
- left?: string | number;
3155
- };
3156
- padding?: {
3157
- top?: string | number;
3158
- right?: string | number;
3159
- bottom?: string | number;
3160
- left?: string | number;
3161
- };
3162
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3163
- }[];
3164
- style?: {
3165
- margin?: string;
3166
- marginTop?: string | number;
3167
- marginRight?: string | number;
3168
- marginBottom?: string | number;
3169
- marginLeft?: string | number;
3170
- padding?: string | number;
3171
- paddingTop?: string | number;
3172
- paddingRight?: string | number;
3173
- paddingBottom?: string | number;
3174
- paddingLeft?: string | number;
3175
- height?: string | number;
3176
- width?: string | number;
3177
- };
3178
- foreach?: string;
3179
- if?: string;
3180
- name?: string;
3181
- key?: string;
3182
- margin?: {
3183
- top?: string | number;
3184
- right?: string | number;
3185
- bottom?: string | number;
3186
- left?: string | number;
3187
- };
3188
- padding?: {
3189
- top?: string | number;
3190
- right?: string | number;
3191
- bottom?: string | number;
3192
- left?: string | number;
3193
- };
3194
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3195
- }[];
3196
- editors?: {
3197
- name?: string;
3198
- icon?: {
3199
- faClass: string;
3200
- iconType: import("@omnia/fx-models").IconTypes;
3201
- role?: string;
3202
- };
3203
- category?: string;
3204
- locations?: import("@omnia/fx-models").EditorLocation[];
3205
- type: string;
3206
- settings?: any;
3207
- state?: string;
3208
- propertyMapping?: boolean;
3209
- multiple?: boolean;
3210
- component?: unknown;
3211
- }[];
3212
- state?: object;
3213
- computed?: {
3214
- [name: string]: string[];
3215
- };
3216
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
3217
- key?: string;
3218
- };
3219
- };
3220
- variant4?: {
3221
- padding?: {
3222
- top?: import("@omnia/fx-models").SpacingValue;
3223
- right?: import("@omnia/fx-models").SpacingValue;
3224
- bottom?: import("@omnia/fx-models").SpacingValue;
3225
- left?: import("@omnia/fx-models").SpacingValue;
3226
- };
3227
- background?: {
3228
- fill?: string | {
3229
- colors: (string | {
3230
- colorType: "base" | "onBase" | "container" | "onContainer";
3231
- toned?: boolean;
3232
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3233
- opacity?: number;
3234
- } | {
3235
- color: string | {
3236
- colorType: "base" | "onBase" | "container" | "onContainer";
3237
- toned?: boolean;
3238
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3239
- opacity?: number;
3240
- };
3241
- stop?: number;
3242
- })[];
3243
- acrylic?: boolean;
3244
- } | {
3245
- colorType: "base" | "onBase" | "container" | "onContainer";
3246
- toned?: boolean;
3247
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3248
- opacity?: number;
3249
- };
3250
- border?: {
3251
- radius?: {
3252
- top?: import("@omnia/fx-models").SpacingValue;
3253
- right?: import("@omnia/fx-models").SpacingValue;
3254
- bottom?: import("@omnia/fx-models").SpacingValue;
3255
- left?: import("@omnia/fx-models").SpacingValue;
3256
- };
3257
- width?: {
3258
- top?: import("@omnia/fx-models").SpacingValue;
3259
- right?: import("@omnia/fx-models").SpacingValue;
3260
- bottom?: import("@omnia/fx-models").SpacingValue;
3261
- left?: import("@omnia/fx-models").SpacingValue;
3262
- };
3263
- fill?: {
3264
- colors: (string | {
3265
- colorType: "base" | "onBase" | "container" | "onContainer";
3266
- toned?: boolean;
3267
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3268
- opacity?: number;
3269
- } | {
3270
- color: string | any;
3271
- stop?: number;
3272
- })[];
3273
- acrylic?: boolean;
3274
- };
3275
- };
3276
- elevation?: number;
3277
- media?: {
3278
- type: import("@omnia/fx-models").BackgroundMedia;
3279
- src: string;
3280
- };
3281
- };
3282
- alterCase?: boolean;
3283
- text?: {
3284
- color?: string | {
3285
- colors: (string | {
3286
- colorType: "base" | "onBase" | "container" | "onContainer";
3287
- toned?: boolean;
3288
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3289
- opacity?: number;
3290
- } | {
3291
- color: string | {
3292
- colorType: "base" | "onBase" | "container" | "onContainer";
3293
- toned?: boolean;
3294
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3295
- opacity?: number;
3296
- };
3297
- stop?: number;
3298
- })[];
3299
- acrylic?: boolean;
3300
- } | {
3301
- colorType: "base" | "onBase" | "container" | "onContainer";
3302
- toned?: boolean;
3303
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3304
- opacity?: number;
3305
- };
3306
- typography?: {
3307
- decoration?: string;
3308
- lg: {
3309
- weight: number;
3310
- size: number;
3311
- lineHeight: number;
3312
- };
3313
- md?: {
3314
- weight: number;
3315
- size: number;
3316
- lineHeight: number;
3317
- };
3318
- sm?: {
3319
- weight: number;
3320
- size: number;
3321
- lineHeight: number;
3322
- };
3323
- } | {
3324
- type: "text" | "title" | "navigation";
3325
- size: "xs" | "s" | "m" | "l" | "xl";
3326
- };
3327
- };
3328
- icon?: {
3329
- color?: string | {
3330
- colors: (string | {
3331
- colorType: "base" | "onBase" | "container" | "onContainer";
3332
- toned?: boolean;
3333
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3334
- opacity?: number;
3335
- } | {
3336
- color: string | {
3337
- colorType: "base" | "onBase" | "container" | "onContainer";
3338
- toned?: boolean;
3339
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3340
- opacity?: number;
3341
- };
3342
- stop?: number;
3343
- })[];
3344
- acrylic?: boolean;
3345
- } | {
3346
- colorType: "base" | "onBase" | "container" | "onContainer";
3347
- toned?: boolean;
3348
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3349
- opacity?: number;
3350
- };
3351
- size?: number;
3352
- };
3353
- definition?: {
3354
- id: import("@omnia/fx-models").VelcronRendererId;
3355
- version: string;
3356
- } | {
3357
- type: "velcron";
3358
- version?: string;
3359
- name?: string;
3360
- body?: {
3361
- body?: any[];
3362
- style?: {
3363
- margin?: string;
3364
- marginTop?: string | number;
3365
- marginRight?: string | number;
3366
- marginBottom?: string | number;
3367
- marginLeft?: string | number;
3368
- padding?: string | number;
3369
- paddingTop?: string | number;
3370
- paddingRight?: string | number;
3371
- paddingBottom?: string | number;
3372
- paddingLeft?: string | number;
3373
- height?: string | number;
3374
- width?: string | number;
3375
- };
3376
- foreach?: string;
3377
- if?: string;
3378
- events?: import("@omnia/fx-models").VelcronEvent;
3379
- type: string;
3380
- name?: string;
3381
- key?: string;
3382
- margin?: {
3383
- top?: string | number;
3384
- right?: string | number;
3385
- bottom?: string | number;
3386
- left?: string | number;
3387
- };
3388
- padding?: {
3389
- top?: string | number;
3390
- right?: string | number;
3391
- bottom?: string | number;
3392
- left?: string | number;
3393
- };
3394
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3395
- }[];
3396
- events?: {
3397
- onLoaded?: string[];
3398
- onEditMode?: string[];
3399
- onSaving?: string[];
3400
- onPersistState?: string[];
3401
- onRestoreState?: string[];
3402
- onActive?: string[];
3403
- };
3404
- actions?: {
3405
- [name: string]: string[];
3406
- };
3407
- components?: {
3408
- type: string;
3409
- events?: any;
3410
- properties?: {
3411
- [name: string]: any;
3412
- };
3413
- icon?: any;
3414
- body?: {
3415
- body?: any[];
3416
- style?: {
3417
- margin?: string;
3418
- marginTop?: string | number;
3419
- marginRight?: string | number;
3420
- marginBottom?: string | number;
3421
- marginLeft?: string | number;
3422
- padding?: string | number;
3423
- paddingTop?: string | number;
3424
- paddingRight?: string | number;
3425
- paddingBottom?: string | number;
3426
- paddingLeft?: string | number;
3427
- height?: string | number;
3428
- width?: string | number;
3429
- };
3430
- foreach?: string;
3431
- if?: string;
3432
- events?: import("@omnia/fx-models").VelcronEvent;
3433
- type: string;
3434
- name?: string;
3435
- key?: string;
3436
- margin?: {
3437
- top?: string | number;
3438
- right?: string | number;
3439
- bottom?: string | number;
3440
- left?: string | number;
3441
- };
3442
- padding?: {
3443
- top?: string | number;
3444
- right?: string | number;
3445
- bottom?: string | number;
3446
- left?: string | number;
3447
- };
3448
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3449
- }[];
3450
- style?: {
3451
- margin?: string;
3452
- marginTop?: string | number;
3453
- marginRight?: string | number;
3454
- marginBottom?: string | number;
3455
- marginLeft?: string | number;
3456
- padding?: string | number;
3457
- paddingTop?: string | number;
3458
- paddingRight?: string | number;
3459
- paddingBottom?: string | number;
3460
- paddingLeft?: string | number;
3461
- height?: string | number;
3462
- width?: string | number;
3463
- };
3464
- foreach?: string;
3465
- if?: string;
3466
- name?: string;
3467
- key?: string;
3468
- margin?: {
3469
- top?: string | number;
3470
- right?: string | number;
3471
- bottom?: string | number;
3472
- left?: string | number;
3473
- };
3474
- padding?: {
3475
- top?: string | number;
3476
- right?: string | number;
3477
- bottom?: string | number;
3478
- left?: string | number;
3479
- };
3480
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3481
- }[];
3482
- editors?: {
3483
- name?: string;
3484
- icon?: {
3485
- faClass: string;
3486
- iconType: import("@omnia/fx-models").IconTypes;
3487
- role?: string;
3488
- };
3489
- category?: string;
3490
- locations?: import("@omnia/fx-models").EditorLocation[];
3491
- type: string;
3492
- settings?: any;
3493
- state?: string;
3494
- propertyMapping?: boolean;
3495
- multiple?: boolean;
3496
- component?: unknown;
3497
- }[];
3498
- state?: object;
3499
- computed?: {
3500
- [name: string]: string[];
3501
- };
3502
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
3503
- key?: string;
3504
- };
3505
- };
3506
- };
3507
- icon: {
3508
- primary?: {
3509
- padding?: {
3510
- top?: import("@omnia/fx-models").SpacingValue;
3511
- right?: import("@omnia/fx-models").SpacingValue;
3512
- bottom?: import("@omnia/fx-models").SpacingValue;
3513
- left?: import("@omnia/fx-models").SpacingValue;
3514
- };
3515
- background?: {
3516
- fill?: string | {
3517
- colors: (string | {
3518
- colorType: "base" | "onBase" | "container" | "onContainer";
3519
- toned?: boolean;
3520
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3521
- opacity?: number;
3522
- } | {
3523
- color: string | {
3524
- colorType: "base" | "onBase" | "container" | "onContainer";
3525
- toned?: boolean;
3526
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3527
- opacity?: number;
3528
- };
3529
- stop?: number;
3530
- })[];
3531
- acrylic?: boolean;
3532
- } | {
3533
- colorType: "base" | "onBase" | "container" | "onContainer";
3534
- toned?: boolean;
3535
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3536
- opacity?: number;
3537
- };
3538
- border?: {
3539
- radius?: {
3540
- top?: import("@omnia/fx-models").SpacingValue;
3541
- right?: import("@omnia/fx-models").SpacingValue;
3542
- bottom?: import("@omnia/fx-models").SpacingValue;
3543
- left?: import("@omnia/fx-models").SpacingValue;
3544
- };
3545
- width?: {
3546
- top?: import("@omnia/fx-models").SpacingValue;
3547
- right?: import("@omnia/fx-models").SpacingValue;
3548
- bottom?: import("@omnia/fx-models").SpacingValue;
3549
- left?: import("@omnia/fx-models").SpacingValue;
3550
- };
3551
- fill?: {
3552
- colors: (string | {
3553
- colorType: "base" | "onBase" | "container" | "onContainer";
3554
- toned?: boolean;
3555
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3556
- opacity?: number;
3557
- } | {
3558
- color: string | any;
3559
- stop?: number;
3560
- })[];
3561
- acrylic?: boolean;
3562
- };
3563
- };
3564
- elevation?: number;
3565
- media?: {
3566
- type: import("@omnia/fx-models").BackgroundMedia;
3567
- src: string;
3568
- };
3569
- };
3570
- alterCase?: boolean;
3571
- text?: {
3572
- color?: string | {
3573
- colors: (string | {
3574
- colorType: "base" | "onBase" | "container" | "onContainer";
3575
- toned?: boolean;
3576
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3577
- opacity?: number;
3578
- } | {
3579
- color: string | {
3580
- colorType: "base" | "onBase" | "container" | "onContainer";
3581
- toned?: boolean;
3582
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3583
- opacity?: number;
3584
- };
3585
- stop?: number;
3586
- })[];
3587
- acrylic?: boolean;
3588
- } | {
3589
- colorType: "base" | "onBase" | "container" | "onContainer";
3590
- toned?: boolean;
3591
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3592
- opacity?: number;
3593
- };
3594
- typography?: {
3595
- decoration?: string;
3596
- lg: {
3597
- weight: number;
3598
- size: number;
3599
- lineHeight: number;
3600
- };
3601
- md?: {
3602
- weight: number;
3603
- size: number;
3604
- lineHeight: number;
3605
- };
3606
- sm?: {
3607
- weight: number;
3608
- size: number;
3609
- lineHeight: number;
3610
- };
3611
- } | {
3612
- type: "text" | "title" | "navigation";
3613
- size: "xs" | "s" | "m" | "l" | "xl";
3614
- };
3615
- };
3616
- icon?: {
3617
- color?: string | {
3618
- colors: (string | {
3619
- colorType: "base" | "onBase" | "container" | "onContainer";
3620
- toned?: boolean;
3621
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3622
- opacity?: number;
3623
- } | {
3624
- color: string | {
3625
- colorType: "base" | "onBase" | "container" | "onContainer";
3626
- toned?: boolean;
3627
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3628
- opacity?: number;
3629
- };
3630
- stop?: number;
3631
- })[];
3632
- acrylic?: boolean;
3633
- } | {
3634
- colorType: "base" | "onBase" | "container" | "onContainer";
3635
- toned?: boolean;
3636
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3637
- opacity?: number;
3638
- };
3639
- size?: number;
3640
- };
3641
- definition?: {
3642
- id: import("@omnia/fx-models").VelcronRendererId;
3643
- version: string;
3644
- } | {
3645
- type: "velcron";
3646
- version?: string;
3647
- name?: string;
3648
- body?: {
3649
- body?: any[];
3650
- style?: {
3651
- margin?: string;
3652
- marginTop?: string | number;
3653
- marginRight?: string | number;
3654
- marginBottom?: string | number;
3655
- marginLeft?: string | number;
3656
- padding?: string | number;
3657
- paddingTop?: string | number;
3658
- paddingRight?: string | number;
3659
- paddingBottom?: string | number;
3660
- paddingLeft?: string | number;
3661
- height?: string | number;
3662
- width?: string | number;
3663
- };
3664
- foreach?: string;
3665
- if?: string;
3666
- events?: import("@omnia/fx-models").VelcronEvent;
3667
- type: string;
3668
- name?: string;
3669
- key?: string;
3670
- margin?: {
3671
- top?: string | number;
3672
- right?: string | number;
3673
- bottom?: string | number;
3674
- left?: string | number;
3675
- };
3676
- padding?: {
3677
- top?: string | number;
3678
- right?: string | number;
3679
- bottom?: string | number;
3680
- left?: string | number;
3681
- };
3682
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3683
- }[];
3684
- events?: {
3685
- onLoaded?: string[];
3686
- onEditMode?: string[];
3687
- onSaving?: string[];
3688
- onPersistState?: string[];
3689
- onRestoreState?: string[];
3690
- onActive?: string[];
3691
- };
3692
- actions?: {
3693
- [name: string]: string[];
3694
- };
3695
- components?: {
3696
- type: string;
3697
- events?: any;
3698
- properties?: {
3699
- [name: string]: any;
3700
- };
3701
- icon?: any;
3702
- body?: {
3703
- body?: any[];
3704
- style?: {
3705
- margin?: string;
3706
- marginTop?: string | number;
3707
- marginRight?: string | number;
3708
- marginBottom?: string | number;
3709
- marginLeft?: string | number;
3710
- padding?: string | number;
3711
- paddingTop?: string | number;
3712
- paddingRight?: string | number;
3713
- paddingBottom?: string | number;
3714
- paddingLeft?: string | number;
3715
- height?: string | number;
3716
- width?: string | number;
3717
- };
3718
- foreach?: string;
3719
- if?: string;
3720
- events?: import("@omnia/fx-models").VelcronEvent;
3721
- type: string;
3722
- name?: string;
3723
- key?: string;
3724
- margin?: {
3725
- top?: string | number;
3726
- right?: string | number;
3727
- bottom?: string | number;
3728
- left?: string | number;
3729
- };
3730
- padding?: {
3731
- top?: string | number;
3732
- right?: string | number;
3733
- bottom?: string | number;
3734
- left?: string | number;
3735
- };
3736
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3737
- }[];
3738
- style?: {
3739
- margin?: string;
3740
- marginTop?: string | number;
3741
- marginRight?: string | number;
3742
- marginBottom?: string | number;
3743
- marginLeft?: string | number;
3744
- padding?: string | number;
3745
- paddingTop?: string | number;
3746
- paddingRight?: string | number;
3747
- paddingBottom?: string | number;
3748
- paddingLeft?: string | number;
3749
- height?: string | number;
3750
- width?: string | number;
3751
- };
3752
- foreach?: string;
3753
- if?: string;
3754
- name?: string;
3755
- key?: string;
3756
- margin?: {
3757
- top?: string | number;
3758
- right?: string | number;
3759
- bottom?: string | number;
3760
- left?: string | number;
3761
- };
3762
- padding?: {
3763
- top?: string | number;
3764
- right?: string | number;
3765
- bottom?: string | number;
3766
- left?: string | number;
3767
- };
3768
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3769
- }[];
3770
- editors?: {
3771
- name?: string;
3772
- icon?: {
3773
- faClass: string;
3774
- iconType: import("@omnia/fx-models").IconTypes;
3775
- role?: string;
3776
- };
3777
- category?: string;
3778
- locations?: import("@omnia/fx-models").EditorLocation[];
3779
- type: string;
3780
- settings?: any;
3781
- state?: string;
3782
- propertyMapping?: boolean;
3783
- multiple?: boolean;
3784
- component?: unknown;
3785
- }[];
3786
- state?: object;
3787
- computed?: {
3788
- [name: string]: string[];
3789
- };
3790
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
3791
- key?: string;
3792
- };
3793
- };
3794
- basic?: {
3795
- padding?: {
3796
- top?: import("@omnia/fx-models").SpacingValue;
3797
- right?: import("@omnia/fx-models").SpacingValue;
3798
- bottom?: import("@omnia/fx-models").SpacingValue;
3799
- left?: import("@omnia/fx-models").SpacingValue;
3800
- };
3801
- background?: {
3802
- fill?: string | {
3803
- colors: (string | {
3804
- colorType: "base" | "onBase" | "container" | "onContainer";
3805
- toned?: boolean;
3806
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3807
- opacity?: number;
3808
- } | {
3809
- color: string | {
3810
- colorType: "base" | "onBase" | "container" | "onContainer";
3811
- toned?: boolean;
3812
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3813
- opacity?: number;
3814
- };
3815
- stop?: number;
3816
- })[];
3817
- acrylic?: boolean;
3818
- } | {
3819
- colorType: "base" | "onBase" | "container" | "onContainer";
3820
- toned?: boolean;
3821
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3822
- opacity?: number;
3823
- };
3824
- border?: {
3825
- radius?: {
3826
- top?: import("@omnia/fx-models").SpacingValue;
3827
- right?: import("@omnia/fx-models").SpacingValue;
3828
- bottom?: import("@omnia/fx-models").SpacingValue;
3829
- left?: import("@omnia/fx-models").SpacingValue;
3830
- };
3831
- width?: {
3832
- top?: import("@omnia/fx-models").SpacingValue;
3833
- right?: import("@omnia/fx-models").SpacingValue;
3834
- bottom?: import("@omnia/fx-models").SpacingValue;
3835
- left?: import("@omnia/fx-models").SpacingValue;
3836
- };
3837
- fill?: {
3838
- colors: (string | {
3839
- colorType: "base" | "onBase" | "container" | "onContainer";
3840
- toned?: boolean;
3841
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3842
- opacity?: number;
3843
- } | {
3844
- color: string | any;
3845
- stop?: number;
3846
- })[];
3847
- acrylic?: boolean;
3848
- };
3849
- };
3850
- elevation?: number;
3851
- media?: {
3852
- type: import("@omnia/fx-models").BackgroundMedia;
3853
- src: string;
3854
- };
3855
- };
3856
- alterCase?: boolean;
3857
- text?: {
3858
- color?: string | {
3859
- colors: (string | {
3860
- colorType: "base" | "onBase" | "container" | "onContainer";
3861
- toned?: boolean;
3862
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3863
- opacity?: number;
3864
- } | {
3865
- color: string | {
3866
- colorType: "base" | "onBase" | "container" | "onContainer";
3867
- toned?: boolean;
3868
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3869
- opacity?: number;
3870
- };
3871
- stop?: number;
3872
- })[];
3873
- acrylic?: boolean;
3874
- } | {
3875
- colorType: "base" | "onBase" | "container" | "onContainer";
3876
- toned?: boolean;
3877
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3878
- opacity?: number;
3879
- };
3880
- typography?: {
3881
- decoration?: string;
3882
- lg: {
3883
- weight: number;
3884
- size: number;
3885
- lineHeight: number;
3886
- };
3887
- md?: {
3888
- weight: number;
3889
- size: number;
3890
- lineHeight: number;
3891
- };
3892
- sm?: {
3893
- weight: number;
3894
- size: number;
3895
- lineHeight: number;
3896
- };
3897
- } | {
3898
- type: "text" | "title" | "navigation";
3899
- size: "xs" | "s" | "m" | "l" | "xl";
3900
- };
3901
- };
3902
- icon?: {
3903
- color?: string | {
3904
- colors: (string | {
3905
- colorType: "base" | "onBase" | "container" | "onContainer";
3906
- toned?: boolean;
3907
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3908
- opacity?: number;
3909
- } | {
3910
- color: string | {
3911
- colorType: "base" | "onBase" | "container" | "onContainer";
3912
- toned?: boolean;
3913
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3914
- opacity?: number;
3915
- };
3916
- stop?: number;
3917
- })[];
3918
- acrylic?: boolean;
3919
- } | {
3920
- colorType: "base" | "onBase" | "container" | "onContainer";
3921
- toned?: boolean;
3922
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3923
- opacity?: number;
3924
- };
3925
- size?: number;
3926
- };
3927
- definition?: {
3928
- id: import("@omnia/fx-models").VelcronRendererId;
3929
- version: string;
3930
- } | {
3931
- type: "velcron";
3932
- version?: string;
3933
- name?: string;
3934
- body?: {
3935
- body?: any[];
3936
- style?: {
3937
- margin?: string;
3938
- marginTop?: string | number;
3939
- marginRight?: string | number;
3940
- marginBottom?: string | number;
3941
- marginLeft?: string | number;
3942
- padding?: string | number;
3943
- paddingTop?: string | number;
3944
- paddingRight?: string | number;
3945
- paddingBottom?: string | number;
3946
- paddingLeft?: string | number;
3947
- height?: string | number;
3948
- width?: string | number;
3949
- };
3950
- foreach?: string;
3951
- if?: string;
3952
- events?: import("@omnia/fx-models").VelcronEvent;
3953
- type: string;
3954
- name?: string;
3955
- key?: string;
3956
- margin?: {
3957
- top?: string | number;
3958
- right?: string | number;
3959
- bottom?: string | number;
3960
- left?: string | number;
3961
- };
3962
- padding?: {
3963
- top?: string | number;
3964
- right?: string | number;
3965
- bottom?: string | number;
3966
- left?: string | number;
3967
- };
3968
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
3969
- }[];
3970
- events?: {
3971
- onLoaded?: string[];
3972
- onEditMode?: string[];
3973
- onSaving?: string[];
3974
- onPersistState?: string[];
3975
- onRestoreState?: string[];
3976
- onActive?: string[];
3977
- };
3978
- actions?: {
3979
- [name: string]: string[];
3980
- };
3981
- components?: {
3982
- type: string;
3983
- events?: any;
3984
- properties?: {
3985
- [name: string]: any;
3986
- };
3987
- icon?: any;
3988
- body?: {
3989
- body?: any[];
3990
- style?: {
3991
- margin?: string;
3992
- marginTop?: string | number;
3993
- marginRight?: string | number;
3994
- marginBottom?: string | number;
3995
- marginLeft?: string | number;
3996
- padding?: string | number;
3997
- paddingTop?: string | number;
3998
- paddingRight?: string | number;
3999
- paddingBottom?: string | number;
4000
- paddingLeft?: string | number;
4001
- height?: string | number;
4002
- width?: string | number;
4003
- };
4004
- foreach?: string;
4005
- if?: string;
4006
- events?: import("@omnia/fx-models").VelcronEvent;
4007
- type: string;
4008
- name?: string;
4009
- key?: string;
4010
- margin?: {
4011
- top?: string | number;
4012
- right?: string | number;
4013
- bottom?: string | number;
4014
- left?: string | number;
4015
- };
4016
- padding?: {
4017
- top?: string | number;
4018
- right?: string | number;
4019
- bottom?: string | number;
4020
- left?: string | number;
4021
- };
4022
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4023
- }[];
4024
- style?: {
4025
- margin?: string;
4026
- marginTop?: string | number;
4027
- marginRight?: string | number;
4028
- marginBottom?: string | number;
4029
- marginLeft?: string | number;
4030
- padding?: string | number;
4031
- paddingTop?: string | number;
4032
- paddingRight?: string | number;
4033
- paddingBottom?: string | number;
4034
- paddingLeft?: string | number;
4035
- height?: string | number;
4036
- width?: string | number;
4037
- };
4038
- foreach?: string;
4039
- if?: string;
4040
- name?: string;
4041
- key?: string;
4042
- margin?: {
4043
- top?: string | number;
4044
- right?: string | number;
4045
- bottom?: string | number;
4046
- left?: string | number;
4047
- };
4048
- padding?: {
4049
- top?: string | number;
4050
- right?: string | number;
4051
- bottom?: string | number;
4052
- left?: string | number;
4053
- };
4054
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4055
- }[];
4056
- editors?: {
4057
- name?: string;
4058
- icon?: {
4059
- faClass: string;
4060
- iconType: import("@omnia/fx-models").IconTypes;
4061
- role?: string;
4062
- };
4063
- category?: string;
4064
- locations?: import("@omnia/fx-models").EditorLocation[];
4065
- type: string;
4066
- settings?: any;
4067
- state?: string;
4068
- propertyMapping?: boolean;
4069
- multiple?: boolean;
4070
- component?: unknown;
4071
- }[];
4072
- state?: object;
4073
- computed?: {
4074
- [name: string]: string[];
4075
- };
4076
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
4077
- key?: string;
4078
- };
4079
- };
4080
- accent1?: {
4081
- padding?: {
4082
- top?: import("@omnia/fx-models").SpacingValue;
4083
- right?: import("@omnia/fx-models").SpacingValue;
4084
- bottom?: import("@omnia/fx-models").SpacingValue;
4085
- left?: import("@omnia/fx-models").SpacingValue;
4086
- };
4087
- background?: {
4088
- fill?: string | {
4089
- colors: (string | {
4090
- colorType: "base" | "onBase" | "container" | "onContainer";
4091
- toned?: boolean;
4092
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4093
- opacity?: number;
4094
- } | {
4095
- color: string | {
4096
- colorType: "base" | "onBase" | "container" | "onContainer";
4097
- toned?: boolean;
4098
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4099
- opacity?: number;
4100
- };
4101
- stop?: number;
4102
- })[];
4103
- acrylic?: boolean;
4104
- } | {
4105
- colorType: "base" | "onBase" | "container" | "onContainer";
4106
- toned?: boolean;
4107
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4108
- opacity?: number;
4109
- };
4110
- border?: {
4111
- radius?: {
4112
- top?: import("@omnia/fx-models").SpacingValue;
4113
- right?: import("@omnia/fx-models").SpacingValue;
4114
- bottom?: import("@omnia/fx-models").SpacingValue;
4115
- left?: import("@omnia/fx-models").SpacingValue;
4116
- };
4117
- width?: {
4118
- top?: import("@omnia/fx-models").SpacingValue;
4119
- right?: import("@omnia/fx-models").SpacingValue;
4120
- bottom?: import("@omnia/fx-models").SpacingValue;
4121
- left?: import("@omnia/fx-models").SpacingValue;
4122
- };
4123
- fill?: {
4124
- colors: (string | {
4125
- colorType: "base" | "onBase" | "container" | "onContainer";
4126
- toned?: boolean;
4127
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4128
- opacity?: number;
4129
- } | {
4130
- color: string | any;
4131
- stop?: number;
4132
- })[];
4133
- acrylic?: boolean;
4134
- };
4135
- };
4136
- elevation?: number;
4137
- media?: {
4138
- type: import("@omnia/fx-models").BackgroundMedia;
4139
- src: string;
4140
- };
4141
- };
4142
- alterCase?: boolean;
4143
- text?: {
4144
- color?: string | {
4145
- colors: (string | {
4146
- colorType: "base" | "onBase" | "container" | "onContainer";
4147
- toned?: boolean;
4148
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4149
- opacity?: number;
4150
- } | {
4151
- color: string | {
4152
- colorType: "base" | "onBase" | "container" | "onContainer";
4153
- toned?: boolean;
4154
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4155
- opacity?: number;
4156
- };
4157
- stop?: number;
4158
- })[];
4159
- acrylic?: boolean;
4160
- } | {
4161
- colorType: "base" | "onBase" | "container" | "onContainer";
4162
- toned?: boolean;
4163
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4164
- opacity?: number;
4165
- };
4166
- typography?: {
4167
- decoration?: string;
4168
- lg: {
4169
- weight: number;
4170
- size: number;
4171
- lineHeight: number;
4172
- };
4173
- md?: {
4174
- weight: number;
4175
- size: number;
4176
- lineHeight: number;
4177
- };
4178
- sm?: {
4179
- weight: number;
4180
- size: number;
4181
- lineHeight: number;
4182
- };
4183
- } | {
4184
- type: "text" | "title" | "navigation";
4185
- size: "xs" | "s" | "m" | "l" | "xl";
4186
- };
4187
- };
4188
- icon?: {
4189
- color?: string | {
4190
- colors: (string | {
4191
- colorType: "base" | "onBase" | "container" | "onContainer";
4192
- toned?: boolean;
4193
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4194
- opacity?: number;
4195
- } | {
4196
- color: string | {
4197
- colorType: "base" | "onBase" | "container" | "onContainer";
4198
- toned?: boolean;
4199
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4200
- opacity?: number;
4201
- };
4202
- stop?: number;
4203
- })[];
4204
- acrylic?: boolean;
4205
- } | {
4206
- colorType: "base" | "onBase" | "container" | "onContainer";
4207
- toned?: boolean;
4208
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4209
- opacity?: number;
4210
- };
4211
- size?: number;
4212
- };
4213
- definition?: {
4214
- id: import("@omnia/fx-models").VelcronRendererId;
4215
- version: string;
4216
- } | {
4217
- type: "velcron";
4218
- version?: string;
4219
- name?: string;
4220
- body?: {
4221
- body?: any[];
4222
- style?: {
4223
- margin?: string;
4224
- marginTop?: string | number;
4225
- marginRight?: string | number;
4226
- marginBottom?: string | number;
4227
- marginLeft?: string | number;
4228
- padding?: string | number;
4229
- paddingTop?: string | number;
4230
- paddingRight?: string | number;
4231
- paddingBottom?: string | number;
4232
- paddingLeft?: string | number;
4233
- height?: string | number;
4234
- width?: string | number;
4235
- };
4236
- foreach?: string;
4237
- if?: string;
4238
- events?: import("@omnia/fx-models").VelcronEvent;
4239
- type: string;
4240
- name?: string;
4241
- key?: string;
4242
- margin?: {
4243
- top?: string | number;
4244
- right?: string | number;
4245
- bottom?: string | number;
4246
- left?: string | number;
4247
- };
4248
- padding?: {
4249
- top?: string | number;
4250
- right?: string | number;
4251
- bottom?: string | number;
4252
- left?: string | number;
4253
- };
4254
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4255
- }[];
4256
- events?: {
4257
- onLoaded?: string[];
4258
- onEditMode?: string[];
4259
- onSaving?: string[];
4260
- onPersistState?: string[];
4261
- onRestoreState?: string[];
4262
- onActive?: string[];
4263
- };
4264
- actions?: {
4265
- [name: string]: string[];
4266
- };
4267
- components?: {
4268
- type: string;
4269
- events?: any;
4270
- properties?: {
4271
- [name: string]: any;
4272
- };
4273
- icon?: any;
4274
- body?: {
4275
- body?: any[];
4276
- style?: {
4277
- margin?: string;
4278
- marginTop?: string | number;
4279
- marginRight?: string | number;
4280
- marginBottom?: string | number;
4281
- marginLeft?: string | number;
4282
- padding?: string | number;
4283
- paddingTop?: string | number;
4284
- paddingRight?: string | number;
4285
- paddingBottom?: string | number;
4286
- paddingLeft?: string | number;
4287
- height?: string | number;
4288
- width?: string | number;
4289
- };
4290
- foreach?: string;
4291
- if?: string;
4292
- events?: import("@omnia/fx-models").VelcronEvent;
4293
- type: string;
4294
- name?: string;
4295
- key?: string;
4296
- margin?: {
4297
- top?: string | number;
4298
- right?: string | number;
4299
- bottom?: string | number;
4300
- left?: string | number;
4301
- };
4302
- padding?: {
4303
- top?: string | number;
4304
- right?: string | number;
4305
- bottom?: string | number;
4306
- left?: string | number;
4307
- };
4308
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4309
- }[];
4310
- style?: {
4311
- margin?: string;
4312
- marginTop?: string | number;
4313
- marginRight?: string | number;
4314
- marginBottom?: string | number;
4315
- marginLeft?: string | number;
4316
- padding?: string | number;
4317
- paddingTop?: string | number;
4318
- paddingRight?: string | number;
4319
- paddingBottom?: string | number;
4320
- paddingLeft?: string | number;
4321
- height?: string | number;
4322
- width?: string | number;
4323
- };
4324
- foreach?: string;
4325
- if?: string;
4326
- name?: string;
4327
- key?: string;
4328
- margin?: {
4329
- top?: string | number;
4330
- right?: string | number;
4331
- bottom?: string | number;
4332
- left?: string | number;
4333
- };
4334
- padding?: {
4335
- top?: string | number;
4336
- right?: string | number;
4337
- bottom?: string | number;
4338
- left?: string | number;
4339
- };
4340
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4341
- }[];
4342
- editors?: {
4343
- name?: string;
4344
- icon?: {
4345
- faClass: string;
4346
- iconType: import("@omnia/fx-models").IconTypes;
4347
- role?: string;
4348
- };
4349
- category?: string;
4350
- locations?: import("@omnia/fx-models").EditorLocation[];
4351
- type: string;
4352
- settings?: any;
4353
- state?: string;
4354
- propertyMapping?: boolean;
4355
- multiple?: boolean;
4356
- component?: unknown;
4357
- }[];
4358
- state?: object;
4359
- computed?: {
4360
- [name: string]: string[];
4361
- };
4362
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
4363
- key?: string;
4364
- };
4365
- };
4366
- warn?: {
4367
- padding?: {
4368
- top?: import("@omnia/fx-models").SpacingValue;
4369
- right?: import("@omnia/fx-models").SpacingValue;
4370
- bottom?: import("@omnia/fx-models").SpacingValue;
4371
- left?: import("@omnia/fx-models").SpacingValue;
4372
- };
4373
- background?: {
4374
- fill?: string | {
4375
- colors: (string | {
4376
- colorType: "base" | "onBase" | "container" | "onContainer";
4377
- toned?: boolean;
4378
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4379
- opacity?: number;
4380
- } | {
4381
- color: string | {
4382
- colorType: "base" | "onBase" | "container" | "onContainer";
4383
- toned?: boolean;
4384
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4385
- opacity?: number;
4386
- };
4387
- stop?: number;
4388
- })[];
4389
- acrylic?: boolean;
4390
- } | {
4391
- colorType: "base" | "onBase" | "container" | "onContainer";
4392
- toned?: boolean;
4393
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4394
- opacity?: number;
4395
- };
4396
- border?: {
4397
- radius?: {
4398
- top?: import("@omnia/fx-models").SpacingValue;
4399
- right?: import("@omnia/fx-models").SpacingValue;
4400
- bottom?: import("@omnia/fx-models").SpacingValue;
4401
- left?: import("@omnia/fx-models").SpacingValue;
4402
- };
4403
- width?: {
4404
- top?: import("@omnia/fx-models").SpacingValue;
4405
- right?: import("@omnia/fx-models").SpacingValue;
4406
- bottom?: import("@omnia/fx-models").SpacingValue;
4407
- left?: import("@omnia/fx-models").SpacingValue;
4408
- };
4409
- fill?: {
4410
- colors: (string | {
4411
- colorType: "base" | "onBase" | "container" | "onContainer";
4412
- toned?: boolean;
4413
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4414
- opacity?: number;
4415
- } | {
4416
- color: string | any;
4417
- stop?: number;
4418
- })[];
4419
- acrylic?: boolean;
4420
- };
4421
- };
4422
- elevation?: number;
4423
- media?: {
4424
- type: import("@omnia/fx-models").BackgroundMedia;
4425
- src: string;
4426
- };
4427
- };
4428
- alterCase?: boolean;
4429
- text?: {
4430
- color?: string | {
4431
- colors: (string | {
4432
- colorType: "base" | "onBase" | "container" | "onContainer";
4433
- toned?: boolean;
4434
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4435
- opacity?: number;
4436
- } | {
4437
- color: string | {
4438
- colorType: "base" | "onBase" | "container" | "onContainer";
4439
- toned?: boolean;
4440
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4441
- opacity?: number;
4442
- };
4443
- stop?: number;
4444
- })[];
4445
- acrylic?: boolean;
4446
- } | {
4447
- colorType: "base" | "onBase" | "container" | "onContainer";
4448
- toned?: boolean;
4449
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4450
- opacity?: number;
4451
- };
4452
- typography?: {
4453
- decoration?: string;
4454
- lg: {
4455
- weight: number;
4456
- size: number;
4457
- lineHeight: number;
4458
- };
4459
- md?: {
4460
- weight: number;
4461
- size: number;
4462
- lineHeight: number;
4463
- };
4464
- sm?: {
4465
- weight: number;
4466
- size: number;
4467
- lineHeight: number;
4468
- };
4469
- } | {
4470
- type: "text" | "title" | "navigation";
4471
- size: "xs" | "s" | "m" | "l" | "xl";
4472
- };
4473
- };
4474
- icon?: {
4475
- color?: string | {
4476
- colors: (string | {
4477
- colorType: "base" | "onBase" | "container" | "onContainer";
4478
- toned?: boolean;
4479
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4480
- opacity?: number;
4481
- } | {
4482
- color: string | {
4483
- colorType: "base" | "onBase" | "container" | "onContainer";
4484
- toned?: boolean;
4485
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4486
- opacity?: number;
4487
- };
4488
- stop?: number;
4489
- })[];
4490
- acrylic?: boolean;
4491
- } | {
4492
- colorType: "base" | "onBase" | "container" | "onContainer";
4493
- toned?: boolean;
4494
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4495
- opacity?: number;
4496
- };
4497
- size?: number;
4498
- };
4499
- definition?: {
4500
- id: import("@omnia/fx-models").VelcronRendererId;
4501
- version: string;
4502
- } | {
4503
- type: "velcron";
4504
- version?: string;
4505
- name?: string;
4506
- body?: {
4507
- body?: any[];
4508
- style?: {
4509
- margin?: string;
4510
- marginTop?: string | number;
4511
- marginRight?: string | number;
4512
- marginBottom?: string | number;
4513
- marginLeft?: string | number;
4514
- padding?: string | number;
4515
- paddingTop?: string | number;
4516
- paddingRight?: string | number;
4517
- paddingBottom?: string | number;
4518
- paddingLeft?: string | number;
4519
- height?: string | number;
4520
- width?: string | number;
4521
- };
4522
- foreach?: string;
4523
- if?: string;
4524
- events?: import("@omnia/fx-models").VelcronEvent;
4525
- type: string;
4526
- name?: string;
4527
- key?: string;
4528
- margin?: {
4529
- top?: string | number;
4530
- right?: string | number;
4531
- bottom?: string | number;
4532
- left?: string | number;
4533
- };
4534
- padding?: {
4535
- top?: string | number;
4536
- right?: string | number;
4537
- bottom?: string | number;
4538
- left?: string | number;
4539
- };
4540
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4541
- }[];
4542
- events?: {
4543
- onLoaded?: string[];
4544
- onEditMode?: string[];
4545
- onSaving?: string[];
4546
- onPersistState?: string[];
4547
- onRestoreState?: string[];
4548
- onActive?: string[];
4549
- };
4550
- actions?: {
4551
- [name: string]: string[];
4552
- };
4553
- components?: {
4554
- type: string;
4555
- events?: any;
4556
- properties?: {
4557
- [name: string]: any;
4558
- };
4559
- icon?: any;
4560
- body?: {
4561
- body?: any[];
4562
- style?: {
4563
- margin?: string;
4564
- marginTop?: string | number;
4565
- marginRight?: string | number;
4566
- marginBottom?: string | number;
4567
- marginLeft?: string | number;
4568
- padding?: string | number;
4569
- paddingTop?: string | number;
4570
- paddingRight?: string | number;
4571
- paddingBottom?: string | number;
4572
- paddingLeft?: string | number;
4573
- height?: string | number;
4574
- width?: string | number;
4575
- };
4576
- foreach?: string;
4577
- if?: string;
4578
- events?: import("@omnia/fx-models").VelcronEvent;
4579
- type: string;
4580
- name?: string;
4581
- key?: string;
4582
- margin?: {
4583
- top?: string | number;
4584
- right?: string | number;
4585
- bottom?: string | number;
4586
- left?: string | number;
4587
- };
4588
- padding?: {
4589
- top?: string | number;
4590
- right?: string | number;
4591
- bottom?: string | number;
4592
- left?: string | number;
4593
- };
4594
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4595
- }[];
4596
- style?: {
4597
- margin?: string;
4598
- marginTop?: string | number;
4599
- marginRight?: string | number;
4600
- marginBottom?: string | number;
4601
- marginLeft?: string | number;
4602
- padding?: string | number;
4603
- paddingTop?: string | number;
4604
- paddingRight?: string | number;
4605
- paddingBottom?: string | number;
4606
- paddingLeft?: string | number;
4607
- height?: string | number;
4608
- width?: string | number;
4609
- };
4610
- foreach?: string;
4611
- if?: string;
4612
- name?: string;
4613
- key?: string;
4614
- margin?: {
4615
- top?: string | number;
4616
- right?: string | number;
4617
- bottom?: string | number;
4618
- left?: string | number;
4619
- };
4620
- padding?: {
4621
- top?: string | number;
4622
- right?: string | number;
4623
- bottom?: string | number;
4624
- left?: string | number;
4625
- };
4626
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4627
- }[];
4628
- editors?: {
4629
- name?: string;
4630
- icon?: {
4631
- faClass: string;
4632
- iconType: import("@omnia/fx-models").IconTypes;
4633
- role?: string;
4634
- };
4635
- category?: string;
4636
- locations?: import("@omnia/fx-models").EditorLocation[];
4637
- type: string;
4638
- settings?: any;
4639
- state?: string;
4640
- propertyMapping?: boolean;
4641
- multiple?: boolean;
4642
- component?: unknown;
4643
- }[];
4644
- state?: object;
4645
- computed?: {
4646
- [name: string]: string[];
4647
- };
4648
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
4649
- key?: string;
4650
- };
4651
- };
4652
- link?: {
4653
- padding?: {
4654
- top?: import("@omnia/fx-models").SpacingValue;
4655
- right?: import("@omnia/fx-models").SpacingValue;
4656
- bottom?: import("@omnia/fx-models").SpacingValue;
4657
- left?: import("@omnia/fx-models").SpacingValue;
4658
- };
4659
- background?: {
4660
- fill?: string | {
4661
- colors: (string | {
4662
- colorType: "base" | "onBase" | "container" | "onContainer";
4663
- toned?: boolean;
4664
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4665
- opacity?: number;
4666
- } | {
4667
- color: string | {
4668
- colorType: "base" | "onBase" | "container" | "onContainer";
4669
- toned?: boolean;
4670
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4671
- opacity?: number;
4672
- };
4673
- stop?: number;
4674
- })[];
4675
- acrylic?: boolean;
4676
- } | {
4677
- colorType: "base" | "onBase" | "container" | "onContainer";
4678
- toned?: boolean;
4679
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4680
- opacity?: number;
4681
- };
4682
- border?: {
4683
- radius?: {
4684
- top?: import("@omnia/fx-models").SpacingValue;
4685
- right?: import("@omnia/fx-models").SpacingValue;
4686
- bottom?: import("@omnia/fx-models").SpacingValue;
4687
- left?: import("@omnia/fx-models").SpacingValue;
4688
- };
4689
- width?: {
4690
- top?: import("@omnia/fx-models").SpacingValue;
4691
- right?: import("@omnia/fx-models").SpacingValue;
4692
- bottom?: import("@omnia/fx-models").SpacingValue;
4693
- left?: import("@omnia/fx-models").SpacingValue;
4694
- };
4695
- fill?: {
4696
- colors: (string | {
4697
- colorType: "base" | "onBase" | "container" | "onContainer";
4698
- toned?: boolean;
4699
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4700
- opacity?: number;
4701
- } | {
4702
- color: string | any;
4703
- stop?: number;
4704
- })[];
4705
- acrylic?: boolean;
4706
- };
4707
- };
4708
- elevation?: number;
4709
- media?: {
4710
- type: import("@omnia/fx-models").BackgroundMedia;
4711
- src: string;
4712
- };
4713
- };
4714
- alterCase?: boolean;
4715
- text?: {
4716
- color?: string | {
4717
- colors: (string | {
4718
- colorType: "base" | "onBase" | "container" | "onContainer";
4719
- toned?: boolean;
4720
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4721
- opacity?: number;
4722
- } | {
4723
- color: string | {
4724
- colorType: "base" | "onBase" | "container" | "onContainer";
4725
- toned?: boolean;
4726
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4727
- opacity?: number;
4728
- };
4729
- stop?: number;
4730
- })[];
4731
- acrylic?: boolean;
4732
- } | {
4733
- colorType: "base" | "onBase" | "container" | "onContainer";
4734
- toned?: boolean;
4735
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4736
- opacity?: number;
4737
- };
4738
- typography?: {
4739
- decoration?: string;
4740
- lg: {
4741
- weight: number;
4742
- size: number;
4743
- lineHeight: number;
4744
- };
4745
- md?: {
4746
- weight: number;
4747
- size: number;
4748
- lineHeight: number;
4749
- };
4750
- sm?: {
4751
- weight: number;
4752
- size: number;
4753
- lineHeight: number;
4754
- };
4755
- } | {
4756
- type: "text" | "title" | "navigation";
4757
- size: "xs" | "s" | "m" | "l" | "xl";
4758
- };
4759
- };
4760
- icon?: {
4761
- color?: string | {
4762
- colors: (string | {
4763
- colorType: "base" | "onBase" | "container" | "onContainer";
4764
- toned?: boolean;
4765
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4766
- opacity?: number;
4767
- } | {
4768
- color: string | {
4769
- colorType: "base" | "onBase" | "container" | "onContainer";
4770
- toned?: boolean;
4771
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4772
- opacity?: number;
4773
- };
4774
- stop?: number;
4775
- })[];
4776
- acrylic?: boolean;
4777
- } | {
4778
- colorType: "base" | "onBase" | "container" | "onContainer";
4779
- toned?: boolean;
4780
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4781
- opacity?: number;
4782
- };
4783
- size?: number;
4784
- };
4785
- definition?: {
4786
- id: import("@omnia/fx-models").VelcronRendererId;
4787
- version: string;
4788
- } | {
4789
- type: "velcron";
4790
- version?: string;
4791
- name?: string;
4792
- body?: {
4793
- body?: any[];
4794
- style?: {
4795
- margin?: string;
4796
- marginTop?: string | number;
4797
- marginRight?: string | number;
4798
- marginBottom?: string | number;
4799
- marginLeft?: string | number;
4800
- padding?: string | number;
4801
- paddingTop?: string | number;
4802
- paddingRight?: string | number;
4803
- paddingBottom?: string | number;
4804
- paddingLeft?: string | number;
4805
- height?: string | number;
4806
- width?: string | number;
4807
- };
4808
- foreach?: string;
4809
- if?: string;
4810
- events?: import("@omnia/fx-models").VelcronEvent;
4811
- type: string;
4812
- name?: string;
4813
- key?: string;
4814
- margin?: {
4815
- top?: string | number;
4816
- right?: string | number;
4817
- bottom?: string | number;
4818
- left?: string | number;
4819
- };
4820
- padding?: {
4821
- top?: string | number;
4822
- right?: string | number;
4823
- bottom?: string | number;
4824
- left?: string | number;
4825
- };
4826
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4827
- }[];
4828
- events?: {
4829
- onLoaded?: string[];
4830
- onEditMode?: string[];
4831
- onSaving?: string[];
4832
- onPersistState?: string[];
4833
- onRestoreState?: string[];
4834
- onActive?: string[];
4835
- };
4836
- actions?: {
4837
- [name: string]: string[];
4838
- };
4839
- components?: {
4840
- type: string;
4841
- events?: any;
4842
- properties?: {
4843
- [name: string]: any;
4844
- };
4845
- icon?: any;
4846
- body?: {
4847
- body?: any[];
4848
- style?: {
4849
- margin?: string;
4850
- marginTop?: string | number;
4851
- marginRight?: string | number;
4852
- marginBottom?: string | number;
4853
- marginLeft?: string | number;
4854
- padding?: string | number;
4855
- paddingTop?: string | number;
4856
- paddingRight?: string | number;
4857
- paddingBottom?: string | number;
4858
- paddingLeft?: string | number;
4859
- height?: string | number;
4860
- width?: string | number;
4861
- };
4862
- foreach?: string;
4863
- if?: string;
4864
- events?: import("@omnia/fx-models").VelcronEvent;
4865
- type: string;
4866
- name?: string;
4867
- key?: string;
4868
- margin?: {
4869
- top?: string | number;
4870
- right?: string | number;
4871
- bottom?: string | number;
4872
- left?: string | number;
4873
- };
4874
- padding?: {
4875
- top?: string | number;
4876
- right?: string | number;
4877
- bottom?: string | number;
4878
- left?: string | number;
4879
- };
4880
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4881
- }[];
4882
- style?: {
4883
- margin?: string;
4884
- marginTop?: string | number;
4885
- marginRight?: string | number;
4886
- marginBottom?: string | number;
4887
- marginLeft?: string | number;
4888
- padding?: string | number;
4889
- paddingTop?: string | number;
4890
- paddingRight?: string | number;
4891
- paddingBottom?: string | number;
4892
- paddingLeft?: string | number;
4893
- height?: string | number;
4894
- width?: string | number;
4895
- };
4896
- foreach?: string;
4897
- if?: string;
4898
- name?: string;
4899
- key?: string;
4900
- margin?: {
4901
- top?: string | number;
4902
- right?: string | number;
4903
- bottom?: string | number;
4904
- left?: string | number;
4905
- };
4906
- padding?: {
4907
- top?: string | number;
4908
- right?: string | number;
4909
- bottom?: string | number;
4910
- left?: string | number;
4911
- };
4912
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
4913
- }[];
4914
- editors?: {
4915
- name?: string;
4916
- icon?: {
4917
- faClass: string;
4918
- iconType: import("@omnia/fx-models").IconTypes;
4919
- role?: string;
4920
- };
4921
- category?: string;
4922
- locations?: import("@omnia/fx-models").EditorLocation[];
4923
- type: string;
4924
- settings?: any;
4925
- state?: string;
4926
- propertyMapping?: boolean;
4927
- multiple?: boolean;
4928
- component?: unknown;
4929
- }[];
4930
- state?: object;
4931
- computed?: {
4932
- [name: string]: string[];
4933
- };
4934
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
4935
- key?: string;
4936
2588
  };
4937
2589
  };
4938
- variant1?: {
2590
+ warn?: {
4939
2591
  padding?: {
4940
2592
  top?: import("@omnia/fx-models").SpacingValue;
4941
2593
  right?: import("@omnia/fx-models").SpacingValue;
@@ -5012,216 +2664,68 @@ export declare const useTypographyBlueprintStore: () => {
5012
2664
  colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5013
2665
  opacity?: number;
5014
2666
  };
5015
- stop?: number;
5016
- })[];
5017
- acrylic?: boolean;
5018
- } | {
5019
- colorType: "base" | "onBase" | "container" | "onContainer";
5020
- toned?: boolean;
5021
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5022
- opacity?: number;
5023
- };
5024
- typography?: {
5025
- decoration?: string;
5026
- lg: {
5027
- weight: number;
5028
- size: number;
5029
- lineHeight: number;
5030
- };
5031
- md?: {
5032
- weight: number;
5033
- size: number;
5034
- lineHeight: number;
5035
- };
5036
- sm?: {
5037
- weight: number;
5038
- size: number;
5039
- lineHeight: number;
5040
- };
5041
- } | {
5042
- type: "text" | "title" | "navigation";
5043
- size: "xs" | "s" | "m" | "l" | "xl";
5044
- };
5045
- };
5046
- icon?: {
5047
- color?: string | {
5048
- colors: (string | {
5049
- colorType: "base" | "onBase" | "container" | "onContainer";
5050
- toned?: boolean;
5051
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5052
- opacity?: number;
5053
- } | {
5054
- color: string | {
5055
- colorType: "base" | "onBase" | "container" | "onContainer";
5056
- toned?: boolean;
5057
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5058
- opacity?: number;
5059
- };
5060
- stop?: number;
5061
- })[];
5062
- acrylic?: boolean;
5063
- } | {
5064
- colorType: "base" | "onBase" | "container" | "onContainer";
5065
- toned?: boolean;
5066
- colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
5067
- opacity?: number;
5068
- };
5069
- size?: number;
5070
- };
5071
- definition?: {
5072
- id: import("@omnia/fx-models").VelcronRendererId;
5073
- version: string;
5074
- } | {
5075
- type: "velcron";
5076
- version?: string;
5077
- name?: string;
5078
- body?: {
5079
- body?: any[];
5080
- style?: {
5081
- margin?: string;
5082
- marginTop?: string | number;
5083
- marginRight?: string | number;
5084
- marginBottom?: string | number;
5085
- marginLeft?: string | number;
5086
- padding?: string | number;
5087
- paddingTop?: string | number;
5088
- paddingRight?: string | number;
5089
- paddingBottom?: string | number;
5090
- paddingLeft?: string | number;
5091
- height?: string | number;
5092
- width?: string | number;
5093
- };
5094
- foreach?: string;
5095
- if?: string;
5096
- events?: import("@omnia/fx-models").VelcronEvent;
5097
- type: string;
5098
- name?: string;
5099
- key?: string;
5100
- margin?: {
5101
- top?: string | number;
5102
- right?: string | number;
5103
- bottom?: string | number;
5104
- left?: string | number;
5105
- };
5106
- padding?: {
5107
- top?: string | number;
5108
- right?: string | number;
5109
- bottom?: string | number;
5110
- left?: string | number;
5111
- };
5112
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5113
- }[];
5114
- events?: {
5115
- onLoaded?: string[];
5116
- onEditMode?: string[];
5117
- onSaving?: string[];
5118
- onPersistState?: string[];
5119
- onRestoreState?: string[];
5120
- onActive?: string[];
5121
- };
5122
- actions?: {
5123
- [name: string]: string[];
5124
- };
5125
- components?: {
5126
- type: string;
5127
- events?: any;
5128
- properties?: {
5129
- [name: string]: any;
5130
- };
5131
- icon?: any;
5132
- body?: {
5133
- body?: any[];
5134
- style?: {
5135
- margin?: string;
5136
- marginTop?: string | number;
5137
- marginRight?: string | number;
5138
- marginBottom?: string | number;
5139
- marginLeft?: string | number;
5140
- padding?: string | number;
5141
- paddingTop?: string | number;
5142
- paddingRight?: string | number;
5143
- paddingBottom?: string | number;
5144
- paddingLeft?: string | number;
5145
- height?: string | number;
5146
- width?: string | number;
5147
- };
5148
- foreach?: string;
5149
- if?: string;
5150
- events?: import("@omnia/fx-models").VelcronEvent;
5151
- type: string;
5152
- name?: string;
5153
- key?: string;
5154
- margin?: {
5155
- top?: string | number;
5156
- right?: string | number;
5157
- bottom?: string | number;
5158
- left?: string | number;
5159
- };
5160
- padding?: {
5161
- top?: string | number;
5162
- right?: string | number;
5163
- bottom?: string | number;
5164
- left?: string | number;
5165
- };
5166
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5167
- }[];
5168
- style?: {
5169
- margin?: string;
5170
- marginTop?: string | number;
5171
- marginRight?: string | number;
5172
- marginBottom?: string | number;
5173
- marginLeft?: string | number;
5174
- padding?: string | number;
5175
- paddingTop?: string | number;
5176
- paddingRight?: string | number;
5177
- paddingBottom?: string | number;
5178
- paddingLeft?: string | number;
5179
- height?: string | number;
5180
- width?: string | number;
5181
- };
5182
- foreach?: string;
5183
- if?: string;
5184
- name?: string;
5185
- key?: string;
5186
- margin?: {
5187
- top?: string | number;
5188
- right?: string | number;
5189
- bottom?: string | number;
5190
- left?: string | number;
2667
+ stop?: number;
2668
+ })[];
2669
+ acrylic?: boolean;
2670
+ } | {
2671
+ colorType: "base" | "onBase" | "container" | "onContainer";
2672
+ toned?: boolean;
2673
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2674
+ opacity?: number;
2675
+ };
2676
+ typography?: {
2677
+ decoration?: string;
2678
+ lg: {
2679
+ weight: number;
2680
+ size: number;
2681
+ lineHeight: number;
5191
2682
  };
5192
- padding?: {
5193
- top?: string | number;
5194
- right?: string | number;
5195
- bottom?: string | number;
5196
- left?: string | number;
2683
+ md?: {
2684
+ weight: number;
2685
+ size: number;
2686
+ lineHeight: number;
5197
2687
  };
5198
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5199
- }[];
5200
- editors?: {
5201
- name?: string;
5202
- icon?: {
5203
- faClass: string;
5204
- iconType: import("@omnia/fx-models").IconTypes;
5205
- role?: string;
2688
+ sm?: {
2689
+ weight: number;
2690
+ size: number;
2691
+ lineHeight: number;
5206
2692
  };
5207
- category?: string;
5208
- locations?: import("@omnia/fx-models").EditorLocation[];
5209
- type: string;
5210
- settings?: any;
5211
- state?: string;
5212
- propertyMapping?: boolean;
5213
- multiple?: boolean;
5214
- component?: unknown;
5215
- }[];
5216
- state?: object;
5217
- computed?: {
5218
- [name: string]: string[];
2693
+ } | {
2694
+ type: "text" | "title" | "navigation";
2695
+ size: "xs" | "s" | "m" | "l" | "xl";
5219
2696
  };
5220
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
5221
- key?: string;
2697
+ };
2698
+ icon?: {
2699
+ color?: string | {
2700
+ colors: (string | {
2701
+ colorType: "base" | "onBase" | "container" | "onContainer";
2702
+ toned?: boolean;
2703
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2704
+ opacity?: number;
2705
+ } | {
2706
+ color: string | {
2707
+ colorType: "base" | "onBase" | "container" | "onContainer";
2708
+ toned?: boolean;
2709
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2710
+ opacity?: number;
2711
+ };
2712
+ stop?: number;
2713
+ })[];
2714
+ acrylic?: boolean;
2715
+ } | {
2716
+ colorType: "base" | "onBase" | "container" | "onContainer";
2717
+ toned?: boolean;
2718
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2719
+ opacity?: number;
2720
+ };
2721
+ size?: number;
2722
+ };
2723
+ viewTemplate?: {
2724
+ id: import("@omnia/fx-models").VelcronRendererId;
2725
+ version: string;
5222
2726
  };
5223
2727
  };
5224
- variant2?: {
2728
+ link?: {
5225
2729
  padding?: {
5226
2730
  top?: import("@omnia/fx-models").SpacingValue;
5227
2731
  right?: import("@omnia/fx-models").SpacingValue;
@@ -5354,160 +2858,150 @@ export declare const useTypographyBlueprintStore: () => {
5354
2858
  };
5355
2859
  size?: number;
5356
2860
  };
5357
- definition?: {
2861
+ viewTemplate?: {
5358
2862
  id: import("@omnia/fx-models").VelcronRendererId;
5359
2863
  version: string;
5360
- } | {
5361
- type: "velcron";
5362
- version?: string;
5363
- name?: string;
5364
- body?: {
5365
- body?: any[];
5366
- style?: {
5367
- margin?: string;
5368
- marginTop?: string | number;
5369
- marginRight?: string | number;
5370
- marginBottom?: string | number;
5371
- marginLeft?: string | number;
5372
- padding?: string | number;
5373
- paddingTop?: string | number;
5374
- paddingRight?: string | number;
5375
- paddingBottom?: string | number;
5376
- paddingLeft?: string | number;
5377
- height?: string | number;
5378
- width?: string | number;
2864
+ };
2865
+ };
2866
+ variant1?: {
2867
+ padding?: {
2868
+ top?: import("@omnia/fx-models").SpacingValue;
2869
+ right?: import("@omnia/fx-models").SpacingValue;
2870
+ bottom?: import("@omnia/fx-models").SpacingValue;
2871
+ left?: import("@omnia/fx-models").SpacingValue;
2872
+ };
2873
+ background?: {
2874
+ fill?: string | {
2875
+ colors: (string | {
2876
+ colorType: "base" | "onBase" | "container" | "onContainer";
2877
+ toned?: boolean;
2878
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2879
+ opacity?: number;
2880
+ } | {
2881
+ color: string | {
2882
+ colorType: "base" | "onBase" | "container" | "onContainer";
2883
+ toned?: boolean;
2884
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2885
+ opacity?: number;
2886
+ };
2887
+ stop?: number;
2888
+ })[];
2889
+ acrylic?: boolean;
2890
+ } | {
2891
+ colorType: "base" | "onBase" | "container" | "onContainer";
2892
+ toned?: boolean;
2893
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2894
+ opacity?: number;
2895
+ };
2896
+ border?: {
2897
+ radius?: {
2898
+ top?: import("@omnia/fx-models").SpacingValue;
2899
+ right?: import("@omnia/fx-models").SpacingValue;
2900
+ bottom?: import("@omnia/fx-models").SpacingValue;
2901
+ left?: import("@omnia/fx-models").SpacingValue;
5379
2902
  };
5380
- foreach?: string;
5381
- if?: string;
5382
- events?: import("@omnia/fx-models").VelcronEvent;
5383
- type: string;
5384
- name?: string;
5385
- key?: string;
5386
- margin?: {
5387
- top?: string | number;
5388
- right?: string | number;
5389
- bottom?: string | number;
5390
- left?: string | number;
2903
+ width?: {
2904
+ top?: import("@omnia/fx-models").SpacingValue;
2905
+ right?: import("@omnia/fx-models").SpacingValue;
2906
+ bottom?: import("@omnia/fx-models").SpacingValue;
2907
+ left?: import("@omnia/fx-models").SpacingValue;
5391
2908
  };
5392
- padding?: {
5393
- top?: string | number;
5394
- right?: string | number;
5395
- bottom?: string | number;
5396
- left?: string | number;
2909
+ fill?: {
2910
+ colors: (string | {
2911
+ colorType: "base" | "onBase" | "container" | "onContainer";
2912
+ toned?: boolean;
2913
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2914
+ opacity?: number;
2915
+ } | {
2916
+ color: string | any;
2917
+ stop?: number;
2918
+ })[];
2919
+ acrylic?: boolean;
5397
2920
  };
5398
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5399
- }[];
5400
- events?: {
5401
- onLoaded?: string[];
5402
- onEditMode?: string[];
5403
- onSaving?: string[];
5404
- onPersistState?: string[];
5405
- onRestoreState?: string[];
5406
- onActive?: string[];
5407
2921
  };
5408
- actions?: {
5409
- [name: string]: string[];
2922
+ elevation?: number;
2923
+ media?: {
2924
+ type: import("@omnia/fx-models").BackgroundMedia;
2925
+ src: string;
5410
2926
  };
5411
- components?: {
5412
- type: string;
5413
- events?: any;
5414
- properties?: {
5415
- [name: string]: any;
5416
- };
5417
- icon?: any;
5418
- body?: {
5419
- body?: any[];
5420
- style?: {
5421
- margin?: string;
5422
- marginTop?: string | number;
5423
- marginRight?: string | number;
5424
- marginBottom?: string | number;
5425
- marginLeft?: string | number;
5426
- padding?: string | number;
5427
- paddingTop?: string | number;
5428
- paddingRight?: string | number;
5429
- paddingBottom?: string | number;
5430
- paddingLeft?: string | number;
5431
- height?: string | number;
5432
- width?: string | number;
5433
- };
5434
- foreach?: string;
5435
- if?: string;
5436
- events?: import("@omnia/fx-models").VelcronEvent;
5437
- type: string;
5438
- name?: string;
5439
- key?: string;
5440
- margin?: {
5441
- top?: string | number;
5442
- right?: string | number;
5443
- bottom?: string | number;
5444
- left?: string | number;
5445
- };
5446
- padding?: {
5447
- top?: string | number;
5448
- right?: string | number;
5449
- bottom?: string | number;
5450
- left?: string | number;
5451
- };
5452
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5453
- }[];
5454
- style?: {
5455
- margin?: string;
5456
- marginTop?: string | number;
5457
- marginRight?: string | number;
5458
- marginBottom?: string | number;
5459
- marginLeft?: string | number;
5460
- padding?: string | number;
5461
- paddingTop?: string | number;
5462
- paddingRight?: string | number;
5463
- paddingBottom?: string | number;
5464
- paddingLeft?: string | number;
5465
- height?: string | number;
5466
- width?: string | number;
5467
- };
5468
- foreach?: string;
5469
- if?: string;
5470
- name?: string;
5471
- key?: string;
5472
- margin?: {
5473
- top?: string | number;
5474
- right?: string | number;
5475
- bottom?: string | number;
5476
- left?: string | number;
2927
+ };
2928
+ alterCase?: boolean;
2929
+ text?: {
2930
+ color?: string | {
2931
+ colors: (string | {
2932
+ colorType: "base" | "onBase" | "container" | "onContainer";
2933
+ toned?: boolean;
2934
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2935
+ opacity?: number;
2936
+ } | {
2937
+ color: string | {
2938
+ colorType: "base" | "onBase" | "container" | "onContainer";
2939
+ toned?: boolean;
2940
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2941
+ opacity?: number;
2942
+ };
2943
+ stop?: number;
2944
+ })[];
2945
+ acrylic?: boolean;
2946
+ } | {
2947
+ colorType: "base" | "onBase" | "container" | "onContainer";
2948
+ toned?: boolean;
2949
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2950
+ opacity?: number;
2951
+ };
2952
+ typography?: {
2953
+ decoration?: string;
2954
+ lg: {
2955
+ weight: number;
2956
+ size: number;
2957
+ lineHeight: number;
5477
2958
  };
5478
- padding?: {
5479
- top?: string | number;
5480
- right?: string | number;
5481
- bottom?: string | number;
5482
- left?: string | number;
2959
+ md?: {
2960
+ weight: number;
2961
+ size: number;
2962
+ lineHeight: number;
5483
2963
  };
5484
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5485
- }[];
5486
- editors?: {
5487
- name?: string;
5488
- icon?: {
5489
- faClass: string;
5490
- iconType: import("@omnia/fx-models").IconTypes;
5491
- role?: string;
2964
+ sm?: {
2965
+ weight: number;
2966
+ size: number;
2967
+ lineHeight: number;
5492
2968
  };
5493
- category?: string;
5494
- locations?: import("@omnia/fx-models").EditorLocation[];
5495
- type: string;
5496
- settings?: any;
5497
- state?: string;
5498
- propertyMapping?: boolean;
5499
- multiple?: boolean;
5500
- component?: unknown;
5501
- }[];
5502
- state?: object;
5503
- computed?: {
5504
- [name: string]: string[];
2969
+ } | {
2970
+ type: "text" | "title" | "navigation";
2971
+ size: "xs" | "s" | "m" | "l" | "xl";
5505
2972
  };
5506
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
5507
- key?: string;
2973
+ };
2974
+ icon?: {
2975
+ color?: string | {
2976
+ colors: (string | {
2977
+ colorType: "base" | "onBase" | "container" | "onContainer";
2978
+ toned?: boolean;
2979
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2980
+ opacity?: number;
2981
+ } | {
2982
+ color: string | {
2983
+ colorType: "base" | "onBase" | "container" | "onContainer";
2984
+ toned?: boolean;
2985
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2986
+ opacity?: number;
2987
+ };
2988
+ stop?: number;
2989
+ })[];
2990
+ acrylic?: boolean;
2991
+ } | {
2992
+ colorType: "base" | "onBase" | "container" | "onContainer";
2993
+ toned?: boolean;
2994
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
2995
+ opacity?: number;
2996
+ };
2997
+ size?: number;
2998
+ };
2999
+ viewTemplate?: {
3000
+ id: import("@omnia/fx-models").VelcronRendererId;
3001
+ version: string;
5508
3002
  };
5509
3003
  };
5510
- variant3?: {
3004
+ variant2?: {
5511
3005
  padding?: {
5512
3006
  top?: import("@omnia/fx-models").SpacingValue;
5513
3007
  right?: import("@omnia/fx-models").SpacingValue;
@@ -5640,157 +3134,147 @@ export declare const useTypographyBlueprintStore: () => {
5640
3134
  };
5641
3135
  size?: number;
5642
3136
  };
5643
- definition?: {
3137
+ viewTemplate?: {
5644
3138
  id: import("@omnia/fx-models").VelcronRendererId;
5645
3139
  version: string;
5646
- } | {
5647
- type: "velcron";
5648
- version?: string;
5649
- name?: string;
5650
- body?: {
5651
- body?: any[];
5652
- style?: {
5653
- margin?: string;
5654
- marginTop?: string | number;
5655
- marginRight?: string | number;
5656
- marginBottom?: string | number;
5657
- marginLeft?: string | number;
5658
- padding?: string | number;
5659
- paddingTop?: string | number;
5660
- paddingRight?: string | number;
5661
- paddingBottom?: string | number;
5662
- paddingLeft?: string | number;
5663
- height?: string | number;
5664
- width?: string | number;
3140
+ };
3141
+ };
3142
+ variant3?: {
3143
+ padding?: {
3144
+ top?: import("@omnia/fx-models").SpacingValue;
3145
+ right?: import("@omnia/fx-models").SpacingValue;
3146
+ bottom?: import("@omnia/fx-models").SpacingValue;
3147
+ left?: import("@omnia/fx-models").SpacingValue;
3148
+ };
3149
+ background?: {
3150
+ fill?: string | {
3151
+ colors: (string | {
3152
+ colorType: "base" | "onBase" | "container" | "onContainer";
3153
+ toned?: boolean;
3154
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3155
+ opacity?: number;
3156
+ } | {
3157
+ color: string | {
3158
+ colorType: "base" | "onBase" | "container" | "onContainer";
3159
+ toned?: boolean;
3160
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3161
+ opacity?: number;
3162
+ };
3163
+ stop?: number;
3164
+ })[];
3165
+ acrylic?: boolean;
3166
+ } | {
3167
+ colorType: "base" | "onBase" | "container" | "onContainer";
3168
+ toned?: boolean;
3169
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3170
+ opacity?: number;
3171
+ };
3172
+ border?: {
3173
+ radius?: {
3174
+ top?: import("@omnia/fx-models").SpacingValue;
3175
+ right?: import("@omnia/fx-models").SpacingValue;
3176
+ bottom?: import("@omnia/fx-models").SpacingValue;
3177
+ left?: import("@omnia/fx-models").SpacingValue;
5665
3178
  };
5666
- foreach?: string;
5667
- if?: string;
5668
- events?: import("@omnia/fx-models").VelcronEvent;
5669
- type: string;
5670
- name?: string;
5671
- key?: string;
5672
- margin?: {
5673
- top?: string | number;
5674
- right?: string | number;
5675
- bottom?: string | number;
5676
- left?: string | number;
3179
+ width?: {
3180
+ top?: import("@omnia/fx-models").SpacingValue;
3181
+ right?: import("@omnia/fx-models").SpacingValue;
3182
+ bottom?: import("@omnia/fx-models").SpacingValue;
3183
+ left?: import("@omnia/fx-models").SpacingValue;
5677
3184
  };
5678
- padding?: {
5679
- top?: string | number;
5680
- right?: string | number;
5681
- bottom?: string | number;
5682
- left?: string | number;
3185
+ fill?: {
3186
+ colors: (string | {
3187
+ colorType: "base" | "onBase" | "container" | "onContainer";
3188
+ toned?: boolean;
3189
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3190
+ opacity?: number;
3191
+ } | {
3192
+ color: string | any;
3193
+ stop?: number;
3194
+ })[];
3195
+ acrylic?: boolean;
5683
3196
  };
5684
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5685
- }[];
5686
- events?: {
5687
- onLoaded?: string[];
5688
- onEditMode?: string[];
5689
- onSaving?: string[];
5690
- onPersistState?: string[];
5691
- onRestoreState?: string[];
5692
- onActive?: string[];
5693
3197
  };
5694
- actions?: {
5695
- [name: string]: string[];
3198
+ elevation?: number;
3199
+ media?: {
3200
+ type: import("@omnia/fx-models").BackgroundMedia;
3201
+ src: string;
5696
3202
  };
5697
- components?: {
5698
- type: string;
5699
- events?: any;
5700
- properties?: {
5701
- [name: string]: any;
5702
- };
5703
- icon?: any;
5704
- body?: {
5705
- body?: any[];
5706
- style?: {
5707
- margin?: string;
5708
- marginTop?: string | number;
5709
- marginRight?: string | number;
5710
- marginBottom?: string | number;
5711
- marginLeft?: string | number;
5712
- padding?: string | number;
5713
- paddingTop?: string | number;
5714
- paddingRight?: string | number;
5715
- paddingBottom?: string | number;
5716
- paddingLeft?: string | number;
5717
- height?: string | number;
5718
- width?: string | number;
5719
- };
5720
- foreach?: string;
5721
- if?: string;
5722
- events?: import("@omnia/fx-models").VelcronEvent;
5723
- type: string;
5724
- name?: string;
5725
- key?: string;
5726
- margin?: {
5727
- top?: string | number;
5728
- right?: string | number;
5729
- bottom?: string | number;
5730
- left?: string | number;
5731
- };
5732
- padding?: {
5733
- top?: string | number;
5734
- right?: string | number;
5735
- bottom?: string | number;
5736
- left?: string | number;
3203
+ };
3204
+ alterCase?: boolean;
3205
+ text?: {
3206
+ color?: string | {
3207
+ colors: (string | {
3208
+ colorType: "base" | "onBase" | "container" | "onContainer";
3209
+ toned?: boolean;
3210
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3211
+ opacity?: number;
3212
+ } | {
3213
+ color: string | {
3214
+ colorType: "base" | "onBase" | "container" | "onContainer";
3215
+ toned?: boolean;
3216
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3217
+ opacity?: number;
5737
3218
  };
5738
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5739
- }[];
5740
- style?: {
5741
- margin?: string;
5742
- marginTop?: string | number;
5743
- marginRight?: string | number;
5744
- marginBottom?: string | number;
5745
- marginLeft?: string | number;
5746
- padding?: string | number;
5747
- paddingTop?: string | number;
5748
- paddingRight?: string | number;
5749
- paddingBottom?: string | number;
5750
- paddingLeft?: string | number;
5751
- height?: string | number;
5752
- width?: string | number;
5753
- };
5754
- foreach?: string;
5755
- if?: string;
5756
- name?: string;
5757
- key?: string;
5758
- margin?: {
5759
- top?: string | number;
5760
- right?: string | number;
5761
- bottom?: string | number;
5762
- left?: string | number;
3219
+ stop?: number;
3220
+ })[];
3221
+ acrylic?: boolean;
3222
+ } | {
3223
+ colorType: "base" | "onBase" | "container" | "onContainer";
3224
+ toned?: boolean;
3225
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3226
+ opacity?: number;
3227
+ };
3228
+ typography?: {
3229
+ decoration?: string;
3230
+ lg: {
3231
+ weight: number;
3232
+ size: number;
3233
+ lineHeight: number;
5763
3234
  };
5764
- padding?: {
5765
- top?: string | number;
5766
- right?: string | number;
5767
- bottom?: string | number;
5768
- left?: string | number;
3235
+ md?: {
3236
+ weight: number;
3237
+ size: number;
3238
+ lineHeight: number;
5769
3239
  };
5770
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5771
- }[];
5772
- editors?: {
5773
- name?: string;
5774
- icon?: {
5775
- faClass: string;
5776
- iconType: import("@omnia/fx-models").IconTypes;
5777
- role?: string;
3240
+ sm?: {
3241
+ weight: number;
3242
+ size: number;
3243
+ lineHeight: number;
5778
3244
  };
5779
- category?: string;
5780
- locations?: import("@omnia/fx-models").EditorLocation[];
5781
- type: string;
5782
- settings?: any;
5783
- state?: string;
5784
- propertyMapping?: boolean;
5785
- multiple?: boolean;
5786
- component?: unknown;
5787
- }[];
5788
- state?: object;
5789
- computed?: {
5790
- [name: string]: string[];
3245
+ } | {
3246
+ type: "text" | "title" | "navigation";
3247
+ size: "xs" | "s" | "m" | "l" | "xl";
5791
3248
  };
5792
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
5793
- key?: string;
3249
+ };
3250
+ icon?: {
3251
+ color?: string | {
3252
+ colors: (string | {
3253
+ colorType: "base" | "onBase" | "container" | "onContainer";
3254
+ toned?: boolean;
3255
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3256
+ opacity?: number;
3257
+ } | {
3258
+ color: string | {
3259
+ colorType: "base" | "onBase" | "container" | "onContainer";
3260
+ toned?: boolean;
3261
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3262
+ opacity?: number;
3263
+ };
3264
+ stop?: number;
3265
+ })[];
3266
+ acrylic?: boolean;
3267
+ } | {
3268
+ colorType: "base" | "onBase" | "container" | "onContainer";
3269
+ toned?: boolean;
3270
+ colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
3271
+ opacity?: number;
3272
+ };
3273
+ size?: number;
3274
+ };
3275
+ viewTemplate?: {
3276
+ id: import("@omnia/fx-models").VelcronRendererId;
3277
+ version: string;
5794
3278
  };
5795
3279
  };
5796
3280
  variant4?: {
@@ -5926,157 +3410,9 @@ export declare const useTypographyBlueprintStore: () => {
5926
3410
  };
5927
3411
  size?: number;
5928
3412
  };
5929
- definition?: {
3413
+ viewTemplate?: {
5930
3414
  id: import("@omnia/fx-models").VelcronRendererId;
5931
3415
  version: string;
5932
- } | {
5933
- type: "velcron";
5934
- version?: string;
5935
- name?: string;
5936
- body?: {
5937
- body?: any[];
5938
- style?: {
5939
- margin?: string;
5940
- marginTop?: string | number;
5941
- marginRight?: string | number;
5942
- marginBottom?: string | number;
5943
- marginLeft?: string | number;
5944
- padding?: string | number;
5945
- paddingTop?: string | number;
5946
- paddingRight?: string | number;
5947
- paddingBottom?: string | number;
5948
- paddingLeft?: string | number;
5949
- height?: string | number;
5950
- width?: string | number;
5951
- };
5952
- foreach?: string;
5953
- if?: string;
5954
- events?: import("@omnia/fx-models").VelcronEvent;
5955
- type: string;
5956
- name?: string;
5957
- key?: string;
5958
- margin?: {
5959
- top?: string | number;
5960
- right?: string | number;
5961
- bottom?: string | number;
5962
- left?: string | number;
5963
- };
5964
- padding?: {
5965
- top?: string | number;
5966
- right?: string | number;
5967
- bottom?: string | number;
5968
- left?: string | number;
5969
- };
5970
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
5971
- }[];
5972
- events?: {
5973
- onLoaded?: string[];
5974
- onEditMode?: string[];
5975
- onSaving?: string[];
5976
- onPersistState?: string[];
5977
- onRestoreState?: string[];
5978
- onActive?: string[];
5979
- };
5980
- actions?: {
5981
- [name: string]: string[];
5982
- };
5983
- components?: {
5984
- type: string;
5985
- events?: any;
5986
- properties?: {
5987
- [name: string]: any;
5988
- };
5989
- icon?: any;
5990
- body?: {
5991
- body?: any[];
5992
- style?: {
5993
- margin?: string;
5994
- marginTop?: string | number;
5995
- marginRight?: string | number;
5996
- marginBottom?: string | number;
5997
- marginLeft?: string | number;
5998
- padding?: string | number;
5999
- paddingTop?: string | number;
6000
- paddingRight?: string | number;
6001
- paddingBottom?: string | number;
6002
- paddingLeft?: string | number;
6003
- height?: string | number;
6004
- width?: string | number;
6005
- };
6006
- foreach?: string;
6007
- if?: string;
6008
- events?: import("@omnia/fx-models").VelcronEvent;
6009
- type: string;
6010
- name?: string;
6011
- key?: string;
6012
- margin?: {
6013
- top?: string | number;
6014
- right?: string | number;
6015
- bottom?: string | number;
6016
- left?: string | number;
6017
- };
6018
- padding?: {
6019
- top?: string | number;
6020
- right?: string | number;
6021
- bottom?: string | number;
6022
- left?: string | number;
6023
- };
6024
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
6025
- }[];
6026
- style?: {
6027
- margin?: string;
6028
- marginTop?: string | number;
6029
- marginRight?: string | number;
6030
- marginBottom?: string | number;
6031
- marginLeft?: string | number;
6032
- padding?: string | number;
6033
- paddingTop?: string | number;
6034
- paddingRight?: string | number;
6035
- paddingBottom?: string | number;
6036
- paddingLeft?: string | number;
6037
- height?: string | number;
6038
- width?: string | number;
6039
- };
6040
- foreach?: string;
6041
- if?: string;
6042
- name?: string;
6043
- key?: string;
6044
- margin?: {
6045
- top?: string | number;
6046
- right?: string | number;
6047
- bottom?: string | number;
6048
- left?: string | number;
6049
- };
6050
- padding?: {
6051
- top?: string | number;
6052
- right?: string | number;
6053
- bottom?: string | number;
6054
- left?: string | number;
6055
- };
6056
- spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
6057
- }[];
6058
- editors?: {
6059
- name?: string;
6060
- icon?: {
6061
- faClass: string;
6062
- iconType: import("@omnia/fx-models").IconTypes;
6063
- role?: string;
6064
- };
6065
- category?: string;
6066
- locations?: import("@omnia/fx-models").EditorLocation[];
6067
- type: string;
6068
- settings?: any;
6069
- state?: string;
6070
- propertyMapping?: boolean;
6071
- multiple?: boolean;
6072
- component?: unknown;
6073
- }[];
6074
- state?: object;
6075
- computed?: {
6076
- [name: string]: string[];
6077
- };
6078
- overflow?: import("@omnia/fx-models").VelcronOverflowValues;
6079
- key?: string;
6080
3416
  };
6081
3417
  };
6082
3418
  };