@pubinfo-pr/module-rbac 0.221.3 → 0.222.2
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/{ResourceRelation-CU-QpUhP.js → ResourceRelation-BwagNxld.js} +1 -1
- package/dist/{ResourceRelation-roz0a8Td.js → ResourceRelation-CKZrGW9A.js} +1 -1
- package/dist/ResourceRelation.css +1 -1
- package/dist/ResourceRelation2.css +1 -1
- package/dist/{UserAuthorization-2Fl4IGw7.js → UserAuthorization-sU8yGviz.js} +1 -1
- package/dist/UserAuthorization.css +1 -1
- package/dist/{blackWhiteList-DbG7JH8n.js → blackWhiteList-CaEw1uGl.js} +1 -1
- package/dist/blackWhiteList.css +1 -1
- package/dist/{breadcrumb_setting-Dx2Li6xt.js → breadcrumb_setting-CenYZfHD.js} +1 -1
- package/dist/{createAndEditDataPermission-8_KNLzJT.js → createAndEditDataPermission-BfIc8HNt.js} +1 -1
- package/dist/createAndEditDataPermission.css +1 -1
- package/dist/{data-permission-LpuDLDm0.js → data-permission-CeSzz7-6.js} +2 -2
- package/dist/data-permission.css +1 -1
- package/dist/{group-CaOhkh72.js → group-DmvSRTkz.js} +1 -1
- package/dist/group.css +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +43 -43
- package/dist/{layout_setting-79srmFgJ.js → layout_setting-DcFrUQtI.js} +1 -1
- package/dist/layout_setting.css +1 -1
- package/dist/{login_history-BiwaLpxA.js → login_history-uB4F5Ddd.js} +1 -1
- package/dist/login_history.css +1 -1
- package/dist/{menu_setting-ChueWHs4.js → menu_setting-ogTQzu1D.js} +1 -1
- package/dist/{operate_history-sPd9IHMV.js → operate_history-eTC0gtt3.js} +30 -28
- package/dist/{organization-Dv3FbKke.js → organization-CEDkYrjK.js} +2 -6
- package/dist/organization.css +1 -1
- package/dist/{other_setting-BEV_UK0g.js → other_setting-BRA_NCwo.js} +1 -1
- package/dist/page_animation_setting-D4glFlEk.js +109 -0
- package/dist/{page_w_setting-Q--ct16C.js → page_w_setting-Bp9cayqE.js} +2 -6
- package/dist/page_w_setting.css +1 -1
- package/dist/{role-4UgEw3nH.js → role-WO4NM7Er.js} +1 -1
- package/dist/{setItem-Vkcwkj-O.js → setItem-Bjl8zTpQ.js} +1 -1
- package/dist/setItem.css +1 -1
- package/dist/{tabbar_setting-kbuTvrLB.js → tabbar_setting-BbhYRbEq.js} +1 -1
- package/dist/{theme_setting-CEb7UYQO.js → theme_setting-Duv0kBY3.js} +1 -1
- package/dist/theme_setting.css +1 -1
- package/dist/{toolbar_setting-BG-k2UFc.js → toolbar_setting-V4EHgnFb.js} +1 -1
- package/dist/{user-BkUpcQC8.js → user-DeVw-Ynu.js} +2 -2
- package/dist/user.css +1 -1
- package/dist/{watermark_setting-Cl2EtPAa.js → watermark_setting-jYKVi0Yf.js} +1 -1
- package/dist/watermark_setting.css +1 -1
- package/package.json +3 -3
- package/src/components/GroupSelector/index.vue +67 -24
- package/src/components/OrgTree/index.vue +1 -1
- package/src/components/ResourceSelector/index.vue +45 -15
- package/src/views/blackWhiteList/index.vue +9 -3
- package/src/views/components/setItem.vue +10 -2
- package/src/views/data-permission/index.vue +2 -1
- package/src/views/group/index.vue +7 -4
- package/src/views/layout_setting/index.vue +99 -20
- package/src/views/log_center/login_history.vue +7 -2
- package/src/views/log_center/operate_history.vue +4 -11
- package/src/views/organization/index.vue +23 -21
- package/src/views/page_animation_setting/index.vue +14 -23
- package/src/views/page_w_setting/index.vue +19 -6
- package/src/views/role/components/ResourceRelation.vue +2 -1
- package/src/views/role_group/components/ResourceRelation.vue +2 -1
- package/src/views/safe_setting/index.vue +1 -1
- package/src/views/theme_setting/index.vue +70 -17
- package/src/views/user/components/UserAuthorization.vue +2 -2
- package/src/views/watermark_setting/index.vue +4 -1
- package/dist/operate_history.css +0 -1
- package/dist/page_animation_setting-Cp5OnFpd.js +0 -108
- package/dist/page_animation_setting.css +0 -1
|
@@ -223,17 +223,32 @@ async function updateConfig(options: object) {
|
|
|
223
223
|
|
|
224
224
|
<style scoped>
|
|
225
225
|
.theme-item {
|
|
226
|
-
|
|
226
|
+
display: flex;
|
|
227
|
+
flex-direction: column;
|
|
228
|
+
cursor: pointer;
|
|
229
|
+
border-width: 1px;
|
|
230
|
+
border-color: var(--border-2, #e5e6eb);
|
|
231
|
+
padding-top: 0.75rem; /* 12px */
|
|
232
|
+
padding-bottom: 0;
|
|
233
|
+
padding-left: 1.5rem; /* 24px */
|
|
234
|
+
padding-right: 1.5rem; /* 24px */
|
|
235
|
+
border-radius: 0.5rem; /* 8px */
|
|
236
|
+
border-style: solid;
|
|
227
237
|
background: linear-gradient(180deg, #f4f7ff -22.05%, #fff 85.58%);
|
|
228
238
|
}
|
|
229
239
|
|
|
230
240
|
.theme-item.active {
|
|
231
|
-
|
|
241
|
+
border-color: rgb(var(--ui-primary));
|
|
242
|
+
--un-shadow: 0 2.6px 13px 0 var(--un-shadow-color, rgb(89 98 105 / 0.25));
|
|
243
|
+
box-shadow: var(--un-ring-offset-shadow), var(--un-ring-shadow),
|
|
244
|
+
var(--un-shadow);
|
|
245
|
+
border-width: 2.6px;
|
|
246
|
+
border-style: solid;
|
|
232
247
|
background: linear-gradient(180deg, #f4f7ff -22.05%, #fff 85.58%);
|
|
233
248
|
}
|
|
234
249
|
|
|
235
250
|
.theme-item.dark {
|
|
236
|
-
|
|
251
|
+
border-color: transparent;
|
|
237
252
|
background: linear-gradient(0deg, #3a3e43 0%, #3a3e43 100%), linear-gradient(180deg, #f4f7ff -22.05%, #fff 85.58%);
|
|
238
253
|
}
|
|
239
254
|
|
|
@@ -242,11 +257,21 @@ async function updateConfig(options: object) {
|
|
|
242
257
|
}
|
|
243
258
|
|
|
244
259
|
.theme-item .item-title {
|
|
245
|
-
|
|
260
|
+
display: flex;
|
|
261
|
+
align-items: center;
|
|
262
|
+
justify-content: center;
|
|
263
|
+
font-size: 0.875rem; /* 14px */
|
|
264
|
+
line-height: 1.25rem; /* 20px */
|
|
265
|
+
line-height: 22px;
|
|
266
|
+
text-align: center;
|
|
267
|
+
margin: 0;
|
|
268
|
+
padding: 0;
|
|
246
269
|
}
|
|
247
270
|
|
|
248
271
|
.theme-item .item-content {
|
|
249
|
-
|
|
272
|
+
display: flex;
|
|
273
|
+
flex: 1 1 0%;
|
|
274
|
+
flex-direction: column;
|
|
250
275
|
padding: calc(12 / 320 * 100%) calc(20 / 320 * 100%);
|
|
251
276
|
margin-top: calc(12 / 320 * 100%);
|
|
252
277
|
background: linear-gradient(180deg, #fff 0%, #fff0 100%);
|
|
@@ -262,7 +287,13 @@ async function updateConfig(options: object) {
|
|
|
262
287
|
}
|
|
263
288
|
|
|
264
289
|
.theme-item .item-content .color-spot {
|
|
265
|
-
|
|
290
|
+
flex-shrink: 0;
|
|
291
|
+
max-width: 30px;
|
|
292
|
+
aspect-ratio: 1;
|
|
293
|
+
border-radius: 30px;
|
|
294
|
+
border-width: 2px;
|
|
295
|
+
border-style: solid;
|
|
296
|
+
border-color: white;
|
|
266
297
|
background: #fff;
|
|
267
298
|
width: calc(30 / 270 * 100%);
|
|
268
299
|
box-shadow: 0 0 4px 0 #00000026;
|
|
@@ -293,7 +324,12 @@ async function updateConfig(options: object) {
|
|
|
293
324
|
}
|
|
294
325
|
|
|
295
326
|
.theme-item .item-content .skeleton {
|
|
296
|
-
|
|
327
|
+
display: flex;
|
|
328
|
+
flex: auto;
|
|
329
|
+
flex-direction: column;
|
|
330
|
+
height: 0;
|
|
331
|
+
border-radius: 0.25rem; /* 4px */
|
|
332
|
+
margin-top: 22px;
|
|
297
333
|
background: #f5f8fe;
|
|
298
334
|
}
|
|
299
335
|
|
|
@@ -302,7 +338,11 @@ async function updateConfig(options: object) {
|
|
|
302
338
|
}
|
|
303
339
|
|
|
304
340
|
.theme-item .item-content .skeleton header {
|
|
305
|
-
|
|
341
|
+
display: flex;
|
|
342
|
+
align-items: center;
|
|
343
|
+
aspect-ratio: 10.45;
|
|
344
|
+
padding-left: 0.625rem; /* 10px */
|
|
345
|
+
border-radius: 4px 4px 0 0;
|
|
306
346
|
}
|
|
307
347
|
|
|
308
348
|
.theme-item.dark .item-content .skeleton header {
|
|
@@ -310,7 +350,8 @@ async function updateConfig(options: object) {
|
|
|
310
350
|
}
|
|
311
351
|
|
|
312
352
|
.theme-item .item-content .skeleton header .dot {
|
|
313
|
-
|
|
353
|
+
aspect-ratio: 1;
|
|
354
|
+
border-radius: 50%;
|
|
314
355
|
width: calc(8.5 / 230 * 100%);
|
|
315
356
|
margin-right: calc(5 / 230 * 100%);
|
|
316
357
|
background: rgb(255 255 255 / 50%);
|
|
@@ -321,7 +362,7 @@ async function updateConfig(options: object) {
|
|
|
321
362
|
}
|
|
322
363
|
|
|
323
364
|
.theme-item .item-content .skeleton header .bar {
|
|
324
|
-
|
|
365
|
+
border-radius: 0.125rem; /* 2px */
|
|
325
366
|
width: calc(68 / 230 * 100%);
|
|
326
367
|
aspect-ratio: calc(68 / 7);
|
|
327
368
|
background: rgb(255 255 255 / 50%);
|
|
@@ -332,12 +373,15 @@ async function updateConfig(options: object) {
|
|
|
332
373
|
}
|
|
333
374
|
|
|
334
375
|
.theme-item .item-content .skeleton .skeleton-body {
|
|
335
|
-
|
|
376
|
+
display: flex;
|
|
377
|
+
flex: 1 1 0%;
|
|
378
|
+
height: 0;
|
|
336
379
|
padding: calc(7 / 230 * 100%);
|
|
337
380
|
}
|
|
338
381
|
|
|
339
382
|
.theme-item .item-content .skeleton .skeleton-body .aside {
|
|
340
|
-
|
|
383
|
+
height: 100%;
|
|
384
|
+
border-radius: 0.25rem; /* 4px */
|
|
341
385
|
width: calc(36 / 230 * 100%);
|
|
342
386
|
padding-top: calc(12 / 230 * 100%);
|
|
343
387
|
margin-right: calc(7 / 230 * 100%);
|
|
@@ -349,7 +393,7 @@ async function updateConfig(options: object) {
|
|
|
349
393
|
}
|
|
350
394
|
|
|
351
395
|
.theme-item .item-content .skeleton .skeleton-body .aside .side-line {
|
|
352
|
-
|
|
396
|
+
border-radius: 0.125rem; /* 2px */
|
|
353
397
|
width: calc(24.1 / 36.6 * 100%);
|
|
354
398
|
aspect-ratio: calc(24.1 / 6.5);
|
|
355
399
|
margin: 0 auto calc(4 / 36.6 * 100%);
|
|
@@ -361,7 +405,15 @@ async function updateConfig(options: object) {
|
|
|
361
405
|
}
|
|
362
406
|
|
|
363
407
|
.theme-item .item-content .skeleton .skeleton-body .main {
|
|
364
|
-
|
|
408
|
+
display: flex;
|
|
409
|
+
flex: auto;
|
|
410
|
+
justify-content: space-between;
|
|
411
|
+
height: 100%;
|
|
412
|
+
padding-top: 5.2%;
|
|
413
|
+
padding-bottom: 3%;
|
|
414
|
+
padding-left: 5.6%;
|
|
415
|
+
padding-right: 5.6%;
|
|
416
|
+
border-radius: 0.125rem; /* 2px */
|
|
365
417
|
background: #fff;
|
|
366
418
|
}
|
|
367
419
|
|
|
@@ -370,15 +422,16 @@ async function updateConfig(options: object) {
|
|
|
370
422
|
}
|
|
371
423
|
|
|
372
424
|
.theme-item .item-content .skeleton .skeleton-body .main .left {
|
|
373
|
-
|
|
425
|
+
flex: 1 1 0%;
|
|
374
426
|
}
|
|
375
427
|
|
|
376
428
|
.theme-item .item-content .skeleton .skeleton-body .main .right {
|
|
377
|
-
|
|
429
|
+
width: 30%;
|
|
378
430
|
}
|
|
379
431
|
|
|
380
432
|
.theme-item .item-content .skeleton .skeleton-body .main .left-item {
|
|
381
|
-
|
|
433
|
+
display: flex;
|
|
434
|
+
margin-bottom: 6.5;
|
|
382
435
|
}
|
|
383
436
|
|
|
384
437
|
.theme-item .item-content .skeleton .skeleton-body .main .left-item .dot {
|
|
@@ -213,7 +213,10 @@ function onSubmit() {
|
|
|
213
213
|
|
|
214
214
|
<style scoped>
|
|
215
215
|
.item_ani {
|
|
216
|
-
|
|
216
|
+
display: flex;
|
|
217
|
+
flex-direction: column;
|
|
218
|
+
padding-top: 26px;
|
|
219
|
+
border-radius: 0.5rem; /* 8px */
|
|
217
220
|
place-items: center center;
|
|
218
221
|
background-color: var(--g-bg);
|
|
219
222
|
border: 1px solid var(--g-tabbar-tab-hover-bg);
|
package/dist/operate_history.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.status-mark[data-v-a30b4755]{--un-bg-opacity:1;background-color:rgb(174 174 174/var(--un-bg-opacity)) ;border-radius:50%;width:.5rem;height:.5rem;margin-right:.25rem;display:inline-block}.status-mark.active[data-v-a30b4755]{background:#01d689}
|