@cccsaurora/clue-ui 1.2.1-patch.256 → 1.3.0-dev.255

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 (181) hide show
  1. package/ActionForm-C0aE9HUv.js +5941 -0
  2. package/AnnotationDetails-CEou0vCc.js +175 -0
  3. package/AnnotationPreview-CLMVD6Ec.js +188 -0
  4. package/ClueEnrichContext-BkD9ZwM9.js +541 -0
  5. package/FlexOne-BSYAhhtG.js +9 -0
  6. package/_MapCache-WmuDdwuH.js +222 -0
  7. package/_Uint8Array-DdG4KLKn.js +128 -0
  8. package/_baseAssignValue-CGTuELqU.js +25 -0
  9. package/_baseClone-BpWiBnMp.js +283 -0
  10. package/_baseExtremum-BY663UjY.js +33 -0
  11. package/_baseFlatten-B69cDsaV.js +92 -0
  12. package/_baseGet-Bx3A4Qfp.js +108 -0
  13. package/_baseIsEqual-B4IufFlL.js +208 -0
  14. package/_baseIteratee-7AQvAy1o.js +126 -0
  15. package/_baseSlice-GAv_YFTT.js +20 -0
  16. package/_baseSum-D0WC1dN0.js +13 -0
  17. package/_baseUniq-B8fK6hI-.js +115 -0
  18. package/_commonjsHelpers-DWwsNxpa.js +8 -0
  19. package/_createAggregator-CwGPThny.js +63 -0
  20. package/_getPrototype-CblfEidB.js +5 -0
  21. package/_getTag-jwz4XLoZ.js +126 -0
  22. package/_setToArray-CaPKQhcz.js +33 -0
  23. package/cloneDeep-DmUylbkM.js +8 -0
  24. package/components/AnnotationBody.js +49 -35
  25. package/components/AnnotationDetailPopover.js +36 -30
  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 +44 -23
  30. package/components/CountBadge.js +31 -26
  31. package/components/EnrichedCard.js +110 -97
  32. package/components/EnrichedChip.js +130 -105
  33. package/components/EnrichedTypography.js +133 -107
  34. package/components/ErrorBoundary.js +28 -24
  35. package/components/RetryFailedEnrichments.js +10 -9
  36. package/components/SourcePicker.js +57 -49
  37. package/components/actions/ActionForm.js +4 -4
  38. package/components/actions/ExecutePopover.js +75 -59
  39. package/components/actions/ResultModal.js +4 -4
  40. package/components/actions/form/schemaAdapter.js +39 -23
  41. package/components/actions/formats/FileResult.js +86 -59
  42. package/components/actions/formats/index.js +21 -10
  43. package/components/display/graph/ExpandMoreButton.js +10 -10
  44. package/components/display/graph/elements/NodeCard.js +111 -91
  45. package/components/display/graph/elements/NodeTag.js +15 -13
  46. package/components/display/graph/index.js +261 -202
  47. package/components/display/graph/visualizations/Leaf.js +88 -69
  48. package/components/display/graph/visualizations/cloud/index.js +98 -81
  49. package/components/display/graph/visualizations/icons/BaseIcon.js +26 -21
  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 +14 -13
  56. package/components/display/graph/visualizations/panels/NodePanel.js +10 -8
  57. package/components/display/graph/visualizations/tree/BundleLine.js +108 -81
  58. package/components/display/graph/visualizations/tree/Triangle.js +13 -13
  59. package/components/display/graph/visualizations/tree/index.js +407 -306
  60. package/components/display/icons/Iconified.js +27 -12
  61. package/components/display/json/index.js +4 -4
  62. package/components/display/markdown/index.js +8678 -5770
  63. package/components/enrichment/EnrichPopover.js +54 -46
  64. package/components/fetchers/Fetcher.js +155 -117
  65. package/components/fetchers/PreviewModal.js +20 -17
  66. package/components/fetchers/StatusChip.js +21 -17
  67. package/components/group/Entry.js +13 -11
  68. package/components/group/Group.js +13 -10
  69. package/components/group/GroupControl.js +76 -65
  70. package/components/stats/QueryStatus.js +43 -33
  71. package/countBy-DqlU5OwT.js +14 -0
  72. package/data/event.js +6 -4
  73. package/database/index.js +2 -2
  74. package/debounce-bV0h5FC5.js +92 -0
  75. package/get-DSsNkRQs.js +8 -0
  76. package/groupBy-ChDRT7uy.js +14 -0
  77. package/hooks/ClueActionContext.js +6 -6
  78. package/hooks/ClueComponentContext.js +29 -23
  79. package/hooks/ClueConfigProvider.js +14 -12
  80. package/hooks/ClueDatabaseContext.js +19 -13
  81. package/hooks/ClueEnrichContext.js +8 -8
  82. package/hooks/ClueFetcherContext.js +83 -56
  83. package/hooks/ClueGroupContext.js +17 -14
  84. package/hooks/CluePopupContext.js +5 -5
  85. package/hooks/ClueProvider.js +12 -10
  86. package/hooks/selectors.js +7 -7
  87. package/hooks/useActionResult.js +2 -2
  88. package/hooks/useAnnotations.js +47 -31
  89. package/hooks/useClue.js +6 -4
  90. package/hooks/useClueActions.js +3 -3
  91. package/hooks/useClueConfig.js +6 -4
  92. package/hooks/useClueTypeConfig.js +3 -3
  93. package/hooks/useComparator.js +722 -435
  94. package/hooks/useErrors.js +22 -18
  95. package/hooks/useFetcherResult.js +33 -24
  96. package/hooks/useMyHighlights.js +66 -36
  97. package/hooks/useMyLocalStorage.js +66 -37
  98. package/iconify-CXMreGTg.js +1782 -0
  99. package/icons/Action.js +66 -49
  100. package/icons/Assessment.js +84 -69
  101. package/icons/Context.js +77 -63
  102. package/icons/Opinion.js +78 -60
  103. package/icons/iconMap.js +2 -2
  104. package/identity-CPGTqrE4.js +6 -0
  105. package/index-AMfoEg_6.js +696 -0
  106. package/index-B6C2a_Lg.js +1172 -0
  107. package/index-C12gPw2W.js +17698 -0
  108. package/index-DCKkHTvx.js +15750 -0
  109. package/index-UkW8Sur3.js +465 -0
  110. package/isNil-CIubwp4T.js +6 -0
  111. package/isObject-FTY-5JQX.js +7 -0
  112. package/isObjectLike-OAgjjZye.js +48 -0
  113. package/isSymbol-Xd2FsJyp.js +8 -0
  114. package/last-CUCl67Im.js +7 -0
  115. package/main.js +60 -60
  116. package/package.json +1 -1
  117. package/sortBy-C7mGPI_D.js +100 -0
  118. package/sumBy-CGALjmwQ.js +8 -0
  119. package/text/Frequency.js +42 -23
  120. package/toFinite-Bc55msYj.js +16 -0
  121. package/toNumber-DPxy1FBy.js +39 -0
  122. package/useClueTypeConfig-D2tf4-NM.js +3289 -0
  123. package/utils/chain.js +91 -65
  124. package/utils/classificationParser.js +519 -256
  125. package/utils/constants.js +35 -10
  126. package/utils/graph.js +72 -45
  127. package/utils/hashUtil.js +7 -7
  128. package/utils/line.js +131 -81
  129. package/utils/loggerUtil.js +5 -3
  130. package/utils/sessionStorage.js +41 -27
  131. package/utils/time.js +423 -423
  132. package/utils/utils.js +9 -9
  133. package/utils/window.js +21 -10
  134. package/utils-71DpzFrA.js +199 -0
  135. package/ActionForm-DlOXqMUx.js +0 -4460
  136. package/AnnotationDetails-Bk-p0F6h.js +0 -160
  137. package/AnnotationPreview-jzZvkCxJ.js +0 -140
  138. package/ClueEnrichContext-KqRuuWNS.js +0 -418
  139. package/FlexOne-BXWFOd1T.js +0 -6
  140. package/_MapCache-BiTi0iqu.js +0 -180
  141. package/_Uint8Array-BQNOM9Rr.js +0 -101
  142. package/_baseAssignValue-CNMLQZco.js +0 -20
  143. package/_baseClone-BnT-6pyM.js +0 -207
  144. package/_baseExtremum-Ca2EHgy2.js +0 -16
  145. package/_baseFlatten-Bfr_Molw.js +0 -72
  146. package/_baseGet-DSZygzyq.js +0 -79
  147. package/_baseIsEqual-VgvaAFZG.js +0 -147
  148. package/_baseIteratee-Dbfsw5z8.js +0 -95
  149. package/_baseSlice-M5RKzt1A.js +0 -10
  150. package/_baseSum-wEbgNeUs.js +0 -10
  151. package/_baseUniq-BJcj69PL.js +0 -79
  152. package/_commonjsHelpers-DaMA6jEr.js +0 -8
  153. package/_createAggregator-k3TuAnxT.js +0 -53
  154. package/_getPrototype-Cr1Mk7BC.js +0 -5
  155. package/_getTag-CK2Sffaq.js +0 -90
  156. package/_isIterateeCall-DkJP7Rbx.js +0 -13
  157. package/_setToArray-C7yMOeww.js +0 -29
  158. package/cloneDeep-CF8TtLHr.js +0 -8
  159. package/countBy-CdYegFSu.js +0 -8
  160. package/debounce-DryYcbJ4.js +0 -56
  161. package/get-CH7kz5Ix.js +0 -8
  162. package/groupBy-br8xmD2R.js +0 -8
  163. package/iconify-BBckr5AQ.js +0 -1263
  164. package/identity-ByMq8VxU.js +0 -6
  165. package/index-BHAe_V9n.js +0 -12768
  166. package/index-BK-zfYhR.js +0 -358
  167. package/index-CA5CUNZO.js +0 -975
  168. package/index-Dj5C04IX.js +0 -568
  169. package/index-p5_wX7q1.js +0 -11729
  170. package/isNil-CjWwlQS3.js +0 -6
  171. package/isObject-B53jY8Qg.js +0 -7
  172. package/isObjectLike-BatpeCIi.js +0 -29
  173. package/isSymbol-C3_SC0Qp.js +0 -8
  174. package/last-7CdUxN0r.js +0 -7
  175. package/maxBy-Bc0dYHcO.js +0 -8
  176. package/sortBy-DY2JBf9n.js +0 -75
  177. package/sumBy-DuMASLPd.js +0 -8
  178. package/toFinite-BMy6GObD.js +0 -14
  179. package/toNumber-YVhnnJv4.js +0 -31
  180. package/useClueTypeConfig-Ct9Ygter.js +0 -2292
  181. package/utils-DmwSUrum.js +0 -129
