@cccsaurora/clue-ui 1.0.0-dev.48 → 1.0.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 (180) hide show
  1. package/ActionForm-WIj7BfD5.js +340 -0
  2. package/AnnotationPreview-DWRDhxUB.js +140 -0
  3. package/ClueEnrichContext-CbJVBm4w.js +397 -0
  4. package/FlexOne-BXWFOd1T.js +6 -0
  5. package/_Map-DXNg_Z-q.js +54 -0
  6. package/_MapCache-Cu25RRDU.js +129 -0
  7. package/_Uint8Array-DlJCtTvG.js +102 -0
  8. package/_baseAssignValue-CUmzp727.js +20 -0
  9. package/_baseClone-BlMmRXeX.js +208 -0
  10. package/_baseExtremum-P_0akmCi.js +27 -0
  11. package/_baseFlatten-CN7vDNEQ.js +72 -0
  12. package/_baseGet-Dgf6_xCm.js +80 -0
  13. package/_baseIsEqual-Cpjtfb3Q.js +173 -0
  14. package/_baseIteratee-CP1bocOX.js +95 -0
  15. package/_baseSlice-M5RKzt1A.js +10 -0
  16. package/_baseSum-wEbgNeUs.js +10 -0
  17. package/_baseUniq-tMFmk80M.js +61 -0
  18. package/_commonjsHelpers-C6fGbg64.js +6 -0
  19. package/_createAggregator-B4Cav8ZM.js +53 -0
  20. package/_getPrototype-CHAFQYL_.js +5 -0
  21. package/_getTag-BV_UoLYG.js +90 -0
  22. package/cloneDeep-BPVpFBzJ.js +8 -0
  23. package/components/AnnotationBody.js +34 -49
  24. package/components/AnnotationDetailPopover.js +30 -36
  25. package/components/AnnotationDetails.js +94 -109
  26. package/components/AnnotationEntry.js +52 -55
  27. package/components/AnnotationPreview.js +5 -5
  28. package/components/ClassificationChip.js +23 -44
  29. package/components/CountBadge.js +26 -31
  30. package/components/EnrichedCard.js +92 -104
  31. package/components/EnrichedChip.js +109 -134
  32. package/components/EnrichedTypography.js +110 -136
  33. package/components/ErrorBoundary.js +24 -28
  34. package/components/RetryFailedEnrichments.js +9 -10
  35. package/components/SourcePicker.js +49 -57
  36. package/components/actions/ActionForm.js +4 -4
  37. package/components/actions/ExecutePopover.js +50 -64
  38. package/components/actions/ResultModal.js +34 -37
  39. package/components/actions/form/schemaAdapter.js +20 -39
  40. package/components/display/graph/ExpandMoreButton.js +10 -10
  41. package/components/display/graph/elements/NodeCard.js +76 -92
  42. package/components/display/graph/elements/NodeTag.js +13 -15
  43. package/components/display/graph/index.js +200 -258
  44. package/components/display/graph/visualizations/Leaf.js +69 -88
  45. package/components/display/graph/visualizations/cloud/index.js +81 -98
  46. package/components/display/graph/visualizations/icons/BaseIcon.js +21 -26
  47. package/components/display/graph/visualizations/icons/BugIcon.js +12 -12
  48. package/components/display/graph/visualizations/icons/HostIcon.js +12 -12
  49. package/components/display/graph/visualizations/icons/NetworkIcon.js +12 -12
  50. package/components/display/graph/visualizations/icons/ProcessIcon.js +12 -12
  51. package/components/display/graph/visualizations/icons/TargetIcon.js +13 -13
  52. package/components/display/graph/visualizations/icons/index.js +13 -14
  53. package/components/display/graph/visualizations/panels/NodePanel.js +8 -10
  54. package/components/display/graph/visualizations/tree/BundleLine.js +81 -108
  55. package/components/display/graph/visualizations/tree/Triangle.js +13 -13
  56. package/components/display/graph/visualizations/tree/index.js +305 -407
  57. package/components/display/icons/Iconified.js +12 -27
  58. package/components/display/json/index.js +4 -4
  59. package/components/display/markdown/DynamicTabs.js +17 -22
  60. package/components/display/markdown/index.js +5674 -8531
  61. package/components/display/markdown/markdownPlugins/tabs.js +1 -1
  62. package/components/enrichment/EnrichPopover.js +47 -55
  63. package/components/fetchers/Fetcher.js +95 -123
  64. package/components/fetchers/PreviewModal.js +17 -20
  65. package/components/fetchers/StatusChip.js +18 -22
  66. package/components/group/Entry.js +11 -13
  67. package/components/group/Group.js +10 -13
  68. package/components/group/GroupControl.js +65 -76
  69. package/components/stats/QueryStatus.js +28 -37
  70. package/countBy-DOutsa_w.js +8 -0
  71. package/data/event.js +4 -6
  72. package/database/index.js +2 -2
  73. package/debounce-DryYcbJ4.js +56 -0
  74. package/get-Bow1vKwx.js +8 -0
  75. package/groupBy-BheQYl6f.js +8 -0
  76. package/hooks/ClueActionContext.js +6 -6
  77. package/hooks/ClueComponentContext.js +23 -29
  78. package/hooks/ClueConfigProvider.js +12 -14
  79. package/hooks/ClueDatabaseContext.js +13 -19
  80. package/hooks/ClueEnrichContext.js +8 -8
  81. package/hooks/ClueFetcherContext.js +46 -74
  82. package/hooks/ClueGroupContext.js +14 -17
  83. package/hooks/CluePopupContext.js +5 -5
  84. package/hooks/ClueProvider.js +10 -12
  85. package/hooks/selectors.js +11 -22
  86. package/hooks/useAnnotations.js +32 -48
  87. package/hooks/useClue.js +4 -6
  88. package/hooks/useClueActions.js +3 -3
  89. package/hooks/useClueConfig.js +5 -5
  90. package/hooks/useClueTypeConfig.js +3 -3
  91. package/hooks/useComparator.js +435 -722
  92. package/hooks/useErrors.js +18 -22
  93. package/hooks/useMyHighlights.js +36 -66
  94. package/hooks/useMyLocalStorage.js +43 -63
  95. package/iconify-BBckr5AQ.js +1263 -0
  96. package/icons/Action.js +49 -66
  97. package/icons/Assessment.js +68 -84
  98. package/icons/Context.js +61 -75
  99. package/icons/Opinion.js +65 -77
  100. package/icons/iconMap.js +2 -2
  101. package/identity-ByMq8VxU.js +6 -0
  102. package/index-4YFAh_sa.js +358 -0
  103. package/index-E7g8cRyW.js +568 -0
  104. package/index-HuYhutsd.js +975 -0
  105. package/index-WvFmjbxF.js +12734 -0
  106. package/index-p5_wX7q1.js +11729 -0
  107. package/isEmpty-g47Qir2A.js +21 -0
  108. package/isNil-CjWwlQS3.js +6 -0
  109. package/isObject-B53jY8Qg.js +7 -0
  110. package/isObjectLike-BatpeCIi.js +29 -0
  111. package/isSymbol-C3_SC0Qp.js +8 -0
  112. package/isUndefined-DiNCDKoz.js +10 -0
  113. package/last-7CdUxN0r.js +7 -0
  114. package/main.js +68 -68
  115. package/package.json +1 -1
  116. package/sortBy-ITdmD17L.js +79 -0
  117. package/sumBy-DxJUU2E8.js +8 -0
  118. package/tabs-CgADNA57.js +195 -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-BQ33EiyB.js +2273 -0
  123. package/utils/chain.js +64 -91
  124. package/utils/classificationParser.js +254 -504
  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 +29 -41
  131. package/utils/utils.js +9 -9
  132. package/utils/window.js +10 -21
  133. package/utils-C_RX5uMP.js +2704 -0
  134. package/ActionForm-c5hLIfQ-.js +0 -436
  135. package/AnnotationPreview-BvNpZOP0.js +0 -188
  136. package/ClueEnrichContext-m-4vn9rz.js +0 -518
  137. package/FlexOne-BSYAhhtG.js +0 -9
  138. package/_Map-kgDsDYxq.js +0 -64
  139. package/_MapCache-DabaaWfq.js +0 -161
  140. package/_Uint8Array-BlVVH1tp.js +0 -129
  141. package/_baseAssignValue-CNbcU6Nb.js +0 -25
  142. package/_baseClone-D3a8Pa4T.js +0 -284
  143. package/_baseExtremum-B1o1zHjR.js +0 -33
  144. package/_baseFlatten-D4huXoEI.js +0 -92
  145. package/_baseGet-BSK_nnoz.js +0 -109
  146. package/_baseIsEqual-B5xLoweL.js +0 -238
  147. package/_baseIteratee-p6Nj07-n.js +0 -126
  148. package/_baseSlice-GAv_YFTT.js +0 -20
  149. package/_baseSum-D0WC1dN0.js +0 -13
  150. package/_baseUniq-CpupKWcL.js +0 -89
  151. package/_commonjsHelpers-CUmg6egw.js +0 -6
  152. package/_createAggregator-BpVy5xMi.js +0 -63
  153. package/_getPrototype-D1LAdQKO.js +0 -5
  154. package/_getTag-D3ToyefI.js +0 -126
  155. package/cloneDeep-CjP5k9zW.js +0 -8
  156. package/countBy-C69WslUA.js +0 -14
  157. package/debounce-bV0h5FC5.js +0 -92
  158. package/get-D3C3lEU3.js +0 -8
  159. package/groupBy-DC2oOuBN.js +0 -14
  160. package/iconify-CXMreGTg.js +0 -1782
  161. package/identity-CPGTqrE4.js +0 -6
  162. package/index-BDVjGvMI.js +0 -696
  163. package/index-BDrtH5ec.js +0 -465
  164. package/index-BbPn6-Mw.js +0 -15750
  165. package/index-C9lySIVX.js +0 -1172
  166. package/index-Dn2NHyXg.js +0 -17654
  167. package/isEmpty-BQkZubqU.js +0 -29
  168. package/isNil-CIubwp4T.js +0 -6
  169. package/isObject-FTY-5JQX.js +0 -7
  170. package/isObjectLike-OAgjjZye.js +0 -48
  171. package/isSymbol-Xd2FsJyp.js +0 -8
  172. package/isUndefined-CE8h73dH.js +0 -10
  173. package/last-CUCl67Im.js +0 -7
  174. package/sortBy-B-UKp4GT.js +0 -100
  175. package/sumBy-MYkDPHZL.js +0 -8
  176. package/tabs-xGuUGsJd.js +0 -254
  177. package/toFinite-Bc55msYj.js +0 -16
  178. package/toNumber-DPxy1FBy.js +0 -39
  179. package/useClueTypeConfig-D4zcy8Gr.js +0 -3184
  180. package/utils-CxIhC2xH.js +0 -4182
