@cccsaurora/clue-ui 1.2.3-dev.266 → 1.2.3-patch.269
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/ActionForm-Ch0DGVGr.js +4462 -0
- package/AnnotationDetails-C8E_Xvaf.js +160 -0
- package/AnnotationPreview-CLCms-Fm.js +140 -0
- package/ClueEnrichContext-KqRuuWNS.js +418 -0
- package/FlexOne-BXWFOd1T.js +6 -0
- package/_MapCache-BiTi0iqu.js +180 -0
- package/_Uint8Array-BQNOM9Rr.js +101 -0
- package/_baseAssignValue-CNMLQZco.js +20 -0
- package/_baseClone-BnT-6pyM.js +207 -0
- package/_baseExtremum-Ca2EHgy2.js +16 -0
- package/_baseFlatten-Bfr_Molw.js +72 -0
- package/_baseGet-DSZygzyq.js +79 -0
- package/_baseIsEqual-VgvaAFZG.js +147 -0
- package/_baseIteratee-Dbfsw5z8.js +95 -0
- package/_baseSlice-M5RKzt1A.js +10 -0
- package/_baseSum-wEbgNeUs.js +10 -0
- package/_baseUniq-BJcj69PL.js +79 -0
- package/_commonjsHelpers-DaMA6jEr.js +8 -0
- package/_createAggregator-k3TuAnxT.js +53 -0
- package/_getPrototype-Cr1Mk7BC.js +5 -0
- package/_getTag-CK2Sffaq.js +90 -0
- package/_isIterateeCall-DkJP7Rbx.js +13 -0
- package/_setToArray-C7yMOeww.js +29 -0
- package/cloneDeep-CF8TtLHr.js +8 -0
- package/components/AnnotationBody.js +35 -49
- package/components/AnnotationDetailPopover.js +30 -36
- package/components/AnnotationDetails.js +7 -7
- package/components/AnnotationEntry.js +35 -35
- package/components/AnnotationPreview.js +5 -5
- package/components/ClassificationChip.js +23 -44
- package/components/CountBadge.js +26 -31
- package/components/EnrichedCard.js +97 -110
- package/components/EnrichedChip.js +105 -130
- package/components/EnrichedTypography.js +107 -133
- package/components/ErrorBoundary.js +24 -28
- package/components/RetryFailedEnrichments.js +9 -10
- package/components/SourcePicker.js +49 -57
- package/components/actions/ActionForm.js +4 -4
- package/components/actions/ExecutePopover.js +59 -75
- package/components/actions/ResultModal.js +4 -4
- package/components/actions/form/schemaAdapter.js +23 -39
- package/components/actions/formats/FileResult.js +59 -86
- package/components/actions/formats/index.js +10 -21
- package/components/display/graph/ExpandMoreButton.js +10 -10
- package/components/display/graph/elements/NodeCard.js +91 -111
- package/components/display/graph/elements/NodeTag.js +13 -15
- package/components/display/graph/index.js +202 -261
- package/components/display/graph/visualizations/Leaf.js +69 -88
- package/components/display/graph/visualizations/cloud/index.js +81 -98
- package/components/display/graph/visualizations/icons/BaseIcon.js +21 -26
- package/components/display/graph/visualizations/icons/BugIcon.js +12 -12
- package/components/display/graph/visualizations/icons/HostIcon.js +12 -12
- package/components/display/graph/visualizations/icons/NetworkIcon.js +12 -12
- package/components/display/graph/visualizations/icons/ProcessIcon.js +12 -12
- package/components/display/graph/visualizations/icons/TargetIcon.js +13 -13
- package/components/display/graph/visualizations/icons/index.js +13 -14
- package/components/display/graph/visualizations/panels/NodePanel.js +8 -10
- package/components/display/graph/visualizations/tree/BundleLine.js +81 -108
- package/components/display/graph/visualizations/tree/Triangle.js +13 -13
- package/components/display/graph/visualizations/tree/index.js +306 -408
- package/components/display/icons/Iconified.js +12 -27
- package/components/display/json/index.js +4 -4
- package/components/display/markdown/index.js +5770 -8678
- package/components/enrichment/EnrichPopover.js +46 -54
- package/components/fetchers/Fetcher.js +119 -158
- package/components/fetchers/PreviewModal.js +17 -20
- package/components/fetchers/StatusChip.js +17 -21
- package/components/group/Entry.js +11 -13
- package/components/group/Group.js +10 -13
- package/components/group/GroupControl.js +65 -76
- package/components/stats/QueryStatus.js +33 -43
- package/countBy-CdYegFSu.js +8 -0
- package/data/event.js +4 -6
- package/database/index.js +2 -2
- package/debounce-DryYcbJ4.js +56 -0
- package/get-CH7kz5Ix.js +8 -0
- package/groupBy-br8xmD2R.js +8 -0
- package/hooks/ClueActionContext.js +6 -6
- package/hooks/ClueComponentContext.js +23 -29
- package/hooks/ClueConfigProvider.js +12 -14
- package/hooks/ClueDatabaseContext.js +13 -19
- package/hooks/ClueEnrichContext.js +8 -8
- package/hooks/ClueFetcherContext.js +56 -83
- package/hooks/ClueGroupContext.js +14 -17
- package/hooks/CluePopupContext.js +5 -5
- package/hooks/ClueProvider.js +10 -12
- package/hooks/selectors.js +7 -7
- package/hooks/useActionResult.d.ts +1 -0
- package/hooks/useActionResult.js +2 -2
- package/hooks/useAnnotations.js +31 -47
- package/hooks/useClue.js +4 -6
- package/hooks/useClueActions.js +3 -3
- package/hooks/useClueConfig.js +4 -6
- package/hooks/useClueTypeConfig.js +3 -3
- package/hooks/useComparator.js +435 -722
- package/hooks/useErrors.js +18 -22
- package/hooks/useFetcherResult.d.ts +1 -0
- package/hooks/useFetcherResult.js +24 -33
- package/hooks/useMyHighlights.js +36 -66
- package/hooks/useMyLocalStorage.js +37 -66
- package/iconify-BBckr5AQ.js +1263 -0
- package/icons/Action.js +49 -66
- package/icons/Assessment.js +69 -85
- package/icons/Context.js +63 -77
- package/icons/Opinion.js +60 -76
- package/icons/iconMap.js +2 -2
- package/identity-ByMq8VxU.js +6 -0
- package/index-BHAe_V9n.js +12768 -0
- package/index-BK-zfYhR.js +358 -0
- package/index-CA5CUNZO.js +975 -0
- package/index-Dj5C04IX.js +568 -0
- package/index-p5_wX7q1.js +11729 -0
- package/isNil-CjWwlQS3.js +6 -0
- package/isObject-B53jY8Qg.js +7 -0
- package/isObjectLike-BatpeCIi.js +29 -0
- package/isSymbol-C3_SC0Qp.js +8 -0
- package/last-7CdUxN0r.js +7 -0
- package/main.js +60 -60
- package/maxBy-Bc0dYHcO.js +8 -0
- package/package.json +1 -1
- package/sortBy-DY2JBf9n.js +75 -0
- package/sumBy-DuMASLPd.js +8 -0
- package/text/Frequency.js +23 -42
- package/toFinite-BMy6GObD.js +14 -0
- package/toNumber-YVhnnJv4.js +31 -0
- package/types/WithActionData.d.ts +2 -1
- package/useClueTypeConfig-Ct9Ygter.js +2292 -0
- package/utils/chain.js +65 -92
- package/utils/classificationParser.js +256 -519
- package/utils/constants.js +10 -35
- package/utils/graph.js +45 -72
- package/utils/hashUtil.js +7 -7
- package/utils/line.js +81 -131
- package/utils/loggerUtil.js +3 -5
- package/utils/sessionStorage.js +27 -41
- package/utils/time.js +423 -423
- package/utils/utils.js +9 -9
- package/utils/window.js +10 -21
- package/utils-DmwSUrum.js +129 -0
- package/ActionForm-uDp92tN2.js +0 -5941
- package/AnnotationDetails-DGYfOiWm.js +0 -175
- package/AnnotationPreview-bHObsb3P.js +0 -188
- package/ClueEnrichContext-CJEJxrgs.js +0 -541
- package/FlexOne-BSYAhhtG.js +0 -9
- package/_MapCache-WmuDdwuH.js +0 -222
- package/_Uint8Array-B7JqpgFX.js +0 -128
- package/_baseAssignValue-CGTuELqU.js +0 -25
- package/_baseClone-CkNrTyhm.js +0 -283
- package/_baseExtremum-kob8QXyt.js +0 -18
- package/_baseFlatten-jIR_sN_-.js +0 -92
- package/_baseGet-Bx3A4Qfp.js +0 -108
- package/_baseIsEqual-C5OTWzTk.js +0 -208
- package/_baseIteratee-avi7MX2o.js +0 -126
- package/_baseSlice-GAv_YFTT.js +0 -20
- package/_baseSum-D0WC1dN0.js +0 -13
- package/_baseUniq-BI9GIHMF.js +0 -115
- package/_commonjsHelpers-DWwsNxpa.js +0 -8
- package/_createAggregator-QD8MzKwe.js +0 -63
- package/_getPrototype-CU0j_POw.js +0 -5
- package/_getTag-Ckxxfr88.js +0 -126
- package/_isIterateeCall-Ds3sw2SF.js +0 -17
- package/_setToArray-CaPKQhcz.js +0 -33
- package/cloneDeep-DJrLSw8W.js +0 -8
- package/countBy-c6S3dvSW.js +0 -14
- package/debounce-bV0h5FC5.js +0 -92
- package/get-DSsNkRQs.js +0 -8
- package/groupBy-xqz-n0Vd.js +0 -14
- package/iconify-CXMreGTg.js +0 -1782
- package/identity-CPGTqrE4.js +0 -6
- package/index-AMfoEg_6.js +0 -696
- package/index-B6C2a_Lg.js +0 -1172
- package/index-C12gPw2W.js +0 -17698
- package/index-DCKkHTvx.js +0 -15750
- package/index-JcKyZeoY.js +0 -465
- package/isNil-CIubwp4T.js +0 -6
- package/isObject-FTY-5JQX.js +0 -7
- package/isObjectLike-OAgjjZye.js +0 -48
- package/isSymbol-Xd2FsJyp.js +0 -8
- package/last-CUCl67Im.js +0 -7
- package/maxBy-IKHzFrCS.js +0 -8
- package/sortBy-DfSj8IoJ.js +0 -96
- package/sumBy-D-hb_NY-.js +0 -8
- package/toFinite-Bc55msYj.js +0 -16
- package/toNumber-DPxy1FBy.js +0 -39
- package/useClueTypeConfig-Z1LFp01b.js +0 -3289
- package/utils-HmNPuoDB.js +0 -199
package/utils-HmNPuoDB.js
DELETED
|
@@ -1,199 +0,0 @@
|
|
|
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-BI9GIHMF.js";
|
|
7
|
-
import { b as baseIsEqual } from "./_baseIsEqual-C5OTWzTk.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-CU0j_POw.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
|
-
};
|