@kigi/components 1.27.2-alpha → 1.27.3-alpha

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.27.2-alpha",
3
+ "version": "1.27.3-alpha",
4
4
  "description": "@kigi/components",
5
5
  "main": "src/components/index.ts",
6
6
  "scripts": {
@@ -1,12 +1,11 @@
1
1
  <div class="mbg-input-wrapper mb-input-text-wrapper"
2
2
  ng-if="$ctrl.props">
3
- <input type="text"
4
- ng-model="$ctrl.ngModel"
5
- ng-change="$ctrl.onChange($event)"
6
- ng-required="$ctrl.ngRequired"
7
- ng-disabled="$ctrl.ngDisabled"
8
- ng-blur="$ctrl.ngBlur({ $event })"
9
- ng-focus="$ctrl.ngFocus({ $event })"
10
- placeholder="{{ $ctrl.placeholder }}"
11
- maxlength="{{$ctrl.maxLength}}" />
3
+ <input type="text"
4
+ ng-model="$ctrl.ngModel"
5
+ ng-change="$ctrl.onChange($event)"
6
+ ng-required="$ctrl.ngRequired"
7
+ ng-disabled="$ctrl.ngDisabled"
8
+ ng-blur="$ctrl.ngBlur({ $event })"
9
+ ng-focus="$ctrl.ngFocus({ $event })"
10
+ placeholder="{{ $ctrl.placeholder }}" />
12
11
  </div>
@@ -72,7 +72,6 @@ const mbgInputText = {
72
72
  ngKeypress: '&?',
73
73
  ngKeydown: '&?',
74
74
  capitalize: '=?',
75
- maxLength: '@?',
76
75
  },
77
76
  template,
78
77
  controller: MbgInputTextController,
@@ -21,7 +21,7 @@
21
21
  <tr ng-repeat="$row in $ctrl.rows track by $index"
22
22
  ng-init="$position = $index"
23
23
  ng-style="$ctrl.getRowStripedStyle($row, $index)"
24
- ng-class="{'contains-adicional-row' : $row.isOpenedRow, 'cursor-pointer' : $ctrl.checkbox || $ctrl.radio}"
24
+ ng-class="{'contains-adicional-row' : $row.isOpenedRow, 'cursor-pointer' : $ctrl.checkbox || $ctrl.radio, 'movement-manual': $ctrl.movementManual}"
25
25
  ng-click="$ctrl.handleClickRow($row, $position, $event)">
26
26
  <td ng-if="$ctrl.checkbox && !$row.isAdicional">
27
27
  <mbg-checkbox ng-model="$ctrl.selectedMap[$ctrl.removeCircularJson($row.$json)]"
@@ -55,6 +55,9 @@ mbg-list {
55
55
  &.cursor-pointer {
56
56
  cursor: pointer;
57
57
  }
58
+ &.movement-manual{
59
+ height: 80px;
60
+ }
58
61
  }
59
62
  }
60
63
  }
@@ -26,6 +26,7 @@ export class MbgListController {
26
26
  public dinamicColumns
27
27
  public staticColumns: Array<any>
28
28
  public indexToPush
29
+ private movementManual
29
30
 
30
31
  constructor(public $scope, public $element, public $attrs, public $timeout, public $transclude) {}
31
32
 
@@ -318,6 +319,7 @@ const mbgList = {
318
319
  dinamic: '=?',
319
320
  dinamicColumns: '=?',
320
321
  hideSelectAll: '=?',
322
+ movementManual: '=?',
321
323
  },
322
324
  template,
323
325
  controller: MbgListController,