@kigi/components 1.19.2 → 1.19.3-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kigi/components",
3
- "version": "1.19.2",
3
+ "version": "1.19.3-beta.0",
4
4
  "description": "@kigi/components",
5
5
  "main": "src/components/index.ts",
6
6
  "scripts": {
@@ -56,7 +56,7 @@ class MbgSelectController {
56
56
  public $timeout,
57
57
  public $compile,
58
58
  public $transclude,
59
- ) { }
59
+ ) {}
60
60
 
61
61
  $onInit() {
62
62
  this.fixedValue = this.ngValue || 'id'
@@ -323,6 +323,10 @@ class MbgSelectController {
323
323
  }
324
324
 
325
325
  onInputKeydown(evt) {
326
+ if (this.ngDisabled) {
327
+ return
328
+ }
329
+
326
330
  this.hasFocus = true
327
331
  this.pressEnter = false
328
332
  this.ngModel = null
@@ -138,7 +138,7 @@ export class MbgSelectMultiListController {
138
138
 
139
139
  searchNgModel() {
140
140
  this.$timeout(() => {
141
- const search = (this.selectOptionRight !== "all" ? this.selectOptionRight : this.label).split(',')
141
+ const search = (this.selectOptionRight !== "issuername" ? this.selectOptionRight : this.label).split(',')
142
142
  const keys = search.map((word) => word.trim())
143
143
  const dataModel = JSON.parse(JSON.stringify(this.ngModel))
144
144
  const options = {