yd-admin 0.1.8 → 0.1.10

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/style.css CHANGED
@@ -139,14 +139,14 @@ to {
139
139
  }
140
140
  }
141
141
 
142
- .yd-input-wrapper[data-v-9f5a78f3] {
142
+ .yd-input-wrapper[data-v-5c21184f] {
143
143
  display: inline-flex;
144
144
  align-items: center;
145
145
  width: 100%;
146
146
  position: relative;
147
147
  transition: all var(--yd-transition-base);
148
148
  }
149
- .yd-input[data-v-9f5a78f3] {
149
+ .yd-input[data-v-5c21184f] {
150
150
  width: 100%;
151
151
  border: none;
152
152
  outline: none;
@@ -155,95 +155,95 @@ to {
155
155
  color: var(--yd-color-fg);
156
156
  transition: all var(--yd-transition-base);
157
157
  }
158
- .yd-input[data-v-9f5a78f3]::placeholder {
158
+ .yd-input[data-v-5c21184f]::placeholder {
159
159
  color: var(--yd-color-muted-fg);
160
160
  }
161
- .yd-input[data-v-9f5a78f3]:disabled {
161
+ .yd-input[data-v-5c21184f]:disabled {
162
162
  cursor: not-allowed;
163
163
  opacity: 0.6;
164
164
  }
165
165
 
166
166
  /* Size variants */
167
- .yd-input--xs[data-v-9f5a78f3],
168
- .yd-input-wrapper--xs .yd-input__prefix[data-v-9f5a78f3],
169
- .yd-input-wrapper--xs .yd-input__suffix[data-v-9f5a78f3] {
167
+ .yd-input--xs[data-v-5c21184f],
168
+ .yd-input-wrapper--xs .yd-input__prefix[data-v-5c21184f],
169
+ .yd-input-wrapper--xs .yd-input__suffix[data-v-5c21184f] {
170
170
  font-size: var(--yd-font-size-xs);
171
171
  padding: var(--yd-spacing-xs) var(--yd-spacing-sm);
172
172
  }
173
- .yd-input--sm[data-v-9f5a78f3] {
173
+ .yd-input--sm[data-v-5c21184f] {
174
174
  font-size: var(--yd-font-size-sm);
175
175
  padding: var(--yd-spacing-sm) var(--yd-spacing-md);
176
176
  }
177
- .yd-input--md[data-v-9f5a78f3] {
177
+ .yd-input--md[data-v-5c21184f] {
178
178
  font-size: var(--yd-font-size-base);
179
179
  padding: var(--yd-spacing-md) var(--yd-spacing-base);
180
180
  }
181
- .yd-input--lg[data-v-9f5a78f3] {
181
+ .yd-input--lg[data-v-5c21184f] {
182
182
  font-size: var(--yd-font-size-lg);
183
183
  padding: var(--yd-spacing-base) var(--yd-spacing-lg);
184
184
  }
185
185
 
186
186
  /* Variant: default (bottom border only) */
187
- .yd-input--default[data-v-9f5a78f3] {
187
+ .yd-input--default[data-v-5c21184f] {
188
188
  border-bottom: 1px solid var(--yd-color-border);
189
189
  padding-bottom: var(--yd-spacing-sm);
190
190
  }
191
- .yd-input--default[data-v-9f5a78f3]:focus {
191
+ .yd-input--default[data-v-5c21184f]:focus {
192
192
  border-bottom-color: var(--yd-color-primary-500);
193
193
  }
194
194
 
195
195
  /* Variant: bordered */
196
- .yd-input--bordered[data-v-9f5a78f3] {
196
+ .yd-input--bordered[data-v-5c21184f] {
197
197
  border: 1px solid var(--yd-color-border);
198
198
  border-radius: var(--yd-radius-base);
199
199
  }
200
- .yd-input--bordered[data-v-9f5a78f3]:focus {
200
+ .yd-input--bordered[data-v-5c21184f]:focus {
201
201
  border-color: var(--yd-color-primary-500);
202
202
  box-shadow: 0 0 0 2px var(--yd-color-primary-100);
203
203
  }
204
- [data-theme="dark"] .yd-input--bordered[data-v-9f5a78f3]:focus {
204
+ [data-theme="dark"] .yd-input--bordered[data-v-5c21184f]:focus {
205
205
  box-shadow: 0 0 0 2px var(--yd-color-primary-900);
206
206
  }
207
207
 
208
208
  /* Variant: filled */
209
- .yd-input--filled[data-v-9f5a78f3] {
209
+ .yd-input--filled[data-v-5c21184f] {
210
210
  background: var(--yd-color-muted);
211
211
  border-radius: var(--yd-radius-base);
212
212
  }
213
- .yd-input--filled[data-v-9f5a78f3]:focus {
213
+ .yd-input--filled[data-v-5c21184f]:focus {
214
214
  background: var(--yd-color-bg);
215
215
  box-shadow: 0 0 0 2px var(--yd-color-primary-100);
216
216
  }
217
- [data-theme="dark"] .yd-input--filled[data-v-9f5a78f3]:focus {
217
+ [data-theme="dark"] .yd-input--filled[data-v-5c21184f]:focus {
218
218
  box-shadow: 0 0 0 2px var(--yd-color-primary-900);
219
219
  }
220
220
 
221
221
  /* Variant: underlined */
222
- .yd-input--underlined[data-v-9f5a78f3] {
222
+ .yd-input--underlined[data-v-5c21184f] {
223
223
  border-bottom: 2px solid var(--yd-color-border);
224
224
  padding-bottom: var(--yd-spacing-sm);
225
225
  }
226
- .yd-input--underlined[data-v-9f5a78f3]:focus {
226
+ .yd-input--underlined[data-v-5c21184f]:focus {
227
227
  border-bottom-color: var(--yd-color-primary-500);
228
228
  }
229
229
 
230
230
  /* Prefix and Suffix */
231
- .yd-input__prefix[data-v-9f5a78f3],
232
- .yd-input__suffix[data-v-9f5a78f3] {
231
+ .yd-input__prefix[data-v-5c21184f],
232
+ .yd-input__suffix[data-v-5c21184f] {
233
233
  display: inline-flex;
234
234
  align-items: center;
235
235
  color: var(--yd-color-muted-fg);
236
236
  flex-shrink: 0;
237
237
  }
238
- .yd-input__prefix[data-v-9f5a78f3] {
238
+ .yd-input__prefix[data-v-5c21184f] {
239
239
  margin-right: var(--yd-spacing-sm);
240
240
  }
241
- .yd-input__suffix[data-v-9f5a78f3] {
241
+ .yd-input__suffix[data-v-5c21184f] {
242
242
  margin-left: var(--yd-spacing-sm);
243
243
  }
244
244
 
245
245
  /* Clear button */
246
- .yd-input__clear[data-v-9f5a78f3] {
246
+ .yd-input__clear[data-v-5c21184f] {
247
247
  display: inline-flex;
248
248
  align-items: center;
249
249
  justify-content: center;
@@ -253,12 +253,12 @@ to {
253
253
  transition: color var(--yd-transition-fast);
254
254
  flex-shrink: 0;
255
255
  }
256
- .yd-input__clear[data-v-9f5a78f3]:hover {
256
+ .yd-input__clear[data-v-5c21184f]:hover {
257
257
  color: var(--yd-color-fg);
258
258
  }
259
259
 
260
260
  /* Word limit */
261
- .yd-input__word-limit[data-v-9f5a78f3] {
261
+ .yd-input__word-limit[data-v-5c21184f] {
262
262
  position: absolute;
263
263
  right: var(--yd-spacing-sm);
264
264
  bottom: var(--yd-spacing-xs);
@@ -271,7 +271,7 @@ to {
271
271
  }
272
272
 
273
273
  /* Disabled state */
274
- .yd-input-wrapper--disabled[data-v-9f5a78f3] {
274
+ .yd-input-wrapper--disabled[data-v-5c21184f] {
275
275
  opacity: 0.6;
276
276
  pointer-events: none;
277
277
  }
@@ -440,30 +440,30 @@ to {
440
440
  text-align: center;
441
441
  }
442
442
 
443
- .yd-select-wrapper[data-v-bea52552] {
443
+ .yd-select-wrapper[data-v-64b103da] {
444
444
  position: relative;
445
445
  display: inline-flex;
446
446
  flex-direction: column;
447
447
  width: 100%;
448
448
  gap: var(--yd-spacing-sm);
449
449
  }
450
- .yd-select__label[data-v-bea52552] {
450
+ .yd-select__label[data-v-64b103da] {
451
451
  font-size: var(--yd-font-size-sm);
452
452
  font-weight: var(--yd-font-weight-medium);
453
453
  color: var(--yd-color-fg);
454
454
  }
455
- .yd-select__required[data-v-bea52552] {
455
+ .yd-select__required[data-v-64b103da] {
456
456
  color: var(--yd-color-error);
457
457
  margin-left: 2px;
458
458
  }
459
- .yd-select__control[data-v-bea52552] {
459
+ .yd-select__control[data-v-64b103da] {
460
460
  position: relative;
461
461
  display: flex;
462
462
  align-items: center;
463
463
  cursor: pointer;
464
464
  }
465
- .yd-select__input[data-v-bea52552],
466
- .yd-select__display[data-v-bea52552] {
465
+ .yd-select__input[data-v-64b103da],
466
+ .yd-select__display[data-v-64b103da] {
467
467
  width: 100%;
468
468
  padding: var(--yd-spacing-sm) var(--yd-spacing-xl) var(--yd-spacing-sm) var(--yd-spacing-base);
469
469
  border: none;
@@ -473,13 +473,13 @@ to {
473
473
  font-size: var(--yd-font-size-base);
474
474
  color: var(--yd-color-fg);
475
475
  }
476
- .yd-select__display--placeholder[data-v-bea52552] {
476
+ .yd-select__display--placeholder[data-v-64b103da] {
477
477
  color: var(--yd-color-muted-fg);
478
478
  }
479
- .yd-select__input[data-v-bea52552]:focus {
479
+ .yd-select__input[data-v-64b103da]:focus {
480
480
  border-color: var(--yd-color-primary-500);
481
481
  }
482
- .yd-select__clear[data-v-bea52552] {
482
+ .yd-select__clear[data-v-64b103da] {
483
483
  position: absolute;
484
484
  right: var(--yd-spacing-xl);
485
485
  cursor: pointer;
@@ -488,10 +488,10 @@ to {
488
488
  align-items: center;
489
489
  transition: color var(--yd-transition-fast);
490
490
  }
491
- .yd-select__clear[data-v-bea52552]:hover {
491
+ .yd-select__clear[data-v-64b103da]:hover {
492
492
  color: var(--yd-color-fg);
493
493
  }
494
- .yd-select__arrow[data-v-bea52552] {
494
+ .yd-select__arrow[data-v-64b103da] {
495
495
  position: absolute;
496
496
  right: var(--yd-spacing-sm);
497
497
  pointer-events: none;
@@ -499,40 +499,40 @@ to {
499
499
  display: flex;
500
500
  align-items: center;
501
501
  }
502
- .yd-select__message[data-v-bea52552] {
502
+ .yd-select__message[data-v-64b103da] {
503
503
  font-size: var(--yd-font-size-xs);
504
504
  color: var(--yd-color-muted-fg);
505
505
  }
506
- .yd-select__message--error[data-v-bea52552] {
506
+ .yd-select__message--error[data-v-64b103da] {
507
507
  color: var(--yd-color-error);
508
508
  }
509
509
 
510
510
  /* Wrapper variants */
511
- .yd-select-wrapper--default .yd-select__input[data-v-bea52552],
512
- .yd-select-wrapper--default .yd-select__display[data-v-bea52552] {
511
+ .yd-select-wrapper--default .yd-select__input[data-v-64b103da],
512
+ .yd-select-wrapper--default .yd-select__display[data-v-64b103da] {
513
513
  border-bottom: 1px solid var(--yd-color-border);
514
514
  }
515
- .yd-select-wrapper--bordered .yd-select__input[data-v-bea52552],
516
- .yd-select-wrapper--bordered .yd-select__display[data-v-bea52552] {
515
+ .yd-select-wrapper--bordered .yd-select__input[data-v-64b103da],
516
+ .yd-select-wrapper--bordered .yd-select__display[data-v-64b103da] {
517
517
  border: 1px solid var(--yd-color-border);
518
518
  border-radius: var(--yd-radius-base);
519
519
  }
520
- .yd-select-wrapper--filled .yd-select__input[data-v-bea52552],
521
- .yd-select-wrapper--filled .yd-select__display[data-v-bea52552] {
520
+ .yd-select-wrapper--filled .yd-select__input[data-v-64b103da],
521
+ .yd-select-wrapper--filled .yd-select__display[data-v-64b103da] {
522
522
  background: var(--yd-color-muted);
523
523
  border-radius: var(--yd-radius-base);
524
524
  }
525
- .yd-select-wrapper--disabled[data-v-bea52552] {
525
+ .yd-select-wrapper--disabled[data-v-64b103da] {
526
526
  opacity: 0.6;
527
527
  pointer-events: none;
528
528
  }
529
- .yd-select-wrapper--error.yd-select-wrapper--bordered .yd-select__input[data-v-bea52552],
530
- .yd-select-wrapper--error.yd-select-wrapper--bordered .yd-select__display[data-v-bea52552] {
529
+ .yd-select-wrapper--error.yd-select-wrapper--bordered .yd-select__input[data-v-64b103da],
530
+ .yd-select-wrapper--error.yd-select-wrapper--bordered .yd-select__display[data-v-64b103da] {
531
531
  border-color: var(--yd-color-error);
532
532
  }
533
533
 
534
534
  /* Dropdown */
535
- .yd-select__dropdown[data-v-bea52552] {
535
+ .yd-select__dropdown[data-v-64b103da] {
536
536
  position: absolute;
537
537
  z-index: var(--yd-z-index-dropdown);
538
538
  background: var(--yd-color-bg);
@@ -541,18 +541,18 @@ to {
541
541
  overflow: hidden;
542
542
  will-change: opacity, transform;
543
543
  }
544
- .yd-select__loading[data-v-bea52552],
545
- .yd-select__empty[data-v-bea52552] {
544
+ .yd-select__loading[data-v-64b103da],
545
+ .yd-select__empty[data-v-64b103da] {
546
546
  padding: var(--yd-spacing-xl);
547
547
  text-align: center;
548
548
  color: var(--yd-color-muted-fg);
549
549
  font-size: var(--yd-font-size-sm);
550
550
  }
551
- .yd-select__list[data-v-bea52552] {
551
+ .yd-select__list[data-v-64b103da] {
552
552
  overflow-y: auto;
553
553
  padding: var(--yd-spacing-xs) 0;
554
554
  }
555
- .yd-select__option[data-v-bea52552] {
555
+ .yd-select__option[data-v-64b103da] {
556
556
  display: flex;
557
557
  align-items: center;
558
558
  justify-content: space-between;
@@ -562,37 +562,37 @@ to {
562
562
  color: var(--yd-color-fg);
563
563
  transition: background var(--yd-transition-fast);
564
564
  }
565
- .yd-select__option[data-v-bea52552]:hover:not(.yd-select__option--disabled) {
565
+ .yd-select__option[data-v-64b103da]:hover:not(.yd-select__option--disabled) {
566
566
  background: var(--yd-color-muted);
567
567
  }
568
- .yd-select__option--active[data-v-bea52552] {
568
+ .yd-select__option--active[data-v-64b103da] {
569
569
  color: var(--yd-color-primary-600);
570
570
  font-weight: var(--yd-font-weight-medium);
571
571
  background: var(--yd-color-primary-50);
572
572
  }
573
- .yd-select__option--disabled[data-v-bea52552] {
573
+ .yd-select__option--disabled[data-v-64b103da] {
574
574
  opacity: 0.5;
575
575
  cursor: not-allowed;
576
576
  }
577
- .yd-select__check[data-v-bea52552] {
577
+ .yd-select__check[data-v-64b103da] {
578
578
  color: var(--yd-color-primary-500);
579
579
  }
580
- .yd-select__group[data-v-bea52552] {
580
+ .yd-select__group[data-v-64b103da] {
581
581
  padding: var(--yd-spacing-xs) 0;
582
582
  }
583
- .yd-select__group-title[data-v-bea52552] {
583
+ .yd-select__group-title[data-v-64b103da] {
584
584
  padding: var(--yd-spacing-xs) var(--yd-spacing-base);
585
585
  font-size: var(--yd-font-size-xs);
586
586
  color: var(--yd-color-muted-fg);
587
587
  font-weight: var(--yd-font-weight-medium);
588
588
  }
589
- .yd-select-dropdown-enter-active[data-v-bea52552],
590
- .yd-select-dropdown-leave-active[data-v-bea52552] {
589
+ .yd-select-dropdown-enter-active[data-v-64b103da],
590
+ .yd-select-dropdown-leave-active[data-v-64b103da] {
591
591
  will-change: opacity;
592
592
  transition: opacity 0.2s ease;
593
593
  }
594
- .yd-select-dropdown-enter-from[data-v-bea52552],
595
- .yd-select-dropdown-leave-to[data-v-bea52552] {
594
+ .yd-select-dropdown-enter-from[data-v-64b103da],
595
+ .yd-select-dropdown-leave-to[data-v-64b103da] {
596
596
  opacity: 0;
597
597
  }
598
598
 
@@ -6283,6 +6283,25 @@ to {
6283
6283
  padding-left: 0;
6284
6284
  }
6285
6285
 
6286
+ .yd-watermark[data-v-a4ad53e0] {
6287
+ position: relative;
6288
+ }
6289
+ .yd-watermark__overlay[data-v-a4ad53e0] {
6290
+ display: block;
6291
+ }
6292
+ .yd-watermark__item[data-v-a4ad53e0] {
6293
+ position: absolute;
6294
+ display: flex;
6295
+ align-items: center;
6296
+ justify-content: center;
6297
+ }
6298
+ .yd-watermark__image[data-v-a4ad53e0] {
6299
+ display: block;
6300
+ }
6301
+ .yd-watermark__text[data-v-a4ad53e0] {
6302
+ line-height: 1.2;
6303
+ }
6304
+
6286
6305
  .yd-drawer__overlay[data-v-94becd9a] {
6287
6306
  position: fixed;
6288
6307
  inset: 0;
@@ -6429,7 +6448,7 @@ to {
6429
6448
  opacity: 0;
6430
6449
  }
6431
6450
 
6432
- .yd-layout[data-v-76147c9f] {
6451
+ .yd-layout[data-v-2a960b8a] {
6433
6452
  position: relative;
6434
6453
  display: flex;
6435
6454
  width: 100%;
@@ -6437,19 +6456,19 @@ to {
6437
6456
  background: var(--yd-color-bg);
6438
6457
  color: var(--yd-color-fg);
6439
6458
  }
6440
- .yd-layout--light[data-v-76147c9f] {
6459
+ .yd-layout--light[data-v-2a960b8a] {
6441
6460
  --yd-layout-sidebar-bg: #ffffff;
6442
6461
  --yd-layout-sidebar-border: var(--yd-color-border);
6443
6462
  --yd-layout-header-bg: #ffffff;
6444
6463
  --yd-layout-header-border: var(--yd-color-border);
6445
6464
  }
6446
- .yd-layout--dark[data-v-76147c9f] {
6465
+ .yd-layout--dark[data-v-2a960b8a] {
6447
6466
  --yd-layout-sidebar-bg: #141414;
6448
6467
  --yd-layout-sidebar-border: #303030;
6449
6468
  --yd-layout-header-bg: #141414;
6450
6469
  --yd-layout-header-border: #303030;
6451
6470
  }
6452
- .yd-layout--corporate[data-v-76147c9f] {
6471
+ .yd-layout--corporate[data-v-2a960b8a] {
6453
6472
  --yd-layout-sidebar-bg: #0060ab;
6454
6473
  --yd-layout-sidebar-border: rgba(255, 255, 255, 0.15);
6455
6474
  --yd-layout-header-bg: #ffffff;
@@ -6462,7 +6481,7 @@ to {
6462
6481
  --yd-layout-sidebar-active-bg: rgba(255, 255, 255, 0.2);
6463
6482
  --yd-layout-sidebar-active-fg: #ffffff;
6464
6483
  }
6465
- .yd-layout__main[data-v-76147c9f] {
6484
+ .yd-layout__main[data-v-2a960b8a] {
6466
6485
  position: relative;
6467
6486
  flex: 1;
6468
6487
  display: flex;
@@ -6474,7 +6493,7 @@ to {
6474
6493
  }
6475
6494
 
6476
6495
  /* 移动端遮罩层 */
6477
- .yd-layout__mask[data-v-76147c9f] {
6496
+ .yd-layout__mask[data-v-2a960b8a] {
6478
6497
  position: fixed;
6479
6498
  top: 0;
6480
6499
  left: 0;
@@ -6485,20 +6504,20 @@ to {
6485
6504
  }
6486
6505
 
6487
6506
  /* 设置抽屉内容 */
6488
- .yd-layout-settings[data-v-76147c9f] {
6507
+ .yd-layout-settings[data-v-2a960b8a] {
6489
6508
  display: flex;
6490
6509
  flex-direction: column;
6491
6510
  gap: var(--yd-spacing-lg);
6492
6511
  }
6493
- .yd-layout-settings__item[data-v-76147c9f] {
6512
+ .yd-layout-settings__item[data-v-2a960b8a] {
6494
6513
  padding: var(--yd-spacing-sm) 0;
6495
6514
  }
6496
- .yd-layout-settings__row[data-v-76147c9f] {
6515
+ .yd-layout-settings__row[data-v-2a960b8a] {
6497
6516
  display: flex;
6498
6517
  align-items: center;
6499
6518
  justify-content: space-between;
6500
6519
  }
6501
- .yd-layout-settings__label[data-v-76147c9f] {
6520
+ .yd-layout-settings__label[data-v-2a960b8a] {
6502
6521
  font-size: var(--yd-font-size-base);
6503
6522
  color: var(--yd-color-fg);
6504
6523
  }
@@ -7523,25 +7542,6 @@ to {
7523
7542
  filter: drop-shadow(0 2px 4px rgba(24, 144, 255, 0.3));
7524
7543
  }
7525
7544
 
7526
- .yd-watermark[data-v-7040979a] {
7527
- position: relative;
7528
- }
7529
- .yd-watermark__overlay[data-v-7040979a] {
7530
- display: block;
7531
- }
7532
- .yd-watermark__item[data-v-7040979a] {
7533
- position: absolute;
7534
- display: flex;
7535
- align-items: center;
7536
- justify-content: center;
7537
- }
7538
- .yd-watermark__image[data-v-7040979a] {
7539
- display: block;
7540
- }
7541
- .yd-watermark__text[data-v-7040979a] {
7542
- line-height: 1.2;
7543
- }
7544
-
7545
7545
  .yd-breadcrumb__nav[data-v-5ce89066] {
7546
7546
  display: inline-block;
7547
7547
  }
@@ -8049,7 +8049,7 @@ to {
8049
8049
  transform: scale(0.95);
8050
8050
  }
8051
8051
 
8052
- .yd-message[data-v-d5e2e094] {
8052
+ .yd-message[data-v-c4f6fea7] {
8053
8053
  position: fixed;
8054
8054
  left: 50%;
8055
8055
  transform: translateX(-50%);
@@ -8066,32 +8066,32 @@ to {
8066
8066
  color: var(--yd-color-fg);
8067
8067
  max-width: 400px;
8068
8068
  }
8069
- .yd-message__icon[data-v-d5e2e094] {
8069
+ .yd-message__icon[data-v-c4f6fea7] {
8070
8070
  display: inline-flex;
8071
8071
  flex-shrink: 0;
8072
8072
  }
8073
- .yd-message--success[data-v-d5e2e094] {
8073
+ .yd-message--success[data-v-c4f6fea7] {
8074
8074
  border-color: var(--yd-color-success);
8075
8075
  }
8076
- .yd-message--success .yd-message__icon[data-v-d5e2e094] {
8076
+ .yd-message--success .yd-message__icon[data-v-c4f6fea7] {
8077
8077
  color: var(--yd-color-success);
8078
8078
  }
8079
- .yd-message--warning[data-v-d5e2e094] {
8079
+ .yd-message--warning[data-v-c4f6fea7] {
8080
8080
  border-color: var(--yd-color-warning);
8081
8081
  }
8082
- .yd-message--warning .yd-message__icon[data-v-d5e2e094] {
8082
+ .yd-message--warning .yd-message__icon[data-v-c4f6fea7] {
8083
8083
  color: var(--yd-color-warning);
8084
8084
  }
8085
- .yd-message--error[data-v-d5e2e094] {
8085
+ .yd-message--error[data-v-c4f6fea7] {
8086
8086
  border-color: var(--yd-color-error);
8087
8087
  }
8088
- .yd-message--error .yd-message__icon[data-v-d5e2e094] {
8088
+ .yd-message--error .yd-message__icon[data-v-c4f6fea7] {
8089
8089
  color: var(--yd-color-error);
8090
8090
  }
8091
- .yd-message--info .yd-message__icon[data-v-d5e2e094] {
8091
+ .yd-message--info .yd-message__icon[data-v-c4f6fea7] {
8092
8092
  color: var(--yd-color-info);
8093
8093
  }
8094
- .yd-message__close[data-v-d5e2e094] {
8094
+ .yd-message__close[data-v-c4f6fea7] {
8095
8095
  display: inline-flex;
8096
8096
  align-items: center;
8097
8097
  justify-content: center;
@@ -8102,17 +8102,17 @@ to {
8102
8102
  padding: 0;
8103
8103
  margin-left: var(--yd-spacing-sm);
8104
8104
  }
8105
- .yd-message__close[data-v-d5e2e094]:hover {
8105
+ .yd-message__close[data-v-c4f6fea7]:hover {
8106
8106
  color: var(--yd-color-fg);
8107
8107
  }
8108
8108
 
8109
8109
  /* Transitions */
8110
- .yd-message-enter-active[data-v-d5e2e094],
8111
- .yd-message-leave-active[data-v-d5e2e094] {
8110
+ .yd-message-enter-active[data-v-c4f6fea7],
8111
+ .yd-message-leave-active[data-v-c4f6fea7] {
8112
8112
  transition: all 0.3s ease;
8113
8113
  }
8114
- .yd-message-enter-from[data-v-d5e2e094],
8115
- .yd-message-leave-to[data-v-d5e2e094] {
8114
+ .yd-message-enter-from[data-v-c4f6fea7],
8115
+ .yd-message-leave-to[data-v-c4f6fea7] {
8116
8116
  opacity: 0;
8117
8117
  transform: translateX(-50%) translateY(-20px);
8118
8118
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yd-admin",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "基于 Vue 3 的后台管理框架通用组件库 - 轻量、高效、主题可定制",
5
5
  "keywords": [
6
6
  "admin",