@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 +1 -1
- package/src/components/mbg-input-text/mbg-input-text.html +8 -9
- package/src/components/mbg-input-text/mbg-input-text.ts +0 -1
- package/src/components/mbg-list/mbg-list.html +1 -1
- package/src/components/mbg-list/mbg-list.scss +3 -0
- package/src/components/mbg-list/mbg-list.ts +2 -0
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
<div class="mbg-input-wrapper mb-input-text-wrapper"
|
|
2
2
|
ng-if="$ctrl.props">
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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>
|
|
@@ -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)]"
|
|
@@ -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,
|