@kigi/components 1.23.0-beta-2 → 1.23.0-beta.2

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.23.0-beta-2",
3
+ "version": "1.23.0-beta.2",
4
4
  "description": "@kigi/components",
5
5
  "main": "src/components/index.ts",
6
6
  "scripts": {
@@ -97,4 +97,4 @@
97
97
  "webpack": "^2.5.1",
98
98
  "webpack-dev-server": "^2.6.1"
99
99
  }
100
- }
100
+ }
@@ -25,7 +25,7 @@ export class MbgListController {
25
25
  public dinamic
26
26
  public dinamicColumns
27
27
 
28
- constructor(public $scope, public $element, public $attrs, public $timeout, public $transclude) {}
28
+ constructor(public $scope, public $element, public $attrs, public $timeout, public $transclude) { }
29
29
 
30
30
  $onInit() {
31
31
  this.enableOnSelectByRow =
@@ -264,7 +264,7 @@ export class MbgListController {
264
264
  )
265
265
  }) %
266
266
  2 ===
267
- 0
267
+ 0
268
268
  ? '#eaeaea'
269
269
  : '#F5F5F5',
270
270
  }
@@ -1,7 +1,6 @@
1
1
  <div class="mbg-text-wrapper mb-text-area-wrapper">
2
2
  <textarea type="text"
3
3
  ng-model="$ctrl.ngModel"
4
- ng-class="{'max-height': $ctrl.maxHeight}"
5
4
  ng-change="$ctrl.onChange()"
6
5
  ng-required="$ctrl.ngRequired"
7
6
  ng-disabled="$ctrl.ngDisabled"
@@ -1,9 +1,3 @@
1
- .mbg-text-wrapper {
2
-
3
- .max-height{
4
- min-height: 42px;
5
- max-height: 65px;
6
- height: 42px;
7
- padding: 11px;
8
- }
9
- }
1
+ // .mbg-text-area-wrapper {
2
+
3
+ // }
@@ -22,7 +22,7 @@ class MbgTextAreaController {
22
22
  }
23
23
  }
24
24
  }
25
- MbgTextAreaController['$inject'] = ['$scope', '$element', '$attrs']
25
+ MbgTextAreaController.$inject = ['$scope', '$element', '$attrs']
26
26
 
27
27
  const mbgTextArea = {
28
28
  bindings: {
@@ -37,7 +37,6 @@ const mbgTextArea = {
37
37
  ngKeydown: '&?',
38
38
  placeholder: '@?',
39
39
  maxLength: '@?',
40
- maxHeight: '=?'
41
40
  },
42
41
  template,
43
42
  controller: MbgTextAreaController,