@burdenoff/microfe-workspaces 2026.530.2 → 2026.531.2
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/WorkspacesRoutes.js +19 -15
- package/dist/WorkspacesRoutes.js.map +1 -1
- package/dist/components/ProjectCard.js +2 -2
- package/dist/components/ProjectCard.js.map +1 -1
- package/dist/components/tags/ProjectTagsWidget.js +53 -57
- package/dist/components/tags/ProjectTagsWidget.js.map +1 -1
- package/dist/generated/wspace-operations.js +24 -9
- package/dist/generated/wspace-operations.js.map +1 -1
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/useMemberMutations.js +2 -2
- package/dist/hooks/useMemberMutations.js.map +1 -1
- package/dist/hooks/usePendingInvitations.js +29 -0
- package/dist/hooks/usePendingInvitations.js.map +1 -0
- package/dist/hooks/useProjectMutations.js +107 -6
- package/dist/hooks/useProjectMutations.js.map +1 -1
- package/dist/hooks/useProjects.js +1 -1
- package/dist/hooks/useProjects.js.map +1 -1
- package/dist/hooks/useWorkspaceMembers.js +1 -1
- package/dist/hooks/useWorkspaceMembers.js.map +1 -1
- package/dist/index.js +20 -18
- package/dist/pages/InviteAcceptancePage.js +68 -44
- package/dist/pages/InviteAcceptancePage.js.map +1 -1
- package/dist/pages/PendingInvitesPage.js +254 -0
- package/dist/pages/PendingInvitesPage.js.map +1 -0
- package/dist/pages/ProjectDetailPage.js +187 -161
- package/dist/pages/ProjectDetailPage.js.map +1 -1
- package/dist/pages/ProjectsListPage.js +2 -2
- package/dist/pages/ProjectsListPage.js.map +1 -1
- package/dist/pages/WorkspacesListPage.js +118 -102
- package/dist/pages/WorkspacesListPage.js.map +1 -1
- package/dist/utils/projectTags.js +28 -2
- package/dist/utils/projectTags.js.map +1 -1
- package/package.json +1 -1
|
@@ -60,6 +60,21 @@ var n = {}, r = e`
|
|
|
60
60
|
validFrom
|
|
61
61
|
validTo
|
|
62
62
|
metadata
|
|
63
|
+
tag {
|
|
64
|
+
id
|
|
65
|
+
key
|
|
66
|
+
label
|
|
67
|
+
value
|
|
68
|
+
vocabularyId
|
|
69
|
+
parentId
|
|
70
|
+
hierarchyPath
|
|
71
|
+
color
|
|
72
|
+
icon
|
|
73
|
+
description
|
|
74
|
+
vocabulary {
|
|
75
|
+
key
|
|
76
|
+
}
|
|
77
|
+
}
|
|
63
78
|
}
|
|
64
79
|
`, c = e`
|
|
65
80
|
fragment ProjectFullFields on Project {
|
|
@@ -515,15 +530,15 @@ var j = e`
|
|
|
515
530
|
...InvitationFullFields
|
|
516
531
|
}
|
|
517
532
|
}
|
|
518
|
-
${a}
|
|
519
|
-
e`
|
|
533
|
+
${a}`, I = e`
|
|
520
534
|
query GetMyPendingInvitations($email: String!) {
|
|
521
535
|
myPendingInvitations(email: $email) {
|
|
522
536
|
...InvitationCardFields
|
|
523
537
|
deletedAt
|
|
524
538
|
}
|
|
525
539
|
}
|
|
526
|
-
${i}
|
|
540
|
+
${i}`;
|
|
541
|
+
e`
|
|
527
542
|
query GetProjects($filter: ProjectFilterInput, $pagination: PaginationInput) {
|
|
528
543
|
projects(filter: $filter, pagination: $pagination) {
|
|
529
544
|
items {
|
|
@@ -556,7 +571,7 @@ e`
|
|
|
556
571
|
}
|
|
557
572
|
}
|
|
558
573
|
${s}`;
|
|
559
|
-
var
|
|
574
|
+
var L = e`
|
|
560
575
|
query GetWorkspaces($filter: WorkspaceFilterInput, $pagination: PaginationInput) {
|
|
561
576
|
workspaces(filter: $filter, pagination: $pagination) {
|
|
562
577
|
items {
|
|
@@ -566,7 +581,7 @@ var I = e`
|
|
|
566
581
|
hasMore
|
|
567
582
|
}
|
|
568
583
|
}
|
|
569
|
-
${d}`,
|
|
584
|
+
${d}`, R = e`
|
|
570
585
|
query GetWorkspace($id: ID!) {
|
|
571
586
|
workspace(id: $id) {
|
|
572
587
|
...WorkspaceFullFields
|
|
@@ -584,21 +599,21 @@ e`
|
|
|
584
599
|
}
|
|
585
600
|
}
|
|
586
601
|
${l}`;
|
|
587
|
-
var
|
|
602
|
+
var z = e`
|
|
588
603
|
query GetWorkspaceTags($input: GetWorkspaceTagsInput!) {
|
|
589
604
|
getWorkspaceTags(input: $input) {
|
|
590
605
|
...WorkspaceTagAssignmentFields
|
|
591
606
|
}
|
|
592
607
|
}
|
|
593
608
|
${u}`;
|
|
594
|
-
function
|
|
609
|
+
function B(e) {
|
|
595
610
|
let r = {
|
|
596
611
|
...n,
|
|
597
612
|
...e
|
|
598
613
|
};
|
|
599
|
-
return t.useQuery(
|
|
614
|
+
return t.useQuery(z, r);
|
|
600
615
|
}
|
|
601
616
|
//#endregion
|
|
602
|
-
export { y as AcceptInvitationDocument, m as AddWorkspaceMemberDocument, D as ArchiveWorkspaceDocument, w as BulkCreateInvitationsDocument, x as CancelInvitationDocument, _ as CreateInvitationDocument, f as DashboardProjectsDocument, p as DashboardWorkspaceDataDocument, C as DeleteInvitationDocument, E as DeleteWorkspaceDocument, F as GetInvitationDocument, N as GetUserWorkspacesDocument,
|
|
617
|
+
export { y as AcceptInvitationDocument, m as AddWorkspaceMemberDocument, D as ArchiveWorkspaceDocument, w as BulkCreateInvitationsDocument, x as CancelInvitationDocument, _ as CreateInvitationDocument, f as DashboardProjectsDocument, p as DashboardWorkspaceDataDocument, C as DeleteInvitationDocument, E as DeleteWorkspaceDocument, F as GetInvitationDocument, I as GetMyPendingInvitationsDocument, N as GetUserWorkspacesDocument, R as GetWorkspaceDocument, P as GetWorkspaceInvitationsDocument, M as GetWorkspaceMemberDocument, j as GetWorkspaceMembersDocument, L as GetWorkspacesDocument, O as ReactivateWorkspaceDocument, b as RejectInvitationDocument, g as RemoveUserFromWorkspaceDocument, h as RemoveWorkspaceMemberDocument, S as ResendInvitationDocument, v as UpdateInvitationDocument, T as UpdateWorkspaceDocument, B as useGetWorkspaceTagsQuery, A as useReplaceWorkspaceTagsMutation };
|
|
603
618
|
|
|
604
619
|
//# sourceMappingURL=wspace-operations.js.map
|