disco_app 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +37 -0
- data/app/assets/components/disco_app/buttons/model-destroy-button.es6.jsx +31 -0
- data/app/assets/components/disco_app/forms/model-form.es6.jsx +64 -0
- data/app/assets/components/embedded_app/bar.es6.jsx +31 -0
- data/app/assets/components/shopify/buttons/_buttons.scss +546 -0
- data/app/assets/components/shopify/buttons/button.es6.jsx +15 -0
- data/app/assets/components/shopify/card/_card.scss +342 -0
- data/app/assets/components/shopify/card/card-header.es6.jsx +34 -0
- data/app/assets/components/shopify/card/card-section.es6.jsx +26 -0
- data/app/assets/components/shopify/card/card.es6.jsx +16 -0
- data/app/assets/components/shopify/typography/_typography.scss +23 -0
- data/app/assets/components/shopify/typography/ui-heading.es6.jsx +16 -0
- data/app/assets/components/shopify/ui-layout/_ui-layout.scss +157 -0
- data/app/assets/components/shopify/ui-layout/ui-annotated-section.es6.jsx +29 -0
- data/app/assets/components/shopify/ui-layout/ui-empty-state.es6.jsx +35 -0
- data/app/assets/components/shopify/ui-layout/ui-footer-help.es6.jsx +13 -0
- data/app/assets/components/shopify/ui-layout/ui-layout-item.es6.jsx +11 -0
- data/app/assets/components/shopify/ui-layout/ui-layout-section.es6.jsx +19 -0
- data/app/assets/components/shopify/ui-layout/ui-layout-sections.es6.jsx +11 -0
- data/app/assets/components/shopify/ui-layout/ui-layout.es6.jsx +11 -0
- data/app/assets/components/shopify/ui-layout/ui-page-actions.es6.jsx +13 -0
- data/app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx +27 -0
- data/app/assets/components/shopify/ui-stack/_ui-stack.scss +39 -0
- data/app/assets/components/shopify/ui-stack/ui-stack-item.es6.jsx +21 -0
- data/app/assets/components/shopify/ui-stack/ui-stack.es6.jsx +24 -0
- data/app/assets/images/disco_app/icon.svg +1 -0
- data/app/assets/images/disco_app/icons.svg +0 -0
- data/app/assets/javascripts/disco_app/components/custom/filterable_shop_list.js.jsx +61 -0
- data/app/assets/javascripts/disco_app/components/custom/inline-radio-options.es6.jsx +59 -0
- data/app/assets/javascripts/disco_app/components/custom/rules-editor.es6.jsx +432 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_filter_query.js.jsx +13 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx +34 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_filter_tabs.js.jsx +21 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_list.js.jsx +142 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_row.js.jsx +43 -0
- data/app/assets/javascripts/disco_app/components/custom/shopify_admin_link.js.jsx +29 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/base_form.es6.jsx +72 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/base_input.es6.jsx +20 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-checkbox.es6.jsx +30 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-radio.es6.jsx +30 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-select.es6.jsx +45 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-text.es6.jsx +69 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-textarea.es6.jsx +48 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-time.es6.jsx +7 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/ui-form__element.es6.jsx +17 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/ui-form__group.es6.jsx +11 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/ui-form__section.es6.jsx +11 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/icons/icon-chevron.es6.jsx +33 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/icons/next-icon.es6.jsx +18 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/input_select.es6.jsx +21 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx +27 -0
- data/app/assets/javascripts/disco_app/components.js +3 -0
- data/app/assets/javascripts/disco_app/disco_app.js +9 -0
- data/app/assets/javascripts/disco_app/frame.js +152 -0
- data/app/assets/javascripts/disco_app/shopify-turbolinks.js +7 -0
- data/app/assets/javascripts/disco_app/ui-kit.js +1 -0
- data/app/assets/stylesheets/disco_app/admin/_header.scss +75 -0
- data/app/assets/stylesheets/disco_app/admin/_layout.scss +32 -0
- data/app/assets/stylesheets/disco_app/admin/_nav.scss +184 -0
- data/app/assets/stylesheets/disco_app/admin.scss +11 -0
- data/app/assets/stylesheets/disco_app/disco_app.scss +24 -0
- data/app/assets/stylesheets/disco_app/frame/_buttons.scss +54 -0
- data/app/assets/stylesheets/disco_app/frame/_forms.scss +26 -0
- data/app/assets/stylesheets/disco_app/frame/_layout.scss +77 -0
- data/app/assets/stylesheets/disco_app/frame/_type.scss +25 -0
- data/app/assets/stylesheets/disco_app/frame.scss +10 -0
- data/app/assets/stylesheets/disco_app/mixins/_flexbox.scss +400 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-forms.scss +69 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-icons.scss +28 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-kit.scss +5116 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-layout.scss +15 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-tabs.scss +75 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-type.scss +13 -0
- data/app/controllers/disco_app/admin/app_settings_controller.rb +3 -0
- data/app/controllers/disco_app/admin/application_controller.rb +3 -0
- data/app/controllers/disco_app/admin/concerns/app_settings_controller.rb +24 -0
- data/app/controllers/disco_app/admin/concerns/authenticated_controller.rb +20 -0
- data/app/controllers/disco_app/admin/concerns/plans_controller.rb +54 -0
- data/app/controllers/disco_app/admin/concerns/shops_controller.rb +7 -0
- data/app/controllers/disco_app/admin/concerns/subscriptions_controller.rb +29 -0
- data/app/controllers/disco_app/admin/plans_controller.rb +3 -0
- data/app/controllers/disco_app/admin/resources/shops_controller.rb +3 -0
- data/app/controllers/disco_app/admin/shops_controller.rb +3 -0
- data/app/controllers/disco_app/admin/subscriptions_controller.rb +3 -0
- data/app/controllers/disco_app/charges_controller.rb +47 -0
- data/app/controllers/disco_app/concerns/app_proxy_controller.rb +40 -0
- data/app/controllers/disco_app/concerns/authenticated_controller.rb +56 -0
- data/app/controllers/disco_app/concerns/carrier_request_controller.rb +35 -0
- data/app/controllers/disco_app/frame_controller.rb +9 -0
- data/app/controllers/disco_app/install_controller.rb +27 -0
- data/app/controllers/disco_app/subscriptions_controller.rb +32 -0
- data/app/controllers/disco_app/webhooks_controller.rb +46 -0
- data/app/controllers/sessions_controller.rb +28 -0
- data/app/helpers/disco_app/application_helper.rb +68 -0
- data/app/jobs/disco_app/app_installed_job.rb +3 -0
- data/app/jobs/disco_app/app_uninstalled_job.rb +3 -0
- data/app/jobs/disco_app/concerns/app_installed_job.rb +39 -0
- data/app/jobs/disco_app/concerns/app_uninstalled_job.rb +20 -0
- data/app/jobs/disco_app/concerns/render_asset_group_job.rb +8 -0
- data/app/jobs/disco_app/concerns/shop_update_job.rb +13 -0
- data/app/jobs/disco_app/concerns/subscription_changed_job.rb +7 -0
- data/app/jobs/disco_app/concerns/synchronise_carrier_service_job.rb +55 -0
- data/app/jobs/disco_app/concerns/synchronise_resources_job.rb +12 -0
- data/app/jobs/disco_app/concerns/synchronise_webhooks_job.rb +52 -0
- data/app/jobs/disco_app/render_asset_group_job.rb +3 -0
- data/app/jobs/disco_app/shop_job.rb +27 -0
- data/app/jobs/disco_app/shop_update_job.rb +3 -0
- data/app/jobs/disco_app/subscription_changed_job.rb +3 -0
- data/app/jobs/disco_app/synchronise_carrier_service_job.rb +3 -0
- data/app/jobs/disco_app/synchronise_resources_job.rb +3 -0
- data/app/jobs/disco_app/synchronise_webhooks_job.rb +3 -0
- data/app/models/disco_app/app_settings.rb +3 -0
- data/app/models/disco_app/application_charge.rb +18 -0
- data/app/models/disco_app/concerns/app_settings.rb +7 -0
- data/app/models/disco_app/concerns/can_be_liquified.rb +45 -0
- data/app/models/disco_app/concerns/has_metafields.rb +48 -0
- data/app/models/disco_app/concerns/plan.rb +26 -0
- data/app/models/disco_app/concerns/plan_code.rb +15 -0
- data/app/models/disco_app/concerns/renders_assets.rb +166 -0
- data/app/models/disco_app/concerns/shop.rb +84 -0
- data/app/models/disco_app/concerns/subscription.rb +60 -0
- data/app/models/disco_app/concerns/synchronises.rb +58 -0
- data/app/models/disco_app/concerns/taggable.rb +16 -0
- data/app/models/disco_app/plan.rb +3 -0
- data/app/models/disco_app/plan_code.rb +3 -0
- data/app/models/disco_app/recurring_application_charge.rb +18 -0
- data/app/models/disco_app/session_storage.rb +18 -0
- data/app/models/disco_app/shop.rb +3 -0
- data/app/models/disco_app/subscription.rb +3 -0
- data/app/resources/disco_app/admin/resources/concerns/shop_resource.rb +100 -0
- data/app/resources/disco_app/admin/resources/shop_resource.rb +4 -0
- data/app/services/disco_app/carrier_request_service.rb +15 -0
- data/app/services/disco_app/charges_service.rb +81 -0
- data/app/services/disco_app/proxy_service.rb +17 -0
- data/app/services/disco_app/subscription_service.rb +46 -0
- data/app/services/disco_app/webhook_service.rb +30 -0
- data/app/views/disco_app/admin/app_settings/edit.html.erb +5 -0
- data/app/views/disco_app/admin/plans/_form.html.erb +72 -0
- data/app/views/disco_app/admin/plans/_plan_code_fields.html.erb +15 -0
- data/app/views/disco_app/admin/plans/edit.html.erb +7 -0
- data/app/views/disco_app/admin/plans/index.html.erb +43 -0
- data/app/views/disco_app/admin/plans/new.html.erb +7 -0
- data/app/views/disco_app/admin/shops/index.html.erb +13 -0
- data/app/views/disco_app/admin/subscriptions/edit.html.erb +33 -0
- data/app/views/disco_app/charges/activate.html.erb +1 -0
- data/app/views/disco_app/charges/create.html.erb +1 -0
- data/app/views/disco_app/charges/new.html.erb +23 -0
- data/app/views/disco_app/frame/frame.html.erb +36 -0
- data/app/views/disco_app/install/installing.html.erb +22 -0
- data/app/views/disco_app/install/uninstalling.html.erb +1 -0
- data/app/views/disco_app/proxy_errors/404.html.erb +1 -0
- data/app/views/disco_app/shared/_card.html.erb +14 -0
- data/app/views/disco_app/shared/_icons.html.erb +1 -0
- data/app/views/disco_app/shared/_section.html.erb +17 -0
- data/app/views/disco_app/subscriptions/new.html.erb +25 -0
- data/app/views/layouts/admin/_nav_items.erb +20 -0
- data/app/views/layouts/admin.html.erb +67 -0
- data/app/views/layouts/application.html.erb +18 -0
- data/app/views/layouts/embedded_app.html.erb +50 -0
- data/app/views/layouts/embedded_app_modal.html.erb +28 -0
- data/app/views/sessions/new.html.erb +28 -0
- data/config/routes.rb +63 -0
- data/db/migrate/20150525000000_create_shops_if_not_existent.rb +15 -0
- data/db/migrate/20150525162112_add_status_to_shops.rb +5 -0
- data/db/migrate/20150525171422_add_meta_to_shops.rb +11 -0
- data/db/migrate/20150629210346_add_charge_status_to_shop.rb +5 -0
- data/db/migrate/20150814214025_add_more_meta_to_shops.rb +15 -0
- data/db/migrate/20151017231302_create_disco_app_plans.rb +13 -0
- data/db/migrate/20151017232027_create_disco_app_subscriptions.rb +15 -0
- data/db/migrate/20151017234409_move_shop_to_disco_app_engine.rb +5 -0
- data/db/migrate/20160112233706_create_disco_app_sessions.rb +12 -0
- data/db/migrate/20160113194418_add_shop_id_to_disco_app_sessions.rb +6 -0
- data/db/migrate/20160223111044_create_disco_app_settings.rb +8 -0
- data/db/migrate/20160301223215_update_plans.rb +22 -0
- data/db/migrate/20160301224558_update_subscriptions.rb +13 -0
- data/db/migrate/20160302104816_create_disco_app_recurring_application_charges.rb +14 -0
- data/db/migrate/20160302105259_create_disco_app_application_charges.rb +14 -0
- data/db/migrate/20160302134728_drop_charge_status_from_shops.rb +5 -0
- data/db/migrate/20160302142941_add_shopify_attributes_to_charges.rb +8 -0
- data/db/migrate/20160331093148_create_disco_app_plan_codes.rb +14 -0
- data/db/migrate/20160401044420_add_status_to_plan_codes.rb +5 -0
- data/db/migrate/20160401045551_add_amount_and_plan_code_to_disco_app_subscriptions.rb +7 -0
- data/db/migrate/20160425205211_add_source_to_disco_app_subscriptions.rb +5 -0
- data/db/migrate/20160426033520_add_trial_period_days_to_disco_app_subscriptions.rb +5 -0
- data/db/migrate/20160513140727_add_name_to_disco_app_shops.rb +5 -0
- data/db/migrate/20160521135510_move_shop_to_synchronises.rb +61 -0
- data/lib/disco_app/configuration.rb +45 -0
- data/lib/disco_app/constants.rb +4 -0
- data/lib/disco_app/engine.rb +26 -0
- data/lib/disco_app/session.rb +14 -0
- data/lib/disco_app/support/file_fixtures.rb +23 -0
- data/lib/disco_app/test_help.rb +11 -0
- data/lib/disco_app/version.rb +3 -0
- data/lib/disco_app.rb +7 -0
- data/lib/generators/disco_app/USAGE +5 -0
- data/lib/generators/disco_app/disco_app_generator.rb +239 -0
- data/lib/generators/disco_app/templates/assets/javascripts/application.js +17 -0
- data/lib/generators/disco_app/templates/assets/javascripts/components.js +3 -0
- data/lib/generators/disco_app/templates/assets/stylesheets/application.scss +5 -0
- data/lib/generators/disco_app/templates/config/database.yml.tt +20 -0
- data/lib/generators/disco_app/templates/config/newrelic.yml +26 -0
- data/lib/generators/disco_app/templates/config/puma.rb +15 -0
- data/lib/generators/disco_app/templates/controllers/home_controller.rb +7 -0
- data/lib/generators/disco_app/templates/initializers/disco_app.rb +28 -0
- data/lib/generators/disco_app/templates/initializers/rollbar.rb +19 -0
- data/lib/generators/disco_app/templates/initializers/session_store.rb +2 -0
- data/lib/generators/disco_app/templates/initializers/shopify_app.rb +7 -0
- data/lib/generators/disco_app/templates/initializers/shopify_session_repository.rb +7 -0
- data/lib/generators/disco_app/templates/root/CHECKS +4 -0
- data/lib/generators/disco_app/templates/root/Procfile +2 -0
- data/lib/generators/disco_app/templates/views/home/index.html.erb +2 -0
- data/lib/tasks/carrier_service.rake +10 -0
- data/lib/tasks/database.rake +8 -0
- data/lib/tasks/sessions.rake +9 -0
- data/lib/tasks/shops.rake +10 -0
- data/lib/tasks/start.rake +3 -0
- data/lib/tasks/webhooks.rake +10 -0
- data/test/controllers/disco_app/admin/shops_controller_test.rb +54 -0
- data/test/controllers/disco_app/charges_controller_test.rb +99 -0
- data/test/controllers/disco_app/install_controller_test.rb +50 -0
- data/test/controllers/disco_app/subscriptions_controller_test.rb +68 -0
- data/test/controllers/disco_app/webhooks_controller_test.rb +58 -0
- data/test/controllers/home_controller_test.rb +92 -0
- data/test/controllers/proxy_controller_test.rb +42 -0
- data/test/disco_app_test.rb +7 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +17 -0
- data/test/dummy/app/assets/stylesheets/application.scss +5 -0
- data/test/dummy/app/controllers/application_controller.rb +6 -0
- data/test/dummy/app/controllers/carrier_request_controller.rb +10 -0
- data/test/dummy/app/controllers/disco_app/admin/shops_controller.rb +8 -0
- data/test/dummy/app/controllers/home_controller.rb +7 -0
- data/test/dummy/app/controllers/proxy_controller.rb +8 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/jobs/carts_update_job.rb +7 -0
- data/test/dummy/app/jobs/disco_app/app_installed_job.rb +16 -0
- data/test/dummy/app/jobs/disco_app/app_uninstalled_job.rb +11 -0
- data/test/dummy/app/jobs/products_create_job.rb +7 -0
- data/test/dummy/app/jobs/products_delete_job.rb +7 -0
- data/test/dummy/app/jobs/products_update_job.rb +7 -0
- data/test/dummy/app/models/cart.rb +24 -0
- data/test/dummy/app/models/disco_app/shop.rb +15 -0
- data/test/dummy/app/models/js_configuration.rb +8 -0
- data/test/dummy/app/models/product.rb +9 -0
- data/test/dummy/app/models/widget_configuration.rb +10 -0
- data/test/dummy/app/views/assets/script_tag.js.erb +1 -0
- data/test/dummy/app/views/assets/test.js.erb +1 -0
- data/test/dummy/app/views/assets/widget.js.erb +2 -0
- data/test/dummy/app/views/assets/widget.scss.erb +3 -0
- data/test/dummy/app/views/home/index.html.erb +2 -0
- data/test/dummy/app/views/snippets/widget.liquid.erb +1 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +38 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.codeship.yml +23 -0
- data/test/dummy/config/database.gitlab-ci.yml +24 -0
- data/test/dummy/config/database.yml +20 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +85 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/disco_app.rb +28 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/omniauth.rb +9 -0
- data/test/dummy/config/initializers/session_store.rb +2 -0
- data/test/dummy/config/initializers/shopify_app.rb +7 -0
- data/test/dummy/config/initializers/shopify_session_repository.rb +7 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +11 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/migrate/20160307182229_create_products.rb +11 -0
- data/test/dummy/db/migrate/20160530160739_create_asset_models.rb +19 -0
- data/test/dummy/db/migrate/20161105054746_create_carts.rb +13 -0
- data/test/dummy/db/schema.rb +152 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/fixtures/api/widget_store/assets/create_script_tag_js_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_script_tag_js_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/create_script_tag_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_script_tag_response.json +10 -0
- data/test/fixtures/api/widget_store/assets/create_test_js_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_test_js_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/create_widget_js_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_widget_js_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/create_widget_liquid_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_widget_liquid_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/create_widget_scss_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_widget_scss_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/get_script_tags_empty_request.json +1 -0
- data/test/fixtures/api/widget_store/assets/get_script_tags_empty_response.json +1 -0
- data/test/fixtures/api/widget_store/assets/get_script_tags_preexisting_request.json +1 -0
- data/test/fixtures/api/widget_store/assets/get_script_tags_preexisting_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/update_script_tag_request.json +10 -0
- data/test/fixtures/api/widget_store/assets/update_script_tag_response.json +10 -0
- data/test/fixtures/api/widget_store/carrier_services.json +1 -0
- data/test/fixtures/api/widget_store/carrier_services_create.json +8 -0
- data/test/fixtures/api/widget_store/charges/activate_application_charge_request.json +16 -0
- data/test/fixtures/api/widget_store/charges/activate_application_charge_response.json +1 -0
- data/test/fixtures/api/widget_store/charges/activate_recurring_application_charge_request.json +20 -0
- data/test/fixtures/api/widget_store/charges/activate_recurring_application_charge_response.json +1 -0
- data/test/fixtures/api/widget_store/charges/create_application_charge_request.json +9 -0
- data/test/fixtures/api/widget_store/charges/create_application_charge_response.json +16 -0
- data/test/fixtures/api/widget_store/charges/create_recurring_application_charge_request.json +9 -0
- data/test/fixtures/api/widget_store/charges/create_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/charges/create_second_recurring_application_charge_request.json +9 -0
- data/test/fixtures/api/widget_store/charges/create_second_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/charges/get_accepted_application_charge_response.json +16 -0
- data/test/fixtures/api/widget_store/charges/get_accepted_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/charges/get_declined_application_charge_response.json +16 -0
- data/test/fixtures/api/widget_store/charges/get_declined_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/charges/get_pending_application_charge_response.json +16 -0
- data/test/fixtures/api/widget_store/charges/get_pending_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/products/write_metafields_multiple_namespaces_request.json +31 -0
- data/test/fixtures/api/widget_store/products/write_metafields_multiple_namespaces_response.json +1 -0
- data/test/fixtures/api/widget_store/products/write_metafields_single_namespace_request.json +19 -0
- data/test/fixtures/api/widget_store/products/write_metafields_single_namespace_response.json +1 -0
- data/test/fixtures/api/widget_store/shop.json +46 -0
- data/test/fixtures/api/widget_store/webhooks.json +1 -0
- data/test/fixtures/assets/test.js +1 -0
- data/test/fixtures/assets/test.min.js +1 -0
- data/test/fixtures/carts.yml +5 -0
- data/test/fixtures/disco_app/application_charges.yml +11 -0
- data/test/fixtures/disco_app/plan_codes.yml +13 -0
- data/test/fixtures/disco_app/plans.yml +37 -0
- data/test/fixtures/disco_app/recurring_application_charges.yml +11 -0
- data/test/fixtures/disco_app/shops.yml +10 -0
- data/test/fixtures/disco_app/subscriptions.yml +22 -0
- data/test/fixtures/js_configurations.yml +3 -0
- data/test/fixtures/liquid/model.liquid +8 -0
- data/test/fixtures/products.yml +4 -0
- data/test/fixtures/webhooks/app_uninstalled.json +46 -0
- data/test/fixtures/webhooks/cart_updated.json +28 -0
- data/test/fixtures/webhooks/product_created.json +167 -0
- data/test/fixtures/webhooks/product_deleted.json +3 -0
- data/test/fixtures/webhooks/product_updated.json +167 -0
- data/test/fixtures/widget_configurations.yml +4 -0
- data/test/integration/synchronises_test.rb +62 -0
- data/test/jobs/disco_app/app_installed_job_test.rb +57 -0
- data/test/jobs/disco_app/app_uninstalled_job_test.rb +30 -0
- data/test/jobs/disco_app/synchronise_carrier_service_job_test.rb +25 -0
- data/test/jobs/disco_app/synchronise_webhooks_job_test.rb +30 -0
- data/test/models/disco_app/can_be_liquified_test.rb +55 -0
- data/test/models/disco_app/has_metafields_test.rb +40 -0
- data/test/models/disco_app/plan_test.rb +5 -0
- data/test/models/disco_app/renders_assets_test.rb +109 -0
- data/test/models/disco_app/session_test.rb +31 -0
- data/test/models/disco_app/shop_test.rb +43 -0
- data/test/models/disco_app/subscription_test.rb +19 -0
- data/test/services/disco_app/charges_service_test.rb +112 -0
- data/test/services/disco_app/subscription_service_test.rb +60 -0
- data/test/support/test_file_fixtures.rb +29 -0
- data/test/support/test_shopify_api.rb +16 -0
- data/test/test_helper.rb +55 -0
- metadata +893 -0
@@ -0,0 +1,400 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
//
|
3
|
+
// flexbox.scss
|
4
|
+
// Flexbox mixins.
|
5
|
+
// --------------------------------------------------
|
6
|
+
|
7
|
+
// Flexbox Mixins
|
8
|
+
// http://philipwalton.github.io/solved-by-flexbox/
|
9
|
+
// https://github.com/philipwalton/solved-by-flexbox
|
10
|
+
//
|
11
|
+
// Copyright (c) 2013 Brian Franco
|
12
|
+
//
|
13
|
+
// Permission is hereby granted, free of charge, to any person obtaining a
|
14
|
+
// copy of this software and associated documentation files (the
|
15
|
+
// "Software"), to deal in the Software without restriction, including
|
16
|
+
// without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
// distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
// permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
// the following conditions:
|
20
|
+
// The above copyright notice and this permission notice shall be included
|
21
|
+
// in all copies or substantial portions of the Software.
|
22
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
23
|
+
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
24
|
+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
25
|
+
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
26
|
+
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
27
|
+
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
28
|
+
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
29
|
+
//
|
30
|
+
// This is a set of mixins for those who want to mess around with flexbox
|
31
|
+
// using the native support of current browsers. For full support table
|
32
|
+
// check: http://caniuse.com/flexbox
|
33
|
+
//
|
34
|
+
// Basically this will use:
|
35
|
+
//
|
36
|
+
// * Fallback, old syntax (IE10, mobile webkit browsers - no wrapping)
|
37
|
+
// * Final standards syntax (FF, Safari, Chrome, IE11, Opera)
|
38
|
+
//
|
39
|
+
// This was inspired by:
|
40
|
+
//
|
41
|
+
// * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
|
42
|
+
//
|
43
|
+
// With help from:
|
44
|
+
//
|
45
|
+
// * http://w3.org/tr/css3-flexbox/
|
46
|
+
// * http://the-echoplex.net/flexyboxes/
|
47
|
+
// * http://msdn.microsoft.com/en-us/library/ie/hh772069(v=vs.85).aspx
|
48
|
+
// * http://css-tricks.com/using-flexbox/
|
49
|
+
// * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
|
50
|
+
// * https://developer.mozilla.org/en-us/docs/web/guide/css/flexible_boxes
|
51
|
+
|
52
|
+
//----------------------------------------------------------------------
|
53
|
+
|
54
|
+
// Flexbox Containers
|
55
|
+
//
|
56
|
+
// The 'flex' value causes an element to generate a block-level flex
|
57
|
+
// container box.
|
58
|
+
//
|
59
|
+
// The 'inline-flex' value causes an element to generate a inline-level
|
60
|
+
// flex container box.
|
61
|
+
//
|
62
|
+
// display: flex | inline-flex
|
63
|
+
//
|
64
|
+
// http://w3.org/tr/css3-flexbox/#flex-containers
|
65
|
+
//
|
66
|
+
// (Placeholder selectors for each type, for those who rather @extend)
|
67
|
+
|
68
|
+
@mixin flexbox {
|
69
|
+
display: -webkit-box;
|
70
|
+
display: -webkit-flex;
|
71
|
+
display: -moz-flex;
|
72
|
+
display: -ms-flexbox;
|
73
|
+
display: flex;
|
74
|
+
}
|
75
|
+
|
76
|
+
%flexbox { @include flexbox; }
|
77
|
+
|
78
|
+
//----------------------------------
|
79
|
+
|
80
|
+
@mixin inline-flex {
|
81
|
+
display: -webkit-inline-box;
|
82
|
+
display: -webkit-inline-flex;
|
83
|
+
display: -moz-inline-flex;
|
84
|
+
display: -ms-inline-flexbox;
|
85
|
+
display: inline-flex;
|
86
|
+
}
|
87
|
+
|
88
|
+
%inline-flex { @include inline-flex; }
|
89
|
+
|
90
|
+
//----------------------------------------------------------------------
|
91
|
+
|
92
|
+
// Flexbox Direction
|
93
|
+
//
|
94
|
+
// The 'flex-direction' property specifies how flex items are placed in
|
95
|
+
// the flex container, by setting the direction of the flex container's
|
96
|
+
// main axis. This determines the direction that flex items are laid out in.
|
97
|
+
//
|
98
|
+
// Values: row | row-reverse | column | column-reverse
|
99
|
+
// Default: row
|
100
|
+
//
|
101
|
+
// http://w3.org/tr/css3-flexbox/#flex-direction-property
|
102
|
+
|
103
|
+
@mixin flex-direction($value: row) {
|
104
|
+
@if $value == row-reverse {
|
105
|
+
-webkit-box-direction: reverse;
|
106
|
+
-webkit-box-orient: horizontal;
|
107
|
+
} @else if $value == column {
|
108
|
+
-webkit-box-direction: normal;
|
109
|
+
-webkit-box-orient: vertical;
|
110
|
+
} @else if $value == column-reverse {
|
111
|
+
-webkit-box-direction: reverse;
|
112
|
+
-webkit-box-orient: vertical;
|
113
|
+
} @else {
|
114
|
+
-webkit-box-direction: normal;
|
115
|
+
-webkit-box-orient: horizontal;
|
116
|
+
}
|
117
|
+
-webkit-flex-direction: $value;
|
118
|
+
-moz-flex-direction: $value;
|
119
|
+
-ms-flex-direction: $value;
|
120
|
+
flex-direction: $value;
|
121
|
+
}
|
122
|
+
// Shorter version:
|
123
|
+
@mixin flex-dir($args...) { @include flex-direction($args...); }
|
124
|
+
|
125
|
+
//----------------------------------------------------------------------
|
126
|
+
|
127
|
+
// Flexbox Wrap
|
128
|
+
//
|
129
|
+
// The 'flex-wrap' property controls whether the flex container is single-line
|
130
|
+
// or multi-line, and the direction of the cross-axis, which determines
|
131
|
+
// the direction new lines are stacked in.
|
132
|
+
//
|
133
|
+
// Values: nowrap | wrap | wrap-reverse
|
134
|
+
// Default: nowrap
|
135
|
+
//
|
136
|
+
// http://w3.org/tr/css3-flexbox/#flex-wrap-property
|
137
|
+
|
138
|
+
@mixin flex-wrap($value: nowrap) {
|
139
|
+
// No Webkit Box fallback.
|
140
|
+
-webkit-flex-wrap: $value;
|
141
|
+
-moz-flex-wrap: $value;
|
142
|
+
@if $value == nowrap {
|
143
|
+
-ms-flex-wrap: none;
|
144
|
+
} @else {
|
145
|
+
-ms-flex-wrap: $value;
|
146
|
+
}
|
147
|
+
flex-wrap: $value;
|
148
|
+
}
|
149
|
+
|
150
|
+
//----------------------------------------------------------------------
|
151
|
+
|
152
|
+
// Flexbox Flow (shorthand)
|
153
|
+
//
|
154
|
+
// The 'flex-flow' property is a shorthand for setting the 'flex-direction'
|
155
|
+
// and 'flex-wrap' properties, which together define the flex container's
|
156
|
+
// main and cross axes.
|
157
|
+
//
|
158
|
+
// Values: <flex-direction> | <flex-wrap>
|
159
|
+
// Default: row nowrap
|
160
|
+
//
|
161
|
+
// http://w3.org/tr/css3-flexbox/#flex-flow-property
|
162
|
+
|
163
|
+
@mixin flex-flow($values: (row nowrap)) {
|
164
|
+
// No Webkit Box fallback.
|
165
|
+
-webkit-flex-flow: $values;
|
166
|
+
-moz-flex-flow: $values;
|
167
|
+
-ms-flex-flow: $values;
|
168
|
+
flex-flow: $values;
|
169
|
+
}
|
170
|
+
|
171
|
+
//----------------------------------------------------------------------
|
172
|
+
|
173
|
+
// Flexbox Order
|
174
|
+
//
|
175
|
+
// The 'order' property controls the order in which flex items appear within
|
176
|
+
// their flex container, by assigning them to ordinal groups.
|
177
|
+
//
|
178
|
+
// Default: 0
|
179
|
+
//
|
180
|
+
// http://w3.org/tr/css3-flexbox/#order-property
|
181
|
+
|
182
|
+
@mixin order($int: 0) {
|
183
|
+
-webkit-box-ordinal-group: $int + 1;
|
184
|
+
-webkit-order: $int;
|
185
|
+
-moz-order: $int;
|
186
|
+
-ms-flex-order: $int;
|
187
|
+
order: $int;
|
188
|
+
}
|
189
|
+
|
190
|
+
//----------------------------------------------------------------------
|
191
|
+
|
192
|
+
// Flexbox Grow
|
193
|
+
//
|
194
|
+
// The 'flex-grow' property sets the flex grow factor. Negative numbers
|
195
|
+
// are invalid.
|
196
|
+
//
|
197
|
+
// Default: 0
|
198
|
+
//
|
199
|
+
// http://w3.org/tr/css3-flexbox/#flex-grow-property
|
200
|
+
|
201
|
+
@mixin flex-grow($int: 0) {
|
202
|
+
-webkit-box-flex: $int;
|
203
|
+
-webkit-flex-grow: $int;
|
204
|
+
-moz-flex-grow: $int;
|
205
|
+
-ms-flex-positive: $int;
|
206
|
+
flex-grow: $int;
|
207
|
+
}
|
208
|
+
|
209
|
+
//----------------------------------------------------------------------
|
210
|
+
|
211
|
+
// Flexbox Shrink
|
212
|
+
//
|
213
|
+
// The 'flex-shrink' property sets the flex shrink factor. Negative numbers
|
214
|
+
// are invalid.
|
215
|
+
//
|
216
|
+
// Default: 1
|
217
|
+
//
|
218
|
+
// http://w3.org/tr/css3-flexbox/#flex-shrink-property
|
219
|
+
|
220
|
+
@mixin flex-shrink($int: 1) {
|
221
|
+
-webkit-flex-shrink: $int;
|
222
|
+
-moz-flex-shrink: $int;
|
223
|
+
-ms-flex-negative: $int;
|
224
|
+
flex-shrink: $int;
|
225
|
+
}
|
226
|
+
|
227
|
+
//----------------------------------------------------------------------
|
228
|
+
|
229
|
+
// Flexbox Basis
|
230
|
+
//
|
231
|
+
// The 'flex-basis' property sets the flex basis. Negative lengths are invalid.
|
232
|
+
//
|
233
|
+
// Values: Like "width"
|
234
|
+
// Default: auto
|
235
|
+
//
|
236
|
+
// http://www.w3.org/TR/css3-flexbox/#flex-basis-property
|
237
|
+
|
238
|
+
@mixin flex-basis($value: auto) {
|
239
|
+
-webkit-flex-basis: $value;
|
240
|
+
-moz-flex-basis: $value;
|
241
|
+
-ms-flex-preferred-size: $value;
|
242
|
+
flex-basis: $value;
|
243
|
+
}
|
244
|
+
|
245
|
+
//----------------------------------------------------------------------
|
246
|
+
|
247
|
+
// Flexbox "Flex" (shorthand)
|
248
|
+
//
|
249
|
+
// The 'flex' property specifies the components of a flexible length: the
|
250
|
+
// flex grow factor and flex shrink factor, and the flex basis. When an
|
251
|
+
// element is a flex item, 'flex' is consulted instead of the main size
|
252
|
+
// property to determine the main size of the element. If an element is
|
253
|
+
// not a flex item, 'flex' has no effect.
|
254
|
+
//
|
255
|
+
// Values: none | <flex-grow> <flex-shrink> || <flex-basis>
|
256
|
+
// Default: See individual properties (1 1 0).
|
257
|
+
//
|
258
|
+
// http://w3.org/tr/css3-flexbox/#flex-property
|
259
|
+
|
260
|
+
@mixin flex($fg: 1, $fs: null, $fb: null) {
|
261
|
+
|
262
|
+
// Set a variable to be used by box-flex properties
|
263
|
+
$fg-boxflex: $fg;
|
264
|
+
|
265
|
+
// Box-Flex only supports a flex-grow value so let's grab the
|
266
|
+
// first item in the list and just return that.
|
267
|
+
@if type-of($fg) == 'list' {
|
268
|
+
$fg-boxflex: nth($fg, 1);
|
269
|
+
}
|
270
|
+
|
271
|
+
-webkit-box-flex: $fg-boxflex;
|
272
|
+
-webkit-flex: $fg $fs $fb;
|
273
|
+
-moz-box-flex: $fg-boxflex;
|
274
|
+
-moz-flex: $fg $fs $fb;
|
275
|
+
-ms-flex: $fg $fs $fb;
|
276
|
+
flex: $fg $fs $fb;
|
277
|
+
}
|
278
|
+
|
279
|
+
//----------------------------------------------------------------------
|
280
|
+
|
281
|
+
// Flexbox Justify Content
|
282
|
+
//
|
283
|
+
// The 'justify-content' property aligns flex items along the main axis
|
284
|
+
// of the current line of the flex container. This is done after any flexible
|
285
|
+
// lengths and any auto margins have been resolved. Typically it helps distribute
|
286
|
+
// extra free space leftover when either all the flex items on a line are
|
287
|
+
// inflexible, or are flexible but have reached their maximum size. It also
|
288
|
+
// exerts some control over the alignment of items when they overflow the line.
|
289
|
+
//
|
290
|
+
// Note: 'space-*' values not supported in older syntaxes.
|
291
|
+
//
|
292
|
+
// Values: flex-start | flex-end | center | space-between | space-around
|
293
|
+
// Default: flex-start
|
294
|
+
//
|
295
|
+
// http://w3.org/tr/css3-flexbox/#justify-content-property
|
296
|
+
|
297
|
+
@mixin justify-content($value: flex-start) {
|
298
|
+
@if $value == flex-start {
|
299
|
+
-webkit-box-pack: start;
|
300
|
+
-ms-flex-pack: start;
|
301
|
+
} @else if $value == flex-end {
|
302
|
+
-webkit-box-pack: end;
|
303
|
+
-ms-flex-pack: end;
|
304
|
+
} @else if $value == space-between {
|
305
|
+
-webkit-box-pack: justify;
|
306
|
+
-ms-flex-pack: justify;
|
307
|
+
} @else if $value == space-around {
|
308
|
+
-ms-flex-pack: distribute;
|
309
|
+
} @else {
|
310
|
+
-webkit-box-pack: $value;
|
311
|
+
-ms-flex-pack: $value;
|
312
|
+
}
|
313
|
+
-webkit-justify-content: $value;
|
314
|
+
-moz-justify-content: $value;
|
315
|
+
justify-content: $value;
|
316
|
+
}
|
317
|
+
// Shorter version:
|
318
|
+
@mixin flex-just($args...) { @include justify-content($args...); }
|
319
|
+
|
320
|
+
//----------------------------------------------------------------------
|
321
|
+
|
322
|
+
// Flexbox Align Items
|
323
|
+
//
|
324
|
+
// Flex items can be aligned in the cross axis of the current line of the
|
325
|
+
// flex container, similar to 'justify-content' but in the perpendicular
|
326
|
+
// direction. 'align-items' sets the default alignment for all of the flex
|
327
|
+
// container's items, including anonymous flex items. 'align-self' allows
|
328
|
+
// this default alignment to be overridden for individual flex items. (For
|
329
|
+
// anonymous flex items, 'align-self' always matches the value of 'align-items'
|
330
|
+
// on their associated flex container.)
|
331
|
+
//
|
332
|
+
// Values: flex-start | flex-end | center | baseline | stretch
|
333
|
+
// Default: stretch
|
334
|
+
//
|
335
|
+
// http://w3.org/tr/css3-flexbox/#align-items-property
|
336
|
+
|
337
|
+
@mixin align-items($value: stretch) {
|
338
|
+
@if $value == flex-start {
|
339
|
+
-webkit-box-align: start;
|
340
|
+
-ms-flex-align: start;
|
341
|
+
} @else if $value == flex-end {
|
342
|
+
-webkit-box-align: end;
|
343
|
+
-ms-flex-align: end;
|
344
|
+
} @else {
|
345
|
+
-webkit-box-align: $value;
|
346
|
+
-ms-flex-align: $value;
|
347
|
+
}
|
348
|
+
-webkit-align-items: $value;
|
349
|
+
-moz-align-items: $value;
|
350
|
+
align-items: $value;
|
351
|
+
}
|
352
|
+
|
353
|
+
//----------------------------------
|
354
|
+
|
355
|
+
// Flexbox Align Self
|
356
|
+
//
|
357
|
+
// Values: auto | flex-start | flex-end | center | baseline | stretch
|
358
|
+
// Default: auto
|
359
|
+
|
360
|
+
@mixin align-self($value: auto) {
|
361
|
+
// No Webkit Box Fallback.
|
362
|
+
-webkit-align-self: $value;
|
363
|
+
-moz-align-self: $value;
|
364
|
+
@if $value == flex-start {
|
365
|
+
-ms-flex-item-align: start;
|
366
|
+
} @else if $value == flex-end {
|
367
|
+
-ms-flex-item-align: end;
|
368
|
+
} @else {
|
369
|
+
-ms-flex-item-align: $value;
|
370
|
+
}
|
371
|
+
align-self: $value;
|
372
|
+
}
|
373
|
+
|
374
|
+
//----------------------------------------------------------------------
|
375
|
+
|
376
|
+
// Flexbox Align Content
|
377
|
+
//
|
378
|
+
// The 'align-content' property aligns a flex container's lines within the
|
379
|
+
// flex container when there is extra space in the cross-axis, similar to
|
380
|
+
// how 'justify-content' aligns individual items within the main-axis. Note,
|
381
|
+
// this property has no effect when the flexbox has only a single line.
|
382
|
+
//
|
383
|
+
// Values: flex-start | flex-end | center | space-between | space-around | stretch
|
384
|
+
// Default: stretch
|
385
|
+
//
|
386
|
+
// http://w3.org/tr/css3-flexbox/#align-content-property
|
387
|
+
|
388
|
+
@mixin align-content($value: stretch) {
|
389
|
+
// No Webkit Box Fallback.
|
390
|
+
-webkit-align-content: $value;
|
391
|
+
-moz-align-content: $value;
|
392
|
+
@if $value == flex-start {
|
393
|
+
-ms-flex-line-pack: start;
|
394
|
+
} @else if $value == flex-end {
|
395
|
+
-ms-flex-line-pack: end;
|
396
|
+
} @else {
|
397
|
+
-ms-flex-line-pack: $value;
|
398
|
+
}
|
399
|
+
align-content: $value;
|
400
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
//
|
2
|
+
// ui-forms.scss
|
3
|
+
// Styles for forms not provided by the Channel SDK
|
4
|
+
// UI Kit.
|
5
|
+
// --------------------------------------------------
|
6
|
+
|
7
|
+
.ui-form__section {
|
8
|
+
display: -webkit-flex;
|
9
|
+
display: -ms-flexbox;
|
10
|
+
display: flex;
|
11
|
+
-webkit-flex-direction: column;
|
12
|
+
-ms-flex-direction: column;
|
13
|
+
flex-direction: column;
|
14
|
+
-webkit-flex-shrink: 0;
|
15
|
+
-ms-flex-negative: 0;
|
16
|
+
flex-shrink: 0;
|
17
|
+
-webkit-flex-wrap: wrap;
|
18
|
+
-ms-flex-wrap: wrap;
|
19
|
+
flex-wrap: wrap;
|
20
|
+
margin: -8px;
|
21
|
+
|
22
|
+
.next-input-wrapper {
|
23
|
+
box-sizing: border-box;
|
24
|
+
margin: 0;
|
25
|
+
display: -webkit-flex;
|
26
|
+
display: -ms-flexbox;
|
27
|
+
display: flex;
|
28
|
+
-webkit-flex-direction: column;
|
29
|
+
-ms-flex-direction: column;
|
30
|
+
flex-direction: column;
|
31
|
+
min-width: 220px;
|
32
|
+
padding: 8px;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
.ui-form__group {
|
37
|
+
display: -webkit-flex;
|
38
|
+
display: -ms-flexbox;
|
39
|
+
display: flex;
|
40
|
+
-webkit-flex-wrap: wrap;
|
41
|
+
-ms-flex-wrap: wrap;
|
42
|
+
flex-wrap: wrap;
|
43
|
+
|
44
|
+
> .ui-form__element, .next-input-wrapper {
|
45
|
+
max-width: 100%;
|
46
|
+
-webkit-flex: 1 0 220px;
|
47
|
+
-ms-flex: 1 0 220px;
|
48
|
+
flex: 1 0 220px;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
.ui-form__element {
|
53
|
+
box-sizing: border-box;
|
54
|
+
display: -webkit-flex;
|
55
|
+
display: -ms-flexbox;
|
56
|
+
display: flex;
|
57
|
+
-webkit-flex-grow: 1;
|
58
|
+
-ms-flex-positive: 1;
|
59
|
+
flex-grow: 1;
|
60
|
+
-webkit-flex-direction: column;
|
61
|
+
-ms-flex-direction: column;
|
62
|
+
flex-direction: column;
|
63
|
+
min-width: 220px;
|
64
|
+
padding: 8px;
|
65
|
+
}
|
66
|
+
|
67
|
+
.ui-form__element.ui-form__section--help-text {
|
68
|
+
padding-top: 0;
|
69
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
//
|
2
|
+
// ui-icons.scss
|
3
|
+
// Styles for icons not provided by the Channel SDK
|
4
|
+
// UI Kit. Note that these are older icons, and will
|
5
|
+
// probably be replaced soon.
|
6
|
+
// --------------------------------------------------
|
7
|
+
|
8
|
+
.ico {
|
9
|
+
display: inline-block;
|
10
|
+
line-height: 0;
|
11
|
+
vertical-align: top;
|
12
|
+
text-indent: 999em;
|
13
|
+
white-space: nowrap;
|
14
|
+
overflow: hidden;
|
15
|
+
}
|
16
|
+
|
17
|
+
.ico-delete {
|
18
|
+
background-image: url('data:image/svg+xml;charset=US-ASCII,<svg%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%20xmlns%3Axlink%3D"http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink"%20xmlns%3Asketch%3D"http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns"%20width%3D"12px"%20height%3D"12px"%20viewBox%3D"0%200%2012%2012"%20version%3D"1.1"><style%20type%3D"text%2Fcss">circle%2Cellipse%2Cline%2Cpath%2Cpolygon%2Cpolyline%2Crect%2Ctext%7Bfill%3A%23479ccf%20%21important%3B%20%7D<%2Fstyle><title>trash-can-small<%2Ftitle><desc>Created%20with%20Sketch.<%2Fdesc><defs%2F><g%20id%3D"Page-1"%20stroke%3D"none"%20stroke-width%3D"1"%20fill%3D"none"%20fill-rule%3D"evenodd"%20sketch%3Atype%3D"MSPage"><g%20id%3D"trash-can-small"%20sketch%3Atype%3D"MSLayerGroup"%20fill%3D"%23479CCF"><path%20d%3D"M7.63636364%2C1.09090909%20L7.63636364%2C0.818181818%20C7.63636364%2C0.366545455%207.26981818%2C0%206.81818182%2C0%20L5.18181818%2C0%20C4.73018182%2C0%204.36363636%2C0.366545455%204.36363636%2C0.818181818%20L4.36363636%2C1.09090909%20L0.825818182%2C1.09090909%20C0.369818182%2C1.09090909%200%2C1.45745455%200%2C1.90909091%20C0%2C2.36072727%200.369818182%2C3.02727272%200.825818182%2C3.02727272%20L11.1741818%2C3.02727272%20C11.6301818%2C3.02727272%2012%2C2.36072727%2012%2C1.90909091%20C12%2C1.45745455%2011.6301818%2C1.09090909%2011.1741818%2C1.09090909%20L7.63636364%2C1.09090909%20Z"%20id%3D"Fill-1"%20sketch%3Atype%3D"MSShapeGroup"%2F><path%20d%3D"M1.72272728%2C4.05%20C1.57218183%2C4.05%201.45000001%2C4.17218182%201.45000001%2C4.32272728%20L1.45000001%2C11.1136364%20C1.45000001%2C11.5652727%201.81654546%2C11.9318182%202.26818183%2C11.9318182%20L9.75%2C11.9318182%20C10.2016364%2C11.9318182%2010.5681818%2C11.5652727%2010.5681818%2C11.1136364%20L10.5681818%2C4.32272728%20C10.5681818%2C4.17218182%2010.446%2C4.05%2010.2954545%2C4.05%20L1.72272728%2C4.05%20Z%20M7.84090909%2C9.21%20C7.84090909%2C9.50836364%207.59927273%2C9.75%207.30090909%2C9.75%20L7.29%2C9.75%20C6.99163636%2C9.75%206.75%2C9.50836364%206.75%2C9.21%20L6.75%2C6.47181818%20C6.75%2C6.17345455%206.99163636%2C5.93181818%207.29%2C5.93181818%20L7.30090909%2C5.93181818%20C7.59927273%2C5.93181818%207.84090909%2C6.17345455%207.84090909%2C6.47181818%20L7.84090909%2C9.21%20L7.84090909%2C9.21%20Z%20M4.84090909%2C9.21%20C4.84090909%2C9.50836364%204.59927273%2C9.75%204.30090909%2C9.75%20L4.29%2C9.75%20C3.99163636%2C9.75%203.75%2C9.50836364%203.75%2C9.21%20L3.75%2C6.47181818%20C3.75%2C6.17345455%203.99163636%2C5.93181818%204.29%2C5.93181818%20L4.30090909%2C5.93181818%20C4.59927273%2C5.93181818%204.84090909%2C6.17345455%204.84090909%2C6.47181818%20L4.84090909%2C9.21%20L4.84090909%2C9.21%20Z"%20id%3D"Fill-2"%20sketch%3Atype%3D"MSShapeGroup"%2F><%2Fg><%2Fg><%2Fsvg>');
|
19
|
+
background-size: auto;
|
20
|
+
}
|
21
|
+
|
22
|
+
.ico-14-svg {
|
23
|
+
width: 14px;
|
24
|
+
height: 14px;
|
25
|
+
background-size: contain;
|
26
|
+
background-position: center;
|
27
|
+
background-repeat: no-repeat;
|
28
|
+
}
|