@vuetify/one 2.6.7 → 2.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +61 -25
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -240,7 +240,7 @@ interface BinsState {
|
|
|
240
240
|
all: Ref<VOneBin[]>;
|
|
241
241
|
index: () => Promise<VOneBin[]>;
|
|
242
242
|
}
|
|
243
|
-
declare const useBinsStore: pinia.StoreDefinition<"bins", Pick<BinsState, "isLoading" | "all">, Pick<BinsState, "
|
|
243
|
+
declare const useBinsStore: pinia.StoreDefinition<"bins", Pick<BinsState, "isLoading" | "all">, Pick<BinsState, "favorites" | "pinned">, Pick<BinsState, "index">>;
|
|
244
244
|
|
|
245
245
|
interface VOneSendowlDownloadItem {
|
|
246
246
|
name: string;
|
|
@@ -1044,6 +1044,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1044
1044
|
version: globalThis.Ref<7, 7>;
|
|
1045
1045
|
ecosystem: globalThis.Ref<{
|
|
1046
1046
|
bin: {
|
|
1047
|
+
[x: string]: unknown;
|
|
1047
1048
|
wordWrap: boolean;
|
|
1048
1049
|
dashboard?: {
|
|
1049
1050
|
[x: string]: any;
|
|
@@ -1055,6 +1056,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1055
1056
|
} | undefined;
|
|
1056
1057
|
};
|
|
1057
1058
|
play: {
|
|
1059
|
+
[x: string]: unknown;
|
|
1058
1060
|
showErrors: boolean;
|
|
1059
1061
|
wordWrap: boolean;
|
|
1060
1062
|
dashboard?: {
|
|
@@ -1066,7 +1068,8 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1066
1068
|
itemsPerPage: number;
|
|
1067
1069
|
} | undefined;
|
|
1068
1070
|
};
|
|
1069
|
-
studio
|
|
1071
|
+
studio: {
|
|
1072
|
+
[x: string]: unknown;
|
|
1070
1073
|
dashboard?: {
|
|
1071
1074
|
[x: string]: any;
|
|
1072
1075
|
sortBy: {
|
|
@@ -1075,8 +1078,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1075
1078
|
}[];
|
|
1076
1079
|
itemsPerPage: number;
|
|
1077
1080
|
} | undefined;
|
|
1078
|
-
}
|
|
1079
|
-
link
|
|
1081
|
+
};
|
|
1082
|
+
link: {
|
|
1083
|
+
[x: string]: unknown;
|
|
1080
1084
|
dashboard?: {
|
|
1081
1085
|
[x: string]: any;
|
|
1082
1086
|
sortBy: {
|
|
@@ -1085,8 +1089,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1085
1089
|
}[];
|
|
1086
1090
|
itemsPerPage: number;
|
|
1087
1091
|
} | undefined;
|
|
1088
|
-
}
|
|
1092
|
+
};
|
|
1089
1093
|
docs: {
|
|
1094
|
+
[x: string]: unknown;
|
|
1090
1095
|
api: "link-only" | "inline";
|
|
1091
1096
|
composition: "composition" | "options";
|
|
1092
1097
|
pins: {
|
|
@@ -1099,10 +1104,12 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1099
1104
|
railDrawer: boolean;
|
|
1100
1105
|
};
|
|
1101
1106
|
mcp: {
|
|
1107
|
+
[x: string]: unknown;
|
|
1102
1108
|
seen: boolean;
|
|
1103
1109
|
};
|
|
1104
1110
|
}, {
|
|
1105
1111
|
bin: {
|
|
1112
|
+
[x: string]: unknown;
|
|
1106
1113
|
wordWrap: boolean;
|
|
1107
1114
|
dashboard?: {
|
|
1108
1115
|
[x: string]: any;
|
|
@@ -1114,6 +1121,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1114
1121
|
} | undefined;
|
|
1115
1122
|
};
|
|
1116
1123
|
play: {
|
|
1124
|
+
[x: string]: unknown;
|
|
1117
1125
|
showErrors: boolean;
|
|
1118
1126
|
wordWrap: boolean;
|
|
1119
1127
|
dashboard?: {
|
|
@@ -1125,7 +1133,8 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1125
1133
|
itemsPerPage: number;
|
|
1126
1134
|
} | undefined;
|
|
1127
1135
|
};
|
|
1128
|
-
studio
|
|
1136
|
+
studio: {
|
|
1137
|
+
[x: string]: unknown;
|
|
1129
1138
|
dashboard?: {
|
|
1130
1139
|
[x: string]: any;
|
|
1131
1140
|
sortBy: {
|
|
@@ -1134,8 +1143,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1134
1143
|
}[];
|
|
1135
1144
|
itemsPerPage: number;
|
|
1136
1145
|
} | undefined;
|
|
1137
|
-
}
|
|
1138
|
-
link
|
|
1146
|
+
};
|
|
1147
|
+
link: {
|
|
1148
|
+
[x: string]: unknown;
|
|
1139
1149
|
dashboard?: {
|
|
1140
1150
|
[x: string]: any;
|
|
1141
1151
|
sortBy: {
|
|
@@ -1144,8 +1154,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1144
1154
|
}[];
|
|
1145
1155
|
itemsPerPage: number;
|
|
1146
1156
|
} | undefined;
|
|
1147
|
-
}
|
|
1157
|
+
};
|
|
1148
1158
|
docs: {
|
|
1159
|
+
[x: string]: unknown;
|
|
1149
1160
|
api: "link-only" | "inline";
|
|
1150
1161
|
composition: "composition" | "options";
|
|
1151
1162
|
pins: {
|
|
@@ -1158,6 +1169,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1158
1169
|
railDrawer: boolean;
|
|
1159
1170
|
};
|
|
1160
1171
|
mcp: {
|
|
1172
|
+
[x: string]: unknown;
|
|
1161
1173
|
seen: boolean;
|
|
1162
1174
|
};
|
|
1163
1175
|
}>;
|
|
@@ -1229,6 +1241,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1229
1241
|
version: globalThis.Ref<7, 7>;
|
|
1230
1242
|
ecosystem: globalThis.Ref<{
|
|
1231
1243
|
bin: {
|
|
1244
|
+
[x: string]: unknown;
|
|
1232
1245
|
wordWrap: boolean;
|
|
1233
1246
|
dashboard?: {
|
|
1234
1247
|
[x: string]: any;
|
|
@@ -1240,6 +1253,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1240
1253
|
} | undefined;
|
|
1241
1254
|
};
|
|
1242
1255
|
play: {
|
|
1256
|
+
[x: string]: unknown;
|
|
1243
1257
|
showErrors: boolean;
|
|
1244
1258
|
wordWrap: boolean;
|
|
1245
1259
|
dashboard?: {
|
|
@@ -1251,7 +1265,8 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1251
1265
|
itemsPerPage: number;
|
|
1252
1266
|
} | undefined;
|
|
1253
1267
|
};
|
|
1254
|
-
studio
|
|
1268
|
+
studio: {
|
|
1269
|
+
[x: string]: unknown;
|
|
1255
1270
|
dashboard?: {
|
|
1256
1271
|
[x: string]: any;
|
|
1257
1272
|
sortBy: {
|
|
@@ -1260,8 +1275,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1260
1275
|
}[];
|
|
1261
1276
|
itemsPerPage: number;
|
|
1262
1277
|
} | undefined;
|
|
1263
|
-
}
|
|
1264
|
-
link
|
|
1278
|
+
};
|
|
1279
|
+
link: {
|
|
1280
|
+
[x: string]: unknown;
|
|
1265
1281
|
dashboard?: {
|
|
1266
1282
|
[x: string]: any;
|
|
1267
1283
|
sortBy: {
|
|
@@ -1270,8 +1286,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1270
1286
|
}[];
|
|
1271
1287
|
itemsPerPage: number;
|
|
1272
1288
|
} | undefined;
|
|
1273
|
-
}
|
|
1289
|
+
};
|
|
1274
1290
|
docs: {
|
|
1291
|
+
[x: string]: unknown;
|
|
1275
1292
|
api: "link-only" | "inline";
|
|
1276
1293
|
composition: "composition" | "options";
|
|
1277
1294
|
pins: {
|
|
@@ -1284,10 +1301,12 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1284
1301
|
railDrawer: boolean;
|
|
1285
1302
|
};
|
|
1286
1303
|
mcp: {
|
|
1304
|
+
[x: string]: unknown;
|
|
1287
1305
|
seen: boolean;
|
|
1288
1306
|
};
|
|
1289
1307
|
}, {
|
|
1290
1308
|
bin: {
|
|
1309
|
+
[x: string]: unknown;
|
|
1291
1310
|
wordWrap: boolean;
|
|
1292
1311
|
dashboard?: {
|
|
1293
1312
|
[x: string]: any;
|
|
@@ -1299,6 +1318,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1299
1318
|
} | undefined;
|
|
1300
1319
|
};
|
|
1301
1320
|
play: {
|
|
1321
|
+
[x: string]: unknown;
|
|
1302
1322
|
showErrors: boolean;
|
|
1303
1323
|
wordWrap: boolean;
|
|
1304
1324
|
dashboard?: {
|
|
@@ -1310,7 +1330,8 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1310
1330
|
itemsPerPage: number;
|
|
1311
1331
|
} | undefined;
|
|
1312
1332
|
};
|
|
1313
|
-
studio
|
|
1333
|
+
studio: {
|
|
1334
|
+
[x: string]: unknown;
|
|
1314
1335
|
dashboard?: {
|
|
1315
1336
|
[x: string]: any;
|
|
1316
1337
|
sortBy: {
|
|
@@ -1319,8 +1340,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1319
1340
|
}[];
|
|
1320
1341
|
itemsPerPage: number;
|
|
1321
1342
|
} | undefined;
|
|
1322
|
-
}
|
|
1323
|
-
link
|
|
1343
|
+
};
|
|
1344
|
+
link: {
|
|
1345
|
+
[x: string]: unknown;
|
|
1324
1346
|
dashboard?: {
|
|
1325
1347
|
[x: string]: any;
|
|
1326
1348
|
sortBy: {
|
|
@@ -1329,8 +1351,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1329
1351
|
}[];
|
|
1330
1352
|
itemsPerPage: number;
|
|
1331
1353
|
} | undefined;
|
|
1332
|
-
}
|
|
1354
|
+
};
|
|
1333
1355
|
docs: {
|
|
1356
|
+
[x: string]: unknown;
|
|
1334
1357
|
api: "link-only" | "inline";
|
|
1335
1358
|
composition: "composition" | "options";
|
|
1336
1359
|
pins: {
|
|
@@ -1343,6 +1366,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1343
1366
|
railDrawer: boolean;
|
|
1344
1367
|
};
|
|
1345
1368
|
mcp: {
|
|
1369
|
+
[x: string]: unknown;
|
|
1346
1370
|
seen: boolean;
|
|
1347
1371
|
};
|
|
1348
1372
|
}>;
|
|
@@ -1414,6 +1438,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1414
1438
|
version: globalThis.Ref<7, 7>;
|
|
1415
1439
|
ecosystem: globalThis.Ref<{
|
|
1416
1440
|
bin: {
|
|
1441
|
+
[x: string]: unknown;
|
|
1417
1442
|
wordWrap: boolean;
|
|
1418
1443
|
dashboard?: {
|
|
1419
1444
|
[x: string]: any;
|
|
@@ -1425,6 +1450,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1425
1450
|
} | undefined;
|
|
1426
1451
|
};
|
|
1427
1452
|
play: {
|
|
1453
|
+
[x: string]: unknown;
|
|
1428
1454
|
showErrors: boolean;
|
|
1429
1455
|
wordWrap: boolean;
|
|
1430
1456
|
dashboard?: {
|
|
@@ -1436,7 +1462,8 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1436
1462
|
itemsPerPage: number;
|
|
1437
1463
|
} | undefined;
|
|
1438
1464
|
};
|
|
1439
|
-
studio
|
|
1465
|
+
studio: {
|
|
1466
|
+
[x: string]: unknown;
|
|
1440
1467
|
dashboard?: {
|
|
1441
1468
|
[x: string]: any;
|
|
1442
1469
|
sortBy: {
|
|
@@ -1445,8 +1472,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1445
1472
|
}[];
|
|
1446
1473
|
itemsPerPage: number;
|
|
1447
1474
|
} | undefined;
|
|
1448
|
-
}
|
|
1449
|
-
link
|
|
1475
|
+
};
|
|
1476
|
+
link: {
|
|
1477
|
+
[x: string]: unknown;
|
|
1450
1478
|
dashboard?: {
|
|
1451
1479
|
[x: string]: any;
|
|
1452
1480
|
sortBy: {
|
|
@@ -1455,8 +1483,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1455
1483
|
}[];
|
|
1456
1484
|
itemsPerPage: number;
|
|
1457
1485
|
} | undefined;
|
|
1458
|
-
}
|
|
1486
|
+
};
|
|
1459
1487
|
docs: {
|
|
1488
|
+
[x: string]: unknown;
|
|
1460
1489
|
api: "link-only" | "inline";
|
|
1461
1490
|
composition: "composition" | "options";
|
|
1462
1491
|
pins: {
|
|
@@ -1469,10 +1498,12 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1469
1498
|
railDrawer: boolean;
|
|
1470
1499
|
};
|
|
1471
1500
|
mcp: {
|
|
1501
|
+
[x: string]: unknown;
|
|
1472
1502
|
seen: boolean;
|
|
1473
1503
|
};
|
|
1474
1504
|
}, {
|
|
1475
1505
|
bin: {
|
|
1506
|
+
[x: string]: unknown;
|
|
1476
1507
|
wordWrap: boolean;
|
|
1477
1508
|
dashboard?: {
|
|
1478
1509
|
[x: string]: any;
|
|
@@ -1484,6 +1515,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1484
1515
|
} | undefined;
|
|
1485
1516
|
};
|
|
1486
1517
|
play: {
|
|
1518
|
+
[x: string]: unknown;
|
|
1487
1519
|
showErrors: boolean;
|
|
1488
1520
|
wordWrap: boolean;
|
|
1489
1521
|
dashboard?: {
|
|
@@ -1495,7 +1527,8 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1495
1527
|
itemsPerPage: number;
|
|
1496
1528
|
} | undefined;
|
|
1497
1529
|
};
|
|
1498
|
-
studio
|
|
1530
|
+
studio: {
|
|
1531
|
+
[x: string]: unknown;
|
|
1499
1532
|
dashboard?: {
|
|
1500
1533
|
[x: string]: any;
|
|
1501
1534
|
sortBy: {
|
|
@@ -1504,8 +1537,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1504
1537
|
}[];
|
|
1505
1538
|
itemsPerPage: number;
|
|
1506
1539
|
} | undefined;
|
|
1507
|
-
}
|
|
1508
|
-
link
|
|
1540
|
+
};
|
|
1541
|
+
link: {
|
|
1542
|
+
[x: string]: unknown;
|
|
1509
1543
|
dashboard?: {
|
|
1510
1544
|
[x: string]: any;
|
|
1511
1545
|
sortBy: {
|
|
@@ -1514,8 +1548,9 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1514
1548
|
}[];
|
|
1515
1549
|
itemsPerPage: number;
|
|
1516
1550
|
} | undefined;
|
|
1517
|
-
}
|
|
1551
|
+
};
|
|
1518
1552
|
docs: {
|
|
1553
|
+
[x: string]: unknown;
|
|
1519
1554
|
api: "link-only" | "inline";
|
|
1520
1555
|
composition: "composition" | "options";
|
|
1521
1556
|
pins: {
|
|
@@ -1528,6 +1563,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1528
1563
|
railDrawer: boolean;
|
|
1529
1564
|
};
|
|
1530
1565
|
mcp: {
|
|
1566
|
+
[x: string]: unknown;
|
|
1531
1567
|
seen: boolean;
|
|
1532
1568
|
};
|
|
1533
1569
|
}>;
|