@cccsaurora/clue-ui 1.2.0-dev.254 → 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.
Files changed (179) hide show
  1. package/ActionForm-pWyIi01Z.js +4460 -0
  2. package/AnnotationDetails-11P7yhyx.js +160 -0
  3. package/AnnotationPreview-BGqlBBcp.js +140 -0
  4. package/ClueEnrichContext-DDZf646J.js +418 -0
  5. package/FlexOne-BXWFOd1T.js +6 -0
  6. package/_MapCache-BiTi0iqu.js +180 -0
  7. package/_Uint8Array-TJBs9NS2.js +101 -0
  8. package/_baseAssignValue-CNMLQZco.js +20 -0
  9. package/_baseClone-DajKHDCs.js +207 -0
  10. package/_baseExtremum-DhV10dXG.js +27 -0
  11. package/_baseFlatten-C8CjmqQ-.js +72 -0
  12. package/_baseGet-DSZygzyq.js +79 -0
  13. package/_baseIsEqual-C08cUUpA.js +147 -0
  14. package/_baseIteratee-DGZdhdqr.js +95 -0
  15. package/_baseSlice-M5RKzt1A.js +10 -0
  16. package/_baseSum-wEbgNeUs.js +10 -0
  17. package/_baseUniq-CGlHphLr.js +79 -0
  18. package/_commonjsHelpers-DaMA6jEr.js +8 -0
  19. package/_createAggregator-BvcoTZto.js +53 -0
  20. package/_getPrototype-Dm06JiGv.js +5 -0
  21. package/_getTag-Cfxlub3L.js +90 -0
  22. package/_setToArray-C7yMOeww.js +29 -0
  23. package/cloneDeep-wjl3XmFj.js +8 -0
  24. package/components/AnnotationBody.js +35 -49
  25. package/components/AnnotationDetailPopover.js +30 -36
  26. package/components/AnnotationDetails.js +7 -7
  27. package/components/AnnotationEntry.js +35 -35
  28. package/components/AnnotationPreview.js +5 -5
  29. package/components/ClassificationChip.js +23 -44
  30. package/components/CountBadge.js +26 -31
  31. package/components/EnrichedCard.js +97 -110
  32. package/components/EnrichedChip.js +105 -130
  33. package/components/EnrichedTypography.js +107 -133
  34. package/components/ErrorBoundary.js +24 -28
  35. package/components/RetryFailedEnrichments.js +9 -10
  36. package/components/SourcePicker.js +49 -57
  37. package/components/actions/ActionForm.js +4 -4
  38. package/components/actions/ExecutePopover.js +59 -75
  39. package/components/actions/ResultModal.js +4 -4
  40. package/components/actions/form/schemaAdapter.js +23 -39
  41. package/components/actions/formats/FileResult.js +59 -86
  42. package/components/actions/formats/index.js +10 -21
  43. package/components/display/graph/ExpandMoreButton.js +10 -10
  44. package/components/display/graph/elements/NodeCard.js +91 -111
  45. package/components/display/graph/elements/NodeTag.js +13 -15
  46. package/components/display/graph/index.js +202 -261
  47. package/components/display/graph/visualizations/Leaf.js +69 -88
  48. package/components/display/graph/visualizations/cloud/index.js +81 -98
  49. package/components/display/graph/visualizations/icons/BaseIcon.js +21 -26
  50. package/components/display/graph/visualizations/icons/BugIcon.js +12 -12
  51. package/components/display/graph/visualizations/icons/HostIcon.js +12 -12
  52. package/components/display/graph/visualizations/icons/NetworkIcon.js +12 -12
  53. package/components/display/graph/visualizations/icons/ProcessIcon.js +12 -12
  54. package/components/display/graph/visualizations/icons/TargetIcon.js +13 -13
  55. package/components/display/graph/visualizations/icons/index.js +13 -14
  56. package/components/display/graph/visualizations/panels/NodePanel.js +8 -10
  57. package/components/display/graph/visualizations/tree/BundleLine.js +81 -108
  58. package/components/display/graph/visualizations/tree/Triangle.js +13 -13
  59. package/components/display/graph/visualizations/tree/index.js +305 -407
  60. package/components/display/icons/Iconified.js +12 -27
  61. package/components/display/json/index.js +4 -4
  62. package/components/display/markdown/index.js +5770 -8678
  63. package/components/enrichment/EnrichPopover.js +46 -54
  64. package/components/fetchers/Fetcher.js +117 -155
  65. package/components/fetchers/PreviewModal.js +17 -20
  66. package/components/fetchers/StatusChip.js +17 -21
  67. package/components/group/Entry.js +11 -13
  68. package/components/group/Group.js +10 -13
  69. package/components/group/GroupControl.js +65 -76
  70. package/components/stats/QueryStatus.js +33 -43
  71. package/countBy-pIyxNZhO.js +8 -0
  72. package/data/event.js +4 -6
  73. package/database/index.js +2 -2
  74. package/debounce-DryYcbJ4.js +56 -0
  75. package/get-CH7kz5Ix.js +8 -0
  76. package/groupBy-yNrpdipq.js +8 -0
  77. package/hooks/ClueActionContext.js +6 -6
  78. package/hooks/ClueComponentContext.js +23 -29
  79. package/hooks/ClueConfigProvider.js +12 -14
  80. package/hooks/ClueDatabaseContext.js +13 -19
  81. package/hooks/ClueEnrichContext.js +8 -8
  82. package/hooks/ClueFetcherContext.js +56 -83
  83. package/hooks/ClueGroupContext.js +14 -17
  84. package/hooks/CluePopupContext.js +5 -5
  85. package/hooks/ClueProvider.js +10 -12
  86. package/hooks/selectors.js +7 -7
  87. package/hooks/useActionResult.js +2 -2
  88. package/hooks/useAnnotations.js +31 -47
  89. package/hooks/useClue.js +4 -6
  90. package/hooks/useClueActions.js +3 -3
  91. package/hooks/useClueConfig.js +4 -6
  92. package/hooks/useClueTypeConfig.js +3 -3
  93. package/hooks/useComparator.js +435 -722
  94. package/hooks/useErrors.js +18 -22
  95. package/hooks/useFetcherResult.js +24 -33
  96. package/hooks/useMyHighlights.js +36 -66
  97. package/hooks/useMyLocalStorage.js +37 -66
  98. package/iconify-BBckr5AQ.js +1263 -0
  99. package/icons/Action.js +49 -66
  100. package/icons/Assessment.js +68 -84
  101. package/icons/Context.js +63 -77
  102. package/icons/Opinion.js +65 -77
  103. package/icons/iconMap.js +2 -2
  104. package/identity-ByMq8VxU.js +6 -0
  105. package/index-BHAe_V9n.js +12768 -0
  106. package/index-CA5CUNZO.js +975 -0
  107. package/index-D_ZywK71.js +358 -0
  108. package/index-Dj5C04IX.js +568 -0
  109. package/index-p5_wX7q1.js +11729 -0
  110. package/isNil-CjWwlQS3.js +6 -0
  111. package/isObject-B53jY8Qg.js +7 -0
  112. package/isObjectLike-BatpeCIi.js +29 -0
  113. package/isSymbol-C3_SC0Qp.js +8 -0
  114. package/last-7CdUxN0r.js +7 -0
  115. package/main.js +60 -60
  116. package/package.json +1 -1
  117. package/sortBy-0BpKRt8p.js +79 -0
  118. package/sumBy-Do6Ff4Bw.js +8 -0
  119. package/text/Frequency.js +23 -42
  120. package/toFinite-BMy6GObD.js +14 -0
  121. package/toNumber-YVhnnJv4.js +31 -0
  122. package/useClueTypeConfig-77zd_zdF.js +2292 -0
  123. package/utils/chain.js +64 -91
  124. package/utils/classificationParser.js +256 -519
  125. package/utils/constants.js +10 -35
  126. package/utils/graph.js +45 -72
  127. package/utils/hashUtil.js +7 -7
  128. package/utils/line.js +81 -131
  129. package/utils/loggerUtil.js +3 -5
  130. package/utils/sessionStorage.js +27 -41
  131. package/utils/time.js +423 -423
  132. package/utils/utils.js +9 -9
  133. package/utils/window.js +10 -21
  134. package/utils-D5hPDE7N.js +129 -0
  135. package/ActionForm-C0aE9HUv.js +0 -5941
  136. package/AnnotationDetails-CEou0vCc.js +0 -175
  137. package/AnnotationPreview-CLMVD6Ec.js +0 -188
  138. package/ClueEnrichContext-BkD9ZwM9.js +0 -541
  139. package/FlexOne-BSYAhhtG.js +0 -9
  140. package/_MapCache-WmuDdwuH.js +0 -222
  141. package/_Uint8Array-DdG4KLKn.js +0 -128
  142. package/_baseAssignValue-CGTuELqU.js +0 -25
  143. package/_baseClone-BpWiBnMp.js +0 -283
  144. package/_baseExtremum-BY663UjY.js +0 -33
  145. package/_baseFlatten-B69cDsaV.js +0 -92
  146. package/_baseGet-Bx3A4Qfp.js +0 -108
  147. package/_baseIsEqual-B4IufFlL.js +0 -208
  148. package/_baseIteratee-7AQvAy1o.js +0 -126
  149. package/_baseSlice-GAv_YFTT.js +0 -20
  150. package/_baseSum-D0WC1dN0.js +0 -13
  151. package/_baseUniq-B8fK6hI-.js +0 -115
  152. package/_commonjsHelpers-DWwsNxpa.js +0 -8
  153. package/_createAggregator-CwGPThny.js +0 -63
  154. package/_getPrototype-CblfEidB.js +0 -5
  155. package/_getTag-jwz4XLoZ.js +0 -126
  156. package/_setToArray-CaPKQhcz.js +0 -33
  157. package/cloneDeep-DmUylbkM.js +0 -8
  158. package/countBy-DqlU5OwT.js +0 -14
  159. package/debounce-bV0h5FC5.js +0 -92
  160. package/get-DSsNkRQs.js +0 -8
  161. package/groupBy-ChDRT7uy.js +0 -14
  162. package/iconify-CXMreGTg.js +0 -1782
  163. package/identity-CPGTqrE4.js +0 -6
  164. package/index-AMfoEg_6.js +0 -696
  165. package/index-B6C2a_Lg.js +0 -1172
  166. package/index-C12gPw2W.js +0 -17698
  167. package/index-DCKkHTvx.js +0 -15750
  168. package/index-UkW8Sur3.js +0 -465
  169. package/isNil-CIubwp4T.js +0 -6
  170. package/isObject-FTY-5JQX.js +0 -7
  171. package/isObjectLike-OAgjjZye.js +0 -48
  172. package/isSymbol-Xd2FsJyp.js +0 -8
  173. package/last-CUCl67Im.js +0 -7
  174. package/sortBy-C7mGPI_D.js +0 -100
  175. package/sumBy-CGALjmwQ.js +0 -8
  176. package/toFinite-Bc55msYj.js +0 -16
  177. package/toNumber-DPxy1FBy.js +0 -39
  178. package/useClueTypeConfig-D2tf4-NM.js +0 -3289
  179. package/utils-71DpzFrA.js +0 -199
