@syntrologie/runtime-sdk 2.4.0-canary.22 → 2.4.0-canary.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actions/schema.d.ts +3603 -36279
- package/dist/actions/schema.js +2 -2
- package/dist/{chunk-2UYZ5DWI.js → chunk-5SKKLUOS.js} +42 -4
- package/dist/chunk-5SKKLUOS.js.map +7 -0
- package/dist/{chunk-WCQCVPJ7.js → chunk-FFIHKDHW.js} +208 -31
- package/dist/chunk-FFIHKDHW.js.map +7 -0
- package/dist/{chunk-HF3D7YFQ.js → chunk-MCX3AKSH.js} +21 -23
- package/dist/chunk-MCX3AKSH.js.map +7 -0
- package/dist/components/ShadowCanvasOverlay.d.ts +2 -1
- package/dist/config/schema.d.ts +890 -96
- package/dist/config/schema.js +3 -1
- package/dist/index.js +65 -64
- package/dist/index.js.map +2 -2
- package/dist/react.js +3 -3
- package/dist/smart-canvas.esm.js +62 -47
- package/dist/smart-canvas.esm.js.map +3 -3
- package/dist/smart-canvas.js +325 -112
- package/dist/smart-canvas.js.map +3 -3
- package/dist/smart-canvas.min.js +61 -46
- package/dist/smart-canvas.min.js.map +3 -3
- package/dist/theme/types.d.ts +2 -1
- package/dist/version.d.ts +1 -1
- package/package.json +9 -8
- package/schema/canvas-config.schema.json +1333 -388
- package/dist/chunk-2UYZ5DWI.js.map +0 -7
- package/dist/chunk-HF3D7YFQ.js.map +0 -7
- package/dist/chunk-WCQCVPJ7.js.map +0 -7
package/dist/config/schema.d.ts
CHANGED
|
@@ -63,6 +63,8 @@ declare const TileNotificationRuleZ: z.ZodObject<{
|
|
|
63
63
|
export declare const TileZ: z.ZodObject<{
|
|
64
64
|
id: z.ZodString;
|
|
65
65
|
title: z.ZodOptional<z.ZodString>;
|
|
66
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
67
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
66
68
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
67
69
|
widget: z.ZodString;
|
|
68
70
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -781,6 +783,8 @@ export declare const TileZ: z.ZodObject<{
|
|
|
781
783
|
props?: Record<string, unknown> | undefined;
|
|
782
784
|
priority?: number | undefined;
|
|
783
785
|
title?: string | undefined;
|
|
786
|
+
icon?: string | undefined;
|
|
787
|
+
subtitle?: string | undefined;
|
|
784
788
|
activation?: {
|
|
785
789
|
routes: {
|
|
786
790
|
include?: string[] | undefined;
|
|
@@ -886,6 +890,8 @@ export declare const TileZ: z.ZodObject<{
|
|
|
886
890
|
props?: Record<string, unknown> | undefined;
|
|
887
891
|
priority?: number | undefined;
|
|
888
892
|
title?: string | undefined;
|
|
893
|
+
icon?: string | undefined;
|
|
894
|
+
subtitle?: string | undefined;
|
|
889
895
|
activation?: {
|
|
890
896
|
routes: {
|
|
891
897
|
include?: string[] | undefined;
|
|
@@ -988,18 +994,21 @@ export declare const TileZ: z.ZodObject<{
|
|
|
988
994
|
}>;
|
|
989
995
|
export declare const CanvasElementConfigZ: z.ZodObject<{
|
|
990
996
|
position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
997
|
+
layout: z.ZodOptional<z.ZodEnum<["overlay", "push"]>>;
|
|
991
998
|
background: z.ZodOptional<z.ZodString>;
|
|
992
999
|
blur: z.ZodOptional<z.ZodString>;
|
|
993
1000
|
border: z.ZodOptional<z.ZodString>;
|
|
994
1001
|
width: z.ZodOptional<z.ZodString>;
|
|
995
1002
|
}, "strip", z.ZodTypeAny, {
|
|
996
1003
|
position?: "right" | "left" | undefined;
|
|
1004
|
+
layout?: "push" | "overlay" | undefined;
|
|
997
1005
|
background?: string | undefined;
|
|
998
1006
|
blur?: string | undefined;
|
|
999
1007
|
border?: string | undefined;
|
|
1000
1008
|
width?: string | undefined;
|
|
1001
1009
|
}, {
|
|
1002
1010
|
position?: "right" | "left" | undefined;
|
|
1011
|
+
layout?: "push" | "overlay" | undefined;
|
|
1003
1012
|
background?: string | undefined;
|
|
1004
1013
|
blur?: string | undefined;
|
|
1005
1014
|
border?: string | undefined;
|
|
@@ -1011,18 +1020,21 @@ export declare const LauncherElementConfigZ: z.ZodObject<{
|
|
|
1011
1020
|
color: z.ZodOptional<z.ZodString>;
|
|
1012
1021
|
size: z.ZodOptional<z.ZodString>;
|
|
1013
1022
|
shadow: z.ZodOptional<z.ZodString>;
|
|
1023
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
1014
1024
|
}, "strip", z.ZodTypeAny, {
|
|
1015
1025
|
size?: string | undefined;
|
|
1016
1026
|
background?: string | undefined;
|
|
1017
1027
|
backgroundHover?: string | undefined;
|
|
1018
1028
|
color?: string | undefined;
|
|
1019
1029
|
shadow?: string | undefined;
|
|
1030
|
+
borderRadius?: string | undefined;
|
|
1020
1031
|
}, {
|
|
1021
1032
|
size?: string | undefined;
|
|
1022
1033
|
background?: string | undefined;
|
|
1023
1034
|
backgroundHover?: string | undefined;
|
|
1024
1035
|
color?: string | undefined;
|
|
1025
1036
|
shadow?: string | undefined;
|
|
1037
|
+
borderRadius?: string | undefined;
|
|
1026
1038
|
}>;
|
|
1027
1039
|
export declare const TileElementConfigZ: z.ZodObject<{
|
|
1028
1040
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -1034,6 +1046,9 @@ export declare const TileElementConfigZ: z.ZodObject<{
|
|
|
1034
1046
|
textColor: z.ZodOptional<z.ZodString>;
|
|
1035
1047
|
iconBackground: z.ZodOptional<z.ZodString>;
|
|
1036
1048
|
iconShadow: z.ZodOptional<z.ZodString>;
|
|
1049
|
+
headerPadding: z.ZodOptional<z.ZodString>;
|
|
1050
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
1051
|
+
gap: z.ZodOptional<z.ZodString>;
|
|
1037
1052
|
}, "strip", z.ZodTypeAny, {
|
|
1038
1053
|
background?: string | undefined;
|
|
1039
1054
|
border?: string | undefined;
|
|
@@ -1044,6 +1059,9 @@ export declare const TileElementConfigZ: z.ZodObject<{
|
|
|
1044
1059
|
textColor?: string | undefined;
|
|
1045
1060
|
iconBackground?: string | undefined;
|
|
1046
1061
|
iconShadow?: string | undefined;
|
|
1062
|
+
headerPadding?: string | undefined;
|
|
1063
|
+
bodyPadding?: string | undefined;
|
|
1064
|
+
gap?: string | undefined;
|
|
1047
1065
|
}, {
|
|
1048
1066
|
background?: string | undefined;
|
|
1049
1067
|
border?: string | undefined;
|
|
@@ -1054,10 +1072,16 @@ export declare const TileElementConfigZ: z.ZodObject<{
|
|
|
1054
1072
|
textColor?: string | undefined;
|
|
1055
1073
|
iconBackground?: string | undefined;
|
|
1056
1074
|
iconShadow?: string | undefined;
|
|
1075
|
+
headerPadding?: string | undefined;
|
|
1076
|
+
bodyPadding?: string | undefined;
|
|
1077
|
+
gap?: string | undefined;
|
|
1057
1078
|
}>;
|
|
1058
1079
|
export declare const OverlayElementConfigZ: z.ZodObject<{
|
|
1059
1080
|
background: z.ZodOptional<z.ZodString>;
|
|
1060
1081
|
textColor: z.ZodOptional<z.ZodString>;
|
|
1082
|
+
titleColor: z.ZodOptional<z.ZodString>;
|
|
1083
|
+
arrowColor: z.ZodOptional<z.ZodString>;
|
|
1084
|
+
arrowSize: z.ZodOptional<z.ZodString>;
|
|
1061
1085
|
border: z.ZodOptional<z.ZodString>;
|
|
1062
1086
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
1063
1087
|
scrimOpacity: z.ZodOptional<z.ZodString>;
|
|
@@ -1066,14 +1090,20 @@ export declare const OverlayElementConfigZ: z.ZodObject<{
|
|
|
1066
1090
|
background?: string | undefined;
|
|
1067
1091
|
border?: string | undefined;
|
|
1068
1092
|
borderRadius?: string | undefined;
|
|
1093
|
+
titleColor?: string | undefined;
|
|
1069
1094
|
textColor?: string | undefined;
|
|
1095
|
+
arrowColor?: string | undefined;
|
|
1096
|
+
arrowSize?: string | undefined;
|
|
1070
1097
|
scrimOpacity?: string | undefined;
|
|
1071
1098
|
highlightRing?: string | undefined;
|
|
1072
1099
|
}, {
|
|
1073
1100
|
background?: string | undefined;
|
|
1074
1101
|
border?: string | undefined;
|
|
1075
1102
|
borderRadius?: string | undefined;
|
|
1103
|
+
titleColor?: string | undefined;
|
|
1076
1104
|
textColor?: string | undefined;
|
|
1105
|
+
arrowColor?: string | undefined;
|
|
1106
|
+
arrowSize?: string | undefined;
|
|
1077
1107
|
scrimOpacity?: string | undefined;
|
|
1078
1108
|
highlightRing?: string | undefined;
|
|
1079
1109
|
}>;
|
|
@@ -1111,6 +1141,64 @@ export declare const NotificationElementConfigZ: z.ZodObject<{
|
|
|
1111
1141
|
errorColor?: string | undefined;
|
|
1112
1142
|
progressGradient?: string | undefined;
|
|
1113
1143
|
}>;
|
|
1144
|
+
export declare const ContentElementConfigZ: z.ZodObject<{
|
|
1145
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
backgroundHover: z.ZodOptional<z.ZodString>;
|
|
1147
|
+
border: z.ZodOptional<z.ZodString>;
|
|
1148
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
textColor: z.ZodOptional<z.ZodString>;
|
|
1150
|
+
textSecondaryColor: z.ZodOptional<z.ZodString>;
|
|
1151
|
+
itemDivider: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
itemGap: z.ZodOptional<z.ZodString>;
|
|
1153
|
+
itemPadding: z.ZodOptional<z.ZodString>;
|
|
1154
|
+
itemFontSize: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
1156
|
+
bodyFontSize: z.ZodOptional<z.ZodString>;
|
|
1157
|
+
categoryPadding: z.ZodOptional<z.ZodString>;
|
|
1158
|
+
categoryGap: z.ZodOptional<z.ZodString>;
|
|
1159
|
+
categoryFontSize: z.ZodOptional<z.ZodString>;
|
|
1160
|
+
searchBackground: z.ZodOptional<z.ZodString>;
|
|
1161
|
+
searchColor: z.ZodOptional<z.ZodString>;
|
|
1162
|
+
chevronColor: z.ZodOptional<z.ZodString>;
|
|
1163
|
+
}, "strip", z.ZodTypeAny, {
|
|
1164
|
+
background?: string | undefined;
|
|
1165
|
+
border?: string | undefined;
|
|
1166
|
+
backgroundHover?: string | undefined;
|
|
1167
|
+
borderRadius?: string | undefined;
|
|
1168
|
+
textColor?: string | undefined;
|
|
1169
|
+
bodyPadding?: string | undefined;
|
|
1170
|
+
textSecondaryColor?: string | undefined;
|
|
1171
|
+
itemDivider?: string | undefined;
|
|
1172
|
+
itemGap?: string | undefined;
|
|
1173
|
+
itemPadding?: string | undefined;
|
|
1174
|
+
itemFontSize?: string | undefined;
|
|
1175
|
+
bodyFontSize?: string | undefined;
|
|
1176
|
+
categoryPadding?: string | undefined;
|
|
1177
|
+
categoryGap?: string | undefined;
|
|
1178
|
+
categoryFontSize?: string | undefined;
|
|
1179
|
+
searchBackground?: string | undefined;
|
|
1180
|
+
searchColor?: string | undefined;
|
|
1181
|
+
chevronColor?: string | undefined;
|
|
1182
|
+
}, {
|
|
1183
|
+
background?: string | undefined;
|
|
1184
|
+
border?: string | undefined;
|
|
1185
|
+
backgroundHover?: string | undefined;
|
|
1186
|
+
borderRadius?: string | undefined;
|
|
1187
|
+
textColor?: string | undefined;
|
|
1188
|
+
bodyPadding?: string | undefined;
|
|
1189
|
+
textSecondaryColor?: string | undefined;
|
|
1190
|
+
itemDivider?: string | undefined;
|
|
1191
|
+
itemGap?: string | undefined;
|
|
1192
|
+
itemPadding?: string | undefined;
|
|
1193
|
+
itemFontSize?: string | undefined;
|
|
1194
|
+
bodyFontSize?: string | undefined;
|
|
1195
|
+
categoryPadding?: string | undefined;
|
|
1196
|
+
categoryGap?: string | undefined;
|
|
1197
|
+
categoryFontSize?: string | undefined;
|
|
1198
|
+
searchBackground?: string | undefined;
|
|
1199
|
+
searchColor?: string | undefined;
|
|
1200
|
+
chevronColor?: string | undefined;
|
|
1201
|
+
}>;
|
|
1114
1202
|
export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
1115
1203
|
mode: z.ZodOptional<z.ZodEnum<["dark", "light"]>>;
|
|
1116
1204
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
@@ -1119,18 +1207,21 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1119
1207
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
1120
1208
|
canvas: z.ZodOptional<z.ZodObject<{
|
|
1121
1209
|
position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
1210
|
+
layout: z.ZodOptional<z.ZodEnum<["overlay", "push"]>>;
|
|
1122
1211
|
background: z.ZodOptional<z.ZodString>;
|
|
1123
1212
|
blur: z.ZodOptional<z.ZodString>;
|
|
1124
1213
|
border: z.ZodOptional<z.ZodString>;
|
|
1125
1214
|
width: z.ZodOptional<z.ZodString>;
|
|
1126
1215
|
}, "strip", z.ZodTypeAny, {
|
|
1127
1216
|
position?: "right" | "left" | undefined;
|
|
1217
|
+
layout?: "push" | "overlay" | undefined;
|
|
1128
1218
|
background?: string | undefined;
|
|
1129
1219
|
blur?: string | undefined;
|
|
1130
1220
|
border?: string | undefined;
|
|
1131
1221
|
width?: string | undefined;
|
|
1132
1222
|
}, {
|
|
1133
1223
|
position?: "right" | "left" | undefined;
|
|
1224
|
+
layout?: "push" | "overlay" | undefined;
|
|
1134
1225
|
background?: string | undefined;
|
|
1135
1226
|
blur?: string | undefined;
|
|
1136
1227
|
border?: string | undefined;
|
|
@@ -1142,18 +1233,21 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1142
1233
|
color: z.ZodOptional<z.ZodString>;
|
|
1143
1234
|
size: z.ZodOptional<z.ZodString>;
|
|
1144
1235
|
shadow: z.ZodOptional<z.ZodString>;
|
|
1236
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
1145
1237
|
}, "strip", z.ZodTypeAny, {
|
|
1146
1238
|
size?: string | undefined;
|
|
1147
1239
|
background?: string | undefined;
|
|
1148
1240
|
backgroundHover?: string | undefined;
|
|
1149
1241
|
color?: string | undefined;
|
|
1150
1242
|
shadow?: string | undefined;
|
|
1243
|
+
borderRadius?: string | undefined;
|
|
1151
1244
|
}, {
|
|
1152
1245
|
size?: string | undefined;
|
|
1153
1246
|
background?: string | undefined;
|
|
1154
1247
|
backgroundHover?: string | undefined;
|
|
1155
1248
|
color?: string | undefined;
|
|
1156
1249
|
shadow?: string | undefined;
|
|
1250
|
+
borderRadius?: string | undefined;
|
|
1157
1251
|
}>>;
|
|
1158
1252
|
tile: z.ZodOptional<z.ZodObject<{
|
|
1159
1253
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -1165,6 +1259,9 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1165
1259
|
textColor: z.ZodOptional<z.ZodString>;
|
|
1166
1260
|
iconBackground: z.ZodOptional<z.ZodString>;
|
|
1167
1261
|
iconShadow: z.ZodOptional<z.ZodString>;
|
|
1262
|
+
headerPadding: z.ZodOptional<z.ZodString>;
|
|
1263
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
1264
|
+
gap: z.ZodOptional<z.ZodString>;
|
|
1168
1265
|
}, "strip", z.ZodTypeAny, {
|
|
1169
1266
|
background?: string | undefined;
|
|
1170
1267
|
border?: string | undefined;
|
|
@@ -1175,6 +1272,9 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1175
1272
|
textColor?: string | undefined;
|
|
1176
1273
|
iconBackground?: string | undefined;
|
|
1177
1274
|
iconShadow?: string | undefined;
|
|
1275
|
+
headerPadding?: string | undefined;
|
|
1276
|
+
bodyPadding?: string | undefined;
|
|
1277
|
+
gap?: string | undefined;
|
|
1178
1278
|
}, {
|
|
1179
1279
|
background?: string | undefined;
|
|
1180
1280
|
border?: string | undefined;
|
|
@@ -1185,10 +1285,16 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1185
1285
|
textColor?: string | undefined;
|
|
1186
1286
|
iconBackground?: string | undefined;
|
|
1187
1287
|
iconShadow?: string | undefined;
|
|
1288
|
+
headerPadding?: string | undefined;
|
|
1289
|
+
bodyPadding?: string | undefined;
|
|
1290
|
+
gap?: string | undefined;
|
|
1188
1291
|
}>>;
|
|
1189
1292
|
overlay: z.ZodOptional<z.ZodObject<{
|
|
1190
1293
|
background: z.ZodOptional<z.ZodString>;
|
|
1191
1294
|
textColor: z.ZodOptional<z.ZodString>;
|
|
1295
|
+
titleColor: z.ZodOptional<z.ZodString>;
|
|
1296
|
+
arrowColor: z.ZodOptional<z.ZodString>;
|
|
1297
|
+
arrowSize: z.ZodOptional<z.ZodString>;
|
|
1192
1298
|
border: z.ZodOptional<z.ZodString>;
|
|
1193
1299
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
1194
1300
|
scrimOpacity: z.ZodOptional<z.ZodString>;
|
|
@@ -1197,14 +1303,20 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1197
1303
|
background?: string | undefined;
|
|
1198
1304
|
border?: string | undefined;
|
|
1199
1305
|
borderRadius?: string | undefined;
|
|
1306
|
+
titleColor?: string | undefined;
|
|
1200
1307
|
textColor?: string | undefined;
|
|
1308
|
+
arrowColor?: string | undefined;
|
|
1309
|
+
arrowSize?: string | undefined;
|
|
1201
1310
|
scrimOpacity?: string | undefined;
|
|
1202
1311
|
highlightRing?: string | undefined;
|
|
1203
1312
|
}, {
|
|
1204
1313
|
background?: string | undefined;
|
|
1205
1314
|
border?: string | undefined;
|
|
1206
1315
|
borderRadius?: string | undefined;
|
|
1316
|
+
titleColor?: string | undefined;
|
|
1207
1317
|
textColor?: string | undefined;
|
|
1318
|
+
arrowColor?: string | undefined;
|
|
1319
|
+
arrowSize?: string | undefined;
|
|
1208
1320
|
scrimOpacity?: string | undefined;
|
|
1209
1321
|
highlightRing?: string | undefined;
|
|
1210
1322
|
}>>;
|
|
@@ -1242,7 +1354,96 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1242
1354
|
errorColor?: string | undefined;
|
|
1243
1355
|
progressGradient?: string | undefined;
|
|
1244
1356
|
}>>;
|
|
1357
|
+
content: z.ZodOptional<z.ZodObject<{
|
|
1358
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1359
|
+
backgroundHover: z.ZodOptional<z.ZodString>;
|
|
1360
|
+
border: z.ZodOptional<z.ZodString>;
|
|
1361
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
1362
|
+
textColor: z.ZodOptional<z.ZodString>;
|
|
1363
|
+
textSecondaryColor: z.ZodOptional<z.ZodString>;
|
|
1364
|
+
itemDivider: z.ZodOptional<z.ZodString>;
|
|
1365
|
+
itemGap: z.ZodOptional<z.ZodString>;
|
|
1366
|
+
itemPadding: z.ZodOptional<z.ZodString>;
|
|
1367
|
+
itemFontSize: z.ZodOptional<z.ZodString>;
|
|
1368
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
1369
|
+
bodyFontSize: z.ZodOptional<z.ZodString>;
|
|
1370
|
+
categoryPadding: z.ZodOptional<z.ZodString>;
|
|
1371
|
+
categoryGap: z.ZodOptional<z.ZodString>;
|
|
1372
|
+
categoryFontSize: z.ZodOptional<z.ZodString>;
|
|
1373
|
+
searchBackground: z.ZodOptional<z.ZodString>;
|
|
1374
|
+
searchColor: z.ZodOptional<z.ZodString>;
|
|
1375
|
+
chevronColor: z.ZodOptional<z.ZodString>;
|
|
1376
|
+
}, "strip", z.ZodTypeAny, {
|
|
1377
|
+
background?: string | undefined;
|
|
1378
|
+
border?: string | undefined;
|
|
1379
|
+
backgroundHover?: string | undefined;
|
|
1380
|
+
borderRadius?: string | undefined;
|
|
1381
|
+
textColor?: string | undefined;
|
|
1382
|
+
bodyPadding?: string | undefined;
|
|
1383
|
+
textSecondaryColor?: string | undefined;
|
|
1384
|
+
itemDivider?: string | undefined;
|
|
1385
|
+
itemGap?: string | undefined;
|
|
1386
|
+
itemPadding?: string | undefined;
|
|
1387
|
+
itemFontSize?: string | undefined;
|
|
1388
|
+
bodyFontSize?: string | undefined;
|
|
1389
|
+
categoryPadding?: string | undefined;
|
|
1390
|
+
categoryGap?: string | undefined;
|
|
1391
|
+
categoryFontSize?: string | undefined;
|
|
1392
|
+
searchBackground?: string | undefined;
|
|
1393
|
+
searchColor?: string | undefined;
|
|
1394
|
+
chevronColor?: string | undefined;
|
|
1395
|
+
}, {
|
|
1396
|
+
background?: string | undefined;
|
|
1397
|
+
border?: string | undefined;
|
|
1398
|
+
backgroundHover?: string | undefined;
|
|
1399
|
+
borderRadius?: string | undefined;
|
|
1400
|
+
textColor?: string | undefined;
|
|
1401
|
+
bodyPadding?: string | undefined;
|
|
1402
|
+
textSecondaryColor?: string | undefined;
|
|
1403
|
+
itemDivider?: string | undefined;
|
|
1404
|
+
itemGap?: string | undefined;
|
|
1405
|
+
itemPadding?: string | undefined;
|
|
1406
|
+
itemFontSize?: string | undefined;
|
|
1407
|
+
bodyFontSize?: string | undefined;
|
|
1408
|
+
categoryPadding?: string | undefined;
|
|
1409
|
+
categoryGap?: string | undefined;
|
|
1410
|
+
categoryFontSize?: string | undefined;
|
|
1411
|
+
searchBackground?: string | undefined;
|
|
1412
|
+
searchColor?: string | undefined;
|
|
1413
|
+
chevronColor?: string | undefined;
|
|
1414
|
+
}>>;
|
|
1245
1415
|
}, "strict", z.ZodTypeAny, {
|
|
1416
|
+
content?: {
|
|
1417
|
+
background?: string | undefined;
|
|
1418
|
+
border?: string | undefined;
|
|
1419
|
+
backgroundHover?: string | undefined;
|
|
1420
|
+
borderRadius?: string | undefined;
|
|
1421
|
+
textColor?: string | undefined;
|
|
1422
|
+
bodyPadding?: string | undefined;
|
|
1423
|
+
textSecondaryColor?: string | undefined;
|
|
1424
|
+
itemDivider?: string | undefined;
|
|
1425
|
+
itemGap?: string | undefined;
|
|
1426
|
+
itemPadding?: string | undefined;
|
|
1427
|
+
itemFontSize?: string | undefined;
|
|
1428
|
+
bodyFontSize?: string | undefined;
|
|
1429
|
+
categoryPadding?: string | undefined;
|
|
1430
|
+
categoryGap?: string | undefined;
|
|
1431
|
+
categoryFontSize?: string | undefined;
|
|
1432
|
+
searchBackground?: string | undefined;
|
|
1433
|
+
searchColor?: string | undefined;
|
|
1434
|
+
chevronColor?: string | undefined;
|
|
1435
|
+
} | undefined;
|
|
1436
|
+
overlay?: {
|
|
1437
|
+
background?: string | undefined;
|
|
1438
|
+
border?: string | undefined;
|
|
1439
|
+
borderRadius?: string | undefined;
|
|
1440
|
+
titleColor?: string | undefined;
|
|
1441
|
+
textColor?: string | undefined;
|
|
1442
|
+
arrowColor?: string | undefined;
|
|
1443
|
+
arrowSize?: string | undefined;
|
|
1444
|
+
scrimOpacity?: string | undefined;
|
|
1445
|
+
highlightRing?: string | undefined;
|
|
1446
|
+
} | undefined;
|
|
1246
1447
|
borderRadius?: string | undefined;
|
|
1247
1448
|
mode?: "dark" | "light" | undefined;
|
|
1248
1449
|
fontFamily?: string | undefined;
|
|
@@ -1250,6 +1451,7 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1250
1451
|
colorPrimaryHover?: string | undefined;
|
|
1251
1452
|
canvas?: {
|
|
1252
1453
|
position?: "right" | "left" | undefined;
|
|
1454
|
+
layout?: "push" | "overlay" | undefined;
|
|
1253
1455
|
background?: string | undefined;
|
|
1254
1456
|
blur?: string | undefined;
|
|
1255
1457
|
border?: string | undefined;
|
|
@@ -1261,6 +1463,7 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1261
1463
|
backgroundHover?: string | undefined;
|
|
1262
1464
|
color?: string | undefined;
|
|
1263
1465
|
shadow?: string | undefined;
|
|
1466
|
+
borderRadius?: string | undefined;
|
|
1264
1467
|
} | undefined;
|
|
1265
1468
|
tile?: {
|
|
1266
1469
|
background?: string | undefined;
|
|
@@ -1272,14 +1475,9 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1272
1475
|
textColor?: string | undefined;
|
|
1273
1476
|
iconBackground?: string | undefined;
|
|
1274
1477
|
iconShadow?: string | undefined;
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
border?: string | undefined;
|
|
1279
|
-
borderRadius?: string | undefined;
|
|
1280
|
-
textColor?: string | undefined;
|
|
1281
|
-
scrimOpacity?: string | undefined;
|
|
1282
|
-
highlightRing?: string | undefined;
|
|
1478
|
+
headerPadding?: string | undefined;
|
|
1479
|
+
bodyPadding?: string | undefined;
|
|
1480
|
+
gap?: string | undefined;
|
|
1283
1481
|
} | undefined;
|
|
1284
1482
|
notification?: {
|
|
1285
1483
|
background?: string | undefined;
|
|
@@ -1294,6 +1492,37 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1294
1492
|
progressGradient?: string | undefined;
|
|
1295
1493
|
} | undefined;
|
|
1296
1494
|
}, {
|
|
1495
|
+
content?: {
|
|
1496
|
+
background?: string | undefined;
|
|
1497
|
+
border?: string | undefined;
|
|
1498
|
+
backgroundHover?: string | undefined;
|
|
1499
|
+
borderRadius?: string | undefined;
|
|
1500
|
+
textColor?: string | undefined;
|
|
1501
|
+
bodyPadding?: string | undefined;
|
|
1502
|
+
textSecondaryColor?: string | undefined;
|
|
1503
|
+
itemDivider?: string | undefined;
|
|
1504
|
+
itemGap?: string | undefined;
|
|
1505
|
+
itemPadding?: string | undefined;
|
|
1506
|
+
itemFontSize?: string | undefined;
|
|
1507
|
+
bodyFontSize?: string | undefined;
|
|
1508
|
+
categoryPadding?: string | undefined;
|
|
1509
|
+
categoryGap?: string | undefined;
|
|
1510
|
+
categoryFontSize?: string | undefined;
|
|
1511
|
+
searchBackground?: string | undefined;
|
|
1512
|
+
searchColor?: string | undefined;
|
|
1513
|
+
chevronColor?: string | undefined;
|
|
1514
|
+
} | undefined;
|
|
1515
|
+
overlay?: {
|
|
1516
|
+
background?: string | undefined;
|
|
1517
|
+
border?: string | undefined;
|
|
1518
|
+
borderRadius?: string | undefined;
|
|
1519
|
+
titleColor?: string | undefined;
|
|
1520
|
+
textColor?: string | undefined;
|
|
1521
|
+
arrowColor?: string | undefined;
|
|
1522
|
+
arrowSize?: string | undefined;
|
|
1523
|
+
scrimOpacity?: string | undefined;
|
|
1524
|
+
highlightRing?: string | undefined;
|
|
1525
|
+
} | undefined;
|
|
1297
1526
|
borderRadius?: string | undefined;
|
|
1298
1527
|
mode?: "dark" | "light" | undefined;
|
|
1299
1528
|
fontFamily?: string | undefined;
|
|
@@ -1301,6 +1530,7 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1301
1530
|
colorPrimaryHover?: string | undefined;
|
|
1302
1531
|
canvas?: {
|
|
1303
1532
|
position?: "right" | "left" | undefined;
|
|
1533
|
+
layout?: "push" | "overlay" | undefined;
|
|
1304
1534
|
background?: string | undefined;
|
|
1305
1535
|
blur?: string | undefined;
|
|
1306
1536
|
border?: string | undefined;
|
|
@@ -1312,6 +1542,7 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1312
1542
|
backgroundHover?: string | undefined;
|
|
1313
1543
|
color?: string | undefined;
|
|
1314
1544
|
shadow?: string | undefined;
|
|
1545
|
+
borderRadius?: string | undefined;
|
|
1315
1546
|
} | undefined;
|
|
1316
1547
|
tile?: {
|
|
1317
1548
|
background?: string | undefined;
|
|
@@ -1323,14 +1554,9 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1323
1554
|
textColor?: string | undefined;
|
|
1324
1555
|
iconBackground?: string | undefined;
|
|
1325
1556
|
iconShadow?: string | undefined;
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
border?: string | undefined;
|
|
1330
|
-
borderRadius?: string | undefined;
|
|
1331
|
-
textColor?: string | undefined;
|
|
1332
|
-
scrimOpacity?: string | undefined;
|
|
1333
|
-
highlightRing?: string | undefined;
|
|
1557
|
+
headerPadding?: string | undefined;
|
|
1558
|
+
bodyPadding?: string | undefined;
|
|
1559
|
+
gap?: string | undefined;
|
|
1334
1560
|
} | undefined;
|
|
1335
1561
|
notification?: {
|
|
1336
1562
|
background?: string | undefined;
|
|
@@ -1348,6 +1574,7 @@ export declare const CanvasThemeConfigZ: z.ZodObject<{
|
|
|
1348
1574
|
export declare const LauncherConfigZ: z.ZodObject<{
|
|
1349
1575
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1350
1576
|
label: z.ZodOptional<z.ZodString>;
|
|
1577
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1351
1578
|
position: z.ZodOptional<z.ZodString>;
|
|
1352
1579
|
animate: z.ZodOptional<z.ZodBoolean>;
|
|
1353
1580
|
animationStyle: z.ZodOptional<z.ZodEnum<["pulse", "bounce", "glow"]>>;
|
|
@@ -1355,6 +1582,7 @@ export declare const LauncherConfigZ: z.ZodObject<{
|
|
|
1355
1582
|
}, "strict", z.ZodTypeAny, {
|
|
1356
1583
|
position?: string | undefined;
|
|
1357
1584
|
label?: string | undefined;
|
|
1585
|
+
icon?: string | undefined;
|
|
1358
1586
|
enabled?: boolean | undefined;
|
|
1359
1587
|
animate?: boolean | undefined;
|
|
1360
1588
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -1362,6 +1590,7 @@ export declare const LauncherConfigZ: z.ZodObject<{
|
|
|
1362
1590
|
}, {
|
|
1363
1591
|
position?: string | undefined;
|
|
1364
1592
|
label?: string | undefined;
|
|
1593
|
+
icon?: string | undefined;
|
|
1365
1594
|
enabled?: boolean | undefined;
|
|
1366
1595
|
animate?: boolean | undefined;
|
|
1367
1596
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -1375,6 +1604,8 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
1375
1604
|
tiles: z.ZodArray<z.ZodObject<{
|
|
1376
1605
|
id: z.ZodString;
|
|
1377
1606
|
title: z.ZodOptional<z.ZodString>;
|
|
1607
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
1608
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1378
1609
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
1379
1610
|
widget: z.ZodString;
|
|
1380
1611
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2093,6 +2324,8 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2093
2324
|
props?: Record<string, unknown> | undefined;
|
|
2094
2325
|
priority?: number | undefined;
|
|
2095
2326
|
title?: string | undefined;
|
|
2327
|
+
icon?: string | undefined;
|
|
2328
|
+
subtitle?: string | undefined;
|
|
2096
2329
|
activation?: {
|
|
2097
2330
|
routes: {
|
|
2098
2331
|
include?: string[] | undefined;
|
|
@@ -2198,6 +2431,8 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2198
2431
|
props?: Record<string, unknown> | undefined;
|
|
2199
2432
|
priority?: number | undefined;
|
|
2200
2433
|
title?: string | undefined;
|
|
2434
|
+
icon?: string | undefined;
|
|
2435
|
+
subtitle?: string | undefined;
|
|
2201
2436
|
activation?: {
|
|
2202
2437
|
routes: {
|
|
2203
2438
|
include?: string[] | undefined;
|
|
@@ -2307,18 +2542,21 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2307
2542
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
2308
2543
|
canvas: z.ZodOptional<z.ZodObject<{
|
|
2309
2544
|
position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
2545
|
+
layout: z.ZodOptional<z.ZodEnum<["overlay", "push"]>>;
|
|
2310
2546
|
background: z.ZodOptional<z.ZodString>;
|
|
2311
2547
|
blur: z.ZodOptional<z.ZodString>;
|
|
2312
2548
|
border: z.ZodOptional<z.ZodString>;
|
|
2313
2549
|
width: z.ZodOptional<z.ZodString>;
|
|
2314
2550
|
}, "strip", z.ZodTypeAny, {
|
|
2315
2551
|
position?: "right" | "left" | undefined;
|
|
2552
|
+
layout?: "push" | "overlay" | undefined;
|
|
2316
2553
|
background?: string | undefined;
|
|
2317
2554
|
blur?: string | undefined;
|
|
2318
2555
|
border?: string | undefined;
|
|
2319
2556
|
width?: string | undefined;
|
|
2320
2557
|
}, {
|
|
2321
2558
|
position?: "right" | "left" | undefined;
|
|
2559
|
+
layout?: "push" | "overlay" | undefined;
|
|
2322
2560
|
background?: string | undefined;
|
|
2323
2561
|
blur?: string | undefined;
|
|
2324
2562
|
border?: string | undefined;
|
|
@@ -2330,18 +2568,21 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2330
2568
|
color: z.ZodOptional<z.ZodString>;
|
|
2331
2569
|
size: z.ZodOptional<z.ZodString>;
|
|
2332
2570
|
shadow: z.ZodOptional<z.ZodString>;
|
|
2571
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
2333
2572
|
}, "strip", z.ZodTypeAny, {
|
|
2334
2573
|
size?: string | undefined;
|
|
2335
2574
|
background?: string | undefined;
|
|
2336
2575
|
backgroundHover?: string | undefined;
|
|
2337
2576
|
color?: string | undefined;
|
|
2338
2577
|
shadow?: string | undefined;
|
|
2578
|
+
borderRadius?: string | undefined;
|
|
2339
2579
|
}, {
|
|
2340
2580
|
size?: string | undefined;
|
|
2341
2581
|
background?: string | undefined;
|
|
2342
2582
|
backgroundHover?: string | undefined;
|
|
2343
2583
|
color?: string | undefined;
|
|
2344
2584
|
shadow?: string | undefined;
|
|
2585
|
+
borderRadius?: string | undefined;
|
|
2345
2586
|
}>>;
|
|
2346
2587
|
tile: z.ZodOptional<z.ZodObject<{
|
|
2347
2588
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -2353,6 +2594,9 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2353
2594
|
textColor: z.ZodOptional<z.ZodString>;
|
|
2354
2595
|
iconBackground: z.ZodOptional<z.ZodString>;
|
|
2355
2596
|
iconShadow: z.ZodOptional<z.ZodString>;
|
|
2597
|
+
headerPadding: z.ZodOptional<z.ZodString>;
|
|
2598
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
2599
|
+
gap: z.ZodOptional<z.ZodString>;
|
|
2356
2600
|
}, "strip", z.ZodTypeAny, {
|
|
2357
2601
|
background?: string | undefined;
|
|
2358
2602
|
border?: string | undefined;
|
|
@@ -2363,6 +2607,9 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2363
2607
|
textColor?: string | undefined;
|
|
2364
2608
|
iconBackground?: string | undefined;
|
|
2365
2609
|
iconShadow?: string | undefined;
|
|
2610
|
+
headerPadding?: string | undefined;
|
|
2611
|
+
bodyPadding?: string | undefined;
|
|
2612
|
+
gap?: string | undefined;
|
|
2366
2613
|
}, {
|
|
2367
2614
|
background?: string | undefined;
|
|
2368
2615
|
border?: string | undefined;
|
|
@@ -2373,10 +2620,16 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2373
2620
|
textColor?: string | undefined;
|
|
2374
2621
|
iconBackground?: string | undefined;
|
|
2375
2622
|
iconShadow?: string | undefined;
|
|
2623
|
+
headerPadding?: string | undefined;
|
|
2624
|
+
bodyPadding?: string | undefined;
|
|
2625
|
+
gap?: string | undefined;
|
|
2376
2626
|
}>>;
|
|
2377
2627
|
overlay: z.ZodOptional<z.ZodObject<{
|
|
2378
2628
|
background: z.ZodOptional<z.ZodString>;
|
|
2379
2629
|
textColor: z.ZodOptional<z.ZodString>;
|
|
2630
|
+
titleColor: z.ZodOptional<z.ZodString>;
|
|
2631
|
+
arrowColor: z.ZodOptional<z.ZodString>;
|
|
2632
|
+
arrowSize: z.ZodOptional<z.ZodString>;
|
|
2380
2633
|
border: z.ZodOptional<z.ZodString>;
|
|
2381
2634
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
2382
2635
|
scrimOpacity: z.ZodOptional<z.ZodString>;
|
|
@@ -2385,14 +2638,20 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2385
2638
|
background?: string | undefined;
|
|
2386
2639
|
border?: string | undefined;
|
|
2387
2640
|
borderRadius?: string | undefined;
|
|
2641
|
+
titleColor?: string | undefined;
|
|
2388
2642
|
textColor?: string | undefined;
|
|
2643
|
+
arrowColor?: string | undefined;
|
|
2644
|
+
arrowSize?: string | undefined;
|
|
2389
2645
|
scrimOpacity?: string | undefined;
|
|
2390
2646
|
highlightRing?: string | undefined;
|
|
2391
2647
|
}, {
|
|
2392
2648
|
background?: string | undefined;
|
|
2393
2649
|
border?: string | undefined;
|
|
2394
2650
|
borderRadius?: string | undefined;
|
|
2651
|
+
titleColor?: string | undefined;
|
|
2395
2652
|
textColor?: string | undefined;
|
|
2653
|
+
arrowColor?: string | undefined;
|
|
2654
|
+
arrowSize?: string | undefined;
|
|
2396
2655
|
scrimOpacity?: string | undefined;
|
|
2397
2656
|
highlightRing?: string | undefined;
|
|
2398
2657
|
}>>;
|
|
@@ -2430,7 +2689,96 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2430
2689
|
errorColor?: string | undefined;
|
|
2431
2690
|
progressGradient?: string | undefined;
|
|
2432
2691
|
}>>;
|
|
2692
|
+
content: z.ZodOptional<z.ZodObject<{
|
|
2693
|
+
background: z.ZodOptional<z.ZodString>;
|
|
2694
|
+
backgroundHover: z.ZodOptional<z.ZodString>;
|
|
2695
|
+
border: z.ZodOptional<z.ZodString>;
|
|
2696
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
2697
|
+
textColor: z.ZodOptional<z.ZodString>;
|
|
2698
|
+
textSecondaryColor: z.ZodOptional<z.ZodString>;
|
|
2699
|
+
itemDivider: z.ZodOptional<z.ZodString>;
|
|
2700
|
+
itemGap: z.ZodOptional<z.ZodString>;
|
|
2701
|
+
itemPadding: z.ZodOptional<z.ZodString>;
|
|
2702
|
+
itemFontSize: z.ZodOptional<z.ZodString>;
|
|
2703
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
2704
|
+
bodyFontSize: z.ZodOptional<z.ZodString>;
|
|
2705
|
+
categoryPadding: z.ZodOptional<z.ZodString>;
|
|
2706
|
+
categoryGap: z.ZodOptional<z.ZodString>;
|
|
2707
|
+
categoryFontSize: z.ZodOptional<z.ZodString>;
|
|
2708
|
+
searchBackground: z.ZodOptional<z.ZodString>;
|
|
2709
|
+
searchColor: z.ZodOptional<z.ZodString>;
|
|
2710
|
+
chevronColor: z.ZodOptional<z.ZodString>;
|
|
2711
|
+
}, "strip", z.ZodTypeAny, {
|
|
2712
|
+
background?: string | undefined;
|
|
2713
|
+
border?: string | undefined;
|
|
2714
|
+
backgroundHover?: string | undefined;
|
|
2715
|
+
borderRadius?: string | undefined;
|
|
2716
|
+
textColor?: string | undefined;
|
|
2717
|
+
bodyPadding?: string | undefined;
|
|
2718
|
+
textSecondaryColor?: string | undefined;
|
|
2719
|
+
itemDivider?: string | undefined;
|
|
2720
|
+
itemGap?: string | undefined;
|
|
2721
|
+
itemPadding?: string | undefined;
|
|
2722
|
+
itemFontSize?: string | undefined;
|
|
2723
|
+
bodyFontSize?: string | undefined;
|
|
2724
|
+
categoryPadding?: string | undefined;
|
|
2725
|
+
categoryGap?: string | undefined;
|
|
2726
|
+
categoryFontSize?: string | undefined;
|
|
2727
|
+
searchBackground?: string | undefined;
|
|
2728
|
+
searchColor?: string | undefined;
|
|
2729
|
+
chevronColor?: string | undefined;
|
|
2730
|
+
}, {
|
|
2731
|
+
background?: string | undefined;
|
|
2732
|
+
border?: string | undefined;
|
|
2733
|
+
backgroundHover?: string | undefined;
|
|
2734
|
+
borderRadius?: string | undefined;
|
|
2735
|
+
textColor?: string | undefined;
|
|
2736
|
+
bodyPadding?: string | undefined;
|
|
2737
|
+
textSecondaryColor?: string | undefined;
|
|
2738
|
+
itemDivider?: string | undefined;
|
|
2739
|
+
itemGap?: string | undefined;
|
|
2740
|
+
itemPadding?: string | undefined;
|
|
2741
|
+
itemFontSize?: string | undefined;
|
|
2742
|
+
bodyFontSize?: string | undefined;
|
|
2743
|
+
categoryPadding?: string | undefined;
|
|
2744
|
+
categoryGap?: string | undefined;
|
|
2745
|
+
categoryFontSize?: string | undefined;
|
|
2746
|
+
searchBackground?: string | undefined;
|
|
2747
|
+
searchColor?: string | undefined;
|
|
2748
|
+
chevronColor?: string | undefined;
|
|
2749
|
+
}>>;
|
|
2433
2750
|
}, "strict", z.ZodTypeAny, {
|
|
2751
|
+
content?: {
|
|
2752
|
+
background?: string | undefined;
|
|
2753
|
+
border?: string | undefined;
|
|
2754
|
+
backgroundHover?: string | undefined;
|
|
2755
|
+
borderRadius?: string | undefined;
|
|
2756
|
+
textColor?: string | undefined;
|
|
2757
|
+
bodyPadding?: string | undefined;
|
|
2758
|
+
textSecondaryColor?: string | undefined;
|
|
2759
|
+
itemDivider?: string | undefined;
|
|
2760
|
+
itemGap?: string | undefined;
|
|
2761
|
+
itemPadding?: string | undefined;
|
|
2762
|
+
itemFontSize?: string | undefined;
|
|
2763
|
+
bodyFontSize?: string | undefined;
|
|
2764
|
+
categoryPadding?: string | undefined;
|
|
2765
|
+
categoryGap?: string | undefined;
|
|
2766
|
+
categoryFontSize?: string | undefined;
|
|
2767
|
+
searchBackground?: string | undefined;
|
|
2768
|
+
searchColor?: string | undefined;
|
|
2769
|
+
chevronColor?: string | undefined;
|
|
2770
|
+
} | undefined;
|
|
2771
|
+
overlay?: {
|
|
2772
|
+
background?: string | undefined;
|
|
2773
|
+
border?: string | undefined;
|
|
2774
|
+
borderRadius?: string | undefined;
|
|
2775
|
+
titleColor?: string | undefined;
|
|
2776
|
+
textColor?: string | undefined;
|
|
2777
|
+
arrowColor?: string | undefined;
|
|
2778
|
+
arrowSize?: string | undefined;
|
|
2779
|
+
scrimOpacity?: string | undefined;
|
|
2780
|
+
highlightRing?: string | undefined;
|
|
2781
|
+
} | undefined;
|
|
2434
2782
|
borderRadius?: string | undefined;
|
|
2435
2783
|
mode?: "dark" | "light" | undefined;
|
|
2436
2784
|
fontFamily?: string | undefined;
|
|
@@ -2438,6 +2786,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2438
2786
|
colorPrimaryHover?: string | undefined;
|
|
2439
2787
|
canvas?: {
|
|
2440
2788
|
position?: "right" | "left" | undefined;
|
|
2789
|
+
layout?: "push" | "overlay" | undefined;
|
|
2441
2790
|
background?: string | undefined;
|
|
2442
2791
|
blur?: string | undefined;
|
|
2443
2792
|
border?: string | undefined;
|
|
@@ -2449,6 +2798,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2449
2798
|
backgroundHover?: string | undefined;
|
|
2450
2799
|
color?: string | undefined;
|
|
2451
2800
|
shadow?: string | undefined;
|
|
2801
|
+
borderRadius?: string | undefined;
|
|
2452
2802
|
} | undefined;
|
|
2453
2803
|
tile?: {
|
|
2454
2804
|
background?: string | undefined;
|
|
@@ -2460,14 +2810,9 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2460
2810
|
textColor?: string | undefined;
|
|
2461
2811
|
iconBackground?: string | undefined;
|
|
2462
2812
|
iconShadow?: string | undefined;
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
border?: string | undefined;
|
|
2467
|
-
borderRadius?: string | undefined;
|
|
2468
|
-
textColor?: string | undefined;
|
|
2469
|
-
scrimOpacity?: string | undefined;
|
|
2470
|
-
highlightRing?: string | undefined;
|
|
2813
|
+
headerPadding?: string | undefined;
|
|
2814
|
+
bodyPadding?: string | undefined;
|
|
2815
|
+
gap?: string | undefined;
|
|
2471
2816
|
} | undefined;
|
|
2472
2817
|
notification?: {
|
|
2473
2818
|
background?: string | undefined;
|
|
@@ -2482,6 +2827,37 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2482
2827
|
progressGradient?: string | undefined;
|
|
2483
2828
|
} | undefined;
|
|
2484
2829
|
}, {
|
|
2830
|
+
content?: {
|
|
2831
|
+
background?: string | undefined;
|
|
2832
|
+
border?: string | undefined;
|
|
2833
|
+
backgroundHover?: string | undefined;
|
|
2834
|
+
borderRadius?: string | undefined;
|
|
2835
|
+
textColor?: string | undefined;
|
|
2836
|
+
bodyPadding?: string | undefined;
|
|
2837
|
+
textSecondaryColor?: string | undefined;
|
|
2838
|
+
itemDivider?: string | undefined;
|
|
2839
|
+
itemGap?: string | undefined;
|
|
2840
|
+
itemPadding?: string | undefined;
|
|
2841
|
+
itemFontSize?: string | undefined;
|
|
2842
|
+
bodyFontSize?: string | undefined;
|
|
2843
|
+
categoryPadding?: string | undefined;
|
|
2844
|
+
categoryGap?: string | undefined;
|
|
2845
|
+
categoryFontSize?: string | undefined;
|
|
2846
|
+
searchBackground?: string | undefined;
|
|
2847
|
+
searchColor?: string | undefined;
|
|
2848
|
+
chevronColor?: string | undefined;
|
|
2849
|
+
} | undefined;
|
|
2850
|
+
overlay?: {
|
|
2851
|
+
background?: string | undefined;
|
|
2852
|
+
border?: string | undefined;
|
|
2853
|
+
borderRadius?: string | undefined;
|
|
2854
|
+
titleColor?: string | undefined;
|
|
2855
|
+
textColor?: string | undefined;
|
|
2856
|
+
arrowColor?: string | undefined;
|
|
2857
|
+
arrowSize?: string | undefined;
|
|
2858
|
+
scrimOpacity?: string | undefined;
|
|
2859
|
+
highlightRing?: string | undefined;
|
|
2860
|
+
} | undefined;
|
|
2485
2861
|
borderRadius?: string | undefined;
|
|
2486
2862
|
mode?: "dark" | "light" | undefined;
|
|
2487
2863
|
fontFamily?: string | undefined;
|
|
@@ -2489,6 +2865,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2489
2865
|
colorPrimaryHover?: string | undefined;
|
|
2490
2866
|
canvas?: {
|
|
2491
2867
|
position?: "right" | "left" | undefined;
|
|
2868
|
+
layout?: "push" | "overlay" | undefined;
|
|
2492
2869
|
background?: string | undefined;
|
|
2493
2870
|
blur?: string | undefined;
|
|
2494
2871
|
border?: string | undefined;
|
|
@@ -2500,6 +2877,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2500
2877
|
backgroundHover?: string | undefined;
|
|
2501
2878
|
color?: string | undefined;
|
|
2502
2879
|
shadow?: string | undefined;
|
|
2880
|
+
borderRadius?: string | undefined;
|
|
2503
2881
|
} | undefined;
|
|
2504
2882
|
tile?: {
|
|
2505
2883
|
background?: string | undefined;
|
|
@@ -2511,14 +2889,9 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2511
2889
|
textColor?: string | undefined;
|
|
2512
2890
|
iconBackground?: string | undefined;
|
|
2513
2891
|
iconShadow?: string | undefined;
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
border?: string | undefined;
|
|
2518
|
-
borderRadius?: string | undefined;
|
|
2519
|
-
textColor?: string | undefined;
|
|
2520
|
-
scrimOpacity?: string | undefined;
|
|
2521
|
-
highlightRing?: string | undefined;
|
|
2892
|
+
headerPadding?: string | undefined;
|
|
2893
|
+
bodyPadding?: string | undefined;
|
|
2894
|
+
gap?: string | undefined;
|
|
2522
2895
|
} | undefined;
|
|
2523
2896
|
notification?: {
|
|
2524
2897
|
background?: string | undefined;
|
|
@@ -2536,6 +2909,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2536
2909
|
launcher: z.ZodOptional<z.ZodObject<{
|
|
2537
2910
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2538
2911
|
label: z.ZodOptional<z.ZodString>;
|
|
2912
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
2539
2913
|
position: z.ZodOptional<z.ZodString>;
|
|
2540
2914
|
animate: z.ZodOptional<z.ZodBoolean>;
|
|
2541
2915
|
animationStyle: z.ZodOptional<z.ZodEnum<["pulse", "bounce", "glow"]>>;
|
|
@@ -2543,6 +2917,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2543
2917
|
}, "strict", z.ZodTypeAny, {
|
|
2544
2918
|
position?: string | undefined;
|
|
2545
2919
|
label?: string | undefined;
|
|
2920
|
+
icon?: string | undefined;
|
|
2546
2921
|
enabled?: boolean | undefined;
|
|
2547
2922
|
animate?: boolean | undefined;
|
|
2548
2923
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -2550,6 +2925,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2550
2925
|
}, {
|
|
2551
2926
|
position?: string | undefined;
|
|
2552
2927
|
label?: string | undefined;
|
|
2928
|
+
icon?: string | undefined;
|
|
2553
2929
|
enabled?: boolean | undefined;
|
|
2554
2930
|
animate?: boolean | undefined;
|
|
2555
2931
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -2565,6 +2941,8 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2565
2941
|
props?: Record<string, unknown> | undefined;
|
|
2566
2942
|
priority?: number | undefined;
|
|
2567
2943
|
title?: string | undefined;
|
|
2944
|
+
icon?: string | undefined;
|
|
2945
|
+
subtitle?: string | undefined;
|
|
2568
2946
|
activation?: {
|
|
2569
2947
|
routes: {
|
|
2570
2948
|
include?: string[] | undefined;
|
|
@@ -2668,6 +3046,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2668
3046
|
launcher?: {
|
|
2669
3047
|
position?: string | undefined;
|
|
2670
3048
|
label?: string | undefined;
|
|
3049
|
+
icon?: string | undefined;
|
|
2671
3050
|
enabled?: boolean | undefined;
|
|
2672
3051
|
animate?: boolean | undefined;
|
|
2673
3052
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -2677,6 +3056,37 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2677
3056
|
configVersion?: string | undefined;
|
|
2678
3057
|
canvasTitle?: string | undefined;
|
|
2679
3058
|
theme?: {
|
|
3059
|
+
content?: {
|
|
3060
|
+
background?: string | undefined;
|
|
3061
|
+
border?: string | undefined;
|
|
3062
|
+
backgroundHover?: string | undefined;
|
|
3063
|
+
borderRadius?: string | undefined;
|
|
3064
|
+
textColor?: string | undefined;
|
|
3065
|
+
bodyPadding?: string | undefined;
|
|
3066
|
+
textSecondaryColor?: string | undefined;
|
|
3067
|
+
itemDivider?: string | undefined;
|
|
3068
|
+
itemGap?: string | undefined;
|
|
3069
|
+
itemPadding?: string | undefined;
|
|
3070
|
+
itemFontSize?: string | undefined;
|
|
3071
|
+
bodyFontSize?: string | undefined;
|
|
3072
|
+
categoryPadding?: string | undefined;
|
|
3073
|
+
categoryGap?: string | undefined;
|
|
3074
|
+
categoryFontSize?: string | undefined;
|
|
3075
|
+
searchBackground?: string | undefined;
|
|
3076
|
+
searchColor?: string | undefined;
|
|
3077
|
+
chevronColor?: string | undefined;
|
|
3078
|
+
} | undefined;
|
|
3079
|
+
overlay?: {
|
|
3080
|
+
background?: string | undefined;
|
|
3081
|
+
border?: string | undefined;
|
|
3082
|
+
borderRadius?: string | undefined;
|
|
3083
|
+
titleColor?: string | undefined;
|
|
3084
|
+
textColor?: string | undefined;
|
|
3085
|
+
arrowColor?: string | undefined;
|
|
3086
|
+
arrowSize?: string | undefined;
|
|
3087
|
+
scrimOpacity?: string | undefined;
|
|
3088
|
+
highlightRing?: string | undefined;
|
|
3089
|
+
} | undefined;
|
|
2680
3090
|
borderRadius?: string | undefined;
|
|
2681
3091
|
mode?: "dark" | "light" | undefined;
|
|
2682
3092
|
fontFamily?: string | undefined;
|
|
@@ -2684,6 +3094,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2684
3094
|
colorPrimaryHover?: string | undefined;
|
|
2685
3095
|
canvas?: {
|
|
2686
3096
|
position?: "right" | "left" | undefined;
|
|
3097
|
+
layout?: "push" | "overlay" | undefined;
|
|
2687
3098
|
background?: string | undefined;
|
|
2688
3099
|
blur?: string | undefined;
|
|
2689
3100
|
border?: string | undefined;
|
|
@@ -2695,6 +3106,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2695
3106
|
backgroundHover?: string | undefined;
|
|
2696
3107
|
color?: string | undefined;
|
|
2697
3108
|
shadow?: string | undefined;
|
|
3109
|
+
borderRadius?: string | undefined;
|
|
2698
3110
|
} | undefined;
|
|
2699
3111
|
tile?: {
|
|
2700
3112
|
background?: string | undefined;
|
|
@@ -2706,14 +3118,9 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2706
3118
|
textColor?: string | undefined;
|
|
2707
3119
|
iconBackground?: string | undefined;
|
|
2708
3120
|
iconShadow?: string | undefined;
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
border?: string | undefined;
|
|
2713
|
-
borderRadius?: string | undefined;
|
|
2714
|
-
textColor?: string | undefined;
|
|
2715
|
-
scrimOpacity?: string | undefined;
|
|
2716
|
-
highlightRing?: string | undefined;
|
|
3121
|
+
headerPadding?: string | undefined;
|
|
3122
|
+
bodyPadding?: string | undefined;
|
|
3123
|
+
gap?: string | undefined;
|
|
2717
3124
|
} | undefined;
|
|
2718
3125
|
notification?: {
|
|
2719
3126
|
background?: string | undefined;
|
|
@@ -2738,6 +3145,8 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2738
3145
|
props?: Record<string, unknown> | undefined;
|
|
2739
3146
|
priority?: number | undefined;
|
|
2740
3147
|
title?: string | undefined;
|
|
3148
|
+
icon?: string | undefined;
|
|
3149
|
+
subtitle?: string | undefined;
|
|
2741
3150
|
activation?: {
|
|
2742
3151
|
routes: {
|
|
2743
3152
|
include?: string[] | undefined;
|
|
@@ -2841,6 +3250,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2841
3250
|
launcher?: {
|
|
2842
3251
|
position?: string | undefined;
|
|
2843
3252
|
label?: string | undefined;
|
|
3253
|
+
icon?: string | undefined;
|
|
2844
3254
|
enabled?: boolean | undefined;
|
|
2845
3255
|
animate?: boolean | undefined;
|
|
2846
3256
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -2850,6 +3260,37 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2850
3260
|
configVersion?: string | undefined;
|
|
2851
3261
|
canvasTitle?: string | undefined;
|
|
2852
3262
|
theme?: {
|
|
3263
|
+
content?: {
|
|
3264
|
+
background?: string | undefined;
|
|
3265
|
+
border?: string | undefined;
|
|
3266
|
+
backgroundHover?: string | undefined;
|
|
3267
|
+
borderRadius?: string | undefined;
|
|
3268
|
+
textColor?: string | undefined;
|
|
3269
|
+
bodyPadding?: string | undefined;
|
|
3270
|
+
textSecondaryColor?: string | undefined;
|
|
3271
|
+
itemDivider?: string | undefined;
|
|
3272
|
+
itemGap?: string | undefined;
|
|
3273
|
+
itemPadding?: string | undefined;
|
|
3274
|
+
itemFontSize?: string | undefined;
|
|
3275
|
+
bodyFontSize?: string | undefined;
|
|
3276
|
+
categoryPadding?: string | undefined;
|
|
3277
|
+
categoryGap?: string | undefined;
|
|
3278
|
+
categoryFontSize?: string | undefined;
|
|
3279
|
+
searchBackground?: string | undefined;
|
|
3280
|
+
searchColor?: string | undefined;
|
|
3281
|
+
chevronColor?: string | undefined;
|
|
3282
|
+
} | undefined;
|
|
3283
|
+
overlay?: {
|
|
3284
|
+
background?: string | undefined;
|
|
3285
|
+
border?: string | undefined;
|
|
3286
|
+
borderRadius?: string | undefined;
|
|
3287
|
+
titleColor?: string | undefined;
|
|
3288
|
+
textColor?: string | undefined;
|
|
3289
|
+
arrowColor?: string | undefined;
|
|
3290
|
+
arrowSize?: string | undefined;
|
|
3291
|
+
scrimOpacity?: string | undefined;
|
|
3292
|
+
highlightRing?: string | undefined;
|
|
3293
|
+
} | undefined;
|
|
2853
3294
|
borderRadius?: string | undefined;
|
|
2854
3295
|
mode?: "dark" | "light" | undefined;
|
|
2855
3296
|
fontFamily?: string | undefined;
|
|
@@ -2857,6 +3298,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2857
3298
|
colorPrimaryHover?: string | undefined;
|
|
2858
3299
|
canvas?: {
|
|
2859
3300
|
position?: "right" | "left" | undefined;
|
|
3301
|
+
layout?: "push" | "overlay" | undefined;
|
|
2860
3302
|
background?: string | undefined;
|
|
2861
3303
|
blur?: string | undefined;
|
|
2862
3304
|
border?: string | undefined;
|
|
@@ -2868,6 +3310,7 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2868
3310
|
backgroundHover?: string | undefined;
|
|
2869
3311
|
color?: string | undefined;
|
|
2870
3312
|
shadow?: string | undefined;
|
|
3313
|
+
borderRadius?: string | undefined;
|
|
2871
3314
|
} | undefined;
|
|
2872
3315
|
tile?: {
|
|
2873
3316
|
background?: string | undefined;
|
|
@@ -2879,14 +3322,9 @@ export declare const CanvasConfigResponseZ: z.ZodObject<{
|
|
|
2879
3322
|
textColor?: string | undefined;
|
|
2880
3323
|
iconBackground?: string | undefined;
|
|
2881
3324
|
iconShadow?: string | undefined;
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
border?: string | undefined;
|
|
2886
|
-
borderRadius?: string | undefined;
|
|
2887
|
-
textColor?: string | undefined;
|
|
2888
|
-
scrimOpacity?: string | undefined;
|
|
2889
|
-
highlightRing?: string | undefined;
|
|
3325
|
+
headerPadding?: string | undefined;
|
|
3326
|
+
bodyPadding?: string | undefined;
|
|
3327
|
+
gap?: string | undefined;
|
|
2890
3328
|
} | undefined;
|
|
2891
3329
|
notification?: {
|
|
2892
3330
|
background?: string | undefined;
|
|
@@ -2912,6 +3350,8 @@ export declare const configSchemas: ({
|
|
|
2912
3350
|
schema: z.ZodObject<{
|
|
2913
3351
|
id: z.ZodString;
|
|
2914
3352
|
title: z.ZodOptional<z.ZodString>;
|
|
3353
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
3354
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
2915
3355
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
2916
3356
|
widget: z.ZodString;
|
|
2917
3357
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -3630,6 +4070,8 @@ export declare const configSchemas: ({
|
|
|
3630
4070
|
props?: Record<string, unknown> | undefined;
|
|
3631
4071
|
priority?: number | undefined;
|
|
3632
4072
|
title?: string | undefined;
|
|
4073
|
+
icon?: string | undefined;
|
|
4074
|
+
subtitle?: string | undefined;
|
|
3633
4075
|
activation?: {
|
|
3634
4076
|
routes: {
|
|
3635
4077
|
include?: string[] | undefined;
|
|
@@ -3735,6 +4177,8 @@ export declare const configSchemas: ({
|
|
|
3735
4177
|
props?: Record<string, unknown> | undefined;
|
|
3736
4178
|
priority?: number | undefined;
|
|
3737
4179
|
title?: string | undefined;
|
|
4180
|
+
icon?: string | undefined;
|
|
4181
|
+
subtitle?: string | undefined;
|
|
3738
4182
|
activation?: {
|
|
3739
4183
|
routes: {
|
|
3740
4184
|
include?: string[] | undefined;
|
|
@@ -3845,18 +4289,21 @@ export declare const configSchemas: ({
|
|
|
3845
4289
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
3846
4290
|
canvas: z.ZodOptional<z.ZodObject<{
|
|
3847
4291
|
position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
4292
|
+
layout: z.ZodOptional<z.ZodEnum<["overlay", "push"]>>;
|
|
3848
4293
|
background: z.ZodOptional<z.ZodString>;
|
|
3849
4294
|
blur: z.ZodOptional<z.ZodString>;
|
|
3850
4295
|
border: z.ZodOptional<z.ZodString>;
|
|
3851
4296
|
width: z.ZodOptional<z.ZodString>;
|
|
3852
4297
|
}, "strip", z.ZodTypeAny, {
|
|
3853
4298
|
position?: "right" | "left" | undefined;
|
|
4299
|
+
layout?: "push" | "overlay" | undefined;
|
|
3854
4300
|
background?: string | undefined;
|
|
3855
4301
|
blur?: string | undefined;
|
|
3856
4302
|
border?: string | undefined;
|
|
3857
4303
|
width?: string | undefined;
|
|
3858
4304
|
}, {
|
|
3859
4305
|
position?: "right" | "left" | undefined;
|
|
4306
|
+
layout?: "push" | "overlay" | undefined;
|
|
3860
4307
|
background?: string | undefined;
|
|
3861
4308
|
blur?: string | undefined;
|
|
3862
4309
|
border?: string | undefined;
|
|
@@ -3868,18 +4315,21 @@ export declare const configSchemas: ({
|
|
|
3868
4315
|
color: z.ZodOptional<z.ZodString>;
|
|
3869
4316
|
size: z.ZodOptional<z.ZodString>;
|
|
3870
4317
|
shadow: z.ZodOptional<z.ZodString>;
|
|
4318
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
3871
4319
|
}, "strip", z.ZodTypeAny, {
|
|
3872
4320
|
size?: string | undefined;
|
|
3873
4321
|
background?: string | undefined;
|
|
3874
4322
|
backgroundHover?: string | undefined;
|
|
3875
4323
|
color?: string | undefined;
|
|
3876
4324
|
shadow?: string | undefined;
|
|
4325
|
+
borderRadius?: string | undefined;
|
|
3877
4326
|
}, {
|
|
3878
4327
|
size?: string | undefined;
|
|
3879
4328
|
background?: string | undefined;
|
|
3880
4329
|
backgroundHover?: string | undefined;
|
|
3881
4330
|
color?: string | undefined;
|
|
3882
4331
|
shadow?: string | undefined;
|
|
4332
|
+
borderRadius?: string | undefined;
|
|
3883
4333
|
}>>;
|
|
3884
4334
|
tile: z.ZodOptional<z.ZodObject<{
|
|
3885
4335
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -3891,6 +4341,9 @@ export declare const configSchemas: ({
|
|
|
3891
4341
|
textColor: z.ZodOptional<z.ZodString>;
|
|
3892
4342
|
iconBackground: z.ZodOptional<z.ZodString>;
|
|
3893
4343
|
iconShadow: z.ZodOptional<z.ZodString>;
|
|
4344
|
+
headerPadding: z.ZodOptional<z.ZodString>;
|
|
4345
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
4346
|
+
gap: z.ZodOptional<z.ZodString>;
|
|
3894
4347
|
}, "strip", z.ZodTypeAny, {
|
|
3895
4348
|
background?: string | undefined;
|
|
3896
4349
|
border?: string | undefined;
|
|
@@ -3901,6 +4354,9 @@ export declare const configSchemas: ({
|
|
|
3901
4354
|
textColor?: string | undefined;
|
|
3902
4355
|
iconBackground?: string | undefined;
|
|
3903
4356
|
iconShadow?: string | undefined;
|
|
4357
|
+
headerPadding?: string | undefined;
|
|
4358
|
+
bodyPadding?: string | undefined;
|
|
4359
|
+
gap?: string | undefined;
|
|
3904
4360
|
}, {
|
|
3905
4361
|
background?: string | undefined;
|
|
3906
4362
|
border?: string | undefined;
|
|
@@ -3911,10 +4367,16 @@ export declare const configSchemas: ({
|
|
|
3911
4367
|
textColor?: string | undefined;
|
|
3912
4368
|
iconBackground?: string | undefined;
|
|
3913
4369
|
iconShadow?: string | undefined;
|
|
4370
|
+
headerPadding?: string | undefined;
|
|
4371
|
+
bodyPadding?: string | undefined;
|
|
4372
|
+
gap?: string | undefined;
|
|
3914
4373
|
}>>;
|
|
3915
4374
|
overlay: z.ZodOptional<z.ZodObject<{
|
|
3916
4375
|
background: z.ZodOptional<z.ZodString>;
|
|
3917
4376
|
textColor: z.ZodOptional<z.ZodString>;
|
|
4377
|
+
titleColor: z.ZodOptional<z.ZodString>;
|
|
4378
|
+
arrowColor: z.ZodOptional<z.ZodString>;
|
|
4379
|
+
arrowSize: z.ZodOptional<z.ZodString>;
|
|
3918
4380
|
border: z.ZodOptional<z.ZodString>;
|
|
3919
4381
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
3920
4382
|
scrimOpacity: z.ZodOptional<z.ZodString>;
|
|
@@ -3923,14 +4385,20 @@ export declare const configSchemas: ({
|
|
|
3923
4385
|
background?: string | undefined;
|
|
3924
4386
|
border?: string | undefined;
|
|
3925
4387
|
borderRadius?: string | undefined;
|
|
4388
|
+
titleColor?: string | undefined;
|
|
3926
4389
|
textColor?: string | undefined;
|
|
4390
|
+
arrowColor?: string | undefined;
|
|
4391
|
+
arrowSize?: string | undefined;
|
|
3927
4392
|
scrimOpacity?: string | undefined;
|
|
3928
4393
|
highlightRing?: string | undefined;
|
|
3929
4394
|
}, {
|
|
3930
4395
|
background?: string | undefined;
|
|
3931
4396
|
border?: string | undefined;
|
|
3932
4397
|
borderRadius?: string | undefined;
|
|
4398
|
+
titleColor?: string | undefined;
|
|
3933
4399
|
textColor?: string | undefined;
|
|
4400
|
+
arrowColor?: string | undefined;
|
|
4401
|
+
arrowSize?: string | undefined;
|
|
3934
4402
|
scrimOpacity?: string | undefined;
|
|
3935
4403
|
highlightRing?: string | undefined;
|
|
3936
4404
|
}>>;
|
|
@@ -3968,7 +4436,96 @@ export declare const configSchemas: ({
|
|
|
3968
4436
|
errorColor?: string | undefined;
|
|
3969
4437
|
progressGradient?: string | undefined;
|
|
3970
4438
|
}>>;
|
|
4439
|
+
content: z.ZodOptional<z.ZodObject<{
|
|
4440
|
+
background: z.ZodOptional<z.ZodString>;
|
|
4441
|
+
backgroundHover: z.ZodOptional<z.ZodString>;
|
|
4442
|
+
border: z.ZodOptional<z.ZodString>;
|
|
4443
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
4444
|
+
textColor: z.ZodOptional<z.ZodString>;
|
|
4445
|
+
textSecondaryColor: z.ZodOptional<z.ZodString>;
|
|
4446
|
+
itemDivider: z.ZodOptional<z.ZodString>;
|
|
4447
|
+
itemGap: z.ZodOptional<z.ZodString>;
|
|
4448
|
+
itemPadding: z.ZodOptional<z.ZodString>;
|
|
4449
|
+
itemFontSize: z.ZodOptional<z.ZodString>;
|
|
4450
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
4451
|
+
bodyFontSize: z.ZodOptional<z.ZodString>;
|
|
4452
|
+
categoryPadding: z.ZodOptional<z.ZodString>;
|
|
4453
|
+
categoryGap: z.ZodOptional<z.ZodString>;
|
|
4454
|
+
categoryFontSize: z.ZodOptional<z.ZodString>;
|
|
4455
|
+
searchBackground: z.ZodOptional<z.ZodString>;
|
|
4456
|
+
searchColor: z.ZodOptional<z.ZodString>;
|
|
4457
|
+
chevronColor: z.ZodOptional<z.ZodString>;
|
|
4458
|
+
}, "strip", z.ZodTypeAny, {
|
|
4459
|
+
background?: string | undefined;
|
|
4460
|
+
border?: string | undefined;
|
|
4461
|
+
backgroundHover?: string | undefined;
|
|
4462
|
+
borderRadius?: string | undefined;
|
|
4463
|
+
textColor?: string | undefined;
|
|
4464
|
+
bodyPadding?: string | undefined;
|
|
4465
|
+
textSecondaryColor?: string | undefined;
|
|
4466
|
+
itemDivider?: string | undefined;
|
|
4467
|
+
itemGap?: string | undefined;
|
|
4468
|
+
itemPadding?: string | undefined;
|
|
4469
|
+
itemFontSize?: string | undefined;
|
|
4470
|
+
bodyFontSize?: string | undefined;
|
|
4471
|
+
categoryPadding?: string | undefined;
|
|
4472
|
+
categoryGap?: string | undefined;
|
|
4473
|
+
categoryFontSize?: string | undefined;
|
|
4474
|
+
searchBackground?: string | undefined;
|
|
4475
|
+
searchColor?: string | undefined;
|
|
4476
|
+
chevronColor?: string | undefined;
|
|
4477
|
+
}, {
|
|
4478
|
+
background?: string | undefined;
|
|
4479
|
+
border?: string | undefined;
|
|
4480
|
+
backgroundHover?: string | undefined;
|
|
4481
|
+
borderRadius?: string | undefined;
|
|
4482
|
+
textColor?: string | undefined;
|
|
4483
|
+
bodyPadding?: string | undefined;
|
|
4484
|
+
textSecondaryColor?: string | undefined;
|
|
4485
|
+
itemDivider?: string | undefined;
|
|
4486
|
+
itemGap?: string | undefined;
|
|
4487
|
+
itemPadding?: string | undefined;
|
|
4488
|
+
itemFontSize?: string | undefined;
|
|
4489
|
+
bodyFontSize?: string | undefined;
|
|
4490
|
+
categoryPadding?: string | undefined;
|
|
4491
|
+
categoryGap?: string | undefined;
|
|
4492
|
+
categoryFontSize?: string | undefined;
|
|
4493
|
+
searchBackground?: string | undefined;
|
|
4494
|
+
searchColor?: string | undefined;
|
|
4495
|
+
chevronColor?: string | undefined;
|
|
4496
|
+
}>>;
|
|
3971
4497
|
}, "strict", z.ZodTypeAny, {
|
|
4498
|
+
content?: {
|
|
4499
|
+
background?: string | undefined;
|
|
4500
|
+
border?: string | undefined;
|
|
4501
|
+
backgroundHover?: string | undefined;
|
|
4502
|
+
borderRadius?: string | undefined;
|
|
4503
|
+
textColor?: string | undefined;
|
|
4504
|
+
bodyPadding?: string | undefined;
|
|
4505
|
+
textSecondaryColor?: string | undefined;
|
|
4506
|
+
itemDivider?: string | undefined;
|
|
4507
|
+
itemGap?: string | undefined;
|
|
4508
|
+
itemPadding?: string | undefined;
|
|
4509
|
+
itemFontSize?: string | undefined;
|
|
4510
|
+
bodyFontSize?: string | undefined;
|
|
4511
|
+
categoryPadding?: string | undefined;
|
|
4512
|
+
categoryGap?: string | undefined;
|
|
4513
|
+
categoryFontSize?: string | undefined;
|
|
4514
|
+
searchBackground?: string | undefined;
|
|
4515
|
+
searchColor?: string | undefined;
|
|
4516
|
+
chevronColor?: string | undefined;
|
|
4517
|
+
} | undefined;
|
|
4518
|
+
overlay?: {
|
|
4519
|
+
background?: string | undefined;
|
|
4520
|
+
border?: string | undefined;
|
|
4521
|
+
borderRadius?: string | undefined;
|
|
4522
|
+
titleColor?: string | undefined;
|
|
4523
|
+
textColor?: string | undefined;
|
|
4524
|
+
arrowColor?: string | undefined;
|
|
4525
|
+
arrowSize?: string | undefined;
|
|
4526
|
+
scrimOpacity?: string | undefined;
|
|
4527
|
+
highlightRing?: string | undefined;
|
|
4528
|
+
} | undefined;
|
|
3972
4529
|
borderRadius?: string | undefined;
|
|
3973
4530
|
mode?: "dark" | "light" | undefined;
|
|
3974
4531
|
fontFamily?: string | undefined;
|
|
@@ -3976,6 +4533,7 @@ export declare const configSchemas: ({
|
|
|
3976
4533
|
colorPrimaryHover?: string | undefined;
|
|
3977
4534
|
canvas?: {
|
|
3978
4535
|
position?: "right" | "left" | undefined;
|
|
4536
|
+
layout?: "push" | "overlay" | undefined;
|
|
3979
4537
|
background?: string | undefined;
|
|
3980
4538
|
blur?: string | undefined;
|
|
3981
4539
|
border?: string | undefined;
|
|
@@ -3987,6 +4545,7 @@ export declare const configSchemas: ({
|
|
|
3987
4545
|
backgroundHover?: string | undefined;
|
|
3988
4546
|
color?: string | undefined;
|
|
3989
4547
|
shadow?: string | undefined;
|
|
4548
|
+
borderRadius?: string | undefined;
|
|
3990
4549
|
} | undefined;
|
|
3991
4550
|
tile?: {
|
|
3992
4551
|
background?: string | undefined;
|
|
@@ -3998,14 +4557,9 @@ export declare const configSchemas: ({
|
|
|
3998
4557
|
textColor?: string | undefined;
|
|
3999
4558
|
iconBackground?: string | undefined;
|
|
4000
4559
|
iconShadow?: string | undefined;
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
border?: string | undefined;
|
|
4005
|
-
borderRadius?: string | undefined;
|
|
4006
|
-
textColor?: string | undefined;
|
|
4007
|
-
scrimOpacity?: string | undefined;
|
|
4008
|
-
highlightRing?: string | undefined;
|
|
4560
|
+
headerPadding?: string | undefined;
|
|
4561
|
+
bodyPadding?: string | undefined;
|
|
4562
|
+
gap?: string | undefined;
|
|
4009
4563
|
} | undefined;
|
|
4010
4564
|
notification?: {
|
|
4011
4565
|
background?: string | undefined;
|
|
@@ -4020,6 +4574,37 @@ export declare const configSchemas: ({
|
|
|
4020
4574
|
progressGradient?: string | undefined;
|
|
4021
4575
|
} | undefined;
|
|
4022
4576
|
}, {
|
|
4577
|
+
content?: {
|
|
4578
|
+
background?: string | undefined;
|
|
4579
|
+
border?: string | undefined;
|
|
4580
|
+
backgroundHover?: string | undefined;
|
|
4581
|
+
borderRadius?: string | undefined;
|
|
4582
|
+
textColor?: string | undefined;
|
|
4583
|
+
bodyPadding?: string | undefined;
|
|
4584
|
+
textSecondaryColor?: string | undefined;
|
|
4585
|
+
itemDivider?: string | undefined;
|
|
4586
|
+
itemGap?: string | undefined;
|
|
4587
|
+
itemPadding?: string | undefined;
|
|
4588
|
+
itemFontSize?: string | undefined;
|
|
4589
|
+
bodyFontSize?: string | undefined;
|
|
4590
|
+
categoryPadding?: string | undefined;
|
|
4591
|
+
categoryGap?: string | undefined;
|
|
4592
|
+
categoryFontSize?: string | undefined;
|
|
4593
|
+
searchBackground?: string | undefined;
|
|
4594
|
+
searchColor?: string | undefined;
|
|
4595
|
+
chevronColor?: string | undefined;
|
|
4596
|
+
} | undefined;
|
|
4597
|
+
overlay?: {
|
|
4598
|
+
background?: string | undefined;
|
|
4599
|
+
border?: string | undefined;
|
|
4600
|
+
borderRadius?: string | undefined;
|
|
4601
|
+
titleColor?: string | undefined;
|
|
4602
|
+
textColor?: string | undefined;
|
|
4603
|
+
arrowColor?: string | undefined;
|
|
4604
|
+
arrowSize?: string | undefined;
|
|
4605
|
+
scrimOpacity?: string | undefined;
|
|
4606
|
+
highlightRing?: string | undefined;
|
|
4607
|
+
} | undefined;
|
|
4023
4608
|
borderRadius?: string | undefined;
|
|
4024
4609
|
mode?: "dark" | "light" | undefined;
|
|
4025
4610
|
fontFamily?: string | undefined;
|
|
@@ -4027,6 +4612,7 @@ export declare const configSchemas: ({
|
|
|
4027
4612
|
colorPrimaryHover?: string | undefined;
|
|
4028
4613
|
canvas?: {
|
|
4029
4614
|
position?: "right" | "left" | undefined;
|
|
4615
|
+
layout?: "push" | "overlay" | undefined;
|
|
4030
4616
|
background?: string | undefined;
|
|
4031
4617
|
blur?: string | undefined;
|
|
4032
4618
|
border?: string | undefined;
|
|
@@ -4038,6 +4624,7 @@ export declare const configSchemas: ({
|
|
|
4038
4624
|
backgroundHover?: string | undefined;
|
|
4039
4625
|
color?: string | undefined;
|
|
4040
4626
|
shadow?: string | undefined;
|
|
4627
|
+
borderRadius?: string | undefined;
|
|
4041
4628
|
} | undefined;
|
|
4042
4629
|
tile?: {
|
|
4043
4630
|
background?: string | undefined;
|
|
@@ -4049,14 +4636,9 @@ export declare const configSchemas: ({
|
|
|
4049
4636
|
textColor?: string | undefined;
|
|
4050
4637
|
iconBackground?: string | undefined;
|
|
4051
4638
|
iconShadow?: string | undefined;
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4055
|
-
border?: string | undefined;
|
|
4056
|
-
borderRadius?: string | undefined;
|
|
4057
|
-
textColor?: string | undefined;
|
|
4058
|
-
scrimOpacity?: string | undefined;
|
|
4059
|
-
highlightRing?: string | undefined;
|
|
4639
|
+
headerPadding?: string | undefined;
|
|
4640
|
+
bodyPadding?: string | undefined;
|
|
4641
|
+
gap?: string | undefined;
|
|
4060
4642
|
} | undefined;
|
|
4061
4643
|
notification?: {
|
|
4062
4644
|
background?: string | undefined;
|
|
@@ -4076,6 +4658,7 @@ export declare const configSchemas: ({
|
|
|
4076
4658
|
schema: z.ZodObject<{
|
|
4077
4659
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4078
4660
|
label: z.ZodOptional<z.ZodString>;
|
|
4661
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
4079
4662
|
position: z.ZodOptional<z.ZodString>;
|
|
4080
4663
|
animate: z.ZodOptional<z.ZodBoolean>;
|
|
4081
4664
|
animationStyle: z.ZodOptional<z.ZodEnum<["pulse", "bounce", "glow"]>>;
|
|
@@ -4083,6 +4666,7 @@ export declare const configSchemas: ({
|
|
|
4083
4666
|
}, "strict", z.ZodTypeAny, {
|
|
4084
4667
|
position?: string | undefined;
|
|
4085
4668
|
label?: string | undefined;
|
|
4669
|
+
icon?: string | undefined;
|
|
4086
4670
|
enabled?: boolean | undefined;
|
|
4087
4671
|
animate?: boolean | undefined;
|
|
4088
4672
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -4090,6 +4674,7 @@ export declare const configSchemas: ({
|
|
|
4090
4674
|
}, {
|
|
4091
4675
|
position?: string | undefined;
|
|
4092
4676
|
label?: string | undefined;
|
|
4677
|
+
icon?: string | undefined;
|
|
4093
4678
|
enabled?: boolean | undefined;
|
|
4094
4679
|
animate?: boolean | undefined;
|
|
4095
4680
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -4105,6 +4690,8 @@ export declare const configSchemas: ({
|
|
|
4105
4690
|
tiles: z.ZodArray<z.ZodObject<{
|
|
4106
4691
|
id: z.ZodString;
|
|
4107
4692
|
title: z.ZodOptional<z.ZodString>;
|
|
4693
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
4694
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
4108
4695
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
4109
4696
|
widget: z.ZodString;
|
|
4110
4697
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -4823,6 +5410,8 @@ export declare const configSchemas: ({
|
|
|
4823
5410
|
props?: Record<string, unknown> | undefined;
|
|
4824
5411
|
priority?: number | undefined;
|
|
4825
5412
|
title?: string | undefined;
|
|
5413
|
+
icon?: string | undefined;
|
|
5414
|
+
subtitle?: string | undefined;
|
|
4826
5415
|
activation?: {
|
|
4827
5416
|
routes: {
|
|
4828
5417
|
include?: string[] | undefined;
|
|
@@ -4928,6 +5517,8 @@ export declare const configSchemas: ({
|
|
|
4928
5517
|
props?: Record<string, unknown> | undefined;
|
|
4929
5518
|
priority?: number | undefined;
|
|
4930
5519
|
title?: string | undefined;
|
|
5520
|
+
icon?: string | undefined;
|
|
5521
|
+
subtitle?: string | undefined;
|
|
4931
5522
|
activation?: {
|
|
4932
5523
|
routes: {
|
|
4933
5524
|
include?: string[] | undefined;
|
|
@@ -5037,18 +5628,21 @@ export declare const configSchemas: ({
|
|
|
5037
5628
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
5038
5629
|
canvas: z.ZodOptional<z.ZodObject<{
|
|
5039
5630
|
position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
5631
|
+
layout: z.ZodOptional<z.ZodEnum<["overlay", "push"]>>;
|
|
5040
5632
|
background: z.ZodOptional<z.ZodString>;
|
|
5041
5633
|
blur: z.ZodOptional<z.ZodString>;
|
|
5042
5634
|
border: z.ZodOptional<z.ZodString>;
|
|
5043
5635
|
width: z.ZodOptional<z.ZodString>;
|
|
5044
5636
|
}, "strip", z.ZodTypeAny, {
|
|
5045
5637
|
position?: "right" | "left" | undefined;
|
|
5638
|
+
layout?: "push" | "overlay" | undefined;
|
|
5046
5639
|
background?: string | undefined;
|
|
5047
5640
|
blur?: string | undefined;
|
|
5048
5641
|
border?: string | undefined;
|
|
5049
5642
|
width?: string | undefined;
|
|
5050
5643
|
}, {
|
|
5051
5644
|
position?: "right" | "left" | undefined;
|
|
5645
|
+
layout?: "push" | "overlay" | undefined;
|
|
5052
5646
|
background?: string | undefined;
|
|
5053
5647
|
blur?: string | undefined;
|
|
5054
5648
|
border?: string | undefined;
|
|
@@ -5060,18 +5654,21 @@ export declare const configSchemas: ({
|
|
|
5060
5654
|
color: z.ZodOptional<z.ZodString>;
|
|
5061
5655
|
size: z.ZodOptional<z.ZodString>;
|
|
5062
5656
|
shadow: z.ZodOptional<z.ZodString>;
|
|
5657
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
5063
5658
|
}, "strip", z.ZodTypeAny, {
|
|
5064
5659
|
size?: string | undefined;
|
|
5065
5660
|
background?: string | undefined;
|
|
5066
5661
|
backgroundHover?: string | undefined;
|
|
5067
5662
|
color?: string | undefined;
|
|
5068
5663
|
shadow?: string | undefined;
|
|
5664
|
+
borderRadius?: string | undefined;
|
|
5069
5665
|
}, {
|
|
5070
5666
|
size?: string | undefined;
|
|
5071
5667
|
background?: string | undefined;
|
|
5072
5668
|
backgroundHover?: string | undefined;
|
|
5073
5669
|
color?: string | undefined;
|
|
5074
5670
|
shadow?: string | undefined;
|
|
5671
|
+
borderRadius?: string | undefined;
|
|
5075
5672
|
}>>;
|
|
5076
5673
|
tile: z.ZodOptional<z.ZodObject<{
|
|
5077
5674
|
background: z.ZodOptional<z.ZodString>;
|
|
@@ -5083,6 +5680,9 @@ export declare const configSchemas: ({
|
|
|
5083
5680
|
textColor: z.ZodOptional<z.ZodString>;
|
|
5084
5681
|
iconBackground: z.ZodOptional<z.ZodString>;
|
|
5085
5682
|
iconShadow: z.ZodOptional<z.ZodString>;
|
|
5683
|
+
headerPadding: z.ZodOptional<z.ZodString>;
|
|
5684
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
5685
|
+
gap: z.ZodOptional<z.ZodString>;
|
|
5086
5686
|
}, "strip", z.ZodTypeAny, {
|
|
5087
5687
|
background?: string | undefined;
|
|
5088
5688
|
border?: string | undefined;
|
|
@@ -5093,6 +5693,9 @@ export declare const configSchemas: ({
|
|
|
5093
5693
|
textColor?: string | undefined;
|
|
5094
5694
|
iconBackground?: string | undefined;
|
|
5095
5695
|
iconShadow?: string | undefined;
|
|
5696
|
+
headerPadding?: string | undefined;
|
|
5697
|
+
bodyPadding?: string | undefined;
|
|
5698
|
+
gap?: string | undefined;
|
|
5096
5699
|
}, {
|
|
5097
5700
|
background?: string | undefined;
|
|
5098
5701
|
border?: string | undefined;
|
|
@@ -5103,10 +5706,16 @@ export declare const configSchemas: ({
|
|
|
5103
5706
|
textColor?: string | undefined;
|
|
5104
5707
|
iconBackground?: string | undefined;
|
|
5105
5708
|
iconShadow?: string | undefined;
|
|
5709
|
+
headerPadding?: string | undefined;
|
|
5710
|
+
bodyPadding?: string | undefined;
|
|
5711
|
+
gap?: string | undefined;
|
|
5106
5712
|
}>>;
|
|
5107
5713
|
overlay: z.ZodOptional<z.ZodObject<{
|
|
5108
5714
|
background: z.ZodOptional<z.ZodString>;
|
|
5109
5715
|
textColor: z.ZodOptional<z.ZodString>;
|
|
5716
|
+
titleColor: z.ZodOptional<z.ZodString>;
|
|
5717
|
+
arrowColor: z.ZodOptional<z.ZodString>;
|
|
5718
|
+
arrowSize: z.ZodOptional<z.ZodString>;
|
|
5110
5719
|
border: z.ZodOptional<z.ZodString>;
|
|
5111
5720
|
borderRadius: z.ZodOptional<z.ZodString>;
|
|
5112
5721
|
scrimOpacity: z.ZodOptional<z.ZodString>;
|
|
@@ -5115,14 +5724,20 @@ export declare const configSchemas: ({
|
|
|
5115
5724
|
background?: string | undefined;
|
|
5116
5725
|
border?: string | undefined;
|
|
5117
5726
|
borderRadius?: string | undefined;
|
|
5727
|
+
titleColor?: string | undefined;
|
|
5118
5728
|
textColor?: string | undefined;
|
|
5729
|
+
arrowColor?: string | undefined;
|
|
5730
|
+
arrowSize?: string | undefined;
|
|
5119
5731
|
scrimOpacity?: string | undefined;
|
|
5120
5732
|
highlightRing?: string | undefined;
|
|
5121
5733
|
}, {
|
|
5122
5734
|
background?: string | undefined;
|
|
5123
5735
|
border?: string | undefined;
|
|
5124
5736
|
borderRadius?: string | undefined;
|
|
5737
|
+
titleColor?: string | undefined;
|
|
5125
5738
|
textColor?: string | undefined;
|
|
5739
|
+
arrowColor?: string | undefined;
|
|
5740
|
+
arrowSize?: string | undefined;
|
|
5126
5741
|
scrimOpacity?: string | undefined;
|
|
5127
5742
|
highlightRing?: string | undefined;
|
|
5128
5743
|
}>>;
|
|
@@ -5160,7 +5775,96 @@ export declare const configSchemas: ({
|
|
|
5160
5775
|
errorColor?: string | undefined;
|
|
5161
5776
|
progressGradient?: string | undefined;
|
|
5162
5777
|
}>>;
|
|
5778
|
+
content: z.ZodOptional<z.ZodObject<{
|
|
5779
|
+
background: z.ZodOptional<z.ZodString>;
|
|
5780
|
+
backgroundHover: z.ZodOptional<z.ZodString>;
|
|
5781
|
+
border: z.ZodOptional<z.ZodString>;
|
|
5782
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
5783
|
+
textColor: z.ZodOptional<z.ZodString>;
|
|
5784
|
+
textSecondaryColor: z.ZodOptional<z.ZodString>;
|
|
5785
|
+
itemDivider: z.ZodOptional<z.ZodString>;
|
|
5786
|
+
itemGap: z.ZodOptional<z.ZodString>;
|
|
5787
|
+
itemPadding: z.ZodOptional<z.ZodString>;
|
|
5788
|
+
itemFontSize: z.ZodOptional<z.ZodString>;
|
|
5789
|
+
bodyPadding: z.ZodOptional<z.ZodString>;
|
|
5790
|
+
bodyFontSize: z.ZodOptional<z.ZodString>;
|
|
5791
|
+
categoryPadding: z.ZodOptional<z.ZodString>;
|
|
5792
|
+
categoryGap: z.ZodOptional<z.ZodString>;
|
|
5793
|
+
categoryFontSize: z.ZodOptional<z.ZodString>;
|
|
5794
|
+
searchBackground: z.ZodOptional<z.ZodString>;
|
|
5795
|
+
searchColor: z.ZodOptional<z.ZodString>;
|
|
5796
|
+
chevronColor: z.ZodOptional<z.ZodString>;
|
|
5797
|
+
}, "strip", z.ZodTypeAny, {
|
|
5798
|
+
background?: string | undefined;
|
|
5799
|
+
border?: string | undefined;
|
|
5800
|
+
backgroundHover?: string | undefined;
|
|
5801
|
+
borderRadius?: string | undefined;
|
|
5802
|
+
textColor?: string | undefined;
|
|
5803
|
+
bodyPadding?: string | undefined;
|
|
5804
|
+
textSecondaryColor?: string | undefined;
|
|
5805
|
+
itemDivider?: string | undefined;
|
|
5806
|
+
itemGap?: string | undefined;
|
|
5807
|
+
itemPadding?: string | undefined;
|
|
5808
|
+
itemFontSize?: string | undefined;
|
|
5809
|
+
bodyFontSize?: string | undefined;
|
|
5810
|
+
categoryPadding?: string | undefined;
|
|
5811
|
+
categoryGap?: string | undefined;
|
|
5812
|
+
categoryFontSize?: string | undefined;
|
|
5813
|
+
searchBackground?: string | undefined;
|
|
5814
|
+
searchColor?: string | undefined;
|
|
5815
|
+
chevronColor?: string | undefined;
|
|
5816
|
+
}, {
|
|
5817
|
+
background?: string | undefined;
|
|
5818
|
+
border?: string | undefined;
|
|
5819
|
+
backgroundHover?: string | undefined;
|
|
5820
|
+
borderRadius?: string | undefined;
|
|
5821
|
+
textColor?: string | undefined;
|
|
5822
|
+
bodyPadding?: string | undefined;
|
|
5823
|
+
textSecondaryColor?: string | undefined;
|
|
5824
|
+
itemDivider?: string | undefined;
|
|
5825
|
+
itemGap?: string | undefined;
|
|
5826
|
+
itemPadding?: string | undefined;
|
|
5827
|
+
itemFontSize?: string | undefined;
|
|
5828
|
+
bodyFontSize?: string | undefined;
|
|
5829
|
+
categoryPadding?: string | undefined;
|
|
5830
|
+
categoryGap?: string | undefined;
|
|
5831
|
+
categoryFontSize?: string | undefined;
|
|
5832
|
+
searchBackground?: string | undefined;
|
|
5833
|
+
searchColor?: string | undefined;
|
|
5834
|
+
chevronColor?: string | undefined;
|
|
5835
|
+
}>>;
|
|
5163
5836
|
}, "strict", z.ZodTypeAny, {
|
|
5837
|
+
content?: {
|
|
5838
|
+
background?: string | undefined;
|
|
5839
|
+
border?: string | undefined;
|
|
5840
|
+
backgroundHover?: string | undefined;
|
|
5841
|
+
borderRadius?: string | undefined;
|
|
5842
|
+
textColor?: string | undefined;
|
|
5843
|
+
bodyPadding?: string | undefined;
|
|
5844
|
+
textSecondaryColor?: string | undefined;
|
|
5845
|
+
itemDivider?: string | undefined;
|
|
5846
|
+
itemGap?: string | undefined;
|
|
5847
|
+
itemPadding?: string | undefined;
|
|
5848
|
+
itemFontSize?: string | undefined;
|
|
5849
|
+
bodyFontSize?: string | undefined;
|
|
5850
|
+
categoryPadding?: string | undefined;
|
|
5851
|
+
categoryGap?: string | undefined;
|
|
5852
|
+
categoryFontSize?: string | undefined;
|
|
5853
|
+
searchBackground?: string | undefined;
|
|
5854
|
+
searchColor?: string | undefined;
|
|
5855
|
+
chevronColor?: string | undefined;
|
|
5856
|
+
} | undefined;
|
|
5857
|
+
overlay?: {
|
|
5858
|
+
background?: string | undefined;
|
|
5859
|
+
border?: string | undefined;
|
|
5860
|
+
borderRadius?: string | undefined;
|
|
5861
|
+
titleColor?: string | undefined;
|
|
5862
|
+
textColor?: string | undefined;
|
|
5863
|
+
arrowColor?: string | undefined;
|
|
5864
|
+
arrowSize?: string | undefined;
|
|
5865
|
+
scrimOpacity?: string | undefined;
|
|
5866
|
+
highlightRing?: string | undefined;
|
|
5867
|
+
} | undefined;
|
|
5164
5868
|
borderRadius?: string | undefined;
|
|
5165
5869
|
mode?: "dark" | "light" | undefined;
|
|
5166
5870
|
fontFamily?: string | undefined;
|
|
@@ -5168,6 +5872,7 @@ export declare const configSchemas: ({
|
|
|
5168
5872
|
colorPrimaryHover?: string | undefined;
|
|
5169
5873
|
canvas?: {
|
|
5170
5874
|
position?: "right" | "left" | undefined;
|
|
5875
|
+
layout?: "push" | "overlay" | undefined;
|
|
5171
5876
|
background?: string | undefined;
|
|
5172
5877
|
blur?: string | undefined;
|
|
5173
5878
|
border?: string | undefined;
|
|
@@ -5179,6 +5884,7 @@ export declare const configSchemas: ({
|
|
|
5179
5884
|
backgroundHover?: string | undefined;
|
|
5180
5885
|
color?: string | undefined;
|
|
5181
5886
|
shadow?: string | undefined;
|
|
5887
|
+
borderRadius?: string | undefined;
|
|
5182
5888
|
} | undefined;
|
|
5183
5889
|
tile?: {
|
|
5184
5890
|
background?: string | undefined;
|
|
@@ -5190,14 +5896,9 @@ export declare const configSchemas: ({
|
|
|
5190
5896
|
textColor?: string | undefined;
|
|
5191
5897
|
iconBackground?: string | undefined;
|
|
5192
5898
|
iconShadow?: string | undefined;
|
|
5193
|
-
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
border?: string | undefined;
|
|
5197
|
-
borderRadius?: string | undefined;
|
|
5198
|
-
textColor?: string | undefined;
|
|
5199
|
-
scrimOpacity?: string | undefined;
|
|
5200
|
-
highlightRing?: string | undefined;
|
|
5899
|
+
headerPadding?: string | undefined;
|
|
5900
|
+
bodyPadding?: string | undefined;
|
|
5901
|
+
gap?: string | undefined;
|
|
5201
5902
|
} | undefined;
|
|
5202
5903
|
notification?: {
|
|
5203
5904
|
background?: string | undefined;
|
|
@@ -5212,6 +5913,37 @@ export declare const configSchemas: ({
|
|
|
5212
5913
|
progressGradient?: string | undefined;
|
|
5213
5914
|
} | undefined;
|
|
5214
5915
|
}, {
|
|
5916
|
+
content?: {
|
|
5917
|
+
background?: string | undefined;
|
|
5918
|
+
border?: string | undefined;
|
|
5919
|
+
backgroundHover?: string | undefined;
|
|
5920
|
+
borderRadius?: string | undefined;
|
|
5921
|
+
textColor?: string | undefined;
|
|
5922
|
+
bodyPadding?: string | undefined;
|
|
5923
|
+
textSecondaryColor?: string | undefined;
|
|
5924
|
+
itemDivider?: string | undefined;
|
|
5925
|
+
itemGap?: string | undefined;
|
|
5926
|
+
itemPadding?: string | undefined;
|
|
5927
|
+
itemFontSize?: string | undefined;
|
|
5928
|
+
bodyFontSize?: string | undefined;
|
|
5929
|
+
categoryPadding?: string | undefined;
|
|
5930
|
+
categoryGap?: string | undefined;
|
|
5931
|
+
categoryFontSize?: string | undefined;
|
|
5932
|
+
searchBackground?: string | undefined;
|
|
5933
|
+
searchColor?: string | undefined;
|
|
5934
|
+
chevronColor?: string | undefined;
|
|
5935
|
+
} | undefined;
|
|
5936
|
+
overlay?: {
|
|
5937
|
+
background?: string | undefined;
|
|
5938
|
+
border?: string | undefined;
|
|
5939
|
+
borderRadius?: string | undefined;
|
|
5940
|
+
titleColor?: string | undefined;
|
|
5941
|
+
textColor?: string | undefined;
|
|
5942
|
+
arrowColor?: string | undefined;
|
|
5943
|
+
arrowSize?: string | undefined;
|
|
5944
|
+
scrimOpacity?: string | undefined;
|
|
5945
|
+
highlightRing?: string | undefined;
|
|
5946
|
+
} | undefined;
|
|
5215
5947
|
borderRadius?: string | undefined;
|
|
5216
5948
|
mode?: "dark" | "light" | undefined;
|
|
5217
5949
|
fontFamily?: string | undefined;
|
|
@@ -5219,6 +5951,7 @@ export declare const configSchemas: ({
|
|
|
5219
5951
|
colorPrimaryHover?: string | undefined;
|
|
5220
5952
|
canvas?: {
|
|
5221
5953
|
position?: "right" | "left" | undefined;
|
|
5954
|
+
layout?: "push" | "overlay" | undefined;
|
|
5222
5955
|
background?: string | undefined;
|
|
5223
5956
|
blur?: string | undefined;
|
|
5224
5957
|
border?: string | undefined;
|
|
@@ -5230,6 +5963,7 @@ export declare const configSchemas: ({
|
|
|
5230
5963
|
backgroundHover?: string | undefined;
|
|
5231
5964
|
color?: string | undefined;
|
|
5232
5965
|
shadow?: string | undefined;
|
|
5966
|
+
borderRadius?: string | undefined;
|
|
5233
5967
|
} | undefined;
|
|
5234
5968
|
tile?: {
|
|
5235
5969
|
background?: string | undefined;
|
|
@@ -5241,14 +5975,9 @@ export declare const configSchemas: ({
|
|
|
5241
5975
|
textColor?: string | undefined;
|
|
5242
5976
|
iconBackground?: string | undefined;
|
|
5243
5977
|
iconShadow?: string | undefined;
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
border?: string | undefined;
|
|
5248
|
-
borderRadius?: string | undefined;
|
|
5249
|
-
textColor?: string | undefined;
|
|
5250
|
-
scrimOpacity?: string | undefined;
|
|
5251
|
-
highlightRing?: string | undefined;
|
|
5978
|
+
headerPadding?: string | undefined;
|
|
5979
|
+
bodyPadding?: string | undefined;
|
|
5980
|
+
gap?: string | undefined;
|
|
5252
5981
|
} | undefined;
|
|
5253
5982
|
notification?: {
|
|
5254
5983
|
background?: string | undefined;
|
|
@@ -5266,6 +5995,7 @@ export declare const configSchemas: ({
|
|
|
5266
5995
|
launcher: z.ZodOptional<z.ZodObject<{
|
|
5267
5996
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5268
5997
|
label: z.ZodOptional<z.ZodString>;
|
|
5998
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
5269
5999
|
position: z.ZodOptional<z.ZodString>;
|
|
5270
6000
|
animate: z.ZodOptional<z.ZodBoolean>;
|
|
5271
6001
|
animationStyle: z.ZodOptional<z.ZodEnum<["pulse", "bounce", "glow"]>>;
|
|
@@ -5273,6 +6003,7 @@ export declare const configSchemas: ({
|
|
|
5273
6003
|
}, "strict", z.ZodTypeAny, {
|
|
5274
6004
|
position?: string | undefined;
|
|
5275
6005
|
label?: string | undefined;
|
|
6006
|
+
icon?: string | undefined;
|
|
5276
6007
|
enabled?: boolean | undefined;
|
|
5277
6008
|
animate?: boolean | undefined;
|
|
5278
6009
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -5280,6 +6011,7 @@ export declare const configSchemas: ({
|
|
|
5280
6011
|
}, {
|
|
5281
6012
|
position?: string | undefined;
|
|
5282
6013
|
label?: string | undefined;
|
|
6014
|
+
icon?: string | undefined;
|
|
5283
6015
|
enabled?: boolean | undefined;
|
|
5284
6016
|
animate?: boolean | undefined;
|
|
5285
6017
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -5295,6 +6027,8 @@ export declare const configSchemas: ({
|
|
|
5295
6027
|
props?: Record<string, unknown> | undefined;
|
|
5296
6028
|
priority?: number | undefined;
|
|
5297
6029
|
title?: string | undefined;
|
|
6030
|
+
icon?: string | undefined;
|
|
6031
|
+
subtitle?: string | undefined;
|
|
5298
6032
|
activation?: {
|
|
5299
6033
|
routes: {
|
|
5300
6034
|
include?: string[] | undefined;
|
|
@@ -5398,6 +6132,7 @@ export declare const configSchemas: ({
|
|
|
5398
6132
|
launcher?: {
|
|
5399
6133
|
position?: string | undefined;
|
|
5400
6134
|
label?: string | undefined;
|
|
6135
|
+
icon?: string | undefined;
|
|
5401
6136
|
enabled?: boolean | undefined;
|
|
5402
6137
|
animate?: boolean | undefined;
|
|
5403
6138
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -5407,6 +6142,37 @@ export declare const configSchemas: ({
|
|
|
5407
6142
|
configVersion?: string | undefined;
|
|
5408
6143
|
canvasTitle?: string | undefined;
|
|
5409
6144
|
theme?: {
|
|
6145
|
+
content?: {
|
|
6146
|
+
background?: string | undefined;
|
|
6147
|
+
border?: string | undefined;
|
|
6148
|
+
backgroundHover?: string | undefined;
|
|
6149
|
+
borderRadius?: string | undefined;
|
|
6150
|
+
textColor?: string | undefined;
|
|
6151
|
+
bodyPadding?: string | undefined;
|
|
6152
|
+
textSecondaryColor?: string | undefined;
|
|
6153
|
+
itemDivider?: string | undefined;
|
|
6154
|
+
itemGap?: string | undefined;
|
|
6155
|
+
itemPadding?: string | undefined;
|
|
6156
|
+
itemFontSize?: string | undefined;
|
|
6157
|
+
bodyFontSize?: string | undefined;
|
|
6158
|
+
categoryPadding?: string | undefined;
|
|
6159
|
+
categoryGap?: string | undefined;
|
|
6160
|
+
categoryFontSize?: string | undefined;
|
|
6161
|
+
searchBackground?: string | undefined;
|
|
6162
|
+
searchColor?: string | undefined;
|
|
6163
|
+
chevronColor?: string | undefined;
|
|
6164
|
+
} | undefined;
|
|
6165
|
+
overlay?: {
|
|
6166
|
+
background?: string | undefined;
|
|
6167
|
+
border?: string | undefined;
|
|
6168
|
+
borderRadius?: string | undefined;
|
|
6169
|
+
titleColor?: string | undefined;
|
|
6170
|
+
textColor?: string | undefined;
|
|
6171
|
+
arrowColor?: string | undefined;
|
|
6172
|
+
arrowSize?: string | undefined;
|
|
6173
|
+
scrimOpacity?: string | undefined;
|
|
6174
|
+
highlightRing?: string | undefined;
|
|
6175
|
+
} | undefined;
|
|
5410
6176
|
borderRadius?: string | undefined;
|
|
5411
6177
|
mode?: "dark" | "light" | undefined;
|
|
5412
6178
|
fontFamily?: string | undefined;
|
|
@@ -5414,6 +6180,7 @@ export declare const configSchemas: ({
|
|
|
5414
6180
|
colorPrimaryHover?: string | undefined;
|
|
5415
6181
|
canvas?: {
|
|
5416
6182
|
position?: "right" | "left" | undefined;
|
|
6183
|
+
layout?: "push" | "overlay" | undefined;
|
|
5417
6184
|
background?: string | undefined;
|
|
5418
6185
|
blur?: string | undefined;
|
|
5419
6186
|
border?: string | undefined;
|
|
@@ -5425,6 +6192,7 @@ export declare const configSchemas: ({
|
|
|
5425
6192
|
backgroundHover?: string | undefined;
|
|
5426
6193
|
color?: string | undefined;
|
|
5427
6194
|
shadow?: string | undefined;
|
|
6195
|
+
borderRadius?: string | undefined;
|
|
5428
6196
|
} | undefined;
|
|
5429
6197
|
tile?: {
|
|
5430
6198
|
background?: string | undefined;
|
|
@@ -5436,14 +6204,9 @@ export declare const configSchemas: ({
|
|
|
5436
6204
|
textColor?: string | undefined;
|
|
5437
6205
|
iconBackground?: string | undefined;
|
|
5438
6206
|
iconShadow?: string | undefined;
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
border?: string | undefined;
|
|
5443
|
-
borderRadius?: string | undefined;
|
|
5444
|
-
textColor?: string | undefined;
|
|
5445
|
-
scrimOpacity?: string | undefined;
|
|
5446
|
-
highlightRing?: string | undefined;
|
|
6207
|
+
headerPadding?: string | undefined;
|
|
6208
|
+
bodyPadding?: string | undefined;
|
|
6209
|
+
gap?: string | undefined;
|
|
5447
6210
|
} | undefined;
|
|
5448
6211
|
notification?: {
|
|
5449
6212
|
background?: string | undefined;
|
|
@@ -5468,6 +6231,8 @@ export declare const configSchemas: ({
|
|
|
5468
6231
|
props?: Record<string, unknown> | undefined;
|
|
5469
6232
|
priority?: number | undefined;
|
|
5470
6233
|
title?: string | undefined;
|
|
6234
|
+
icon?: string | undefined;
|
|
6235
|
+
subtitle?: string | undefined;
|
|
5471
6236
|
activation?: {
|
|
5472
6237
|
routes: {
|
|
5473
6238
|
include?: string[] | undefined;
|
|
@@ -5571,6 +6336,7 @@ export declare const configSchemas: ({
|
|
|
5571
6336
|
launcher?: {
|
|
5572
6337
|
position?: string | undefined;
|
|
5573
6338
|
label?: string | undefined;
|
|
6339
|
+
icon?: string | undefined;
|
|
5574
6340
|
enabled?: boolean | undefined;
|
|
5575
6341
|
animate?: boolean | undefined;
|
|
5576
6342
|
animationStyle?: "pulse" | "bounce" | "glow" | undefined;
|
|
@@ -5580,6 +6346,37 @@ export declare const configSchemas: ({
|
|
|
5580
6346
|
configVersion?: string | undefined;
|
|
5581
6347
|
canvasTitle?: string | undefined;
|
|
5582
6348
|
theme?: {
|
|
6349
|
+
content?: {
|
|
6350
|
+
background?: string | undefined;
|
|
6351
|
+
border?: string | undefined;
|
|
6352
|
+
backgroundHover?: string | undefined;
|
|
6353
|
+
borderRadius?: string | undefined;
|
|
6354
|
+
textColor?: string | undefined;
|
|
6355
|
+
bodyPadding?: string | undefined;
|
|
6356
|
+
textSecondaryColor?: string | undefined;
|
|
6357
|
+
itemDivider?: string | undefined;
|
|
6358
|
+
itemGap?: string | undefined;
|
|
6359
|
+
itemPadding?: string | undefined;
|
|
6360
|
+
itemFontSize?: string | undefined;
|
|
6361
|
+
bodyFontSize?: string | undefined;
|
|
6362
|
+
categoryPadding?: string | undefined;
|
|
6363
|
+
categoryGap?: string | undefined;
|
|
6364
|
+
categoryFontSize?: string | undefined;
|
|
6365
|
+
searchBackground?: string | undefined;
|
|
6366
|
+
searchColor?: string | undefined;
|
|
6367
|
+
chevronColor?: string | undefined;
|
|
6368
|
+
} | undefined;
|
|
6369
|
+
overlay?: {
|
|
6370
|
+
background?: string | undefined;
|
|
6371
|
+
border?: string | undefined;
|
|
6372
|
+
borderRadius?: string | undefined;
|
|
6373
|
+
titleColor?: string | undefined;
|
|
6374
|
+
textColor?: string | undefined;
|
|
6375
|
+
arrowColor?: string | undefined;
|
|
6376
|
+
arrowSize?: string | undefined;
|
|
6377
|
+
scrimOpacity?: string | undefined;
|
|
6378
|
+
highlightRing?: string | undefined;
|
|
6379
|
+
} | undefined;
|
|
5583
6380
|
borderRadius?: string | undefined;
|
|
5584
6381
|
mode?: "dark" | "light" | undefined;
|
|
5585
6382
|
fontFamily?: string | undefined;
|
|
@@ -5587,6 +6384,7 @@ export declare const configSchemas: ({
|
|
|
5587
6384
|
colorPrimaryHover?: string | undefined;
|
|
5588
6385
|
canvas?: {
|
|
5589
6386
|
position?: "right" | "left" | undefined;
|
|
6387
|
+
layout?: "push" | "overlay" | undefined;
|
|
5590
6388
|
background?: string | undefined;
|
|
5591
6389
|
blur?: string | undefined;
|
|
5592
6390
|
border?: string | undefined;
|
|
@@ -5598,6 +6396,7 @@ export declare const configSchemas: ({
|
|
|
5598
6396
|
backgroundHover?: string | undefined;
|
|
5599
6397
|
color?: string | undefined;
|
|
5600
6398
|
shadow?: string | undefined;
|
|
6399
|
+
borderRadius?: string | undefined;
|
|
5601
6400
|
} | undefined;
|
|
5602
6401
|
tile?: {
|
|
5603
6402
|
background?: string | undefined;
|
|
@@ -5609,14 +6408,9 @@ export declare const configSchemas: ({
|
|
|
5609
6408
|
textColor?: string | undefined;
|
|
5610
6409
|
iconBackground?: string | undefined;
|
|
5611
6410
|
iconShadow?: string | undefined;
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
border?: string | undefined;
|
|
5616
|
-
borderRadius?: string | undefined;
|
|
5617
|
-
textColor?: string | undefined;
|
|
5618
|
-
scrimOpacity?: string | undefined;
|
|
5619
|
-
highlightRing?: string | undefined;
|
|
6411
|
+
headerPadding?: string | undefined;
|
|
6412
|
+
bodyPadding?: string | undefined;
|
|
6413
|
+
gap?: string | undefined;
|
|
5620
6414
|
} | undefined;
|
|
5621
6415
|
notification?: {
|
|
5622
6416
|
background?: string | undefined;
|