@powerhousedao/network-admin 0.0.22 → 0.0.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/editors/network-admin/components/DriveExplorer.d.ts.map +1 -1
- package/dist/editors/network-admin/components/DriveExplorer.js +21 -6
- package/dist/editors/network-admin/components/icons/PaymentIcon.d.ts +3 -0
- package/dist/editors/network-admin/components/icons/PaymentIcon.d.ts.map +1 -0
- package/dist/editors/network-admin/components/icons/PaymentIcon.js +2 -0
- package/dist/editors/network-admin/components/icons/RfpIcon.d.ts +3 -0
- package/dist/editors/network-admin/components/icons/RfpIcon.d.ts.map +1 -0
- package/dist/editors/network-admin/components/icons/RfpIcon.js +2 -0
- package/dist/editors/network-admin/components/icons/SowIcon.d.ts +3 -0
- package/dist/editors/network-admin/components/icons/SowIcon.d.ts.map +1 -0
- package/dist/editors/network-admin/components/icons/SowIcon.js +2 -0
- package/dist/editors/network-admin/components/icons/WorkstreamIcon.d.ts +3 -0
- package/dist/editors/network-admin/components/icons/WorkstreamIcon.d.ts.map +1 -0
- package/dist/editors/network-admin/components/icons/WorkstreamIcon.js +2 -0
- package/dist/style.css +8010 -7844
- package/package.json +2 -2
- package/dist/editors/network-admin/components/CreateDocument.d.ts +0 -6
- package/dist/editors/network-admin/components/CreateDocument.d.ts.map +0 -1
- package/dist/editors/network-admin/components/CreateDocument.js +0 -24
- package/dist/editors/network-admin/components/FolderTree.d.ts +0 -15
- package/dist/editors/network-admin/components/FolderTree.d.ts.map +0 -1
- package/dist/editors/network-admin/components/FolderTree.js +0 -44
- package/dist/editors/network-admin/components/IsolatedSidebar.d.ts +0 -22
- package/dist/editors/network-admin/components/IsolatedSidebar.d.ts.map +0 -1
- package/dist/editors/network-admin/components/IsolatedSidebar.js +0 -107
- package/dist/editors/network-admin/components/IsolatedSidebarProvider.d.ts +0 -15
- package/dist/editors/network-admin/components/IsolatedSidebarProvider.d.ts.map +0 -1
- package/dist/editors/network-admin/components/IsolatedSidebarProvider.js +0 -367
- package/dist/editors/network-admin/utils.d.ts +0 -60
- package/dist/editors/network-admin/utils.d.ts.map +0 -1
- package/dist/editors/network-admin/utils.js +0 -67
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DriveExplorer.d.ts","sourceRoot":"","sources":["../../../../editors/network-admin/components/DriveExplorer.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DriveExplorer.d.ts","sourceRoot":"","sources":["../../../../editors/network-admin/components/DriveExplorer.tsx"],"names":[],"mappings":"AA0CA;;;GAGG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,GAAG,2CAwpBvC"}
|
|
@@ -5,6 +5,10 @@ import { addDocument, setSelectedNode, useAllFolderNodes, useFileChildNodes, use
|
|
|
5
5
|
import { useCallback, useRef, useState, useMemo, useEffect } from "react";
|
|
6
6
|
import { EditorContainer } from "./EditorContainer.js";
|
|
7
7
|
import { editWorkstream } from "../../../document-models/workstream/gen/creators.js";
|
|
8
|
+
import { PaymentIcon } from "./icons/PaymentIcon.js";
|
|
9
|
+
import { RfpIcon } from "./icons/RfpIcon.js";
|
|
10
|
+
import { SowIcon } from "./icons/SowIcon.js";
|
|
11
|
+
import { WorkstreamIcon } from "./icons/WorkstreamIcon.js";
|
|
8
12
|
const WorkstreamStatusEnums = [
|
|
9
13
|
"RFP_DRAFT",
|
|
10
14
|
"PREWORK_RFC",
|
|
@@ -115,6 +119,7 @@ export function DriveExplorer(props) {
|
|
|
115
119
|
const returnableChildren = {
|
|
116
120
|
id: `editor-${doc.header.id}`,
|
|
117
121
|
title: `${doc.state?.global?.code ? doc.state?.global?.code + " - " : ""}${doc.state?.global?.title || doc.header.name}`,
|
|
122
|
+
icon: _jsx(WorkstreamIcon, { className: "w-5 h-5" }),
|
|
118
123
|
children: wstrChildDocs.map((childDoc) => {
|
|
119
124
|
let dynamicTitle = childDoc?.header.documentType === "powerhouse/rfp"
|
|
120
125
|
? `Request For Proposal`
|
|
@@ -122,6 +127,7 @@ export function DriveExplorer(props) {
|
|
|
122
127
|
return {
|
|
123
128
|
id: `editor-${childDoc.header.id}`,
|
|
124
129
|
title: dynamicTitle,
|
|
130
|
+
icon: _jsx(RfpIcon, { className: "w-5 h-5" }),
|
|
125
131
|
};
|
|
126
132
|
}),
|
|
127
133
|
};
|
|
@@ -149,6 +155,8 @@ export function DriveExplorer(props) {
|
|
|
149
155
|
return {
|
|
150
156
|
id: `editor-${childDoc.header.id}`,
|
|
151
157
|
title: dynamicTitle,
|
|
158
|
+
icon: childDoc.header.documentType ===
|
|
159
|
+
"powerhouse/scopeofwork" ? (_jsx(SowIcon, { className: "w-5 h-5" })) : (_jsx(PaymentIcon, { className: "w-5 h-5" })),
|
|
152
160
|
};
|
|
153
161
|
}),
|
|
154
162
|
});
|
|
@@ -162,19 +170,26 @@ export function DriveExplorer(props) {
|
|
|
162
170
|
const proposalSowDoc = allDocuments?.find((doc) => doc.header.id === proposal.sow);
|
|
163
171
|
const proposalPaymentTermsDoc = allDocuments?.find((doc) => doc.header.id === proposal.paymentTerms);
|
|
164
172
|
// Filter to only include documents that exist
|
|
165
|
-
const proposalChildDocs = [
|
|
173
|
+
const proposalChildDocs = [
|
|
174
|
+
proposalSowDoc,
|
|
175
|
+
proposalPaymentTermsDoc,
|
|
176
|
+
].filter((doc) => doc !== undefined && doc !== null);
|
|
166
177
|
return {
|
|
167
178
|
id: `alternative-proposal-${proposal.id}`,
|
|
168
179
|
title: `${proposal.author.name}`,
|
|
169
180
|
children: proposalChildDocs.map((childDoc) => {
|
|
170
|
-
let dynamicTitle = childDoc.header.documentType ===
|
|
181
|
+
let dynamicTitle = childDoc.header.documentType ===
|
|
182
|
+
"powerhouse/scopeofwork"
|
|
171
183
|
? "Scope of Work"
|
|
172
|
-
: childDoc.header.documentType ===
|
|
184
|
+
: childDoc.header.documentType ===
|
|
185
|
+
"payment-terms"
|
|
173
186
|
? "Payment Terms"
|
|
174
187
|
: null;
|
|
175
188
|
return {
|
|
176
189
|
id: `editor-${childDoc.header.id}`,
|
|
177
190
|
title: dynamicTitle,
|
|
191
|
+
icon: childDoc.header.documentType ===
|
|
192
|
+
"powerhouse/scopeofwork" ? (_jsx(SowIcon, { className: "w-5 h-5" })) : (_jsx(PaymentIcon, { className: "w-5 h-5" })),
|
|
178
193
|
};
|
|
179
194
|
}),
|
|
180
195
|
};
|
|
@@ -195,7 +210,7 @@ export function DriveExplorer(props) {
|
|
|
195
210
|
// Add network profile documents
|
|
196
211
|
...networkProfileDocs.map((doc) => ({
|
|
197
212
|
id: `editor-${doc.header.id}`,
|
|
198
|
-
title: doc.header.name,
|
|
213
|
+
title: doc.state?.global?.name || doc.header.name,
|
|
199
214
|
})),
|
|
200
215
|
],
|
|
201
216
|
};
|
|
@@ -281,11 +296,11 @@ export function DriveExplorer(props) {
|
|
|
281
296
|
, size: "medium", className: "cursor-pointer hover:bg-gray-600 hover:text-white", title: "Create Workstream Document", "aria-description": "Create Workstream Document", onClick: () => {
|
|
282
297
|
setModalDocumentType("powerhouse/workstream");
|
|
283
298
|
setOpenModal(true);
|
|
284
|
-
}, children:
|
|
299
|
+
}, children: _jsxs("span", { className: "flex items-center gap-2", children: [_jsx(WorkstreamIcon, { className: "w-7 h-7 text-white" }), "Create Workstream Document"] }) }), _jsx(Button, { color: "dark" // Customize button appearance
|
|
285
300
|
, size: "medium", className: "cursor-pointer hover:bg-gray-600 hover:text-white", title: "Create Network Profile Document", "aria-description": "Create Network Profile Document", onClick: () => {
|
|
286
301
|
setModalDocumentType("powerhouse/network-profile");
|
|
287
302
|
setOpenModal(true);
|
|
288
|
-
}, disabled: isNetworkProfileCreated, children: _jsx("span", { children: "Create Network Profile Document" }) })] })] }), networkAdminDocuments && networkAdminDocuments.length > 0 && (_jsxs("div", { className: "w-full", children: [_jsx("h3", { className: "mb-4 text-lg font-medium text-gray-700", children: "\uD83D\uDCC4 Documents" }), _jsx("div", { className: "overflow-x-auto rounded-lg border border-gray-200 shadow-sm", children: _jsxs("table", { className: "w-full bg-white", children: [_jsx("thead", { className: "bg-gray-50", children: _jsxs("tr", { children: [_jsx("th", { className: "px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider w-1/4", children: "Name" }), _jsx("th", { className: "px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider w-1/4", children: "Type" }), _jsx("th", { className: "px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider w-1/4", children: "Actions" })] }) }), _jsx("tbody", { className: "bg-white divide-y divide-gray-200", children: networkAdminDocuments.map((document) => {
|
|
303
|
+
}, disabled: isNetworkProfileCreated, children: _jsx("span", { className: "flex items-center gap-2", children: "Create Network Profile Document" }) })] })] }), networkAdminDocuments && networkAdminDocuments.length > 0 && (_jsxs("div", { className: "w-full", children: [_jsx("h3", { className: "mb-4 text-lg font-medium text-gray-700", children: "\uD83D\uDCC4 Documents" }), _jsx("div", { className: "overflow-x-auto rounded-lg border border-gray-200 shadow-sm", children: _jsxs("table", { className: "w-full bg-white", children: [_jsx("thead", { className: "bg-gray-50", children: _jsxs("tr", { children: [_jsx("th", { className: "px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider w-1/4", children: "Name" }), _jsx("th", { className: "px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider w-1/4", children: "Type" }), _jsx("th", { className: "px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider w-1/4", children: "Actions" })] }) }), _jsx("tbody", { className: "bg-white divide-y divide-gray-200", children: networkAdminDocuments.map((document) => {
|
|
289
304
|
// Find the corresponding file node for actions
|
|
290
305
|
const fileNode = fileChildren?.find((file) => file.id === document.header.id);
|
|
291
306
|
return (_jsxs("tr", { className: "hover:bg-gray-50 transition-colors", children: [_jsx("td", { className: "px-2 py-2", children: _jsx("div", { className: "text-sm font-medium text-gray-900 truncate max-w-xs", title: fileNode?.name || document.header.name, children: fileNode?.name || document.header.name }) }), _jsx("td", { className: "px-2 py-2", children: _jsx("div", { className: "text-sm text-gray-500 truncate max-w-xs", title: document.header.documentType, children: document.header.documentType }) }), _jsx("td", { className: "px-2 py-2", children: _jsxs("div", { className: "flex gap-2 flex-wrap", children: [_jsx("button", { onClick: () => {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentIcon.d.ts","sourceRoot":"","sources":["../../../../../editors/network-admin/components/icons/PaymentIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAe/D,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const PaymentIcon = (props) => (_jsxs("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsxs("g", { clipPath: "url(#clip0_3012_15021)", children: [_jsx("path", { d: "M11.3335 10.667C11.3335 10.4902 11.2632 10.3207 11.1382 10.1956C11.0131 10.0706 10.8436 10.0003 10.6668 10.0003H8.6668C8.40782 10.0003 8.30491 10.0834 8.26706 10.1338C8.24571 10.1623 8.22172 10.1892 8.1961 10.2139L4.46303 13.8135C4.19802 14.069 3.7759 14.0615 3.52032 13.7965C3.26478 13.5315 3.27231 13.1094 3.53724 12.8538L7.24167 9.28158C7.6045 8.83776 8.1459 8.66699 8.6668 8.66699H10.6668C11.1972 8.66699 11.7058 8.87786 12.0809 9.25293C12.4559 9.628 12.6668 10.1366 12.6668 10.667C12.6668 11.1974 12.4559 11.706 12.0809 12.0811C11.7058 12.4561 11.1972 12.667 10.6668 12.667H9.33347C8.96528 12.667 8.6668 12.3685 8.6668 12.0003C8.6668 11.6321 8.96528 11.3337 9.33347 11.3337H10.6668C10.8436 11.3337 11.0131 11.2634 11.1382 11.1383C11.2632 11.0133 11.3335 10.8438 11.3335 10.667Z", fill: "currentColor" }), _jsx("path", { d: "M15.4063 7.9627C15.9369 7.9777 16.4402 8.20324 16.8047 8.58901C17.1692 8.97475 17.3653 9.48953 17.3503 10.02C17.3353 10.5493 17.1107 11.0502 16.7266 11.4145L16.7273 11.4152L13.6758 14.3331C13.0671 15.0114 12.2191 15.3331 11.3334 15.3331H8.66672C8.40794 15.3331 8.3049 15.4162 8.26698 15.4666C8.23922 15.5036 8.20739 15.5377 8.17258 15.5682L7.10552 16.5018C6.82844 16.7441 6.40719 16.7163 6.16477 16.4393C5.92231 16.1622 5.95083 15.741 6.22792 15.4985L7.25266 14.6007C7.61538 14.1671 8.1512 13.9998 8.66672 13.9998H11.3334C11.9021 13.9998 12.3757 13.7966 12.6986 13.4275L12.739 13.3846L15.806 10.4516L15.8086 10.449C15.9374 10.3274 16.0126 10.1593 16.0176 9.98224C16.0226 9.80516 15.957 9.63312 15.8353 9.50437C15.7137 9.3758 15.5461 9.30046 15.3692 9.29539C15.2143 9.29101 15.063 9.34075 14.9415 9.43471L14.8868 9.48158L12.0873 12.0818C11.8175 12.3324 11.3951 12.3165 11.1446 12.0467C10.8943 11.7769 10.91 11.3551 11.1797 11.1046L13.9753 8.50958V8.50893C14.361 8.14444 14.8759 7.94779 15.4063 7.9627Z", fill: "currentColor" }), _jsx("path", { d: "M2.86177 12.1953C3.12212 11.9349 3.54412 11.9349 3.80447 12.1953L7.80447 16.1953C8.06482 16.4556 8.06482 16.8776 7.80447 17.138C7.54412 17.3983 7.12212 17.3983 6.86177 17.138L2.86177 13.138C2.60142 12.8776 2.60142 12.4556 2.86177 12.1953Z", fill: "currentColor" }), _jsx("path", { d: "M13.9334 8.00065C13.9334 7.30118 13.3666 6.73386 12.6672 6.73372C11.9676 6.73372 11.4002 7.30109 11.4002 8.00065C11.4004 8.70009 11.9677 9.26693 12.6672 9.26693C13.3665 9.26679 13.9333 8.70001 13.9334 8.00065ZM15.2668 8.00065C15.2666 9.43638 14.1029 10.6001 12.6672 10.6003C11.2313 10.6003 10.067 9.43647 10.0669 8.00065C10.0669 6.56471 11.2312 5.40039 12.6672 5.40039C14.103 5.40053 15.2668 6.5648 15.2668 8.00065Z", fill: "currentColor" }), _jsx("path", { d: "M7.3335 5.33366C7.3335 4.59728 6.73654 4.00033 6.00016 4.00033C5.26378 4.00033 4.66683 4.59728 4.66683 5.33366C4.66683 6.07004 5.26378 6.66699 6.00016 6.66699C6.73654 6.66699 7.3335 6.07004 7.3335 5.33366ZM8.66683 5.33366C8.66683 6.80642 7.47292 8.00033 6.00016 8.00033C4.5274 8.00033 3.3335 6.80642 3.3335 5.33366C3.3335 3.8609 4.5274 2.66699 6.00016 2.66699C7.47292 2.66699 8.66683 3.8609 8.66683 5.33366Z", fill: "currentColor" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_3012_15021", children: _jsx("rect", { width: "16", height: "16", fill: "white", transform: "translate(2 2)" }) }) })] }));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RfpIcon.d.ts","sourceRoot":"","sources":["../../../../../editors/network-admin/components/icons/RfpIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAK3D,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const RfpIcon = (props) => (_jsxs("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { d: "M3.3335 14.6663V5.33301C3.3335 4.80257 3.54436 4.29402 3.91943 3.91895C4.29451 3.54387 4.80306 3.33301 5.3335 3.33301H10.0002C10.3684 3.33301 10.6668 3.63148 10.6668 3.99967C10.6668 4.36786 10.3684 4.66634 10.0002 4.66634H5.3335C5.15668 4.66634 4.98717 4.73663 4.86214 4.86165C4.73712 4.98668 4.66683 5.1562 4.66683 5.33301V14.6663C4.66683 14.8432 4.73712 15.0127 4.86214 15.1377C4.98717 15.2627 5.15669 15.333 5.3335 15.333H14.6668C14.8436 15.333 15.0132 15.2627 15.1382 15.1377C15.2632 15.0127 15.3335 14.8432 15.3335 14.6663V9.99967C15.3335 9.63148 15.632 9.33301 16.0002 9.33301C16.3684 9.33301 16.6668 9.63148 16.6668 9.99967V14.6663C16.6668 15.1968 16.456 15.7053 16.0809 16.0804C15.7058 16.4555 15.1973 16.6663 14.6668 16.6663H5.3335C4.80306 16.6663 4.29451 16.4555 3.91943 16.0804C3.54436 15.7053 3.3335 15.1968 3.3335 14.6663Z", fill: "currentColor" }), _jsx("path", { d: "M15.9975 4.74967C15.9975 4.55147 15.919 4.36119 15.7788 4.22103C15.6386 4.0809 15.4484 4.00228 15.2502 4.00228C15.0519 4.0023 14.8617 4.08088 14.7215 4.22103L8.71304 10.2308H8.71239C8.6333 10.3097 8.5753 10.4074 8.54377 10.5146L8.15445 11.8447L9.48583 11.4561L9.5646 11.4274C9.64112 11.3942 9.71097 11.3467 9.77033 11.2874L15.7788 5.27832L15.8283 5.22363C15.9373 5.09059 15.9975 4.92321 15.9975 4.74967ZM17.3309 4.74967C17.3309 5.30154 17.1117 5.83079 16.7215 6.22103L10.713 12.2308C10.4756 12.468 10.1817 12.6413 9.85953 12.7354L9.86018 12.736L7.94481 13.2959H7.94416C7.77211 13.3461 7.58977 13.3488 7.41617 13.3044C7.24251 13.2599 7.08395 13.1694 6.95718 13.0426C6.83054 12.916 6.73996 12.7578 6.69546 12.5843C6.65097 12.4107 6.65373 12.2278 6.70393 12.0557H6.70458L7.26447 10.1403V10.1396C7.34719 9.85791 7.49068 9.59789 7.68439 9.37858L7.77033 9.28744L13.7788 3.27832L13.8537 3.20736C14.2354 2.86174 14.7328 2.66896 15.2502 2.66895C15.802 2.66895 16.3313 2.88815 16.7215 3.27832C17.1117 3.66853 17.3308 4.19784 17.3309 4.74967Z", fill: "currentColor" })] }));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SowIcon.d.ts","sourceRoot":"","sources":["../../../../../editors/network-admin/components/icons/SowIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAI3D,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
export const SowIcon = (props) => (_jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M14.5449 4.75293C13.9257 5.16578 13.1262 5.33366 12.222 5.33366C11.2775 5.33366 10.4142 4.92692 9.68164 4.61296C8.90718 4.28103 8.18455 4.00033 7.33333 4.00033C6.6121 4.00033 5.91032 4.23425 5.33333 4.66699V11.1182C5.95356 10.8239 6.63586 10.667 7.33333 10.667C8.47943 10.667 9.42618 11.0527 10.2474 11.3812C11.0928 11.7193 11.8129 12.0003 12.6667 12.0003L12.8014 11.9977C13.475 11.9705 14.1257 11.7394 14.6667 11.3337V4.66699L14.5449 4.75293ZM16 11.3337C16 11.5407 15.9519 11.7449 15.8594 11.93C15.7668 12.1151 15.6323 12.2759 15.4668 12.4001C14.7095 12.9681 13.7984 13.2916 12.8555 13.3298L12.6667 13.3337C11.5206 13.3337 10.5738 12.948 9.7526 12.6195C8.90721 12.2813 8.18713 12.0003 7.33333 12.0003C6.60958 12.0003 5.90821 12.2358 5.33333 12.667V16.667C5.33333 17.0352 5.03486 17.3337 4.66667 17.3337C4.29848 17.3337 4 17.0352 4 16.667V4.66699C4 4.46 4.04805 4.25578 4.14063 4.07064C4.23316 3.88557 4.3677 3.72476 4.5332 3.60059C5.34099 2.99475 6.32361 2.66699 7.33333 2.66699C8.48206 2.66699 9.42606 3.05298 10.207 3.3877C11.03 3.74039 11.6112 4.00033 12.222 4.00033C13.0349 4.00032 13.5525 3.83589 13.8665 3.60059C14.0646 3.45202 14.3003 3.36111 14.5469 3.33887C14.7935 3.31663 15.0415 3.36355 15.263 3.47428C15.4844 3.58499 15.6706 3.75527 15.8008 3.96582C15.931 4.17645 16 4.41938 16 4.66699V11.3337Z", fill: "currentColor" }) }));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WorkstreamIcon.d.ts","sourceRoot":"","sources":["../../../../../editors/network-admin/components/icons/WorkstreamIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAWlE,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const WorkstreamIcon = (props) => (_jsxs("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("path", { d: "M14.4716 6.86225C14.2112 6.6019 13.7892 6.6019 13.5289 6.86225C13.2685 7.1226 13.2685 7.54461 13.5289 7.80496L15.7242 10.0003L13.5289 12.1956C13.2685 12.4559 13.2685 12.8779 13.5289 13.1383C13.7892 13.3986 14.2112 13.3986 14.4716 13.1383L17.1382 10.4716C17.3986 10.2113 17.3986 9.78927 17.1382 9.52892L14.4716 6.86225Z", fill: "currentColor" }), _jsx("path", { d: "M3.3335 9.33301C2.96531 9.33301 2.66683 9.63148 2.66683 9.99967C2.66683 10.3679 2.96531 10.6663 3.3335 10.6663H16.6668C17.035 10.6663 17.3335 10.3679 17.3335 9.99967C17.3335 9.63148 17.035 9.33301 16.6668 9.33301H3.3335Z", fill: "currentColor" }), _jsx("path", { d: "M11.3335 8.66667C11.3335 8.29848 11.035 8 10.6668 8C10.2986 8 10.0002 8.29848 10.0002 8.66667L10.0002 9.33333C10.0002 9.70152 10.2986 10 10.6668 10C11.035 10 11.3335 9.70152 11.3335 9.33333L11.3335 8.66667Z", fill: "currentColor" }), _jsx("path", { d: "M8.6665 10.6667C8.6665 10.2985 8.36803 10 7.99984 10C7.63165 10 7.33317 10.2985 7.33317 10.6667L7.33317 11.3333C7.33317 11.7015 7.63165 12 7.99984 12C8.36803 12 8.6665 11.7015 8.6665 11.3333L8.6665 10.6667Z", fill: "currentColor" }), _jsx("path", { d: "M6 8.66667C6 8.29848 5.70152 8 5.33333 8C4.96514 8 4.66667 8.29848 4.66667 8.66667L4.66667 9.33333C4.66667 9.70152 4.96514 10 5.33333 10C5.70152 10 6 9.70152 6 9.33333L6 8.66667Z", fill: "currentColor" }), _jsx("path", { d: "M7 13.333C7 12.7807 7.44772 12.333 8 12.333C8.55228 12.333 9 12.7807 9 13.333C9 13.8853 8.55228 14.333 8 14.333V15.333C9.10457 15.333 10 14.4376 10 13.333C10 12.2284 9.10457 11.333 8 11.333C6.89543 11.333 6 12.2284 6 13.333C6 14.4376 6.89543 15.333 8 15.333V14.333C7.44772 14.333 7 13.8853 7 13.333Z", fill: "currentColor" }), _jsx("path", { d: "M9.6665 6.66699C9.6665 6.11471 10.1142 5.66699 10.6665 5.66699C11.2188 5.66699 11.6665 6.11471 11.6665 6.66699C11.6665 7.21928 11.2188 7.66699 10.6665 7.66699V8.66699C11.7711 8.66699 12.6665 7.77156 12.6665 6.66699C12.6665 5.56242 11.7711 4.66699 10.6665 4.66699C9.56193 4.66699 8.6665 5.56242 8.6665 6.66699C8.6665 7.77156 9.56193 8.66699 10.6665 8.66699V7.66699C10.1142 7.66699 9.6665 7.21928 9.6665 6.66699Z", fill: "currentColor" }), _jsx("path", { d: "M4.3335 6.66699C4.3335 6.11471 4.78121 5.66699 5.3335 5.66699C5.88578 5.66699 6.3335 6.11471 6.3335 6.66699C6.3335 7.21928 5.88578 7.66699 5.3335 7.66699V8.66699C6.43807 8.66699 7.3335 7.77156 7.3335 6.66699C7.3335 5.56242 6.43807 4.66699 5.3335 4.66699C4.22893 4.66699 3.3335 5.56242 3.3335 6.66699C3.3335 7.77156 4.22893 8.66699 5.3335 8.66699V7.66699C4.78121 7.66699 4.3335 7.21928 4.3335 6.66699Z", fill: "currentColor" })] }));
|