@kigi/components 1.23.0-beta.8 → 1.23.0-beta.9

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.8",
3
+ "version": "1.23.0-beta.9",
4
4
  "description": "@kigi/components",
5
5
  "main": "src/components/index.ts",
6
6
  "scripts": {
@@ -23,8 +23,7 @@
23
23
  </mbg-input-search>
24
24
  <div ng-if="$ctrl.listHeaderDataTransclude"
25
25
  mbg-dynamic-html="$ctrl.listHeaderDataTransclude"></div>
26
- <div class="mbg-multi-list-wrapper"
27
- ng-show="$ctrl.data.length > 0">
26
+ <div class="mbg-multi-list-wrapper">
28
27
  <div ng-if="$ctrl.listRowTransclude"
29
28
  ng-click="$ctrl.selectRow($row)"
30
29
  ng-repeat="$row in $ctrl.data track by $index"
@@ -45,8 +44,7 @@
45
44
  ng-show="$ctrl.count">
46
45
  <span>{{$ctrl.data.length}} / {{$ctrl.count}}</span>
47
46
  </div>
48
- <div class="row m-b-24 m-t-14"
49
- ng-show="$ctrl.pagination.data.length > 0">
47
+ <div class="row m-b-24 m-t-14">
50
48
  <div class="col-md-12">
51
49
  <mbg-pagination active-page="$ctrl.pagination.page"
52
50
  page-size="$ctrl.pagination.pageSize"
@@ -1,11 +1,11 @@
1
1
  .mbg-select-multi-list-wrapper {
2
- .message-text{
2
+ .message-text {
3
3
  display: flex;
4
4
  justify-content: center;
5
5
  align-items: center;
6
6
  padding-top: 102px;
7
- margin-bottom: 152px;
8
- }
7
+ margin-bottom: 152px;
8
+ }
9
9
 
10
10
  mbg-input-search .mbg-input-search-wrapper .input-group-search {
11
11
  border: none;
@@ -17,19 +17,19 @@
17
17
 
18
18
  .mbg-multi-list-wrapper {
19
19
  max-height: 280px;
20
+ height: 280px;
20
21
  overflow: auto;
21
22
  padding: 14px 14px 6px 14px;
22
23
  background-color: #f5f5f5;
23
-
24
- .not-data {
25
- display: flex;
26
- width: 100%;
27
- height: 100%;
28
- justify-content: center;
29
- align-items: center;
30
- }
31
24
  }
32
-
25
+ .not-data {
26
+ display: flex;
27
+ width: 100%;
28
+ overflow: hidden;
29
+ height: 260px;
30
+ justify-content: center;
31
+ align-items: center;
32
+ }
33
33
  .row-content {
34
34
  align-items: center;
35
35
  border-radius: 5px;
@@ -43,7 +43,7 @@
43
43
  cursor: pointer;
44
44
 
45
45
  &:hover {
46
- opacity: 0.7;
46
+ opacity: 0.7;
47
47
  }
48
48
  }
49
49