@queuedash/ui 1.0.1 → 1.2.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/README.md +20 -0
- package/dist/main.js +14 -14
- package/dist/main.mjs +415 -412
- package/dist/src/utils/trpc.d.ts +18 -16
- package/dist/styles.css +20 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/src/utils/trpc.d.ts
CHANGED
|
@@ -281,12 +281,12 @@ export declare const trpc: import("@trpc/react-query/dist/createTRPCReact").Crea
|
|
|
281
281
|
_input_in: {
|
|
282
282
|
cursor?: number | undefined;
|
|
283
283
|
queueName: string;
|
|
284
|
-
status: "paused" | "completed" | "failed" | "delayed" | "active" | "waiting";
|
|
284
|
+
status: "paused" | "completed" | "failed" | "delayed" | "active" | "prioritized" | "waiting";
|
|
285
285
|
limit: number;
|
|
286
286
|
};
|
|
287
287
|
_input_out: {
|
|
288
288
|
queueName: string;
|
|
289
|
-
status: "paused" | "completed" | "failed" | "delayed" | "active" | "waiting";
|
|
289
|
+
status: "paused" | "completed" | "failed" | "delayed" | "active" | "prioritized" | "waiting";
|
|
290
290
|
cursor: number;
|
|
291
291
|
limit: number;
|
|
292
292
|
};
|
|
@@ -338,11 +338,11 @@ export declare const trpc: import("@trpc/react-query/dist/createTRPCReact").Crea
|
|
|
338
338
|
_ctx_out: import("@queuedash/api").Context;
|
|
339
339
|
_input_in: {
|
|
340
340
|
queueName: string;
|
|
341
|
-
status: "paused" | "completed" | "failed" | "delayed" | "active" | "waiting";
|
|
341
|
+
status: "paused" | "completed" | "failed" | "delayed" | "active" | "prioritized" | "waiting";
|
|
342
342
|
};
|
|
343
343
|
_input_out: {
|
|
344
344
|
queueName: string;
|
|
345
|
-
status: "paused" | "completed" | "failed" | "delayed" | "active" | "waiting";
|
|
345
|
+
status: "paused" | "completed" | "failed" | "delayed" | "active" | "prioritized" | "waiting";
|
|
346
346
|
};
|
|
347
347
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
348
348
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
@@ -419,12 +419,12 @@ export declare const trpc: import("@trpc/react-query/dist/createTRPCReact").Crea
|
|
|
419
419
|
_meta: object;
|
|
420
420
|
_ctx_out: import("@queuedash/api").Context;
|
|
421
421
|
_input_in: {
|
|
422
|
-
queueName: string;
|
|
423
422
|
data: {};
|
|
423
|
+
queueName: string;
|
|
424
424
|
};
|
|
425
425
|
_input_out: {
|
|
426
|
-
queueName: string;
|
|
427
426
|
data: {};
|
|
427
|
+
queueName: string;
|
|
428
428
|
};
|
|
429
429
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
430
430
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
@@ -453,12 +453,13 @@ export declare const trpc: import("@trpc/react-query/dist/createTRPCReact").Crea
|
|
|
453
453
|
name: string;
|
|
454
454
|
paused: boolean;
|
|
455
455
|
counts: {
|
|
456
|
+
waiting: number;
|
|
457
|
+
paused: number;
|
|
458
|
+
prioritized?: number | undefined;
|
|
456
459
|
active: number;
|
|
457
460
|
completed: number;
|
|
458
461
|
delayed: number;
|
|
459
462
|
failed: number;
|
|
460
|
-
waiting: number;
|
|
461
|
-
paused: number;
|
|
462
463
|
};
|
|
463
464
|
}>;
|
|
464
465
|
list: import("@trpc/server").BuildProcedure<"query", {
|
|
@@ -750,12 +751,12 @@ export declare const trpc: import("@trpc/react-query/dist/createTRPCReact").Crea
|
|
|
750
751
|
_input_in: {
|
|
751
752
|
cursor?: number | undefined;
|
|
752
753
|
queueName: string;
|
|
753
|
-
status: "paused" | "completed" | "failed" | "delayed" | "active" | "waiting";
|
|
754
|
+
status: "paused" | "completed" | "failed" | "delayed" | "active" | "prioritized" | "waiting";
|
|
754
755
|
limit: number;
|
|
755
756
|
};
|
|
756
757
|
_input_out: {
|
|
757
758
|
queueName: string;
|
|
758
|
-
status: "paused" | "completed" | "failed" | "delayed" | "active" | "waiting";
|
|
759
|
+
status: "paused" | "completed" | "failed" | "delayed" | "active" | "prioritized" | "waiting";
|
|
759
760
|
cursor: number;
|
|
760
761
|
limit: number;
|
|
761
762
|
};
|
|
@@ -807,11 +808,11 @@ export declare const trpc: import("@trpc/react-query/dist/createTRPCReact").Crea
|
|
|
807
808
|
_ctx_out: import("@queuedash/api").Context;
|
|
808
809
|
_input_in: {
|
|
809
810
|
queueName: string;
|
|
810
|
-
status: "paused" | "completed" | "failed" | "delayed" | "active" | "waiting";
|
|
811
|
+
status: "paused" | "completed" | "failed" | "delayed" | "active" | "prioritized" | "waiting";
|
|
811
812
|
};
|
|
812
813
|
_input_out: {
|
|
813
814
|
queueName: string;
|
|
814
|
-
status: "paused" | "completed" | "failed" | "delayed" | "active" | "waiting";
|
|
815
|
+
status: "paused" | "completed" | "failed" | "delayed" | "active" | "prioritized" | "waiting";
|
|
815
816
|
};
|
|
816
817
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
817
818
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
@@ -888,12 +889,12 @@ export declare const trpc: import("@trpc/react-query/dist/createTRPCReact").Crea
|
|
|
888
889
|
_meta: object;
|
|
889
890
|
_ctx_out: import("@queuedash/api").Context;
|
|
890
891
|
_input_in: {
|
|
891
|
-
queueName: string;
|
|
892
892
|
data: {};
|
|
893
|
+
queueName: string;
|
|
893
894
|
};
|
|
894
895
|
_input_out: {
|
|
895
|
-
queueName: string;
|
|
896
896
|
data: {};
|
|
897
|
+
queueName: string;
|
|
897
898
|
};
|
|
898
899
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
899
900
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
@@ -922,12 +923,13 @@ export declare const trpc: import("@trpc/react-query/dist/createTRPCReact").Crea
|
|
|
922
923
|
name: string;
|
|
923
924
|
paused: boolean;
|
|
924
925
|
counts: {
|
|
926
|
+
waiting: number;
|
|
927
|
+
paused: number;
|
|
928
|
+
prioritized?: number | undefined;
|
|
925
929
|
active: number;
|
|
926
930
|
completed: number;
|
|
927
931
|
delayed: number;
|
|
928
932
|
failed: number;
|
|
929
|
-
waiting: number;
|
|
930
|
-
paused: number;
|
|
931
933
|
};
|
|
932
934
|
}>;
|
|
933
935
|
list: import("@trpc/server").BuildProcedure<"query", {
|
package/dist/styles.css
CHANGED
|
@@ -1112,6 +1112,16 @@ video {
|
|
|
1112
1112
|
background-color: rgb(79 70 229 / var(--tw-bg-opacity));
|
|
1113
1113
|
}
|
|
1114
1114
|
|
|
1115
|
+
.bg-purple-50 {
|
|
1116
|
+
--tw-bg-opacity: 1;
|
|
1117
|
+
background-color: rgb(250 245 255 / var(--tw-bg-opacity));
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
.bg-purple-600 {
|
|
1121
|
+
--tw-bg-opacity: 1;
|
|
1122
|
+
background-color: rgb(147 51 234 / var(--tw-bg-opacity));
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1115
1125
|
.bg-red-50 {
|
|
1116
1126
|
--tw-bg-opacity: 1;
|
|
1117
1127
|
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
|
|
@@ -1483,6 +1493,16 @@ video {
|
|
|
1483
1493
|
color: rgb(49 46 129 / var(--tw-text-opacity));
|
|
1484
1494
|
}
|
|
1485
1495
|
|
|
1496
|
+
.text-purple-50 {
|
|
1497
|
+
--tw-text-opacity: 1;
|
|
1498
|
+
color: rgb(250 245 255 / var(--tw-text-opacity));
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.text-purple-900 {
|
|
1502
|
+
--tw-text-opacity: 1;
|
|
1503
|
+
color: rgb(88 28 135 / var(--tw-text-opacity));
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1486
1506
|
.text-red-100 {
|
|
1487
1507
|
--tw-text-opacity: 1;
|
|
1488
1508
|
color: rgb(254 226 226 / var(--tw-text-opacity));
|