@uxda/appkit 1.2.75 → 1.2.77
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/dist/appkit.css +29 -6
- package/dist/index.js +457 -296
- package/package.json +1 -1
- package/src/components/dd-skeleton/doc.md +19 -0
- package/src/components/dd-skeleton/index.vue +36 -0
- package/src/shared/composables/useDragBox.ts +17 -8
- package/src/user/api/index.ts +2 -1
- package/src/user/components/LoginSetting.vue +2 -1
- package/src/user/components/UserEntry.vue +15 -2
- package/src/user/components/UserFeedback.vue +48 -18
- package/src/user/components/UserFeedbackEntry.vue +56 -6
- package/src/user/components/UserInfo.vue +25 -5
- package/src/user/components/UserResourceEmpty.vue +6 -5
package/dist/appkit.css
CHANGED
|
@@ -1557,12 +1557,17 @@ page {
|
|
|
1557
1557
|
font-weight: 500;
|
|
1558
1558
|
line-height: 25px;
|
|
1559
1559
|
margin-bottom: 5px;
|
|
1560
|
+
display: flex;
|
|
1561
|
+
align-items: center;
|
|
1560
1562
|
}
|
|
1561
1563
|
.user-entry-bd-smalltxt {
|
|
1562
1564
|
margin-top: 0;
|
|
1563
1565
|
font-size: 15px;
|
|
1564
1566
|
line-height: 21px;
|
|
1565
1567
|
}
|
|
1568
|
+
.dd-skeleton__item {
|
|
1569
|
+
margin-top: 10px;
|
|
1570
|
+
}
|
|
1566
1571
|
.user-info {
|
|
1567
1572
|
height: 100vh;
|
|
1568
1573
|
}
|
|
@@ -1635,13 +1640,16 @@ page {
|
|
|
1635
1640
|
width: 100%;
|
|
1636
1641
|
height: 100%;
|
|
1637
1642
|
}
|
|
1643
|
+
.user-info-team-item-avatar .empty {
|
|
1644
|
+
width: 20px;
|
|
1645
|
+
height: 40px;
|
|
1646
|
+
}
|
|
1638
1647
|
.user-info-team-item-title {
|
|
1639
1648
|
font-size: 16px;
|
|
1640
1649
|
font-weight: 500;
|
|
1641
1650
|
margin-bottom: 5px;
|
|
1642
1651
|
}
|
|
1643
1652
|
.user-info-team-item-app {
|
|
1644
|
-
margin-bottom: 8px;
|
|
1645
1653
|
display: flex;
|
|
1646
1654
|
align-items: center;
|
|
1647
1655
|
flex-wrap: wrap;
|
|
@@ -2170,6 +2178,11 @@ page {
|
|
|
2170
2178
|
width: 10px;
|
|
2171
2179
|
height: 10px;
|
|
2172
2180
|
}
|
|
2181
|
+
.user-feedback-handle-item-loading {
|
|
2182
|
+
width: 17px;
|
|
2183
|
+
height: 17px;
|
|
2184
|
+
animation: rotate 2s linear infinite;
|
|
2185
|
+
}
|
|
2173
2186
|
.user-feedback .ql-editor.ql-blank:before {
|
|
2174
2187
|
color: rgba(0, 0, 0, 0.3);
|
|
2175
2188
|
font-style: normal;
|
|
@@ -2205,6 +2218,14 @@ page {
|
|
|
2205
2218
|
font-size: 16px;
|
|
2206
2219
|
font-weight: 500;
|
|
2207
2220
|
}
|
|
2221
|
+
@keyframes rotate {
|
|
2222
|
+
from {
|
|
2223
|
+
transform: rotate(0);
|
|
2224
|
+
}
|
|
2225
|
+
to {
|
|
2226
|
+
transform: rotate(360deg);
|
|
2227
|
+
}
|
|
2228
|
+
}
|
|
2208
2229
|
.user-feedback-entry {
|
|
2209
2230
|
position: fixed;
|
|
2210
2231
|
z-index: 10;
|
|
@@ -2264,7 +2285,6 @@ page {
|
|
|
2264
2285
|
top: 10px;
|
|
2265
2286
|
bottom: 10px;
|
|
2266
2287
|
align-items: center;
|
|
2267
|
-
justify-content: center;
|
|
2268
2288
|
width: calc(100% - 24px);
|
|
2269
2289
|
background: #ffffff;
|
|
2270
2290
|
border-radius: 5px;
|
|
@@ -2272,6 +2292,7 @@ page {
|
|
|
2272
2292
|
flex-direction: column;
|
|
2273
2293
|
}
|
|
2274
2294
|
.login-setting-img {
|
|
2295
|
+
margin-top: 50%;
|
|
2275
2296
|
height: 111px;
|
|
2276
2297
|
width: 198px;
|
|
2277
2298
|
}
|
|
@@ -2281,29 +2302,31 @@ page {
|
|
|
2281
2302
|
opacity: 0.4;
|
|
2282
2303
|
font-size: 12px;
|
|
2283
2304
|
padding: 0 30px;
|
|
2305
|
+
text-align: center;
|
|
2284
2306
|
}
|
|
2285
|
-
.
|
|
2307
|
+
.user-resource-empty {
|
|
2286
2308
|
position: fixed;
|
|
2287
2309
|
z-index: 4;
|
|
2288
2310
|
left: 12px;
|
|
2289
2311
|
top: 10px;
|
|
2290
2312
|
bottom: 10px;
|
|
2291
2313
|
align-items: center;
|
|
2292
|
-
justify-content: center;
|
|
2293
2314
|
width: calc(100% - 24px);
|
|
2294
2315
|
background: #ffffff;
|
|
2295
2316
|
border-radius: 5px;
|
|
2296
2317
|
display: flex;
|
|
2297
2318
|
flex-direction: column;
|
|
2298
2319
|
}
|
|
2299
|
-
.
|
|
2320
|
+
.user-resource-empty-img {
|
|
2321
|
+
margin-top: 50%;
|
|
2300
2322
|
height: 111px;
|
|
2301
2323
|
width: 198px;
|
|
2302
2324
|
}
|
|
2303
|
-
.
|
|
2325
|
+
.user-resource-empty-text {
|
|
2304
2326
|
margin-top: 10px;
|
|
2305
2327
|
color: #353535;
|
|
2306
2328
|
opacity: 0.4;
|
|
2307
2329
|
font-size: 12px;
|
|
2308
2330
|
padding: 0 30px;
|
|
2331
|
+
text-align: center;
|
|
2309
2332
|
}
|