From 3d2fda7dd39e2363682f1fa353c951ab0d44ddfa Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Tue, 9 Feb 2016 18:40:49 +0100 Subject: Implemented URL query parsing for initial token /opa/?token=abcde --- .../bower_components/foundation-apps/.bower.json | 57 + .../bower_components/foundation-apps/CHANGELOG.md | 301 + .../bower_components/foundation-apps/LICENSE | 22 + .../bower_components/foundation-apps/README.md | 83 + .../foundation-apps/bin/gulp-dynamic-routing.js | 56 + .../bower_components/foundation-apps/bower.json | 48 + .../foundation-apps/dist/css/foundation-apps.css | 6146 ++++++++++++++++++++ .../dist/css/foundation-apps.min.css | 1 + .../dist/js/foundation-apps-templates.js | 170 + .../dist/js/foundation-apps-templates.min.js | 1 + .../foundation-apps/dist/js/foundation-apps.js | 3136 ++++++++++ .../foundation-apps/dist/js/foundation-apps.min.js | 2 + .../foundation-apps/iconic/account.svg | 44 + .../foundation-apps/iconic/action.svg | 38 + .../foundation-apps/iconic/ban.svg | 17 + .../foundation-apps/iconic/bell.svg | 22 + .../foundation-apps/iconic/bookmark.svg | 14 + .../foundation-apps/iconic/cart.svg | 35 + .../foundation-apps/iconic/chevron.svg | 28 + .../foundation-apps/iconic/circle-check.svg | 25 + .../foundation-apps/iconic/circle-x.svg | 25 + .../foundation-apps/iconic/cog.svg | 17 + .../foundation-apps/iconic/comment-square.svg | 14 + .../foundation-apps/iconic/dashboard.svg | 38 + .../foundation-apps/iconic/document.svg | 28 + .../foundation-apps/iconic/envelope.svg | 44 + .../foundation-apps/iconic/flag.svg | 24 + .../foundation-apps/iconic/home.svg | 28 + .../foundation-apps/iconic/lock.svg | 55 + .../foundation-apps/iconic/magnifying-glass.svg | 26 + .../foundation-apps/iconic/person.svg | 62 + .../foundation-apps/iconic/reload.svg | 19 + .../foundation-apps/iconic/share-boxed.svg | 17 + .../foundation-apps/iconic/star.svg | 14 + .../foundation-apps/iconic/thumb.svg | 38 + .../foundation-apps/iconic/zoom.svg | 56 + .../foundation-apps/js/angular/app.js | 35 + .../components/accordion/accordion-item.html | 4 + .../js/angular/components/accordion/accordion.html | 2 + .../js/angular/components/accordion/accordion.js | 107 + .../components/actionsheet/actionsheet-button.html | 6 + .../actionsheet/actionsheet-content.html | 8 + .../components/actionsheet/actionsheet.html | 3 + .../angular/components/actionsheet/actionsheet.js | 226 + .../js/angular/components/common/common.js | 171 + .../js/angular/components/iconic/iconic.js | 186 + .../angular/components/interchange/interchange.js | 94 + .../js/angular/components/modal/modal.html | 9 + .../js/angular/components/modal/modal.js | 291 + .../components/notification/notification-set.html | 9 + .../notification/notification-static.html | 12 + .../components/notification/notification.html | 12 + .../components/notification/notification.js | 417 ++ .../js/angular/components/offcanvas/offcanvas.html | 5 + .../js/angular/components/offcanvas/offcanvas.js | 102 + .../js/angular/components/panel/panel.html | 6 + .../js/angular/components/panel/panel.js | 144 + .../js/angular/components/popup/popup.html | 2 + .../js/angular/components/popup/popup.js | 160 + .../js/angular/components/tabs/tab-content.html | 8 + .../js/angular/components/tabs/tab.html | 3 + .../js/angular/components/tabs/tabs.html | 8 + .../js/angular/components/tabs/tabs.js | 311 + .../foundation-apps/js/angular/foundation.js | 22 + .../angular/services/foundation.core.animation.js | 129 + .../js/angular/services/foundation.core.js | 163 + .../foundation.dynamicRouting.animations.js | 125 + .../angular/services/foundation.dynamicRouting.js | 156 + .../js/angular/services/foundation.mediaquery.js | 198 + .../foundation-apps/js/angular/vendor/markdown.js | 10 + .../foundation-apps/js/angular/vendor/svgDirs.js | 101 + .../foundation-apps/js/vendor/iconic.min.js | 6 + .../foundation-apps/scss/_global.scss | 131 + .../foundation-apps/scss/_settings.scss | 614 ++ .../scss/components/_accordion.scss | 72 + .../scss/components/_action-sheet.scss | 265 + .../scss/components/_block-list.scss | 350 ++ .../scss/components/_button-group.scss | 197 + .../foundation-apps/scss/components/_button.scss | 205 + .../foundation-apps/scss/components/_card.scss | 93 + .../foundation-apps/scss/components/_extras.scss | 54 + .../foundation-apps/scss/components/_forms.scss | 458 ++ .../foundation-apps/scss/components/_grid.scss | 420 ++ .../foundation-apps/scss/components/_iconic.scss | 95 + .../foundation-apps/scss/components/_label.scss | 134 + .../foundation-apps/scss/components/_list.scss | 19 + .../foundation-apps/scss/components/_menu-bar.scss | 363 ++ .../foundation-apps/scss/components/_modal.scss | 126 + .../foundation-apps/scss/components/_motion.scss | 524 ++ .../scss/components/_notification.scss | 207 + .../scss/components/_off-canvas.scss | 169 + .../foundation-apps/scss/components/_panel.scss | 134 + .../foundation-apps/scss/components/_popup.scss | 68 + .../foundation-apps/scss/components/_switch.scss | 130 + .../foundation-apps/scss/components/_tabs.scss | 100 + .../scss/components/_title-bar.scss | 135 + .../scss/components/_typography.scss | 345 ++ .../scss/components/_utilities.scss | 160 + .../foundation-apps/scss/foundation.scss | 50 + .../foundation-apps/scss/helpers/_breakpoints.scss | 154 + .../foundation-apps/scss/helpers/_functions.scss | 343 ++ .../foundation-apps/scss/helpers/_images.scss | 19 + .../foundation-apps/scss/helpers/_mixins.scss | 123 + .../foundation-apps/scss/vendor/_normalize.scss | 425 ++ 104 files changed, 20684 insertions(+) create mode 100644 afb-client/bower_components/foundation-apps/.bower.json create mode 100644 afb-client/bower_components/foundation-apps/CHANGELOG.md create mode 100644 afb-client/bower_components/foundation-apps/LICENSE create mode 100755 afb-client/bower_components/foundation-apps/README.md create mode 100644 afb-client/bower_components/foundation-apps/bin/gulp-dynamic-routing.js create mode 100755 afb-client/bower_components/foundation-apps/bower.json create mode 100755 afb-client/bower_components/foundation-apps/dist/css/foundation-apps.css create mode 100755 afb-client/bower_components/foundation-apps/dist/css/foundation-apps.min.css create mode 100644 afb-client/bower_components/foundation-apps/dist/js/foundation-apps-templates.js create mode 100644 afb-client/bower_components/foundation-apps/dist/js/foundation-apps-templates.min.js create mode 100755 afb-client/bower_components/foundation-apps/dist/js/foundation-apps.js create mode 100755 afb-client/bower_components/foundation-apps/dist/js/foundation-apps.min.js create mode 100755 afb-client/bower_components/foundation-apps/iconic/account.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/action.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/ban.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/bell.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/bookmark.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/cart.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/chevron.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/circle-check.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/circle-x.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/cog.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/comment-square.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/dashboard.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/document.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/envelope.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/flag.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/home.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/lock.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/magnifying-glass.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/person.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/reload.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/share-boxed.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/star.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/thumb.svg create mode 100755 afb-client/bower_components/foundation-apps/iconic/zoom.svg create mode 100644 afb-client/bower_components/foundation-apps/js/angular/app.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/accordion/accordion-item.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/accordion/accordion.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/accordion/accordion.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/actionsheet/actionsheet-button.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/actionsheet/actionsheet-content.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/actionsheet/actionsheet.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/actionsheet/actionsheet.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/common/common.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/iconic/iconic.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/interchange/interchange.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/modal/modal.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/modal/modal.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/notification/notification-set.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/notification/notification-static.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/notification/notification.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/notification/notification.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/offcanvas/offcanvas.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/offcanvas/offcanvas.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/panel/panel.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/panel/panel.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/popup/popup.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/popup/popup.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/tabs/tab-content.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/tabs/tab.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/tabs/tabs.html create mode 100644 afb-client/bower_components/foundation-apps/js/angular/components/tabs/tabs.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/foundation.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/services/foundation.core.animation.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/services/foundation.core.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/services/foundation.dynamicRouting.animations.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/services/foundation.dynamicRouting.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/services/foundation.mediaquery.js create mode 100644 afb-client/bower_components/foundation-apps/js/angular/vendor/markdown.js create mode 100755 afb-client/bower_components/foundation-apps/js/angular/vendor/svgDirs.js create mode 100755 afb-client/bower_components/foundation-apps/js/vendor/iconic.min.js create mode 100755 afb-client/bower_components/foundation-apps/scss/_global.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/_settings.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_accordion.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_action-sheet.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_block-list.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_button-group.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_button.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_card.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_extras.scss create mode 100755 afb-client/bower_components/foundation-apps/scss/components/_forms.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_grid.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_iconic.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_label.scss create mode 100755 afb-client/bower_components/foundation-apps/scss/components/_list.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_menu-bar.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_modal.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_motion.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_notification.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_off-canvas.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_panel.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_popup.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_switch.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_tabs.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/components/_title-bar.scss create mode 100755 afb-client/bower_components/foundation-apps/scss/components/_typography.scss create mode 100755 afb-client/bower_components/foundation-apps/scss/components/_utilities.scss create mode 100755 afb-client/bower_components/foundation-apps/scss/foundation.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/helpers/_breakpoints.scss create mode 100755 afb-client/bower_components/foundation-apps/scss/helpers/_functions.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/helpers/_images.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/helpers/_mixins.scss create mode 100644 afb-client/bower_components/foundation-apps/scss/vendor/_normalize.scss (limited to 'afb-client/bower_components/foundation-apps') diff --git a/afb-client/bower_components/foundation-apps/.bower.json b/afb-client/bower_components/foundation-apps/.bower.json new file mode 100644 index 0000000..ff37b75 --- /dev/null +++ b/afb-client/bower_components/foundation-apps/.bower.json @@ -0,0 +1,57 @@ +{ + "name": "foundation-apps", + "version": "1.1.0", + "main": [ + "dist/css/foundation-apps.css", + "dist/js/foundation-apps.js" + ], + "dependencies": { + "viewport-units-buggyfill": "~0.4.1", + "tether": "~0.6.5", + "fastclick": "~1.0.3", + "angular": "~1.3.4", + "angular-ui-router": "~0.2.12", + "angular-animate": "~1.3.4", + "hammerjs": "~2.0.4" + }, + "homepage": "https://github.com/zurb/foundation-apps", + "description": "A responsive, Angular-powered framework for web apps from ZURB.", + "keywords": [ + "web apps", + "responsive design", + "angular" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "bower_components", + "build", + "docs", + "node_modules", + "tests", + "CONTRIBUTING.md", + "Gemfile", + "Gemfile.lock", + "gulpfile.js", + "karma.conf.js", + "package.json", + "scss/_includes.scss" + ], + "devDependencies": { + "angular-mocks": "~1.3.4", + "angular-highlightjs": "~0.3.2", + "allmighty-autocomplete": "*", + "marked": "~0.3.2", + "jsdiff": "~1.0.8", + "bootcamp": "~1.1.7" + }, + "_release": "1.1.0", + "_resolution": { + "type": "version", + "tag": "v1.1.0", + "commit": "7fc29d6a309a7018a452bdf996e27053a32023c1" + }, + "_source": "git://github.com/zurb/foundation-apps.git", + "_target": "~1.1.0", + "_originalSource": "foundation-apps" +} \ No newline at end of file diff --git a/afb-client/bower_components/foundation-apps/CHANGELOG.md b/afb-client/bower_components/foundation-apps/CHANGELOG.md new file mode 100644 index 0000000..75f5096 --- /dev/null +++ b/afb-client/bower_components/foundation-apps/CHANGELOG.md @@ -0,0 +1,301 @@ +# Version 1.1 — Weisshorn + +*March 17, 2015* + +### General + +- **The CLI has been updated to version 1.1.** It includes a streamlined install process, better error-handling, better cross-platform support, and *no Ruby dependency*. Run `npm update -g foundation-cli` to get it. +- **The documentation is way better.** We did a sweep of every docs page to fix typos, improve examples, and generally make things more clear. Enjoy! +- **Foundation for Apps is now libsass-first.** We're still testing the codebase in both Ruby Sass 3.4+ and libsass 3.1+, but our documentation and template stack now compile with libsass by default. **This means Ruby is no longer a hard dependency of the framework.** +- **Directive templates are now compiled to one file.** We're using [ng-html2js](https://github.com/yaru22/ng-html2js) to package up all of our directive templates into a single JavaScript file. This means you no longer need to include the `components` folder in a public directory! This method still works, but you can also just include the `templates.js` file and you're good to go. + - The templates file is included in the Bower and npm packages, under `dist/js/foundation-apps-templates.js`. + - A third CDN URL has been created for the template files. + - Thanks to @MikaAK for submitting the pull request that implemented this! + +### Sass Variable Changes + +These Sass variables changed. If you're upgrading an existing project, you'll need to update your `_settings.scss` file manually. + +**Added:** `$button-background-hover: scale-color($button-background, $lightness: -15%)` +**Added:** `$motion-class-showhide: (in: "ng-hide-remove", out: "ng-hide-add");` +**Added:** `$motion-class-showhide-active: (in: "ng-hide-remove-active", out: "ng-hide-add-active");` +**Added:** `$input-background-disabled: smartscale($input-background)` +**Added:** `$input-cursor-disabled: not-allowed` +**Changed:** `$button-tag-selector` is now `false` (previously `true`) +**Removed:** `$panel-animation-speed` + +**You don't need to add the new variables to your settings file,** unless you want to change their default values. + +**The old variables are still in the codebase, but aren't being used.** They'll be permanently removed in version 1.2. + +### Template Changes + +- Sass is now compiled using libsass. +- Directive templates are compiled into a `templates.js` file, instead of being referenced using hardcoded paths to HTML files. +- **If you have an existing project, you don't need to change anything to upgrade to v1.1.** + +### New Features + +- **Improved view animation!** In and out animations on views will now play simultaneously. Thanks to @AntJanus, @stryju, and @jeanieshark for all their hard work in solving this difficult problem! +- `ui-view` elements no longer need the attribute `ng-class="['ui-animation']"` to animate properly; just having `ui-view` is enough. +- Prior to v1.1, view animations only worked if the states were created using our front matter routing plugin. Now you can enable view animation in manually-defined states by adding an `animation` property to the state object. + +```js +$stateProvider + .state('home', { + url: '/', + templateUrl: 'templates/home.html', + animation: { + enter: 'slideInDown', + leave: 'fadeOut' + } + }); +``` + +- #461: Added a `$background-hover` parameter to the `button-style()` mixin. You can pass in a color, or the `auto` keyword to automatically set a color based on the `$background` parameter. +- #462: Added styles for disabled form elements. They're automatically applied to any `` element with the `disabled` or `readonly` attributes, or a `
` with `disabled`. The styles can also be added manually by adding the `.disabled` class. +- #475: The path the `zf-iconic` directive uses to search for icon files can now be changed width the `IconicProvider` provider. Use `IconicProvider.setAssetPath(path)` to set the path. Thanks to @gjungb for implementing this! +- #495: The front matter routing plugin now supports ui-router's abstract states. Just add `abstract: true` to a view template to make it go. +- Added support for ngAnimate's "show" and "hide" events. This means you can now use Motion UI classes with `ng-show` and `ng-hide`. +- Added a `.noscroll` class for grid blocks and content blocks. I bet you can guess what it does! +- You can now pass a scope to a modal created with `ModalFactory`, by passing it through the `contentScope` property on the modal's configuration object. + +### Bug Fixes + +- #191: `` elements are properly styled in Internet Explorer 10+. +- #396: Prevent a `$digest already in progress` error from occuring with panels and off-canvas. +- #397: The `FoundationApi` service now has an `unsubscribe` method, which allows us to remove event listeners from elements that have been removed from the DOM. +- #467: The settings variables for buttons were placed above button group, which prevents an issue with undefined variables. +- #472: Fixed the `color` attribute of static notifications not applying. +- #478: Fixed an issue with modals where `scope.$root` could be `null` after a state change. +- #483: Fixed notifications with `autoclose` not automatically closing under some circumstances. +- #486: The `ModalFactory` factory will fetch the modal template before initialization. +- #489: Deprecated `$panel-animation-speed`, an unused Sass variable for panels. It will be removed in a future version of the framework. +- #511: Panels that have converted into a block won't play their in/out animations if triggered by an open or close event. +- #530: Visibility classes will not conflict with Angular's `.ng-hide` class. +- The `