@webitel/ui-sdk 0.1.11 → 0.1.112

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.
Files changed (254) hide show
  1. package/README.md +29 -29
  2. package/dist/img/plyr.svg +70 -0
  3. package/dist/img/svg-sprites/attach.svg +4 -0
  4. package/dist/img/svg-sprites/index.js +1 -0
  5. package/dist/img/svg-sprites/wt-icon.svg +880 -0
  6. package/dist/ui-sdk.common.js +8287 -4335
  7. package/dist/ui-sdk.common.js.map +1 -1
  8. package/dist/ui-sdk.css +1 -1
  9. package/dist/ui-sdk.umd.js +8287 -4335
  10. package/dist/ui-sdk.umd.js.map +1 -1
  11. package/dist/ui-sdk.umd.min.js +3 -1
  12. package/dist/ui-sdk.umd.min.js.map +1 -1
  13. package/package.json +62 -41
  14. package/src/components/atoms/wt-badge/__tests__/WtBadge.spec.js +19 -0
  15. package/src/components/atoms/wt-badge/wt-badge.vue +23 -0
  16. package/src/components/atoms/wt-button/__tests__/WtButton.spec.js +29 -0
  17. package/src/components/atoms/wt-button/wt-button.vue +212 -0
  18. package/src/components/atoms/wt-divider/__tests__/WtDivider.spec.js +9 -0
  19. package/src/components/atoms/wt-divider/wt-divider.vue +25 -0
  20. package/src/components/atoms/wt-icon/__tests__/WtIcon.spec.js +24 -0
  21. package/src/components/atoms/wt-icon/wt-icon.vue +138 -0
  22. package/src/components/atoms/wt-indicator/__tests__/WtIndicator.spec.js +29 -0
  23. package/src/components/atoms/wt-indicator/wt-indicator.vue +81 -0
  24. package/src/components/atoms/wt-input-info/__tests__/WtInputInfo.spec.js +9 -0
  25. package/src/components/atoms/wt-input-info/wt-input-info.vue +35 -0
  26. package/src/components/atoms/wt-loader/__tests__/WtLoader.spec.js +9 -0
  27. package/src/components/atoms/wt-loader/_internals/wt-loader--md.vue +83 -0
  28. package/src/components/atoms/wt-loader/_internals/wt-loader--sm.vue +189 -0
  29. package/src/components/atoms/wt-loader/wt-loader.vue +34 -0
  30. package/src/components/atoms/wt-rounded-action/__tests__/WtRoundedAction.spec.js +20 -0
  31. package/src/components/atoms/wt-rounded-action/wt-rounded-action.vue +227 -0
  32. package/src/components/atoms/wt-tooltip/__tests__/WtTooltip.spec.js +29 -0
  33. package/src/components/atoms/wt-tooltip/wt-tooltip.vue +54 -0
  34. package/src/components/index.js +98 -0
  35. package/src/components/molecules/wt-checkbox/__tests__/WtCheckbox.spec.js +41 -0
  36. package/src/components/molecules/wt-checkbox/wt-checkbox.vue +175 -0
  37. package/src/components/molecules/wt-datepicker/__tests__/WtDatepicker.spec.js +28 -0
  38. package/src/components/molecules/wt-datepicker/wt-datepicker.vue +209 -0
  39. package/src/components/molecules/wt-datetimepicker/__tests__/WtDatetimepicker.spec.js +67 -0
  40. package/src/components/molecules/wt-datetimepicker/wt-datetimepicker.vue +314 -0
  41. package/src/components/molecules/wt-icon-btn/__tests__/WtIconBtn.spec.js +31 -0
  42. package/src/components/molecules/wt-icon-btn/wt-icon-btn.vue +113 -0
  43. package/src/components/molecules/wt-input/__tests__/WtInput.spec.js +25 -0
  44. package/src/components/molecules/wt-input/wt-input.vue +316 -0
  45. package/src/components/molecules/wt-label/__tests__/WtLabel.spec.js +9 -0
  46. package/src/components/molecules/wt-label/wt-label.vue +87 -0
  47. package/src/components/molecules/wt-notification/__tests__/WtNotification.spec.js +21 -0
  48. package/src/components/molecules/wt-notification/wt-notification.vue +74 -0
  49. package/src/components/molecules/wt-popup/__tests__/WtPopup.spec.js +47 -0
  50. package/src/components/molecules/wt-popup/wt-popup.vue +130 -0
  51. package/src/components/molecules/wt-progress-bar/__tests__/WtProgressBar.spec.js +17 -0
  52. package/src/components/molecules/wt-progress-bar/wt-progress-bar.vue +80 -0
  53. package/src/components/molecules/wt-radio/__tests__/WtRadio.spec.js +42 -0
  54. package/src/components/molecules/wt-radio/wt-radio.vue +168 -0
  55. package/src/components/molecules/wt-search-bar/__tests__/WtSearchBar.spec.js +36 -0
  56. package/src/components/molecules/wt-search-bar/wt-search-bar.vue +203 -0
  57. package/src/components/molecules/wt-select/__tests__/WtSelect.spec.js +53 -0
  58. package/src/components/molecules/wt-select/wt-select.vue +492 -0
  59. package/src/components/molecules/wt-slider/__tests__/WtSlider.spec.js +9 -0
  60. package/src/components/molecules/wt-slider/wt-slider.vue +175 -0
  61. package/src/components/molecules/wt-switcher/__tests__/WtSwitcher.spec.js +31 -0
  62. package/src/components/molecules/wt-switcher/wt-switcher.vue +177 -0
  63. package/src/components/molecules/wt-tabs/__tests__/WtTabs.spec.js +36 -0
  64. package/src/components/molecules/wt-tabs/wt-tabs.vue +127 -0
  65. package/src/components/molecules/wt-tags-input/__tests__/WtTagsInput.spec.js +45 -0
  66. package/src/components/molecules/wt-tags-input/wt-tags-input.vue +295 -0
  67. package/src/components/molecules/wt-textarea/__tests__/WtTextarea.spec.js +46 -0
  68. package/src/components/molecules/wt-textarea/wt-textarea.vue +185 -0
  69. package/src/components/molecules/wt-time-input/__tests__/WtTimeInput.spec.js +25 -0
  70. package/src/components/molecules/wt-time-input/wt-time-input.vue +192 -0
  71. package/src/components/molecules/wt-timepicker/__tests__/WtTimepicker.spec.js +60 -0
  72. package/src/components/molecules/wt-timepicker/wt-timepicker.vue +176 -0
  73. package/src/components/organisms/wt-app-header/__tests__/WtAppHeader.spec.js +19 -0
  74. package/src/components/organisms/wt-app-header/__tests__/WtAppNavigator.spec.js +23 -0
  75. package/src/components/organisms/wt-app-header/__tests__/WtHeaderActions.spec.js +21 -0
  76. package/src/components/organisms/wt-app-header/wt-app-header.vue +23 -0
  77. package/src/components/organisms/wt-app-header/wt-app-navigator.vue +245 -0
  78. package/src/components/organisms/wt-app-header/wt-header-actions.vue +177 -0
  79. package/src/components/organisms/wt-error-page/__tests__/wt-error-page.spec.js +17 -0
  80. package/src/components/organisms/wt-error-page/wt-error-page.vue +104 -0
  81. package/src/components/organisms/wt-filters-panel-wrapper/__tests__/wt-filters-panel-wrapper.spec.js +24 -0
  82. package/src/components/organisms/wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue +146 -0
  83. package/src/components/organisms/wt-headline/__tests__/WtHeadline.spec.js +47 -0
  84. package/src/components/organisms/wt-headline/wt-headline.vue +46 -0
  85. package/src/components/organisms/wt-navigation-bar/__tests__/WtNavigationBar.spec.js +64 -0
  86. package/src/components/organisms/wt-navigation-bar/wt-navigation-bar.vue +249 -0
  87. package/src/components/organisms/wt-notifications-bar/__tests__/WtNotificationsBar.spec.js +50 -0
  88. package/src/components/organisms/wt-notifications-bar/wt-notifications-bar.vue +71 -0
  89. package/src/components/organisms/wt-page-wrapper/__tests__/WtPageWrapper.spec.js +33 -0
  90. package/src/components/organisms/wt-page-wrapper/wt-page-wrapper.vue +60 -0
  91. package/src/components/organisms/wt-pagination/__tests__/WtPagination.spec.js +38 -0
  92. package/src/components/organisms/wt-pagination/wt-pagination.vue +134 -0
  93. package/src/components/organisms/wt-player/__tests__/WtPlayer.spec.js +9 -0
  94. package/src/components/organisms/wt-player/wt-player.vue +116 -0
  95. package/src/components/organisms/wt-status-select/__tests__/WtStatusSelect.spec.js +25 -0
  96. package/src/components/organisms/wt-status-select/_internals/StatusOptions.lookup.js +24 -0
  97. package/src/components/organisms/wt-status-select/wt-status-select.vue +110 -0
  98. package/src/components/organisms/wt-table/__tests__/WtTable.spec.js +133 -0
  99. package/src/components/organisms/wt-table/__tests__/WtTableDeleteAction.spec.js +9 -0
  100. package/src/components/organisms/wt-table/__tests__/WtTableEditAction.spec.js +9 -0
  101. package/src/components/organisms/wt-table/_internals/getSortOrder.js +12 -0
  102. package/src/components/organisms/wt-table/table-cells/wt-table-delete-action.vue +18 -0
  103. package/src/components/organisms/wt-table/table-cells/wt-table-edit-action.vue +19 -0
  104. package/src/components/organisms/wt-table/wt-table.vue +241 -0
  105. package/src/components/organisms/wt-table-actions/__tests__/WtTableActions.spec.js +9 -0
  106. package/src/components/organisms/wt-table-actions/wt-table-actions.vue +90 -0
  107. package/src/components/organisms/wt-table-column-select/__tests__/WtTableColumnSelect.spec.js +31 -0
  108. package/src/components/organisms/wt-table-column-select/wt-table-column-select.vue +113 -0
  109. package/src/components/transitions/__tests__/ExpandTransition.spec.js +9 -0
  110. package/src/components/transitions/expand-transition.vue +70 -0
  111. package/src/css/colors/_colors.scss +151 -67
  112. package/src/css/components/_components.scss +38 -25
  113. package/src/css/components/atoms/wt-badge/_variables.scss +6 -5
  114. package/src/css/components/atoms/wt-badge/wt-badge.scss +36 -8
  115. package/src/css/components/atoms/wt-button/_variables.scss +46 -46
  116. package/src/css/components/atoms/wt-divider/_variables.scss +4 -4
  117. package/src/css/components/atoms/wt-icon/_variables.scss +7 -28
  118. package/src/css/components/atoms/wt-indicator/_variables.scss +18 -0
  119. package/src/css/components/atoms/wt-input-info/_variables.scss +6 -5
  120. package/src/css/components/atoms/wt-label/_variables.scss +4 -4
  121. package/src/css/components/atoms/wt-loader/_variables.scss +7 -7
  122. package/src/css/components/atoms/wt-rounded-action/_variables.scss +30 -0
  123. package/src/css/components/atoms/wt-tooltip/_variables.scss +9 -9
  124. package/src/css/components/molecules/wt-checkbox/_variables.scss +3 -3
  125. package/src/css/components/molecules/wt-datepicker/_variables.scss +19 -19
  126. package/src/css/components/molecules/wt-datepicker/datepicker-calendar.scss +100 -100
  127. package/src/css/components/molecules/wt-datetimepicker/_variables.scss +11 -11
  128. package/src/css/components/molecules/wt-icon-btn/_variables.scss +2 -2
  129. package/src/css/components/molecules/wt-input/_variables.scss +5 -5
  130. package/src/css/components/molecules/wt-notification/_variables.scss +9 -9
  131. package/src/css/components/molecules/wt-popup/_variables.scss +11 -10
  132. package/src/css/components/molecules/wt-progress-bar/_variables.scss +11 -0
  133. package/src/css/components/molecules/wt-radio/_variables.scss +6 -6
  134. package/src/css/components/molecules/wt-search-bar/_variables.scss +3 -3
  135. package/src/css/components/molecules/wt-select/_variables.scss +24 -22
  136. package/src/css/components/molecules/wt-slider/_variables.scss +15 -0
  137. package/src/css/components/molecules/wt-switcher/_variables.scss +17 -14
  138. package/src/css/components/molecules/wt-tabs/_variables.scss +13 -13
  139. package/src/css/components/molecules/wt-tags-input/_variables.scss +25 -0
  140. package/src/css/components/molecules/wt-textarea/_variables.scss +4 -4
  141. package/src/css/components/molecules/wt-timepicker/_variables.scss +4 -3
  142. package/src/css/components/organisms/wt-app-header/_variables.scss +20 -0
  143. package/src/css/components/organisms/wt-headline/_variables.scss +7 -0
  144. package/src/css/components/organisms/wt-navigation-bar/_variables.scss +14 -0
  145. package/src/css/components/organisms/wt-notifications-bar/_variables.scss +7 -0
  146. package/src/css/components/organisms/wt-page-wrapper/_variables.scss +5 -0
  147. package/src/css/components/organisms/wt-pagination/_variables.scss +6 -6
  148. package/src/css/components/organisms/wt-status-select/_variables.scss +6 -0
  149. package/src/css/components/organisms/wt-table/_variables.scss +16 -0
  150. package/src/css/components/organisms/wt-table-actions/_variables.scss +4 -0
  151. package/src/css/display-helpers/_display-helpers.scss +21 -0
  152. package/src/css/fonts/_fonts.scss +9 -0
  153. package/src/css/main.scss +68 -65
  154. package/src/css/shadows/_shadows.scss +7 -0
  155. package/src/css/sizes/_sizes.scss +2 -0
  156. package/src/css/sizes/_spacing.scss +17 -0
  157. package/src/css/sizes/_viewport-breakpoints.scss +20 -0
  158. package/src/css/styleguide/{styleguide.scss → _styleguide.scss} +4 -3
  159. package/src/css/styleguide/scroll.scss +43 -40
  160. package/src/css/transitions/_transitions.scss +1 -0
  161. package/src/css/transitions/fade/_fade.scss +8 -0
  162. package/src/css/typography/_typography.scss +72 -72
  163. package/src/enums/AgentStatus/AgentStatus.enum.js +6 -0
  164. package/src/enums/WebitelApplications/AdminSections.enum.js +41 -0
  165. package/src/enums/WebitelApplications/SupervisorSections.enum.js +7 -0
  166. package/src/enums/WebitelApplications/WebitelApplications.enum.js +10 -0
  167. package/src/locale/en/en.js +135 -0
  168. package/src/locale/i18n.js +2 -0
  169. package/src/locale/ru/ru.js +135 -2
  170. package/src/locale/ua/ua.js +160 -0
  171. package/src/mixins/dataFilterMixins/__tests__/apiFilterMixin.spec.js +57 -0
  172. package/src/mixins/dataFilterMixins/__tests__/enumFilterMixin.spec.js +66 -0
  173. package/src/mixins/dataFilterMixins/__tests__/paginationFilterMixin.spec.js +93 -0
  174. package/src/mixins/dataFilterMixins/__tests__/sortFilterMixin.spec.js +60 -0
  175. package/src/mixins/dataFilterMixins/__tests__/urlControllerMixin.spec.js +48 -0
  176. package/src/mixins/dataFilterMixins/_urlControllerMixin/_urlControllerMixin.js +37 -0
  177. package/src/mixins/dataFilterMixins/apiFilterMixin.js +23 -0
  178. package/src/mixins/dataFilterMixins/baseFilterMixin/baseFilterMixin.js +29 -0
  179. package/src/mixins/dataFilterMixins/enumFilterMixin.js +30 -0
  180. package/src/mixins/dataFilterMixins/paginationFilterMixin.js +79 -0
  181. package/src/mixins/dataFilterMixins/sortFilterMixin.js +75 -0
  182. package/src/mixins/validationMixin/__tests__/validationMixin.spec.js +47 -0
  183. package/src/mixins/validationMixin/validationMixin.js +40 -0
  184. package/src/modules/CSVExport/CSVExport.js +88 -0
  185. package/src/modules/CSVExport/__tests__/CSVExport.spec.js +63 -0
  186. package/src/modules/CSVExport/mixins/exportCSVMixin.js +46 -0
  187. package/src/modules/FilesExport/FilesExport.js +110 -0
  188. package/src/modules/FilesExport/__tests__/FilesExport.spec.js +66 -0
  189. package/src/modules/FilesExport/mixins/exportFilesMixin.js +46 -0
  190. package/src/modules/FilesExport/scripts/generateMediaURL.js +7 -0
  191. package/src/modules/QueryFilters/api/__tests__/defaults.spec.js +18 -0
  192. package/src/modules/QueryFilters/api/defaults.js +16 -0
  193. package/src/modules/QueryFilters/classes/ApiFilterSchema.js +32 -0
  194. package/src/modules/QueryFilters/classes/BaseFilterSchema.js +6 -0
  195. package/src/modules/QueryFilters/classes/EnumFilterSchema.js +23 -0
  196. package/src/modules/QueryFilters/classes/__tests__/ApiFilterSchema.spec.js +25 -0
  197. package/src/modules/QueryFilters/components/__tests__/abstract-api-filter.spec.js +54 -0
  198. package/src/modules/QueryFilters/components/__tests__/abstract-enum-filter.spec.js +40 -0
  199. package/src/modules/QueryFilters/components/__tests__/filter-search.spec.js +49 -0
  200. package/src/modules/QueryFilters/components/abstract-api-filter.vue +42 -0
  201. package/src/modules/QueryFilters/components/abstract-enum-filter.vue +32 -0
  202. package/src/modules/QueryFilters/components/filter-search.vue +33 -0
  203. package/src/modules/QueryFilters/mixins/__tests__/apiFilterMixin.spec.js +48 -0
  204. package/src/modules/QueryFilters/mixins/__tests__/enumFilterMixin.spec.js +54 -0
  205. package/src/modules/QueryFilters/mixins/__tests__/paginationFilterMixin.spec.js +74 -0
  206. package/src/modules/QueryFilters/mixins/__tests__/sortFilterMixin.spec.js +58 -0
  207. package/src/modules/QueryFilters/mixins/__tests__/urlControllerMixin.spec.js +48 -0
  208. package/src/modules/QueryFilters/mixins/_urlControllerMixin/_urlControllerMixin.js +39 -0
  209. package/src/modules/QueryFilters/mixins/apiFilterMixin.js +36 -0
  210. package/src/modules/QueryFilters/mixins/baseFilterMixin/baseFilterMixin.js +34 -0
  211. package/src/modules/QueryFilters/mixins/enumFilterMixin.js +36 -0
  212. package/src/modules/QueryFilters/mixins/paginationFilterMixin.js +66 -0
  213. package/src/modules/QueryFilters/mixins/sortFilterMixin.js +56 -0
  214. package/src/modules/QueryFilters/store/QueryFiltersStoreModule.js +50 -0
  215. package/src/modules/QueryFilters/store/__tests__/QueryFiltersStoreModule.spec.js +83 -0
  216. package/src/modules/QueryFilters/store/queryFilters.js +6 -0
  217. package/src/modules/Userinfo/api/BaseAPIService.js +7 -0
  218. package/src/modules/Userinfo/api/auth.js +29 -0
  219. package/src/modules/Userinfo/api/userinfo.js +32 -0
  220. package/src/modules/Userinfo/classes/ApplicationsAccess.js +170 -0
  221. package/src/modules/Userinfo/components/__tests__/auth.spec.js +57 -0
  222. package/src/modules/Userinfo/components/the-auth.vue +75 -0
  223. package/src/modules/Userinfo/store/UserinfoStoreModule.js +112 -0
  224. package/src/scripts/__tests__/caseConverters.spec.js +65 -0
  225. package/src/scripts/__tests__/convertDuration.spec.js +21 -0
  226. package/src/scripts/__tests__/debounce.spec.js +15 -0
  227. package/src/scripts/__tests__/editProxy.spec.js +9 -0
  228. package/src/scripts/__tests__/isEmpty.spec.js +16 -0
  229. package/src/scripts/__tests__/prettifyFileSize.spec.js +18 -0
  230. package/src/scripts/__tests__/prettifyTime.spec.js +18 -0
  231. package/src/scripts/__tests__/preventHiddenPageCallsDecorator.spec.js +16 -0
  232. package/src/scripts/__tests__/sortQueryAdapters.spec.js +12 -0
  233. package/src/scripts/caseConverters.js +78 -0
  234. package/src/scripts/convertDuration.js +15 -0
  235. package/src/scripts/editProxy.js +9 -0
  236. package/src/scripts/eventBus.js +4 -0
  237. package/src/scripts/isEmpty.js +9 -0
  238. package/src/scripts/prettifyFileSize.js +11 -0
  239. package/src/scripts/prettifyTime.js +9 -0
  240. package/src/scripts/preventHiddenPageCallsDecorator.js +6 -0
  241. package/src/scripts/sortQueryAdapters.js +21 -0
  242. package/src/store/BaseStoreModules/BaseStoreModule.js +49 -0
  243. package/src/store/BaseStoreModules/__tests__/BaseStoreModule.spec.js +104 -0
  244. package/src/store/helpers/__tests__/getNamespacedState.spec.js +11 -0
  245. package/src/store/helpers/getNamespacedState.js +5 -0
  246. package/dist/img/arrow-down--active--md.7b60f2fb6090366652124f77c543a516.svg +0 -3
  247. package/dist/img/arrow-down--disabled--md.f58424cd673258365e78863edd1e92cc.svg +0 -3
  248. package/dist/img/arrow-down--md.1843b60e1c244e066a650e8d19ea83c9.svg +0 -3
  249. package/dist/img/calendar--active--md.7fd3d949ec7234a4940ea452d95b4165.svg +0 -6
  250. package/dist/img/calendar--disabled--md.8e7a1e18f93ae8af270060400e6f881c.svg +0 -3
  251. package/dist/img/calendar--md.9c265581c3a405ff0f0e46e8092f36b8.svg +0 -6
  252. package/src/css/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
  253. package/src/css/fonts/Montserrat/Montserrat-SemiBold.ttf +0 -0
  254. package/src/css/fonts.scss +0 -9