package/utils/utils.js CHANGED
@@ -1,12 +1,12 @@
1
- import { d as a, b as i, r as p, s as c, t as h } from "../utils-DmwSUrum.js";
1
+ import { d, b, r, s, t } from "../utils-71DpzFrA.js";
2
2
  import "./time.js";
3
- import "../_MapCache-BiTi0iqu.js";
4
- import "../_baseUniq-BJcj69PL.js";
5
- import "../isNil-CjWwlQS3.js";
3
+ import "../_MapCache-WmuDdwuH.js";
4
+ import "../_baseUniq-B8fK6hI-.js";
5
+ import "../isNil-CIubwp4T.js";
6
6
  export {
7
- a as delay,
8
- i as filterEnrichments,
9
- p as removeEmpty,
10
- c as searchObject,
11
- h as twitterShort
7
+ d as delay,
8
+ b as filterEnrichments,
9
+ r as removeEmpty,
10
+ s as searchObject,
11
+ t as twitterShort
12
12
  };
package/utils/window.js CHANGED
@@ -1,13 +1,24 @@
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);
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);
8
19
  };
9
20
  export {
10
- o as safeAddEventListener,
11
- i as safeDispatchEvent,
12
- d as safeRemoveEventListener
21
+ safeAddEventListener,
22
+ safeDispatchEvent,
23
+ safeRemoveEventListener
13
24
  };
