@vuetify/one 2.2.3 → 2.3.0
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.css +1 -1
- package/dist/index.d.ts +294 -153
- package/dist/index.js +2816 -2357
- package/package.json +28 -22
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-footer__image[data-v-31335c0a]{display:flex;height:40px;flex:1 1 auto;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.social-link[data-v-7a9688b8] .v-icon{color:rgba(var(--v-theme-on-background),var(--v-disabled-opacity));text-decoration:none;transition:.2s ease-in-out}.social-link[data-v-7a9688b8] .v-icon:hover{color:rgb(var(--v-theme-primary))}.v-app-bar[data-v-
|
|
1
|
+
.v-footer__image[data-v-31335c0a]{display:flex;height:40px;flex:1 1 auto;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.social-link[data-v-7a9688b8] .v-icon{color:rgba(var(--v-theme-on-background),var(--v-disabled-opacity));text-decoration:none;transition:.2s ease-in-out}.social-link[data-v-7a9688b8] .v-icon:hover{color:rgb(var(--v-theme-primary))}.v-app-bar[data-v-ad7620cd] .v-toolbar__image:after{content:"";position:absolute;inset:0;-webkit-backdrop-filter:blur(calc(var(--3cb343b4) * 1px));backdrop-filter:blur(calc(var(--3cb343b4) * 1px));background:linear-gradient(15deg,#000000a6,#00000092,#0000007f,#0000006d,#0000005d,#0000004e,#00000041,#00000034,#00000029,#00000020,#00000017,#00000010,#0000000a,#00000006,#00000003,#00000001,#0000)}.v-list-item-subtitle[data-v-ad7620cd]{color:currentColor;opacity:var(--v-high-emphasis-opacity)}
|
package/dist/index.d.ts
CHANGED
|
@@ -180,7 +180,7 @@ interface AuthState {
|
|
|
180
180
|
lastLoginProvider: () => string | null;
|
|
181
181
|
sync: () => Promise<void>;
|
|
182
182
|
}
|
|
183
|
-
declare const useAuthStore: pinia.StoreDefinition<"auth", Pick<AuthState, "isLoading" | "user" | "url" | "dialog">, Pick<AuthState, never>, Pick<AuthState, "verify" | "
|
|
183
|
+
declare const useAuthStore: pinia.StoreDefinition<"auth", Pick<AuthState, "isLoading" | "user" | "url" | "dialog">, Pick<AuthState, never>, Pick<AuthState, "verify" | "sync" | "findIdentity" | "login" | "logout" | "lastLoginProvider">>;
|
|
184
184
|
|
|
185
185
|
interface VOneBanner {
|
|
186
186
|
id: string;
|
|
@@ -954,7 +954,7 @@ interface QueueState {
|
|
|
954
954
|
show: (text: Snackbar) => void;
|
|
955
955
|
showError: (text: Snackbar) => void;
|
|
956
956
|
}
|
|
957
|
-
declare const useQueueStore: pinia.StoreDefinition<"
|
|
957
|
+
declare const useQueueStore: pinia.StoreDefinition<"queue", Pick<QueueState, "queue">, Pick<QueueState, never>, Pick<QueueState, "show" | "showError">>;
|
|
958
958
|
|
|
959
959
|
interface VOneSuit {
|
|
960
960
|
'app-bar': string;
|
|
@@ -1041,181 +1041,322 @@ declare const useUserStore: pinia.StoreDefinition<"user", Pick<{
|
|
|
1041
1041
|
load: () => void;
|
|
1042
1042
|
save: () => void;
|
|
1043
1043
|
reset: () => void;
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
}, {
|
|
1066
|
-
show: boolean;
|
|
1067
|
-
elements: (keyof VOneSuit)[];
|
|
1068
|
-
suit: string;
|
|
1069
|
-
}>;
|
|
1070
|
-
colors: globalThis.Ref<{
|
|
1071
|
-
one: string;
|
|
1044
|
+
version: globalThis.Ref<6, 6>;
|
|
1045
|
+
ecosystem: globalThis.Ref<{
|
|
1046
|
+
bin: {
|
|
1047
|
+
wordWrap: boolean;
|
|
1048
|
+
};
|
|
1049
|
+
play: {
|
|
1050
|
+
showErrors: boolean;
|
|
1051
|
+
wordWrap: boolean;
|
|
1052
|
+
};
|
|
1053
|
+
docs: {
|
|
1054
|
+
api: "link-only" | "inline";
|
|
1055
|
+
composition: "composition" | "options";
|
|
1056
|
+
pins: {
|
|
1057
|
+
enabled: boolean;
|
|
1058
|
+
pinned: string[];
|
|
1059
|
+
};
|
|
1060
|
+
mixedTheme: boolean;
|
|
1061
|
+
favorites: string[];
|
|
1062
|
+
slashSearch: boolean;
|
|
1063
|
+
railDrawer: boolean;
|
|
1064
|
+
};
|
|
1072
1065
|
}, {
|
|
1073
|
-
|
|
1066
|
+
bin: {
|
|
1067
|
+
wordWrap: boolean;
|
|
1068
|
+
};
|
|
1069
|
+
play: {
|
|
1070
|
+
showErrors: boolean;
|
|
1071
|
+
wordWrap: boolean;
|
|
1072
|
+
};
|
|
1073
|
+
docs: {
|
|
1074
|
+
api: "link-only" | "inline";
|
|
1075
|
+
composition: "composition" | "options";
|
|
1076
|
+
pins: {
|
|
1077
|
+
enabled: boolean;
|
|
1078
|
+
pinned: string[];
|
|
1079
|
+
};
|
|
1080
|
+
mixedTheme: boolean;
|
|
1081
|
+
favorites: string[];
|
|
1082
|
+
slashSearch: boolean;
|
|
1083
|
+
railDrawer: boolean;
|
|
1084
|
+
};
|
|
1074
1085
|
}>;
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
+
one: globalThis.Ref<{
|
|
1087
|
+
avatar: string;
|
|
1088
|
+
ads: {
|
|
1089
|
+
enabled: boolean;
|
|
1090
|
+
house: boolean;
|
|
1091
|
+
};
|
|
1092
|
+
command: {};
|
|
1093
|
+
theme: string;
|
|
1094
|
+
direction: "ltr" | "rtl";
|
|
1095
|
+
colors: {
|
|
1096
|
+
primary: string;
|
|
1097
|
+
};
|
|
1098
|
+
suits: {
|
|
1099
|
+
enabled: boolean;
|
|
1100
|
+
elements: string[];
|
|
1101
|
+
suit: string;
|
|
1102
|
+
};
|
|
1103
|
+
notifications: {
|
|
1104
|
+
enabled: boolean;
|
|
1105
|
+
read: string[];
|
|
1106
|
+
last: string;
|
|
1107
|
+
};
|
|
1108
|
+
banners: {
|
|
1109
|
+
enabled: boolean;
|
|
1110
|
+
read: string[];
|
|
1111
|
+
last: string;
|
|
1086
1112
|
};
|
|
1113
|
+
quicklinks: boolean;
|
|
1114
|
+
sync: boolean;
|
|
1115
|
+
devmode: boolean;
|
|
1087
1116
|
}, {
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
banner: string[];
|
|
1093
|
-
v2banner: null | number;
|
|
1094
|
-
install: null | number;
|
|
1095
|
-
notification: null | number;
|
|
1096
|
-
promotion: null | number;
|
|
1097
|
-
jobs: null | number;
|
|
1117
|
+
avatar: string;
|
|
1118
|
+
ads: {
|
|
1119
|
+
enabled: boolean;
|
|
1120
|
+
house: boolean;
|
|
1098
1121
|
};
|
|
1122
|
+
command: {};
|
|
1123
|
+
theme: string;
|
|
1124
|
+
direction: "ltr" | "rtl";
|
|
1125
|
+
colors: {
|
|
1126
|
+
primary: string;
|
|
1127
|
+
};
|
|
1128
|
+
suits: {
|
|
1129
|
+
enabled: boolean;
|
|
1130
|
+
elements: string[];
|
|
1131
|
+
suit: string;
|
|
1132
|
+
};
|
|
1133
|
+
notifications: {
|
|
1134
|
+
enabled: boolean;
|
|
1135
|
+
read: string[];
|
|
1136
|
+
last: string;
|
|
1137
|
+
};
|
|
1138
|
+
banners: {
|
|
1139
|
+
enabled: boolean;
|
|
1140
|
+
read: string[];
|
|
1141
|
+
last: string;
|
|
1142
|
+
};
|
|
1143
|
+
quicklinks: boolean;
|
|
1144
|
+
sync: boolean;
|
|
1145
|
+
devmode: boolean;
|
|
1099
1146
|
}>;
|
|
1100
|
-
}, "
|
|
1147
|
+
}, "one" | "version" | "ecosystem">, Pick<{
|
|
1101
1148
|
load: () => void;
|
|
1102
1149
|
save: () => void;
|
|
1103
1150
|
reset: () => void;
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
}, {
|
|
1126
|
-
show: boolean;
|
|
1127
|
-
elements: (keyof VOneSuit)[];
|
|
1128
|
-
suit: string;
|
|
1129
|
-
}>;
|
|
1130
|
-
colors: globalThis.Ref<{
|
|
1131
|
-
one: string;
|
|
1151
|
+
version: globalThis.Ref<6, 6>;
|
|
1152
|
+
ecosystem: globalThis.Ref<{
|
|
1153
|
+
bin: {
|
|
1154
|
+
wordWrap: boolean;
|
|
1155
|
+
};
|
|
1156
|
+
play: {
|
|
1157
|
+
showErrors: boolean;
|
|
1158
|
+
wordWrap: boolean;
|
|
1159
|
+
};
|
|
1160
|
+
docs: {
|
|
1161
|
+
api: "link-only" | "inline";
|
|
1162
|
+
composition: "composition" | "options";
|
|
1163
|
+
pins: {
|
|
1164
|
+
enabled: boolean;
|
|
1165
|
+
pinned: string[];
|
|
1166
|
+
};
|
|
1167
|
+
mixedTheme: boolean;
|
|
1168
|
+
favorites: string[];
|
|
1169
|
+
slashSearch: boolean;
|
|
1170
|
+
railDrawer: boolean;
|
|
1171
|
+
};
|
|
1132
1172
|
}, {
|
|
1133
|
-
|
|
1173
|
+
bin: {
|
|
1174
|
+
wordWrap: boolean;
|
|
1175
|
+
};
|
|
1176
|
+
play: {
|
|
1177
|
+
showErrors: boolean;
|
|
1178
|
+
wordWrap: boolean;
|
|
1179
|
+
};
|
|
1180
|
+
docs: {
|
|
1181
|
+
api: "link-only" | "inline";
|
|
1182
|
+
composition: "composition" | "options";
|
|
1183
|
+
pins: {
|
|
1184
|
+
enabled: boolean;
|
|
1185
|
+
pinned: string[];
|
|
1186
|
+
};
|
|
1187
|
+
mixedTheme: boolean;
|
|
1188
|
+
favorites: string[];
|
|
1189
|
+
slashSearch: boolean;
|
|
1190
|
+
railDrawer: boolean;
|
|
1191
|
+
};
|
|
1134
1192
|
}>;
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1193
|
+
one: globalThis.Ref<{
|
|
1194
|
+
avatar: string;
|
|
1195
|
+
ads: {
|
|
1196
|
+
enabled: boolean;
|
|
1197
|
+
house: boolean;
|
|
1198
|
+
};
|
|
1199
|
+
command: {};
|
|
1200
|
+
theme: string;
|
|
1201
|
+
direction: "ltr" | "rtl";
|
|
1202
|
+
colors: {
|
|
1203
|
+
primary: string;
|
|
1204
|
+
};
|
|
1205
|
+
suits: {
|
|
1206
|
+
enabled: boolean;
|
|
1207
|
+
elements: string[];
|
|
1208
|
+
suit: string;
|
|
1209
|
+
};
|
|
1210
|
+
notifications: {
|
|
1211
|
+
enabled: boolean;
|
|
1212
|
+
read: string[];
|
|
1213
|
+
last: string;
|
|
1146
1214
|
};
|
|
1215
|
+
banners: {
|
|
1216
|
+
enabled: boolean;
|
|
1217
|
+
read: string[];
|
|
1218
|
+
last: string;
|
|
1219
|
+
};
|
|
1220
|
+
quicklinks: boolean;
|
|
1221
|
+
sync: boolean;
|
|
1222
|
+
devmode: boolean;
|
|
1147
1223
|
}, {
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1224
|
+
avatar: string;
|
|
1225
|
+
ads: {
|
|
1226
|
+
enabled: boolean;
|
|
1227
|
+
house: boolean;
|
|
1228
|
+
};
|
|
1229
|
+
command: {};
|
|
1230
|
+
theme: string;
|
|
1231
|
+
direction: "ltr" | "rtl";
|
|
1232
|
+
colors: {
|
|
1233
|
+
primary: string;
|
|
1234
|
+
};
|
|
1235
|
+
suits: {
|
|
1236
|
+
enabled: boolean;
|
|
1237
|
+
elements: string[];
|
|
1238
|
+
suit: string;
|
|
1158
1239
|
};
|
|
1240
|
+
notifications: {
|
|
1241
|
+
enabled: boolean;
|
|
1242
|
+
read: string[];
|
|
1243
|
+
last: string;
|
|
1244
|
+
};
|
|
1245
|
+
banners: {
|
|
1246
|
+
enabled: boolean;
|
|
1247
|
+
read: string[];
|
|
1248
|
+
last: string;
|
|
1249
|
+
};
|
|
1250
|
+
quicklinks: boolean;
|
|
1251
|
+
sync: boolean;
|
|
1252
|
+
devmode: boolean;
|
|
1159
1253
|
}>;
|
|
1160
1254
|
}, never>, Pick<{
|
|
1161
1255
|
load: () => void;
|
|
1162
1256
|
save: () => void;
|
|
1163
1257
|
reset: () => void;
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
}, {
|
|
1186
|
-
show: boolean;
|
|
1187
|
-
elements: (keyof VOneSuit)[];
|
|
1188
|
-
suit: string;
|
|
1189
|
-
}>;
|
|
1190
|
-
colors: globalThis.Ref<{
|
|
1191
|
-
one: string;
|
|
1258
|
+
version: globalThis.Ref<6, 6>;
|
|
1259
|
+
ecosystem: globalThis.Ref<{
|
|
1260
|
+
bin: {
|
|
1261
|
+
wordWrap: boolean;
|
|
1262
|
+
};
|
|
1263
|
+
play: {
|
|
1264
|
+
showErrors: boolean;
|
|
1265
|
+
wordWrap: boolean;
|
|
1266
|
+
};
|
|
1267
|
+
docs: {
|
|
1268
|
+
api: "link-only" | "inline";
|
|
1269
|
+
composition: "composition" | "options";
|
|
1270
|
+
pins: {
|
|
1271
|
+
enabled: boolean;
|
|
1272
|
+
pinned: string[];
|
|
1273
|
+
};
|
|
1274
|
+
mixedTheme: boolean;
|
|
1275
|
+
favorites: string[];
|
|
1276
|
+
slashSearch: boolean;
|
|
1277
|
+
railDrawer: boolean;
|
|
1278
|
+
};
|
|
1192
1279
|
}, {
|
|
1193
|
-
|
|
1280
|
+
bin: {
|
|
1281
|
+
wordWrap: boolean;
|
|
1282
|
+
};
|
|
1283
|
+
play: {
|
|
1284
|
+
showErrors: boolean;
|
|
1285
|
+
wordWrap: boolean;
|
|
1286
|
+
};
|
|
1287
|
+
docs: {
|
|
1288
|
+
api: "link-only" | "inline";
|
|
1289
|
+
composition: "composition" | "options";
|
|
1290
|
+
pins: {
|
|
1291
|
+
enabled: boolean;
|
|
1292
|
+
pinned: string[];
|
|
1293
|
+
};
|
|
1294
|
+
mixedTheme: boolean;
|
|
1295
|
+
favorites: string[];
|
|
1296
|
+
slashSearch: boolean;
|
|
1297
|
+
railDrawer: boolean;
|
|
1298
|
+
};
|
|
1194
1299
|
}>;
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1300
|
+
one: globalThis.Ref<{
|
|
1301
|
+
avatar: string;
|
|
1302
|
+
ads: {
|
|
1303
|
+
enabled: boolean;
|
|
1304
|
+
house: boolean;
|
|
1305
|
+
};
|
|
1306
|
+
command: {};
|
|
1307
|
+
theme: string;
|
|
1308
|
+
direction: "ltr" | "rtl";
|
|
1309
|
+
colors: {
|
|
1310
|
+
primary: string;
|
|
1311
|
+
};
|
|
1312
|
+
suits: {
|
|
1313
|
+
enabled: boolean;
|
|
1314
|
+
elements: string[];
|
|
1315
|
+
suit: string;
|
|
1206
1316
|
};
|
|
1317
|
+
notifications: {
|
|
1318
|
+
enabled: boolean;
|
|
1319
|
+
read: string[];
|
|
1320
|
+
last: string;
|
|
1321
|
+
};
|
|
1322
|
+
banners: {
|
|
1323
|
+
enabled: boolean;
|
|
1324
|
+
read: string[];
|
|
1325
|
+
last: string;
|
|
1326
|
+
};
|
|
1327
|
+
quicklinks: boolean;
|
|
1328
|
+
sync: boolean;
|
|
1329
|
+
devmode: boolean;
|
|
1207
1330
|
}, {
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1331
|
+
avatar: string;
|
|
1332
|
+
ads: {
|
|
1333
|
+
enabled: boolean;
|
|
1334
|
+
house: boolean;
|
|
1335
|
+
};
|
|
1336
|
+
command: {};
|
|
1337
|
+
theme: string;
|
|
1338
|
+
direction: "ltr" | "rtl";
|
|
1339
|
+
colors: {
|
|
1340
|
+
primary: string;
|
|
1341
|
+
};
|
|
1342
|
+
suits: {
|
|
1343
|
+
enabled: boolean;
|
|
1344
|
+
elements: string[];
|
|
1345
|
+
suit: string;
|
|
1346
|
+
};
|
|
1347
|
+
notifications: {
|
|
1348
|
+
enabled: boolean;
|
|
1349
|
+
read: string[];
|
|
1350
|
+
last: string;
|
|
1351
|
+
};
|
|
1352
|
+
banners: {
|
|
1353
|
+
enabled: boolean;
|
|
1354
|
+
read: string[];
|
|
1355
|
+
last: string;
|
|
1218
1356
|
};
|
|
1357
|
+
quicklinks: boolean;
|
|
1358
|
+
sync: boolean;
|
|
1359
|
+
devmode: boolean;
|
|
1219
1360
|
}>;
|
|
1220
1361
|
}, "load" | "save" | "reset">>;
|
|
1221
1362
|
|