@saooti/octopus-sdk 37.0.5 → 37.0.7
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 +2 -2
- package/index.html +1 -0
- package/index.ts +21 -21
- package/package.json +26 -20
- package/public/css/fonts/icomoon.eot +0 -0
- package/public/css/fonts/icomoon.svg +1 -1
- package/public/css/fonts/icomoon.ttf +0 -0
- package/public/css/fonts/icomoon.woff +0 -0
- package/public/css/fonts/montserrat/Montserrat-Black.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-BlackItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Bold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-BoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraBold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraLight.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraLightItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Italic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Light.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-LightItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Medium.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-MediumItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Regular.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-SemiBold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-SemiBoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Thin.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ThinItalic.ttf +0 -0
- package/public/css/fonts/montserrat/style.css +28 -0
- package/public/css/fonts/style.css +5 -5
- package/src/App.vue +69 -60
- package/src/api/classicCrud.ts +12 -12
- package/src/api/initialize.ts +1 -1
- package/src/assets/bootstrap.scss +9 -0
- package/src/assets/general.scss +1 -1
- package/src/assets/share.scss +1 -1
- package/src/components/display/aggregator/RssSection.vue +3 -3
- package/src/components/display/categories/CategoryChooser.vue +73 -60
- package/src/components/display/categories/CategoryFilter.vue +134 -90
- package/src/components/display/categories/CategoryList.vue +76 -62
- package/src/components/display/comments/AddCommentModal.vue +44 -44
- package/src/components/display/comments/CommentBasicView.vue +38 -30
- package/src/components/display/comments/CommentInput.vue +122 -110
- package/src/components/display/comments/CommentItem.vue +144 -102
- package/src/components/display/comments/CommentList.vue +117 -85
- package/src/components/display/comments/CommentParentInfo.vue +18 -15
- package/src/components/display/comments/CommentPlayer.vue +39 -41
- package/src/components/display/comments/CommentSection.vue +68 -53
- package/src/components/display/edit/EditBox.vue +7 -7
- package/src/components/display/edit/EditBoxRadio.vue +3 -4
- package/src/components/display/edit/EditCommentBox.vue +34 -36
- package/src/components/display/emission/EmissionInlineList.vue +75 -63
- package/src/components/display/emission/EmissionItem.vue +47 -35
- package/src/components/display/emission/EmissionList.vue +111 -83
- package/src/components/display/emission/EmissionPlayerItem.vue +89 -89
- package/src/components/display/filter/AdvancedSearch.vue +81 -73
- package/src/components/display/filter/CategorySearchFilter.vue +27 -25
- package/src/components/display/filter/DateFilter.vue +38 -38
- package/src/components/display/filter/MonetizableFilter.vue +16 -14
- package/src/components/display/filter/ProductorSearch.vue +55 -47
- package/src/components/display/filter/RubriqueChoice.vue +42 -27
- package/src/components/display/filter/RubriqueFilter.vue +130 -85
- package/src/components/display/filter/SearchOrder.vue +16 -11
- package/src/components/display/list/ListPaginate.vue +72 -70
- package/src/components/display/list/PaginateParams.vue +29 -30
- package/src/components/display/list/PaginateSection.vue +210 -0
- package/src/components/display/list/SwiperList.vue +28 -32
- package/src/components/display/live/CountDown.vue +12 -14
- package/src/components/display/live/LiveHorizontalList.vue +60 -50
- package/src/components/display/live/LiveItem.vue +42 -26
- package/src/components/display/live/LiveList.vue +92 -65
- package/src/components/display/live/RadioCurrently.vue +47 -42
- package/src/components/display/live/RadioImage.vue +40 -42
- package/src/components/display/live/RadioItem.vue +15 -22
- package/src/components/display/live/RadioList.vue +24 -21
- package/src/components/display/live/RadioPlanning.vue +105 -68
- package/src/components/display/organisation/OrganisationChooser.vue +58 -42
- package/src/components/display/organisation/OrganisationChooserLight.vue +27 -19
- package/src/components/display/participant/ParticipantItem.vue +89 -76
- package/src/components/display/participant/ParticipantList.vue +90 -60
- package/src/components/display/playlist/PlaylistItem.vue +32 -35
- package/src/components/display/playlist/PlaylistList.vue +70 -52
- package/src/components/display/playlist/PodcastList.vue +61 -50
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +47 -38
- package/src/components/display/podcasts/AnimatorsItem.vue +17 -15
- package/src/components/display/podcasts/ParticipantDescription.vue +21 -22
- package/src/components/display/podcasts/PodcastFilterList.vue +28 -26
- package/src/components/display/podcasts/PodcastImage.vue +129 -138
- package/src/components/display/podcasts/PodcastInlineList.vue +33 -29
- package/src/components/display/podcasts/PodcastInlineListClassic.vue +91 -71
- package/src/components/display/podcasts/PodcastInlineListTemplate.vue +94 -85
- package/src/components/display/podcasts/PodcastItem.vue +96 -90
- package/src/components/display/podcasts/PodcastItemInfo.vue +63 -65
- package/src/components/display/podcasts/PodcastList.vue +115 -84
- package/src/components/display/podcasts/PodcastModuleBox.vue +95 -104
- package/src/components/display/podcasts/PodcastPlayBar.vue +45 -32
- package/src/components/display/podcasts/PodcastSwiperList.vue +65 -55
- package/src/components/display/podcasts/TagList.vue +33 -37
- package/src/components/display/rubriques/RubriqueChooser.vue +70 -51
- package/src/components/display/rubriques/RubriqueList.vue +117 -89
- package/src/components/display/sharing/PlayerParameters.vue +45 -42
- package/src/components/display/sharing/QrCode.vue +52 -46
- package/src/components/display/sharing/ShareButtons.vue +25 -27
- package/src/components/display/sharing/ShareButtonsIntern.vue +182 -155
- package/src/components/display/sharing/ShareDistribution.vue +101 -67
- package/src/components/display/sharing/SharePlayer.vue +207 -127
- package/src/components/display/sharing/SharePlayerColors.vue +15 -15
- package/src/components/display/sharing/SharePlayerRadio.vue +62 -39
- package/src/components/display/sharing/SharePlayerTypes.vue +93 -55
- package/src/components/display/sharing/SubscribeButtons.vue +83 -32
- package/src/components/display/studio/RecordingItemButton.vue +3 -3
- package/src/components/form/ClassicCheckbox.vue +32 -31
- package/src/components/form/ClassicDatePicker.vue +47 -49
- package/src/components/form/ClassicInputText.vue +99 -98
- package/src/components/form/ClassicLoading.vue +11 -14
- package/src/components/form/ClassicMultiselect.vue +125 -126
- package/src/components/form/ClassicRadio.vue +15 -18
- package/src/components/form/ClassicSearch.vue +17 -23
- package/src/components/form/ClassicSelect.vue +35 -27
- package/src/components/form/{Wysiwyg.vue → ClassicWysiwyg.vue} +94 -109
- package/src/components/misc/AcpmImage.vue +26 -0
- package/src/components/misc/ClassicAccordion.vue +69 -0
- package/src/components/misc/ClassicNav.vue +117 -0
- package/src/components/misc/ClassicPopover.vue +212 -0
- package/src/components/misc/{Spinner.vue → ClassicSpinner.vue} +14 -15
- package/src/components/misc/ErrorMessage.vue +9 -17
- package/src/components/misc/FooterSection.vue +198 -0
- package/src/components/misc/HomeDropdown.vue +67 -64
- package/src/components/misc/LeftMenu.vue +115 -79
- package/src/components/misc/ProgressBar.vue +36 -32
- package/src/components/misc/SnackBar.vue +169 -0
- package/src/components/misc/TopBar.vue +161 -115
- package/src/components/misc/modal/ClassicModal.vue +99 -103
- package/src/components/misc/modal/ClipboardModal.vue +21 -23
- package/src/components/misc/modal/MessageModal.vue +22 -28
- package/src/components/misc/modal/NewsletterModal.vue +139 -113
- package/src/components/misc/modal/QrCodeModal.vue +14 -17
- package/src/components/misc/modal/ShareModalPlayer.vue +44 -60
- package/src/components/misc/player/PlayerCompact.vue +47 -62
- package/src/components/misc/player/{Player.vue → PlayerComponent.vue} +54 -46
- package/src/components/misc/player/PlayerLarge.vue +66 -62
- package/src/components/misc/player/PlayerProgressBar.vue +40 -30
- package/src/components/misc/player/PlayerTimeline.vue +32 -36
- package/src/components/misc/player/radio/RadioHistory.vue +62 -59
- package/src/components/misc/player/radio/RadioProgressBar.vue +44 -35
- package/src/components/mixins/cookies.ts +11 -10
- package/src/components/mixins/displayMethods.ts +5 -4
- package/src/components/mixins/handle403.ts +9 -9
- package/src/components/mixins/imageProxy.ts +14 -7
- package/src/components/mixins/init.ts +31 -16
- package/src/components/mixins/orgaComputed.ts +7 -7
- package/src/components/mixins/organisationFilter.ts +36 -22
- package/src/components/mixins/player/playerComment.ts +46 -37
- package/src/components/mixins/player/playerDisplay.ts +122 -87
- package/src/components/mixins/player/playerLive.ts +65 -43
- package/src/components/mixins/player/playerLogic.ts +133 -88
- package/src/components/mixins/player/playerTranscript.ts +48 -30
- package/src/components/mixins/radio/fetchRadioData.ts +40 -23
- package/src/components/mixins/selenium.ts +2 -2
- package/src/components/mixins/tagOfMixins.ts +11 -11
- package/src/components/pages/CategoryPage.vue +43 -0
- package/src/components/pages/{Emission.vue → EmissionPage.vue} +98 -67
- package/src/components/pages/{Emissions.vue → EmissionsPage.vue} +51 -44
- package/src/components/pages/Error403Page.vue +20 -19
- package/src/components/pages/HomePage.vue +144 -0
- package/src/components/pages/LivesPage.vue +66 -0
- package/src/components/pages/PageNotFound.vue +33 -22
- package/src/components/pages/{Participant.vue → ParticipantPage.vue} +63 -49
- package/src/components/pages/{Participants.vue → ParticipantsPage.vue} +9 -9
- package/src/components/pages/PlaylistPage.vue +175 -0
- package/src/components/pages/{Playlists.vue → PlaylistsPage.vue} +16 -14
- package/src/components/pages/PodcastPage.vue +365 -0
- package/src/components/pages/PodcastsPage.vue +152 -0
- package/src/components/pages/RadioPage.vue +131 -0
- package/src/components/pages/RubriquePage.vue +45 -0
- package/src/components/pages/{Search.vue → SearchPage.vue} +19 -19
- package/src/helper/dom.ts +1 -1
- package/src/helper/duration.ts +10 -4
- package/src/helper/useEventListener.ts +7 -8
- package/src/i18n.ts +31 -30
- package/src/locale/de.ts +263 -257
- package/src/locale/educationen.ts +13 -13
- package/src/locale/educationfr.ts +1 -1
- package/src/locale/en.ts +323 -324
- package/src/locale/es.ts +325 -318
- package/src/locale/fr.ts +330 -324
- package/src/locale/it.ts +332 -328
- package/src/locale/messages.ts +9 -9
- package/src/locale/sl.ts +315 -319
- package/src/main.ts +28 -31
- package/src/router/router.ts +218 -198
- package/src/shims-tsx.d.ts +1 -1
- package/src/shims-vue.d.ts +1 -1
- package/src/stores/ApiStore.ts +44 -44
- package/src/stores/AuthStore.ts +24 -16
- package/src/stores/CommentStore.ts +13 -11
- package/src/stores/FilterStore.ts +25 -15
- package/src/stores/GeneralStore.ts +15 -15
- package/src/stores/ParamSdkStore.ts +179 -137
- package/src/stores/PlayerStore.ts +139 -125
- package/src/stores/class/adserver/adserverConfig.ts +1 -1
- package/src/stores/class/adserver/adserverOtherEmission.ts +9 -9
- package/src/stores/class/cartouchier/cartouche.ts +4 -4
- package/src/stores/class/cartouchier/cartouchier.ts +2 -2
- package/src/stores/class/conference/conference.ts +10 -9
- package/src/stores/class/conference/conferenceMessage.ts +2 -2
- package/src/stores/class/conference/conferenceParticipant.ts +1 -1
- package/src/stores/class/conference/studioCall.ts +6 -6
- package/src/stores/class/contract/contractOrganisation.ts +5 -5
- package/src/stores/class/ftp/ftpEmission.ts +9 -9
- package/src/stores/class/ftp/testFtpEmission.ts +4 -4
- package/src/stores/class/general/audioView.ts +19 -19
- package/src/stores/class/general/category.ts +1 -1
- package/src/stores/class/general/classicSelectType.ts +2 -3
- package/src/stores/class/general/customPlayer.ts +8 -8
- package/src/stores/class/general/emission.ts +20 -21
- package/src/stores/class/general/fetchParam.ts +8 -2
- package/src/stores/class/general/initState.ts +31 -31
- package/src/stores/class/general/interfacePageable.ts +13 -13
- package/src/stores/class/general/ituneCategory.ts +4 -4
- package/src/stores/class/general/listReturn.ts +12 -12
- package/src/stores/class/general/media.ts +7 -7
- package/src/stores/class/general/organisation.ts +9 -10
- package/src/stores/class/general/pageable.ts +10 -10
- package/src/stores/class/general/participant.ts +7 -7
- package/src/stores/class/general/player.ts +30 -28
- package/src/stores/class/general/playlist.ts +17 -19
- package/src/stores/class/general/podcast.ts +19 -19
- package/src/stores/class/general/sortPageable.ts +4 -4
- package/src/stores/class/general/soundcastCategory.ts +7 -7
- package/src/stores/class/ouestFrance/ofTag.ts +34 -34
- package/src/stores/class/ouestFrance/ofTagInfo.ts +9 -9
- package/src/stores/class/ouestFrance/ofTagPage.ts +7 -7
- package/src/stores/class/ouestFrance/ofTagSeo.ts +7 -7
- package/src/stores/class/ouestFrance/ofTagVente.ts +6 -6
- package/src/stores/class/ouestFrance/ofTagWithParents.ts +20 -20
- package/src/stores/class/radio/canal.ts +4 -4
- package/src/stores/class/radio/live.ts +6 -6
- package/src/stores/class/radio/mix.ts +16 -16
- package/src/stores/class/radio/playlistMedia.ts +7 -7
- package/src/stores/class/radio/recurrence.ts +54 -54
- package/src/stores/class/rss/rssEmission.ts +13 -13
- package/src/stores/class/rss/rssInfo.ts +7 -7
- package/src/stores/class/rubrique/rubriquage.ts +2 -2
- package/src/stores/class/rubrique/rubrique.ts +1 -1
- package/src/stores/class/stat/statArrayIncome.ts +5 -5
- package/src/stores/class/stat/statArrayObject.ts +26 -26
- package/src/stores/class/stat/statGraph.ts +6 -6
- package/src/stores/class/user/person.ts +4 -2
- package/src/stores/class/user/profile.ts +4 -2
- package/src/stores/class/user/userKeycloak.ts +4 -5
- package/src/components/display/list/Paginate.vue +0 -181
- package/src/components/misc/Accordion.vue +0 -78
- package/src/components/misc/Footer.vue +0 -165
- package/src/components/misc/Nav.vue +0 -119
- package/src/components/misc/Popover.vue +0 -193
- package/src/components/misc/Snackbar.vue +0 -168
- package/src/components/pages/Category.vue +0 -41
- package/src/components/pages/Home.vue +0 -125
- package/src/components/pages/Lives.vue +0 -64
- package/src/components/pages/Playlist.vue +0 -164
- package/src/components/pages/Podcast.vue +0 -307
- package/src/components/pages/Podcasts.vue +0 -146
- package/src/components/pages/Radio.vue +0 -122
- package/src/components/pages/Rubrique.vue +0 -42
package/README.md
CHANGED
|
@@ -492,7 +492,7 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
492
492
|
* 29.0.23 Eslint
|
|
493
493
|
* 29.0.24 Version stable vue3
|
|
494
494
|
* 29.0.25 Specific category does not display in correct order
|
|
495
|
-
* 29.0.26
|
|
495
|
+
* 29.0.26 SnackBar position
|
|
496
496
|
* 29.0.27 Petit cursor:pointer des familles
|
|
497
497
|
* 29.0.28 Petite couleur des familles
|
|
498
498
|
* 29.0.29 Amélioration Popover
|
|
@@ -617,7 +617,7 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
617
617
|
* 31.0.24 Amélioration accessibilité
|
|
618
618
|
* 31.0.25 Erreur audioUrl
|
|
619
619
|
* 31.0.26 Erreur 403 page expose
|
|
620
|
-
* 31.0.27
|
|
620
|
+
* 31.0.27 SnackBar chose holdtime
|
|
621
621
|
* 31.0.28 Mixins orgComputed
|
|
622
622
|
* 31.0.29 Changement css
|
|
623
623
|
* 31.0.30 Changement css
|
package/index.html
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
7
|
<link rel="icon" href="/favicon.ico">
|
|
8
8
|
<link rel="stylesheet" href="/css/fonts/style.css">
|
|
9
|
+
<link rel="stylesheet" href="/css/fonts/montserrat/style.css">
|
|
9
10
|
<title>octopus-library</title>
|
|
10
11
|
</head>
|
|
11
12
|
<body>
|
package/index.ts
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
//Pages
|
|
2
|
-
export const getLives = () => import("./src/components/pages/
|
|
3
|
-
export const getPodcast = () => import("./src/components/pages/
|
|
4
|
-
export const getPodcasts = () => import("./src/components/pages/
|
|
5
|
-
export const getEmission = () => import("./src/components/pages/
|
|
6
|
-
export const getEmissions = () => import("./src/components/pages/
|
|
7
|
-
export const getPlaylist = () => import("./src/components/pages/
|
|
8
|
-
export const getPlaylists = () => import("./src/components/pages/
|
|
9
|
-
export const getParticipant = () => import("./src/components/pages/
|
|
10
|
-
export const getParticipants = () => import("./src/components/pages/
|
|
11
|
-
export const getSearch = () => import("./src/components/pages/
|
|
12
|
-
export const getHome = () => import("./src/components/pages/
|
|
13
|
-
export const getCategory = () => import("./src/components/pages/
|
|
14
|
-
export const getRubrique = () => import("./src/components/pages/
|
|
2
|
+
export const getLives = () => import("./src/components/pages/LivesPage.vue");
|
|
3
|
+
export const getPodcast = () => import("./src/components/pages/PodcastPage.vue");
|
|
4
|
+
export const getPodcasts = () => import("./src/components/pages/PodcastsPage.vue");
|
|
5
|
+
export const getEmission = () => import("./src/components/pages/EmissionPage.vue");
|
|
6
|
+
export const getEmissions = () => import("./src/components/pages/EmissionsPage.vue");
|
|
7
|
+
export const getPlaylist = () => import("./src/components/pages/PlaylistPage.vue");
|
|
8
|
+
export const getPlaylists = () => import("./src/components/pages/PlaylistsPage.vue");
|
|
9
|
+
export const getParticipant = () => import("./src/components/pages/ParticipantPage.vue");
|
|
10
|
+
export const getParticipants = () => import("./src/components/pages/ParticipantsPage.vue");
|
|
11
|
+
export const getSearch = () => import("./src/components/pages/SearchPage.vue");
|
|
12
|
+
export const getHome = () => import("./src/components/pages/HomePage.vue");
|
|
13
|
+
export const getCategory = () => import("./src/components/pages/CategoryPage.vue");
|
|
14
|
+
export const getRubrique = () => import("./src/components/pages/RubriquePage.vue");
|
|
15
15
|
export const getError403Page = () => import("./src/components/pages/Error403Page.vue");
|
|
16
|
-
export const getRadio = () => import("./src/components/pages/
|
|
16
|
+
export const getRadio = () => import("./src/components/pages/RadioPage.vue");
|
|
17
17
|
|
|
18
18
|
//Misc
|
|
19
|
-
export const getAccordion = () => import("./src/components/misc/
|
|
20
|
-
export const getNav = () => import("./src/components/misc/
|
|
19
|
+
export const getAccordion = () => import("./src/components/misc/ClassicAccordion.vue");
|
|
20
|
+
export const getNav = () => import("./src/components/misc/ClassicNav.vue");
|
|
21
21
|
export const getProgressBar = () => import("./src/components/misc/ProgressBar.vue");
|
|
22
|
-
export const getSpinner = () => import("./src/components/misc/
|
|
22
|
+
export const getSpinner = () => import("./src/components/misc/ClassicSpinner.vue");
|
|
23
23
|
export const getFooter = () => import("./src/components/misc/Footer.vue");
|
|
24
24
|
export const getLeftMenu = () => import("./src/components/misc/LeftMenu.vue");
|
|
25
|
-
export const getPlayer = () => import("./src/components/misc/player/
|
|
26
|
-
export const getSnackbar = () => import("./src/components/misc/
|
|
25
|
+
export const getPlayer = () => import("./src/components/misc/player/PlayerComponent.vue");
|
|
26
|
+
export const getSnackbar = () => import("./src/components/misc/SnackBar.vue");
|
|
27
27
|
export const getTopBar = () => import("./src/components/misc/TopBar.vue");
|
|
28
28
|
export const getHomeDropdown = () => import("./src/components/misc/HomeDropdown.vue");
|
|
29
29
|
export const getMessageModal = () => import("./src/components/misc/modal/MessageModal.vue");
|
|
30
30
|
export const getErrorMessage = () => import("./src/components/misc/ErrorMessage.vue");
|
|
31
|
-
export const getPopover = () => import("./src/components/misc/
|
|
31
|
+
export const getPopover = () => import("./src/components/misc/ClassicPopover.vue");
|
|
32
32
|
export const getClassicModal = () => import("./src/components/misc/modal/ClassicModal.vue");
|
|
33
33
|
|
|
34
34
|
|
|
@@ -65,7 +65,7 @@ export const getClassicRadio = () => import("./src/components/form/ClassicRadio.
|
|
|
65
65
|
export const getClassicLoading = () => import("./src/components/form/ClassicLoading.vue");
|
|
66
66
|
export const getClassicSelect = () => import("./src/components/form/ClassicSelect.vue");
|
|
67
67
|
export const getClassicDatePicker = () => import("./src/components/form/ClassicDatePicker.vue");
|
|
68
|
-
export const getPaginate = () => import("./src/components/display/list/
|
|
68
|
+
export const getPaginate = () => import("./src/components/display/list/PaginateSection.vue");
|
|
69
69
|
export const getPaginateParams = () => import("./src/components/display/list/PaginateParams.vue");
|
|
70
70
|
export const getListPaginate = () => import("./src/components/display/list/ListPaginate.vue");
|
|
71
71
|
export const getClassicMultiselect = () => import("./src/components/form/ClassicMultiselect.vue");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saooti/octopus-sdk",
|
|
3
|
-
"version": "37.0.
|
|
3
|
+
"version": "37.0.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Javascript SDK for using octopus",
|
|
6
6
|
"author": "Saooti",
|
|
@@ -18,45 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@popperjs/core": "^2.11.8",
|
|
20
20
|
"@saooti/octopus-api": "^0.34.3",
|
|
21
|
-
"@tiptap/extension-link": "^2.0.
|
|
22
|
-
"@tiptap/
|
|
23
|
-
"@tiptap/
|
|
24
|
-
"@tiptap/starter-kit": "^2.0.
|
|
25
|
-
"@tiptap/vue-3": "^2.0.
|
|
21
|
+
"@tiptap/extension-link": "^2.0.4",
|
|
22
|
+
"@tiptap/extension-underline": "^2.0.4",
|
|
23
|
+
"@tiptap/pm": "^2.0.4",
|
|
24
|
+
"@tiptap/starter-kit": "^2.0.4",
|
|
25
|
+
"@tiptap/vue-3": "^2.0.4",
|
|
26
26
|
"@vue/cli": "^5.0.8",
|
|
27
27
|
"@vue/compat": "^3.3.4",
|
|
28
28
|
"autoprefixer": "^10.4.14",
|
|
29
29
|
"axios": "^1.4.0",
|
|
30
30
|
"dayjs": "^1.11.9",
|
|
31
|
+
"eslint-config-prettier": "^8.8.0",
|
|
32
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
31
33
|
"express": "^4.18.2",
|
|
32
|
-
"hls.js": "^1.4.
|
|
33
|
-
"humanize-duration": "^3.
|
|
34
|
-
"jest": "^29.
|
|
34
|
+
"hls.js": "^1.4.9",
|
|
35
|
+
"humanize-duration": "^3.29.0",
|
|
36
|
+
"jest": "^29.6.1",
|
|
35
37
|
"pinia": "^2.1.4",
|
|
36
38
|
"qrcode.vue": "^3.4.0",
|
|
37
39
|
"sass": "^1.63.6",
|
|
38
40
|
"sonarqube-scanner": "^3.0.0",
|
|
39
|
-
"swiper": "^
|
|
41
|
+
"swiper": "^10.0.4",
|
|
40
42
|
"v-calendar": "^3.0.3",
|
|
41
|
-
"vite": "^4.
|
|
43
|
+
"vite": "^4.4.4",
|
|
42
44
|
"vue": "^3.3.4",
|
|
43
45
|
"vue-i18n": "^9.2.2",
|
|
44
46
|
"vue-recaptcha": "^2.0.3",
|
|
45
|
-
"vue-router": "^4.2.
|
|
47
|
+
"vue-router": "^4.2.4",
|
|
46
48
|
"vue-select": "^4.0.0-beta.6",
|
|
47
49
|
"vue3-lazyload": "^0.3.6",
|
|
48
50
|
"vue3-swatches": "^1.2.3"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"@types/vue-select": "^3.16.2",
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
53
|
-
"@typescript-eslint/parser": "^
|
|
54
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
55
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
54
56
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
55
57
|
"@vue/compiler-sfc": "^3.3.4",
|
|
56
|
-
"@vue/eslint-config-typescript": "^
|
|
57
|
-
"eslint": "^8.
|
|
58
|
-
"eslint-plugin-vue": "^
|
|
59
|
-
"typescript": "^
|
|
58
|
+
"@vue/eslint-config-typescript": "^11.0.3",
|
|
59
|
+
"eslint": "^8.45.0",
|
|
60
|
+
"eslint-plugin-vue": "^9.15.1",
|
|
61
|
+
"typescript": "^5.1.6"
|
|
60
62
|
},
|
|
61
63
|
"eslintConfig": {
|
|
62
64
|
"root": true,
|
|
@@ -71,14 +73,18 @@
|
|
|
71
73
|
"plugin:vue/base",
|
|
72
74
|
"plugin:vue/vue3-recommended",
|
|
73
75
|
"plugin:vue/vue3-essential",
|
|
74
|
-
"plugin:vue/vue3-strongly-recommended"
|
|
76
|
+
"plugin:vue/vue3-strongly-recommended",
|
|
77
|
+
"prettier",
|
|
78
|
+
"plugin:prettier/recommended"
|
|
75
79
|
],
|
|
80
|
+
"plugins": ["prettier"],
|
|
76
81
|
"rules": {
|
|
77
82
|
"no-console": "off",
|
|
78
83
|
"no-debugger": "off",
|
|
79
84
|
"@typescript-eslint/ban-ts-ignore": "off",
|
|
80
85
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
81
|
-
"no-async-promise-executor": "off"
|
|
86
|
+
"no-async-promise-executor": "off",
|
|
87
|
+
"prettier/prettier": ["error", {}]
|
|
82
88
|
},
|
|
83
89
|
"parserOptions": {
|
|
84
90
|
"parser": "@typescript-eslint/parser"
|
|
Binary file
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
<glyph unicode="" glyph-name="website" horiz-adv-x="819" d="M777.161 539.073c0 0 0 0 0 0v0c-43.85 168.654-192.264 290.083-367.663 290.083s-323.814-121.43-367.663-283.337c0 0 0-3.373 0-3.373-6.747-30.357-10.119-60.715-10.119-91.073 0-37.104 6.747-77.581 16.866-111.311 0 0 0 0 0 0 47.223-158.534 192.264-273.218 360.918-273.218s310.322 111.311 360.918 263.099c0 0 0 0 0 3.373 10.119 37.104 16.866 74.207 16.866 114.684 0 30.357-3.373 60.715-10.119 91.073zM675.969 640.264c20.238-30.357 37.104-64.088 47.223-97.819-20.238-23.611-70.834-50.596-155.16-67.461 0 43.85-6.747 91.073-13.492 131.55 47.223 6.747 87.7 20.238 121.43 33.73zM642.239 680.741c-26.985-10.119-60.715-16.866-97.819-23.611-10.119 40.477-26.985 77.581-43.85 107.938 53.969-16.866 104.564-47.223 141.668-84.326zM301.56 464.866v0c0 50.596 6.747 94.446 13.492 134.922 30.357-3.373 64.088-6.747 97.819-6.747s64.088 3.373 94.446 6.747c6.747-40.477 13.492-84.326 13.492-134.922-74.207-6.747-148.415-6.747-219.249 0zM517.436 414.27c-3.373-50.596-6.747-97.819-16.866-138.295-64.088-6.747-124.803-6.747-185.518 0-6.747 40.477-13.492 87.7-13.492 138.295 37.104-3.373 74.207-6.747 111.311-6.747 33.73 0 70.834 3.373 104.564 6.747zM409.498 778.56c26.985 0 60.715-47.223 84.326-128.177-53.969-6.747-114.684-6.747-168.654 0 23.611 80.954 57.343 128.177 84.326 128.177zM318.425 765.068v0c-16.866-30.357-33.73-67.461-43.85-107.938-37.104 6.747-70.834 13.492-97.819 23.611 40.477 37.104 87.7 67.461 141.668 84.326zM143.026 640.264c33.73-13.492 74.207-23.611 121.43-33.73-6.747-43.85-13.492-87.7-13.492-131.55-74.207 13.492-131.55 40.477-155.16 67.461 10.119 33.73 26.985 67.461 47.223 97.819zM78.938 448v0c0 13.492 0 23.611 3.373 37.104 37.104-26.985 94.446-50.596 165.28-60.715 0-47.223 6.747-94.446 13.492-138.295-80.954 13.492-141.668 40.477-168.654 70.834-6.747 26.985-13.492 57.343-13.492 91.073zM132.907 269.228v0c37.104-16.866 84.326-30.357 138.295-37.104 0 0 3.373 0 3.373 0 10.119-37.104 23.611-70.834 40.477-97.819-74.207 20.238-138.295 70.834-182.145 134.922zM409.498 120.814c-23.611 0-57.343 37.104-77.581 107.938 26.985-3.373 53.969-3.373 77.581-3.373 26.985 0 50.596 0 77.581 3.373-20.238-70.834-53.969-107.938-77.581-107.938zM500.571 130.932c16.866 26.985 30.357 60.715 40.477 97.819h6.747c53.969 6.747 97.819 20.238 138.295 37.104-43.85-60.715-107.938-111.311-185.518-134.922zM723.192 353.554v0c-26.985-30.357-91.073-53.969-168.654-67.461 6.747 43.85 13.492 91.073 13.492 138.295 70.834 13.492 128.177 33.73 168.654 60.715 0-13.492 3.373-23.611 3.373-37.104 0-33.73-6.747-64.088-16.866-94.446z" />
|
|
68
68
|
<glyph unicode="" glyph-name="youtube" d="M969.026 634.51c0 0-9.111 64.326-37.174 92.571-35.534 37.174-75.26 37.357-93.483 39.543-130.475 9.476-326.369 9.476-326.369 9.476h-0.364c0 0-195.894 0-326.369-9.476-18.223-2.187-57.948-2.369-93.483-39.543-28.063-28.245-36.992-92.571-36.992-92.571s-9.294-75.442-9.294-151.066v-70.704c0-75.442 9.294-151.066 9.294-151.066s9.111-64.326 36.992-92.571c35.534-37.174 82.184-35.899 102.958-39.908 74.713-7.107 317.258-9.294 317.258-9.294s196.076 0.364 326.551 9.658c18.223 2.187 57.948 2.369 93.483 39.543 28.063 28.245 37.174 92.571 37.174 92.571s9.294 75.442 9.294 151.066v70.704c-0.182 75.442-9.476 151.066-9.476 151.066v0zM415.42 326.91v262.225l252.020-131.568-252.020-130.657z" />
|
|
69
69
|
<glyph unicode="" glyph-name="linktree" horiz-adv-x="838" d="M350.525 282.191h139.629v-313.975h-139.629v313.975zM811.801 603.453h-237.446l168.975 159.96-93.022 94.94-160.727-164.371v233.802h-139.629v-233.994l-160.727 164.371-93.214-94.749 168.975-159.96h-238.79v-132.15h238.79l-169.742-164.563 93.214-92.638 230.542 230.925 230.542-230.925 93.022 92.638-169.742 164.563h238.982z" />
|
|
70
|
-
<glyph unicode="" glyph-name="amazon-music" horiz-adv-x="5120" d="
|
|
70
|
+
<glyph unicode="" glyph-name="amazon-music" horiz-adv-x="5120" d="M1572.664 690.329v62.456c0 8.746 6.245 14.991 14.991 16.237h272.296c8.746 0 14.991-6.245 14.991-14.991 0 0 0 0 0 0s0-1.248 0-1.248v-52.464c-3.745-14.991-9.99-27.484-19.982-38.717l-141.147-204.848c53.711 2.502 107.42-8.746 154.883-33.729 8.746-4.997 13.737-13.737 13.737-23.732v-67.448c0-8.746-6.245-14.991-13.737-14.991-2.502 0-3.745 0-6.245 1.248-89.933 47.464-197.355 47.464-287.285 0-9.99-4.997-18.737 4.997-18.737 14.991v62.456c-1.248 14.991 2.502 29.977 9.99 42.469l163.629 238.577h-141.147c-8.746-1.248-16.237 4.997-16.237 13.737v0 0 0zM467.237 316.856c-7.492 0-14.991 6.245-14.991 14.991v437.178c0 8.746 7.492 16.237 16.237 16.237 0 0 0 0 0 0h79.938c8.746 0 14.991-6.245 16.237-14.991v-57.455h1.248c14.991 49.964 61.204 82.437 112.42 81.193 53.711 0 87.438-26.227 111.163-81.193 24.982 64.953 98.673 97.428 163.629 72.446 21.237-7.492 39.974-21.237 53.711-38.717 27.484-36.224 21.237-89.933 21.237-137.399v-277.294c0-8.746-7.492-16.237-16.237-16.237 0 0 0 0 0 0h-86.183c-8.746 0-14.991 7.492-14.991 14.991v233.574c1.248 27.484 0 54.959-2.502 82.437-3.745 23.732-26.227 41.219-49.964 37.472v0c-22.482-1.248-42.469-14.991-51.209-36.224-7.492-27.484-9.99-56.209-7.492-83.688v-232.33c0-8.746-7.492-16.237-16.237-16.237 0 0 0 0 0 0h-86.183c-8.746 0-14.991 7.492-14.991 14.991v233.574c0 48.714 7.492 121.16-52.464 121.16-61.204 0-58.708-69.945-58.708-121.16v-232.33c0-8.746-7.492-16.237-16.237-16.237 0 0 0 0 0 0s0 0-1.248 0h-86.183v1.248zM2101.024 792.754c127.404 0 196.102-106.175 196.102-242.32 0-131.154-76.192-234.825-196.102-234.825-124.909 0-193.605 106.175-193.605 239.821s68.701 237.32 193.605 237.32v0 0zM2033.574 569.169c0-52.464 0-164.874 67.448-164.874s69.945 89.933 69.945 146.139c1.248 38.717-2.502 76.192-12.492 113.665-4.997 26.227-29.977 43.719-56.209 41.219-64.953 0-68.701-83.688-68.701-136.146zM2465.754 316.856h-78.691c-7.492 0-13.737 7.492-13.737 14.991v437.178c1.248 8.746 7.492 14.991 14.991 13.737h73.693c6.245 0 12.492-4.997 13.737-12.492v-66.201h1.248c22.482 59.954 53.711 87.438 108.67 87.438 37.472 2.502 72.446-17.487 92.428-51.209 21.237-34.974 21.237-93.683 21.237-136.146v-276.046c-1.248-7.492-7.492-13.737-14.991-13.737h-79.938c-7.492 0-13.737 6.245-13.737 13.737v238.577c0 48.714 4.997 117.41-49.964 117.41-19.982-1.248-37.472-14.991-44.964-34.974-9.99-26.227-13.737-54.959-12.492-82.437v-234.825c-1.248-8.746-8.746-16.237-17.487-14.991v0 0 0zM1437.767 323.103c-4.997-4.997-13.737-4.997-19.982-2.502-18.737 14.991-34.974 33.729-47.464 56.209-33.729-41.219-84.938-63.7-138.649-61.204-72.446 0-126.157 43.719-126.157 129.901-1.248 59.954 33.729 113.665 89.933 136.146 46.219 19.982 109.92 23.732 158.629 28.727v11.242c2.502 21.237-1.248 41.219-9.99 59.954-11.242 14.991-29.977 22.482-47.464 21.237-32.472 2.502-61.204-18.737-67.448-49.964-1.248-7.492-7.492-13.737-14.991-14.991l-81.193 8.746c-7.492 1.248-13.737 9.99-11.242 17.487 18.737 97.428 107.42 127.404 188.611 127.404 46.219 1.248 89.933-13.737 126.157-41.219 41.219-37.472 37.472-88.682 37.472-143.644v-129.901c0-28.727 11.242-56.209 31.229-77.443 6.245-6.245 6.245-16.237 0-22.482-21.237-12.492-51.209-38.717-67.448-53.711v0 0zM1355.323 525.45v17.487c-61.204 0-124.909-12.492-124.909-79.938 0-34.974 18.737-57.455 51.209-57.455 24.982 1.248 47.464 14.991 58.708 36.224 12.492 24.982 17.487 53.711 14.991 83.688v0zM332.34 323.103c-4.997-4.997-13.737-4.997-19.982-2.502-18.737 14.991-34.974 34.974-47.464 56.209-33.729-41.219-84.938-63.7-138.649-59.954-71.198 0-126.157 42.469-126.157 129.901-2.502 59.954 33.729 113.665 89.933 136.146 44.964 19.982 108.67 23.732 157.384 28.727v11.242c2.502 21.237-1.248 41.219-9.99 59.954-11.242 14.991-28.727 22.482-47.464 21.237-31.229 2.502-59.954-18.737-67.448-49.964-1.248-7.492-6.245-13.737-14.991-14.991l-81.193 8.746c-7.492 1.248-12.492 9.99-11.242 17.487 18.737 98.673 107.42 127.404 187.36 127.404 46.219 1.248 89.933-12.492 126.157-41.219 41.219-37.472 37.472-88.682 37.472-143.644v-129.901c0-28.727 11.242-56.209 31.229-77.443 6.245-6.245 6.245-14.991 0-21.237v0c-17.487-14.991-48.714-41.219-64.953-56.209v0 0zM249.899 541.687c-61.204 0-124.909-12.492-124.909-79.938 0-34.974 18.737-57.455 51.209-57.455 24.982 1.248 47.464 14.991 57.455 36.224 13.737 26.227 18.737 54.959 16.237 84.938v16.237zM1098.019-47.876c-263.556-1.248-518.364 101.173-714.472 288.536-14.991 13.737-1.248 33.729 16.237 22.482 218.585-131.154 464.654-201.103 716.967-199.85 187.36 1.248 372.223 41.219 545.842 117.41 26.227 12.492 48.714-18.737 22.482-38.717-159.884-123.655-389.713-189.857-587.060-189.857zM1746.285 216.927c-19.982 26.227-136.146 12.492-188.611 6.245-16.237-1.248-18.737 12.492-3.745 22.482 92.428 66.201 243.565 47.464 261.057 24.982s-4.997-176.121-91.183-249.81c-13.737-11.242-26.227-4.997-19.982 9.99 18.737 48.714 62.456 159.884 42.469 186.111v0zM4409.307 389.304c16.237 11.242 24.982 29.977 24.982 48.714 0 12.492-4.997 26.227-13.737 34.974-14.991 12.492-33.729 21.237-52.464 26.227l-78.691 28.727c-68.701 23.732-102.423 66.201-102.423 123.655-1.248 36.224 16.237 71.198 46.219 93.683 34.974 24.982 78.691 37.472 122.41 34.974 39.974 0 79.938-7.492 117.41-19.982 6.245-1.248 11.242-4.997 16.237-8.746 3.745-4.997 4.997-11.242 4.997-17.487v-23.732c0-9.99-3.745-16.237-12.492-16.237-7.492 0-14.991 2.502-21.237 4.997-32.472 8.746-66.201 13.737-99.93 13.737-58.708 0-88.682-18.737-88.682-57.455-1.248-13.737 4.997-27.484 14.991-36.224 17.487-12.492 37.472-22.482 58.708-28.727l73.693-26.227c28.727-9.99 56.209-27.484 77.443-48.714 16.237-19.982 24.982-46.219 24.982-72.446 1.248-38.717-16.237-76.192-48.714-99.93-37.472-26.227-83.688-39.974-131.154-37.472-47.464-1.248-94.928 7.492-139.894 24.982-6.245 2.502-11.242 4.997-14.991 9.99-2.502 4.997-4.997 11.242-3.745 17.487v24.982c0 9.99 3.745 16.237 11.242 16.237 7.492-1.248 16.237-2.502 23.732-4.997 41.219-12.492 83.688-18.737 126.157-18.737 19.982-4.997 44.964 1.248 64.953 13.737v0 0zM4002.108 762.775c-1.248 8.746 4.997 17.487 13.737 18.737 1.248 0 2.502 0 3.745 0h52.464c8.746 1.248 16.237-4.997 17.487-13.737 0 0 0 0 0 0 0-1.248 0-2.502 0-4.997v-425.932c1.248-8.746-4.997-17.487-13.737-18.737-1.248 0-2.502 0-4.997 0h-36.224c-4.997 0-9.99 1.248-13.737 3.745-3.745 3.745-6.245 8.746-7.492 13.737l-6.245 32.472c-48.714-39.974-108.67-61.204-172.376-63.7-36.224-2.502-72.446 11.242-98.673 36.224-23.732 28.727-36.224 66.201-33.729 103.675v318.512c-1.248 8.746 4.997 17.487 13.737 18.737 1.248 0 2.502 0 3.745 0h52.464c8.746 1.248 16.237-4.997 17.487-13.737 0-1.248 0-2.502 0-4.997v-289.786c-2.502-26.227 4.997-51.209 18.737-72.446 14.991-17.487 37.472-26.227 59.954-23.732 46.219 1.248 92.428 16.237 129.901 43.719l3.745 342.247zM3518.723 316.856c-8.746-1.248-17.487 4.997-18.737 13.737 0 0 0 0 0 0 0 1.248 0 2.502 0 4.997v294.781c1.248 23.732-3.745 47.464-17.487 67.448-13.737 14.991-33.729 23.732-54.959 21.237-47.464-1.248-93.683-14.991-133.649-41.219 0-4.997 0-8.746 0-13.737v-331.004c1.248-8.746-4.997-17.487-13.737-18.737-1.248 0-2.502 0-4.997 0h-53.711c-8.746-1.248-17.487 4.997-18.737 13.737 0 0 0 0 0 0 0 1.248 0 2.502 0 4.997v297.276c1.248 23.732-3.745 47.464-17.487 67.448-13.737 14.991-33.729 23.732-54.959 21.237-47.464 0-93.683-13.737-132.402-39.974v-344.742c1.248-8.746-4.997-17.487-13.737-18.737-1.248 0-2.502 0-4.997 0h-53.711c-8.746-1.248-17.487 4.997-17.487 13.737 0 1.248 0 2.502 0 4.997v427.183c-1.248 8.746 4.997 16.237 13.737 18.737 1.248 0 2.502 0 4.997 0h39.974c4.997 0 9.99-1.248 13.737-3.745 3.745-3.745 6.245-8.746 7.492-13.737l4.997-28.727c48.714 37.472 108.67 57.455 169.874 59.954 56.209 0 93.683-21.237 114.915-64.953 51.209 39.974 113.665 62.456 179.866 64.953 34.974 2.502 69.945-11.242 96.178-34.974 23.732-28.727 36.224-64.953 33.729-101.173v-321.015c1.248-8.746-4.997-17.487-13.737-18.737-1.248 0-2.502 0-4.997 0l-49.964-1.248zM4907.687 667.843c-22.482-24.982-33.729-66.201-33.729-122.41v-11.242c0-54.959 11.242-94.928 33.729-119.91 28.727-27.484 67.448-42.469 106.175-38.717 27.484 0 54.959 4.997 81.193 12.492 4.997 1.248 8.746 2.502 13.737 2.502 7.492 0 11.242-6.245 11.242-17.487v-23.732c0-6.245-1.248-12.492-3.745-17.487-3.745-4.997-8.746-7.492-14.991-9.99-32.472-13.737-67.448-19.982-102.423-18.737-71.198 0-124.909 19.982-162.379 61.204-37.472 39.974-56.209 99.93-56.209 176.121 0 77.443 18.737 134.902 57.455 177.364 43.719 43.719 102.423 66.201 163.629 62.456 32.472 0 64.953-6.245 94.928-17.487 4.997-1.248 9.99-4.997 13.737-8.746 2.502-4.997 4.997-11.242 3.745-18.737v-23.732c0-12.492-3.745-17.487-11.242-17.487-4.997 0-9.99 1.248-14.991 2.502-23.732 7.492-49.964 11.242-74.947 11.242-46.219-1.248-82.437-14.991-104.918-39.974v0 0zM4676.607 755.28c8.746 1.248 16.237-4.997 17.487-13.737 0-1.248 0-2.502 0-3.745v-415.942c1.248-8.746-4.997-16.237-13.737-17.487-1.248 0-2.502 0-4.997 0h-52.464c-8.746-1.248-16.237 4.997-17.487 13.737 0 0 0 0 0 0 0 1.248 0 2.502 0 3.745v415.942c-1.248 8.746 4.997 16.237 12.492 17.487 1.248 0 2.502 0 4.997 0h53.711zM4691.6 928.9c19.982-23.732 19.982-58.708 0-82.437-23.732-19.982-58.708-19.982-82.437 0-19.982 23.732-19.982 58.708 0 82.437 23.732 19.982 58.708 19.982 82.437 0z" />
|
|
71
71
|
<glyph unicode="" glyph-name="amzn" horiz-adv-x="1206" d="M341.49 226.39c19.355-16.609 42.326-28.865 66.771-36.098 20.226-7.032 41.723-9.175 63.021-10.314 31.544 0.067 63.556 0.804 94.296 8.572 28.865 6.764 55.922 19.958 80.299 36.701 22.302 15.872 42.46 34.557 61.949 53.711 9.242-13.193 17.948-26.722 27.592-39.647 13.863-18.149 30.539-33.955 48.086-48.421 5.96-5.291 14.6-7.099 22.369-6.027 7.367 0.938 13.327 5.894 18.752 10.582 33.352 29.535 67.508 58.132 101.529 86.929 9.711 8.238 7.836 23.239 1.205 32.816-8.505 11.988-17.614 23.641-25.851 35.897-11.653 17.011-20.493 36.165-24.311 56.524-4.353 20.694-3.349 41.924-3.483 62.954 0 63.757 0 127.447 0 191.205 0.067 33.687 0.737 67.508-2.411 101.128-2.813 29.468-9.778 59.002-24.177 85.121-16.207 29.736-41.991 53.444-71.191 70.187-19.623 11.586-41.188 19.288-62.82 25.985-43.264 12.189-88.604 16.676-133.408 13.863-27.258-1.005-54.448-4.889-80.902-10.916-49.492-11.72-97.913-33.486-134.613-69.45-35.16-33.687-58.132-79.295-66.302-127.113-1.674-7.903 0.603-16.81 6.965-22.034 4.621-3.616 10.247-6.563 16.274-6.965 40.585-4.42 81.17-9.041 121.822-13.060 4.353-0.469 8.84-1.741 13.126 0 10.916 3.081 17.614 13.796 19.824 24.378 3.75 18.484 12.39 36.098 25.784 49.492 20.493 20.493 49.559 31.075 78.223 31.745 25.315 1.607 52.104-4.956 71.727-21.632 16.609-14.064 24.713-35.562 27.191-56.725 2.947-24.378 1.406-48.956 1.741-73.468-58.667-6.429-117.804-10.515-175.734-22.436-38.174-7.769-76.214-18.752-110.303-37.973-31.544-17.748-59.739-42.125-80.098-72.196-25.114-36.232-37.973-80.031-39.848-123.831-0.469-32.347 1.942-65.231 12.189-96.105 10.314-32.013 28.865-61.614 54.716-83.38zM475.701 429.918c2.009 28.262 12.926 56.658 33.821 76.281 19.958 19.489 46.612 30.338 73.267 37.035 31.879 7.702 64.829 9.51 97.578 9.979-0.134-33.821 1.339-67.776-2.411-101.395-2.88-26.186-11.184-51.702-24.378-74.54-10.849-18.618-25.918-34.825-44.335-46.144-18.417-10.381-39.915-16.274-61.078-13.193-24.445 1.808-46.88 17.011-58.6 38.308-12.591 22.235-15.002 48.555-13.863 73.669zM1205.159 182.256c-0.804 4.353-1.875 9.376-6.027 11.854-12.323 7.769-27.124 10.18-41.322 12.122-21.096 2.813-42.594 3.215-63.757 1.005-31.142-3.014-62.418-10.113-89.876-25.047-7.233-4.152-14.801-8.104-20.56-14.198-3.148-3.215-4.621-9.242-0.737-12.457 3.282-2.009 7.434-1.339 11.117-1.072 27.525 3.282 55.118 6.563 82.911 6.898 15.337 0.804 30.74 0.134 45.943-2.21 6.965-1.473 14.131-3.416 19.891-7.769 6.228-4.889 6.965-13.528 7.032-20.828-0.402-16.81-4.688-33.151-9.309-49.224-7.903-26.521-17.815-52.372-28.128-78.089-1.54-4.353-4.152-9.175-2.076-13.863 1.473-3.215 5.626-3.349 8.639-3.014 5.425 1.005 9.175 5.492 13.060 8.974 20.627 18.819 36.366 42.527 47.952 67.843 11.586 24.646 19.623 50.966 23.909 77.888 2.009 13.595 3.416 27.525 1.339 41.188zM1072.889 117.561c-38.643-15.471-77.553-30.539-117.469-42.393-62.351-18.35-125.84-33.084-190.401-40.987-78.826-10.849-158.79-12.591-238.085-6.831-33.352 2.344-66.503 6.764-99.52 11.586-17.681 2.545-35.227 6.496-52.841 9.778-31.41 5.827-62.217 14.265-93.024 22.57-88.872 26.119-175.265 61.413-255.565 107.758-5.827 3.215-12.457 7.903-19.288 4.688-4.152-2.009-6.094-6.898-4.956-11.184 0.938-5.224 5.693-8.305 9.309-11.653 85.657-76.415 186.249-135.886 294.676-173.658 29.066-10.782 59.136-18.417 89.14-26.186 48.019-11.117 96.908-18.082 146.066-21.766 34.491-1.808 69.115-3.148 103.672-0.804 34.29 1.005 68.378 5.96 102.266 10.983 72.062 12.39 142.985 32.213 210.091 61.413 46.478 19.757 90.814 44.603 131.801 74.138 6.764 4.42 13.193 12.256 10.849 20.895-2.813 11.050-16.743 15.604-26.722 11.653z" />
|
|
72
72
|
<glyph unicode="" glyph-name="spotify" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-227.84 512-512 512zM747.562 220.16c-10.24-15.318-28.16-20.48-43.562-10.24-120.32 74.24-271.36 89.644-450.604 48.682-17.836-5.206-33.236 7.636-38.356 22.996-5.12 17.962 7.68 33.28 23.040 38.4 194.56 43.562 363.52 25.6 496.64-56.32 17.92-7.68 20.438-28.116 12.842-43.52zM809.004 360.96c-12.842-17.92-35.884-25.6-53.846-12.8-138.198 84.48-348.118 110.080-509.396 58.88-20.438-5.12-43.52 5.12-48.64 25.6s5.12 43.562 25.6 48.682c186.88 56.276 417.28 28.074 576-69.164 15.404-7.722 23.040-33.28 10.284-51.2zM814.124 504.32c-163.884 97.28-437.802 107.52-593.962 58.836-25.6-7.638-51.2 7.724-58.88 30.762-7.68 25.644 7.68 51.2 30.72 58.924 181.76 53.76 481.28 43.52 670.764-69.164 22.996-12.8 30.678-43.52 17.876-66.56-12.756-17.964-43.52-25.558-66.518-12.8z" />
|
|
73
73
|
<glyph unicode="" glyph-name="podcast" d="M509.026-64.001s112.341 0 112.341 332.548c0 61.909-50.347 112.343-112.343 112.343s-112.385-50.433-112.385-112.343c0-332.548 112.385-332.548 112.385-332.548zM646.842 49.323c4.908 19.072 8.746 38.23 11.732 57.645l2.26 15.36c4.908 2.134 9.812 4.182 14.764 6.4 77.997 35.328 143.66 95.703 185.516 170.37 19.072 34.26 33.152 71.255 41.515 109.741 9.684 43.009 12.16 87.851 7.082 131.756-4.48 41.089-15.404 81.237-32.852 118.914-19.84 44.333-47.405 84.737-82.093 118.786-35.328 35.284-77.101 64.213-122.67 84.139-46.849 21.162-98.261 32.084-150.19 33.364-52.053 1.28-104.023-7.082-152.834-25.728-46.849-17.876-89.857-44.247-127.106-78.253-35.284-32.086-65.451-71.253-87.297-114.261-18.646-36.608-31.402-75.777-38.485-116.182-7.082-41.773-7.082-84.737-0.684-127.148 5.76-37.206 16.682-73.813 32.768-108.501 37.888-80.257 102.101-146.946 181.676-187.478 9.644-4.438 19.242-8.96 29.524-13.398 0.64-5.164 1.964-10.924 2.56-16.726 3.2-18.688 7.084-37.932 11.562-56.535-17.322 5.802-34.688 12.246-51.371 19.968-91.821 41.645-169.474 113.579-217.647 202.839-21.844 40.405-37.248 83.415-46.849 128.43-10.966 49.409-12.884 101.419-6.4 152.152 6.4 47.445 19.884 94.337 39.809 137.39 23.722 50.689 57.133 97.537 96.897 136.706 39.083 39.083 87.893 71.851 141.23 94.337 55.597 23.338 115.33 35.84 175.406 36.564 60.247 0.64 120.492-10.24 176.598-32.342 54.017-21.248 103.851-52.821 146.348-92.417 41.175-38.188 75.093-83.713 100.097-133.934 21.164-42.369 35.924-88.577 43.009-135.468 7.68-48.811 7.68-98.859-0.682-147.030-7.082-44.929-21.846-89.217-41.771-130.262-44.929-90.539-119.426-165.036-209.923-210.007-22.486-10.924-46.251-20.524-70.615-28.202l-0.896-0.98zM669.030 232.579l0.428 20.052c0 13.482 0 26.966-1.962 40.237-0.64 5.164-1.92 9.644-3.2 14.764 23.764 19.244 43.649 43.649 58.413 71.255 10.924 20.524 19.244 43.009 23.764 66.177 5.164 25.686 6.4 52.609 2.602 79.573-3.158 23.764-9.684 46.849-19.244 68.693-12.16 26.284-28.884 50.689-49.409 71.253-21.206 20.524-44.973 37.204-71.937 49.451-29.524 12.8-61.655 20.48-93.741 21.164-32.084 0.64-64.855-5.164-95.021-16.724-26.964-10.924-52.013-26.324-73.813-46.209-21.888-19.882-39.851-43.009-52.693-69.291-10.964-21.164-18.604-43.691-23.126-67.415-4.48-24.406-5.076-49.453-1.92-73.813 3.2-23.766 9.642-46.893 19.242-68.653 14.762-32.768 36.564-61.655 63.573-85.419l-3.882-17.322c-2.56-13.482-1.92-26.326-1.92-40.405v-18.004c-44.973 27.562-82.219 67.415-107.223 113.621-14.806 26.326-25.046 54.573-30.848 84.141-7.082 32.768-8.32 66.731-3.84 100.141 3.84 30.166 12.204 59.693 24.406 86.701 14.764 33.322 36.564 64.171 62.251 90.497 26.324 26.324 57.131 47.489 90.497 62.253 37.248 16.682 77.655 25.686 118.146 26.966 41.131 0.682 82.219-6.4 120.022-21.204 34.688-13.44 66.177-33.324 93.741-58.369 26.924-25.046 50.093-54.529 66.731-87.339 13.482-26.964 23.764-55.851 28.928-85.377 5.164-30.848 6.4-62.251 1.92-93.099-3.84-30.166-12.16-59.691-25.088-87.297-25.004-55.895-68.011-104.021-120.662-135.512l4.864 4.524zM509.026 641.117c62.509 0 113.239-50.689 113.239-113.323 0-62.849-50.731-113.581-113.237-113.581-62.593 0-113.281 50.731-113.281 112.981s50.689 113.025 113.281 113.025v0.896z" />
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Montserrat";
|
|
3
|
+
src: local("Montserrat"),
|
|
4
|
+
url("/css/fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
|
|
5
|
+
font-weight: 400;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
}
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: "Montserrat";
|
|
10
|
+
src: local("Montserrat"),
|
|
11
|
+
url("/css/fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
|
|
12
|
+
font-weight: 500;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
}
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: "Montserrat";
|
|
17
|
+
src: local("Montserrat"),
|
|
18
|
+
url("/css/fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
|
|
19
|
+
font-weight: 600;
|
|
20
|
+
font-style: normal;
|
|
21
|
+
}
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: "Montserrat";
|
|
24
|
+
src: local("Montserrat"),
|
|
25
|
+
url("/css/fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
|
|
26
|
+
font-weight: 700;
|
|
27
|
+
font-style: normal;
|
|
28
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'icomoon';
|
|
3
|
-
src: url('/css/fonts/icomoon.eot?
|
|
4
|
-
src: url('/css/fonts/icomoon.eot?
|
|
5
|
-
url('/css/fonts/icomoon.ttf?
|
|
6
|
-
url('/css/fonts/icomoon.woff?
|
|
7
|
-
url('/css/fonts/icomoon.svg?
|
|
3
|
+
src: url('/css/fonts/icomoon.eot?k132tz');
|
|
4
|
+
src: url('/css/fonts/icomoon.eot?k132tz#iefix') format('embedded-opentype'),
|
|
5
|
+
url('/css/fonts/icomoon.ttf?k132tz') format('truetype'),
|
|
6
|
+
url('/css/fonts/icomoon.woff?k132tz') format('woff'),
|
|
7
|
+
url('/css/fonts/icomoon.svg?k132tz#icomoon') format('svg');
|
|
8
8
|
font-weight: normal;
|
|
9
9
|
font-style: normal;
|
|
10
10
|
font-display: block;
|