package/utils/utils.js CHANGED
@@ -1,12 +1,12 @@
1
- import { d, b, r, s, t } from "../utils-71DpzFrA.js";
1
+ import { d as a, b as i, r as p, s as c, t as h } from "../utils-D5hPDE7N.js";
2
2
  import "./time.js";
3
- import "../_MapCache-WmuDdwuH.js";
4
- import "../_baseUniq-B8fK6hI-.js";
5
- import "../isNil-CIubwp4T.js";
3
+ import "../_MapCache-BiTi0iqu.js";
4
+ import "../_baseUniq-CGlHphLr.js";
5
+ import "../isNil-CjWwlQS3.js";
6
6
  export {
7
- d as delay,
8
- b as filterEnrichments,
9
- r as removeEmpty,
10
- s as searchObject,
11
- t as twitterShort
7
+ a as delay,
8
+ i as filterEnrichments,
9
+ p as removeEmpty,
10
+ c as searchObject,
11
+ h as twitterShort
12
12
  };
package/utils/window.js CHANGED
@@ -1,24 +1,13 @@
1
- const safeDispatchEvent = (event) => {
2
- if (typeof window === "undefined") {
3
- return;
4
- }
5
- window.dispatchEvent(event);
6
- };
7
- const safeRemoveEventListener = (type, listener, options) => {
8
- if (typeof window === "undefined") {
9
- return;
10
- }
11
- window.removeEventListener(type, listener, options);
12
- };
13
- const safeAddEventListener = (type, listener, options) => {
14
- if (typeof window === "undefined") {
15
- return;
16
- }
17
- window.addEventListener(type, listener, options);
18
- return () => safeRemoveEventListener(type, listener, options);
1
+ const i = (e) => {
2
+ typeof window > "u" || window.dispatchEvent(e);
3
+ }, d = (e, n, t) => {
4
+ typeof window > "u" || window.removeEventListener(e, n, t);
5
+ }, o = (e, n, t) => {
6
+ if (!(typeof window > "u"))
7
+ return window.addEventListener(e, n, t), () => d(e, n, t);
19
8
  };
20
9
  export {
21
- safeAddEventListener,
22
- safeDispatchEvent,
23
- safeRemoveEventListener
10
+ o as safeAddEventListener,
11
+ i as safeDispatchEvent,
12
+ d as safeRemoveEventListener
24
13
  };
@@ -0,0 +1,129 @@
1
+ var P = Object.defineProperty;
2
+ var _ = (t, e, r) => e in t ? P(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r;
3
+ var p = (t, e, r) => _(t, typeof e != "symbol" ? e + "" : e, r);
4
+ import { dayjs as d } from "./utils/time.js";
5
+ import { i as h } from "./_MapCache-BiTi0iqu.js";
6
+ import { b as g, i as K } from "./_baseUniq-CGlHphLr.js";
7
+ import { b as N } from "./_baseIsEqual-C08cUUpA.js";
8
+ import { i as T } from "./isNil-CjWwlQS3.js";
9
+ import { i as q, b as B } from "./isObjectLike-BatpeCIi.js";
10
+ import { g as C } from "./_getPrototype-Dm06JiGv.js";
11
+ function w(t) {
12
+ return t && t.constructor && typeof t.constructor.isBuffer == "function" && t.constructor.isBuffer(t);
13
+ }
14
+ function E(t) {
15
+ return t;
16
+ }
17
+ function A(t, e) {
18
+ e = e || {};
19
+ const r = e.delimiter || ".", c = e.maxDepth, u = e.transformKey || E, a = {};
20
+ function b(l, y, m) {
21
+ m = m || 1, Object.keys(l).forEach(function(o) {
22
+ const n = l[o], i = e.safe && Array.isArray(n), s = Object.prototype.toString.call(n), f = w(n), O = s === "[object Object]" || s === "[object Array]", j = y ? y + r + u(o) : u(o);
23
+ if (!i && !f && O && Object.keys(n).length && (!e.maxDepth || m < c))
24
+ return b(n, j, m + 1);
25
+ a[j] = n;
26
+ });
27
+ }
28
+ return b(t), a;
29
+ }
30
+ function S(t, e) {
31
+ e = e || {};
32
+ const r = e.delimiter || ".", c = e.overwrite || !1, u = e.transformKey || E, a = {};
33
+ if (w(t) || Object.prototype.toString.call(t) !== "[object Object]")
34
+ return t;
35
+ function l(o) {
36
+ const n = Number(o);
37
+ return isNaN(n) || o.indexOf(".") !== -1 || e.object ? o : n;
38
+ }
39
+ function y(o, n, i) {
40
+ return Object.keys(i).reduce(function(s, f) {
41
+ return s[o + r + f] = i[f], s;
42
+ }, n);
43
+ }
44
+ function m(o) {
45
+ const n = Object.prototype.toString.call(o), i = n === "[object Array]", s = n === "[object Object]";
46
+ if (o) {
47
+ if (i)
48
+ return !o.length;
49
+ if (s)
50
+ return !Object.keys(o).length;
51
+ } else return !0;
52
+ }
53
+ return t = Object.keys(t).reduce(function(o, n) {
54
+ const i = Object.prototype.toString.call(t[n]);
55
+ return !(i === "[object Object]" || i === "[object Array]") || m(t[n]) ? (o[n] = t[n], o) : y(
56
+ n,
57
+ o,
58
+ A(t[n], e)
59
+ );
60
+ }, {}), Object.keys(t).forEach(function(o) {
61
+ const n = o.split(r).map(u);
62
+ let i = l(n.shift()), s = l(n[0]), f = a;
63
+ for (; s !== void 0; ) {
64
+ if (i === "__proto__")
65
+ return;
66
+ const O = Object.prototype.toString.call(f[i]), j = O === "[object Object]" || O === "[object Array]";
67
+ if (!c && !j && typeof f[i] < "u")
68
+ return;
69
+ (c && !j || !c && f[i] == null) && (f[i] = typeof s == "number" && !e.object ? [] : {}), f = f[i], n.length > 0 && (i = l(n.shift()), s = l(n[0]));
70
+ }
71
+ f[i] = S(t[o], e);
72
+ }), a;
73
+ }
74
+ var I = "[object Object]", v = Function.prototype, D = Object.prototype, x = v.toString, F = D.hasOwnProperty, G = x.call(Object);
75
+ function L(t) {
76
+ if (!q(t) || B(t) != I)
77
+ return !1;
78
+ var e = C(t);
79
+ if (e === null)
80
+ return !0;
81
+ var r = F.call(e, "constructor") && e.constructor;
82
+ return typeof r == "function" && r instanceof r && x.call(r) == G;
83
+ }
84
+ function R(t, e) {
85
+ return N(t, e);
86
+ }
87
+ function U(t, e) {
88
+ return e = typeof e == "function" ? e : void 0, t && t.length ? g(t, void 0, e) : [];
89
+ }
90
+ const Y = (t) => {
91
+ if (!t || t === "?")
92
+ return "?";
93
+ const e = d(), r = d(t);
94
+ return r.isAfter(e) ? e.fromNow() : r.fromNow();
95
+ }, Z = (t, e = !1) => {
96
+ let r, c;
97
+ class u extends Promise {
98
+ constructor() {
99
+ super(...arguments);
100
+ p(this, "cancel", () => {
101
+ e && c(), clearTimeout(r);
102
+ });
103
+ }
104
+ }
105
+ return new u((a, b) => {
106
+ r = setTimeout(a, t), c = b;
107
+ });
108
+ }, W = (t, e = !1) => e && K(t) ? null : h(t) ? t : Object.fromEntries(
109
+ Object.entries(t ?? {}).filter(([r, c]) => !T(c)).map(([r, c]) => [r, L(c) || h(c) ? W(c, e) : c]).filter(([r, c]) => !!c)
110
+ ), $ = (t, e) => {
111
+ try {
112
+ const r = new RegExp(e, "i");
113
+ return S(
114
+ Object.fromEntries(Object.entries(A(t)).filter(([c, u]) => r.test(c) || r.test(u))) ?? {}
115
+ );
116
+ } catch {
117
+ return t;
118
+ }
119
+ }, tt = (t) => U(t, R);
120
+ export {
121
+ L as a,
122
+ tt as b,
123
+ Z as d,
124
+ A as f,
125
+ R as i,
126
+ W as r,
127
+ $ as s,
128
+ Y as t
129
+ };