@saooti/octopus-sdk 30.0.52 → 30.0.53
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/README.md
CHANGED
|
@@ -548,4 +548,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
548
548
|
* 30.0.49 Podcastmaker ProgressBar
|
|
549
549
|
* 30.0.50 Commentaires live
|
|
550
550
|
* 30.0.51 Commentaires live
|
|
551
|
-
* 30.0.52 Ajout rubriqueIdFilter
|
|
551
|
+
* 30.0.52 Ajout rubriqueIdFilter
|
|
552
|
+
* 30.0.53 Commentaires live
|
package/package.json
CHANGED
package/src/main.ts
CHANGED
|
@@ -6,6 +6,7 @@ import I18nResources from './locale/messages';
|
|
|
6
6
|
import router from '@/router/router';
|
|
7
7
|
import moment from 'moment';
|
|
8
8
|
import store from '@/store/AppStore';
|
|
9
|
+
import paramStore from '@/store/paramStore';
|
|
9
10
|
import { LocaleMessage } from '@intlify/core-base';
|
|
10
11
|
/* import 'popper.js/dist/popper.min.js'; */
|
|
11
12
|
/* import 'jquery/src/jquery.js'; */
|
|
@@ -32,6 +33,22 @@ const i18n = createI18n({
|
|
|
32
33
|
});
|
|
33
34
|
moment.locale(language);
|
|
34
35
|
|
|
36
|
+
|
|
37
|
+
paramStore.initialize({
|
|
38
|
+
generalParameters: {},
|
|
39
|
+
podcastPage: {},
|
|
40
|
+
podcastsPage: {},
|
|
41
|
+
emissionsPage: {},
|
|
42
|
+
emissionPage: {},
|
|
43
|
+
intervenantPage: {},
|
|
44
|
+
intervenantsPage: {},
|
|
45
|
+
searchPage: {},
|
|
46
|
+
player: {},
|
|
47
|
+
footer: {},
|
|
48
|
+
organisation: {},
|
|
49
|
+
octopusApi: {}
|
|
50
|
+
});
|
|
51
|
+
|
|
35
52
|
// Initialisation store
|
|
36
53
|
createApp(App)
|
|
37
54
|
.use(i18n)
|