@cccsaurora/clue-ui 0.15.0-dev.27 → 0.15.0-dev.29

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 (257) hide show
  1. package/ActionForm-DgfJwTzt.js +436 -0
  2. package/AnnotationPreview-BvNpZOP0.js +188 -0
  3. package/ClueEnrichContext-DXwLVp0M.js +518 -0
  4. package/FlexOne-BSYAhhtG.js +9 -0
  5. package/_Map-kgDsDYxq.js +64 -0
  6. package/_MapCache-DabaaWfq.js +161 -0
  7. package/_Uint8Array-BlVVH1tp.js +129 -0
  8. package/_baseAssignValue-CNbcU6Nb.js +25 -0
  9. package/_baseClone-D3a8Pa4T.js +284 -0
  10. package/_baseExtremum-B1o1zHjR.js +33 -0
  11. package/_baseFlatten-D4huXoEI.js +92 -0
  12. package/_baseGet-BSK_nnoz.js +109 -0
  13. package/_baseIsEqual-B5xLoweL.js +238 -0
  14. package/_baseIteratee-p6Nj07-n.js +126 -0
  15. package/_baseSlice-GAv_YFTT.js +20 -0
  16. package/_baseSum-D0WC1dN0.js +13 -0
  17. package/_baseUniq-CpupKWcL.js +89 -0
  18. package/_commonjsHelpers-CUmg6egw.js +6 -0
  19. package/_createAggregator-BpVy5xMi.js +63 -0
  20. package/_getPrototype-D1LAdQKO.js +5 -0
  21. package/_getTag-D3ToyefI.js +126 -0
  22. package/api/lookup/enrich.d.ts +10 -0
  23. package/api/lookup/index.d.ts +5 -0
  24. package/api/lookup/types.d.ts +5 -0
  25. package/api/lookup/types_detection.d.ts +5 -0
  26. package/cloneDeep-CjP5k9zW.js +8 -0
  27. package/components/AnnotationBody.d.ts +6 -0
  28. package/components/AnnotationBody.js +56 -0
  29. package/components/AnnotationDetailPopover.d.ts +14 -0
  30. package/components/AnnotationDetailPopover.js +61 -0
  31. package/components/AnnotationDetails.d.ts +8 -0
  32. package/components/AnnotationDetails.js +172 -0
  33. package/components/AnnotationEntry.d.ts +6 -0
  34. package/components/AnnotationEntry.js +59 -0
  35. package/components/AnnotationPreview.d.ts +14 -0
  36. package/components/AnnotationPreview.js +11 -0
  37. package/components/ClassificationChip.d.ts +11 -0
  38. package/components/ClassificationChip.js +52 -0
  39. package/components/CountBadge.d.ts +8 -0
  40. package/components/CountBadge.js +34 -0
  41. package/components/EnrichedCard.d.ts +14 -0
  42. package/components/EnrichedCard.js +162 -0
  43. package/components/EnrichedChip.d.ts +9 -0
  44. package/components/EnrichedChip.js +176 -0
  45. package/components/EnrichedTypography.d.ts +16 -0
  46. package/components/EnrichedTypography.js +178 -0
  47. package/components/ErrorBoundary.d.ts +15 -0
  48. package/components/ErrorBoundary.js +36 -0
  49. package/components/RetryFailedEnrichments.d.ts +2 -0
  50. package/components/RetryFailedEnrichments.js +13 -0
  51. package/components/SourcePicker.d.ts +2 -0
  52. package/components/SourcePicker.js +98 -0
  53. package/components/actions/ActionForm.d.ts +6 -0
  54. package/components/actions/ActionForm.js +16 -0
  55. package/components/actions/ExecutePopover.d.ts +10 -0
  56. package/components/actions/ExecutePopover.js +93 -0
  57. package/components/actions/ResultModal.d.ts +9 -0
  58. package/components/actions/ResultModal.js +46 -0
  59. package/components/actions/form/schemaAdapter.d.ts +3 -0
  60. package/components/actions/form/schemaAdapter.js +47 -0
  61. package/components/display/graph/ExpandMoreButton.d.ts +7 -0
  62. package/components/display/graph/ExpandMoreButton.js +18 -0
  63. package/components/display/graph/elements/NodeCard.d.ts +10 -0
  64. package/components/display/graph/elements/NodeCard.js +146 -0
  65. package/components/display/graph/elements/NodeTag.d.ts +9 -0
  66. package/components/display/graph/elements/NodeTag.js +17 -0
  67. package/components/display/graph/index.d.ts +9 -0
  68. package/components/display/graph/index.js +438 -0
  69. package/components/display/graph/visualizations/Leaf.d.ts +25 -0
  70. package/components/display/graph/visualizations/Leaf.js +125 -0
  71. package/components/display/graph/visualizations/cloud/index.d.ts +24 -0
  72. package/components/display/graph/visualizations/cloud/index.js +141 -0
  73. package/components/display/graph/visualizations/icons/BaseIcon.d.ts +12 -0
  74. package/components/display/graph/visualizations/icons/BaseIcon.js +37 -0
  75. package/components/display/graph/visualizations/icons/BugIcon.d.ts +5 -0
  76. package/components/display/graph/visualizations/icons/BugIcon.js +18 -0
  77. package/components/display/graph/visualizations/icons/HostIcon.d.ts +5 -0
  78. package/components/display/graph/visualizations/icons/HostIcon.js +24 -0
  79. package/components/display/graph/visualizations/icons/NetworkIcon.d.ts +5 -0
  80. package/components/display/graph/visualizations/icons/NetworkIcon.js +24 -0
  81. package/components/display/graph/visualizations/icons/ProcessIcon.d.ts +5 -0
  82. package/components/display/graph/visualizations/icons/ProcessIcon.js +18 -0
  83. package/components/display/graph/visualizations/icons/TargetIcon.d.ts +5 -0
  84. package/components/display/graph/visualizations/icons/TargetIcon.js +19 -0
  85. package/components/display/graph/visualizations/icons/index.d.ts +2 -0
  86. package/components/display/graph/visualizations/icons/index.js +16 -0
  87. package/components/display/graph/visualizations/panels/NodePanel.d.ts +8 -0
  88. package/components/display/graph/visualizations/panels/NodePanel.js +12 -0
  89. package/components/display/graph/visualizations/tree/BundleLine.d.ts +29 -0
  90. package/components/display/graph/visualizations/tree/BundleLine.js +121 -0
  91. package/components/display/graph/visualizations/tree/Triangle.d.ts +9 -0
  92. package/components/display/graph/visualizations/tree/Triangle.js +26 -0
  93. package/components/display/graph/visualizations/tree/index.d.ts +36 -0
  94. package/components/display/graph/visualizations/tree/index.js +485 -0
  95. package/components/display/graph/visualizations/tree/types.d.ts +11 -0
  96. package/components/display/graph/visualizations/tree/types.js +1 -0
  97. package/components/display/icons/Iconified.d.ts +9 -0
  98. package/components/display/icons/Iconified.js +29 -0
  99. package/components/display/json/index.d.ts +14 -0
  100. package/components/display/json/index.js +12 -0
  101. package/components/display/markdown/DynamicTabs.d.ts +8 -0
  102. package/components/display/markdown/DynamicTabs.js +26 -0
  103. package/components/display/markdown/index.d.ts +9 -0
  104. package/components/display/markdown/index.js +13389 -0
  105. package/components/display/markdown/markdownPlugins/tabs.d.ts +3 -0
  106. package/components/display/markdown/markdownPlugins/tabs.js +4 -0
  107. package/components/enrichment/EnrichPopover.d.ts +10 -0
  108. package/components/enrichment/EnrichPopover.js +88 -0
  109. package/components/fetchers/Fetcher.d.ts +17 -0
  110. package/components/fetchers/Fetcher.js +188 -0
  111. package/components/fetchers/PreviewModal.d.ts +8 -0
  112. package/components/fetchers/PreviewModal.js +22 -0
  113. package/components/fetchers/StatusChip.d.ts +8 -0
  114. package/components/fetchers/StatusChip.js +30 -0
  115. package/components/group/Entry.d.ts +8 -0
  116. package/components/group/Entry.js +15 -0
  117. package/components/group/Group.d.ts +12 -0
  118. package/components/group/Group.js +15 -0
  119. package/components/group/GroupControl.d.ts +4 -0
  120. package/components/group/GroupControl.js +103 -0
  121. package/components/stats/QueryStatus.d.ts +4 -0
  122. package/components/stats/QueryStatus.js +61 -0
  123. package/countBy-C69WslUA.js +14 -0
  124. package/data/event.d.ts +12 -0
  125. package/data/event.js +8 -0
  126. package/database/index.d.ts +4 -0
  127. package/database/index.js +4 -0
  128. package/database/selector.schema.json.d.ts +119 -0
  129. package/database/status.schema.json.d.ts +38 -0
  130. package/database/types.d.ts +64 -0
  131. package/debounce-bV0h5FC5.js +92 -0
  132. package/en/translation.json +135 -0
  133. package/fr/translation.json +135 -0
  134. package/get-D3C3lEU3.js +8 -0
  135. package/groupBy-DC2oOuBN.js +14 -0
  136. package/hooks/ClueActionContext.d.ts +86 -0
  137. package/hooks/ClueActionContext.js +18 -0
  138. package/hooks/ClueComponentContext.d.ts +10 -0
  139. package/hooks/ClueComponentContext.js +40 -0
  140. package/hooks/ClueConfigProvider.d.ts +12 -0
  141. package/hooks/ClueConfigProvider.js +23 -0
  142. package/hooks/ClueDatabaseContext.d.ts +10 -0
  143. package/hooks/ClueDatabaseContext.js +23 -0
  144. package/hooks/ClueEnrichContext.d.ts +6 -0
  145. package/hooks/ClueEnrichContext.js +15 -0
  146. package/hooks/ClueEnrichContextType.d.ts +113 -0
  147. package/hooks/ClueEnrichProps.d.ts +81 -0
  148. package/hooks/ClueFetcherContext.d.ts +35 -0
  149. package/hooks/ClueFetcherContext.js +88 -0
  150. package/hooks/ClueGroupContext.d.ts +14 -0
  151. package/hooks/ClueGroupContext.js +23 -0
  152. package/hooks/CluePopupContext.d.ts +24 -0
  153. package/hooks/CluePopupContext.js +12 -0
  154. package/hooks/ClueProvider.d.ts +9 -0
  155. package/hooks/ClueProvider.js +14 -0
  156. package/hooks/selectors.d.ts +10 -0
  157. package/hooks/selectors.js +24 -0
  158. package/hooks/useAnnotations.d.ts +24 -0
  159. package/hooks/useAnnotations.js +69 -0
  160. package/hooks/useClue.d.ts +4 -0
  161. package/hooks/useClue.js +8 -0
  162. package/hooks/useClueActions.d.ts +4 -0
  163. package/hooks/useClueActions.js +5 -0
  164. package/hooks/useClueConfig.d.ts +1 -0
  165. package/hooks/useClueConfig.js +8 -0
  166. package/hooks/useClueTypeConfig.d.ts +17 -0
  167. package/hooks/useClueTypeConfig.js +7 -0
  168. package/hooks/useComparator.d.ts +16 -0
  169. package/hooks/useComparator.js +1060 -0
  170. package/hooks/useErrors.d.ts +17 -0
  171. package/hooks/useErrors.js +35 -0
  172. package/hooks/useMyHighlights.d.ts +11 -0
  173. package/hooks/useMyHighlights.js +74 -0
  174. package/hooks/useMyLocalStorage.d.ts +16 -0
  175. package/hooks/useMyLocalStorage.js +80 -0
  176. package/iconify-CXMreGTg.js +1782 -0
  177. package/icons/Action.d.ts +9 -0
  178. package/icons/Action.js +90 -0
  179. package/icons/Assessment.d.ts +11 -0
  180. package/icons/Assessment.js +123 -0
  181. package/icons/Context.d.ts +12 -0
  182. package/icons/Context.js +83 -0
  183. package/icons/Opinion.d.ts +11 -0
  184. package/icons/Opinion.js +125 -0
  185. package/icons/iconMap.d.ts +7 -0
  186. package/icons/iconMap.js +10 -0
  187. package/identity-CPGTqrE4.js +6 -0
  188. package/index-BDVjGvMI.js +696 -0
  189. package/index-BDrtH5ec.js +465 -0
  190. package/index-C9lySIVX.js +1172 -0
  191. package/index-DJYqRcxJ.js +15750 -0
  192. package/index-Dn2NHyXg.js +17654 -0
  193. package/index.css +21 -0
  194. package/isEmpty-BQkZubqU.js +29 -0
  195. package/isNil-CIubwp4T.js +6 -0
  196. package/isObject-FTY-5JQX.js +7 -0
  197. package/isObjectLike-OAgjjZye.js +48 -0
  198. package/isSymbol-Xd2FsJyp.js +8 -0
  199. package/isUndefined-CE8h73dH.js +10 -0
  200. package/last-CUCl67Im.js +7 -0
  201. package/main.d.ts +42 -0
  202. package/main.js +70 -0
  203. package/package.json +28 -134
  204. package/public/manifest.json +16 -0
  205. package/public/robots.txt +3 -0
  206. package/public/svg/dark/clue-h.svg +52 -0
  207. package/public/svg/dark/clue-icon1-simple.svg +33 -0
  208. package/public/svg/dark/clue-icon1.svg +44 -0
  209. package/public/svg/dark/clue-icon2-simple.svg +26 -0
  210. package/public/svg/dark/clue-icon2.svg +37 -0
  211. package/public/svg/dark/clue-name.svg +14 -0
  212. package/public/svg/dark/clue-v.svg +52 -0
  213. package/public/svg/light/clue-h.svg +60 -0
  214. package/public/svg/light/clue-icon1-simple.svg +37 -0
  215. package/public/svg/light/clue-icon1.svg +48 -0
  216. package/public/svg/light/clue-icon2-simple.svg +30 -0
  217. package/public/svg/light/clue-icon2.svg +41 -0
  218. package/public/svg/light/clue-name.svg +14 -0
  219. package/public/svg/light/clue-v.svg +60 -0
  220. package/sortBy-B-UKp4GT.js +100 -0
  221. package/sumBy-MYkDPHZL.js +8 -0
  222. package/tabs-xGuUGsJd.js +254 -0
  223. package/text/Frequency.d.ts +9 -0
  224. package/text/Frequency.js +49 -0
  225. package/toFinite-CArjry_l.js +16 -0
  226. package/toNumber-DPxy1FBy.js +39 -0
  227. package/types/EnrichmentProps.d.ts +73 -0
  228. package/types/RunningActionData.d.ts +15 -0
  229. package/types/WithActionData.d.ts +9 -0
  230. package/types/action.d.ts +25 -0
  231. package/types/config.d.ts +16 -0
  232. package/types/fetcher.d.ts +60 -0
  233. package/types/graph.d.ts +101 -0
  234. package/types/lookup.d.ts +62 -0
  235. package/types/network.d.ts +9 -0
  236. package/useClueTypeConfig-D9ZSxa4F.js +3096 -0
  237. package/utils/chain.d.ts +14 -0
  238. package/utils/chain.js +106 -0
  239. package/utils/classificationParser.d.ts +195 -0
  240. package/utils/classificationParser.js +553 -0
  241. package/utils/constants.d.ts +26 -0
  242. package/utils/constants.js +36 -0
  243. package/utils/graph.d.ts +13 -0
  244. package/utils/graph.js +79 -0
  245. package/utils/hashUtil.d.ts +6 -0
  246. package/utils/hashUtil.js +11 -0
  247. package/utils/line.d.ts +28 -0
  248. package/utils/line.js +136 -0
  249. package/utils/loggerUtil.d.ts +6 -0
  250. package/utils/loggerUtil.js +8 -0
  251. package/utils/sessionStorage.d.ts +9 -0
  252. package/utils/sessionStorage.js +51 -0
  253. package/utils/utils.d.ts +13 -0
  254. package/utils/utils.js +11 -0
  255. package/utils/window.d.ts +3 -0
  256. package/utils/window.js +24 -0
  257. package/utils-CxIhC2xH.js +4182 -0
