stylish 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -10
- data/ARCHITECTURE.md +96 -0
- data/Gemfile +8 -0
- data/README.md +25 -29
- data/Rakefile +24 -0
- data/bin/stylish +33 -0
- data/lib/stylish.rb +36 -1
- data/lib/stylish/configuration.rb +37 -0
- data/lib/stylish/core_ext.rb +20 -0
- data/lib/stylish/developer.rb +13 -0
- data/lib/stylish/developer/config.rb +19 -0
- data/lib/stylish/developer/environment.rb +75 -0
- data/lib/stylish/developer/listing.rb +85 -0
- data/lib/stylish/developer/model_delegator.rb +51 -0
- data/lib/stylish/developer/modification.rb +139 -0
- data/lib/stylish/developer/path.rb +168 -0
- data/lib/stylish/developer/route.rb +97 -0
- data/lib/stylish/developer/server.rb +40 -0
- data/lib/stylish/engine.rb +12 -0
- data/lib/stylish/fs.rb +59 -0
- data/lib/stylish/manifest.rb +100 -0
- data/lib/stylish/models.rb +119 -0
- data/lib/stylish/models/component.rb +19 -0
- data/lib/stylish/models/layout.rb +19 -0
- data/lib/stylish/models/library.rb +134 -0
- data/lib/stylish/models/package.rb +156 -0
- data/lib/stylish/models/script.rb +10 -0
- data/lib/stylish/models/stylesheet.rb +9 -0
- data/lib/stylish/models/template.rb +9 -0
- data/lib/stylish/models/theme.rb +8 -0
- data/lib/stylish/util.rb +20 -0
- data/lib/stylish/version.rb +1 -1
- data/library/config.json +4 -0
- data/library/second-theme/manifest.json +8 -0
- data/library/second-theme/manifest.yml +6 -0
- data/library/second-theme/templates/footers/footer-01.html +3 -0
- data/library/second-theme/templates/footers/footer-02.html +3 -0
- data/library/second-theme/templates/headers/header-01.html +3 -0
- data/library/second-theme/templates/headers/header-02.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/components/footers/footer-01.json +5 -0
- data/library/test-theme/components/footers/footer-02.json +5 -0
- data/library/test-theme/components/headers/header-01.json +5 -0
- data/library/test-theme/components/headers/header-02.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/library/test-theme/manifest.json +8 -0
- data/library/test-theme/manifest.yml +6 -0
- data/library/test-theme/pages/page-01.json +11 -0
- data/library/test-theme/templates/footers/footer-01.html +3 -0
- data/library/test-theme/templates/footers/footer-02.html +3 -0
- data/library/test-theme/templates/headers/header-01.html +3 -0
- data/library/test-theme/templates/headers/header-02.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/templates/layouts/standard-layout.html +10 -0
- data/spec/acceptance/listing_assets_spec.rb +20 -0
- data/spec/acceptance/model_browsing_spec.rb +21 -0
- data/spec/acceptance/model_creation_spec.rb +16 -0
- data/spec/acceptance/model_deleting_spec.rb +10 -0
- data/spec/acceptance/model_updating_spec.rb +12 -0
- data/spec/acceptance/modifying_assets_spec.rb +50 -0
- data/spec/acceptance/server_info_spec.rb +10 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
- data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +30 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +82 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
- data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
- data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
- data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
- data/spec/dummy/db/schema.rb +37 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/fixtures/config.json +3 -0
- data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
- data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/spec/fixtures/test-theme/manifest.json +8 -0
- data/spec/fixtures/test-theme/manifest.yml +6 -0
- data/spec/fixtures/test-theme/pages/page-01.json +11 -0
- data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
- data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
- data/spec/lib/stylish/configuration_spec.rb +8 -0
- data/spec/lib/stylish/developer/path_spec.rb +36 -0
- data/spec/lib/stylish/developer/route_spec.rb +5 -0
- data/spec/lib/stylish/manifest_spec.rb +48 -0
- data/spec/lib/stylish/models/library_spec.rb +38 -0
- data/spec/lib/stylish/models/package_spec.rb +35 -0
- data/spec/lib/stylish/models_spec.rb +12 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/json_helper.rb +7 -0
- data/spec/test.css.scss +6 -0
- data/stylish.gemspec +17 -2
- data/support/editor-app/.gitignore +2 -0
- data/support/editor-app/development/bower.json +9 -0
- data/support/editor-app/development/package.json +28 -0
- data/support/editor-app/development/semantic/components/accordion.css +257 -0
- data/support/editor-app/development/semantic/components/accordion.js +558 -0
- data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/development/semantic/components/ad.css +277 -0
- data/support/editor-app/development/semantic/components/ad.min.css +11 -0
- data/support/editor-app/development/semantic/components/api.js +851 -0
- data/support/editor-app/development/semantic/components/api.min.js +11 -0
- data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/development/semantic/components/button.css +2391 -0
- data/support/editor-app/development/semantic/components/button.min.css +11 -0
- data/support/editor-app/development/semantic/components/card.css +758 -0
- data/support/editor-app/development/semantic/components/card.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.css +514 -0
- data/support/editor-app/development/semantic/components/checkbox.js +507 -0
- data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/development/semantic/components/comment.css +260 -0
- data/support/editor-app/development/semantic/components/comment.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.css +187 -0
- data/support/editor-app/development/semantic/components/dimmer.js +627 -0
- data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/development/semantic/components/divider.css +244 -0
- data/support/editor-app/development/semantic/components/divider.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/development/semantic/components/feed.css +277 -0
- data/support/editor-app/development/semantic/components/feed.min.css +11 -0
- data/support/editor-app/development/semantic/components/flag.css +1017 -0
- data/support/editor-app/development/semantic/components/flag.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.css +875 -0
- data/support/editor-app/development/semantic/components/form.js +1039 -0
- data/support/editor-app/development/semantic/components/form.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.min.js +11 -0
- data/support/editor-app/development/semantic/components/grid.css +1816 -0
- data/support/editor-app/development/semantic/components/grid.min.css +11 -0
- data/support/editor-app/development/semantic/components/header.css +572 -0
- data/support/editor-app/development/semantic/components/header.min.css +11 -0
- data/support/editor-app/development/semantic/components/icon.css +2127 -0
- data/support/editor-app/development/semantic/components/icon.min.css +11 -0
- data/support/editor-app/development/semantic/components/image.css +275 -0
- data/support/editor-app/development/semantic/components/image.min.css +11 -0
- data/support/editor-app/development/semantic/components/input.css +455 -0
- data/support/editor-app/development/semantic/components/input.min.css +11 -0
- data/support/editor-app/development/semantic/components/item.css +458 -0
- data/support/editor-app/development/semantic/components/item.min.css +11 -0
- data/support/editor-app/development/semantic/components/label.css +930 -0
- data/support/editor-app/development/semantic/components/label.min.css +11 -0
- data/support/editor-app/development/semantic/components/list.css +879 -0
- data/support/editor-app/development/semantic/components/list.min.css +11 -0
- data/support/editor-app/development/semantic/components/loader.css +279 -0
- data/support/editor-app/development/semantic/components/loader.min.css +11 -0
- data/support/editor-app/development/semantic/components/menu.css +1596 -0
- data/support/editor-app/development/semantic/components/menu.min.css +11 -0
- data/support/editor-app/development/semantic/components/message.css +422 -0
- data/support/editor-app/development/semantic/components/message.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.css +431 -0
- data/support/editor-app/development/semantic/components/modal.js +860 -0
- data/support/editor-app/development/semantic/components/modal.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.min.js +11 -0
- data/support/editor-app/development/semantic/components/nag.css +149 -0
- data/support/editor-app/development/semantic/components/nag.js +477 -0
- data/support/editor-app/development/semantic/components/nag.min.css +11 -0
- data/support/editor-app/development/semantic/components/nag.min.js +11 -0
- data/support/editor-app/development/semantic/components/popup.css +294 -0
- data/support/editor-app/development/semantic/components/popup.js +1187 -0
- data/support/editor-app/development/semantic/components/popup.min.css +11 -0
- data/support/editor-app/development/semantic/components/popup.min.js +11 -0
- data/support/editor-app/development/semantic/components/progress.css +449 -0
- data/support/editor-app/development/semantic/components/progress.js +785 -0
- data/support/editor-app/development/semantic/components/progress.min.css +11 -0
- data/support/editor-app/development/semantic/components/progress.min.js +11 -0
- data/support/editor-app/development/semantic/components/rail.css +125 -0
- data/support/editor-app/development/semantic/components/rail.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.css +262 -0
- data/support/editor-app/development/semantic/components/rating.js +451 -0
- data/support/editor-app/development/semantic/components/rating.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.min.js +11 -0
- data/support/editor-app/development/semantic/components/reset.css +430 -0
- data/support/editor-app/development/semantic/components/reset.min.css +11 -0
- data/support/editor-app/development/semantic/components/reveal.css +294 -0
- data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.css +330 -0
- data/support/editor-app/development/semantic/components/search.js +1055 -0
- data/support/editor-app/development/semantic/components/search.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.min.js +11 -0
- data/support/editor-app/development/semantic/components/segment.css +590 -0
- data/support/editor-app/development/semantic/components/segment.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.css +155 -0
- data/support/editor-app/development/semantic/components/shape.js +830 -0
- data/support/editor-app/development/semantic/components/shape.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.min.js +11 -0
- data/support/editor-app/development/semantic/components/sidebar.css +621 -0
- data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/development/semantic/components/site.css +147 -0
- data/support/editor-app/development/semantic/components/site.js +487 -0
- data/support/editor-app/development/semantic/components/site.min.css +11 -0
- data/support/editor-app/development/semantic/components/site.min.js +11 -0
- data/support/editor-app/development/semantic/components/state.js +690 -0
- data/support/editor-app/development/semantic/components/state.min.js +11 -0
- data/support/editor-app/development/semantic/components/statistic.css +410 -0
- data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/development/semantic/components/step.css +433 -0
- data/support/editor-app/development/semantic/components/step.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.css +80 -0
- data/support/editor-app/development/semantic/components/sticky.js +775 -0
- data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/development/semantic/components/tab.css +93 -0
- data/support/editor-app/development/semantic/components/tab.js +787 -0
- data/support/editor-app/development/semantic/components/tab.min.css +11 -0
- data/support/editor-app/development/semantic/components/tab.min.js +11 -0
- data/support/editor-app/development/semantic/components/table.css +999 -0
- data/support/editor-app/development/semantic/components/table.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.css +2152 -0
- data/support/editor-app/development/semantic/components/transition.js +936 -0
- data/support/editor-app/development/semantic/components/transition.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.min.js +11 -0
- data/support/editor-app/development/semantic/components/video.css +126 -0
- data/support/editor-app/development/semantic/components/video.js +540 -0
- data/support/editor-app/development/semantic/components/video.min.css +11 -0
- data/support/editor-app/development/semantic/components/video.min.js +11 -0
- data/support/editor-app/development/semantic/components/visibility.js +970 -0
- data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/development/semantic/semantic.css +31768 -0
- data/support/editor-app/development/semantic/semantic.js +18317 -0
- data/support/editor-app/development/semantic/semantic.min.css +11 -0
- data/support/editor-app/development/semantic/semantic.min.js +17 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/development/src/apis/index.coffee +35 -0
- data/support/editor-app/development/src/components/editor.cjsx +58 -0
- data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
- data/support/editor-app/development/src/components/header.cjsx +12 -0
- data/support/editor-app/development/src/components/index.coffee +9 -0
- data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
- data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
- data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
- data/support/editor-app/development/src/index.cjsx +82 -0
- data/support/editor-app/development/src/lib/util.coffee +48 -0
- data/support/editor-app/development/src/pages/home.cjsx +46 -0
- data/support/editor-app/development/src/pages/index.coffee +6 -0
- data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
- data/support/editor-app/development/src/registry.coffee +35 -0
- data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
- data/support/editor-app/development/src/styles/index.css.scss +240 -0
- data/support/editor-app/development/src/sugar.cjsx +126 -0
- data/support/editor-app/development/webpack.config.js +53 -0
- data/support/editor-app/dist/base.css +0 -0
- data/support/editor-app/dist/toolit.js +62 -0
- data/support/editor-app/dist/toolkit.js +44573 -0
- data/support/editor-app/index.html +50 -0
- data/support/editor-app/package.json +15 -0
- data/support/editor-app/semantic/components/accordion.css +257 -0
- data/support/editor-app/semantic/components/accordion.js +558 -0
- data/support/editor-app/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/semantic/components/ad.css +277 -0
- data/support/editor-app/semantic/components/ad.min.css +11 -0
- data/support/editor-app/semantic/components/api.js +851 -0
- data/support/editor-app/semantic/components/api.min.js +11 -0
- data/support/editor-app/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/semantic/components/button.css +2391 -0
- data/support/editor-app/semantic/components/button.min.css +11 -0
- data/support/editor-app/semantic/components/card.css +758 -0
- data/support/editor-app/semantic/components/card.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.css +514 -0
- data/support/editor-app/semantic/components/checkbox.js +507 -0
- data/support/editor-app/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/semantic/components/comment.css +260 -0
- data/support/editor-app/semantic/components/comment.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.css +187 -0
- data/support/editor-app/semantic/components/dimmer.js +627 -0
- data/support/editor-app/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/semantic/components/divider.css +244 -0
- data/support/editor-app/semantic/components/divider.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/semantic/components/feed.css +277 -0
- data/support/editor-app/semantic/components/feed.min.css +11 -0
- data/support/editor-app/semantic/components/flag.css +1017 -0
- data/support/editor-app/semantic/components/flag.min.css +11 -0
- data/support/editor-app/semantic/components/form.css +875 -0
- data/support/editor-app/semantic/components/form.js +1039 -0
- data/support/editor-app/semantic/components/form.min.css +11 -0
- data/support/editor-app/semantic/components/form.min.js +11 -0
- data/support/editor-app/semantic/components/grid.css +1816 -0
- data/support/editor-app/semantic/components/grid.min.css +11 -0
- data/support/editor-app/semantic/components/header.css +572 -0
- data/support/editor-app/semantic/components/header.min.css +11 -0
- data/support/editor-app/semantic/components/icon.css +2127 -0
- data/support/editor-app/semantic/components/icon.min.css +11 -0
- data/support/editor-app/semantic/components/image.css +275 -0
- data/support/editor-app/semantic/components/image.min.css +11 -0
- data/support/editor-app/semantic/components/input.css +455 -0
- data/support/editor-app/semantic/components/input.min.css +11 -0
- data/support/editor-app/semantic/components/item.css +458 -0
- data/support/editor-app/semantic/components/item.min.css +11 -0
- data/support/editor-app/semantic/components/label.css +930 -0
- data/support/editor-app/semantic/components/label.min.css +11 -0
- data/support/editor-app/semantic/components/list.css +879 -0
- data/support/editor-app/semantic/components/list.min.css +11 -0
- data/support/editor-app/semantic/components/loader.css +279 -0
- data/support/editor-app/semantic/components/loader.min.css +11 -0
- data/support/editor-app/semantic/components/menu.css +1596 -0
- data/support/editor-app/semantic/components/menu.min.css +11 -0
- data/support/editor-app/semantic/components/message.css +422 -0
- data/support/editor-app/semantic/components/message.min.css +11 -0
- data/support/editor-app/semantic/components/modal.css +431 -0
- data/support/editor-app/semantic/components/modal.js +860 -0
- data/support/editor-app/semantic/components/modal.min.css +11 -0
- data/support/editor-app/semantic/components/modal.min.js +11 -0
- data/support/editor-app/semantic/components/nag.css +149 -0
- data/support/editor-app/semantic/components/nag.js +477 -0
- data/support/editor-app/semantic/components/nag.min.css +11 -0
- data/support/editor-app/semantic/components/nag.min.js +11 -0
- data/support/editor-app/semantic/components/popup.css +294 -0
- data/support/editor-app/semantic/components/popup.js +1187 -0
- data/support/editor-app/semantic/components/popup.min.css +11 -0
- data/support/editor-app/semantic/components/popup.min.js +11 -0
- data/support/editor-app/semantic/components/progress.css +449 -0
- data/support/editor-app/semantic/components/progress.js +785 -0
- data/support/editor-app/semantic/components/progress.min.css +11 -0
- data/support/editor-app/semantic/components/progress.min.js +11 -0
- data/support/editor-app/semantic/components/rail.css +125 -0
- data/support/editor-app/semantic/components/rail.min.css +11 -0
- data/support/editor-app/semantic/components/rating.css +262 -0
- data/support/editor-app/semantic/components/rating.js +451 -0
- data/support/editor-app/semantic/components/rating.min.css +11 -0
- data/support/editor-app/semantic/components/rating.min.js +11 -0
- data/support/editor-app/semantic/components/reset.css +430 -0
- data/support/editor-app/semantic/components/reset.min.css +11 -0
- data/support/editor-app/semantic/components/reveal.css +294 -0
- data/support/editor-app/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/semantic/components/search.css +330 -0
- data/support/editor-app/semantic/components/search.js +1055 -0
- data/support/editor-app/semantic/components/search.min.css +11 -0
- data/support/editor-app/semantic/components/search.min.js +11 -0
- data/support/editor-app/semantic/components/segment.css +590 -0
- data/support/editor-app/semantic/components/segment.min.css +11 -0
- data/support/editor-app/semantic/components/shape.css +155 -0
- data/support/editor-app/semantic/components/shape.js +830 -0
- data/support/editor-app/semantic/components/shape.min.css +11 -0
- data/support/editor-app/semantic/components/shape.min.js +11 -0
- data/support/editor-app/semantic/components/sidebar.css +621 -0
- data/support/editor-app/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/semantic/components/site.css +147 -0
- data/support/editor-app/semantic/components/site.js +487 -0
- data/support/editor-app/semantic/components/site.min.css +11 -0
- data/support/editor-app/semantic/components/site.min.js +11 -0
- data/support/editor-app/semantic/components/state.js +690 -0
- data/support/editor-app/semantic/components/state.min.js +11 -0
- data/support/editor-app/semantic/components/statistic.css +410 -0
- data/support/editor-app/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/semantic/components/step.css +433 -0
- data/support/editor-app/semantic/components/step.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.css +80 -0
- data/support/editor-app/semantic/components/sticky.js +775 -0
- data/support/editor-app/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/semantic/components/tab.css +93 -0
- data/support/editor-app/semantic/components/tab.js +787 -0
- data/support/editor-app/semantic/components/tab.min.css +11 -0
- data/support/editor-app/semantic/components/tab.min.js +11 -0
- data/support/editor-app/semantic/components/table.css +999 -0
- data/support/editor-app/semantic/components/table.min.css +11 -0
- data/support/editor-app/semantic/components/transition.css +2152 -0
- data/support/editor-app/semantic/components/transition.js +936 -0
- data/support/editor-app/semantic/components/transition.min.css +11 -0
- data/support/editor-app/semantic/components/transition.min.js +11 -0
- data/support/editor-app/semantic/components/video.css +126 -0
- data/support/editor-app/semantic/components/video.js +540 -0
- data/support/editor-app/semantic/components/video.min.css +11 -0
- data/support/editor-app/semantic/components/video.min.js +11 -0
- data/support/editor-app/semantic/components/visibility.js +970 -0
- data/support/editor-app/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/semantic/semantic.css +31768 -0
- data/support/editor-app/semantic/semantic.js +18317 -0
- data/support/editor-app/semantic/semantic.min.css +11 -0
- data/support/editor-app/semantic/semantic.min.js +17 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/vendor/jquery.js +8829 -0
- data/support/library-server/Gemfile +0 -0
- data/support/library-server/config.ru +4 -0
- metadata +740 -7
@@ -0,0 +1,240 @@
|
|
1
|
+
$white: rgba(255,255,255,1);
|
2
|
+
$black: rgba(230,230,230,0.99);
|
3
|
+
|
4
|
+
$zindex-scale-1: 100;
|
5
|
+
$zindex-scale-2: 200;
|
6
|
+
$zindex-scale-3: 300;
|
7
|
+
$zindex-scale-4: 400;
|
8
|
+
$zindex-scale-5: 500;
|
9
|
+
|
10
|
+
/*******************************
|
11
|
+
Highlighted Colors
|
12
|
+
*******************************/
|
13
|
+
|
14
|
+
h1::-moz-selection,
|
15
|
+
h2::-moz-selection,
|
16
|
+
h3::-moz-selection {
|
17
|
+
background-color: #F1C1C2;
|
18
|
+
color: #222222;
|
19
|
+
}
|
20
|
+
h1::selection,
|
21
|
+
h2::selection,
|
22
|
+
h3::selection {
|
23
|
+
background-color: #F1C1C2;
|
24
|
+
color: #222222;
|
25
|
+
}
|
26
|
+
.ui *::-moz-selection {
|
27
|
+
background-color: #CCE2FF;
|
28
|
+
}
|
29
|
+
.ui *::selection {
|
30
|
+
background-color: #CCE2FF;
|
31
|
+
}
|
32
|
+
|
33
|
+
/*******************************
|
34
|
+
Global
|
35
|
+
*******************************/
|
36
|
+
|
37
|
+
html,
|
38
|
+
body {
|
39
|
+
font-size: 14px;
|
40
|
+
}
|
41
|
+
|
42
|
+
body {
|
43
|
+
background: #F9F9F9;
|
44
|
+
margin: 0px;
|
45
|
+
padding: 0px;
|
46
|
+
color: #555555;
|
47
|
+
font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
|
48
|
+
}
|
49
|
+
|
50
|
+
h1,
|
51
|
+
h2,
|
52
|
+
h3,
|
53
|
+
h4,
|
54
|
+
h5 {
|
55
|
+
font-family: "Lato", "Helvetica Neue", "Helvetica", "Arial", sans-serif/*rtl:prepend:"Droid Arabic Kufi","Droid Sans", */;
|
56
|
+
}
|
57
|
+
|
58
|
+
pre {
|
59
|
+
white-space: pre-wrap;
|
60
|
+
white-space: -moz-pre-wrap;
|
61
|
+
white-space: -pre-wrap;
|
62
|
+
white-space: -o-pre-wrap;
|
63
|
+
word-wrap: break-word;
|
64
|
+
}
|
65
|
+
pre {
|
66
|
+
background-color: #FFFFFF;
|
67
|
+
text-align: left;
|
68
|
+
}
|
69
|
+
|
70
|
+
p:first-child {
|
71
|
+
margin-top: 0em;
|
72
|
+
}
|
73
|
+
p:last-child {
|
74
|
+
margin-bottom: 0em;
|
75
|
+
}
|
76
|
+
/* links */
|
77
|
+
a {
|
78
|
+
color: #009FDA;
|
79
|
+
text-decoration: none;
|
80
|
+
}
|
81
|
+
a:hover {
|
82
|
+
color: #00BAFF;
|
83
|
+
}
|
84
|
+
|
85
|
+
ul.list {
|
86
|
+
list-style-type: disc;
|
87
|
+
}
|
88
|
+
ul.list li {
|
89
|
+
list-style-position: outside;
|
90
|
+
}
|
91
|
+
|
92
|
+
|
93
|
+
/* text and headers */
|
94
|
+
h1 {
|
95
|
+
margin: 0px 0px 20px;
|
96
|
+
padding: 50px 0px 5px;
|
97
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
98
|
+
}
|
99
|
+
|
100
|
+
/*rtl:ignore*/
|
101
|
+
pre.console {
|
102
|
+
background-color: transparent;
|
103
|
+
line-height: 1.6;
|
104
|
+
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
|
105
|
+
height: 300px;
|
106
|
+
overflow: auto;
|
107
|
+
direction:ltr;
|
108
|
+
}
|
109
|
+
code {
|
110
|
+
background-color: rgba(0, 0, 0, 0.02);
|
111
|
+
border-radius: 0.2em;
|
112
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
|
113
|
+
color: rgba(0, 0, 0, 0.75);
|
114
|
+
font-weight: bold;
|
115
|
+
display: inline-block;
|
116
|
+
font-family: "Monaco","Menlo","Ubuntu Mono","Consolas","source-code-pro",monospace;
|
117
|
+
font-size: 14px;
|
118
|
+
margin: 0;
|
119
|
+
padding: 0.1em 0.4em;
|
120
|
+
vertical-align: baseline;
|
121
|
+
}
|
122
|
+
.ui.message code {
|
123
|
+
background-color: rgba(255, 255, 255, 0.6);
|
124
|
+
}
|
125
|
+
|
126
|
+
pre code {
|
127
|
+
border: none;
|
128
|
+
padding: 0px;
|
129
|
+
}
|
130
|
+
table pre,
|
131
|
+
table code {
|
132
|
+
margin: 0px !important;
|
133
|
+
padding: 0px;
|
134
|
+
background-color: transparent;
|
135
|
+
}
|
136
|
+
p {
|
137
|
+
margin: 1em 0em;
|
138
|
+
}
|
139
|
+
p:first-child {
|
140
|
+
margin-top: 0em;
|
141
|
+
}
|
142
|
+
p:last-child {
|
143
|
+
margin-bottom: 0em;
|
144
|
+
}
|
145
|
+
/* links */
|
146
|
+
code a,
|
147
|
+
a code,
|
148
|
+
a {
|
149
|
+
color: #009FDA;
|
150
|
+
text-decoration: none;
|
151
|
+
}
|
152
|
+
code a:hover,
|
153
|
+
a:hover code,
|
154
|
+
a:hover {
|
155
|
+
color: #00BAFF;
|
156
|
+
}
|
157
|
+
|
158
|
+
#main img {
|
159
|
+
max-width: 100%;
|
160
|
+
}
|
161
|
+
::-webkit-scrollbar {
|
162
|
+
display: none;
|
163
|
+
}
|
164
|
+
|
165
|
+
// Sidebar Toggle Button
|
166
|
+
.ui.transparent.menu {
|
167
|
+
opacity: 0.95;
|
168
|
+
}
|
169
|
+
|
170
|
+
#main.pushable.left.overlay .fixed.launch.button {
|
171
|
+
transform: translate3d(0, 0, 0);
|
172
|
+
}
|
173
|
+
|
174
|
+
#main.pushable.overlay.left.pushed .fixed.launch.button {
|
175
|
+
transform: translate3d(260px, 0, 0);
|
176
|
+
}
|
177
|
+
|
178
|
+
#main .fixed.launch.button {
|
179
|
+
position: fixed;
|
180
|
+
top: 63px;
|
181
|
+
left: -1px;
|
182
|
+
|
183
|
+
width: 35px;
|
184
|
+
height: auto;
|
185
|
+
overflow: hidden;
|
186
|
+
-webkit-transition:
|
187
|
+
0.9s width ease,
|
188
|
+
0.9s transform ease
|
189
|
+
;
|
190
|
+
transition:
|
191
|
+
0.9s width ease,
|
192
|
+
0.9s transform ease
|
193
|
+
;
|
194
|
+
}
|
195
|
+
|
196
|
+
#main .fixed.launch.button .text {
|
197
|
+
position: absolute;
|
198
|
+
left: 44px;
|
199
|
+
}
|
200
|
+
|
201
|
+
#main .fixed.launch.button:hover {
|
202
|
+
width: 90px;
|
203
|
+
}
|
204
|
+
|
205
|
+
#main .fixed .container {
|
206
|
+
width: auto;
|
207
|
+
margin: 0px auto;
|
208
|
+
max-width: 9999px;
|
209
|
+
}
|
210
|
+
|
211
|
+
#main .fixed .launch {
|
212
|
+
cursor: pointer;
|
213
|
+
display: inline-block;
|
214
|
+
}
|
215
|
+
|
216
|
+
|
217
|
+
// Page Settings
|
218
|
+
.pusher .page {
|
219
|
+
display: table;
|
220
|
+
height: 100%;
|
221
|
+
width: 100%;
|
222
|
+
}
|
223
|
+
|
224
|
+
#main .main.container {
|
225
|
+
padding-top: 24px;
|
226
|
+
width: 75%;
|
227
|
+
}
|
228
|
+
|
229
|
+
.container {
|
230
|
+
margin: 0px auto;
|
231
|
+
width: 75%;
|
232
|
+
}
|
233
|
+
|
234
|
+
.main.container {
|
235
|
+
position: relative;
|
236
|
+
z-index: 1;
|
237
|
+
padding-bottom: 40px;
|
238
|
+
}
|
239
|
+
|
240
|
+
@import "./components/tiled_grid.css.scss";
|
@@ -0,0 +1,126 @@
|
|
1
|
+
module.exports = sugar = {}
|
2
|
+
|
3
|
+
registry = require("./registry")
|
4
|
+
|
5
|
+
class ComponentDefinition
|
6
|
+
constructor: (name, options={})->
|
7
|
+
@name = name
|
8
|
+
@completed = false
|
9
|
+
@type = options.type || "component"
|
10
|
+
@mixins = options.mixins if options.mixins?.length > 0
|
11
|
+
|
12
|
+
global.previousComponent = @
|
13
|
+
|
14
|
+
state: (initialState)->
|
15
|
+
@initialState = initialState
|
16
|
+
@
|
17
|
+
|
18
|
+
properties: (defaultProperties)->
|
19
|
+
@defaultProperties = defaultProperties
|
20
|
+
@
|
21
|
+
|
22
|
+
view: (v)->
|
23
|
+
@_view = v
|
24
|
+
@
|
25
|
+
|
26
|
+
helpers: (helpers={})->
|
27
|
+
@helpers ||= {}
|
28
|
+
@helpers = _.extend(@helpers, helpers)
|
29
|
+
@
|
30
|
+
|
31
|
+
classMethods: (classMethods={})->
|
32
|
+
@classMethods ||= {}
|
33
|
+
@classMethods = _.extend(@classMethods, classMethods)
|
34
|
+
@
|
35
|
+
|
36
|
+
events: (helpers={})->
|
37
|
+
@helpers ||= {}
|
38
|
+
@helpers = _.extend(@helpers, helpers)
|
39
|
+
@
|
40
|
+
|
41
|
+
finished: (cb)->
|
42
|
+
@register(cb)
|
43
|
+
|
44
|
+
register: (cb)->
|
45
|
+
@completed = true
|
46
|
+
|
47
|
+
definition = _.extend @helpers || {},
|
48
|
+
displayName: @name
|
49
|
+
render: @_view || (->)
|
50
|
+
|
51
|
+
if @classMethods
|
52
|
+
definition.statics = _.extend((definition.statics || {}), @classMethods)
|
53
|
+
|
54
|
+
if @mixins?.length > 0
|
55
|
+
definition.mixins = @mixins
|
56
|
+
|
57
|
+
me = @
|
58
|
+
|
59
|
+
if _.isFunction(@defaultProperties)
|
60
|
+
definition.getDefaultProps = @defaultProperties
|
61
|
+
else if _.isObject(@defaultProperties)
|
62
|
+
definition.getDefaultProps = ->
|
63
|
+
me.defaultProperties
|
64
|
+
|
65
|
+
if _.isFunction(@initialState)
|
66
|
+
definition.getInitialState = @initialState
|
67
|
+
|
68
|
+
else if _.isObject(@initialState)
|
69
|
+
definition.getInitialState = ->
|
70
|
+
me.initialState
|
71
|
+
|
72
|
+
if _.isArray(@mixins) and @mixins.length > 0
|
73
|
+
definition.mixins = @mixins
|
74
|
+
|
75
|
+
k = React.createClass(definition)
|
76
|
+
cb?(k)
|
77
|
+
|
78
|
+
if @type is "component"
|
79
|
+
global.setComponent?(@name, k)
|
80
|
+
|
81
|
+
if @type is "page"
|
82
|
+
global.setPage?(@name, k)
|
83
|
+
|
84
|
+
global.previousComponent = undefined
|
85
|
+
k
|
86
|
+
|
87
|
+
global.previousComponent = undefined
|
88
|
+
|
89
|
+
# implement a poor man's method missing for certain functions that get used
|
90
|
+
# during the react component definition stage
|
91
|
+
originals = {}
|
92
|
+
|
93
|
+
delegate = (fnName)->
|
94
|
+
sugar[fnName] = ->
|
95
|
+
global.previousComponent?[fnName]?.apply(global.previousComponent, arguments)
|
96
|
+
|
97
|
+
for fn in ['properties', 'helpers', 'events', 'view', 'state', 'classMethods', 'finished']
|
98
|
+
originals[fn] = global[fn]
|
99
|
+
delegate(fn)
|
100
|
+
|
101
|
+
global.register = (name, options={})->
|
102
|
+
global.previousComponent = new ComponentDefinition(name, options)
|
103
|
+
|
104
|
+
global.page = (name, options={})->
|
105
|
+
#options.mixins ||= []
|
106
|
+
#options.mixins.push(Router.State)
|
107
|
+
global.previousComponent = new ComponentDefinition(name, options)
|
108
|
+
|
109
|
+
global.component = (name, options={})->
|
110
|
+
options.type = "component"
|
111
|
+
global.previousComponent = new ComponentDefinition(name, options)
|
112
|
+
|
113
|
+
global.el = (id)-> document.getElementById(id)
|
114
|
+
global.cx = React.addons.classSet
|
115
|
+
|
116
|
+
# makes the sugar available to all the scripts
|
117
|
+
sugar.globalized = ->
|
118
|
+
for prop, val of originals
|
119
|
+
global[prop] = sugar[prop]
|
120
|
+
|
121
|
+
sugar
|
122
|
+
|
123
|
+
# cleans up after the sugar
|
124
|
+
sugar.finish = ->
|
125
|
+
for prop, val of originals
|
126
|
+
global[prop] = val
|
@@ -0,0 +1,53 @@
|
|
1
|
+
/**
|
2
|
+
* @see http://webpack.github.io/docs/configuration.html
|
3
|
+
* for webpack configuration options
|
4
|
+
*/
|
5
|
+
var webpack = require("webpack");
|
6
|
+
|
7
|
+
module.exports = {
|
8
|
+
context: __dirname,
|
9
|
+
|
10
|
+
entry: {
|
11
|
+
toolkit: "./src/index.cjsx"
|
12
|
+
},
|
13
|
+
|
14
|
+
output: {
|
15
|
+
path: __dirname + "/../dist",
|
16
|
+
filename: "[name].js",
|
17
|
+
library: ["Architects","[name]"],
|
18
|
+
libraryTarget: "umd",
|
19
|
+
},
|
20
|
+
|
21
|
+
resolve: {
|
22
|
+
extensions: ["",".js",".coffee",".cjsx",".scss",".html"],
|
23
|
+
modulesDirectories: [
|
24
|
+
'node_modules',
|
25
|
+
'bower_components'
|
26
|
+
],
|
27
|
+
},
|
28
|
+
|
29
|
+
plugins: [
|
30
|
+
new webpack.ProvidePlugin({
|
31
|
+
"_": "underscore",
|
32
|
+
"Backbone": "backbone"
|
33
|
+
})
|
34
|
+
],
|
35
|
+
|
36
|
+
externals:{
|
37
|
+
"jquery": "var jQuery",
|
38
|
+
"$" : "var jQuery"
|
39
|
+
},
|
40
|
+
|
41
|
+
// The 'module' and 'loaders' options tell webpack to use loaders.
|
42
|
+
// @see http://webpack.github.io/docs/using-loaders.html
|
43
|
+
module: {
|
44
|
+
loaders: [
|
45
|
+
{ test: /\.coffee$/, loaders: ["coffee-loader"] },
|
46
|
+
{ test: /\.cjsx$/, loaders: ["coffee-loader","cjsx-loader"] },
|
47
|
+
{ test: /\.scss$/, loader: "style!css!sass?outputStyle=expanded"},
|
48
|
+
{ test: /\.css$/, loader: "style!css!sass?outputStyle=expanded"},
|
49
|
+
{test: /\.(jpg|png|gif|svg)/, loader: 'file-loader?path=smooth-developer-tools'},
|
50
|
+
{test: /\.(eot|ttf|woff)/, loader: 'file-loader?path=smooth-developer-tools'}
|
51
|
+
]
|
52
|
+
}
|
53
|
+
};
|
File without changes
|
@@ -0,0 +1,62 @@
|
|
1
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
2
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
3
|
+
module.exports = factory();
|
4
|
+
else if(typeof define === 'function' && define.amd)
|
5
|
+
define(factory);
|
6
|
+
else if(typeof exports === 'object')
|
7
|
+
exports["toolit"] = factory();
|
8
|
+
else
|
9
|
+
root["Architects"] = root["Architects"] || {}, root["Architects"]["toolit"] = factory();
|
10
|
+
})(this, function() {
|
11
|
+
return /******/ (function(modules) { // webpackBootstrap
|
12
|
+
/******/ // The module cache
|
13
|
+
/******/ var installedModules = {};
|
14
|
+
/******/
|
15
|
+
/******/ // The require function
|
16
|
+
/******/ function __webpack_require__(moduleId) {
|
17
|
+
/******/
|
18
|
+
/******/ // Check if module is in cache
|
19
|
+
/******/ if(installedModules[moduleId])
|
20
|
+
/******/ return installedModules[moduleId].exports;
|
21
|
+
/******/
|
22
|
+
/******/ // Create a new module (and put it into the cache)
|
23
|
+
/******/ var module = installedModules[moduleId] = {
|
24
|
+
/******/ exports: {},
|
25
|
+
/******/ id: moduleId,
|
26
|
+
/******/ loaded: false
|
27
|
+
/******/ };
|
28
|
+
/******/
|
29
|
+
/******/ // Execute the module function
|
30
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
31
|
+
/******/
|
32
|
+
/******/ // Flag the module as loaded
|
33
|
+
/******/ module.loaded = true;
|
34
|
+
/******/
|
35
|
+
/******/ // Return the exports of the module
|
36
|
+
/******/ return module.exports;
|
37
|
+
/******/ }
|
38
|
+
/******/
|
39
|
+
/******/
|
40
|
+
/******/ // expose the modules object (__webpack_modules__)
|
41
|
+
/******/ __webpack_require__.m = modules;
|
42
|
+
/******/
|
43
|
+
/******/ // expose the module cache
|
44
|
+
/******/ __webpack_require__.c = installedModules;
|
45
|
+
/******/
|
46
|
+
/******/ // __webpack_public_path__
|
47
|
+
/******/ __webpack_require__.p = "";
|
48
|
+
/******/
|
49
|
+
/******/ // Load entry module and return exports
|
50
|
+
/******/ return __webpack_require__(0);
|
51
|
+
/******/ })
|
52
|
+
/************************************************************************/
|
53
|
+
/******/ ([
|
54
|
+
/* 0 */
|
55
|
+
/***/ function(module, exports, __webpack_require__) {
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
/***/ }
|
61
|
+
/******/ ])
|
62
|
+
});
|