@cccsaurora/howler-ui 2.14.0-dev.266 → 2.14.0-dev.268
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/commons/components/app/hooks/index.ts +18 -18
- package/commons/components/notification/index.tsx +2 -2
- package/components/routes/overviews/OverviewViewer.tsx +1 -1
- package/components/routes/templates/TemplateViewer.tsx +1 -1
- package/i18n.ts +6 -6
- package/index.tsx +1 -1
- package/package.json +36 -13
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export * from 'commons/components/app/hooks/useApp';
|
|
2
|
-
export * from 'commons/components/app/hooks/useAppBanner';
|
|
3
|
-
export * from 'commons/components/app/hooks/useAppBar';
|
|
4
|
-
export * from 'commons/components/app/hooks/useAppBarHeight';
|
|
5
|
-
export * from 'commons/components/app/hooks/useAppBarScrollTrigger';
|
|
6
|
-
export * from 'commons/components/app/hooks/useAppBreadcrumbs';
|
|
7
|
-
export * from 'commons/components/app/hooks/useAppConfigs';
|
|
8
|
-
export * from 'commons/components/app/hooks/useAppLanguage';
|
|
9
|
-
export * from 'commons/components/app/hooks/useAppLayout';
|
|
10
|
-
export * from 'commons/components/app/hooks/useAppLeftNav';
|
|
11
|
-
export * from 'commons/components/app/hooks/useAppLogo';
|
|
12
|
-
export * from 'commons/components/app/hooks/useAppNotification';
|
|
13
|
-
export * from 'commons/components/app/hooks/useAppQuickSearch';
|
|
14
|
-
export * from 'commons/components/app/hooks/useAppSearchService';
|
|
15
|
-
export * from 'commons/components/app/hooks/useAppSitemap';
|
|
16
|
-
export * from 'commons/components/app/hooks/useAppSwitcher';
|
|
17
|
-
export * from 'commons/components/app/hooks/useAppTheme';
|
|
18
|
-
export * from 'commons/components/app/hooks/useAppUser';
|
|
1
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useApp';
|
|
2
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppBanner';
|
|
3
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppBar';
|
|
4
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppBarHeight';
|
|
5
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppBarScrollTrigger';
|
|
6
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppBreadcrumbs';
|
|
7
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppConfigs';
|
|
8
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppLanguage';
|
|
9
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppLayout';
|
|
10
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppLeftNav';
|
|
11
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppLogo';
|
|
12
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppNotification';
|
|
13
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppQuickSearch';
|
|
14
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppSearchService';
|
|
15
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppSitemap';
|
|
16
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppSwitcher';
|
|
17
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppTheme';
|
|
18
|
+
export * from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppUser';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from 'commons/components/notification/FeedModels';
|
|
2
|
-
export * from 'commons/components/notification/Notification';
|
|
1
|
+
export * from '@cccsaurora/howler-ui/commons/components/notification/FeedModels';
|
|
2
|
+
export * from '@cccsaurora/howler-ui/commons/components/notification/Notification';
|
|
@@ -31,7 +31,7 @@ import type { Analytic } from '@cccsaurora/howler-ui/models/entities/generated/A
|
|
|
31
31
|
import type { Hit } from '@cccsaurora/howler-ui/models/entities/generated/Hit';
|
|
32
32
|
import type { Overview } from '@cccsaurora/howler-ui/models/entities/generated/Overview';
|
|
33
33
|
import { useSearchParams } from 'react-router-dom';
|
|
34
|
-
import hitsData from 'utils/hit.json';
|
|
34
|
+
import hitsData from '@cccsaurora/howler-ui/utils/hit.json';
|
|
35
35
|
import { sanitizeLuceneQuery } from '@cccsaurora/howler-ui/utils/stringUtils';
|
|
36
36
|
import OverviewEditor from './OverviewEditor';
|
|
37
37
|
import { useStartingTemplate } from './startingTemplate';
|
|
@@ -26,7 +26,7 @@ import type { Analytic } from '@cccsaurora/howler-ui/models/entities/generated/A
|
|
|
26
26
|
import type { Hit } from '@cccsaurora/howler-ui/models/entities/generated/Hit';
|
|
27
27
|
import type { Template } from '@cccsaurora/howler-ui/models/entities/generated/Template';
|
|
28
28
|
import { useSearchParams } from 'react-router-dom';
|
|
29
|
-
import hitsData from 'utils/hit.json';
|
|
29
|
+
import hitsData from '@cccsaurora/howler-ui/utils/hit.json';
|
|
30
30
|
import { sanitizeLuceneQuery } from '@cccsaurora/howler-ui/utils/stringUtils';
|
|
31
31
|
|
|
32
32
|
const TemplateViewer = () => {
|
package/i18n.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createInstance, type i18n } from 'i18next';
|
|
2
2
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
3
|
-
import helpMainEN from 'locales/en/help/main.json';
|
|
4
|
-
import helpSearchEN from 'locales/en/help/search.json';
|
|
5
|
-
import translationEN from 'locales/en/translation.json';
|
|
6
|
-
import helpMainFR from 'locales/fr/help/main.json';
|
|
7
|
-
import helpSearchFR from 'locales/fr/help/search.json';
|
|
8
|
-
import translationFR from 'locales/fr/translation.json';
|
|
3
|
+
import helpMainEN from '@cccsaurora/howler-ui/locales/en/help/main.json';
|
|
4
|
+
import helpSearchEN from '@cccsaurora/howler-ui/locales/en/help/search.json';
|
|
5
|
+
import translationEN from '@cccsaurora/howler-ui/locales/en/translation.json';
|
|
6
|
+
import helpMainFR from '@cccsaurora/howler-ui/locales/fr/help/main.json';
|
|
7
|
+
import helpSearchFR from '@cccsaurora/howler-ui/locales/fr/help/search.json';
|
|
8
|
+
import translationFR from '@cccsaurora/howler-ui/locales/fr/translation.json';
|
|
9
9
|
import { initReactI18next } from 'react-i18next';
|
|
10
10
|
|
|
11
11
|
const resources = {
|
package/index.tsx
CHANGED
|
@@ -5,7 +5,7 @@ import duration from 'dayjs/plugin/duration';
|
|
|
5
5
|
import relativeTime from 'dayjs/plugin/relativeTime';
|
|
6
6
|
import utc from 'dayjs/plugin/utc';
|
|
7
7
|
import '@cccsaurora/howler-ui/i18n';
|
|
8
|
-
import 'index.css';
|
|
8
|
+
import '@cccsaurora/howler-ui/index.css';
|
|
9
9
|
// import howlerPluginStore from '@cccsaurora/howler-ui/plugins/store';
|
|
10
10
|
import * as ReactDOM from 'react-dom/client';
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -97,12 +97,13 @@
|
|
|
97
97
|
"internal-slot": "1.0.7"
|
|
98
98
|
},
|
|
99
99
|
"type": "module",
|
|
100
|
-
"version": "2.14.0-dev.
|
|
100
|
+
"version": "2.14.0-dev.268",
|
|
101
101
|
"exports": {
|
|
102
102
|
"./globals": "./globals.d.ts",
|
|
103
103
|
"./.": "./index.tsx",
|
|
104
|
+
"./index.css": "./index.css",
|
|
104
105
|
"./i18n": "./i18n.ts",
|
|
105
|
-
"./package": "./package.json",
|
|
106
|
+
"./package.json": "./package.json",
|
|
106
107
|
"./api": "./api/index.ts",
|
|
107
108
|
"./api/help": "./api/help.ts",
|
|
108
109
|
"./models/WithMetadata": "./models/WithMetadata.d.ts",
|
|
@@ -119,7 +120,7 @@
|
|
|
119
120
|
"./utils/actionUtils": "./utils/actionUtils.ts",
|
|
120
121
|
"./utils/stringUtils": "./utils/stringUtils.ts",
|
|
121
122
|
"./utils/localStorage": "./utils/localStorage.ts",
|
|
122
|
-
"./utils/hit": "./utils/hit.json",
|
|
123
|
+
"./utils/hit.json": "./utils/hit.json",
|
|
123
124
|
"./rest/FetchClient": "./rest/FetchClient.ts",
|
|
124
125
|
"./rest": "./rest/index.ts",
|
|
125
126
|
"./rest/AxiosClient": "./rest/AxiosClient.ts",
|
|
@@ -321,12 +322,12 @@
|
|
|
321
322
|
"./models/entities/generated/Link": "./models/entities/generated/Link.d.ts",
|
|
322
323
|
"./models/entities/generated/Rule": "./models/entities/generated/Rule.d.ts",
|
|
323
324
|
"./models/entities/generated/Image": "./models/entities/generated/Image.d.ts",
|
|
324
|
-
"./locales/en/translation": "./locales/en/translation.json",
|
|
325
|
-
"./locales/fr/translation": "./locales/fr/translation.json",
|
|
326
|
-
"./locales/en/help/main": "./locales/en/help/main.json",
|
|
327
|
-
"./locales/en/help/search": "./locales/en/help/search.json",
|
|
328
|
-
"./locales/fr/help/main": "./locales/fr/help/main.json",
|
|
329
|
-
"./locales/fr/help/search": "./locales/fr/help/search.json",
|
|
325
|
+
"./locales/en/translation.json": "./locales/en/translation.json",
|
|
326
|
+
"./locales/fr/translation.json": "./locales/fr/translation.json",
|
|
327
|
+
"./locales/en/help/main.json": "./locales/en/help/main.json",
|
|
328
|
+
"./locales/en/help/search.json": "./locales/en/help/search.json",
|
|
329
|
+
"./locales/fr/help/main.json": "./locales/fr/help/main.json",
|
|
330
|
+
"./locales/fr/help/search.json": "./locales/fr/help/search.json",
|
|
330
331
|
"./components/hooks/useMyUserFunctions": "./components/hooks/useMyUserFunctions.tsx",
|
|
331
332
|
"./components/hooks/useMyUserList": "./components/hooks/useMyUserList.tsx",
|
|
332
333
|
"./components/hooks/useMySearch": "./components/hooks/useMySearch.tsx",
|
|
@@ -472,10 +473,10 @@
|
|
|
472
473
|
"./components/elements/display/handlebars/helpers": "./components/elements/display/handlebars/helpers.tsx",
|
|
473
474
|
"./components/elements/display/features/DevelopmentBanner": "./components/elements/display/features/DevelopmentBanner.tsx",
|
|
474
475
|
"./components/elements/display/features/DevelopmentIcon": "./components/elements/display/features/DevelopmentIcon.tsx",
|
|
475
|
-
"./components/elements/display/icons/svg/howler-logo": "./components/elements/display/icons/svg/howler-logo.svg",
|
|
476
|
-
"./components/elements/display/icons/svg/howler-icon-lightmode": "./components/elements/display/icons/svg/howler-icon-lightmode.svg",
|
|
477
|
-
"./components/elements/display/icons/svg/howler-icon-darkmode": "./components/elements/display/icons/svg/howler-icon-darkmode.svg",
|
|
478
|
-
"./components/elements/display/icons/svg/howler-logo-full": "./components/elements/display/icons/svg/howler-logo-full.svg",
|
|
476
|
+
"./components/elements/display/icons/svg/howler-logo.svg": "./components/elements/display/icons/svg/howler-logo.svg",
|
|
477
|
+
"./components/elements/display/icons/svg/howler-icon-lightmode.svg": "./components/elements/display/icons/svg/howler-icon-lightmode.svg",
|
|
478
|
+
"./components/elements/display/icons/svg/howler-icon-darkmode.svg": "./components/elements/display/icons/svg/howler-icon-darkmode.svg",
|
|
479
|
+
"./components/elements/display/icons/svg/howler-logo-full.svg": "./components/elements/display/icons/svg/howler-logo-full.svg",
|
|
479
480
|
"./components/routes/dossiers/DossierCard": "./components/routes/dossiers/DossierCard.tsx",
|
|
480
481
|
"./components/routes/dossiers/LeadForm": "./components/routes/dossiers/LeadForm.tsx",
|
|
481
482
|
"./components/routes/dossiers/Dossiers": "./components/routes/dossiers/Dossiers.tsx",
|
|
@@ -574,6 +575,26 @@
|
|
|
574
575
|
"./components/routes/analytics/widgets/Status": "./components/routes/analytics/widgets/Status.tsx",
|
|
575
576
|
"./components/routes/analytics/widgets/Escalation": "./components/routes/analytics/widgets/Escalation.tsx",
|
|
576
577
|
"./components/routes/help/components/HelpTabs": "./components/routes/help/components/HelpTabs.tsx",
|
|
578
|
+
"./components/routes/help/markdown/en/notebook.md": "./components/routes/help/markdown/en/notebook.md",
|
|
579
|
+
"./components/routes/help/markdown/en/templates.md": "./components/routes/help/markdown/en/templates.md",
|
|
580
|
+
"./components/routes/help/markdown/en/authentication.md": "./components/routes/help/markdown/en/authentication.md",
|
|
581
|
+
"./components/routes/help/markdown/en/links.md": "./components/routes/help/markdown/en/links.md",
|
|
582
|
+
"./components/routes/help/markdown/en/schema.md": "./components/routes/help/markdown/en/schema.md",
|
|
583
|
+
"./components/routes/help/markdown/en/bundles.md": "./components/routes/help/markdown/en/bundles.md",
|
|
584
|
+
"./components/routes/help/markdown/en/actionIntroduction.md": "./components/routes/help/markdown/en/actionIntroduction.md",
|
|
585
|
+
"./components/routes/help/markdown/en/client.md": "./components/routes/help/markdown/en/client.md",
|
|
586
|
+
"./components/routes/help/markdown/en/retention.md": "./components/routes/help/markdown/en/retention.md",
|
|
587
|
+
"./components/routes/help/markdown/en/views.md": "./components/routes/help/markdown/en/views.md",
|
|
588
|
+
"./components/routes/help/markdown/fr/notebook.md": "./components/routes/help/markdown/fr/notebook.md",
|
|
589
|
+
"./components/routes/help/markdown/fr/templates.md": "./components/routes/help/markdown/fr/templates.md",
|
|
590
|
+
"./components/routes/help/markdown/fr/authentication.md": "./components/routes/help/markdown/fr/authentication.md",
|
|
591
|
+
"./components/routes/help/markdown/fr/links.md": "./components/routes/help/markdown/fr/links.md",
|
|
592
|
+
"./components/routes/help/markdown/fr/schema.md": "./components/routes/help/markdown/fr/schema.md",
|
|
593
|
+
"./components/routes/help/markdown/fr/bundles.md": "./components/routes/help/markdown/fr/bundles.md",
|
|
594
|
+
"./components/routes/help/markdown/fr/actionIntroduction.md": "./components/routes/help/markdown/fr/actionIntroduction.md",
|
|
595
|
+
"./components/routes/help/markdown/fr/client.md": "./components/routes/help/markdown/fr/client.md",
|
|
596
|
+
"./components/routes/help/markdown/fr/retention.md": "./components/routes/help/markdown/fr/retention.md",
|
|
597
|
+
"./components/routes/help/markdown/fr/views.md": "./components/routes/help/markdown/fr/views.md",
|
|
577
598
|
"./components/routes/action/view/ActionSearch": "./components/routes/action/view/ActionSearch.tsx",
|
|
578
599
|
"./components/routes/action/view/ActionDetails": "./components/routes/action/view/ActionDetails.tsx",
|
|
579
600
|
"./components/routes/action/view/Integrations": "./components/routes/action/view/Integrations.tsx",
|
|
@@ -581,6 +602,8 @@
|
|
|
581
602
|
"./components/routes/action/shared/OperationEntry": "./components/routes/action/shared/OperationEntry.tsx",
|
|
582
603
|
"./components/routes/action/shared/ActionReportDisplay": "./components/routes/action/shared/ActionReportDisplay.tsx",
|
|
583
604
|
"./components/routes/action/edit/ActionEditor": "./components/routes/action/edit/ActionEditor.tsx",
|
|
605
|
+
"./components/routes/overviews/template/en.md": "./components/routes/overviews/template/en.md",
|
|
606
|
+
"./components/routes/overviews/template/fr.md": "./components/routes/overviews/template/fr.md",
|
|
584
607
|
"./commons/components/utils/keyboard": "./commons/components/utils/keyboard.ts",
|
|
585
608
|
"./commons/components/leftnav/LeftNavItem": "./commons/components/leftnav/LeftNavItem.tsx",
|
|
586
609
|
"./commons/components/leftnav/LeftNavGroup": "./commons/components/leftnav/LeftNavGroup.tsx",
|