@colijnit/corecomponents_v12 260.1.10 → 260.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -24
- package/bundles/colijnit-corecomponents_v12.umd.js +8 -2
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12-260.1.11.tgz +0 -0
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/base/base-input.component.js +3 -1
- package/esm2015/lib/components/co-dialog/co-dialog.component.js +22 -22
- package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.component.js +16 -16
- package/esm2015/lib/components/filter-item/filter-item.component.js +162 -162
- package/esm2015/lib/components/input-number-picker/input-number-picker.component.js +33 -33
- package/esm2015/lib/components/input-number-picker/input-number-picker.module.js +1 -1
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +6 -2
- package/esm2015/lib/components/list-of-values/list-of-values.component.js +2 -2
- package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +31 -31
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +180 -180
- package/esm2015/lib/core/enum/core-components-icon.enum.js +1 -1
- package/esm2015/lib/core/model/core-components-icon-svg.js +1 -1
- package/esm2015/lib/directives/screen-configuration/screen-configuration.module.js +1 -1
- package/esm2015/public-api.js +1 -1
- package/fesm2015/colijnit-corecomponents_v12.js +446 -440
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/base-input.component.d.ts +1 -0
- package/lib/components/calendar/style/_material-definition.scss +46 -46
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# Corecomponents
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project corecomponents` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project corecomponents`.
|
|
8
|
-
> Note: Don't forget to add `--project corecomponents` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build corecomponents` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build corecomponents`, go to the dist folder `cd dist/corecomponents` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test corecomponents` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# Corecomponents
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project corecomponents` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project corecomponents`.
|
|
8
|
+
> Note: Don't forget to add `--project corecomponents` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build corecomponents` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build corecomponents`, go to the dist folder `cd dist/corecomponents` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test corecomponents` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -2276,6 +2276,7 @@
|
|
|
2276
2276
|
this.keyDown = new i0.EventEmitter();
|
|
2277
2277
|
this.keyUp = new i0.EventEmitter();
|
|
2278
2278
|
this.modelChange = new i0.EventEmitter();
|
|
2279
|
+
this.selectedValueChange = new i0.EventEmitter();
|
|
2279
2280
|
this.userModelChange = new i0.EventEmitter();
|
|
2280
2281
|
this.hiddenChange = new i0.EventEmitter();
|
|
2281
2282
|
this.cancelClicked = new i0.EventEmitter();
|
|
@@ -3188,6 +3189,7 @@
|
|
|
3188
3189
|
keyDown: [{ type: i0.Output }],
|
|
3189
3190
|
keyUp: [{ type: i0.Output }],
|
|
3190
3191
|
modelChange: [{ type: i0.Output }],
|
|
3192
|
+
selectedValueChange: [{ type: i0.Output }],
|
|
3191
3193
|
userModelChange: [{ type: i0.Output }],
|
|
3192
3194
|
hiddenChange: [{ type: i0.Output }],
|
|
3193
3195
|
cancelClicked: [{ type: i0.Output }],
|
|
@@ -11910,7 +11912,11 @@
|
|
|
11910
11912
|
ListOfValuesPopupComponent.prototype._prepareViewModels = function () {
|
|
11911
11913
|
var _this = this;
|
|
11912
11914
|
this.viewModels.length = 0;
|
|
11913
|
-
this.viewModels = this.viewModelsMain.filter(function (vm) {
|
|
11915
|
+
this.viewModels = this.viewModelsMain.filter(function (vm) {
|
|
11916
|
+
return Object.values(vm.model).some(function (value) {
|
|
11917
|
+
return value.toString().toLowerCase().includes(_this.searchTerm ? _this.searchTerm.toLowerCase() : '');
|
|
11918
|
+
});
|
|
11919
|
+
});
|
|
11914
11920
|
};
|
|
11915
11921
|
ListOfValuesPopupComponent.prototype._scrollIntoView = function () {
|
|
11916
11922
|
var _this = this;
|
|
@@ -12177,7 +12183,7 @@
|
|
|
12177
12183
|
}
|
|
12178
12184
|
}
|
|
12179
12185
|
this.setModel(option);
|
|
12180
|
-
this.
|
|
12186
|
+
this.selectedValueChange.emit(option);
|
|
12181
12187
|
this.detectChanges();
|
|
12182
12188
|
};
|
|
12183
12189
|
ListOfValuesComponent.prototype.closePopup = function () {
|