@@ -1,103 +1,92 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Card, Stack, Box, Typography, Autocomplete, TextField, Button, CircularProgress } from "@mui/material";
3
- import { F as FlexOne } from "../../FlexOne-BSYAhhtG.js";
4
- import Iconified from "../display/icons/Iconified.js";
5
- import { SNACKBAR_EVENT_ID } from "../../data/event.js";
6
- import { ClueGroupContext } from "../../hooks/ClueGroupContext.js";
7
- import { useClueComponentSelector, useClueEnrichSelector } from "../../hooks/selectors.js";
8
- import { safeDispatchEvent } from "../../utils/window.js";
9
- import { useState, useMemo, useCallback } from "react";
10
- import { u as useContextSelector } from "../../index-BDVjGvMI.js";
11
- import ExecutePopover from "../actions/ExecutePopover.js";
12
- import { c as capitalize } from "../../ActionForm-c5hLIfQ-.js";
13
- const GroupControl = () => {
14
- const { t } = useClueComponentSelector((ctx) => ctx.i18next);
15
- const { type, values, classification } = useContextSelector(ClueGroupContext, (ctx) => ({
16
- type: ctx == null ? void 0 : ctx.type,
17
- values: ctx == null ? void 0 : ctx.values,
18
- classification: ctx == null ? void 0 : ctx.classification
19
- }));
20
- const sources = useClueEnrichSelector((ctx) => ctx.availableSources);
21
- const enrich = useClueEnrichSelector((ctx) => ctx.bulkEnrich);
22
- const [loading, setLoading] = useState(false);
23
- const [selectedSources, setSelectedSources] = useState([]);
24
- const fullValues = useMemo(
25
- () => (values ?? []).map((value) => ({ value, type, classification })),
26
- [classification, type, values]
27
- );
28
- const runEnrichment = useCallback(async () => {
29
- if (loading) {
30
- return;
31
- }
32
- try {
33
- setLoading(true);
34
- await enrich(
35
- (values ?? []).map((value) => ({ type, value })),
36
- { force: true, sources: selectedSources }
37
- );
38
- } catch (e) {
39
- console.error(e);
40
- safeDispatchEvent(
41
- new CustomEvent(SNACKBAR_EVENT_ID, {
42
- detail: {
43
- message: e.toString(),
44
- level: "error"
45
- }
46
- })
47
- );
48
- } finally {
49
- setLoading(false);
50
- }
51
- }, [enrich, loading, selectedSources, type, values]);
52
- return /* @__PURE__ */ jsx(Card, { sx: { p: 1 }, children: /* @__PURE__ */ jsxs(Stack, { direction: "row", spacing: 1, alignItems: "center", children: [
53
- /* @__PURE__ */ jsx(
54
- Box,
1
+ import { jsx as r, jsxs as m } from "react/jsx-runtime";
2
+ import { Card as S, Stack as y, Box as b, Typography as E, Autocomplete as v, TextField as x, Button as I, CircularProgress as z } from "@mui/material";
3
+ import { F as _ } from "../../FlexOne-BXWFOd1T.js";
4
+ import k from "../display/icons/Iconified.js";
5
+ import { SNACKBAR_EVENT_ID as w } from "../../data/event.js";
6
+ import { ClueGroupContext as j } from "../../hooks/ClueGroupContext.js";
7
+ import { useClueComponentSelector as A, useClueEnrichSelector as u } from "../../hooks/selectors.js";
8
+ import { safeDispatchEvent as B } from "../../utils/window.js";
9
+ import { useState as d, useMemo as F, useCallback as O } from "react";
10
+ import { u as T } from "../../index-E7g8cRyW.js";
11
+ import D from "../actions/ExecutePopover.js";
12
+ import { c as G } from "../../ActionForm-WIj7BfD5.js";
13
+ const U = () => {
14
+ const { t: n } = A((e) => e.i18next), { type: t, values: o, classification: a } = T(j, (e) => ({
15
+ type: e == null ? void 0 : e.type,
16
+ values: e == null ? void 0 : e.values,
17
+ classification: e == null ? void 0 : e.classification
18
+ })), f = u((e) => e.availableSources), c = u((e) => e.bulkEnrich), [i, p] = d(!1), [s, h] = d([]), C = F(
19
+ () => (o ?? []).map((e) => ({ value: e, type: t, classification: a })),
20
+ [a, t, o]
21
+ ), g = O(async () => {
22
+ if (!i)
23
+ try {
24
+ p(!0), await c(
25
+ (o ?? []).map((e) => ({ type: t, value: e })),
26
+ { force: !0, sources: s }
27
+ );
28
+ } catch (e) {
29
+ console.error(e), B(
30
+ new CustomEvent(w, {
31
+ detail: {
32
+ message: e.toString(),
33
+ level: "error"
34
+ }
35
+ })
36
+ );
37
+ } finally {
38
+ p(!1);
39
+ }
40
+ }, [c, i, s, t, o]);
41
+ return /* @__PURE__ */ r(S, { sx: { p: 1 }, children: /* @__PURE__ */ m(y, { direction: "row", spacing: 1, alignItems: "center", children: [
42
+ /* @__PURE__ */ r(
43
+ b,
55
44
  {
56
- sx: (theme) => ({
45
+ sx: (e) => ({
57
46
  border: "thin solid",
58
47
  alignSelf: "stretch",
59
48
  display: "flex",
60
49
  alignItems: "center",
61
50
  px: 1,
62
51
  borderRadius: "5px",
63
- borderColor: theme.palette.divider
52
+ borderColor: e.palette.divider
64
53
  }),
65
- children: /* @__PURE__ */ jsxs(Typography, { color: "text.secondary", children: [
66
- (values == null ? void 0 : values.length) ?? 0,
54
+ children: /* @__PURE__ */ m(E, { color: "text.secondary", children: [
55
+ (o == null ? void 0 : o.length) ?? 0,
67
56
  " selected"
68
57
  ] })
69
58
  }
70
59
  ),
71
- /* @__PURE__ */ jsx(FlexOne, {}),
72
- /* @__PURE__ */ jsx(
73
- Autocomplete,
60
+ /* @__PURE__ */ r(_, {}),
61
+ /* @__PURE__ */ r(
62
+ v,
74
63
  {
75
64
  size: "small",
76
- multiple: true,
77
- options: sources,
65
+ multiple: !0,
66
+ options: f,
78
67
  sx: { minWidth: "400px" },
79
- renderInput: (params) => /* @__PURE__ */ jsx(TextField, { size: "small", placeholder: t("sources"), ...params }),
80
- value: selectedSources,
81
- onChange: (__, value) => setSelectedSources(value),
82
- disableCloseOnSelect: true,
83
- getOptionLabel: (opt) => opt.split(/[_-]/).map((word) => capitalize(word)).join(" ")
68
+ renderInput: (e) => /* @__PURE__ */ r(x, { size: "small", placeholder: n("sources"), ...e }),
69
+ value: s,
70
+ onChange: (e, l) => h(l),
71
+ disableCloseOnSelect: !0,
72
+ getOptionLabel: (e) => e.split(/[_-]/).map((l) => G(l)).join(" ")
84
73
  }
85
74
  ),
86
- /* @__PURE__ */ jsx(
87
- Button,
75
+ /* @__PURE__ */ r(
76
+ I,
88
77
  {
89
78
  variant: "outlined",
90
79
  color: "info",
91
- disabled: (values == null ? void 0 : values.length) < 1 || loading,
92
- startIcon: loading ? /* @__PURE__ */ jsx(CircularProgress, { color: "info", size: "20px" }) : /* @__PURE__ */ jsx(Iconified, { icon: "ic:outline-play-arrow" }),
80
+ disabled: (o == null ? void 0 : o.length) < 1 || i,
81
+ startIcon: i ? /* @__PURE__ */ r(z, { color: "info", size: "20px" }) : /* @__PURE__ */ r(k, { icon: "ic:outline-play-arrow" }),
93
82
  sx: { alignSelf: "stretch" },
94
- onClick: runEnrichment,
95
- children: t("enrich")
83
+ onClick: g,
84
+ children: n("enrich")
96
85
  }
97
86
  ),
98
- /* @__PURE__ */ jsx(ExecutePopover, { selectors: fullValues, size: "medium", multiples: true })
87
+ /* @__PURE__ */ r(D, { selectors: C, size: "medium", multiples: !0 })
99
88
  ] }) });
100
89
  };
101
90
  export {
102
- GroupControl as default
91
+ U as default
103
92
  };
@@ -1,61 +1,52 @@
1
- import { jsxs } from "react/jsx-runtime";
2
- import { Stack, Typography } from "@mui/material";
3
- import { ClueDatabaseContext } from "../../hooks/ClueDatabaseContext.js";
4
- import { useClueEnrichSelector } from "../../hooks/selectors.js";
5
- import { useContext, useState, useEffect } from "react";
6
- const QueryStatus = () => {
7
- const database = useContext(ClueDatabaseContext);
8
- const ready = useClueEnrichSelector((ctx) => ctx.ready);
9
- const [pendingCount, setPendingCount] = useState(0);
10
- const [inProgressCount, setInProgressCount] = useState(0);
11
- const [completeCount, setCompleteCount] = useState(0);
12
- useEffect(() => {
13
- if (!ready) {
1
+ import { jsxs as s } from "react/jsx-runtime";
2
+ import { Stack as d, Typography as r } from "@mui/material";
3
+ import { ClueDatabaseContext as b } from "../../hooks/ClueDatabaseContext.js";
4
+ import { useClueEnrichSelector as f } from "../../hooks/selectors.js";
5
+ import { useContext as C, useState as n, useEffect as g } from "react";
6
+ const $ = () => {
7
+ const e = C(b), c = f((t) => t.ready), [u, l] = n(0), [a, p] = n(0), [i, m] = n(0);
8
+ return g(() => {
9
+ if (!c)
14
10
  return;
15
- }
16
- const observables = [
17
- database.status.count({ selector: { status: "pending" } }).$.subscribe(setPendingCount),
18
- database.status.count({ selector: { status: "in-progress" } }).$.subscribe(setInProgressCount),
19
- database.status.count({ selector: { status: "complete" } }).$.subscribe(setCompleteCount)
11
+ const t = [
12
+ e.status.count({ selector: { status: "pending" } }).$.subscribe(l),
13
+ e.status.count({ selector: { status: "in-progress" } }).$.subscribe(p),
14
+ e.status.count({ selector: { status: "complete" } }).$.subscribe(m)
20
15
  ];
21
16
  return () => {
22
17
  try {
23
- observables.forEach((_observable) => _observable.unsubscribe());
24
- } catch (e) {
25
- console.warn(e);
18
+ t.forEach((o) => o.unsubscribe());
19
+ } catch (o) {
20
+ console.warn(o);
26
21
  }
27
22
  };
28
- }, [database, ready]);
29
- if (pendingCount + inProgressCount + completeCount < 1) {
30
- return null;
31
- }
32
- return /* @__PURE__ */ jsxs(
33
- Stack,
23
+ }, [e, c]), u + a + i < 1 ? null : /* @__PURE__ */ s(
24
+ d,
34
25
  {
35
26
  spacing: 1,
36
- sx: (theme) => ({
37
- border: `thin solid ${theme.palette.divider}`,
38
- borderRadius: theme.spacing(0.5),
27
+ sx: (t) => ({
28
+ border: `thin solid ${t.palette.divider}`,
29
+ borderRadius: t.spacing(0.5),
39
30
  mx: 1,
40
31
  p: 1
41
32
  }),
42
33
  children: [
43
- /* @__PURE__ */ jsxs(Typography, { sx: { fontFamily: "monospace" }, children: [
34
+ /* @__PURE__ */ s(r, { sx: { fontFamily: "monospace" }, children: [
44
35
  "Pending: ",
45
- pendingCount
36
+ u
46
37
  ] }),
47
- /* @__PURE__ */ jsxs(Typography, { sx: { fontFamily: "monospace" }, children: [
38
+ /* @__PURE__ */ s(r, { sx: { fontFamily: "monospace" }, children: [
48
39
  "In Progress: ",
49
- inProgressCount
40
+ a
50
41
  ] }),
51
- /* @__PURE__ */ jsxs(Typography, { sx: { fontFamily: "monospace" }, children: [
42
+ /* @__PURE__ */ s(r, { sx: { fontFamily: "monospace" }, children: [
52
43
  "Complete: ",
53
- completeCount
44
+ i
54
45
  ] })
55
46
  ]
56
47
  }
57
48
  );
58
49
  };
59
50
  export {
60
- QueryStatus as default
51
+ $ as default
61
52
  };
@@ -0,0 +1,8 @@
1
+ import { b as a } from "./_baseAssignValue-CUmzp727.js";
2
+ import { c as t } from "./_createAggregator-B4Cav8ZM.js";
3
+ var e = Object.prototype, c = e.hasOwnProperty, i = t(function(o, p, r) {
4
+ c.call(o, r) ? ++o[r] : a(o, r, 1);
5
+ });
6
+ export {
7
+ i as c
8
+ };
package/data/event.js CHANGED
@@ -1,8 +1,6 @@
1
- const SNACKBAR_EVENT_ID = "snackbar.message";
2
- const SHOW_EVENT_ID = "clue.showPopup";
3
- const HIDE_EVENT_ID = "clue.hidePopup";
1
+ const o = "snackbar.message", s = "clue.showPopup", E = "clue.hidePopup";
4
2
  export {
5
- HIDE_EVENT_ID,
6
- SHOW_EVENT_ID,
7
- SNACKBAR_EVENT_ID
3
+ E as HIDE_EVENT_ID,
4
+ s as SHOW_EVENT_ID,
5
+ o as SNACKBAR_EVENT_ID
8
6
  };
package/database/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { b } from "../index-Dn2NHyXg.js";
1
+ import { b as f } from "../index-WvFmjbxF.js";
2
2
  export {
3
- b as default
3
+ f as default
4
4
  };
@@ -0,0 +1,56 @@
1
+ import { i as S } from "./isObject-B53jY8Qg.js";
2
+ import { r as y } from "./isObjectLike-BatpeCIi.js";
3
+ import { t as W } from "./toNumber-YVhnnJv4.js";
4
+ var h = function() {
5
+ return y.Date.now();
6
+ }, R = "Expected a function", A = Math.max, F = Math.min;
7
+ function j(x, i, a) {
8
+ var u, o, c, f, n, r, d = 0, E = !1, m = !1, g = !0;
9
+ if (typeof x != "function")
10
+ throw new TypeError(R);
11
+ i = W(i) || 0, S(a) && (E = !!a.leading, m = "maxWait" in a, c = m ? A(W(a.maxWait) || 0, i) : c, g = "trailing" in a ? !!a.trailing : g);
12
+ function v(e) {
13
+ var t = u, l = o;
14
+ return u = o = void 0, d = e, f = x.apply(l, t), f;
15
+ }
16
+ function b(e) {
17
+ return d = e, n = setTimeout(s, i), E ? v(e) : f;
18
+ }
19
+ function C(e) {
20
+ var t = e - r, l = e - d, p = i - t;
21
+ return m ? F(p, c - l) : p;
22
+ }
23
+ function k(e) {
24
+ var t = e - r, l = e - d;
25
+ return r === void 0 || t >= i || t < 0 || m && l >= c;
26
+ }
27
+ function s() {
28
+ var e = h();
29
+ if (k(e))
30
+ return I(e);
31
+ n = setTimeout(s, C(e));
32
+ }
33
+ function I(e) {
34
+ return n = void 0, g && u ? v(e) : (u = o = void 0, f);
35
+ }
36
+ function L() {
37
+ n !== void 0 && clearTimeout(n), d = 0, u = r = o = n = void 0;
38
+ }
39
+ function M() {
40
+ return n === void 0 ? f : I(h());
41
+ }
42
+ function T() {
43
+ var e = h(), t = k(e);
44
+ if (u = arguments, o = this, r = e, t) {
45
+ if (n === void 0)
46
+ return b(r);
47
+ if (m)
48
+ return clearTimeout(n), n = setTimeout(s, i), v(r);
49
+ }
50
+ return n === void 0 && (n = setTimeout(s, i)), f;
51
+ }
52
+ return T.cancel = L, T.flush = M, T;
53
+ }
54
+ export {
55
+ j as d
56
+ };
@@ -0,0 +1,8 @@
1
+ import { b as u } from "./_baseGet-Dgf6_xCm.js";
2
+ function d(e, r, t) {
3
+ var n = e == null ? void 0 : u(e, r);
4
+ return n === void 0 ? t : n;
5
+ }
6
+ export {
7
+ d as g
8
+ };
@@ -0,0 +1,8 @@
1
+ import { b as t } from "./_baseAssignValue-CUmzp727.js";
2
+ import { c as p } from "./_createAggregator-B4Cav8ZM.js";
3
+ var e = Object.prototype, s = e.hasOwnProperty, i = p(function(r, a, o) {
4
+ s.call(r, o) ? r[o].push(a) : t(r, o, [a]);
5
+ });
6
+ export {
7
+ i as g
8
+ };
@@ -1,18 +1,18 @@
1
1
  import "react/jsx-runtime";
2
2
  import "@mui/material";
3
- import "../index-Dn2NHyXg.js";
4
- import "../useClueTypeConfig-D4zcy8Gr.js";
5
- import { a, C } from "../ActionForm-c5hLIfQ-.js";
3
+ import "../index-WvFmjbxF.js";
4
+ import "../useClueTypeConfig-BQ33EiyB.js";
5
+ import { a as A, C as d } from "../ActionForm-WIj7BfD5.js";
6
6
  import "../components/actions/ResultModal.js";
7
7
  import "../components/display/icons/Iconified.js";
8
8
  import "../components/ErrorBoundary.js";
9
9
  import "../data/event.js";
10
10
  import "../utils/window.js";
11
11
  import "react";
12
- import "../index-BDVjGvMI.js";
12
+ import "../index-E7g8cRyW.js";
13
13
  import "./ClueComponentContext.js";
14
14
  import "./useClue.js";
15
15
  export {
16
- a as ClueActionContext,
17
- C as ClueActionProvider
16
+ A as ClueActionContext,
17
+ d as ClueActionProvider
18
18
  };
@@ -1,40 +1,34 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { useMemo } from "react";
3
- import { useTranslation } from "react-i18next";
4
- import { c as createContext } from "../index-BDVjGvMI.js";
5
- const ClueComponentContext = createContext(null);
6
- const ClueComponentI18nProvider = ({
7
- children,
8
- ReactJson
1
+ import { jsx as n } from "react/jsx-runtime";
2
+ import { useMemo as m } from "react";
3
+ import { useTranslation as l } from "react-i18next";
4
+ import { c as i } from "../index-E7g8cRyW.js";
5
+ const u = i(null), p = ({
6
+ children: t,
7
+ ReactJson: o
9
8
  }) => {
10
- const i18next = useTranslation();
11
- const context = useMemo(
9
+ const r = l(), e = m(
12
10
  () => ({
13
- ReactJson,
14
- i18next
11
+ ReactJson: o,
12
+ i18next: r
15
13
  }),
16
- [ReactJson, i18next]
14
+ [o, r]
17
15
  );
18
- return /* @__PURE__ */ jsx(ClueComponentContext.Provider, { value: context, children });
19
- };
20
- const ClueComponentProvider = ({
21
- children,
22
- ReactJson,
23
- i18next = null
16
+ return /* @__PURE__ */ n(u.Provider, { value: e, children: t });
17
+ }, f = ({
18
+ children: t,
19
+ ReactJson: o,
20
+ i18next: r = null
24
21
  }) => {
25
- const context = useMemo(
22
+ const e = m(
26
23
  () => ({
27
- ReactJson,
28
- i18next
24
+ ReactJson: o,
25
+ i18next: r
29
26
  }),
30
- [ReactJson, i18next]
27
+ [o, r]
31
28
  );
32
- if (!i18next) {
33
- return /* @__PURE__ */ jsx(ClueComponentI18nProvider, { ReactJson, children });
34
- }
35
- return /* @__PURE__ */ jsx(ClueComponentContext.Provider, { value: context, children });
29
+ return r ? /* @__PURE__ */ n(u.Provider, { value: e, children: t }) : /* @__PURE__ */ n(p, { ReactJson: o, children: t });
36
30
  };
37
31
  export {
38
- ClueComponentContext,
39
- ClueComponentProvider
32
+ u as ClueComponentContext,
33
+ f as ClueComponentProvider
40
34
  };
@@ -1,23 +1,21 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { createContext, useState, useMemo } from "react";
3
- const ClueConfigContext = createContext(null);
4
- const ClueConfigProvider = ({ children, config: _config }) => {
5
- const [config, setConfig] = useState(
6
- _config ?? {
1
+ import { jsx as i } from "react/jsx-runtime";
2
+ import { createContext as c, useState as u, useMemo as f } from "react";
3
+ const l = c(null), g = ({ children: t, config: e }) => {
4
+ const [o, n] = u(
5
+ e ?? {
7
6
  configuration: null,
8
7
  c12nDef: null
9
8
  }
10
- );
11
- const context = useMemo(
9
+ ), r = f(
12
10
  () => ({
13
- config,
14
- setConfig
11
+ config: o,
12
+ setConfig: n
15
13
  }),
16
- [config, setConfig]
14
+ [o, n]
17
15
  );
18
- return /* @__PURE__ */ jsx(ClueConfigContext.Provider, { value: context, children });
16
+ return /* @__PURE__ */ i(l.Provider, { value: r, children: t });
19
17
  };
20
18
  export {
21
- ClueConfigContext,
22
- ClueConfigProvider
19
+ l as ClueConfigContext,
20
+ g as ClueConfigProvider
23
21
  };
@@ -1,23 +1,17 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { b as buildDatabase } from "../index-Dn2NHyXg.js";
3
- import { createContext, useState, useEffect } from "react";
4
- const ClueDatabaseContext = createContext(null);
5
- const ClueDatabaseProvider = ({
6
- children,
7
- database: _database,
8
- databaseConfig
1
+ import { jsx as s } from "react/jsx-runtime";
2
+ import { b as u } from "../index-WvFmjbxF.js";
3
+ import { createContext as l, useState as n, useEffect as i } from "react";
4
+ const m = l(null), p = ({
5
+ children: a,
6
+ database: e,
7
+ databaseConfig: t
9
8
  }) => {
10
- const [database, setDatabase] = useState();
11
- useEffect(() => {
12
- if (_database) {
13
- setDatabase(_database);
14
- } else {
15
- buildDatabase(databaseConfig).then(setDatabase);
16
- }
17
- }, [_database, databaseConfig]);
18
- return /* @__PURE__ */ jsx(ClueDatabaseContext.Provider, { value: database, children });
9
+ const [o, r] = n();
10
+ return i(() => {
11
+ e ? r(e) : u(t).then(r);
12
+ }, [e, t]), /* @__PURE__ */ s(m.Provider, { value: o, children: a });
19
13
  };
20
14
  export {
21
- ClueDatabaseContext,
22
- ClueDatabaseProvider
15
+ m as ClueDatabaseContext,
16
+ p as ClueDatabaseProvider
23
17
  };
@@ -1,15 +1,15 @@
1
1
  import "react/jsx-runtime";
2
- import "../iconify-CXMreGTg.js";
3
- import "../useClueTypeConfig-D4zcy8Gr.js";
2
+ import "../iconify-BBckr5AQ.js";
3
+ import "../useClueTypeConfig-BQ33EiyB.js";
4
4
  import "../utils/loggerUtil.js";
5
5
  import "react";
6
- import "../index-BDVjGvMI.js";
6
+ import "../index-E7g8cRyW.js";
7
7
  import "./ClueDatabaseContext.js";
8
8
  import "./useClueConfig.js";
9
- import { C, a } from "../ClueEnrichContext-m-4vn9rz.js";
10
- import "../groupBy-DC2oOuBN.js";
11
- import "../debounce-bV0h5FC5.js";
9
+ import { C as l, a as s } from "../ClueEnrichContext-CbJVBm4w.js";
10
+ import "../groupBy-BheQYl6f.js";
11
+ import "../debounce-DryYcbJ4.js";
12
12
  export {
13
- C as ClueEnrichContext,
14
- a as ClueEnrichProvider
13
+ l as ClueEnrichContext,
14
+ s as ClueEnrichProvider
15
15
  };