@@ -0,0 +1,199 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3
+ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
4
+ import { dayjs } from "./utils/time.js";
5
+ import { i as isArray } from "./_MapCache-WmuDdwuH.js";
6
+ import { b as baseUniq, i as isEmpty } from "./_baseUniq-B8fK6hI-.js";
7
+ import { b as baseIsEqual } from "./_baseIsEqual-B4IufFlL.js";
8
+ import { i as isNil } from "./isNil-CIubwp4T.js";
9
+ import { i as isObjectLike, b as baseGetTag } from "./isObjectLike-OAgjjZye.js";
10
+ import { g as getPrototype } from "./_getPrototype-CblfEidB.js";
11
+ function isBuffer(obj) {
12
+ return obj && obj.constructor && typeof obj.constructor.isBuffer === "function" && obj.constructor.isBuffer(obj);
13
+ }
14
+ function keyIdentity(key) {
15
+ return key;
16
+ }
17
+ function flatten(target, opts) {
18
+ opts = opts || {};
19
+ const delimiter = opts.delimiter || ".";
20
+ const maxDepth = opts.maxDepth;
21
+ const transformKey = opts.transformKey || keyIdentity;
22
+ const output = {};
23
+ function step(object, prev, currentDepth) {
24
+ currentDepth = currentDepth || 1;
25
+ Object.keys(object).forEach(function(key) {
26
+ const value = object[key];
27
+ const isarray = opts.safe && Array.isArray(value);
28
+ const type = Object.prototype.toString.call(value);
29
+ const isbuffer = isBuffer(value);
30
+ const isobject = type === "[object Object]" || type === "[object Array]";
31
+ const newKey = prev ? prev + delimiter + transformKey(key) : transformKey(key);
32
+ if (!isarray && !isbuffer && isobject && Object.keys(value).length && (!opts.maxDepth || currentDepth < maxDepth)) {
33
+ return step(value, newKey, currentDepth + 1);
34
+ }
35
+ output[newKey] = value;
36
+ });
37
+ }
38
+ step(target);
39
+ return output;
40
+ }
41
+ function unflatten(target, opts) {
42
+ opts = opts || {};
43
+ const delimiter = opts.delimiter || ".";
44
+ const overwrite = opts.overwrite || false;
45
+ const transformKey = opts.transformKey || keyIdentity;
46
+ const result = {};
47
+ const isbuffer = isBuffer(target);
48
+ if (isbuffer || Object.prototype.toString.call(target) !== "[object Object]") {
49
+ return target;
50
+ }
51
+ function getkey(key) {
52
+ const parsedKey = Number(key);
53
+ return isNaN(parsedKey) || key.indexOf(".") !== -1 || opts.object ? key : parsedKey;
54
+ }
55
+ function addKeys(keyPrefix, recipient, target2) {
56
+ return Object.keys(target2).reduce(function(result2, key) {
57
+ result2[keyPrefix + delimiter + key] = target2[key];
58
+ return result2;
59
+ }, recipient);
60
+ }
61
+ function isEmpty2(val) {
62
+ const type = Object.prototype.toString.call(val);
63
+ const isArray2 = type === "[object Array]";
64
+ const isObject = type === "[object Object]";
65
+ if (!val) {
66
+ return true;
67
+ } else if (isArray2) {
68
+ return !val.length;
69
+ } else if (isObject) {
70
+ return !Object.keys(val).length;
71
+ }
72
+ }
73
+ target = Object.keys(target).reduce(function(result2, key) {
74
+ const type = Object.prototype.toString.call(target[key]);
75
+ const isObject = type === "[object Object]" || type === "[object Array]";
76
+ if (!isObject || isEmpty2(target[key])) {
77
+ result2[key] = target[key];
78
+ return result2;
79
+ } else {
80
+ return addKeys(
81
+ key,
82
+ result2,
83
+ flatten(target[key], opts)
84
+ );
85
+ }
86
+ }, {});
87
+ Object.keys(target).forEach(function(key) {
88
+ const split = key.split(delimiter).map(transformKey);
89
+ let key1 = getkey(split.shift());
90
+ let key2 = getkey(split[0]);
91
+ let recipient = result;
92
+ while (key2 !== void 0) {
93
+ if (key1 === "__proto__") {
94
+ return;
95
+ }
96
+ const type = Object.prototype.toString.call(recipient[key1]);
97
+ const isobject = type === "[object Object]" || type === "[object Array]";
98
+ if (!overwrite && !isobject && typeof recipient[key1] !== "undefined") {
99
+ return;
100
+ }
101
+ if (overwrite && !isobject || !overwrite && recipient[key1] == null) {
102
+ recipient[key1] = typeof key2 === "number" && !opts.object ? [] : {};
103
+ }
104
+ recipient = recipient[key1];
105
+ if (split.length > 0) {
106
+ key1 = getkey(split.shift());
107
+ key2 = getkey(split[0]);
108
+ }
109
+ }
110
+ recipient[key1] = unflatten(target[key], opts);
111
+ });
112
+ return result;
113
+ }
114
+ var objectTag = "[object Object]";
115
+ var funcProto = Function.prototype, objectProto = Object.prototype;
116
+ var funcToString = funcProto.toString;
117
+ var hasOwnProperty = objectProto.hasOwnProperty;
118
+ var objectCtorString = funcToString.call(Object);
119
+ function isPlainObject(value) {
120
+ if (!isObjectLike(value) || baseGetTag(value) != objectTag) {
121
+ return false;
122
+ }
123
+ var proto = getPrototype(value);
124
+ if (proto === null) {
125
+ return true;
126
+ }
127
+ var Ctor = hasOwnProperty.call(proto, "constructor") && proto.constructor;
128
+ return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString;
129
+ }
130
+ function isEqual(value, other) {
131
+ return baseIsEqual(value, other);
132
+ }
133
+ function uniqWith(array, comparator) {
134
+ comparator = typeof comparator == "function" ? comparator : void 0;
135
+ return array && array.length ? baseUniq(array, void 0, comparator) : [];
136
+ }
137
+ const twitterShort = (date) => {
138
+ if (!date || date === "?") {
139
+ return "?";
140
+ }
141
+ const now = dayjs();
142
+ const comparedDate = dayjs(date);
143
+ if (comparedDate.isAfter(now)) {
144
+ return now.fromNow();
145
+ }
146
+ return comparedDate.fromNow();
147
+ };
148
+ const delay = (ms, rejectOnCancel = false) => {
149
+ let timerId;
150
+ let onCancel;
151
+ class TimedPromise extends Promise {
152
+ constructor() {
153
+ super(...arguments);
154
+ __publicField(this, "cancel", () => {
155
+ if (rejectOnCancel) {
156
+ onCancel();
157
+ }
158
+ clearTimeout(timerId);
159
+ });
160
+ }
161
+ }
162
+ return new TimedPromise((resolve, reject) => {
163
+ timerId = setTimeout(resolve, ms);
164
+ onCancel = reject;
165
+ });
166
+ };
167
+ const removeEmpty = (obj, aggressive = false) => {
168
+ if (aggressive && isEmpty(obj)) {
169
+ return null;
170
+ } else if (isArray(obj)) {
171
+ return obj;
172
+ }
173
+ return Object.fromEntries(
174
+ Object.entries(obj ?? {}).filter(([__, v]) => !isNil(v)).map(([k, v]) => [k, isPlainObject(v) || isArray(v) ? removeEmpty(v, aggressive) : v]).filter(([__, v]) => !!v)
175
+ );
176
+ };
177
+ const searchObject = (o, query) => {
178
+ try {
179
+ const regex = new RegExp(query, "i");
180
+ return unflatten(
181
+ Object.fromEntries(Object.entries(flatten(o)).filter(([k, v]) => regex.test(k) || regex.test(v))) ?? {}
182
+ );
183
+ } catch {
184
+ return o;
185
+ }
186
+ };
187
+ const filterEnrichments = (failedEnrichments) => {
188
+ return uniqWith(failedEnrichments, isEqual);
189
+ };
190
+ export {
191
+ isPlainObject as a,
192
+ filterEnrichments as b,
193
+ delay as d,
194
+ flatten as f,
195
+ isEqual as i,
196
+ removeEmpty as r,
197
+ searchObject as s,
198
+ twitterShort as t
199
+ };