@agenticmail/enterprise 0.5.209 → 0.5.211
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/package.json
CHANGED
|
@@ -43,7 +43,7 @@ export const I = {
|
|
|
43
43
|
link: () => h('svg', S, h('path', { d: 'M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71' }), h('path', { d: 'M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71' })),
|
|
44
44
|
folder: () => h('svg', S, h('path', { d: 'M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z' })),
|
|
45
45
|
globe: () => h('svg', S, h('circle', { cx: 12, cy: 12, r: 10 }), h('line', { x1: 2, y1: 12, x2: 22, y2: 12 }), h('path', { d: 'M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z' })),
|
|
46
|
-
workflow: () => h('svg',
|
|
46
|
+
workflow: () => h('svg', Object.assign({}, S, { width: 16, height: 16 }), h('circle', { cx: 4, cy: 12, r: 2.5, fill: 'currentColor', stroke: 'none' }), h('circle', { cx: 12, cy: 7, r: 2.5, fill: 'currentColor', stroke: 'none' }), h('circle', { cx: 12, cy: 17, r: 2.5, fill: 'currentColor', stroke: 'none' }), h('circle', { cx: 20, cy: 12, r: 2.5, fill: 'currentColor', stroke: 'none' }), h('path', { d: 'M6.5 11L9.5 8M6.5 13L9.5 16M14.5 8L17.5 11M14.5 16L17.5 13', stroke: 'currentColor', strokeWidth: 1.5, fill: 'none' })),
|
|
47
47
|
orgChart: () => h('svg', S, h('rect', { x: 8, y: 2, width: 8, height: 5, rx: 1 }), h('rect', { x: 1, y: 17, width: 8, height: 5, rx: 1 }), h('rect', { x: 15, y: 17, width: 8, height: 5, rx: 1 }), h('line', { x1: 12, y1: 7, x2: 12, y2: 12 }), h('line', { x1: 5, y1: 12, x2: 19, y2: 12 }), h('line', { x1: 5, y1: 12, x2: 5, y2: 17 }), h('line', { x1: 19, y1: 12, x2: 19, y2: 17 })),
|
|
48
48
|
terminal: () => h('svg', S, h('polyline', { points: '4 17 10 11 4 5' }), h('line', { x1: 12, y1: 19, x2: 20, y2: 19 })),
|
|
49
49
|
chart: () => h('svg', S, h('line', { x1: 18, y1: 20, x2: 18, y2: 10 }), h('line', { x1: 12, y1: 20, x2: 12, y2: 4 }), h('line', { x1: 6, y1: 20, x2: 6, y2: 14 })),
|