Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 35420d6

Browse files
Ghislain BeaulacGhislain Beaulac
authored andcommitted
prepare release 0.7.6
1 parent 2a5a351 commit 35420d6

18 files changed

+244
-214
lines changed

dist/angular-slickgrid.es5.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9939,8 +9939,20 @@ var FilterService = /** @class */ (function () {
99399939
* @return {?}
99409940
*/
99419941
FilterService.prototype.clearFilters = function () {
9942-
// remove the text inside each search input fields
9943-
jquery('.slick-headerrow-column .search-filter').val('');
9942+
// remove the text inside each search filter fields
9943+
jquery('.slick-headerrow-column .search-filter').each(function (index, elm) {
9944+
// clear the value and trigger an event
9945+
// the event is for GraphQL & OData Services to detect the changes and call a new query
9946+
switch (elm.tagName) {
9947+
case 'SELECT':
9948+
jquery(elm).val('').trigger('change');
9949+
break;
9950+
case 'INPUT':
9951+
default:
9952+
jquery(elm).val('').trigger('keyup');
9953+
break;
9954+
}
9955+
});
99449956
// we need to loop through all columnFilters and delete them 1 by 1
99459957
// only trying to make columnFilter an empty (without looping) would not trigger a dataset change
99469958
for (var /** @type {?} */ columnId in this._columnFilters) {

dist/angular-slickgrid.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-slickgrid.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11735,8 +11735,20 @@ class FilterService {
1173511735
* @return {?}
1173611736
*/
1173711737
clearFilters() {
11738-
// remove the text inside each search input fields
11739-
jquery('.slick-headerrow-column .search-filter').val('');
11738+
// remove the text inside each search filter fields
11739+
jquery('.slick-headerrow-column .search-filter').each((index, elm) => {
11740+
// clear the value and trigger an event
11741+
// the event is for GraphQL & OData Services to detect the changes and call a new query
11742+
switch (elm.tagName) {
11743+
case 'SELECT':
11744+
jquery(elm).val('').trigger('change');
11745+
break;
11746+
case 'INPUT':
11747+
default:
11748+
jquery(elm).val('').trigger('keyup');
11749+
break;
11750+
}
11751+
});
1174011752
// we need to loop through all columnFilters and delete them 1 by 1
1174111753
// only trying to make columnFilter an empty (without looping) would not trigger a dataset change
1174211754
for (const /** @type {?} */ columnId in this._columnFilters) {

dist/angular-slickgrid.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bundles/angular-slickgrid.umd.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9938,8 +9938,20 @@ var FilterService = /** @class */ (function () {
99389938
* @return {?}
99399939
*/
99409940
FilterService.prototype.clearFilters = function () {
9941-
// remove the text inside each search input fields
9942-
jquery('.slick-headerrow-column .search-filter').val('');
9941+
// remove the text inside each search filter fields
9942+
jquery('.slick-headerrow-column .search-filter').each(function (index, elm) {
9943+
// clear the value and trigger an event
9944+
// the event is for GraphQL & OData Services to detect the changes and call a new query
9945+
switch (elm.tagName) {
9946+
case 'SELECT':
9947+
jquery(elm).val('').trigger('change');
9948+
break;
9949+
case 'INPUT':
9950+
default:
9951+
jquery(elm).val('').trigger('keyup');
9952+
break;
9953+
}
9954+
});
99439955
// we need to loop through all columnFilters and delete them 1 by 1
99449956
// only trying to make columnFilter an empty (without looping) would not trigger a dataset change
99459957
for (var /** @type {?} */ columnId in this._columnFilters) {

dist/bundles/angular-slickgrid.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bundles/angular-slickgrid.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bundles/angular-slickgrid.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/i18n/fr.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"CLEAR_ALL_FILTERS": "Effacer tous les filtres",
33
"COLUMNS": "Colonnes",
44
"COMMANDS": "Commandes",
5-
"FROM_TO_OF_TOTAL_ITEMS": "{{from}}-{{to}} de {{totalItems}} items",
5+
"FROM_TO_OF_TOTAL_ITEMS": "{{from}}-{{to}} de {{totalItems}} éléments",
66
"FORCE_FIT_COLUMNS": "Ajustement forcé des colonnes",
7-
"ITEMS": "Items",
8-
"ITEMS_PER_PAGE": "items par page",
7+
"ITEMS": "Éléments",
8+
"ITEMS_PER_PAGE": "éléments par page",
99
"OF": "de",
1010
"PAGE": "Page",
1111
"PAGE_X_OF_Y": "page {{x}} de {{y}}",

dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name":"angular-slickgrid","version":"0.7.5","description":"Slickgrid components made available in Angular","keywords":["angular","plugin","datatable","slickgrid"],"license":"MIT","scripts":{"ng":"ng","start":"ng serve","build":"ng build","test":"ng test","lint":"ng lint","e2e":"ng e2e","build-lib":"npm-run-all packagr sass:build sass:copy copy:i18n","build-lib-pack":"npm-run-all build-lib pack-lib copy-pack del-pack","copy:i18n":"cross-env copyfiles -f src/assets/i18n/*.json dist/i18n","copy-pack":"cross-env copyfiles -f *.tgz ../Angular-Slickgrid-PackageTest","del-pack":"cross-env del *.tgz","pack-lib":"npm pack ./dist","packagr":"ng-packagr -p ng-package.json","sass-build-task:scss-compile":"node-sass --source-map true src/app/modules/angular-slickgrid/styles/ -o dist/styles/css","sass-build-task:autoprefixer":"postcss dist/styles/css/*.css --use autoprefixer -d dist/styles/css","sass:build":"npm-run-all -p sass-build-task:*","sass:copy":"cross-env copyfiles -f src/app/modules/angular-slickgrid/styles/*.scss dist/styles/sass","sass:watch":"node-sass 'src/app/modules/angular-slickgrid/styles/**/*.scss' -c 'npm run sass:build'"},"author":"Ghislain B.","repository":{"type":"git","url":"http://github.com/ghiscoding/angular-slickgrid"},"private":false,"dependencies":{"@ngx-translate/core":"^9.0.1","@ngx-translate/http-loader":"^2.0.0","@types/flatpickr":"^3.1.2","@types/moment":"^2.13.0","bootstrap":"^3.3.7","core-js":"^2.5.1","flatpickr":"^4.0.6","font-awesome":"^4.7.0","jquery":"^3.2.1","lodash":"^4.17.4","moment-mini":"^2.18.1","slickgrid":"^2.3.12","vinyl-paths":"^2.1.0"},"devDependencies":{"@angular/animations":"^5.0.0","@angular/cli":"1.5.4","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/language-service":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@types/jasmine":"~2.6.0","@types/jasminewd2":"~2.0.3","@types/node":"^8.0.39","codelyzer":"~3.2.0","copyfiles":"^1.2.0","cross-env":"^5.1.0","del":"^3.0.0","del-cli":"^1.1.0","gulp":"^3.9.1","gulp-bump":"^2.7.0","gulp-sass":"^3.1.0","gulp-yuidoc":"^0.1.2","jasmine-core":"~2.8.0","jasmine-spec-reporter":"~4.2.1","karma":"~1.7.1","karma-chrome-launcher":"~2.2.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","ng-packagr":"^1.6.0","node-sass":"^4.5.3","npm-run-all":"^4.1.1","postcss-cli":"^4.1.1","protractor":"~5.1.2","require-dir":"^0.3.2","run-sequence":"^2.2.0","rxjs":"^5.4.2","ts-node":"~3.3.0","tslint":"^5.8.0","typescript":"^2.3.4","yargs":"^9.0.1","zone.js":"^0.8.17"},"main":"bundles/angular-slickgrid.umd.js","module":"angular-slickgrid.es5.js","es2015":"angular-slickgrid.js","typings":"angular-slickgrid.d.ts","metadata":"angular-slickgrid.metadata.json"}
1+
{"name":"angular-slickgrid","version":"0.7.6","description":"Slickgrid components made available in Angular","keywords":["angular","plugin","datatable","slickgrid"],"license":"MIT","scripts":{"ng":"ng","start":"ng serve","build":"ng build","test":"ng test","lint":"ng lint","e2e":"ng e2e","build-lib":"npm-run-all packagr sass:build sass:copy copy:i18n","build-lib-pack":"npm-run-all build-lib pack-lib copy-pack del-pack","copy:i18n":"cross-env copyfiles -f src/assets/i18n/*.json dist/i18n","copy-pack":"cross-env copyfiles -f *.tgz ../Angular-Slickgrid-PackageTest","del-pack":"cross-env del *.tgz","pack-lib":"npm pack ./dist","packagr":"ng-packagr -p ng-package.json","sass-build-task:scss-compile":"node-sass --source-map true src/app/modules/angular-slickgrid/styles/ -o dist/styles/css","sass-build-task:autoprefixer":"postcss dist/styles/css/*.css --use autoprefixer -d dist/styles/css","sass:build":"npm-run-all -p sass-build-task:*","sass:copy":"cross-env copyfiles -f src/app/modules/angular-slickgrid/styles/*.scss dist/styles/sass","sass:watch":"node-sass 'src/app/modules/angular-slickgrid/styles/**/*.scss' -c 'npm run sass:build'"},"author":"Ghislain B.","repository":{"type":"git","url":"http://github.com/ghiscoding/angular-slickgrid"},"private":false,"dependencies":{"@ngx-translate/core":"^9.0.1","@ngx-translate/http-loader":"^2.0.0","bootstrap":"^3.3.7","core-js":"^2.5.1","flatpickr":"^4.0.6","font-awesome":"^4.7.0","jquery":"^3.2.1","lodash":"^4.17.4","moment-mini":"^2.18.1","slickgrid":"^2.3.12","vinyl-paths":"^2.1.0"},"devDependencies":{"@angular/animations":"^5.0.0","@angular/cli":"1.5.4","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/language-service":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@types/flatpickr":"^3.1.2","@types/jasmine":"~2.6.0","@types/jasminewd2":"~2.0.3","@types/moment":"^2.13.0","@types/node":"^8.0.39","codelyzer":"~3.2.0","copyfiles":"^1.2.0","cross-env":"^5.1.0","del":"^3.0.0","del-cli":"^1.1.0","gulp":"^3.9.1","gulp-bump":"^2.7.0","gulp-sass":"^3.1.0","gulp-yuidoc":"^0.1.2","jasmine-core":"~2.8.0","jasmine-spec-reporter":"~4.2.1","karma":"~1.7.1","karma-chrome-launcher":"~2.2.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","ng-packagr":"^1.6.0","node-sass":"^4.5.3","npm-run-all":"^4.1.1","postcss-cli":"^4.1.1","protractor":"~5.1.2","require-dir":"^0.3.2","run-sequence":"^2.2.0","rxjs":"^5.4.2","ts-node":"~3.3.0","tslint":"^5.8.0","typescript":"^2.3.4","yargs":"^9.0.1","zone.js":"^0.8.17"},"main":"bundles/angular-slickgrid.umd.js","module":"angular-slickgrid.es5.js","es2015":"angular-slickgrid.js","typings":"angular-slickgrid.d.ts","metadata":"angular-slickgrid.metadata.json"}

0 commit comments

Comments
 (0)