customeranalytics 0.1__py3-none-any.whl

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. customeranalytics/__init__.py +319 -0
  2. customeranalytics/configs.py +480 -0
  3. customeranalytics/data_storage_configurations/__init__.py +245 -0
  4. customeranalytics/data_storage_configurations/data_access.py +165 -0
  5. customeranalytics/data_storage_configurations/data_works_pipeline.py +207 -0
  6. customeranalytics/data_storage_configurations/es_create_index.py +544 -0
  7. customeranalytics/data_storage_configurations/logger.py +36 -0
  8. customeranalytics/data_storage_configurations/query_es.py +157 -0
  9. customeranalytics/data_storage_configurations/reports.py +684 -0
  10. customeranalytics/data_storage_configurations/schedule_data_integration.py +355 -0
  11. customeranalytics/docs/queries.yaml +245 -0
  12. customeranalytics/docs/web_configs.yaml +2 -0
  13. customeranalytics/exploratory_analysis/__init__.py +109 -0
  14. customeranalytics/exploratory_analysis/churn.py +232 -0
  15. customeranalytics/exploratory_analysis/cohorts.py +535 -0
  16. customeranalytics/exploratory_analysis/descriptive_statistics.py +470 -0
  17. customeranalytics/exploratory_analysis/funnels.py +407 -0
  18. customeranalytics/exploratory_analysis/product_analytics.py +340 -0
  19. customeranalytics/exploratory_analysis/promotion_analytics.py +299 -0
  20. customeranalytics/exploratory_analysis/rfm.py +202 -0
  21. customeranalytics/exploratory_analysis/sample_data/sample_data_avg_order_count_per_promo_per_cust.csv +99 -0
  22. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_1_search.csv +2 -0
  23. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_2_search.csv +46 -0
  24. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_3_search.csv +2 -0
  25. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_4_search.csv +2 -0
  26. customeranalytics/exploratory_analysis/sample_data/sample_data_churn.csv +2 -0
  27. customeranalytics/exploratory_analysis/sample_data/sample_data_churn_weekly.csv +10 -0
  28. customeranalytics/exploratory_analysis/sample_data/sample_data_client_feature_predicted.csv +1590 -0
  29. customeranalytics/exploratory_analysis/sample_data/sample_data_client_kpis.csv +7060 -0
  30. customeranalytics/exploratory_analysis/sample_data/sample_data_clvrfm_anomaly.csv +561 -0
  31. customeranalytics/exploratory_analysis/sample_data/sample_data_clvsegments_amount.csv +8 -0
  32. customeranalytics/exploratory_analysis/sample_data/sample_data_customer_journey.csv +18 -0
  33. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_clv.csv +103 -0
  34. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_downloads.csv +68 -0
  35. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_1_to_2.csv +66 -0
  36. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_2_to_3.csv +64 -0
  37. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_3_to_4.csv +55 -0
  38. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_dimension_values.csv +199 -0
  39. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel.csv +36 -0
  40. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel_downloads.csv +68 -0
  41. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_inorganic_ratio.csv +6070 -0
  42. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_orders.csv +57 -0
  43. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_organic_orders.csv +64 -0
  44. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_products_of_sales.csv +12574 -0
  45. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_discount.csv +64 -0
  46. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_revenue.csv +6070 -0
  47. customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly.csv +6 -0
  48. customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly_2.csv +118 -0
  49. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver.csv +47 -0
  50. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_kpis.csv +2 -0
  51. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_weekday_hour.csv +25 -0
  52. customeranalytics/exploratory_analysis/sample_data/sample_data_dfunnel_anomaly.csv +118 -0
  53. customeranalytics/exploratory_analysis/sample_data/sample_data_dimension_kpis.csv +199 -0
  54. customeranalytics/exploratory_analysis/sample_data/sample_data_dorders_anomaly.csv +85 -0
  55. customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_clusters.csv +6 -0
  56. customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_recency.csv +3740 -0
  57. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel.csv +25 -0
  58. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel_downloads.csv +25 -0
  59. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_inorganic_ratio.csv +2353 -0
  60. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_orders.csv +25 -0
  61. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_organic_orders.csv +2353 -0
  62. customeranalytics/exploratory_analysis/sample_data/sample_data_inorganic_orders_per_promotion_per_day.csv +6070 -0
  63. customeranalytics/exploratory_analysis/sample_data/sample_data_kpis.csv +2 -0
  64. customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_clusters.csv +6 -0
  65. customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_frequency.csv +3740 -0
  66. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel.csv +5 -0
  67. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel_downloads.csv +5 -0
  68. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_orders.csv +4 -0
  69. customeranalytics/exploratory_analysis/sample_data/sample_data_most_combined_products.csv +11 -0
  70. customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_categories.csv +11 -0
  71. customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_products.csv +11 -0
  72. customeranalytics/exploratory_analysis/sample_data/sample_data_order_and_payment_amount_differences.csv +91 -0
  73. customeranalytics/exploratory_analysis/sample_data/sample_data_prepare.csv +101 -0
  74. customeranalytics/exploratory_analysis/sample_data/sample_data_prepare_weekday_hour.csv +25 -0
  75. customeranalytics/exploratory_analysis/sample_data/sample_data_product_kpis.csv +201 -0
  76. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_accept.csv +11 -0
  77. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_reject.csv +7 -0
  78. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_accept.csv +11 -0
  79. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_reject.csv +11 -0
  80. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_comparison.csv +91 -0
  81. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_kpis.csv +99 -0
  82. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_number_of_customer.csv +99 -0
  83. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_accept.csv +81 -0
  84. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_reject.csv +11 -0
  85. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_accept.csv +55 -0
  86. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_reject.csv +37 -0
  87. customeranalytics/exploratory_analysis/sample_data/sample_data_purchase_amount_distribution.csv +22 -0
  88. customeranalytics/exploratory_analysis/sample_data/sample_data_recency_clusters.csv +6 -0
  89. customeranalytics/exploratory_analysis/sample_data/sample_data_recency_monetary.csv +3740 -0
  90. customeranalytics/exploratory_analysis/sample_data/sample_data_rfm.csv +2001 -0
  91. customeranalytics/exploratory_analysis/sample_data/sample_data_ride.csv +101 -0
  92. customeranalytics/exploratory_analysis/sample_data/sample_data_ride_weekday_hour.csv +25 -0
  93. customeranalytics/exploratory_analysis/sample_data/sample_data_segmentation.csv +11 -0
  94. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_amount.csv +10 -0
  95. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_orders.csv +9 -0
  96. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_amount.csv +10 -0
  97. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_orders.csv +11 -0
  98. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_amount.csv +10 -0
  99. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_orders.csv +10 -0
  100. customeranalytics/exploratory_analysis/sample_data/sample_data_user_counts_per_order_seq.csv +47 -0
  101. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_order_per_user.csv +13 -0
  102. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_payment_amount.csv +13 -0
  103. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_session_per_user.csv +13 -0
  104. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_downloads.csv +13 -0
  105. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_1_to_2.csv +13 -0
  106. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_2_to_3.csv +13 -0
  107. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_3_to_4.csv +12 -0
  108. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel.csv +25 -0
  109. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel_downloads.csv +25 -0
  110. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_orders.csv +10 -0
  111. customeranalytics/ml_process/__init__.py +64 -0
  112. customeranalytics/ml_process/ab_test.py +615 -0
  113. customeranalytics/ml_process/anomaly_detection.py +456 -0
  114. customeranalytics/ml_process/clv_prediction.py +301 -0
  115. customeranalytics/ml_process/customer_segmentation.py +354 -0
  116. customeranalytics/ml_process/delivery_analytics.py +754 -0
  117. customeranalytics/utils.py +186 -0
  118. customeranalytics/web/app/__init__.py +37 -0
  119. customeranalytics/web/app/base/__init__.py +9 -0
  120. customeranalytics/web/app/base/forms.py +16 -0
  121. customeranalytics/web/app/base/models.py +43 -0
  122. customeranalytics/web/app/base/routes.py +126 -0
  123. customeranalytics/web/app/base/static/assets/css/app.css +20 -0
  124. customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff +0 -0
  125. customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff2 +0 -0
  126. customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff +0 -0
  127. customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff2 +0 -0
  128. customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff +0 -0
  129. customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff2 +0 -0
  130. customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff +0 -0
  131. customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff2 +0 -0
  132. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff +0 -0
  133. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff2 +0 -0
  134. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff +0 -0
  135. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
  136. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff +0 -0
  137. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff2 +0 -0
  138. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff +0 -0
  139. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff2 +0 -0
  140. customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff +0 -0
  141. customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff2 +0 -0
  142. customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff +0 -0
  143. customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff2 +0 -0
  144. customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff +0 -0
  145. customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff2 +0 -0
  146. customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff +0 -0
  147. customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff2 +0 -0
  148. customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff +0 -0
  149. customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff2 +0 -0
  150. customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff +0 -0
  151. customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff2 +0 -0
  152. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff +0 -0
  153. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff2 +0 -0
  154. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff +0 -0
  155. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff2 +0 -0
  156. customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff +0 -0
  157. customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff2 +0 -0
  158. customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff +0 -0
  159. customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff2 +0 -0
  160. customeranalytics/web/app/base/static/assets/fonts/Inter-italic.var.woff2 +0 -0
  161. customeranalytics/web/app/base/static/assets/fonts/Inter-upright.var.woff2 +0 -0
  162. customeranalytics/web/app/base/static/assets/fonts/Inter.var.woff2 +0 -0
  163. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.eot +0 -0
  164. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.svg +3570 -0
  165. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.ttf +0 -0
  166. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff +0 -0
  167. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff2 +0 -0
  168. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.eot +0 -0
  169. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.svg +801 -0
  170. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.ttf +0 -0
  171. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff +0 -0
  172. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff2 +0 -0
  173. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.eot +0 -0
  174. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.svg +5028 -0
  175. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.ttf +0 -0
  176. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff +0 -0
  177. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff2 +0 -0
  178. customeranalytics/web/app/base/static/assets/img/avatars/avatar-1.png +0 -0
  179. customeranalytics/web/app/base/static/assets/img/avatars/avatar-2.png +0 -0
  180. customeranalytics/web/app/base/static/assets/img/avatars/avatar-3.png +0 -0
  181. customeranalytics/web/app/base/static/assets/img/avatars/avatar-4.png +0 -0
  182. customeranalytics/web/app/base/static/assets/img/avatars/avatar-5.png +0 -0
  183. customeranalytics/web/app/base/static/assets/img/avatars/info.jpeg +0 -0
  184. customeranalytics/web/app/base/static/assets/img/icons/customanality.png +0 -0
  185. customeranalytics/web/app/base/static/assets/img/icons/icon-48x48.png +0 -0
  186. customeranalytics/web/app/base/static/assets/js/app.js +2 -0
  187. customeranalytics/web/app/base/static/assets/js/app.js.LICENSE +566 -0
  188. customeranalytics/web/app/base/static/assets/js/app.js.LICENSE.txt +556 -0
  189. customeranalytics/web/app/base/static/assets/js/modules/bootstrap.js +15 -0
  190. customeranalytics/web/app/base/static/assets/js/modules/chartjs.js +4 -0
  191. customeranalytics/web/app/base/static/assets/js/modules/feather.js +8 -0
  192. customeranalytics/web/app/base/static/assets/js/modules/flatpickr.js +4 -0
  193. customeranalytics/web/app/base/static/assets/js/modules/moment.js +4 -0
  194. customeranalytics/web/app/base/static/assets/js/modules/sidebar.js +23 -0
  195. customeranalytics/web/app/base/static/assets/js/modules/theme.js +16 -0
  196. customeranalytics/web/app/base/templates/accounts/login.html +81 -0
  197. customeranalytics/web/app/base/templates/accounts/register.html +80 -0
  198. customeranalytics/web/app/base/templates/includes/footer.html +28 -0
  199. customeranalytics/web/app/base/templates/includes/navigation.html +51 -0
  200. customeranalytics/web/app/base/templates/includes/scripts.html +3 -0
  201. customeranalytics/web/app/base/templates/includes/sidebar.html +146 -0
  202. customeranalytics/web/app/base/templates/layouts/base-fullscreen.html +36 -0
  203. customeranalytics/web/app/base/templates/layouts/base.html +84 -0
  204. customeranalytics/web/app/base/util.py +30 -0
  205. customeranalytics/web/app/home/__init__.py +9 -0
  206. customeranalytics/web/app/home/forms.py +1039 -0
  207. customeranalytics/web/app/home/models.py +438 -0
  208. customeranalytics/web/app/home/profiles.py +310 -0
  209. customeranalytics/web/app/home/routes.py +386 -0
  210. customeranalytics/web/app/home/search.py +288 -0
  211. customeranalytics/web/app/home/static/assets/img/avatars/avatar-1.png +0 -0
  212. customeranalytics/web/app/home/static/assets/img/avatars/avatar-2.png +0 -0
  213. customeranalytics/web/app/home/static/assets/img/avatars/avatar-3.png +0 -0
  214. customeranalytics/web/app/home/static/assets/img/avatars/avatar-4.png +0 -0
  215. customeranalytics/web/app/home/static/assets/img/avatars/avatar-5.png +0 -0
  216. customeranalytics/web/app/home/static/assets/img/icons/customanality.png +0 -0
  217. customeranalytics/web/app/home/static/assets/img/icons/icon-48x48.png +0 -0
  218. customeranalytics/web/app/home/templates/abtest-product.html +280 -0
  219. customeranalytics/web/app/home/templates/abtest-promotion.html +362 -0
  220. customeranalytics/web/app/home/templates/abtest-segments.html +298 -0
  221. customeranalytics/web/app/home/templates/add-data-delivery.html +184 -0
  222. customeranalytics/web/app/home/templates/add-data-product.html +177 -0
  223. customeranalytics/web/app/home/templates/add-data-purchase.html +392 -0
  224. customeranalytics/web/app/home/templates/anomaly.html +261 -0
  225. customeranalytics/web/app/home/templates/clv.html +211 -0
  226. customeranalytics/web/app/home/templates/cohorts.html +308 -0
  227. customeranalytics/web/app/home/templates/customer-segmentation.html +308 -0
  228. customeranalytics/web/app/home/templates/data-es.html +152 -0
  229. customeranalytics/web/app/home/templates/data-execute.html +397 -0
  230. customeranalytics/web/app/home/templates/delivery.html +404 -0
  231. customeranalytics/web/app/home/templates/funnel-customer.html +240 -0
  232. customeranalytics/web/app/home/templates/funnel-session.html +236 -0
  233. customeranalytics/web/app/home/templates/index.html +524 -0
  234. customeranalytics/web/app/home/templates/index2.html +515 -0
  235. customeranalytics/web/app/home/templates/page-403.html +46 -0
  236. customeranalytics/web/app/home/templates/page-404.html +45 -0
  237. customeranalytics/web/app/home/templates/page-500.html +45 -0
  238. customeranalytics/web/app/home/templates/pages-blank.html +33 -0
  239. customeranalytics/web/app/home/templates/pages-sign-in.html +67 -0
  240. customeranalytics/web/app/home/templates/pages-sign-up.html +61 -0
  241. customeranalytics/web/app/home/templates/product.html +203 -0
  242. customeranalytics/web/app/home/templates/profile.html +1009 -0
  243. customeranalytics/web/app/home/templates/rfm.html +254 -0
  244. customeranalytics/web/app/home/templates/search.html +167 -0
  245. customeranalytics/web/app/home/templates/settings.html +205 -0
  246. customeranalytics/web/app/home/templates/stats-desc.html +230 -0
  247. customeranalytics/web/app/home/templates/stats-purchase.html +221 -0
  248. customeranalytics/web/config.py +30 -0
  249. customeranalytics/web/db.sqlite3 +0 -0
  250. customeranalytics/web/run.py +30 -0
  251. customeranalytics-0.1.dist-info/METADATA +1102 -0
  252. customeranalytics-0.1.dist-info/RECORD +254 -0
  253. customeranalytics-0.1.dist-info/WHEEL +4 -0
  254. customeranalytics-0.1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,556 @@
