@kigi/components 1.23.0-beta-1 → 1.23.0-beta.1
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 +2 -2
- package/src/components/mbg-list/mbg-list.ts +2 -2
- package/src/components/mbg-select-multi-list/mbg-select-multi-list.html +1 -6
- package/src/components/mbg-select-multi-list/mbg-select-multi-list.scss +0 -8
- package/src/components/mbg-text-area/mbg-text-area.html +1 -2
- package/src/components/mbg-text-area/mbg-text-area.scss +3 -9
- package/src/components/mbg-text-area/mbg-text-area.ts +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kigi/components",
|
|
3
|
-
"version": "1.23.0-beta
|
|
3
|
+
"version": "1.23.0-beta.1",
|
|
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
|
-
|
|
267
|
+
0
|
|
268
268
|
? '#eaeaea'
|
|
269
269
|
: '#F5F5F5',
|
|
270
270
|
}
|
|
@@ -28,12 +28,7 @@
|
|
|
28
28
|
<div ng-if="$ctrl.listRowTransclude"
|
|
29
29
|
ng-click="$ctrl.selectRow($row)"
|
|
30
30
|
ng-repeat="$row in $ctrl.data track by $index"
|
|
31
|
-
mbg-dynamic-html="$ctrl.listRowTransclude">
|
|
32
|
-
</div>
|
|
33
|
-
<div ng-show="!$ctrl.data.length"
|
|
34
|
-
class="not-data">
|
|
35
|
-
<span>Todos os cheques dessa página já foram selecionados.</span>
|
|
36
|
-
</div>
|
|
31
|
+
mbg-dynamic-html="$ctrl.listRowTransclude"></div>
|
|
37
32
|
<div class="row-content"
|
|
38
33
|
ng-click="$ctrl.selectRow($row)"
|
|
39
34
|
ng-if="!$ctrl.listRowTransclude && $ctrl.label"
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
<div class="mbg-text-wrapper
|
|
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"
|
|
@@ -22,7 +22,7 @@ class MbgTextAreaController {
|
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
MbgTextAreaController
|
|
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,
|