ui-grid-sass
Advanced tools
Comparing version 4.6.4 to 4.8.0
## CHANGE LOG | ||
#### 24 May, 2019 | ||
Updates for UI-Grid 4.8.0 | ||
Split source across directories for the root, core and features (similar to how UI-Grid has done it) | ||
Replaced Gulp build process for pure command line node-sass/postcss mix | ||
Updated dependencies (and added resolutions (Yarn only)) for security reasons | ||
- Bootstrap-SASS@3.4.1 (guess it wasn't final) | ||
#### 16 October, 2018 | ||
Updates to UI-Grid 4.6.3 | ||
Changing versioning to match with UI-Grid versioning | ||
@@ -12,4 +23,5 @@ | ||
- Font-Awesome@4.7.0 | ||
Both of these dependencies are the final versions in those major releases, as the next | ||
major release of each are complete rewrites of their respective libraries, and UI-Grid | ||
for AngularJS (1.x) is written for these versions. |
{ | ||
"name": "ui-grid-sass", | ||
"version": "4.6.4", | ||
"version": "4.8.0", | ||
"description": "SASS implementation of the Angular UI Grid styles. Currently Angular UI Grid only provides LESS for styling. For those looking for a SASS implementation, to integrate in their own environment, this provides a 1:1 match to the existing LESS process.", | ||
"scripts": { | ||
"build": "gulp" | ||
"sass": "node-sass --importer=node_modules/node-sass-tilde-importer ./ui-grid.scss ./dist/ui-grid.css", | ||
"autoprefixer": "postcss ./dist/ui-grid.css -o ./dist/ui-grid.css", | ||
"build": "npm run sass && npm run autoprefixer" | ||
}, | ||
@@ -30,12 +32,13 @@ "keywords": [ | ||
"devDependencies": { | ||
"bootstrap-sass": "3.3.7", | ||
"autoprefixer": "9.5.1", | ||
"bootstrap-sass": "3.4.1", | ||
"font-awesome": "4.7.0", | ||
"gulp": "3.9.1", | ||
"gulp-sass": "3.1.0", | ||
"gulp-sourcemaps": "2.6.1", | ||
"autoprefixer": "^8.0.0", | ||
"gulp-postcss": "^7.0.1", | ||
"postcss-remove-selectors": "^2.0.0", | ||
"postcss-scss": "^1.0.3" | ||
"node-sass": "4.12.0", | ||
"node-sass-tilde-importer": "1.0.2", | ||
"postcss": "7.0.16", | ||
"postcss-cli": "6.1.2" | ||
}, | ||
"resolutions": { | ||
"tar": ">=4.4.2" | ||
} | ||
} |
@@ -11,10 +11,14 @@ # UI Grid SASS | ||
- `@import "your/custom/variables/file";` | ||
- `@import "node_modules/ui-grid-sass/src/main";` | ||
- `@import "~ui-grid-sass/src/main";` | ||
(Your SASS compiler may not support the `~`, for pointing to `node_modules`. If you run into this issue, Google is your friend.) | ||
The `_main.scss` file includes all pieces of UI-Grid CSS. For granular control you may include the `src/core/main` file, and any `feature` files you might require from the `features` directory. This allows you to tailor UI-Grid's CSS to include only the features your application uses. | ||
## Usage With Build Tools | ||
You will want to include an `includePaths` statement in your build (gulp, webpack, etc) configs | ||
that reference your `node_modules` directory. | ||
that reference your `node_modules` directory. (This handles that `~` referenced above. Webpack sass-loader handles this automatically.) | ||
## Dependencies | ||
UI Grid SASS uses Bootstrap for styling, and Font Awesome for various icons, so your application must include those | ||
UI Grid SASS uses Bootstrap (3.4.1) for styling, and Font Awesome (4.7.0) for various icons, so your application must include those | ||
libraries and their dependencies. Both (Bootstrap-SASS and Font-Awesome) are active dependencies of this project, and | ||
@@ -21,0 +25,0 @@ will automatically be available in `node_modules` once the package is installed. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
7
41
27
97759
1278