@kigi/components 1.8.10 → 1.8.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kigi/components",
3
- "version": "1.8.10",
3
+ "version": "1.8.11",
4
4
  "description": "@kigi/components",
5
5
  "main": "src/components/index.ts",
6
6
  "scripts": {
@@ -29,6 +29,7 @@
29
29
  ng-focus="$ctrl.ngFocus({ $event })"
30
30
  placeholder="{{ $ctrl.placeholder }}"
31
31
  enable-add="$ctrl.enableAdd"
32
+ enable-favorite="$ctrl.enableFavorite"
32
33
  many-favorite="true"
33
34
  label="{{ $ctrl.label }}"></mbg-select>
34
35
  </div>
@@ -19,6 +19,7 @@ class MbgMultiSelectController {
19
19
  private enableAdd: boolean
20
20
  private inlineMode: boolean
21
21
  private widthEllipsis: string
22
+ private enableFavorite: boolean
22
23
 
23
24
  constructor(public $scope, public $element, public $attrs, public $timeout) {}
24
25
 
@@ -242,6 +243,7 @@ const mbgMultiSelect = {
242
243
  ngDisabled: '=?',
243
244
  inlineMode: '=?',
244
245
  widthEllipsis: '@?',
246
+ enableFavorite: '=?',
245
247
  },
246
248
  template,
247
249
  controller: MbgMultiSelectController,