@saooti/octopus-sdk 1.0.0 → 1.1.1
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 +261 -0
- package/index.d.ts +4 -0
- package/index.ts +55 -3
- package/package.json +53 -45
- package/public/config.ts +4 -0
- package/public/css/fonts/icomoon.eot +0 -0
- package/public/css/fonts/icomoon.svg +129 -0
- package/public/css/fonts/icomoon.ttf +0 -0
- package/public/css/fonts/icomoon.woff +0 -0
- package/public/css/fonts/style.css +186 -1224
- package/public/img/403.jpeg +0 -0
- package/public/img/404.svg +242 -0
- package/public/img/ACPM.png +0 -0
- package/public/img/ouest_france_logo.svg +12 -0
- package/src/App.vue +102 -31
- package/src/api/classicCrud.ts +34 -0
- package/src/api/initialize.ts +5 -2
- package/src/assets/bootstrap-diff.scss +197 -0
- package/src/assets/form.scss +77 -77
- package/src/assets/general.scss +284 -272
- package/src/assets/live.scss +39 -0
- package/src/assets/modal.scss +43 -50
- package/src/assets/multiselect.scss +522 -573
- package/src/assets/octopus-library.scss +18 -4
- package/src/assets/share.scss +243 -0
- package/src/assets/transition.scss +98 -2
- package/src/components/display/aggregator/RssSection.vue +3 -5
- package/src/components/display/categories/CategoryChooser.vue +151 -114
- package/src/components/display/categories/CategoryFilter.vue +162 -0
- package/src/components/display/categories/CategoryList.vue +149 -117
- package/src/components/display/comments/AddCommentModal.vue +103 -108
- package/src/components/display/comments/CommentBasicView.vue +95 -0
- package/src/components/display/comments/CommentInput.vue +195 -183
- package/src/components/display/comments/CommentItem.vue +170 -208
- package/src/components/display/comments/CommentList.vue +134 -228
- package/src/components/display/comments/CommentParentInfo.vue +28 -62
- package/src/components/display/comments/CommentPlayer.vue +53 -56
- package/src/components/display/comments/CommentSection.vue +52 -83
- package/src/components/display/edit/EditBox.vue +10 -4
- package/src/components/display/edit/EditCommentBox.vue +124 -38
- package/src/components/display/emission/EmissionChooser.vue +88 -108
- package/src/components/display/emission/EmissionInlineList.vue +156 -157
- package/src/components/display/emission/EmissionItem.vue +72 -226
- package/src/components/display/emission/EmissionList.vue +159 -201
- package/src/components/display/emission/EmissionPlayerItem.vue +203 -174
- package/src/components/display/filter/AdvancedSearch.vue +224 -432
- package/src/components/display/filter/CategoryFilter.vue +105 -0
- package/src/components/display/filter/MonetizableFilter.vue +18 -15
- package/src/components/display/filter/ProductorSearch.vue +153 -176
- package/src/components/display/filter/RubriqueChoice.vue +97 -0
- package/src/components/display/filter/RubriqueFilter.vue +232 -0
- package/src/components/display/list/ListPaginate.vue +145 -0
- package/src/components/display/list/Paginate.vue +218 -0
- package/src/components/display/live/CountDown.vue +31 -30
- package/src/components/display/live/LiveHorizontalList.vue +84 -62
- package/src/components/display/live/LiveItem.vue +161 -186
- package/src/components/display/live/LiveList.vue +184 -295
- package/src/components/display/organisation/OrganisationChooser.vue +124 -162
- package/src/components/display/organisation/OrganisationChooserLight.vue +53 -56
- package/src/components/display/participant/ParticipantItem.vue +91 -128
- package/src/components/display/participant/ParticipantList.vue +134 -121
- package/src/components/display/playlist/PlaylistItem.vue +60 -97
- package/src/components/display/playlist/PlaylistList.vue +99 -92
- package/src/components/display/playlist/PodcastList.vue +117 -132
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +191 -0
- package/src/components/display/podcasts/AnimatorsItem.vue +29 -37
- package/src/components/display/podcasts/ParticipantDescription.vue +82 -0
- package/src/components/display/podcasts/PodcastFilterList.vue +49 -102
- package/src/components/display/podcasts/PodcastImage.vue +208 -225
- package/src/components/display/podcasts/PodcastInlineList.vue +62 -355
- package/src/components/display/podcasts/PodcastInlineListClassic.vue +240 -0
- package/src/components/display/podcasts/PodcastInlineListTemplate.vue +167 -0
- package/src/components/display/podcasts/PodcastItem.vue +94 -218
- package/src/components/display/podcasts/PodcastItemInfo.vue +166 -0
- package/src/components/display/podcasts/PodcastList.vue +127 -178
- package/src/components/display/podcasts/PodcastModuleBox.vue +234 -0
- package/src/components/display/podcasts/PodcastPlayBar.vue +101 -0
- package/src/components/display/podcasts/PodcastSwiperList.vue +204 -0
- package/src/components/display/podcasts/TagList.vue +60 -38
- package/src/components/display/rubriques/RubriqueChooser.vue +144 -131
- package/src/components/display/rubriques/RubriqueList.vue +216 -0
- package/src/components/display/sharing/PlayerParameters.vue +111 -153
- package/src/components/display/sharing/QrCode.vue +96 -0
- package/src/components/display/sharing/ShareButtons.vue +63 -233
- package/src/components/display/sharing/ShareButtonsIntern.vue +225 -0
- package/src/components/display/sharing/ShareDistribution.vue +102 -166
- package/src/components/display/sharing/SharePlayer.vue +189 -353
- package/src/components/display/sharing/SharePlayerColors.vue +78 -0
- package/src/components/display/sharing/SharePlayerTypes.vue +112 -0
- package/src/components/display/sharing/SplitButton.vue +42 -0
- package/src/components/display/sharing/SubscribeButtons.vue +65 -118
- package/src/components/display/studio/RecordingItemButton.vue +3 -5
- package/src/components/form/ClassicCheckbox.vue +66 -0
- package/src/components/form/ClassicLoading.vue +28 -0
- package/src/components/form/ClassicRadio.vue +66 -0
- package/src/components/form/ClassicSearch.vue +86 -0
- package/src/components/form/ClassicSelect.vue +65 -0
- package/src/components/misc/ErrorMessage.vue +27 -18
- package/src/components/misc/Footer.vue +151 -108
- package/src/components/misc/HomeDropdown.vue +95 -154
- package/src/components/misc/LeftMenu.vue +137 -206
- package/src/components/misc/Popover.vue +118 -0
- package/src/components/misc/Snackbar.vue +73 -37
- package/src/components/misc/TopBar.vue +211 -314
- package/src/components/misc/modal/ClipboardModal.vue +34 -47
- package/src/components/misc/modal/MessageModal.vue +74 -53
- package/src/components/misc/modal/NewsletterModal.vue +272 -224
- package/src/components/misc/modal/QrCodeModal.vue +58 -0
- package/src/components/misc/modal/ShareModalPlayer.vue +140 -74
- package/src/components/misc/player/Player.vue +146 -0
- package/src/components/misc/player/PlayerCompact.vue +154 -0
- package/src/components/misc/player/PlayerLarge.vue +166 -0
- package/src/components/misc/player/PlayerProgressBar.vue +112 -0
- package/src/components/misc/player/PlayerTimeline.vue +61 -0
- package/src/components/mixins/functions.ts +21 -18
- package/src/components/mixins/handle403.ts +17 -0
- package/src/components/mixins/init.ts +24 -0
- package/src/components/mixins/orgaComputed.ts +15 -0
- package/src/components/mixins/organisationFilter.ts +41 -0
- package/src/components/mixins/player/playerComment.ts +98 -0
- package/src/components/mixins/player/playerDisplay.ts +113 -0
- package/src/components/mixins/player/playerLive.ts +111 -0
- package/src/components/mixins/player/playerLogic.ts +225 -0
- package/src/components/mixins/tagOfMixins.ts +19 -0
- package/src/components/pages/Category.vue +24 -28
- package/src/components/pages/Emission.vue +144 -177
- package/src/components/pages/Emissions.vue +94 -110
- package/src/components/pages/Error403Page.vue +60 -0
- package/src/components/pages/Home.vue +74 -21
- package/src/components/pages/Lives.vue +53 -58
- package/src/components/pages/PageNotFound.vue +55 -0
- package/src/components/pages/Participant.vue +113 -129
- package/src/components/pages/Participants.vue +25 -41
- package/src/components/pages/Playlist.vue +86 -86
- package/src/components/pages/Playlists.vue +33 -52
- package/src/components/pages/Podcast.vue +206 -478
- package/src/components/pages/Podcasts.vue +112 -156
- package/src/components/pages/Rubrique.vue +21 -27
- package/src/components/pages/Search.vue +37 -94
- package/src/helper/dom.ts +2 -2
- package/src/helper/duration.ts +18 -8
- package/src/helper/useEventListener.ts +18 -0
- package/src/i18n.ts +36 -0
- package/src/locale/de.ts +309 -0
- package/src/locale/educationen.ts +14 -0
- package/src/locale/en.ts +316 -1
- package/src/locale/es.ts +309 -0
- package/src/locale/fr.ts +47 -15
- package/src/locale/it.ts +307 -0
- package/src/locale/messages.ts +11 -2
- package/src/locale/sl.ts +309 -0
- package/src/main.ts +64 -55
- package/src/router/router.ts +192 -159
- package/src/sass/_variables.scss +10 -8
- package/src/shims-tsx.d.ts +15 -0
- package/src/shims-vue-recaptcha-v3.d.ts +9 -0
- package/src/shims-vue.d.ts +5 -6
- package/src/store/AppStore.ts +41 -173
- package/src/store/class/adserver/adserverConfig.ts +9 -0
- package/src/store/class/adserver/adserverOtherEmission.ts +13 -0
- package/src/store/class/adserver/adserverTiming.ts +10 -0
- package/src/store/class/cartouchier/cartouche.ts +15 -0
- package/src/store/class/cartouchier/cartouchier.ts +9 -0
- package/src/store/class/conference/conference.ts +35 -0
- package/src/store/class/conference/conferenceMessage.ts +10 -0
- package/src/store/class/conference/conferenceParticipant.ts +18 -0
- package/src/store/class/conference/pad.ts +15 -0
- package/src/store/class/conference/studioCall.ts +7 -0
- package/src/store/class/contract/contract.ts +7 -0
- package/src/store/class/contract/contractOrganisation.ts +7 -0
- package/src/store/class/ftp/ftpEmission.ts +41 -0
- package/src/store/class/ftp/ftpParam.ts +12 -0
- package/src/store/class/ftp/testFtpEmission.ts +5 -0
- package/src/store/class/general/audioView.ts +21 -0
- package/src/store/class/general/category.ts +10 -0
- package/src/store/class/general/comment.ts +16 -0
- package/src/store/class/general/customPlayer.ts +9 -0
- package/src/store/class/general/emission.ts +23 -0
- package/src/store/class/general/fetchParam.ts +3 -0
- package/src/store/class/general/initState.ts +25 -0
- package/src/store/class/general/interfacePageable.ts +16 -0
- package/src/store/class/general/ituneCategory.ts +5 -0
- package/src/store/class/general/media.ts +14 -0
- package/src/store/class/general/organisation.ts +20 -0
- package/src/store/class/general/pageable.ts +13 -0
- package/src/store/class/general/participant.ts +12 -0
- package/src/store/class/general/player.ts +14 -0
- package/src/store/class/general/playlist.ts +13 -0
- package/src/store/class/general/podcast.ts +43 -0
- package/src/store/class/general/sortPageable.ts +5 -0
- package/src/store/class/general/soundcastCategory.ts +8 -0
- package/src/store/class/ouestFrance/ofTag.ts +36 -0
- package/src/store/class/ouestFrance/ofTagInfo.ts +9 -0
- package/src/store/class/ouestFrance/ofTagPage.ts +7 -0
- package/src/store/class/ouestFrance/ofTagSeo.ts +7 -0
- package/src/store/class/ouestFrance/ofTagVente.ts +6 -0
- package/src/store/class/ouestFrance/ofTagWithParents.ts +26 -0
- package/src/store/class/rss/aggregator.ts +28 -0
- package/src/store/class/rss/rssEmission.ts +14 -0
- package/src/store/class/rss/rssInfo.ts +8 -0
- package/src/store/class/rubrique/rubriquage.ts +10 -0
- package/src/store/class/rubrique/rubriquageFilter.ts +6 -0
- package/src/store/class/rubrique/rubrique.ts +9 -0
- package/src/store/class/stat/statArrayIncome.ts +6 -0
- package/src/store/class/stat/statArrayObject.ts +34 -0
- package/src/store/class/stat/statGraph.ts +7 -0
- package/src/store/class/user/person.ts +15 -0
- package/src/store/class/user/profile.ts +12 -0
- package/src/store/class/user/userKeycloak.ts +24 -0
- package/src/store/paramStore.ts +222 -217
- package/src/store/typeAppStore.ts +186 -235
- package/src/vuex-shim.d.ts +8 -0
- package/tsconfig.json +4 -0
- package/vue.config.js +16 -0
- package/public/css/fonts/saooti-ui.eot +0 -0
- package/public/css/fonts/saooti-ui.svg +0 -829
- package/public/css/fonts/saooti-ui.ttf +0 -0
- package/public/css/fonts/saooti-ui.woff +0 -0
- package/public/css/fonts/stitcher-logo.svg +0 -83
- package/public/img/ACPM.PNG +0 -0
- package/src/api/comments.ts +0 -7
- package/src/api/emissions.ts +0 -7
- package/src/api/podcasts.ts +0 -7
- package/src/api/profile.ts +0 -8
- package/src/api/studio.ts +0 -1
- package/src/assets/bootstrap_scss/_alert.scss +0 -51
- package/src/assets/bootstrap_scss/_badge.scss +0 -54
- package/src/assets/bootstrap_scss/_breadcrumb.scss +0 -42
- package/src/assets/bootstrap_scss/_button-group.scss +0 -164
- package/src/assets/bootstrap_scss/_buttons.scss +0 -291
- package/src/assets/bootstrap_scss/_card.scss +0 -278
- package/src/assets/bootstrap_scss/_carousel.scss +0 -197
- package/src/assets/bootstrap_scss/_close.scss +0 -41
- package/src/assets/bootstrap_scss/_code.scss +0 -48
- package/src/assets/bootstrap_scss/_custom-forms.scss +0 -522
- package/src/assets/bootstrap_scss/_dropdown.scss +0 -201
- package/src/assets/bootstrap_scss/_forms.scss +0 -352
- package/src/assets/bootstrap_scss/_functions.scss +0 -134
- package/src/assets/bootstrap_scss/_grid.scss +0 -69
- package/src/assets/bootstrap_scss/_images.scss +0 -42
- package/src/assets/bootstrap_scss/_input-group.scss +0 -191
- package/src/assets/bootstrap_scss/_jumbotron.scss +0 -17
- package/src/assets/bootstrap_scss/_list-group.scss +0 -158
- package/src/assets/bootstrap_scss/_media.scss +0 -8
- package/src/assets/bootstrap_scss/_mixins.scss +0 -47
- package/src/assets/bootstrap_scss/_modal.scss +0 -243
- package/src/assets/bootstrap_scss/_nav.scss +0 -120
- package/src/assets/bootstrap_scss/_navbar.scss +0 -324
- package/src/assets/bootstrap_scss/_pagination.scss +0 -74
- package/src/assets/bootstrap_scss/_popover.scss +0 -170
- package/src/assets/bootstrap_scss/_print.scss +0 -141
- package/src/assets/bootstrap_scss/_progress.scss +0 -46
- package/src/assets/bootstrap_scss/_reboot.scss +0 -482
- package/src/assets/bootstrap_scss/_root.scss +0 -20
- package/src/assets/bootstrap_scss/_spinners.scss +0 -55
- package/src/assets/bootstrap_scss/_tables.scss +0 -185
- package/src/assets/bootstrap_scss/_toasts.scss +0 -44
- package/src/assets/bootstrap_scss/_tooltip.scss +0 -115
- package/src/assets/bootstrap_scss/_transitions.scss +0 -20
- package/src/assets/bootstrap_scss/_type.scss +0 -125
- package/src/assets/bootstrap_scss/_utilities.scss +0 -17
- package/src/assets/bootstrap_scss/_variables.scss +0 -1145
- package/src/assets/bootstrap_scss/bootstrap-grid.scss +0 -29
- package/src/assets/bootstrap_scss/bootstrap-reboot.scss +0 -12
- package/src/assets/bootstrap_scss/bootstrap.scss +0 -44
- package/src/assets/bootstrap_scss/mixins/_alert.scss +0 -13
- package/src/assets/bootstrap_scss/mixins/_background-variant.scss +0 -22
- package/src/assets/bootstrap_scss/mixins/_badge.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_border-radius.scss +0 -63
- package/src/assets/bootstrap_scss/mixins/_box-shadow.scss +0 -20
- package/src/assets/bootstrap_scss/mixins/_breakpoints.scss +0 -123
- package/src/assets/bootstrap_scss/mixins/_buttons.scss +0 -110
- package/src/assets/bootstrap_scss/mixins/_caret.scss +0 -62
- package/src/assets/bootstrap_scss/mixins/_clearfix.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_deprecate.scss +0 -10
- package/src/assets/bootstrap_scss/mixins/_float.scss +0 -14
- package/src/assets/bootstrap_scss/mixins/_forms.scss +0 -177
- package/src/assets/bootstrap_scss/mixins/_gradients.scss +0 -45
- package/src/assets/bootstrap_scss/mixins/_grid-framework.scss +0 -71
- package/src/assets/bootstrap_scss/mixins/_grid.scss +0 -69
- package/src/assets/bootstrap_scss/mixins/_hover.scss +0 -37
- package/src/assets/bootstrap_scss/mixins/_image.scss +0 -36
- package/src/assets/bootstrap_scss/mixins/_list-group.scss +0 -21
- package/src/assets/bootstrap_scss/mixins/_lists.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_nav-divider.scss +0 -11
- package/src/assets/bootstrap_scss/mixins/_pagination.scss +0 -22
- package/src/assets/bootstrap_scss/mixins/_reset-text.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_resize.scss +0 -6
- package/src/assets/bootstrap_scss/mixins/_screen-reader.scss +0 -34
- package/src/assets/bootstrap_scss/mixins/_size.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_table-row.scss +0 -39
- package/src/assets/bootstrap_scss/mixins/_text-emphasis.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_text-hide.scss +0 -11
- package/src/assets/bootstrap_scss/mixins/_text-truncate.scss +0 -8
- package/src/assets/bootstrap_scss/mixins/_transition.scss +0 -16
- package/src/assets/bootstrap_scss/mixins/_visibility.scss +0 -8
- package/src/assets/bootstrap_scss/utilities/_align.scss +0 -8
- package/src/assets/bootstrap_scss/utilities/_background.scss +0 -19
- package/src/assets/bootstrap_scss/utilities/_borders.scss +0 -75
- package/src/assets/bootstrap_scss/utilities/_clearfix.scss +0 -3
- package/src/assets/bootstrap_scss/utilities/_display.scss +0 -26
- package/src/assets/bootstrap_scss/utilities/_embed.scss +0 -39
- package/src/assets/bootstrap_scss/utilities/_flex.scss +0 -51
- package/src/assets/bootstrap_scss/utilities/_float.scss +0 -11
- package/src/assets/bootstrap_scss/utilities/_overflow.scss +0 -5
- package/src/assets/bootstrap_scss/utilities/_position.scss +0 -32
- package/src/assets/bootstrap_scss/utilities/_screenreaders.scss +0 -11
- package/src/assets/bootstrap_scss/utilities/_shadows.scss +0 -6
- package/src/assets/bootstrap_scss/utilities/_sizing.scss +0 -20
- package/src/assets/bootstrap_scss/utilities/_spacing.scss +0 -73
- package/src/assets/bootstrap_scss/utilities/_stretched-link.scss +0 -19
- package/src/assets/bootstrap_scss/utilities/_text.scss +0 -72
- package/src/assets/bootstrap_scss/utilities/_visibility.scss +0 -13
- package/src/assets/bootstrap_scss/vendor/_rfs.scss +0 -204
- package/src/components/misc/Player.vue +0 -792
- package/src/shims-vuex.d.ts +0 -7
- package/src/views/Home.vue +0 -18
package/README.md
CHANGED
|
@@ -388,11 +388,272 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
388
388
|
* 0.24.8 - 0.24.14 Début distribution
|
|
389
389
|
* 0.24.15 - 0.24.16 Description subset Html Podcastmaker
|
|
390
390
|
* 0.24.17 Bonnes pratiques et prettify
|
|
391
|
+
* 0.24.22 Passage en typescript
|
|
392
|
+
* 0.24.23 - 0.24.30 Corrections 24
|
|
393
|
+
* 0.24.31 Live pour podcastmaker
|
|
394
|
+
* 0.24.32 - 0.24.35 Corrections 24
|
|
395
|
+
* 0.24.36 Expose Rubrique page
|
|
396
|
+
* 0.24.37 Plateformes Audio grand public
|
|
397
|
+
* 0.24.38 Podcastmaker Space
|
|
398
|
+
* 0.24.39 Correction displayTime
|
|
399
|
+
* 0.24.40 Podcastmaker Space
|
|
400
|
+
* 0.24.41 Style multiselect spinner
|
|
391
401
|
|
|
402
|
+
* 0.25.0 Optimize by lazy loading
|
|
403
|
+
* 0.25.4-0.25.7 Traduction
|
|
404
|
+
* 0.25.8 Podcastmaker Space
|
|
405
|
+
* 0.25.9 Amazon distribution
|
|
406
|
+
* 0.25.10 Api commentaires
|
|
407
|
+
* 0.25.11 Regex link
|
|
408
|
+
* 0.25.12 Lighthouse accessibility
|
|
409
|
+
* 0.25.13 Organisation chooser load image just if needed
|
|
410
|
+
* 0.25.14 Commentaires
|
|
411
|
+
* 0.25.15 Aggregateurs
|
|
412
|
+
* 0.25.16 English trad
|
|
413
|
+
* 0.25.17 Demande IVECO
|
|
414
|
+
* 0.25.18 Responsive
|
|
415
|
+
* 0.25.20 amazon distribution button missing from new emission
|
|
416
|
+
* 0.25.21 Commentaire api
|
|
417
|
+
* 0.25.22 Cherry pick ACPM logo
|
|
418
|
+
* 0.25.23 Commentaires
|
|
419
|
+
* 0.25.24 Commentaires
|
|
420
|
+
* 0.25.26 Commentaires
|
|
421
|
+
* 0.25.27 Respond to comment on comment page
|
|
392
422
|
|
|
423
|
+
* 0.26.0 Nouveau sprint
|
|
424
|
+
* 0.26.2 Icone ACPM
|
|
425
|
+
* 0.26.3 whatsapp icon only for mobile
|
|
426
|
+
* 0.26.4 Podcast associated article
|
|
427
|
+
* 0.26.5 Ajout data selenium
|
|
428
|
+
* 0.26.6 Newsletter modale
|
|
429
|
+
* 0.26.7 Newsletter Icone
|
|
430
|
+
* 0.26.8 Mettre un tooltip sur le bouton de copie de l'adresse d'une page de podcast
|
|
431
|
+
* 0.26.9 Commentaires
|
|
432
|
+
* 0.26.10 Animé par
|
|
433
|
+
* 0.26.11 LiveTab
|
|
393
434
|
|
|
394
435
|
|
|
395
436
|
|
|
437
|
+
* 0.27.0 Nouveau sprint
|
|
438
|
+
* 0.27.1 Export mixins
|
|
439
|
+
* 0.27.2 Player listernerId parameter
|
|
440
|
+
* 0.27.3 Player listernerId parameter
|
|
441
|
+
* 0.27.4 Sauvegarde player beta
|
|
442
|
+
* 0.27.5 Player beta
|
|
443
|
+
* 0.27.6 Category choser
|
|
444
|
+
* 0.27.7 Player beta
|
|
445
|
+
* 0.27.8 Player beta
|
|
446
|
+
* 0.27.9 Octopus Api
|
|
447
|
+
* 0.27.10 Player beta
|
|
448
|
+
* 0.27.11 Player beta
|
|
449
|
+
* 0.27.12 Merge release 26
|
|
450
|
+
* 0.27.13 Podcastmaker
|
|
451
|
+
* 0.27.14 Podcastmaker resource url
|
|
396
452
|
|
|
453
|
+
* 0.28.0 Nouveau sprint
|
|
454
|
+
* 0.28.1 Version category filtre
|
|
455
|
+
* 0.28.2 Version category filtre
|
|
456
|
+
* 0.28.3 Rubrique filtre
|
|
457
|
+
* 0.28.4 Rubrique filtre
|
|
458
|
+
* 0.28.5 Expose new mixins
|
|
459
|
+
* 0.28.6 Rubrique filtre
|
|
460
|
+
* 0.28.7 Rubrique filtre
|
|
461
|
+
* 0.28.8 Rubrique filtre
|
|
462
|
+
* 0.28.9 QrCode
|
|
463
|
+
* 0.28.10 QrCode icone
|
|
464
|
+
* 0.28.11 Podcastmaker modif
|
|
465
|
+
* 0.28.12 Rubriquage
|
|
466
|
+
* 0.28.13 Enlever les mises à jour
|
|
467
|
+
* 0.28.14 QrCode
|
|
397
468
|
|
|
469
|
+
* 29.0.0 Vue3
|
|
470
|
+
* 29.0.1 Upgrade npm
|
|
471
|
+
* 29.0.2 Début de suppression bootstrap vue
|
|
472
|
+
* 29.0.3 Début de suppression bootstrap vue
|
|
473
|
+
* 29.0.4 vue3
|
|
474
|
+
* 29.0.5 vue3
|
|
475
|
+
* 29.0.6 vue3
|
|
476
|
+
* 29.0.7 Nouvelle version api
|
|
477
|
+
* 29.0.8 Nouvelle version api
|
|
478
|
+
* 29.0.9 vue3
|
|
479
|
+
* 29.0.10 vue3
|
|
480
|
+
* 29.0.11 Popover (encore il est dur ce popover)
|
|
481
|
+
* 29.0.12 CSS
|
|
482
|
+
* 29.0.13 npm upgrade
|
|
483
|
+
* 29.0.14 vue i18n change language
|
|
484
|
+
* 29.0.15 theme player beta
|
|
485
|
+
* 29.0.16 Rendre nos fils RSS compatibles avec l'appli des indés
|
|
486
|
+
* 29.0.17 Mise à jour bibliothèques
|
|
487
|
+
* 29.0.18 Eslint
|
|
488
|
+
* 29.0.19 Eslint
|
|
489
|
+
* 29.0.20 Eslint
|
|
490
|
+
* 29.0.21 Eslint
|
|
491
|
+
* 29.0.22 Eslint
|
|
492
|
+
* 29.0.23 Eslint
|
|
493
|
+
* 29.0.24 Version stable vue3
|
|
494
|
+
* 29.0.25 Specific category does not display in correct order
|
|
495
|
+
* 29.0.26 Snackbar position
|
|
496
|
+
* 29.0.27 Petit cursor:pointer des familles
|
|
497
|
+
* 29.0.28 Petite couleur des familles
|
|
498
|
+
* 29.0.29 Amélioration Popover
|
|
499
|
+
* 29.0.30 Amélioration Popover
|
|
398
500
|
|
|
501
|
+
* 30.0.1 Nouveau sprint
|
|
502
|
+
* 30.0.2 Correction css
|
|
503
|
+
* 30.0.3 Ajout tag page podcast
|
|
504
|
+
* 30.0.4 Remplacer la version "classique" des miniplayers par la version beta
|
|
505
|
+
* 30.0.5 Tri des classes dans des sous dossiers
|
|
506
|
+
* 30.0.6 Merge 29
|
|
507
|
+
* 30.0.7 Améliorations css
|
|
508
|
+
* 30.0.8 Améliorations diverses
|
|
509
|
+
* 30.0.9 Améliorations diverses
|
|
510
|
+
* 30.0.10 PB clearInterval
|
|
511
|
+
* 30.0.11 Version pour release
|
|
512
|
+
* 30.0.12 Export ClasicLoading
|
|
513
|
+
* 30.0.13 Améliorations css
|
|
514
|
+
* 30.0.14 Améliorations css
|
|
515
|
+
* 30.0.15 Améliorations css
|
|
516
|
+
* 30.0.16 Change Aria-Label in title
|
|
517
|
+
* 30.0.17 Oups
|
|
518
|
+
* 30.0.18 Responsive select
|
|
519
|
+
* 30.0.19 Mise à jour Api
|
|
520
|
+
* 30.0.20 Petit refacto commentaires
|
|
521
|
+
* 30.0.21 #10701 & #10698
|
|
522
|
+
* 30.0.22 Accessibilité
|
|
523
|
+
* 30.0.23 Css + Accessibilité
|
|
524
|
+
* 30.0.24 Css + Accessibilité
|
|
525
|
+
* 30.0.25 Css + Accessibilité
|
|
526
|
+
* 30.0.26 Css + Accessibilité
|
|
527
|
+
* 30.0.27 Top bar responsive
|
|
528
|
+
* 30.0.28 Limiter caractères des commentaires
|
|
529
|
+
* 30.0.29 Pour podcastmaker sudPresse
|
|
530
|
+
* 30.0.30 Problème fetch participants
|
|
531
|
+
* 30.0.31 Amélioration interface
|
|
532
|
+
* 30.0.32 Amélioration interface
|
|
533
|
+
* 30.0.33 Pb categories list
|
|
534
|
+
* 30.0.34 Bouton css
|
|
535
|
+
* 30.0.35 Commentaires
|
|
536
|
+
* 30.0.36 LiveList
|
|
537
|
+
* 30.0.37 Commentaires
|
|
538
|
+
* 30.0.38 EmissionList expose
|
|
539
|
+
* 30.0.39 Listes inline taille item
|
|
540
|
+
* 30.0.41 Inline list arrow
|
|
541
|
+
* 30.0.42 Resize rubriqueList
|
|
542
|
+
* 30.0.43 Resize rubriqueList
|
|
543
|
+
* 30.0.44 ProgressBar pour le soir
|
|
544
|
+
* 30.0.45 ProgressBar pour le soir
|
|
545
|
+
* 30.0.46 Param pour le soir
|
|
546
|
+
* 30.0.47 Live error
|
|
547
|
+
* 30.0.48 Podcastmaker ScrollOverflow PodcastInlineList
|
|
548
|
+
* 30.0.49 Podcastmaker ProgressBar
|
|
549
|
+
* 30.0.50 Commentaires live
|
|
550
|
+
* 30.0.51 Commentaires live
|
|
551
|
+
* 30.0.52 Ajout rubriqueIdFilter
|
|
552
|
+
* 30.0.53 Commentaires live
|
|
553
|
+
* 30.0.54 Multiselect not reload on close
|
|
554
|
+
* 30.0.55 Align participant img
|
|
555
|
+
* 30.0.56 Popover title
|
|
556
|
+
* 30.0.57 podcastmaker Le soir améliorations
|
|
557
|
+
* 30.0.58 Prefix css dans component par octopus-app
|
|
558
|
+
* 30.0.59 Pb productorChooser
|
|
559
|
+
* 30.0.60 PlaylistPodcastInlineList
|
|
560
|
+
* 30.0.61 Page podcast -> init recherche
|
|
561
|
+
* 30.0.62 Italian translation
|
|
562
|
+
* 30.0.63 Italian translation
|
|
563
|
+
* 30.0.64 Modif Le soir
|
|
564
|
+
* 30.0.65 OAuthType
|
|
565
|
+
* 30.0.66 ScrollBehavior
|
|
566
|
+
* 30.0.67 Parlement européen
|
|
567
|
+
* 30.0.68 Parlement européen
|
|
568
|
+
* 30.0.69 Parlement européen
|
|
569
|
+
* 30.0.70 Améliorations 30
|
|
570
|
+
* 30.0.71 Parlement européen
|
|
571
|
+
* 30.0.72 Ajout des traductions
|
|
572
|
+
* 30.0.73 Ajout classe css
|
|
573
|
+
* 30.0.74 Error locales en allemand (je sens que ça va être fun cette histoire)
|
|
574
|
+
* 30.0.75 Parlement
|
|
575
|
+
* 30.0.76 Space
|
|
576
|
+
* 30.0.77 V-Calendar bloque version
|
|
577
|
+
* 30.0.78 a -> word-break
|
|
578
|
+
* 30.0.79 DownloadId player
|
|
579
|
+
* 30.0.80 DownloadId player
|
|
580
|
+
* 30.0.81 DownloadId player
|
|
581
|
+
* 30.0.82 Cherry pick Color Qr code
|
|
582
|
+
* 30.0.83 Locales parlement
|
|
583
|
+
* 30.0.84 Une émission non visible n'apparaît pas dans la page émission
|
|
584
|
+
* 30.0.85 PB en cliquant sur le bouton "tous les épisodes de l'organisation" dans la page d'un épisode
|
|
585
|
+
* 30.0.86 Podcastmaker newest
|
|
586
|
+
* 30.0.87 Podcastmaker newest (swiper list)
|
|
587
|
+
* 30.0.88 Podcastmaker newest (swiper list)
|
|
588
|
+
* 30.0.89 Podcastmaker newest (swiper list)
|
|
589
|
+
* 30.0.90 Podcastmaker newest (swiper list)
|
|
590
|
+
* 30.0.91 Encore newest
|
|
591
|
+
* 30.0.92 Encore newest
|
|
592
|
+
|
|
593
|
+
* 31.0.0 Passage en 31
|
|
594
|
+
* 31.0.1 Ajout pocket casts
|
|
595
|
+
* 31.0.2 Gestion des 403
|
|
596
|
+
* 31.0.3 Merge 30
|
|
597
|
+
* 31.0.4 Selection des customPlayers
|
|
598
|
+
* 31.0.5 Merge 30
|
|
599
|
+
* 31.0.6 Erreur de Merge 30
|
|
600
|
+
* 31.0.7 Sécurisation
|
|
601
|
+
* 31.0.8 Dropdown Lang + classicSelect
|
|
602
|
+
* 31.0.9 LazyLoad image
|
|
603
|
+
* 31.0.10 Sécurisation
|
|
604
|
+
* 31.0.11 Sécurisation
|
|
605
|
+
* 31.0.12 Commentaires Events
|
|
606
|
+
* 31.0.13 Update/delete Libraries
|
|
607
|
+
* 31.0.14 Lazy loading lang
|
|
608
|
+
* 31.0.15 Error select productor filter
|
|
609
|
+
* 31.0.16 Merge 30
|
|
610
|
+
* 31.0.17 Bug divers
|
|
611
|
+
* 31.0.18 Bug #11015
|
|
612
|
+
* 31.0.19 Add access_token player
|
|
613
|
+
* 31.0.20 Player mobile
|
|
614
|
+
* 31.0.21 Player mobile
|
|
615
|
+
* 31.0.22 Merge 30
|
|
616
|
+
* 31.0.23 Qr Code option noir
|
|
617
|
+
* 31.0.24 Amélioration accessibilité
|
|
618
|
+
* 31.0.25 Erreur audioUrl
|
|
619
|
+
* 31.0.26 Erreur 403 page expose
|
|
620
|
+
* 31.0.27 Snackbar chose holdtime
|
|
621
|
+
* 31.0.28 Mixins orgComputed
|
|
622
|
+
* 31.0.29 Changement css
|
|
623
|
+
* 31.0.30 Changement css
|
|
624
|
+
* 31.0.31 Changement css (trop de fun)
|
|
625
|
+
* 31.0.32 Changement css (toujours trop de fun)
|
|
626
|
+
* 31.0.33 Changement css (on n'arrete plus le fun)
|
|
627
|
+
* 31.0.34 Icones
|
|
628
|
+
* 31.0.35 Il faut croire que c'est SDK Day...
|
|
629
|
+
* 31.0.36 Améliorations multiples (pagination, modales, pages d'erreurs...)
|
|
630
|
+
* 31.0.37 Continuation améliorations
|
|
631
|
+
* 31.0.38 Changement reponsive topbar
|
|
632
|
+
* 31.0.39 Erreur refactor
|
|
633
|
+
* 31.0.40 Erreur locale
|
|
634
|
+
* 31.0.41 #11220
|
|
635
|
+
* 31.0.42 #11222
|
|
636
|
+
* 31.0.43 #10963
|
|
637
|
+
* 31.0.44 Début CRUD API
|
|
638
|
+
* 31.0.45 Live
|
|
639
|
+
* 31.0.46 Pb css
|
|
640
|
+
* 31.0.47 Pétouilles Css multiselect
|
|
641
|
+
* 31.0.48 Icones change
|
|
642
|
+
* 31.0.49 Style select
|
|
643
|
+
* 31.0.50 Améliorations responsive
|
|
644
|
+
* 31.0.51 Newest
|
|
645
|
+
|
|
646
|
+
* 32.0.0 Passage en 32
|
|
647
|
+
* 32.0.1 Navigation clavier
|
|
648
|
+
* 32.0.2 Newsletter pour emission & playlist
|
|
649
|
+
* 32.0.3 Améliorations multiples
|
|
650
|
+
* 32.0.4 Correction erreur
|
|
651
|
+
* 32.0.5 update icones
|
|
652
|
+
* 32.0.6 Update icones
|
|
653
|
+
* 32.0.7 Améliorations
|
|
654
|
+
* 32.0.8 Navigation clavier podcastmaker
|
|
655
|
+
* 32.0.9 Update icones
|
|
656
|
+
* 32.0.10 Ajout alt
|
|
657
|
+
* 32.0.11 Merge 31
|
|
658
|
+
* 32.0.12 Merge 31
|
|
659
|
+
* 32.0.13 Test Vite au lieu de Webpack
|
package/index.d.ts
ADDED
package/index.ts
CHANGED
|
@@ -11,24 +11,29 @@ import Participants from "./src/components/pages/Participants.vue";
|
|
|
11
11
|
import Search from "./src/components/pages/Search.vue";
|
|
12
12
|
import Home from "./src/components/pages/Home.vue";
|
|
13
13
|
import Category from "./src/components/pages/Category.vue";
|
|
14
|
+
import Rubrique from "./src/components/pages/Rubrique.vue";
|
|
15
|
+
import Error403Page from "./src/components/pages/Error403Page.vue";
|
|
14
16
|
//Misc
|
|
15
17
|
import Footer from "./src/components/misc/Footer.vue";
|
|
16
18
|
import LeftMenu from "./src/components/misc/LeftMenu.vue";
|
|
17
|
-
import Player from "./src/components/misc/Player.vue";
|
|
19
|
+
import Player from "./src/components/misc/player/Player.vue";
|
|
18
20
|
import Snackbar from "./src/components/misc/Snackbar.vue";
|
|
19
21
|
import TopBar from "./src/components/misc/TopBar.vue";
|
|
20
22
|
import HomeDropdown from "./src/components/misc/HomeDropdown.vue";
|
|
21
23
|
import MessageModal from "./src/components/misc/modal/MessageModal.vue";
|
|
22
24
|
import ErrorMessage from "./src/components/misc/ErrorMessage.vue";
|
|
25
|
+
import Popover from "./src/components/misc/Popover.vue";
|
|
23
26
|
//Display
|
|
24
27
|
import CategoryChooser from "./src/components/display/categories/CategoryChooser.vue";
|
|
25
28
|
import CategoryList from "./src/components/display/categories/CategoryList.vue";
|
|
29
|
+
import CategoryFilter from "./src/components/display/categories/CategoryFilter.vue";
|
|
26
30
|
/*import EditBox from "./src/components/display/edit/EditBox.vue"; */
|
|
27
31
|
import EmissionChooser from "./src/components/display/emission/EmissionChooser.vue";
|
|
28
32
|
/* import EmissionItem from "./src/components/display/emission/EmissionItem.vue"; */
|
|
29
|
-
|
|
30
|
-
import MonetizableFilter from "./src/components/display/filter/MonetizableFilter.vue";
|
|
33
|
+
import EmissionList from "./src/components/display/emission/EmissionList.vue";
|
|
34
|
+
/*import MonetizableFilter from "./src/components/display/filter/MonetizableFilter.vue";
|
|
31
35
|
import ProductorSearch from "./src/components/display/filter/ProductorSearch.vue";*/
|
|
36
|
+
import AdvancedSearch from "./src/components/display/filter/AdvancedSearch.vue";
|
|
32
37
|
import OrganisationChooser from "./src/components/display/organisation/OrganisationChooser.vue";
|
|
33
38
|
/*import ParticipantItem from "./src/components/display/participant/ParticipantItem.vue";
|
|
34
39
|
import ParticipantList from "./src/components/display/participant/ParticipantList.vue";
|
|
@@ -45,11 +50,24 @@ import EmissionInlineList from "./src/components/display/emission/EmissionInline
|
|
|
45
50
|
import RubriqueChooser from "./src/components/display/rubriques/RubriqueChooser.vue";
|
|
46
51
|
import CommentList from "./src/components/display/comments/CommentList.vue";
|
|
47
52
|
import CommentInput from "./src/components/display/comments/CommentInput.vue";
|
|
53
|
+
import PodcastPlaylistInlineList from "./src/components/display/playlist/PodcastPlaylistInlineList.vue";
|
|
54
|
+
|
|
55
|
+
//form
|
|
56
|
+
import ClassicSearch from "./src/components/form/ClassicSearch.vue";
|
|
57
|
+
import ClassicCheckbox from "./src/components/form/ClassicCheckbox.vue";
|
|
58
|
+
import ClassicRadio from "./src/components/form/ClassicRadio.vue";
|
|
59
|
+
import ClassicLoading from "./src/components/form/ClassicLoading.vue";
|
|
60
|
+
import ClassicSelect from "./src/components/form/ClassicSelect.vue";
|
|
61
|
+
import Paginate from "./src/components/display/list/Paginate.vue";
|
|
62
|
+
import ListPaginate from "./src/components/display/list/ListPaginate.vue";
|
|
48
63
|
|
|
49
64
|
//mixins
|
|
50
65
|
import {selenium} from "./src/components/mixins/functions";
|
|
51
66
|
import {cookies} from "./src/components/mixins/functions";
|
|
52
67
|
import {displayMethods} from "./src/components/mixins/functions";
|
|
68
|
+
import {orgaFilter} from "./src/components/mixins/organisationFilter";
|
|
69
|
+
import {initSDK} from "./src/components/mixins/init";
|
|
70
|
+
import {tagOfMixins} from "./src/components/mixins/tagOfMixins";
|
|
53
71
|
|
|
54
72
|
const components = {
|
|
55
73
|
Lives,
|
|
@@ -72,6 +90,7 @@ const components = {
|
|
|
72
90
|
CategoryList,
|
|
73
91
|
PodcastInlineList,
|
|
74
92
|
EmissionChooser,
|
|
93
|
+
EmissionList,
|
|
75
94
|
/* EmissionItem, */
|
|
76
95
|
OrganisationChooser,
|
|
77
96
|
PodcastFilterList,
|
|
@@ -88,6 +107,22 @@ const components = {
|
|
|
88
107
|
HomeDropdown,
|
|
89
108
|
ErrorMessage,
|
|
90
109
|
displayMethods,
|
|
110
|
+
Rubrique,
|
|
111
|
+
CategoryFilter,
|
|
112
|
+
orgaFilter,
|
|
113
|
+
initSDK,
|
|
114
|
+
Popover,
|
|
115
|
+
tagOfMixins,
|
|
116
|
+
ClassicSearch,
|
|
117
|
+
ClassicCheckbox,
|
|
118
|
+
ClassicRadio,
|
|
119
|
+
ClassicLoading,
|
|
120
|
+
AdvancedSearch,
|
|
121
|
+
PodcastPlaylistInlineList,
|
|
122
|
+
ClassicSelect,
|
|
123
|
+
Error403Page,
|
|
124
|
+
Paginate,
|
|
125
|
+
ListPaginate
|
|
91
126
|
}
|
|
92
127
|
|
|
93
128
|
export default components;
|
|
@@ -114,6 +149,7 @@ export {
|
|
|
114
149
|
PodcastInlineList,
|
|
115
150
|
EmissionChooser,
|
|
116
151
|
/* EmissionItem, */
|
|
152
|
+
EmissionList,
|
|
117
153
|
OrganisationChooser,
|
|
118
154
|
PodcastFilterList,
|
|
119
155
|
ShareButtons,
|
|
@@ -129,4 +165,20 @@ export {
|
|
|
129
165
|
HomeDropdown,
|
|
130
166
|
ErrorMessage,
|
|
131
167
|
displayMethods,
|
|
168
|
+
Rubrique,
|
|
169
|
+
CategoryFilter,
|
|
170
|
+
orgaFilter,
|
|
171
|
+
initSDK,
|
|
172
|
+
Popover,
|
|
173
|
+
tagOfMixins,
|
|
174
|
+
ClassicSearch,
|
|
175
|
+
ClassicCheckbox,
|
|
176
|
+
ClassicRadio,
|
|
177
|
+
ClassicLoading,
|
|
178
|
+
AdvancedSearch,
|
|
179
|
+
PodcastPlaylistInlineList,
|
|
180
|
+
ClassicSelect,
|
|
181
|
+
Error403Page,
|
|
182
|
+
Paginate,
|
|
183
|
+
ListPaginate
|
|
132
184
|
};
|
package/package.json
CHANGED
|
@@ -1,73 +1,81 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saooti/octopus-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Javascript SDK for using octopus",
|
|
6
6
|
"author": "Saooti",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"serve": "vue-cli-service serve",
|
|
9
|
-
"build": "vue-cli-service build",
|
|
10
|
-
"lint": "vue-cli-service lint",
|
|
9
|
+
"build": "vue-cli-service build --report",
|
|
10
|
+
"lint": "vue-cli-service lint --fix",
|
|
11
11
|
"build_bundle": "vue-cli-service build --target lib --name octopus ./index.js",
|
|
12
12
|
"prettifile": "prettier --single-quote --trailing-comma es5 --write",
|
|
13
13
|
"prettify": "prettier --single-quote --trailing-comma es5 --write src/**/**/**/*.{js,vue}"
|
|
14
14
|
},
|
|
15
|
-
"main": "./dist/octopus.common.js",
|
|
16
15
|
"dependencies": {
|
|
17
|
-
"@saooti/octopus-api": "^0.
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"vue
|
|
34
|
-
"vue-
|
|
35
|
-
"vue-
|
|
36
|
-
"vue-
|
|
37
|
-
"
|
|
16
|
+
"@saooti/octopus-api": "^0.1.1",
|
|
17
|
+
"@vue/cli": "^5.0.8",
|
|
18
|
+
"@vue/compat": "^3.2.37",
|
|
19
|
+
"axios": "^0.24.0",
|
|
20
|
+
"bootstrap": "5.2.0",
|
|
21
|
+
"core-js": "^3.23.5",
|
|
22
|
+
"hls.js": "^1.1.5",
|
|
23
|
+
"humanize-duration": "^3.27.2",
|
|
24
|
+
"jquery": "^3.5.14",
|
|
25
|
+
"moment": "^2.29.4",
|
|
26
|
+
"moment-locales-webpack-plugin": "^1.2.0",
|
|
27
|
+
"qrcode.vue": "^3.3.3",
|
|
28
|
+
"sass": "^1.53.0",
|
|
29
|
+
"sass-loader": "^12.6.0",
|
|
30
|
+
"swiper": "^8.3.1",
|
|
31
|
+
"v-calendar": "^3.0.0-alpha.8",
|
|
32
|
+
"vue": "^3.2.37",
|
|
33
|
+
"vue-i18n": "^9.2.0-beta.40",
|
|
34
|
+
"vue-multiselect": "^3.0.0-alpha.2",
|
|
35
|
+
"vue-recaptcha-v3": "^2.0.1",
|
|
36
|
+
"vue-router": "^4.1.2",
|
|
37
|
+
"vue3-lazyload": "^0.2.5-beta",
|
|
38
|
+
"vue3-swatches": "^1.0.10",
|
|
39
|
+
"vuex": "^4.0.2",
|
|
40
|
+
"webpack": "^5.73.0"
|
|
38
41
|
},
|
|
39
42
|
"devDependencies": {
|
|
40
|
-
"@types/
|
|
41
|
-
"@types/
|
|
42
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
43
|
-
"@typescript-eslint/parser": "^
|
|
44
|
-
"@vue/cli-plugin-babel": "^
|
|
45
|
-
"@vue/cli-plugin-eslint": "^
|
|
46
|
-
"@vue/cli-plugin-
|
|
47
|
-
"@vue/cli-
|
|
48
|
-
"@vue/
|
|
49
|
-
"@vue/
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"eslint": "^5.16.0",
|
|
54
|
-
"eslint-plugin-vue": "^7.0.0-alpha.0",
|
|
55
|
-
"typescript": "~3.9.3",
|
|
56
|
-
"vue-cli-plugin-vue-next": "~0.1.4"
|
|
43
|
+
"@types/bootstrap": "^5.1.13",
|
|
44
|
+
"@types/jquery": "^3.5.14",
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
|
46
|
+
"@typescript-eslint/parser": "^5.30.7",
|
|
47
|
+
"@vue/cli-plugin-babel": "^5.0.8",
|
|
48
|
+
"@vue/cli-plugin-eslint": "^5.0.8",
|
|
49
|
+
"@vue/cli-plugin-typescript": "^5.0.8",
|
|
50
|
+
"@vue/cli-service": "^5.0.8",
|
|
51
|
+
"@vue/compiler-sfc": "^3.2.31",
|
|
52
|
+
"@vue/eslint-config-typescript": "^8.0.0",
|
|
53
|
+
"eslint": "^8.20.0",
|
|
54
|
+
"eslint-plugin-vue": "^7.20.0",
|
|
55
|
+
"typescript": "^4.7.4"
|
|
57
56
|
},
|
|
58
57
|
"eslintConfig": {
|
|
58
|
+
"parser": "vue-eslint-parser",
|
|
59
59
|
"root": true,
|
|
60
60
|
"env": {
|
|
61
61
|
"node": true
|
|
62
62
|
},
|
|
63
63
|
"extends": [
|
|
64
|
-
"plugin:vue/vue3-essential",
|
|
65
64
|
"eslint:recommended",
|
|
66
|
-
"@vue/typescript"
|
|
65
|
+
"@vue/typescript",
|
|
66
|
+
"plugin:@typescript-eslint/eslint-recommended",
|
|
67
|
+
"plugin:@typescript-eslint/recommended",
|
|
68
|
+
"plugin:vue/base",
|
|
69
|
+
"plugin:vue/vue3-recommended",
|
|
70
|
+
"plugin:vue/vue3-essential",
|
|
71
|
+
"plugin:vue/vue3-strongly-recommended"
|
|
67
72
|
],
|
|
68
73
|
"rules": {
|
|
69
74
|
"no-console": "off",
|
|
70
|
-
"no-debugger": "off"
|
|
75
|
+
"no-debugger": "off",
|
|
76
|
+
"@typescript-eslint/ban-ts-ignore": "off",
|
|
77
|
+
"@typescript-eslint/ban-ts-comment": "off",
|
|
78
|
+
"no-async-promise-executor": "off"
|
|
71
79
|
},
|
|
72
80
|
"parserOptions": {
|
|
73
81
|
"parser": "@typescript-eslint/parser"
|
package/public/config.ts
ADDED
|
Binary file
|