@cccsaurora/howler-ui 2.14.0-dev.223 → 2.14.0-dev.228
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.
|
@@ -22,7 +22,10 @@ const UserProfile = () => {
|
|
|
22
22
|
const anchorRef = useRef();
|
|
23
23
|
const location = useLocation();
|
|
24
24
|
const [open, setOpen] = useState(false);
|
|
25
|
-
const onProfileClick = useCallback(
|
|
25
|
+
const onProfileClick = useCallback(e => {
|
|
26
|
+
e.stopPropagation();
|
|
27
|
+
setOpen(_open => !_open);
|
|
28
|
+
}, []);
|
|
26
29
|
const onClickAway = useCallback(() => setOpen(false), []);
|
|
27
30
|
const renderThemeSelection = useCallback(enabled => {
|
|
28
31
|
if (enabled &&
|
|
@@ -5,7 +5,7 @@ import { Autocomplete, Box, Card, CardContent, CardHeader, Divider, FormControl,
|
|
|
5
5
|
import api from '@cccsaurora/howler-ui/api';
|
|
6
6
|
import { ViewContext } from '@cccsaurora/howler-ui/components/app/providers/ViewProvider';
|
|
7
7
|
import CustomButton from '@cccsaurora/howler-ui/components/elements/addons/buttons/CustomButton';
|
|
8
|
-
import { useCallback, useEffect, useState } from 'react';
|
|
8
|
+
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
9
9
|
import { useTranslation } from 'react-i18next';
|
|
10
10
|
import { useContextSelector } from 'use-context-selector';
|
|
11
11
|
const TYPES = {
|
|
@@ -33,7 +33,14 @@ const AddNewCard = ({ dashboard, addCard }) => {
|
|
|
33
33
|
type: selectedType,
|
|
34
34
|
config: JSON.stringify(config)
|
|
35
35
|
});
|
|
36
|
-
|
|
36
|
+
// Zero the config so we don't prep the user to add the same card
|
|
37
|
+
// We can leave the analyticId, because it is allowed to be duplicated across viz types
|
|
38
|
+
['type', 'viewId'].forEach(key => {
|
|
39
|
+
if (key in config) {
|
|
40
|
+
setConfig(key, '');
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
}, [selectedType, addCard, config, setConfig]);
|
|
37
44
|
const fetchAllAnalytics = async () => {
|
|
38
45
|
setAnalyticsLoading(true);
|
|
39
46
|
const batchSize = 150;
|
|
@@ -56,6 +63,15 @@ const AddNewCard = ({ dashboard, addCard }) => {
|
|
|
56
63
|
useEffect(() => {
|
|
57
64
|
fetchAllAnalytics();
|
|
58
65
|
}, []);
|
|
66
|
+
const filteredAnalyticVisualizations = useMemo(() => {
|
|
67
|
+
const existingAnalyticCards = dashboard.filter(_card => _card.type === "analytic");
|
|
68
|
+
return VISUALIZATIONS.filter(viz => {
|
|
69
|
+
return !existingAnalyticCards.some(_card => {
|
|
70
|
+
const parsedConfig = JSON.parse(_card.config);
|
|
71
|
+
return parsedConfig.analyticId === config.analyticId && parsedConfig.type === viz;
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
}, [dashboard, config.analyticId]);
|
|
59
75
|
useEffect(() => {
|
|
60
76
|
if (selectedType === 'view') {
|
|
61
77
|
_setConfig({
|
|
@@ -78,7 +94,7 @@ const AddNewCard = ({ dashboard, addCard }) => {
|
|
|
78
94
|
}, [fetchViews]);
|
|
79
95
|
return (_jsx(Grid, { item: true, xs: 12, md: 6, children: _jsxs(Card, { variant: "outlined", sx: { height: '100%' }, children: [_jsx(CardHeader, { title: t('route.home.add'), subheader: _jsx(Typography, { variant: "body2", color: "text.secondary", children: t('route.home.add.description') }) }), _jsx(CardContent, { children: _jsxs(Stack, { spacing: 1, children: [_jsxs(FormControl, { sx: theme => ({ mt: `${theme.spacing(2)} !important` }), children: [_jsx(InputLabel, { children: t('route.home.add.type') }), _jsx(Select, { value: selectedType, onChange: event => setSelectedType(event.target.value), label: t('route.home.add.type'), children: Object.keys(TYPES).map(type => (_jsx(MenuItem, { value: type, children: _jsxs(Stack, { children: [_jsx(Typography, { variant: "body1", children: t(`route.home.add.type.${type}`) }), _jsx(Typography, { variant: "caption", color: "text.secondary", children: t(`route.home.add.type.${type}.description`) })] }) }, type))) })] }), selectedType && _jsx(Divider, { flexItem: true }), selectedType === 'analytic' && (_jsxs(_Fragment, { children: [_jsx(Typography, { variant: "body1", children: t('route.home.add.analytic.title') }), _jsx(Typography, { variant: "caption", color: "text.secondary", children: t('route.home.add.analytic.description') }), _jsx(Autocomplete, { sx: { pt: 1 }, onChange: (__, opt) => setConfig('analyticId', opt.analytic_id), loading: analyticsLoading, options: analytics, filterOptions: (options, state) => options.filter(opt => opt.name.toLowerCase().includes(state.inputValue.toLowerCase()) ||
|
|
80
96
|
opt.description?.split('\n')[0]?.toLowerCase().includes(state.inputValue.toLowerCase())), renderOption: (props, option) => (_createElement("li", { ...props, key: option.analytic_id },
|
|
81
|
-
_jsxs(Stack, { children: [_jsx(Typography, { variant: "body1", children: option.name }), _jsx(Typography, { variant: "caption", color: "text.secondary", children: option.description?.split('\n')[0] })] }))), getOptionLabel: option => option.name, renderInput: params => _jsx(TextField, { ...params, label: t('route.home.add.analytic') }) }), _jsxs(FormControl, { sx: theme => ({ mt: `${theme.spacing(2)} !important` }), children: [_jsx(InputLabel, { children: t('route.home.add.visualization') }), _jsx(Select, { value: config.type ?? '', onChange: event => setConfig('type', event.target.value), label: t('route.home.add.visualization'), children:
|
|
97
|
+
_jsxs(Stack, { children: [_jsx(Typography, { variant: "body1", children: option.name }), _jsx(Typography, { variant: "caption", color: "text.secondary", children: option.description?.split('\n')[0] })] }))), getOptionLabel: option => option.name, renderInput: params => _jsx(TextField, { ...params, label: t('route.home.add.analytic') }) }), _jsxs(FormControl, { sx: theme => ({ mt: `${theme.spacing(2)} !important` }), children: [_jsx(InputLabel, { children: t('route.home.add.visualization') }), _jsx(Select, { value: config.type ?? '', onChange: event => setConfig('type', event.target.value), label: t('route.home.add.visualization'), children: filteredAnalyticVisualizations.length > 0 ? (filteredAnalyticVisualizations.map(viz => (_jsx(MenuItem, { value: viz, children: _jsxs(Stack, { children: [_jsx(Typography, { variant: "body1", children: t(`route.home.add.visualization.${viz}`) }), _jsx(Typography, { variant: "caption", color: "text.secondary", children: t(`route.home.add.visualization.${viz}.description`) })] }) }, viz)))) : (_jsx(MenuItem, { disabled: true, children: _jsx(Typography, { variant: "body1", color: "text.secondary", children: t('route.home.add.visualization.unavailable') }) })) })] })] })), selectedType === 'view' && (_jsxs(_Fragment, { children: [_jsx(Autocomplete, { sx: { pt: 1 }, value: views[config.viewId] || null, onChange: (__, opt) => setConfig('viewId', opt.view_id), onOpen: onViewOpen, onClose: () => setViewOpen(false), open: viewOpen, loading: viewLoading, options: Object.values(views), filterOptions: (options, state) => options.filter(opt => !!opt &&
|
|
82
98
|
!dashboard?.find(entry => entry.type === 'view' && JSON.parse(entry.config).viewId === opt.view_id) &&
|
|
83
99
|
(opt.title.toLowerCase().includes(state.inputValue.toLowerCase()) ||
|
|
84
100
|
opt.query.toLowerCase().includes(state.inputValue.toLowerCase()))), renderOption: (props, option) => (_createElement("li", { ...props, key: option.view_id },
|
|
@@ -543,12 +543,13 @@
|
|
|
543
543
|
"route.home.add.visualization.assessment": "Assessment Result of Created Hits",
|
|
544
544
|
"route.home.add.visualization.created.description": "Time series of the number of hits created by the analytic over the last 90 days.",
|
|
545
545
|
"route.home.add.visualization.created": "Number of Created Hits",
|
|
546
|
+
"route.home.add.visualization.detection.description": "For hits ingested in the last three months, what is their detection?",
|
|
547
|
+
"route.home.add.visualization.detection": "Hits Created by Detection",
|
|
546
548
|
"route.home.add.visualization.escalation.description": "For hits that have been triaged, what was the resulting escalation?",
|
|
547
549
|
"route.home.add.visualization.escalation": "Escalation of Created Hits",
|
|
548
550
|
"route.home.add.visualization.status.description": "For hits ingested in the last three months, what is their status?",
|
|
549
551
|
"route.home.add.visualization.status": "Cumulative Status of Hits Created",
|
|
550
|
-
"route.home.add.visualization.
|
|
551
|
-
"route.home.add.visualization.detection": "Hits Created by Detection",
|
|
552
|
+
"route.home.add.visualization.unavailable": "No visualization options available.",
|
|
552
553
|
"route.home.add.visualization": "Visualization",
|
|
553
554
|
"route.home.add": "Add New Panel",
|
|
554
555
|
"route.home.alert.updated.description": "There have been updates to alerts you are involved in. Since you last viewed, {{count}} alert(s) have updates.",
|
|
@@ -548,6 +548,7 @@
|
|
|
548
548
|
"route.home.add.visualization.escalation": "Escalade des hits créés",
|
|
549
549
|
"route.home.add.visualization.status.description": "Quel est l'état des hits créés au cours des trois derniers mois ?",
|
|
550
550
|
"route.home.add.visualization.status": "État cumulatif des hits créés",
|
|
551
|
+
"route.home.add.visualization.unavailable": "Aucune option de visualisation disponible.",
|
|
551
552
|
"route.home.add.visualization": "Visualisation",
|
|
552
553
|
"route.home.add": "Ajouter un nouveau panneau",
|
|
553
554
|
"route.home.alert.updated.description": "Des mises à jour ont été apportées aux alertes auxquelles vous participez. Depuis votre dernière consultation, {{count}} alertes ont été mises à jour",
|
package/package.json
CHANGED
|
@@ -95,160 +95,160 @@
|
|
|
95
95
|
"internal-slot": "1.0.7"
|
|
96
96
|
},
|
|
97
97
|
"type": "module",
|
|
98
|
-
"version": "2.14.0-dev.
|
|
98
|
+
"version": "2.14.0-dev.228",
|
|
99
99
|
"exports": {
|
|
100
100
|
"./i18n": "./i18n.js",
|
|
101
101
|
"./index.css": "./index.css",
|
|
102
|
+
"./tests/*": "./tests/*.js",
|
|
103
|
+
"./utils/*": "./utils/*.js",
|
|
104
|
+
"./utils/*.json": "./utils/*.json",
|
|
105
|
+
"./branding/*": "./branding/*.js",
|
|
102
106
|
"./api/*": "./api/*.js",
|
|
103
107
|
"./api": "./api/index.js",
|
|
104
108
|
"./models/*": "./models/*.js",
|
|
105
109
|
"./locales/*.json": "./locales/*.json",
|
|
106
|
-
"./branding/*": "./branding/*.js",
|
|
107
|
-
"./utils/*": "./utils/*.js",
|
|
108
|
-
"./utils/*.json": "./utils/*.json",
|
|
109
110
|
"./rest/*": "./rest/*.js",
|
|
110
111
|
"./rest": "./rest/index.js",
|
|
111
|
-
"./components/*": "./components/*.js",
|
|
112
|
-
"./commons/*": "./commons/*.js",
|
|
113
112
|
"./plugins/*": "./plugins/*.js",
|
|
114
|
-
"./
|
|
115
|
-
"./
|
|
116
|
-
"./api/
|
|
113
|
+
"./commons/*": "./commons/*.js",
|
|
114
|
+
"./components/*": "./components/*.js",
|
|
115
|
+
"./api/action/*": "./api/action/*.js",
|
|
116
|
+
"./api/action": "./api/action/index.js",
|
|
117
117
|
"./api/template/*": "./api/template/*.js",
|
|
118
118
|
"./api/template": "./api/template/index.js",
|
|
119
|
-
"./api/hit/*": "./api/hit/*.js",
|
|
120
|
-
"./api/hit": "./api/hit/index.js",
|
|
121
|
-
"./api/notebook/*": "./api/notebook/*.js",
|
|
122
|
-
"./api/notebook": "./api/notebook/index.js",
|
|
123
|
-
"./api/auth/*": "./api/auth/*.js",
|
|
124
|
-
"./api/auth": "./api/auth/index.js",
|
|
125
|
-
"./api/search/*": "./api/search/*.js",
|
|
126
|
-
"./api/search": "./api/search/index.js",
|
|
127
119
|
"./api/dossier/*": "./api/dossier/*.js",
|
|
128
120
|
"./api/dossier": "./api/dossier/index.js",
|
|
121
|
+
"./api/search/*": "./api/search/*.js",
|
|
122
|
+
"./api/search": "./api/search/index.js",
|
|
123
|
+
"./api/notebook/*": "./api/notebook/*.js",
|
|
124
|
+
"./api/notebook": "./api/notebook/index.js",
|
|
129
125
|
"./api/view/*": "./api/view/*.js",
|
|
130
126
|
"./api/view": "./api/view/index.js",
|
|
127
|
+
"./api/configs/*": "./api/configs/*.js",
|
|
128
|
+
"./api/configs": "./api/configs/index.js",
|
|
131
129
|
"./api/overview/*": "./api/overview/*.js",
|
|
132
130
|
"./api/overview": "./api/overview/index.js",
|
|
131
|
+
"./api/analytic/*": "./api/analytic/*.js",
|
|
132
|
+
"./api/analytic": "./api/analytic/index.js",
|
|
133
133
|
"./api/user/*": "./api/user/*.js",
|
|
134
134
|
"./api/user": "./api/user/index.js",
|
|
135
|
-
"./api/
|
|
136
|
-
"./api/
|
|
137
|
-
"./api/
|
|
138
|
-
"./api/
|
|
139
|
-
"./api/
|
|
140
|
-
"./api/
|
|
141
|
-
"./api/analytic/notebooks/*": "./api/analytic/notebooks/*.js",
|
|
142
|
-
"./api/analytic/notebooks": "./api/analytic/notebooks/index.js",
|
|
143
|
-
"./api/hit/comments/*": "./api/hit/comments/*.js",
|
|
144
|
-
"./api/hit/comments": "./api/hit/comments/index.js",
|
|
135
|
+
"./api/hit/*": "./api/hit/*.js",
|
|
136
|
+
"./api/hit": "./api/hit/index.js",
|
|
137
|
+
"./api/auth/*": "./api/auth/*.js",
|
|
138
|
+
"./api/auth": "./api/auth/index.js",
|
|
139
|
+
"./api/search/grouped/*": "./api/search/grouped/*.js",
|
|
140
|
+
"./api/search/grouped": "./api/search/grouped/index.js",
|
|
145
141
|
"./api/search/facet/*": "./api/search/facet/*.js",
|
|
146
142
|
"./api/search/facet": "./api/search/facet/index.js",
|
|
147
143
|
"./api/search/count/*": "./api/search/count/*.js",
|
|
148
144
|
"./api/search/count": "./api/search/count/index.js",
|
|
145
|
+
"./api/search/sigma/*": "./api/search/sigma/*.js",
|
|
149
146
|
"./api/search/fields/*": "./api/search/fields/*.js",
|
|
150
147
|
"./api/search/fields": "./api/search/fields/index.js",
|
|
151
|
-
"./api/search/eql/*": "./api/search/eql/*.js",
|
|
152
|
-
"./api/search/sigma/*": "./api/search/sigma/*.js",
|
|
153
|
-
"./api/search/grouped/*": "./api/search/grouped/*.js",
|
|
154
|
-
"./api/search/grouped": "./api/search/grouped/index.js",
|
|
155
148
|
"./api/search/histogram/*": "./api/search/histogram/*.js",
|
|
156
149
|
"./api/search/histogram": "./api/search/histogram/index.js",
|
|
150
|
+
"./api/search/eql/*": "./api/search/eql/*.js",
|
|
151
|
+
"./api/analytic/comments/*": "./api/analytic/comments/*.js",
|
|
152
|
+
"./api/analytic/comments": "./api/analytic/comments/index.js",
|
|
153
|
+
"./api/analytic/notebooks/*": "./api/analytic/notebooks/*.js",
|
|
154
|
+
"./api/analytic/notebooks": "./api/analytic/notebooks/index.js",
|
|
157
155
|
"./api/user/avatar/*": "./api/user/avatar/*.js",
|
|
158
156
|
"./api/user/avatar": "./api/user/avatar/index.js",
|
|
159
|
-
"./
|
|
157
|
+
"./api/hit/comments/*": "./api/hit/comments/*.js",
|
|
158
|
+
"./api/hit/comments": "./api/hit/comments/index.js",
|
|
160
159
|
"./models/entities/*": "./models/entities/*.js",
|
|
160
|
+
"./models/socket/*": "./models/socket/*.js",
|
|
161
161
|
"./models/entities/generated/*": "./models/entities/generated/*.js",
|
|
162
162
|
"./locales/en/*.json": "./locales/en/*.json",
|
|
163
163
|
"./locales/fr/*.json": "./locales/fr/*.json",
|
|
164
164
|
"./locales/en/help/*.json": "./locales/en/help/*.json",
|
|
165
165
|
"./locales/fr/help/*.json": "./locales/fr/help/*.json",
|
|
166
|
+
"./commons/components/*": "./commons/components/*.js",
|
|
167
|
+
"./commons/components/breadcrumbs/*": "./commons/components/breadcrumbs/*.js",
|
|
168
|
+
"./commons/components/utils/*": "./commons/components/utils/*.js",
|
|
169
|
+
"./commons/components/leftnav/*": "./commons/components/leftnav/*.js",
|
|
170
|
+
"./commons/components/search/*": "./commons/components/search/*.js",
|
|
171
|
+
"./commons/components/app/*": "./commons/components/app/*.js",
|
|
172
|
+
"./commons/components/notification/*": "./commons/components/notification/*.js",
|
|
173
|
+
"./commons/components/notification": "./commons/components/notification/index.js",
|
|
174
|
+
"./commons/components/display/*": "./commons/components/display/*.js",
|
|
175
|
+
"./commons/components/topnav/*": "./commons/components/topnav/*.js",
|
|
176
|
+
"./commons/components/pages/*": "./commons/components/pages/*.js",
|
|
177
|
+
"./commons/components/utils/hooks/*": "./commons/components/utils/hooks/*.js",
|
|
178
|
+
"./commons/components/app/hooks/*": "./commons/components/app/hooks/*.js",
|
|
179
|
+
"./commons/components/app/hooks": "./commons/components/app/hooks/index.js",
|
|
180
|
+
"./commons/components/app/providers/*": "./commons/components/app/providers/*.js",
|
|
181
|
+
"./commons/components/notification/elements/*": "./commons/components/notification/elements/*.js",
|
|
182
|
+
"./commons/components/notification/elements/item/*": "./commons/components/notification/elements/item/*.js",
|
|
183
|
+
"./commons/components/display/hooks/*": "./commons/components/display/hooks/*.js",
|
|
184
|
+
"./commons/components/pages/hooks/*": "./commons/components/pages/hooks/*.js",
|
|
185
|
+
"./components/logins/*": "./components/logins/*.js",
|
|
166
186
|
"./components/hooks/*": "./components/hooks/*.js",
|
|
167
187
|
"./components/app/*": "./components/app/*.js",
|
|
168
|
-
"./components/logins/*": "./components/logins/*.js",
|
|
169
|
-
"./components/elements/*": "./components/elements/*.js",
|
|
170
188
|
"./components/routes/*": "./components/routes/*.js",
|
|
171
|
-
"./components/
|
|
172
|
-
"./components/app/providers/*": "./components/app/providers/*.js",
|
|
173
|
-
"./components/app/drawers/*": "./components/app/drawers/*.js",
|
|
189
|
+
"./components/elements/*": "./components/elements/*.js",
|
|
174
190
|
"./components/logins/hooks/*": "./components/logins/hooks/*.js",
|
|
175
191
|
"./components/logins/auth/*": "./components/logins/auth/*.js",
|
|
176
|
-
"./components/
|
|
177
|
-
"./components/
|
|
178
|
-
"./components/
|
|
179
|
-
"./components/
|
|
180
|
-
"./components/
|
|
181
|
-
"./components/
|
|
182
|
-
"./components/elements/addons/search/*": "./components/elements/addons/search/*.js",
|
|
183
|
-
"./components/elements/addons/layout/*": "./components/elements/addons/layout/*.js",
|
|
184
|
-
"./components/elements/addons/lists/*": "./components/elements/addons/lists/*.js",
|
|
185
|
-
"./components/elements/addons/lists": "./components/elements/addons/lists/index.js",
|
|
186
|
-
"./components/elements/addons/search/phrase/*": "./components/elements/addons/search/phrase/*.js",
|
|
187
|
-
"./components/elements/addons/search/phrase": "./components/elements/addons/search/phrase/index.js",
|
|
188
|
-
"./components/elements/addons/search/phrase/word/*": "./components/elements/addons/search/phrase/word/*.js",
|
|
189
|
-
"./components/elements/addons/search/phrase/word/consumers/*": "./components/elements/addons/search/phrase/word/consumers/*.js",
|
|
190
|
-
"./components/elements/addons/layout/vsbox/*": "./components/elements/addons/layout/vsbox/*.js",
|
|
191
|
-
"./components/elements/addons/lists/hooks/*": "./components/elements/addons/lists/hooks/*.js",
|
|
192
|
-
"./components/elements/addons/lists/table/*": "./components/elements/addons/lists/table/*.js",
|
|
193
|
-
"./components/elements/addons/lists/table": "./components/elements/addons/lists/table/index.js",
|
|
194
|
-
"./components/elements/hit/aggregate/*": "./components/elements/hit/aggregate/*.js",
|
|
195
|
-
"./components/elements/hit/outlines/*": "./components/elements/hit/outlines/*.js",
|
|
196
|
-
"./components/elements/hit/related/*": "./components/elements/hit/related/*.js",
|
|
197
|
-
"./components/elements/hit/elements/*": "./components/elements/hit/elements/*.js",
|
|
198
|
-
"./components/elements/hit/actions/*": "./components/elements/hit/actions/*.js",
|
|
199
|
-
"./components/elements/hit/outlines/al/*": "./components/elements/hit/outlines/al/*.js",
|
|
200
|
-
"./components/elements/display/icons/*": "./components/elements/display/icons/*.js",
|
|
201
|
-
"./components/elements/display/modals/*": "./components/elements/display/modals/*.js",
|
|
202
|
-
"./components/elements/display/markdownPlugins/*.md": "./components/elements/display/markdownPlugins/*.md.js",
|
|
203
|
-
"./components/elements/display/json/*": "./components/elements/display/json/*.js",
|
|
204
|
-
"./components/elements/display/handlebars/*": "./components/elements/display/handlebars/*.js",
|
|
205
|
-
"./components/elements/display/features/*": "./components/elements/display/features/*.js",
|
|
206
|
-
"./components/elements/display/icons/svg/*": "./components/elements/display/icons/svg/*.js",
|
|
192
|
+
"./components/app/hooks/*": "./components/app/hooks/*.js",
|
|
193
|
+
"./components/app/drawers/*": "./components/app/drawers/*.js",
|
|
194
|
+
"./components/app/providers/*": "./components/app/providers/*.js",
|
|
195
|
+
"./components/routes/settings/*": "./components/routes/settings/*.js",
|
|
196
|
+
"./components/routes/action/*": "./components/routes/action/*.js",
|
|
197
|
+
"./components/routes/help/*": "./components/routes/help/*.js",
|
|
207
198
|
"./components/routes/admin/*": "./components/routes/admin/*.js",
|
|
208
|
-
"./components/routes/dossiers/*": "./components/routes/dossiers/*.js",
|
|
209
|
-
"./components/routes/advanced/*": "./components/routes/advanced/*.js",
|
|
210
199
|
"./components/routes/hits/*": "./components/routes/hits/*.js",
|
|
211
|
-
"./components/routes/
|
|
200
|
+
"./components/routes/advanced/*": "./components/routes/advanced/*.js",
|
|
201
|
+
"./components/routes/analytics/*": "./components/routes/analytics/*.js",
|
|
212
202
|
"./components/routes/home/*": "./components/routes/home/*.js",
|
|
213
203
|
"./components/routes/home": "./components/routes/home/index.js",
|
|
214
|
-
"./components/routes/analytics/*": "./components/routes/analytics/*.js",
|
|
215
|
-
"./components/routes/help/*": "./components/routes/help/*.js",
|
|
216
|
-
"./components/routes/action/*": "./components/routes/action/*.js",
|
|
217
|
-
"./components/routes/views/*": "./components/routes/views/*.js",
|
|
218
|
-
"./components/routes/overviews/*": "./components/routes/overviews/*.js",
|
|
219
204
|
"./components/routes/templates/*": "./components/routes/templates/*.js",
|
|
205
|
+
"./components/routes/overviews/*": "./components/routes/overviews/*.js",
|
|
206
|
+
"./components/routes/dossiers/*": "./components/routes/dossiers/*.js",
|
|
207
|
+
"./components/routes/views/*": "./components/routes/views/*.js",
|
|
208
|
+
"./components/routes/action/view/*": "./components/routes/action/view/*.js",
|
|
209
|
+
"./components/routes/action/shared/*": "./components/routes/action/shared/*.js",
|
|
210
|
+
"./components/routes/action/edit/*": "./components/routes/action/edit/*.js",
|
|
211
|
+
"./components/routes/help/markdown/*.md": "./components/routes/help/markdown/*.md.js",
|
|
212
|
+
"./components/routes/help/components/*": "./components/routes/help/components/*.js",
|
|
213
|
+
"./components/routes/help/markdown/en/*.md": "./components/routes/help/markdown/en/*.md.js",
|
|
214
|
+
"./components/routes/help/markdown/fr/*.md": "./components/routes/help/markdown/fr/*.md.js",
|
|
220
215
|
"./components/routes/admin/users/*": "./components/routes/admin/users/*.js",
|
|
221
216
|
"./components/routes/hits/search/*": "./components/routes/hits/search/*.js",
|
|
222
217
|
"./components/routes/hits/view/*": "./components/routes/hits/view/*.js",
|
|
223
218
|
"./components/routes/hits/search/grid/*": "./components/routes/hits/search/grid/*.js",
|
|
224
219
|
"./components/routes/hits/search/shared/*": "./components/routes/hits/search/shared/*.js",
|
|
225
220
|
"./components/routes/analytics/widgets/*": "./components/routes/analytics/widgets/*.js",
|
|
226
|
-
"./components/routes/help/components/*": "./components/routes/help/components/*.js",
|
|
227
|
-
"./components/routes/help/markdown/*.md": "./components/routes/help/markdown/*.md.js",
|
|
228
|
-
"./components/routes/help/markdown/en/*.md": "./components/routes/help/markdown/en/*.md.js",
|
|
229
|
-
"./components/routes/help/markdown/fr/*.md": "./components/routes/help/markdown/fr/*.md.js",
|
|
230
|
-
"./components/routes/action/view/*": "./components/routes/action/view/*.js",
|
|
231
|
-
"./components/routes/action/shared/*": "./components/routes/action/shared/*.js",
|
|
232
|
-
"./components/routes/action/edit/*": "./components/routes/action/edit/*.js",
|
|
233
221
|
"./components/routes/overviews/template/*": "./components/routes/overviews/template/*.js",
|
|
234
|
-
"./
|
|
235
|
-
"./
|
|
236
|
-
"./
|
|
237
|
-
"./
|
|
238
|
-
"./
|
|
239
|
-
"./
|
|
240
|
-
"./
|
|
241
|
-
"./
|
|
242
|
-
"./
|
|
243
|
-
"./
|
|
244
|
-
"./
|
|
245
|
-
"./
|
|
246
|
-
"./
|
|
247
|
-
"./
|
|
248
|
-
"./
|
|
249
|
-
"./
|
|
250
|
-
"./
|
|
251
|
-
"./
|
|
252
|
-
"./
|
|
222
|
+
"./components/elements/view/*": "./components/elements/view/*.js",
|
|
223
|
+
"./components/elements/display/*": "./components/elements/display/*.js",
|
|
224
|
+
"./components/elements/hit/*": "./components/elements/hit/*.js",
|
|
225
|
+
"./components/elements/addons/*": "./components/elements/addons/*.js",
|
|
226
|
+
"./components/elements/display/json/*": "./components/elements/display/json/*.js",
|
|
227
|
+
"./components/elements/display/handlebars/*": "./components/elements/display/handlebars/*.js",
|
|
228
|
+
"./components/elements/display/features/*": "./components/elements/display/features/*.js",
|
|
229
|
+
"./components/elements/display/markdownPlugins/*.md": "./components/elements/display/markdownPlugins/*.md.js",
|
|
230
|
+
"./components/elements/display/icons/*": "./components/elements/display/icons/*.js",
|
|
231
|
+
"./components/elements/display/modals/*": "./components/elements/display/modals/*.js",
|
|
232
|
+
"./components/elements/display/icons/svg/*": "./components/elements/display/icons/svg/*.js",
|
|
233
|
+
"./components/elements/hit/actions/*": "./components/elements/hit/actions/*.js",
|
|
234
|
+
"./components/elements/hit/aggregate/*": "./components/elements/hit/aggregate/*.js",
|
|
235
|
+
"./components/elements/hit/related/*": "./components/elements/hit/related/*.js",
|
|
236
|
+
"./components/elements/hit/elements/*": "./components/elements/hit/elements/*.js",
|
|
237
|
+
"./components/elements/hit/outlines/*": "./components/elements/hit/outlines/*.js",
|
|
238
|
+
"./components/elements/hit/outlines/al/*": "./components/elements/hit/outlines/al/*.js",
|
|
239
|
+
"./components/elements/addons/lists/*": "./components/elements/addons/lists/*.js",
|
|
240
|
+
"./components/elements/addons/lists": "./components/elements/addons/lists/index.js",
|
|
241
|
+
"./components/elements/addons/search/*": "./components/elements/addons/search/*.js",
|
|
242
|
+
"./components/elements/addons/layout/*": "./components/elements/addons/layout/*.js",
|
|
243
|
+
"./components/elements/addons/buttons/*": "./components/elements/addons/buttons/*.js",
|
|
244
|
+
"./components/elements/addons/buttons": "./components/elements/addons/buttons/index.js",
|
|
245
|
+
"./components/elements/addons/lists/hooks/*": "./components/elements/addons/lists/hooks/*.js",
|
|
246
|
+
"./components/elements/addons/lists/table/*": "./components/elements/addons/lists/table/*.js",
|
|
247
|
+
"./components/elements/addons/lists/table": "./components/elements/addons/lists/table/index.js",
|
|
248
|
+
"./components/elements/addons/search/phrase/*": "./components/elements/addons/search/phrase/*.js",
|
|
249
|
+
"./components/elements/addons/search/phrase": "./components/elements/addons/search/phrase/index.js",
|
|
250
|
+
"./components/elements/addons/search/phrase/word/*": "./components/elements/addons/search/phrase/word/*.js",
|
|
251
|
+
"./components/elements/addons/search/phrase/word/consumers/*": "./components/elements/addons/search/phrase/word/consumers/*.js",
|
|
252
|
+
"./components/elements/addons/layout/vsbox/*": "./components/elements/addons/layout/vsbox/*.js"
|
|
253
253
|
}
|
|
254
254
|
}
|