package/README.md CHANGED
@@ -1,29 +1,29 @@
1
- # webitel-ui-sdk
2
-
3
- ## Project setup
4
- ```
5
- npm install
6
- ```
7
-
8
- ### Compiles and hot-reloads for development
9
- ```
10
- npm run serve
11
- ```
12
-
13
- ### Compiles and minifies for production
14
- ```
15
- npm run build
16
- ```
17
-
18
- ### Run your unit tests
19
- ```
20
- npm run test:unit
21
- ```
22
-
23
- ### Lints and fixes files
24
- ```
25
- npm run lint
26
- ```
27
-
28
- ### Customize configuration
29
- See [Configuration Reference](https://cli.vuejs.org/config/).
1
+ # webitel-ui-sdk
2
+
3
+ ## Project setup
4
+ ```
5
+ npm install
6
+ ```
7
+
8
+ ### Compiles and hot-reloads for development
9
+ ```
10
+ npm run serve
11
+ ```
12
+
13
+ ### Compiles and minifies for production
14
+ ```
15
+ npm run build
16
+ ```
17
+
18
+ ### Run your unit tests
19
+ ```
20
+ npm run test:unit
21
+ ```
22
+
23
+ ### Lints and fixes files
24
+ ```
25
+ npm run lint
26
+ ```
27
+
28
+ ### Customize configuration
29
+ See [Configuration Reference](https://cli.vuejs.org/config/).
@@ -0,0 +1,70 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
2
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4
+ <symbol id="plyr-airplay" viewBox="0 0 32 32">
5
+ <path d="M8.667 8.667v14.667h0.333c0.92 0 1.667 0.746 1.667 1.667s-0.746 1.667-1.667 1.667h-1c-1.473 0-2.667-1.194-2.667-2.667v-16c0-1.473 1.194-2.667 2.667-2.667h16c1.473 0 2.667 1.194 2.667 2.667v16c0 1.473-1.194 2.667-2.667 2.667h-1c-0.921 0-1.667-0.746-1.667-1.667s0.746-1.667 1.667-1.667h0.333v-14.667h-14.667z"></path>
6
+ <path d="M17.059 20.561c-0.468-0.748-1.65-0.748-2.119 0l-2.778 4.439c-0.465 0.743 0.123 1.667 1.059 1.667h5.556c0.937 0 1.524-0.924 1.059-1.667l-2.778-4.439z"></path>
7
+ </symbol>
8
+ <symbol id="plyr-captions-off" viewBox="0 0 18 18">
9
+ <path
10
+ d="M1 1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h4.6l2.7 2.7c.2.2.4.3.7.3.3 0 .5-.1.7-.3l2.7-2.7H17c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1H1zm4.52 10.15c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41C8.47 4.96 7.46 3.76 5.5 3.76c-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69zm7.57 0c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41c-.28-1.15-1.29-2.35-3.25-2.35-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69z"
11
+ fill-rule="evenodd" fill-opacity=".5"/>
12
+ </symbol>
13
+ <symbol id="plyr-captions-on" viewBox="0 0 18 18">
14
+ <path
15
+ d="M1 1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h4.6l2.7 2.7c.2.2.4.3.7.3.3 0 .5-.1.7-.3l2.7-2.7H17c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1H1zm4.52 10.15c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41C8.47 4.96 7.46 3.76 5.5 3.76c-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69zm7.57 0c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41c-.28-1.15-1.29-2.35-3.25-2.35-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69z"
16
+ fill-rule="evenodd"/>
17
+ </symbol>
18
+ <symbol id="plyr-download" viewBox="0 0 32 32">
19
+ <path d="M22.475 14.186c0.651-0.651 0.651-1.706 0-2.357s-1.706-0.651-2.357 0l-2.128 2.128v-7.29c0-0.92-0.746-1.667-1.667-1.667s-1.667 0.746-1.667 1.667v7.29l-2.128-2.128c-0.651-0.651-1.706-0.651-2.357 0s-0.651 1.706 0 2.357l4.973 4.973c0.651 0.651 1.706 0.651 2.357 0l4.973-4.973z"></path>
20
+ <path d="M10.667 22.98c-0.92 0-1.667 0.746-1.667 1.667s0.746 1.667 1.667 1.667h11.314c0.92 0 1.667-0.746 1.667-1.667s-0.746-1.667-1.667-1.667h-11.314z"></path>
21
+ </symbol>
22
+ <symbol id="plyr-enter-fullscreen" viewBox="0 0 32 32">
23
+ <path d="M18.3 5c-0.921 0-1.667 0.746-1.667 1.667s0.746 1.667 1.667 1.667h3.009l-5.155 5.155c-0.651 0.651-0.651 1.706 0 2.357s1.706 0.651 2.357 0l5.155-5.155v3.009c0 0.921 0.746 1.667 1.667 1.667s1.667-0.746 1.667-1.667v-7.033c0-0.92-0.746-1.667-1.667-1.667h-7.033z"></path>
24
+ <path d="M13.7 27c0.921 0 1.667-0.746 1.667-1.667s-0.746-1.667-1.667-1.667h-3.009l5.155-5.155c0.651-0.651 0.651-1.706 0-2.357s-1.706-0.651-2.357 0l-5.155 5.155v-3.009c0-0.921-0.746-1.667-1.667-1.667s-1.667 0.746-1.667 1.667v7.033c0 0.921 0.746 1.667 1.667 1.667h7.033z"></path>
25
+ </symbol>
26
+ <symbol id="plyr-exit-fullscreen" viewBox="0 0 32 32">
27
+ <path d="M24.366 16.333c0.921 0 1.667-0.746 1.667-1.667s-0.746-1.667-1.667-1.667h-3.009l5.155-5.155c0.651-0.651 0.651-1.706 0-2.357s-1.706-0.651-2.357 0l-5.155 5.155v-3.009c0-0.92-0.746-1.667-1.667-1.667s-1.667 0.746-1.667 1.667v7.033c0 0.921 0.746 1.667 1.667 1.667h7.033z"></path>
28
+ <path d="M7.634 15.667c-0.92 0-1.667 0.746-1.667 1.667s0.746 1.667 1.667 1.667h3.009l-5.155 5.155c-0.651 0.651-0.651 1.706 0 2.357s1.706 0.651 2.357 0l5.155-5.155v3.009c0 0.921 0.746 1.667 1.667 1.667s1.667-0.746 1.667-1.667v-7.033c0-0.921-0.746-1.667-1.667-1.667h-7.033z"></path>
29
+ </symbol>
30
+ <symbol id="plyr-fast-forward" viewBox="0 0 32 32">
31
+ <path d="M16 15.999c-0-0.825-0.375-1.649-1.123-2.117l-8.877-5.556c-1.485-0.93-3.333 0.245-3.333 2.119v11.112c0 1.874 1.848 3.048 3.333 2.119l8.877-5.556c0.748-0.468 1.122-1.293 1.123-2.117v5.555c0 1.874 1.848 3.048 3.333 2.119l8.877-5.556c1.497-0.937 1.497-3.301 0-4.238l-8.877-5.556c-1.485-0.93-3.333 0.245-3.333 2.119v5.555z"></path>
32
+ </symbol>
33
+ <symbol id="plyr-logo-vimeo" viewBox="0 0 18 18">
34
+ <path
35
+ d="M17 5.3c-.1 1.6-1.2 3.7-3.3 6.4-2.2 2.8-4 4.2-5.5 4.2-.9 0-1.7-.9-2.4-2.6C5 10.9 4.4 6 3 6c-.1 0-.5.3-1.2.8l-.8-1c.8-.7 3.5-3.4 4.7-3.5 1.2-.1 2 .7 2.3 2.5.3 2 .8 6.1 1.8 6.1.9 0 2.5-3.4 2.6-4 .1-.9-.3-1.9-2.3-1.1.8-2.6 2.3-3.8 4.5-3.8 1.7.1 2.5 1.2 2.4 3.3z"/>
36
+ </symbol>
37
+ <symbol id="plyr-logo-youtube" viewBox="0 0 18 18">
38
+ <path
39
+ d="M16.8 5.8c-.2-1.3-.8-2.2-2.2-2.4C12.4 3 9 3 9 3s-3.4 0-5.6.4C2 3.6 1.3 4.5 1.2 5.8 1 7.1 1 9 1 9s0 1.9.2 3.2c.2 1.3.8 2.2 2.2 2.4C5.6 15 9 15 9 15s3.4 0 5.6-.4c1.4-.3 2-1.1 2.2-2.4.2-1.3.2-3.2.2-3.2s0-1.9-.2-3.2zM7 12V6l5 3-5 3z"/>
40
+ </symbol>
41
+ <symbol id="plyr-muted" viewBox="0 0 32 32">
42
+ <path d="M24 14.1l-1.71-1.708c-0.524-0.523-1.373-0.523-1.897 0s-0.524 1.371 0 1.895l1.716 1.714-1.714 1.712c-0.524 0.523-0.524 1.371 0 1.895s1.373 0.523 1.897 0l1.708-1.706 1.708 1.706c0.524 0.523 1.897 0 1.897 0 0.524-0.523 0.524-1.371 0-1.895l-1.714-1.712 1.716-1.714c0.524-0.523 0.524-1.371 0-1.895s-1.373-0.523-1.897 0l-1.71 1.708z"></path>
43
+ <path d="M15.219 25.827l-5.053-4.295h-2.833c-0.627 0-1.228-0.213-1.674-0.659s-0.66-1.047-0.66-1.674v-6.4c0-0.627 0.213-1.228 0.66-1.674s1.047-0.66 1.674-0.66h2.832l5.027-4.273c0.735-0.708 1.726-0.753 2.488-0.372s1.319 1.187 1.319 2.178v16c0 2.065-2.336 3.033-3.773 1.835l-0.007-0.006z"></path>
44
+ <path d="M22.29 12.392l1.71 1.708 1.71-1.708c0.524-0.523 1.373-0.523 1.897 0s0.524 1.371 0 1.895l-1.716 1.714 1.714 1.712c0.524 0.523 0.524 1.371 0 1.895 0 0-1.373 0.523-1.897 0l-1.708-1.706-1.708 1.706c-0.524 0.523-1.373 0.523-1.897 0s-0.524-1.371 0-1.895l1.714-1.712-1.716-1.714c-0.524-0.523-0.524-1.371 0-1.895s1.373-0.523 1.897 0z"></path>
45
+ </symbol>
46
+ <symbol id="plyr-pause" viewBox="0 0 32 32">
47
+ <path d="M9.333 6.667c-0.736 0-1.333 0.597-1.333 1.333v16c0 0.736 0.597 1.333 1.333 1.333h2.667c0.736 0 1.333-0.597 1.333-1.333v-16c0-0.736-0.597-1.333-1.333-1.333h-2.667z"></path>
48
+ <path d="M20 6.667c-0.736 0-1.333 0.597-1.333 1.333v16c0 0.736 0.597 1.333 1.333 1.333h2.667c0.736 0 1.333-0.597 1.333-1.333v-16c0-0.736-0.597-1.333-1.333-1.333h-2.667z"></path>
49
+ </symbol>
50
+ <symbol id="plyr-pip" viewBox="0 0 32 32">
51
+ <path d="M11.667 5.333c0.92 0 1.667 0.746 1.667 1.667s-0.746 1.667-1.667 1.667h-2.333c-0.368 0-0.667 0.298-0.667 0.667v13.333c0 0.368 0.298 0.667 0.667 0.667h13.333c0.368 0 0.667-0.299 0.667-0.667v-2.333c0-0.921 0.746-1.667 1.667-1.667s1.667 0.746 1.667 1.667v2.333c0 2.209-1.791 4-4 4h-13.333c-2.209 0-4-1.791-4-4v-13.333c0-2.209 1.791-4 4-4h2.333z"></path>
52
+ <path d="M16.3 7c0-0.92 0.746-1.667 1.667-1.667h7.033c0.921 0 1.667 0.746 1.667 1.667v7.033c0 0.921-0.746 1.667-1.667 1.667s-1.667-0.746-1.667-1.667v-3.009l-5.155 5.155c-0.651 0.651-1.706 0.651-2.357 0s-0.651-1.706 0-2.357l5.155-5.155h-3.009c-0.921 0-1.667-0.746-1.667-1.667z"></path>
53
+ </symbol>
54
+ <symbol id="plyr-play" viewBox="0 0 32 32">
55
+ <path d="M22.615 13.685c1.792 1.024 1.792 3.607 0 4.631l-10.625 6.072c-1.778 1.016-3.99-0.268-3.99-2.315v-12.143c0-2.048 2.212-3.331 3.99-2.315l10.625 6.072z"></path>
56
+ </symbol>
57
+ <symbol id="plyr-restart" viewBox="0 0 32 32">
58
+ <path d="M18.422 4.462c-0.639-0.626-1.662-0.614-2.285 0.028l-3.765 3.876c-0.306 0.304-0.466 0.701-0.48 1.102-0.001 0.025-0.001 0.049-0.001 0.074 0.005 0.413 0.165 0.823 0.48 1.136l3.765 3.876c0.623 0.642 1.647 0.654 2.285 0.028s0.651-1.655 0.028-2.296l-0.962-0.99c3.393 0.693 5.946 3.707 5.946 7.32 0 4.126-3.329 7.47-7.434 7.47s-7.434-3.345-7.434-7.47c0-0.897-0.724-1.624-1.616-1.624s-1.616 0.727-1.616 1.624c0 5.919 4.776 10.718 10.667 10.718s10.667-4.799 10.667-10.718c0-5.488-4.104-10.012-9.397-10.643l1.18-1.214c0.623-0.642 0.611-1.67-0.028-2.296z"></path>
59
+ </symbol>
60
+ <symbol id="plyr-rewind" viewBox="0 0 32 32">
61
+ <path d="M16 15.999c0-0.825 0.375-1.649 1.123-2.117l8.877-5.556c1.485-0.93 3.333 0.245 3.333 2.119v11.112c0 1.874-1.848 3.048-3.333 2.119l-8.877-5.556c-0.748-0.468-1.122-1.293-1.123-2.117v5.555c0 1.874-1.848 3.048-3.333 2.119l-8.877-5.556c-1.497-0.937-1.497-3.301 0-4.238l8.877-5.556c1.485-0.93 3.333 0.245 3.333 2.119v5.555z"></path>
62
+ </symbol>
63
+ <symbol id="plyr-settings" viewBox="0 0 32 32">
64
+ <path d="M13.165 5.929c1.309-2.038 4.361-2.038 5.67 0l0.652 1.015c0.589 0.917 1.608 1.489 2.719 1.526l1.23 0.041c2.47 0.083 3.996 2.653 2.835 4.774l-0.578 1.056c-0.522 0.954-0.522 2.098 0 3.053l0.578 1.056c1.161 2.121-0.365 4.691-2.835 4.774l-1.23 0.041c-1.111 0.037-2.13 0.61-2.719 1.526l-0.652 1.015c-1.309 2.038-4.361 2.038-5.67 0l-0.652-1.015c-0.589-0.917-1.608-1.489-2.719-1.526l-1.23-0.041c-2.47-0.083-3.996-2.653-2.835-4.774l0.578-1.056c0.522-0.954 0.522-2.098 0-3.053l-0.578-1.056c-1.161-2.121 0.365-4.691 2.835-4.774l1.23-0.041c1.111-0.037 2.13-0.61 2.719-1.526l0.652-1.015zM16 18.668c1.546 0 2.8-1.254 2.8-2.8s-1.254-2.8-2.8-2.8c-1.546 0-2.8 1.254-2.8 2.8s1.254 2.8 2.8 2.8z"></path>
65
+ </symbol>
66
+ <symbol id="plyr-volume" viewBox="0 0 32 32">
67
+ <path d="M10.166 21.532l5.061 4.301c1.438 1.198 3.773 0.231 3.773-1.835v-16c0-0.991-0.558-1.797-1.319-2.178s-1.753-0.336-2.488 0.372l-5.027 4.273h-2.832c-0.627 0-1.228 0.213-1.674 0.66s-0.66 1.047-0.66 1.674v6.4c0 0.627 0.213 1.228 0.66 1.674s1.047 0.659 1.674 0.659h2.833z"></path>
68
+ <path d="M22.47 10.162c0.278-0.477 0.891-0.638 1.368-0.36 1.98 1.155 3.163 3.668 3.163 6.197 0 2.675-1.191 5.047-3.163 6.197-0.477 0.278-1.089 0.117-1.368-0.36s-0.117-1.089 0.36-1.368c1.229-0.717 2.171-2.344 2.171-4.47 0-2.004-0.951-3.758-2.171-4.47-0.477-0.278-0.638-0.891-0.36-1.368z"></path>
69
+ </symbol>
70
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M9.50965 1.98777C8.99751 1.47563 8.16718 1.47563 7.65504 1.98777L3.28215 6.36066C2.3675 7.27531 2.3675 8.75825 3.28215 9.6729C4.1968 10.5875 5.67973 10.5875 6.59438 9.6729L9.75259 6.5147C10.0455 6.2218 10.5204 6.2218 10.8132 6.5147C11.1061 6.80759 11.1061 7.28246 10.8132 7.57536L7.65504 10.7336C6.15461 12.234 3.72192 12.234 2.22149 10.7336C0.721053 9.23312 0.721052 6.80044 2.22149 5.3L6.59438 0.927107C7.6923 -0.170814 9.47239 -0.170814 10.5703 0.927107C11.6682 2.02503 11.6682 3.80511 10.5703 4.90303L6.26682 9.20652C5.57142 9.90192 4.44394 9.90193 3.74853 9.20652C3.05312 8.51111 3.05312 7.38363 3.74853 6.68822L6.83732 3.59943C7.13022 3.30654 7.60509 3.30654 7.89798 3.59943C8.19088 3.89233 8.19088 4.3672 7.89798 4.66009L4.80919 7.74888C4.69957 7.85851 4.69957 8.03624 4.80919 8.14586C4.91881 8.25548 5.09654 8.25548 5.20616 8.14586L9.50965 3.84237C10.0218 3.33024 10.0218 2.4999 9.50965 1.98777Z"/>
4
+ </svg>
@@ -0,0 +1 @@
1
+ import './attach.svg';