@zkwq/business 0.0.15 → 0.0.17

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.
@@ -9,7 +9,7 @@
9
9
 
10
10
 
11
11
 
12
- [data-v-1c213a27]:export {
12
+ [data-v-2c4fd70d]:export {
13
13
  primary: #2F3A91;
14
14
  success: #67C23A;
15
15
  warning: #FF791A;
@@ -71,7 +71,7 @@
71
71
 
72
72
 
73
73
 
74
- .aggs_item[data-v-1c213a27] {
74
+ .aggs_item[data-v-2c4fd70d] {
75
75
  width: 100%;
76
76
  height: auto;
77
77
  overflow: hidden;
@@ -80,12 +80,12 @@
80
80
  padding-bottom: 12px;
81
81
  border-bottom: 1px solid #DCDFE6;
82
82
  }
83
- .aggs_item .name[data-v-1c213a27] {
83
+ .aggs_item .name[data-v-2c4fd70d] {
84
84
  width: 100px;
85
85
  color: #8590a6;
86
86
  padding: 2px 8px;
87
87
  }
88
- .aggs_item .item[data-v-1c213a27] {
88
+ .aggs_item .item[data-v-2c4fd70d] {
89
89
  flex: 1;
90
90
  height: auto;
91
91
  overflow: hidden;
@@ -93,23 +93,23 @@
93
93
  flex-direction: row;
94
94
  flex-wrap: wrap;
95
95
  }
96
- .aggs_item .item li[data-v-1c213a27] {
96
+ .aggs_item .item li[data-v-2c4fd70d] {
97
97
  padding: 2px 8px;
98
98
  cursor: pointer;
99
99
  margin: 0px 8px;
100
100
  margin-bottom: 4px;
101
101
  }
102
- .aggs_item .item li[data-v-1c213a27]:hover {
102
+ .aggs_item .item li[data-v-2c4fd70d]:hover {
103
103
  background: #6d75b2;
104
104
  color: white;
105
105
  border-radius: 4px;
106
106
  }
107
- .aggs_item .item .selected[data-v-1c213a27] {
107
+ .aggs_item .item .selected[data-v-2c4fd70d] {
108
108
  background: #6d75b2;
109
109
  color: white;
110
110
  border-radius: 4px;
111
111
  }
112
- .aggs_item .more[data-v-1c213a27] {
112
+ .aggs_item .more[data-v-2c4fd70d] {
113
113
  width: 50px;
114
114
  height: auto;
115
115
  overflow: hidden;
@@ -1 +1 @@
1
- [data-v-1c213a27]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.aggs_item[data-v-1c213a27]{width:100%;height:auto;overflow:hidden;display:flex;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #dcdfe6}.aggs_item .name[data-v-1c213a27]{width:100px;color:#8590a6;padding:2px 8px}.aggs_item .item[data-v-1c213a27]{flex:1;height:auto;overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap}.aggs_item .item li[data-v-1c213a27]{padding:2px 8px;cursor:pointer;margin:0 8px;margin-bottom:4px}.aggs_item .item li[data-v-1c213a27]:hover{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .item .selected[data-v-1c213a27]{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .more[data-v-1c213a27]{width:50px;height:auto;overflow:hidden;text-align:center;color:#2f3a91;cursor:pointer;padding-top:4px}
1
+ [data-v-2c4fd70d]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.aggs_item[data-v-2c4fd70d]{width:100%;height:auto;overflow:hidden;display:flex;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #dcdfe6}.aggs_item .name[data-v-2c4fd70d]{width:100px;color:#8590a6;padding:2px 8px}.aggs_item .item[data-v-2c4fd70d]{flex:1;height:auto;overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap}.aggs_item .item li[data-v-2c4fd70d]{padding:2px 8px;cursor:pointer;margin:0 8px;margin-bottom:4px}.aggs_item .item li[data-v-2c4fd70d]:hover{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .item .selected[data-v-2c4fd70d]{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .more[data-v-2c4fd70d]{width:50px;height:auto;overflow:hidden;text-align:center;color:#2f3a91;cursor:pointer;padding-top:4px}
@@ -1,4 +1,47 @@
1
-
1
+ .AppDialog__wrapper.base-dialog__wrapper {
2
+ display: flex;
3
+ flex-direction: column;
4
+ justify-content: center;
5
+ overflow-x: hidden;
6
+ overflow-y: auto;
7
+ }
8
+ .AppDialog {
9
+ max-height: 100vh;
10
+ transition: max-height 0.8s ease, height 0.8s ease;
11
+ }
12
+ .AppDialog.base-dialog {
13
+ margin-top: 0 !important;
14
+ margin-bottom: 0 !important;
15
+ }
16
+ .AppDialog .base-dialog__header {
17
+ padding: 0;
18
+ }
19
+ .AppDialog .base-dialog__body {
20
+ padding: 0;
21
+ }
22
+ .AppDialog--fullPage {
23
+ height: 100vh;
24
+ }
25
+ .AppDialog--fullPage.AppDialog .base-dialog__body {
26
+ height: 100%;
27
+ }
28
+ .AppDialog--fullPage.AppDialog .AppDialog__inner {
29
+ height: 100vh;
30
+ overflow: visible;
31
+ }
32
+ .AppDialog--fullPage.AppDialog .AppDialog__content {
33
+ height: 100%;
34
+ }
35
+ .Modal__closeButton {
36
+ position: absolute;
37
+ top: 8px;
38
+ right: -60px;
39
+ padding: 12px;
40
+ }
41
+ .Modal__closeIcon {
42
+ vertical-align: top;
43
+ fill: #FFF;
44
+ }
2
45
 
3
46
 
4
47
 
@@ -115,47 +158,4 @@
115
158
  .AppDialog__subtitle--left[data-v-742105f1] {
116
159
  padding: 0 16px;
117
160
  }
118
- }.AppDialog__wrapper.base-dialog__wrapper {
119
- display: flex;
120
- flex-direction: column;
121
- justify-content: center;
122
- overflow-x: hidden;
123
- overflow-y: auto;
124
- }
125
- .AppDialog {
126
- max-height: 100vh;
127
- transition: max-height 0.8s ease, height 0.8s ease;
128
- }
129
- .AppDialog.base-dialog {
130
- margin-top: 0 !important;
131
- margin-bottom: 0 !important;
132
- }
133
- .AppDialog .base-dialog__header {
134
- padding: 0;
135
- }
136
- .AppDialog .base-dialog__body {
137
- padding: 0;
138
- }
139
- .AppDialog--fullPage {
140
- height: 100vh;
141
- }
142
- .AppDialog--fullPage.AppDialog .base-dialog__body {
143
- height: 100%;
144
- }
145
- .AppDialog--fullPage.AppDialog .AppDialog__inner {
146
- height: 100vh;
147
- overflow: visible;
148
- }
149
- .AppDialog--fullPage.AppDialog .AppDialog__content {
150
- height: 100%;
151
- }
152
- .Modal__closeButton {
153
- position: absolute;
154
- top: 8px;
155
- right: -60px;
156
- padding: 12px;
157
- }
158
- .Modal__closeIcon {
159
- vertical-align: top;
160
- fill: #FFF;
161
161
  }
@@ -1 +1 @@
1
- [data-v-742105f1]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-742105f1]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-742105f1]{padding:10px 20px 50px}.AppDialog__title[data-v-742105f1]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-742105f1]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-742105f1]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-742105f1]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-742105f1]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-742105f1]{padding:0 16px}}.AppDialog__wrapper.base-dialog__wrapper{display:flex;flex-direction:column;justify-content:center;overflow-x:hidden;overflow-y:auto}.AppDialog{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog.base-dialog{margin-top:0!important;margin-bottom:0!important}.AppDialog .base-dialog__header{padding:0}.AppDialog .base-dialog__body{padding:0}.AppDialog--fullPage{height:100vh}.AppDialog--fullPage.AppDialog .base-dialog__body{height:100%}.AppDialog--fullPage.AppDialog .AppDialog__inner{height:100vh;overflow:visible}.AppDialog--fullPage.AppDialog .AppDialog__content{height:100%}.Modal__closeButton{position:absolute;top:8px;right:-60px;padding:12px}.Modal__closeIcon{vertical-align:top;fill:#FFF}
1
+ .AppDialog__wrapper.base-dialog__wrapper{display:flex;flex-direction:column;justify-content:center;overflow-x:hidden;overflow-y:auto}.AppDialog{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog.base-dialog{margin-top:0!important;margin-bottom:0!important}.AppDialog .base-dialog__header{padding:0}.AppDialog .base-dialog__body{padding:0}.AppDialog--fullPage{height:100vh}.AppDialog--fullPage.AppDialog .base-dialog__body{height:100%}.AppDialog--fullPage.AppDialog .AppDialog__inner{height:100vh;overflow:visible}.AppDialog--fullPage.AppDialog .AppDialog__content{height:100%}.Modal__closeButton{position:absolute;top:8px;right:-60px;padding:12px}.Modal__closeIcon{vertical-align:top;fill:#FFF}[data-v-742105f1]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.AppDialog__inner[data-v-742105f1]{max-height:100vh;transition:max-height .8s ease,height .8s ease}.AppDialog__content[data-v-742105f1]{padding:10px 20px 50px}.AppDialog__title[data-v-742105f1]{margin-top:40px;font-size:24px;font-weight:500;color:#2f3a91;text-align:center}.AppDialog__subtitle[data-v-742105f1]{padding:0 38px;margin-top:4px;font-size:14px;line-height:1.5;color:#8590a6;text-align:center}.AppDialog__title--left[data-v-742105f1]{padding:0 20px;font-size:15px;color:#2f3a91;font-weight:600;height:60px;line-height:60px}.AppDialog__subtitle--left[data-v-742105f1]{padding:0 20px;font-size:14px;line-height:1;color:#8590a6;text-align:left}@media (max-width:576px){.AppDialog__title--left[data-v-742105f1]{padding:20px 16px 10px}.AppDialog__subtitle--left[data-v-742105f1]{padding:0 16px}}
@@ -0,0 +1,93 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+ [data-v-550b2935]:export {
13
+ primary: #2F3A91;
14
+ success: #67C23A;
15
+ warning: #FF791A;
16
+ danger: #F1403C;
17
+ info: #8590a6;
18
+ }
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+ .Avatar[data-v-550b2935] {
75
+ background: transparent;
76
+ border-radius: 2px;
77
+ object-fit: cover;
78
+ }
79
+ .Avatar--pointer[data-v-550b2935] {
80
+ cursor: pointer;
81
+ }
82
+ .Avatar--large[data-v-550b2935] {
83
+ border-radius: 4px;
84
+ }
85
+ .Avatar--round[data-v-550b2935] {
86
+ border-radius: 50%;
87
+ }
88
+ .Avatar__outer[data-v-550b2935] {
89
+ fill: #eaebf4;
90
+ }
91
+ .Avatar__inner[data-v-550b2935] {
92
+ fill: #2F3A91;
93
+ }
@@ -0,0 +1 @@
1
+ [data-v-550b2935]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.Avatar[data-v-550b2935]{background:0 0;border-radius:2px;object-fit:cover}.Avatar--pointer[data-v-550b2935]{cursor:pointer}.Avatar--large[data-v-550b2935]{border-radius:4px}.Avatar--round[data-v-550b2935]{border-radius:50%}.Avatar__outer[data-v-550b2935]{fill:#eaebf4}.Avatar__inner[data-v-550b2935]{fill:#2F3A91}