1
+ /* flatpickr v4.6.6, @license MIT */
2
+
3
+ /*!
4
+ * Bootstrap v5.0.0-alpha2 (https://getbootstrap.com/)
5
+ * Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
7
+ */
8
+
9
+ /*!
10
+ Copyright (c) 2016 Jed Watson.
11
+ Licensed under the MIT License (MIT), see
12
+ http://jedwatson.github.io/classnames
13
+ */
14
+
15
+ /*!
16
+ * Chart.js v2.9.4
17
+ * https://www.chartjs.org
18
+ * (c) 2020 Chart.js Contributors
19
+ * Released under the MIT License
20
+ */
21
+
22
+ /*! *****************************************************************************
23
+ Copyright (c) Microsoft Corporation.
24
+
25
+ Permission to use, copy, modify, and/or distribute this software for any
26
+ purpose with or without fee is hereby granted.
27
+
28
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
29
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
30
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
31
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
32
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
33
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
34
+ PERFORMANCE OF THIS SOFTWARE.
35
+ ***************************************************************************** */
36
+
37
+ /*! ../../internals/path */
38
+
39
+ /*! ../../modules/es.array.from */
40
+
41
+ /*! ../../modules/es.string.iterator */
42
+
43
+ /*! ../dist/icons.json */
44
+
45
+ /*! ../internals/a-function */
46
+
47
+ /*! ../internals/an-object */
48
+
49
+ /*! ../internals/array-from */
50
+
51
+ /*! ../internals/array-includes */
52
+
53
+ /*! ../internals/bind-context */
54
+
55
+ /*! ../internals/call-with-safe-iteration-closing */
56
+
57
+ /*! ../internals/check-correctness-of-iteration */
58
+
59
+ /*! ../internals/classof */
60
+
61
+ /*! ../internals/classof-raw */
62
+
63
+ /*! ../internals/copy-constructor-properties */
64
+
65
+ /*! ../internals/correct-prototype-getter */
66
+
67
+ /*! ../internals/create-iterator-constructor */
68
+
69
+ /*! ../internals/create-property */
70
+
71
+ /*! ../internals/create-property-descriptor */
72
+
73
+ /*! ../internals/define-iterator */
74
+
75
+ /*! ../internals/descriptors */
76
+
77
+ /*! ../internals/document-create-element */
78
+
79
+ /*! ../internals/enum-bug-keys */
80
+
81
+ /*! ../internals/export */
82
+
83
+ /*! ../internals/fails */
84
+
85
+ /*! ../internals/function-to-string */
86
+
87
+ /*! ../internals/get-iterator-method */
88
+
89
+ /*! ../internals/global */
90
+
91
+ /*! ../internals/has */
92
+
93
+ /*! ../internals/hidden-keys */
94
+
95
+ /*! ../internals/hide */
96
+
97
+ /*! ../internals/html */
98
+
99
+ /*! ../internals/ie8-dom-define */
100
+
101
+ /*! ../internals/indexed-object */
102
+
103
+ /*! ../internals/internal-state */
104
+
105
+ /*! ../internals/is-array-iterator-method */
106
+
107
+ /*! ../internals/is-forced */
108
+
109
+ /*! ../internals/is-object */
110
+
111
+ /*! ../internals/is-pure */
112
+
113
+ /*! ../internals/iterators */
114
+
115
+ /*! ../internals/iterators-core */
116
+
117
+ /*! ../internals/native-symbol */
118
+
119
+ /*! ../internals/native-weak-map */
120
+
121
+ /*! ../internals/object-create */
122
+
123
+ /*! ../internals/object-define-properties */
124
+
125
+ /*! ../internals/object-define-property */
126
+
127
+ /*! ../internals/object-get-own-property-descriptor */
128
+
129
+ /*! ../internals/object-get-own-property-names */
130
+
131
+ /*! ../internals/object-get-own-property-symbols */
132
+
133
+ /*! ../internals/object-get-prototype-of */
134
+
135
+ /*! ../internals/object-keys */
136
+
137
+ /*! ../internals/object-keys-internal */
138
+
139
+ /*! ../internals/object-property-is-enumerable */
140
+
141
+ /*! ../internals/object-set-prototype-of */
142
+
143
+ /*! ../internals/own-keys */
144
+
145
+ /*! ../internals/redefine */
146
+
147
+ /*! ../internals/require-object-coercible */
148
+
149
+ /*! ../internals/set-global */
150
+
151
+ /*! ../internals/set-to-string-tag */
152
+
153
+ /*! ../internals/shared */
154
+
155
+ /*! ../internals/shared-key */
156
+
157
+ /*! ../internals/string-at */
158
+
159
+ /*! ../internals/to-absolute-index */
160
+
161
+ /*! ../internals/to-indexed-object */
162
+
163
+ /*! ../internals/to-integer */
164
+
165
+ /*! ../internals/to-length */
166
+
167
+ /*! ../internals/to-object */
168
+
169
+ /*! ../internals/to-primitive */
170
+
171
+ /*! ../internals/uid */
172
+
173
+ /*! ../internals/validate-set-prototype-of-arguments */
174
+
175
+ /*! ../internals/well-known-symbol */
176
+
177
+ /*! ./../../webpack/buildin/global.js */
178
+
179
+ /*! ./default-attrs.json */
180
+
181
+ /*! ./icon */
182
+
183
+ /*! ./icons */
184
+
185
+ /*! ./replace */
186
+
187
+ /*! ./tags.json */
188
+
189
+ /*! ./to-svg */
190
+
191
+ /*! /home/travis/build/feathericons/feather/src/index.js */
192
+
193
+ /*! classnames/dedupe */
194
+
195
+ /*! core-js/es/array/from */
196
+
197
+ /*! exports provided: activity, airplay, alert-circle, alert-octagon, alert-triangle, align-center, align-justify, align-left, align-right, anchor, aperture, archive, arrow-down-circle, arrow-down-left, arrow-down-right, arrow-down, arrow-left-circle, arrow-left, arrow-right-circle, arrow-right, arrow-up-circle, arrow-up-left, arrow-up-right, arrow-up, at-sign, award, bar-chart-2, bar-chart, battery-charging, battery, bell-off, bell, bluetooth, bold, book-open, book, bookmark, box, briefcase, calendar, camera-off, camera, cast, check-circle, check-square, check, chevron-down, chevron-left, chevron-right, chevron-up, chevrons-down, chevrons-left, chevrons-right, chevrons-up, chrome, circle, clipboard, clock, cloud-drizzle, cloud-lightning, cloud-off, cloud-rain, cloud-snow, cloud, code, codepen, codesandbox, coffee, columns, command, compass, copy, corner-down-left, corner-down-right, corner-left-down, corner-left-up, corner-right-down, corner-right-up, corner-up-left, corner-up-right, cpu, credit-card, crop, crosshair, database, delete, disc, divide-circle, divide-square, divide, dollar-sign, download-cloud, download, dribbble, droplet, edit-2, edit-3, edit, external-link, eye-off, eye, facebook, fast-forward, feather, figma, file-minus, file-plus, file-text, file, film, filter, flag, folder-minus, folder-plus, folder, framer, frown, gift, git-branch, git-commit, git-merge, git-pull-request, github, gitlab, globe, grid, hard-drive, hash, headphones, heart, help-circle, hexagon, home, image, inbox, info, instagram, italic, key, layers, layout, life-buoy, link-2, link, linkedin, list, loader, lock, log-in, log-out, mail, map-pin, map, maximize-2, maximize, meh, menu, message-circle, message-square, mic-off, mic, minimize-2, minimize, minus-circle, minus-square, minus, monitor, moon, more-horizontal, more-vertical, mouse-pointer, move, music, navigation-2, navigation, octagon, package, paperclip, pause-circle, pause, pen-tool, percent, phone-call, phone-forwarded, phone-incoming, phone-missed, phone-off, phone-outgoing, phone, pie-chart, play-circle, play, plus-circle, plus-square, plus, pocket, power, printer, radio, refresh-ccw, refresh-cw, repeat, rewind, rotate-ccw, rotate-cw, rss, save, scissors, search, send, server, settings, share-2, share, shield-off, shield, shopping-bag, shopping-cart, shuffle, sidebar, skip-back, skip-forward, slack, slash, sliders, smartphone, smile, speaker, square, star, stop-circle, sun, sunrise, sunset, tablet, tag, target, terminal, thermometer, thumbs-down, thumbs-up, toggle-left, toggle-right, tool, trash-2, trash, trello, trending-down, trending-up, triangle, truck, tv, twitch, twitter, type, umbrella, underline, unlock, upload-cloud, upload, user-check, user-minus, user-plus, user-x, user, users, video-off, video, voicemail, volume-1, volume-2, volume-x, volume, watch, wifi-off, wifi, wind, x-circle, x-octagon, x-square, x, youtube, zap-off, zap, zoom-in, zoom-out, default */
198
+
199
+ /*! exports provided: activity, airplay, alert-circle, alert-octagon, alert-triangle, align-center, align-justify, align-left, align-right, anchor, archive, at-sign, award, aperture, bar-chart, bar-chart-2, battery, battery-charging, bell, bell-off, bluetooth, book-open, book, bookmark, box, briefcase, calendar, camera, cast, circle, clipboard, clock, cloud-drizzle, cloud-lightning, cloud-rain, cloud-snow, cloud, codepen, codesandbox, code, coffee, columns, command, compass, copy, corner-down-left, corner-down-right, corner-left-down, corner-left-up, corner-right-down, corner-right-up, corner-up-left, corner-up-right, cpu, credit-card, crop, crosshair, database, delete, disc, dollar-sign, droplet, edit, edit-2, edit-3, eye, eye-off, external-link, facebook, fast-forward, figma, file-minus, file-plus, file-text, film, filter, flag, folder-minus, folder-plus, folder, framer, frown, gift, git-branch, git-commit, git-merge, git-pull-request, github, gitlab, globe, hard-drive, hash, headphones, heart, help-circle, hexagon, home, image, inbox, instagram, key, layers, layout, life-bouy, link, link-2, linkedin, list, lock, log-in, log-out, mail, map-pin, map, maximize, maximize-2, meh, menu, message-circle, message-square, mic-off, mic, minimize, minimize-2, minus, monitor, moon, more-horizontal, more-vertical, mouse-pointer, move, music, navigation, navigation-2, octagon, package, paperclip, pause, pause-circle, pen-tool, percent, phone-call, phone-forwarded, phone-incoming, phone-missed, phone-off, phone-outgoing, phone, play, pie-chart, play-circle, plus, plus-circle, plus-square, pocket, power, printer, radio, refresh-cw, refresh-ccw, repeat, rewind, rotate-ccw, rotate-cw, rss, save, scissors, search, send, settings, share-2, shield, shield-off, shopping-bag, shopping-cart, shuffle, skip-back, skip-forward, slack, slash, sliders, smartphone, smile, speaker, star, stop-circle, sun, sunrise, sunset, tablet, tag, target, terminal, thermometer, thumbs-down, thumbs-up, toggle-left, toggle-right, tool, trash, trash-2, triangle, truck, tv, twitch, twitter, type, umbrella, unlock, user-check, user-minus, user-plus, user-x, user, users, video-off, video, voicemail, volume, volume-1, volume-2, volume-x, watch, wifi-off, wifi, wind, x-circle, x-octagon, x-square, x, youtube, zap-off, zap, zoom-in, zoom-out, default */
200
+
201
+ /*! exports provided: xmlns, width, height, viewBox, fill, stroke, stroke-width, stroke-linecap, stroke-linejoin, default */
202
+
203
+ /*! no static exports found */
204
+
205
+ /*!*********************!*\
206
+ !*** ./src/icon.js ***!
207
+ \*********************/
208
+
209
+ /*!**********************!*\
210
+ !*** ./src/icons.js ***!
211
+ \**********************/
212
+
213
+ /*!**********************!*\
214
+ !*** ./src/index.js ***!
215
+ \**********************/
216
+
217
+ /*!***********************!*\
218
+ !*** ./src/tags.json ***!
219
+ \***********************/
220
+
221
+ /*!***********************!*\
222
+ !*** ./src/to-svg.js ***!
223
+ \***********************/
224
+
225
+ /*!************************!*\
226
+ !*** ./src/replace.js ***!
227
+ \************************/
228
+
229
+ /*!*************************!*\
230
+ !*** ./dist/icons.json ***!
231
+ \*************************/
232
+
233
+ /*!********************************!*\
234
+ !*** ./src/default-attrs.json ***!
235
+ \********************************/
236
+
237
+ /*!***********************************!*\
238
+ !*** (webpack)/buildin/global.js ***!
239
+ \***********************************/
240
+
241
+ /*!*******************************************!*\
242
+ !*** ./node_modules/classnames/dedupe.js ***!
243
+ \*******************************************/
244
+
245
+ /*!***********************************************!*\
246
+ !*** ./node_modules/core-js/es/array/from.js ***!
247
+ \***********************************************/
248
+
249
+ /*!***********************************************!*\
250
+ !*** ./node_modules/core-js/internals/has.js ***!
251
+ \***********************************************/
252
+
253
+ /*!***********************************************!*\
254
+ !*** ./node_modules/core-js/internals/uid.js ***!
255
+ \***********************************************/
256
+
257
+ /*!************************************************!*\
258
+ !*** ./node_modules/core-js/internals/hide.js ***!
259
+ \************************************************/
260
+
261
+ /*!************************************************!*\
262
+ !*** ./node_modules/core-js/internals/html.js ***!
263
+ \************************************************/
264
+
265
+ /*!************************************************!*\
266
+ !*** ./node_modules/core-js/internals/path.js ***!
267
+ \************************************************/
268
+
269
+ /*!*************************************************!*\
270
+ !*** ./node_modules/core-js/internals/fails.js ***!
271
+ \*************************************************/
272
+
273
+ /*!**************************************************!*\
274
+ !*** ./node_modules/core-js/internals/export.js ***!
275
+ \**************************************************/
276
+
277
+ /*!**************************************************!*\
278
+ !*** ./node_modules/core-js/internals/global.js ***!
279
+ \**************************************************/
280
+
281
+ /*!**************************************************!*\
282
+ !*** ./node_modules/core-js/internals/shared.js ***!
283
+ \**************************************************/
284
+
285
+ /*!**************************************************!*\
286
+ !*** multi core-js/es/array/from ./src/index.js ***!
287
+ \**************************************************/
288
+
289
+ /*!***************************************************!*\
290
+ !*** ./node_modules/core-js/internals/classof.js ***!
291
+ \***************************************************/
292
+
293
+ /*!***************************************************!*\
294
+ !*** ./node_modules/core-js/internals/is-pure.js ***!
295
+ \***************************************************/
296
+
297
+ /*!****************************************************!*\
298
+ !*** ./node_modules/core-js/internals/own-keys.js ***!
299
+ \****************************************************/
300
+
301
+ /*!****************************************************!*\
302
+ !*** ./node_modules/core-js/internals/redefine.js ***!
303
+ \****************************************************/
304
+
305
+ /*!*****************************************************!*\
306
+ !*** ./node_modules/core-js/internals/an-object.js ***!
307
+ \*****************************************************/
308
+
309
+ /*!*****************************************************!*\
310
+ !*** ./node_modules/core-js/internals/is-forced.js ***!
311
+ \*****************************************************/
312
+
313
+ /*!*****************************************************!*\
314
+ !*** ./node_modules/core-js/internals/is-object.js ***!
315
+ \*****************************************************/
316
+
317
+ /*!*****************************************************!*\
318
+ !*** ./node_modules/core-js/internals/iterators.js ***!
319
+ \*****************************************************/
320
+
321
+ /*!*****************************************************!*\
322
+ !*** ./node_modules/core-js/internals/string-at.js ***!
323
+ \*****************************************************/
324
+
325
+ /*!*****************************************************!*\
326
+ !*** ./node_modules/core-js/internals/to-length.js ***!
327
+ \*****************************************************/
328
+
329
+ /*!*****************************************************!*\
330
+ !*** ./node_modules/core-js/internals/to-object.js ***!
331
+ \*****************************************************/
332
+
333
+ /*!******************************************************!*\
334
+ !*** ./node_modules/core-js/internals/a-function.js ***!
335
+ \******************************************************/
336
+
337
+ /*!******************************************************!*\
338
+ !*** ./node_modules/core-js/internals/array-from.js ***!
339
+ \******************************************************/
340
+
341
+ /*!******************************************************!*\
342
+ !*** ./node_modules/core-js/internals/set-global.js ***!
343
+ \******************************************************/
344
+
345
+ /*!******************************************************!*\
346
+ !*** ./node_modules/core-js/internals/shared-key.js ***!
347
+ \******************************************************/
348
+
349
+ /*!******************************************************!*\
350
+ !*** ./node_modules/core-js/internals/to-integer.js ***!
351
+ \******************************************************/
352
+
353
+ /*!*******************************************************!*\
354
+ !*** ./node_modules/core-js/internals/classof-raw.js ***!
355
+ \*******************************************************/
356
+
357
+ /*!*******************************************************!*\
358
+ !*** ./node_modules/core-js/internals/descriptors.js ***!
359
+ \*******************************************************/
360
+
361
+ /*!*******************************************************!*\
362
+ !*** ./node_modules/core-js/internals/hidden-keys.js ***!
363
+ \*******************************************************/
364
+
365
+ /*!*******************************************************!*\
366
+ !*** ./node_modules/core-js/internals/object-keys.js ***!
367
+ \*******************************************************/
368
+
369
+ /*!*******************************************************!*\
370
+ !*** ./node_modules/core-js/modules/es.array.from.js ***!
371
+ \*******************************************************/
372
+
373
+ /*!********************************************************!*\
374
+ !*** ./node_modules/core-js/internals/bind-context.js ***!
375
+ \********************************************************/
376
+
377
+ /*!********************************************************!*\
378
+ !*** ./node_modules/core-js/internals/to-primitive.js ***!
379
+ \********************************************************/
380
+
381
+ /*!*********************************************************!*\
382
+ !*** ./node_modules/core-js/internals/enum-bug-keys.js ***!
383
+ \*********************************************************/
384
+
385
+ /*!*********************************************************!*\
386
+ !*** ./node_modules/core-js/internals/native-symbol.js ***!
387
+ \*********************************************************/
388
+
389
+ /*!*********************************************************!*\
390
+ !*** ./node_modules/core-js/internals/object-create.js ***!
391
+ \*********************************************************/
392
+
393
+ /*!**********************************************************!*\
394
+ !*** ./node_modules/core-js/internals/array-includes.js ***!
395
+ \**********************************************************/
396
+
397
+ /*!**********************************************************!*\
398
+ !*** ./node_modules/core-js/internals/ie8-dom-define.js ***!
399
+ \**********************************************************/
400
+
401
+ /*!**********************************************************!*\
402
+ !*** ./node_modules/core-js/internals/indexed-object.js ***!
403
+ \**********************************************************/
404
+
405
+ /*!**********************************************************!*\
406
+ !*** ./node_modules/core-js/internals/internal-state.js ***!
407
+ \**********************************************************/
408
+
409
+ /*!**********************************************************!*\
410
+ !*** ./node_modules/core-js/internals/iterators-core.js ***!
411
+ \**********************************************************/
412
+
413
+ /*!***********************************************************!*\
414
+ !*** ./node_modules/core-js/internals/create-property.js ***!
415
+ \***********************************************************/
416
+
417
+ /*!***********************************************************!*\
418
+ !*** ./node_modules/core-js/internals/define-iterator.js ***!
419
+ \***********************************************************/
420
+
421
+ /*!***********************************************************!*\
422
+ !*** ./node_modules/core-js/internals/native-weak-map.js ***!
423
+ \***********************************************************/
424
+
425
+ /*!************************************************************!*\
426
+ !*** ./node_modules/core-js/modules/es.string.iterator.js ***!
427
+ \************************************************************/
428
+
429
+ /*!*************************************************************!*\
430
+ !*** ./node_modules/core-js/internals/set-to-string-tag.js ***!
431
+ \*************************************************************/
432
+
433
+ /*!*************************************************************!*\
434
+ !*** ./node_modules/core-js/internals/to-absolute-index.js ***!
435
+ \*************************************************************/
436
+
437
+ /*!*************************************************************!*\
438
+ !*** ./node_modules/core-js/internals/to-indexed-object.js ***!
439
+ \*************************************************************/
440
+
441
+ /*!*************************************************************!*\
442
+ !*** ./node_modules/core-js/internals/well-known-symbol.js ***!
443
+ \*************************************************************/
444
+
445
+ /*!**************************************************************!*\
446
+ !*** ./node_modules/core-js/internals/function-to-string.js ***!
447
+ \**************************************************************/
448
+
449
+ /*!***************************************************************!*\
450
+ !*** ./node_modules/core-js/internals/get-iterator-method.js ***!
451
+ \***************************************************************/
452
+
453
+ /*!****************************************************************!*\
454
+ !*** ./node_modules/core-js/internals/object-keys-internal.js ***!
455
+ \****************************************************************/
456
+
457
+ /*!******************************************************************!*\
458
+ !*** ./node_modules/core-js/internals/object-define-property.js ***!
459
+ \******************************************************************/
460
+
461
+ /*!*******************************************************************!*\
462
+ !*** ./node_modules/core-js/internals/document-create-element.js ***!
463
+ \*******************************************************************/
464
+
465
+ /*!*******************************************************************!*\
466
+ !*** ./node_modules/core-js/internals/object-get-prototype-of.js ***!
467
+ \*******************************************************************/
468
+
469
+ /*!*******************************************************************!*\
470
+ !*** ./node_modules/core-js/internals/object-set-prototype-of.js ***!
471
+ \*******************************************************************/
472
+
473
+ /*!********************************************************************!*\
474
+ !*** ./node_modules/core-js/internals/correct-prototype-getter.js ***!
475
+ \********************************************************************/
476
+
477
+ /*!********************************************************************!*\
478
+ !*** ./node_modules/core-js/internals/is-array-iterator-method.js ***!
479
+ \********************************************************************/
480
+
481
+ /*!********************************************************************!*\
482
+ !*** ./node_modules/core-js/internals/object-define-properties.js ***!
483
+ \********************************************************************/
484
+
485
+ /*!********************************************************************!*\
486
+ !*** ./node_modules/core-js/internals/require-object-coercible.js ***!
487
+ \********************************************************************/
488
+
489
+ /*!**********************************************************************!*\
490
+ !*** ./node_modules/core-js/internals/create-property-descriptor.js ***!
491
+ \**********************************************************************/
492
+
493
+ /*!***********************************************************************!*\
494
+ !*** ./node_modules/core-js/internals/copy-constructor-properties.js ***!
495
+ \***********************************************************************/
496
+
497
+ /*!***********************************************************************!*\
498
+ !*** ./node_modules/core-js/internals/create-iterator-constructor.js ***!
499
+ \***********************************************************************/
500
+
501
+ /*!*************************************************************************!*\
502
+ !*** ./node_modules/core-js/internals/object-get-own-property-names.js ***!
503
+ \*************************************************************************/
504
+
505
+ /*!*************************************************************************!*\
506
+ !*** ./node_modules/core-js/internals/object-property-is-enumerable.js ***!
507
+ \*************************************************************************/
508
+
509
+ /*!**************************************************************************!*\
510
+ !*** ./node_modules/core-js/internals/check-correctness-of-iteration.js ***!
511
+ \**************************************************************************/
512
+
513
+ /*!***************************************************************************!*\
514
+ !*** ./node_modules/core-js/internals/object-get-own-property-symbols.js ***!
515
+ \***************************************************************************/
516
+
517
+ /*!****************************************************************************!*\
518
+ !*** ./node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
519
+ \****************************************************************************/
520
+
521
+ /*!******************************************************************************!*\
522
+ !*** ./node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
523
+ \******************************************************************************/
524
+
525
+ /*!*******************************************************************************!*\
526
+ !*** ./node_modules/core-js/internals/validate-set-prototype-of-arguments.js ***!
527
+ \*******************************************************************************/
528
+
529
+ /**!
530
+ * @fileOverview Kickass library to create and place poppers near their reference elements.
531
+ * @version 1.16.1
532
+ * @license
533
+ * Copyright (c) 2016 Federico Zivolo and contributors
534
+ *
535
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
536
+ * of this software and associated documentation files (the "Software"), to deal
537
+ * in the Software without restriction, including without limitation the rights
538
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
539
+ * copies of the Software, and to permit persons to whom the Software is
540
+ * furnished to do so, subject to the following conditions:
541
+ *
542
+ * The above copyright notice and this permission notice shall be included in all
543
+ * copies or substantial portions of the Software.
544
+ *
545
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
546
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
547
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
548
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
549
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
550
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
551
+ * SOFTWARE.
552
+ */
553
+
554
+ //! moment.js
555
+
556
+ //! moment.js locale configuration
@@ -0,0 +1,15 @@
1
+ import { Tooltip, Popover } from "bootstrap";
2
+
3
+ // Popovers
4
+ // Note: Disable this if you're not using Bootstrap's Popovers
5
+ const popoverTriggerList = [].slice.call(document.querySelectorAll("[data-toggle=\"popover\"]"))
6
+ popoverTriggerList.map((popoverTriggerEl) => {
7
+ return new Popover(popoverTriggerEl)
8
+ })
9
+
10
+ // Tooltips
11
+ // Note: Disable this if you're not using Bootstrap's Tooltips
12
+ const tooltipTriggerList = [].slice.call(document.querySelectorAll("[data-toggle=\"tooltip\"]"))
13
+ tooltipTriggerList.map((tooltipTriggerEl) => {
14
+ return new Tooltip(tooltipTriggerEl)
15
+ })
@@ -0,0 +1,4 @@
1
+ // Usage: https://www.chartjs.org/
2
+ import Chart from "chart.js";
3
+
4
+ window.Chart = Chart;
@@ -0,0 +1,8 @@
1
+ // Usage: https://feathericons.com/
2
+ import feather from "feather-icons";
3
+
4
+ document.addEventListener("DOMContentLoaded", () => {
5
+ feather.replace();
6
+ });
7
+
8
+ window.feather = feather;
@@ -0,0 +1,4 @@
1
+ // Usage: https://flatpickr.js.org/
2
+ import flatpickr from "flatpickr";
3
+
4
+ window.flatpickr = flatpickr;
@@ -0,0 +1,4 @@
1
+ // Usage: https://momentjs.com/
2
+ import moment from "moment";
3
+
4
+ window.moment = moment;
@@ -0,0 +1,23 @@
1
+ // Usage: https://github.com/Grsmto/simplebar
2
+ import SimpleBar from "simplebar";
3
+
4
+ document.addEventListener("DOMContentLoaded", () => {
5
+ const simpleBarElement = document.getElementsByClassName("js-simplebar")[0];
6
+
7
+ if(simpleBarElement){
8
+ /* Initialize simplebar */
9
+ new SimpleBar(document.getElementsByClassName("js-simplebar")[0])
10
+
11
+ const sidebarElement = document.getElementsByClassName("sidebar")[0];
12
+ const sidebarToggleElement = document.getElementsByClassName("sidebar-toggle")[0];
13
+
14
+ sidebarToggleElement.addEventListener("click", () => {
15
+ sidebarElement.classList.toggle("collapsed");
16
+
17
+ sidebarElement.addEventListener("transitionend", () => {
18
+ window.dispatchEvent(new Event("resize"));
19
+ });
20
+ });
21
+ }
22
+
23
+ });
@@ -0,0 +1,16 @@
1
+ /*
2
+ * Add color theme colors to the window object
3
+ * so this can be used by the charts and vector maps
4
+ */
5
+
6
+ const theme = {
7
+ primary: "#3B7DDD",
8
+ secondary: "#6c757d",
9
+ success: "#28a745",
10
+ info: "#17a2b8",
11
+ warning: "#ffc107",
12
+ danger: "#dc3545"
13
+ };
14
+
15
+ // Add theme to the window object
16
+ window.theme = theme;