@@ -0,0 +1,4 @@
1
+ import { ClueDatabase, DatabaseConfig } from './types';
2
+
3
+ declare const buildDatabase: (_config?: DatabaseConfig) => Promise<ClueDatabase>;
4
+ export default buildDatabase;
@@ -0,0 +1,4 @@
1
+ import { b } from "../index-Dn2NHyXg.js";
2
+ export {
3
+ b as default
4
+ };
@@ -0,0 +1,119 @@
1
+ declare const _default: {
2
+ "keyCompression": true,
3
+ "version": 0,
4
+ "primaryKey": "id",
5
+ "type": "object",
6
+ "properties": {
7
+ "id": {
8
+ "type": "string",
9
+ "maxLength": 64
10
+ },
11
+ "source": {
12
+ "type": "string"
13
+ },
14
+ "type": {
15
+ "type": "string",
16
+ "maxLength": 255
17
+ },
18
+ "value": {
19
+ "type": "string",
20
+ "maxLength": 2048
21
+ },
22
+ "classification": {
23
+ "type": "string"
24
+ },
25
+ "count": {
26
+ "type": "number"
27
+ },
28
+ "link": {
29
+ "type": "string"
30
+ },
31
+ "raw_data": {
32
+ "type": "string"
33
+ },
34
+ "error": {
35
+ "anyOf": [{ "type": "string" }, { "type": "null" }]
36
+ },
37
+ "maintainer": {
38
+ "type": "string"
39
+ },
40
+ "datahub_link": {
41
+ "type": "string"
42
+ },
43
+ "documentation_link": {
44
+ "type": "string"
45
+ },
46
+ "latency": {
47
+ "type": "number"
48
+ },
49
+ "annotations": {
50
+ "type": "array",
51
+ "items": {
52
+ "properties": {
53
+ "analytic": {
54
+ "type": "string"
55
+ },
56
+ "analytic_icon": {
57
+ "type": "string"
58
+ },
59
+ "author": {
60
+ "type": "string"
61
+ },
62
+ "quantity": {
63
+ "type": "integer"
64
+ },
65
+ "version": {
66
+ "type": "string"
67
+ },
68
+ "timestamp": {
69
+ "type": "string"
70
+ },
71
+ "type": {
72
+ "enum": ["opinion", "frequency", "assessment", "mitigation", "context"],
73
+ "type": "string"
74
+ },
75
+ "value": {
76
+ "anyOf": [{ "type": "string" }, { "type": "number" }, { "type": "integer" }]
77
+ },
78
+ "confidence": {
79
+ "maximum": 1.0,
80
+ "minimum": 0.0,
81
+ "type": "number"
82
+ },
83
+ "severity": {
84
+ "maximum": 1.0,
85
+ "minimum": 0.0,
86
+ "type": "number"
87
+ },
88
+ "priority": {
89
+ "type": "number"
90
+ },
91
+ "summary": {
92
+ "type": "string"
93
+ },
94
+ "details": {
95
+ "type": "string"
96
+ },
97
+ "link": {
98
+ "format": "uri",
99
+ "minLength": 1,
100
+ "type": "string"
101
+ },
102
+ "icon": {
103
+ "type": "string"
104
+ },
105
+ "ubiquitous": {
106
+ "type": "boolean"
107
+ }
108
+ },
109
+ "required": ["type", "value", "confidence", "summary"],
110
+ "type": "object"
111
+ }
112
+ }
113
+ },
114
+ "required": ["latency", "id", "type", "value", "classification", "count", "annotations"],
115
+ "indexes": ["type", "value"]
116
+ }
117
+ ;
118
+
119
+ export default _default;
@@ -0,0 +1,38 @@
1
+ declare const _default: {
2
+ "keyCompression": true,
3
+ "version": 0,
4
+ "primaryKey": "id",
5
+ "type": "object",
6
+ "properties": {
7
+ "id": {
8
+ "type": "string",
9
+ "maxLength": 64
10
+ },
11
+ "type": {
12
+ "type": "string",
13
+ "maxLength": 255
14
+ },
15
+ "value": {
16
+ "type": "string",
17
+ "maxLength": 2048
18
+ },
19
+ "classification": {
20
+ "type": "string"
21
+ },
22
+ "status": {
23
+ "enum": ["pending", "in-progress", "complete"],
24
+ "type": "string"
25
+ },
26
+ "sources": {
27
+ "type": "array",
28
+ "items": {
29
+ "type": "string"
30
+ }
31
+ }
32
+ },
33
+ "required": ["id", "type", "value", "classification", "status"],
34
+ "indexes": ["type", "value"]
35
+ }
36
+ ;
37
+
38
+ export default _default;
@@ -0,0 +1,64 @@
1
+ import { Annotation, Selector, WithExtra } from "../types/lookup";
2
+ import { RxCollection, RxDatabase, RxDocument } from 'rxdb';
3
+
4
+
5
+ export interface DatabaseConfig {
6
+ storageType?: 'memory' | 'sessionStorage';
7
+ testing?: boolean;
8
+ devMode?: boolean;
9
+ }
10
+
11
+ export interface SelectorDocType {
12
+ id: string;
13
+ source: string;
14
+ type: string;
15
+ value: string;
16
+ classification: string;
17
+ count: number;
18
+ link?: string;
19
+ raw_data?: string;
20
+ error?: string;
21
+ maintainer?: string;
22
+ datahub_link?: string;
23
+ documentation_link?: string;
24
+ latency: number;
25
+ annotations: Annotation[];
26
+ }
27
+
28
+ export type SelectorDocMethods = {
29
+ getAnnotations: () => WithExtra<Annotation>[];
30
+ };
31
+
32
+ export interface SelectorCollectionMethods {}
33
+
34
+ export type SelectorDocument = RxDocument<SelectorDocType, SelectorDocMethods>;
35
+
36
+ export type SelectorCollection = RxCollection<SelectorDocType, SelectorDocMethods, SelectorCollectionMethods>;
37
+
38
+ export interface StatusDocType {
39
+ id: string;
40
+ type: string;
41
+ value: string;
42
+ classification: string;
43
+ status: 'pending' | 'in-progress' | 'complete';
44
+ sources?: string[];
45
+ }
46
+
47
+ export type StatusDocMethods = {
48
+ toSelector: () => Selector;
49
+ };
50
+
51
+ export type StatusCollectionMethods = {
52
+ queueInsert: (value: StatusDocType) => Promise<StatusDocument>;
53
+ };
54
+
55
+ export type StatusDocument = RxDocument<StatusDocType, StatusDocMethods>;
56
+
57
+ export type StatusCollection = RxCollection<StatusDocType, StatusDocMethods, StatusCollectionMethods>;
58
+
59
+ export type ClueDatabaseCollections = {
60
+ selectors: SelectorCollection;
61
+ status: StatusCollection;
62
+ };
63
+
64
+ export type ClueDatabase = RxDatabase<ClueDatabaseCollections>;
@@ -0,0 +1,92 @@
1
+ import { i as isObject } from "./isObject-FTY-5JQX.js";
2
+ import { r as root } from "./isObjectLike-OAgjjZye.js";
3
+ import { t as toNumber } from "./toNumber-DPxy1FBy.js";
4
+ var now = function() {
5
+ return root.Date.now();
6
+ };
7
+ var FUNC_ERROR_TEXT = "Expected a function";
8
+ var nativeMax = Math.max, nativeMin = Math.min;
9
+ function debounce(func, wait, options) {
10
+ var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true;
11
+ if (typeof func != "function") {
12
+ throw new TypeError(FUNC_ERROR_TEXT);
13
+ }
14
+ wait = toNumber(wait) || 0;
15
+ if (isObject(options)) {
16
+ leading = !!options.leading;
17
+ maxing = "maxWait" in options;
18
+ maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
19
+ trailing = "trailing" in options ? !!options.trailing : trailing;
20
+ }
21
+ function invokeFunc(time) {
22
+ var args = lastArgs, thisArg = lastThis;
23
+ lastArgs = lastThis = void 0;
24
+ lastInvokeTime = time;
25
+ result = func.apply(thisArg, args);
26
+ return result;
27
+ }
28
+ function leadingEdge(time) {
29
+ lastInvokeTime = time;
30
+ timerId = setTimeout(timerExpired, wait);
31
+ return leading ? invokeFunc(time) : result;
32
+ }
33
+ function remainingWait(time) {
34
+ var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall;
35
+ return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting;
36
+ }
37
+ function shouldInvoke(time) {
38
+ var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime;
39
+ return lastCallTime === void 0 || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait;
40
+ }
41
+ function timerExpired() {
42
+ var time = now();
43
+ if (shouldInvoke(time)) {
44
+ return trailingEdge(time);
45
+ }
46
+ timerId = setTimeout(timerExpired, remainingWait(time));
47
+ }
48
+ function trailingEdge(time) {
49
+ timerId = void 0;
50
+ if (trailing && lastArgs) {
51
+ return invokeFunc(time);
52
+ }
53
+ lastArgs = lastThis = void 0;
54
+ return result;
55
+ }
56
+ function cancel() {
57
+ if (timerId !== void 0) {
58
+ clearTimeout(timerId);
59
+ }
60
+ lastInvokeTime = 0;
61
+ lastArgs = lastCallTime = lastThis = timerId = void 0;
62
+ }
63
+ function flush() {
64
+ return timerId === void 0 ? result : trailingEdge(now());
65
+ }
66
+ function debounced() {
67
+ var time = now(), isInvoking = shouldInvoke(time);
68
+ lastArgs = arguments;
69
+ lastThis = this;
70
+ lastCallTime = time;
71
+ if (isInvoking) {
72
+ if (timerId === void 0) {
73
+ return leadingEdge(lastCallTime);
74
+ }
75
+ if (maxing) {
76
+ clearTimeout(timerId);
77
+ timerId = setTimeout(timerExpired, wait);
78
+ return invokeFunc(lastCallTime);
79
+ }
80
+ }
81
+ if (timerId === void 0) {
82
+ timerId = setTimeout(timerExpired, wait);
83
+ }
84
+ return result;
85
+ }
86
+ debounced.cancel = cancel;
87
+ debounced.flush = flush;
88
+ return debounced;
89
+ }
90
+ export {
91
+ debounce as d
92
+ };
@@ -0,0 +1,135 @@
1
+ {
2
+ "actions.execute": "Execute",
3
+ "actions.executing": "Executing",
4
+ "actions.json.hide": "Hide JSON",
5
+ "actions.json.show": "Show JSON",
6
+ "action.data": "Action Data",
7
+ "action.available": "Available Actions",
8
+
9
+ "adminmenu.config": "Configuration",
10
+ "adminmenu.users": "Users",
11
+ "adminmenu": "Admin menu",
12
+
13
+ "annotation.failed": "Failed",
14
+
15
+ "all": "All",
16
+
17
+ "app.language": "Language",
18
+ "app.list.empty": "No Results",
19
+ "app.search.fullscreen": "Activate fullscreen search",
20
+ "app.search.shortcut": "Perform search",
21
+ "app.search.starttyping": "Start typing and/or press ENTER",
22
+
23
+ "breadcrumb.404": "404",
24
+
25
+ "cancel": "Cancel",
26
+ "classification": "Classification",
27
+ "close": "Close",
28
+
29
+ "clipboard": "Copy value to clipboard",
30
+ "clipboard.failure": "could not be copied to clipboard",
31
+ "clipboard.success": "was copied to clipboard.",
32
+
33
+ "details.open": "Open Details",
34
+
35
+ "drawer.chat": "Chat",
36
+ "drawer.collapse": "Collapse Menu",
37
+ "drawer.dashboard": "Dashboard",
38
+ "drawer.expand": "Expand Menu",
39
+ "drawer.help": "Help",
40
+ "drawer.home": "Home",
41
+ "drawer.items.create": "Create",
42
+ "drawer.items.edit": "Edit",
43
+ "drawer.items.list": "List",
44
+ "drawer.items": "Items",
45
+ "drawer.mail.inbox.message": "Message",
46
+ "drawer.mail.inbox": "Inbox",
47
+ "drawer.mail.sent": "Sent",
48
+ "drawer.mail.trash": "Trash",
49
+ "drawer.mail": "Email",
50
+
51
+ "enrich": "Enrich",
52
+
53
+ "error": "Error",
54
+
55
+ "retry.enrich": "Retry Failed Enrichments",
56
+
57
+ "json.viewer.search.label": "Search JSON",
58
+
59
+ "notification.title": "Notifications",
60
+
61
+ "page.404.description": "The page you are looking for cannot be found...",
62
+ "page.404.title": "404: Not found",
63
+
64
+ "page.dashboard.title": "Dashboard",
65
+
66
+ "page.home.title": "Home",
67
+ "page.home.classification": "Classification",
68
+ "page.home.timeout": "Customize Timeout",
69
+ "page.home.includeraw": "Include Raw Data",
70
+ "page.home.cache": "Skip Plugins' Cache",
71
+ "page.home.types": "Types supported (one per line)",
72
+
73
+ "page.login.button": "Sign in",
74
+ "page.login.password": "Password",
75
+ "page.login.username": "Username",
76
+
77
+ "page.logout": "Logging out current user ... ",
78
+
79
+ "personalization.autohideappbar": "Auto Hide Topbar",
80
+ "personalization.dark": "Dark Mode",
81
+ "personalization.minimizebreadcrumbs": "Minimize Breadcrumbs",
82
+ "personalization.quicksearch": "Show Quick Search",
83
+ "personalization.reset_text": "Reset to site defaults",
84
+ "personalization.showbreadcrumbs": "Show Breadcrumbs",
85
+ "personalization.sticky": "Sticky Topbar",
86
+ "personalization": "Personalization",
87
+
88
+ "quicksearch.aria": "search",
89
+ "quicksearch.placeholder": "Search ...",
90
+
91
+ "refresh": "Refresh",
92
+
93
+ "route.examples": "Example Components",
94
+
95
+ "route.help.contributing": "Contributing",
96
+ "route.help.dashboard": "Plugin Dashboard",
97
+ "route.plugin": "Plugin",
98
+ "route.plugin.active": "Active",
99
+ "route.help": "Help",
100
+ "route.help.loading": "Loading Documentation",
101
+ "route.help.error": "An error occurred in loading the documentation",
102
+
103
+ "route.fetchers": "Fetchers",
104
+ "route.fetchers.fetcher": "Select Fetcher",
105
+ "route.fetchers.type": "Selector Type",
106
+ "route.fetchers.value": "Selector Value",
107
+ "route.fetchers.title": "No Fetchers",
108
+ "route.fetchers.description": "Add a new fetcher to render using the form above.",
109
+ "route.fetchers.submit": "Add Fetcher",
110
+ "route.fetchers.available": "Available Fetchers",
111
+
112
+ "route.home": "Enrich Data",
113
+
114
+ "route.login.button.oauth.azure": "Azure",
115
+ "route.login.button.oauth.keycloak": "Keycloak",
116
+
117
+ "sources": "Sources",
118
+ "sources.select.all": "Select All Sources",
119
+ "sources.select.none": "Deselect All Sources",
120
+
121
+ "summary.unfound": "Summary not found",
122
+
123
+ "tooltip.breadcrumbs.max": "Expand Breadcrumbs",
124
+ "tooltip.breadcrumbs.min": "Collapse Breadcrumbs",
125
+
126
+ "type": "Type",
127
+
128
+ "unknown": "Unknown",
129
+
130
+ "usermenu.logout": "Logout",
131
+ "usermenu": "User menu",
132
+ "usermenu.settings": "Settings",
133
+
134
+ "value": "Value"
135
+ }
@@ -0,0 +1,135 @@
1
+ {
2
+ "actions.execute": "Execute",
3
+ "actions.executing": "Executing",
4
+ "actions.json.hide": "Masquer JSON",
5
+ "actions.json.show": "Afficher JSON",
6
+ "action.data": "Données d'Action",
7
+ "action.available": "Actions disponibles",
8
+
9
+ "adminmenu.config": "Configuration",
10
+ "adminmenu.users": "Usagers",
11
+ "adminmenu": "Menu d'administration",
12
+
13
+ "annotation.failed": "Échoué",
14
+
15
+ "all": "Tout",
16
+
17
+ "app.language": "Langage",
18
+ "app.list.empty": "Aucun résultat",
19
+ "app.search.fullscreen": "Activer la recherche plein écran",
20
+ "app.search.shortcut": "Effectuer une recherche",
21
+ "app.search.starttyping": "Commencez à taper et/ou appuyez sur ENTRER",
22
+
23
+ "breadcrumb.404": "404",
24
+
25
+ "cancel": "Cancel",
26
+ "classification": "Classification",
27
+ "close": "Fermer",
28
+
29
+ "clipboard": "Copier la valeur dans le presse-papiers",
30
+ "clipboard.failure": "n'a pas pu être copié dans le presse-papiers.",
31
+ "clipboard.success": "a été copié dans le presse-papiers.",
32
+
33
+ "details.open": "Ouvrir les détails",
34
+
35
+ "drawer.chat": "Clavardage",
36
+ "drawer.collapse": "Fermer le Menu",
37
+ "drawer.dashboard": "Tableau de bord",
38
+ "drawer.expand": "Ouvrir le Menu",
39
+ "drawer.help": "Aide",
40
+ "drawer.home": "Acceuil",
41
+ "drawer.items.create": "Créé",
42
+ "drawer.items.edit": "Modifier",
43
+ "drawer.items.list": "Liste",
44
+ "drawer.items": "Items",
45
+ "drawer.mail.inbox.message": "Message",
46
+ "drawer.mail.inbox": "Boîte de réception",
47
+ "drawer.mail.sent": "Expédié",
48
+ "drawer.mail.trash": "Poubelle",
49
+ "drawer.mail": "Courriel",
50
+
51
+ "enrich": "Enrichir",
52
+
53
+ "error": "Erreur",
54
+
55
+ "retry.enrich": "Réessayer les enrichissements qui ont échoué",
56
+
57
+ "json.viewer.search.label": "Recherche JSON",
58
+
59
+ "notification.title": "Notifications",
60
+
61
+ "page.404.description": "La page que vous recherchez est introuvable ...",
62
+ "page.404.title": "404: Introuvable",
63
+
64
+ "page.dashboard.title": "Tableau de bord",
65
+
66
+ "page.home.title": "Accueil",
67
+ "page.home.cache": "Sauter le cache du plugin",
68
+ "page.home.classification": "Classification",
69
+ "page.home.includeraw": "Inclure les données brutes",
70
+ "page.home.timeout": "Personnaliser le délai d'attente",
71
+ "page.home.types": "Types supportés (un par ligne)",
72
+
73
+ "page.login.button": "Se connecter",
74
+ "page.login.error": "Tapez simplement n'importe quoi dans les champs du nom d'utilisateur et du mot de passe ...",
75
+ "page.login.password": "Mot de passe",
76
+ "page.login.username": "Nom d'utilisateur",
77
+ "page.logout": "Déconnexion de l'utilisateur actuel ... ",
78
+
79
+ "personalization.autohideappbar": "Masquer la barre supérieure",
80
+ "personalization.dark": "Mode Sombre",
81
+ "personalization.minimizebreadcrumbs": "Minimiser fils d'ariane",
82
+ "personalization.quicksearch": "Afficher recherche rapide",
83
+ "personalization.reset_text": "Réinitialiser les paramètres",
84
+ "personalization.showbreadcrumbs": "Afficher fils d'ariane",
85
+ "personalization.sticky": "Barre supérieure collante",
86
+ "personalization": "Personnalisation",
87
+
88
+ "quicksearch.aria": "recherche",
89
+ "quicksearch.placeholder": "Recherche ...",
90
+
91
+ "refresh": "Rafraîchir",
92
+
93
+ "route.examples": "Exemples de composants",
94
+
95
+ "route.help.contributing": "Contribuer",
96
+ "route.help.dashboard": "Tableau de bord du plugin",
97
+ "route.plugin": "Plugin",
98
+ "route.plugin.active": "Actif",
99
+ "route.help": "Aide",
100
+ "route.help.loading": "Chargement de la documentation",
101
+ "route.help.error": "Une erreur s'est produite lors du chargement de la documentation",
102
+
103
+ "route.fetchers": "Fetchers",
104
+ "route.fetchers.fetcher": "Sélectionner un sélecteur",
105
+ "route.fetchers.type": "Type de sélecteur",
106
+ "route.fetchers.value": "Valeur du sélecteur",
107
+ "route.fetchers.title": "Pas d'extrait",
108
+ "route.fetchers.description": "Ajoutez un nouveau moteur de recherche à rendre en utilisant le formulaire ci-dessus.",
109
+ "route.fetchers.submit": "Ajouter un fetcher",
110
+ "route.fetchers.available": "Fetchers disponibles",
111
+
112
+ "route.home": "Enrichir les données",
113
+
114
+ "route.login.button.oauth.azure": "Azure",
115
+ "route.login.button.oauth.keycloak": "Keycloak",
116
+
117
+ "sources": "Sources",
118
+ "sources.select.all": "Sélectionner toutes les sources",
119
+ "sources.select.none": "Désélectionner toutes les sources",
120
+
121
+ "summary.unfound": "Résumé introuvable",
122
+
123
+ "tooltip.breadcrumbs.max": "Maximiser fils d'ariane",
124
+ "tooltip.breadcrumbs.min": "Minimiser fils d'ariane",
125
+
126
+ "type": "Type",
127
+
128
+ "unknown": "Inconnu",
129
+
130
+ "usermenu.logout": "Se déconnecter",
131
+ "usermenu": "Menu d'utilisateur",
132
+ "usermenu.settings": "Paramètres",
133
+
134
+ "value": "Valeur"
135
+ }
@@ -0,0 +1,8 @@
1
+ import { b as baseGet } from "./_baseGet-BSK_nnoz.js";
2
+ function get(object, path, defaultValue) {
3
+ var result = object == null ? void 0 : baseGet(object, path);
4
+ return result === void 0 ? defaultValue : result;
5
+ }
6
+ export {
7
+ get as g
8
+ };
@@ -0,0 +1,14 @@
1
+ import { b as baseAssignValue } from "./_baseAssignValue-CNbcU6Nb.js";
2
+ import { c as createAggregator } from "./_createAggregator-BpVy5xMi.js";
3
+ var objectProto = Object.prototype;
4
+ var hasOwnProperty = objectProto.hasOwnProperty;
5
+ var groupBy = createAggregator(function(result, value, key) {
6
+ if (hasOwnProperty.call(result, key)) {
7
+ result[key].push(value);
8
+ } else {
9
+ baseAssignValue(result, key, [value]);
10
+ }
11
+ });
12
+ export {
13
+ groupBy as g
14
+ };