Fluid-web-components is a simple web application component written in AngularJS and Bootstrap.
- To provide the basic components used in web applications like, tables, pagination, drop-down, etc., with simplified options and tags.
- Creating a drop-down component can be as simple as the following:
<fluid-select label="Limit" values="25,50,75,100" ng-model="limitSize"></fluid-select>
bower install -g fluid-web-components
- Sass: We used sass to style our components
- To install sass
gem install sass - Grunt: We used Grunt as our build system
- To install dependencies run
npm install -g - To build the project run
npm package
- Prerequisite libraries:
<link href="bootstrap.css" rel="stylesheet">
<link href="font-awesome.css" rel="stylesheet">
<script src="jquery.js" type="text/javascript"></script>
<script src="angular.js" type="text/javascript"></script>
<script src="bootstrap.js" type="text/javascript"></script>
<script src="angular-filter" type="text/javascript"></script>
- Import
fluid.webComponentsmodule to your app:
angular.module("mainApp",["fluid.webComponents"])
Jerico de Guzman - Senior Software Engineer.