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