├── .gitignore ├── .jshintrc ├── .npmignore ├── LICENSE ├── README.md ├── bower.json ├── dist ├── react-foundation-apps.js └── react-foundation-apps.min.js ├── docs ├── accordion │ ├── advanced.jsx │ ├── advanced.md │ ├── basic.jsx │ ├── basic.md │ ├── index.jsx │ └── options.md ├── action-sheet │ ├── basic.jsx │ ├── basic.md │ └── index.jsx ├── docs.jsx ├── docs.scss ├── iconic │ ├── basic.jsx │ ├── basic.md │ └── index.jsx ├── img │ ├── large.jpg │ ├── medium.jpg │ └── small.jpg ├── index.html ├── index.jsx ├── install │ ├── index.jsx │ └── install.md ├── interchange │ ├── basic.jsx │ ├── basic.md │ ├── content.jsx │ └── index.jsx ├── modal │ ├── advanced.jsx │ ├── advanced.md │ ├── index.jsx │ ├── simple.jsx │ └── simple.md ├── notification │ ├── advanced.jsx │ ├── index.jsx │ ├── static.jsx │ └── static.md ├── offcanvas │ ├── index.jsx │ └── top.md ├── panel │ ├── basic.md │ ├── fixed-panel.jsx │ ├── fixed-panel.md │ ├── index.jsx │ └── trigger.md ├── popup │ ├── basic.jsx │ ├── basic.md │ └── index.jsx ├── routes.jsx ├── tabs │ ├── basic.jsx │ ├── basic.md │ └── index.jsx └── trigger │ ├── close.md │ ├── hard-toggle.md │ ├── index.jsx │ ├── notify.md │ ├── open.md │ └── toggle.md ├── gulpfile.js ├── index.js ├── package.json ├── src ├── accordion │ ├── index.jsx │ └── item.jsx ├── action-sheet │ ├── button.jsx │ ├── content.jsx │ └── index.jsx ├── iconic │ └── index.jsx ├── interchange │ └── index.jsx ├── modal │ └── index.jsx ├── notification │ ├── index.jsx │ ├── notification.jsx │ ├── set.jsx │ └── static.jsx ├── offcanvas │ └── index.jsx ├── panel │ └── index.jsx ├── popup │ ├── index.jsx │ └── toggle.jsx ├── tabs │ ├── index.jsx │ └── tab.jsx ├── trigger │ └── index.jsx └── utils │ ├── animation.jsx │ ├── foundation-api.js │ ├── mq-helpers.js │ └── mq-init.js ├── vendor └── iconic.min.js ├── webpack.config.dist.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/bower.json -------------------------------------------------------------------------------- /dist/react-foundation-apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/dist/react-foundation-apps.js -------------------------------------------------------------------------------- /dist/react-foundation-apps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/dist/react-foundation-apps.min.js -------------------------------------------------------------------------------- /docs/accordion/advanced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/accordion/advanced.jsx -------------------------------------------------------------------------------- /docs/accordion/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/accordion/advanced.md -------------------------------------------------------------------------------- /docs/accordion/basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/accordion/basic.jsx -------------------------------------------------------------------------------- /docs/accordion/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/accordion/basic.md -------------------------------------------------------------------------------- /docs/accordion/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/accordion/index.jsx -------------------------------------------------------------------------------- /docs/accordion/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/accordion/options.md -------------------------------------------------------------------------------- /docs/action-sheet/basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/action-sheet/basic.jsx -------------------------------------------------------------------------------- /docs/action-sheet/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/action-sheet/basic.md -------------------------------------------------------------------------------- /docs/action-sheet/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/action-sheet/index.jsx -------------------------------------------------------------------------------- /docs/docs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/docs.jsx -------------------------------------------------------------------------------- /docs/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/docs.scss -------------------------------------------------------------------------------- /docs/iconic/basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/iconic/basic.jsx -------------------------------------------------------------------------------- /docs/iconic/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/iconic/basic.md -------------------------------------------------------------------------------- /docs/iconic/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/iconic/index.jsx -------------------------------------------------------------------------------- /docs/img/large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/img/large.jpg -------------------------------------------------------------------------------- /docs/img/medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/img/medium.jpg -------------------------------------------------------------------------------- /docs/img/small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/img/small.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/index.jsx -------------------------------------------------------------------------------- /docs/install/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/install/index.jsx -------------------------------------------------------------------------------- /docs/install/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/install/install.md -------------------------------------------------------------------------------- /docs/interchange/basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/interchange/basic.jsx -------------------------------------------------------------------------------- /docs/interchange/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/interchange/basic.md -------------------------------------------------------------------------------- /docs/interchange/content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/interchange/content.jsx -------------------------------------------------------------------------------- /docs/interchange/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/interchange/index.jsx -------------------------------------------------------------------------------- /docs/modal/advanced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/modal/advanced.jsx -------------------------------------------------------------------------------- /docs/modal/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/modal/advanced.md -------------------------------------------------------------------------------- /docs/modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/modal/index.jsx -------------------------------------------------------------------------------- /docs/modal/simple.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/modal/simple.jsx -------------------------------------------------------------------------------- /docs/modal/simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/modal/simple.md -------------------------------------------------------------------------------- /docs/notification/advanced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/notification/advanced.jsx -------------------------------------------------------------------------------- /docs/notification/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/notification/index.jsx -------------------------------------------------------------------------------- /docs/notification/static.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/notification/static.jsx -------------------------------------------------------------------------------- /docs/notification/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/notification/static.md -------------------------------------------------------------------------------- /docs/offcanvas/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/offcanvas/index.jsx -------------------------------------------------------------------------------- /docs/offcanvas/top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/offcanvas/top.md -------------------------------------------------------------------------------- /docs/panel/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/panel/basic.md -------------------------------------------------------------------------------- /docs/panel/fixed-panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/panel/fixed-panel.jsx -------------------------------------------------------------------------------- /docs/panel/fixed-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/panel/fixed-panel.md -------------------------------------------------------------------------------- /docs/panel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/panel/index.jsx -------------------------------------------------------------------------------- /docs/panel/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/panel/trigger.md -------------------------------------------------------------------------------- /docs/popup/basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/popup/basic.jsx -------------------------------------------------------------------------------- /docs/popup/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/popup/basic.md -------------------------------------------------------------------------------- /docs/popup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/popup/index.jsx -------------------------------------------------------------------------------- /docs/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/routes.jsx -------------------------------------------------------------------------------- /docs/tabs/basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/tabs/basic.jsx -------------------------------------------------------------------------------- /docs/tabs/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/tabs/basic.md -------------------------------------------------------------------------------- /docs/tabs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/tabs/index.jsx -------------------------------------------------------------------------------- /docs/trigger/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/trigger/close.md -------------------------------------------------------------------------------- /docs/trigger/hard-toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/trigger/hard-toggle.md -------------------------------------------------------------------------------- /docs/trigger/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/trigger/index.jsx -------------------------------------------------------------------------------- /docs/trigger/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/trigger/notify.md -------------------------------------------------------------------------------- /docs/trigger/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/trigger/open.md -------------------------------------------------------------------------------- /docs/trigger/toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/docs/trigger/toggle.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/package.json -------------------------------------------------------------------------------- /src/accordion/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/accordion/index.jsx -------------------------------------------------------------------------------- /src/accordion/item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/accordion/item.jsx -------------------------------------------------------------------------------- /src/action-sheet/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/action-sheet/button.jsx -------------------------------------------------------------------------------- /src/action-sheet/content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/action-sheet/content.jsx -------------------------------------------------------------------------------- /src/action-sheet/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/action-sheet/index.jsx -------------------------------------------------------------------------------- /src/iconic/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/iconic/index.jsx -------------------------------------------------------------------------------- /src/interchange/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/interchange/index.jsx -------------------------------------------------------------------------------- /src/modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/modal/index.jsx -------------------------------------------------------------------------------- /src/notification/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/notification/index.jsx -------------------------------------------------------------------------------- /src/notification/notification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/notification/notification.jsx -------------------------------------------------------------------------------- /src/notification/set.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/notification/set.jsx -------------------------------------------------------------------------------- /src/notification/static.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/notification/static.jsx -------------------------------------------------------------------------------- /src/offcanvas/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/offcanvas/index.jsx -------------------------------------------------------------------------------- /src/panel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/panel/index.jsx -------------------------------------------------------------------------------- /src/popup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/popup/index.jsx -------------------------------------------------------------------------------- /src/popup/toggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/popup/toggle.jsx -------------------------------------------------------------------------------- /src/tabs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/tabs/index.jsx -------------------------------------------------------------------------------- /src/tabs/tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/tabs/tab.jsx -------------------------------------------------------------------------------- /src/trigger/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/trigger/index.jsx -------------------------------------------------------------------------------- /src/utils/animation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/utils/animation.jsx -------------------------------------------------------------------------------- /src/utils/foundation-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/utils/foundation-api.js -------------------------------------------------------------------------------- /src/utils/mq-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/utils/mq-helpers.js -------------------------------------------------------------------------------- /src/utils/mq-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/src/utils/mq-init.js -------------------------------------------------------------------------------- /vendor/iconic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/vendor/iconic.min.js -------------------------------------------------------------------------------- /webpack.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/webpack.config.dist.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiran/react-foundation-apps/HEAD/webpack.config.js --------------------------------------------------------------------------------