@kigi/components 1.22.0-alpha.2 → 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 +1 -1
- package/src/components/mbg-select-multi-list/mbg-select-multi-list.html +6 -1
- package/src/components/mbg-select-multi-list/mbg-select-multi-list.scss +8 -0
- package/src/components/mbg-text-area/mbg-text-area.html +2 -1
- package/src/components/mbg-text-area/mbg-text-area.scss +9 -3
- package/src/components/mbg-text-area/mbg-text-area.ts +2 -1
package/package.json
CHANGED
|
@@ -28,7 +28,12 @@
|
|
|
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"
|
|
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>
|
|
32
37
|
<div class="row-content"
|
|
33
38
|
ng-click="$ctrl.selectRow($row)"
|
|
34
39
|
ng-if="!$ctrl.listRowTransclude && $ctrl.label"
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
<div class="mbg-text-wrapper
|
|
1
|
+
<div class="mbg-text-wrapper mbg-text-area-wrapper">
|
|
2
2
|
<textarea type="text"
|
|
3
3
|
ng-model="$ctrl.ngModel"
|
|
4
|
+
ng-class="{'max-height': $ctrl.maxHeight}"
|
|
4
5
|
ng-change="$ctrl.onChange()"
|
|
5
6
|
ng-required="$ctrl.ngRequired"
|
|
6
7
|
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,6 +37,7 @@ const mbgTextArea = {
|
|
|
37
37
|
ngKeydown: '&?',
|
|
38
38
|
placeholder: '@?',
|
|
39
39
|
maxLength: '@?',
|
|
40
|
+
maxHeight: '=?'
|
|
40
41
|
},
|
|
41
42
|
template,
|
|
42
43
|
controller: MbgTextAreaController,
|