@timus-networks/theme 2.4.106 → 2.4.108
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/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/development/example.link.vue +10 -7
- package/dist/runtime/public/scss/element-plus/index.css +57 -14
- package/dist/runtime/public/scss/element-plus/link.css +56 -13
- package/dist/runtime/public/scss/element-plus/link.scss +30 -6
- package/dist/runtime/public/scss/element-plus/select-v2.css +1 -1
- package/dist/runtime/public/scss/element-plus/select.css +1 -1
- package/dist/runtime/public/scss/element-plus/select.scss +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
11
11
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
12
12
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
13
13
|
const name = "@timus-networks/theme";
|
|
14
|
-
const version = "2.4.
|
|
14
|
+
const version = "2.4.107";
|
|
15
15
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
16
16
|
const type = "module";
|
|
17
17
|
const exports = {
|
|
@@ -47,12 +47,15 @@
|
|
|
47
47
|
<el-card>
|
|
48
48
|
<template #header> Underline </template>
|
|
49
49
|
<div class="flex flex-col gap-3 items-start">
|
|
50
|
-
<
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
50
|
+
<p>
|
|
51
|
+
Default underline is <el-text tag="mark">hover</el-text>. Other underline props values is <el-text tag="mark">'always' | 'hover' | 'never'</el-text>. Boolean is
|
|
52
|
+
deprecated and will be removed in the future. Also gives an console warning.
|
|
53
|
+
</p>
|
|
54
|
+
<ul class="list-disc list-inside">
|
|
55
|
+
<li><el-link underline="never">Never</el-link> "underline='never'": Some text,</li>
|
|
56
|
+
<li><el-link underline="hover">Hover</el-link> "underline='hover'": Some text,</li>
|
|
57
|
+
<li><el-link underline="always">Always</el-link> "underline='always'": Some text</li>
|
|
58
|
+
</ul>
|
|
56
59
|
</div>
|
|
57
60
|
<template #footer> <html-encode :tag="snippets.underline" /> </template>
|
|
58
61
|
</el-card>
|
|
@@ -85,7 +88,7 @@
|
|
|
85
88
|
const snippets = ref({
|
|
86
89
|
basic: `<el-link href="https://element-plus.org" target="_blank" type="secondary">default</el-link>`,
|
|
87
90
|
disabled: `<el-link type="secondary" disabled>default</el-link>`,
|
|
88
|
-
underline: `<el-link
|
|
91
|
+
underline: `<el-link underline="hover">With Underline</el-link>`,
|
|
89
92
|
icon: `<el-link class="isax-add icon-right">Check</el-link>`,
|
|
90
93
|
});
|
|
91
94
|
</script>
|
|
@@ -9942,7 +9942,6 @@ h6,
|
|
|
9942
9942
|
gap: 4px;
|
|
9943
9943
|
flex-direction: row;
|
|
9944
9944
|
align-items: center;
|
|
9945
|
-
justify-content: center;
|
|
9946
9945
|
vertical-align: middle;
|
|
9947
9946
|
position: relative;
|
|
9948
9947
|
text-decoration: none;
|
|
@@ -9960,7 +9959,19 @@ h6,
|
|
|
9960
9959
|
.el-link:active {
|
|
9961
9960
|
color: var(--el-link-active-text-color);
|
|
9962
9961
|
}
|
|
9963
|
-
.el-link.is-underline:hover
|
|
9962
|
+
.el-link.is-hover-underline:hover:after {
|
|
9963
|
+
content: "";
|
|
9964
|
+
position: absolute;
|
|
9965
|
+
left: 0;
|
|
9966
|
+
right: 0;
|
|
9967
|
+
height: 0;
|
|
9968
|
+
bottom: 2px;
|
|
9969
|
+
border-bottom-width: 1px;
|
|
9970
|
+
border-color: var(--el-color-primary-light-4);
|
|
9971
|
+
border-style: solid;
|
|
9972
|
+
}
|
|
9973
|
+
|
|
9974
|
+
.el-link.is-underline:after {
|
|
9964
9975
|
content: "";
|
|
9965
9976
|
position: absolute;
|
|
9966
9977
|
left: 0;
|
|
@@ -9983,9 +9994,9 @@ h6,
|
|
|
9983
9994
|
border-color: var(--el-color-primary-light-4);
|
|
9984
9995
|
}
|
|
9985
9996
|
.el-link__inner {
|
|
9986
|
-
|
|
9987
|
-
|
|
9988
|
-
|
|
9997
|
+
overflow: hidden;
|
|
9998
|
+
text-overflow: ellipsis;
|
|
9999
|
+
white-space: nowrap;
|
|
9989
10000
|
}
|
|
9990
10001
|
|
|
9991
10002
|
.el-link.el-link--primary {
|
|
@@ -9994,7 +10005,11 @@ h6,
|
|
|
9994
10005
|
--el-link-active-text-color: var(--el-color-primary-light-6);
|
|
9995
10006
|
--el-link-disabled-text-color: var(--el-color-primary-light-2);
|
|
9996
10007
|
}
|
|
9997
|
-
.el-link.el-link--primary.is-underline:hover
|
|
10008
|
+
.el-link.el-link--primary.is-hover-underline:hover:after {
|
|
10009
|
+
border-color: var(--el-color-primary-light-4);
|
|
10010
|
+
}
|
|
10011
|
+
|
|
10012
|
+
.el-link.el-link--primary.is-underline:hover:after {
|
|
9998
10013
|
border-color: var(--el-color-primary-light-4);
|
|
9999
10014
|
}
|
|
10000
10015
|
|
|
@@ -10004,7 +10019,11 @@ h6,
|
|
|
10004
10019
|
--el-link-active-text-color: var(--el-color-secondary-light-6);
|
|
10005
10020
|
--el-link-disabled-text-color: var(--el-color-secondary-light-2);
|
|
10006
10021
|
}
|
|
10007
|
-
.el-link.el-link--secondary.is-underline:hover
|
|
10022
|
+
.el-link.el-link--secondary.is-hover-underline:hover:after {
|
|
10023
|
+
border-color: var(--el-color-secondary-light-4);
|
|
10024
|
+
}
|
|
10025
|
+
|
|
10026
|
+
.el-link.el-link--secondary.is-underline:hover:after {
|
|
10008
10027
|
border-color: var(--el-color-secondary-light-4);
|
|
10009
10028
|
}
|
|
10010
10029
|
|
|
@@ -10014,7 +10033,11 @@ h6,
|
|
|
10014
10033
|
--el-link-active-text-color: var(--el-color-neutral-light-6);
|
|
10015
10034
|
--el-link-disabled-text-color: var(--el-color-neutral-light-2);
|
|
10016
10035
|
}
|
|
10017
|
-
.el-link.el-link--neutral.is-underline:hover
|
|
10036
|
+
.el-link.el-link--neutral.is-hover-underline:hover:after {
|
|
10037
|
+
border-color: var(--el-color-neutral-light-4);
|
|
10038
|
+
}
|
|
10039
|
+
|
|
10040
|
+
.el-link.el-link--neutral.is-underline:hover:after {
|
|
10018
10041
|
border-color: var(--el-color-neutral-light-4);
|
|
10019
10042
|
}
|
|
10020
10043
|
|
|
@@ -10024,7 +10047,11 @@ h6,
|
|
|
10024
10047
|
--el-link-active-text-color: var(--el-color-success-light-6);
|
|
10025
10048
|
--el-link-disabled-text-color: var(--el-color-success-light-2);
|
|
10026
10049
|
}
|
|
10027
|
-
.el-link.el-link--success.is-underline:hover
|
|
10050
|
+
.el-link.el-link--success.is-hover-underline:hover:after {
|
|
10051
|
+
border-color: var(--el-color-success-light-4);
|
|
10052
|
+
}
|
|
10053
|
+
|
|
10054
|
+
.el-link.el-link--success.is-underline:hover:after {
|
|
10028
10055
|
border-color: var(--el-color-success-light-4);
|
|
10029
10056
|
}
|
|
10030
10057
|
|
|
@@ -10034,7 +10061,11 @@ h6,
|
|
|
10034
10061
|
--el-link-active-text-color: var(--el-color-warning-light-6);
|
|
10035
10062
|
--el-link-disabled-text-color: var(--el-color-warning-light-2);
|
|
10036
10063
|
}
|
|
10037
|
-
.el-link.el-link--warning.is-underline:hover
|
|
10064
|
+
.el-link.el-link--warning.is-hover-underline:hover:after {
|
|
10065
|
+
border-color: var(--el-color-warning-light-4);
|
|
10066
|
+
}
|
|
10067
|
+
|
|
10068
|
+
.el-link.el-link--warning.is-underline:hover:after {
|
|
10038
10069
|
border-color: var(--el-color-warning-light-4);
|
|
10039
10070
|
}
|
|
10040
10071
|
|
|
@@ -10044,7 +10075,11 @@ h6,
|
|
|
10044
10075
|
--el-link-active-text-color: var(--el-color-danger-light-6);
|
|
10045
10076
|
--el-link-disabled-text-color: var(--el-color-danger-light-2);
|
|
10046
10077
|
}
|
|
10047
|
-
.el-link.el-link--danger.is-underline:hover
|
|
10078
|
+
.el-link.el-link--danger.is-hover-underline:hover:after {
|
|
10079
|
+
border-color: var(--el-color-danger-light-4);
|
|
10080
|
+
}
|
|
10081
|
+
|
|
10082
|
+
.el-link.el-link--danger.is-underline:hover:after {
|
|
10048
10083
|
border-color: var(--el-color-danger-light-4);
|
|
10049
10084
|
}
|
|
10050
10085
|
|
|
@@ -10054,7 +10089,11 @@ h6,
|
|
|
10054
10089
|
--el-link-active-text-color: var(--el-color-error-light-6);
|
|
10055
10090
|
--el-link-disabled-text-color: var(--el-color-error-light-2);
|
|
10056
10091
|
}
|
|
10057
|
-
.el-link.el-link--error.is-underline:hover
|
|
10092
|
+
.el-link.el-link--error.is-hover-underline:hover:after {
|
|
10093
|
+
border-color: var(--el-color-error-light-4);
|
|
10094
|
+
}
|
|
10095
|
+
|
|
10096
|
+
.el-link.el-link--error.is-underline:hover:after {
|
|
10058
10097
|
border-color: var(--el-color-error-light-4);
|
|
10059
10098
|
}
|
|
10060
10099
|
|
|
@@ -10064,7 +10103,11 @@ h6,
|
|
|
10064
10103
|
--el-link-active-text-color: var(--el-color-info-light-6);
|
|
10065
10104
|
--el-link-disabled-text-color: var(--el-color-info-light-2);
|
|
10066
10105
|
}
|
|
10067
|
-
.el-link.el-link--info.is-underline:hover
|
|
10106
|
+
.el-link.el-link--info.is-hover-underline:hover:after {
|
|
10107
|
+
border-color: var(--el-color-info-light-4);
|
|
10108
|
+
}
|
|
10109
|
+
|
|
10110
|
+
.el-link.el-link--info.is-underline:hover:after {
|
|
10068
10111
|
border-color: var(--el-color-info-light-4);
|
|
10069
10112
|
}
|
|
10070
10113
|
|
|
@@ -12513,7 +12556,7 @@ h6,
|
|
|
12513
12556
|
|
|
12514
12557
|
.el-select__wrapper.is-disabled {
|
|
12515
12558
|
cursor: not-allowed;
|
|
12516
|
-
background-color: var(--el-color-neutral-light-
|
|
12559
|
+
background-color: var(--el-color-neutral-light-1);
|
|
12517
12560
|
color: var(--el-text-color-placeholder);
|
|
12518
12561
|
box-shadow: 0 0 0 1px var(--el-select-disabled-border) inset;
|
|
12519
12562
|
}
|
|
@@ -425,7 +425,6 @@ h6,
|
|
|
425
425
|
gap: 4px;
|
|
426
426
|
flex-direction: row;
|
|
427
427
|
align-items: center;
|
|
428
|
-
justify-content: center;
|
|
429
428
|
vertical-align: middle;
|
|
430
429
|
position: relative;
|
|
431
430
|
text-decoration: none;
|
|
@@ -443,7 +442,19 @@ h6,
|
|
|
443
442
|
.el-link:active {
|
|
444
443
|
color: var(--el-link-active-text-color);
|
|
445
444
|
}
|
|
446
|
-
.el-link.is-underline:hover
|
|
445
|
+
.el-link.is-hover-underline:hover:after {
|
|
446
|
+
content: "";
|
|
447
|
+
position: absolute;
|
|
448
|
+
left: 0;
|
|
449
|
+
right: 0;
|
|
450
|
+
height: 0;
|
|
451
|
+
bottom: 2px;
|
|
452
|
+
border-bottom-width: 1px;
|
|
453
|
+
border-color: var(--el-color-primary-light-4);
|
|
454
|
+
border-style: solid;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.el-link.is-underline:after {
|
|
447
458
|
content: "";
|
|
448
459
|
position: absolute;
|
|
449
460
|
left: 0;
|
|
@@ -466,9 +477,9 @@ h6,
|
|
|
466
477
|
border-color: var(--el-color-primary-light-4);
|
|
467
478
|
}
|
|
468
479
|
.el-link__inner {
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
480
|
+
overflow: hidden;
|
|
481
|
+
text-overflow: ellipsis;
|
|
482
|
+
white-space: nowrap;
|
|
472
483
|
}
|
|
473
484
|
|
|
474
485
|
.el-link.el-link--primary {
|
|
@@ -477,7 +488,11 @@ h6,
|
|
|
477
488
|
--el-link-active-text-color: var(--el-color-primary-light-6);
|
|
478
489
|
--el-link-disabled-text-color: var(--el-color-primary-light-2);
|
|
479
490
|
}
|
|
480
|
-
.el-link.el-link--primary.is-underline:hover
|
|
491
|
+
.el-link.el-link--primary.is-hover-underline:hover:after {
|
|
492
|
+
border-color: var(--el-color-primary-light-4);
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.el-link.el-link--primary.is-underline:hover:after {
|
|
481
496
|
border-color: var(--el-color-primary-light-4);
|
|
482
497
|
}
|
|
483
498
|
|
|
@@ -487,7 +502,11 @@ h6,
|
|
|
487
502
|
--el-link-active-text-color: var(--el-color-secondary-light-6);
|
|
488
503
|
--el-link-disabled-text-color: var(--el-color-secondary-light-2);
|
|
489
504
|
}
|
|
490
|
-
.el-link.el-link--secondary.is-underline:hover
|
|
505
|
+
.el-link.el-link--secondary.is-hover-underline:hover:after {
|
|
506
|
+
border-color: var(--el-color-secondary-light-4);
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.el-link.el-link--secondary.is-underline:hover:after {
|
|
491
510
|
border-color: var(--el-color-secondary-light-4);
|
|
492
511
|
}
|
|
493
512
|
|
|
@@ -497,7 +516,11 @@ h6,
|
|
|
497
516
|
--el-link-active-text-color: var(--el-color-neutral-light-6);
|
|
498
517
|
--el-link-disabled-text-color: var(--el-color-neutral-light-2);
|
|
499
518
|
}
|
|
500
|
-
.el-link.el-link--neutral.is-underline:hover
|
|
519
|
+
.el-link.el-link--neutral.is-hover-underline:hover:after {
|
|
520
|
+
border-color: var(--el-color-neutral-light-4);
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.el-link.el-link--neutral.is-underline:hover:after {
|
|
501
524
|
border-color: var(--el-color-neutral-light-4);
|
|
502
525
|
}
|
|
503
526
|
|
|
@@ -507,7 +530,11 @@ h6,
|
|
|
507
530
|
--el-link-active-text-color: var(--el-color-success-light-6);
|
|
508
531
|
--el-link-disabled-text-color: var(--el-color-success-light-2);
|
|
509
532
|
}
|
|
510
|
-
.el-link.el-link--success.is-underline:hover
|
|
533
|
+
.el-link.el-link--success.is-hover-underline:hover:after {
|
|
534
|
+
border-color: var(--el-color-success-light-4);
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.el-link.el-link--success.is-underline:hover:after {
|
|
511
538
|
border-color: var(--el-color-success-light-4);
|
|
512
539
|
}
|
|
513
540
|
|
|
@@ -517,7 +544,11 @@ h6,
|
|
|
517
544
|
--el-link-active-text-color: var(--el-color-warning-light-6);
|
|
518
545
|
--el-link-disabled-text-color: var(--el-color-warning-light-2);
|
|
519
546
|
}
|
|
520
|
-
.el-link.el-link--warning.is-underline:hover
|
|
547
|
+
.el-link.el-link--warning.is-hover-underline:hover:after {
|
|
548
|
+
border-color: var(--el-color-warning-light-4);
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.el-link.el-link--warning.is-underline:hover:after {
|
|
521
552
|
border-color: var(--el-color-warning-light-4);
|
|
522
553
|
}
|
|
523
554
|
|
|
@@ -527,7 +558,11 @@ h6,
|
|
|
527
558
|
--el-link-active-text-color: var(--el-color-danger-light-6);
|
|
528
559
|
--el-link-disabled-text-color: var(--el-color-danger-light-2);
|
|
529
560
|
}
|
|
530
|
-
.el-link.el-link--danger.is-underline:hover
|
|
561
|
+
.el-link.el-link--danger.is-hover-underline:hover:after {
|
|
562
|
+
border-color: var(--el-color-danger-light-4);
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.el-link.el-link--danger.is-underline:hover:after {
|
|
531
566
|
border-color: var(--el-color-danger-light-4);
|
|
532
567
|
}
|
|
533
568
|
|
|
@@ -537,7 +572,11 @@ h6,
|
|
|
537
572
|
--el-link-active-text-color: var(--el-color-error-light-6);
|
|
538
573
|
--el-link-disabled-text-color: var(--el-color-error-light-2);
|
|
539
574
|
}
|
|
540
|
-
.el-link.el-link--error.is-underline:hover
|
|
575
|
+
.el-link.el-link--error.is-hover-underline:hover:after {
|
|
576
|
+
border-color: var(--el-color-error-light-4);
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.el-link.el-link--error.is-underline:hover:after {
|
|
541
580
|
border-color: var(--el-color-error-light-4);
|
|
542
581
|
}
|
|
543
582
|
|
|
@@ -547,7 +586,11 @@ h6,
|
|
|
547
586
|
--el-link-active-text-color: var(--el-color-info-light-6);
|
|
548
587
|
--el-link-disabled-text-color: var(--el-color-info-light-2);
|
|
549
588
|
}
|
|
550
|
-
.el-link.el-link--info.is-underline:hover
|
|
589
|
+
.el-link.el-link--info.is-hover-underline:hover:after {
|
|
590
|
+
border-color: var(--el-color-info-light-4);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.el-link.el-link--info.is-underline:hover:after {
|
|
551
594
|
border-color: var(--el-color-info-light-4);
|
|
552
595
|
}
|
|
553
596
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
gap: 4px;
|
|
17
17
|
flex-direction: row;
|
|
18
18
|
align-items: center;
|
|
19
|
-
justify-content: center;
|
|
19
|
+
// justify-content: center;
|
|
20
20
|
vertical-align: middle;
|
|
21
21
|
position: relative;
|
|
22
22
|
text-decoration: none;
|
|
@@ -38,8 +38,22 @@
|
|
|
38
38
|
color: getCssVar('link', 'active-text-color');
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
@include when(hover-underline) {
|
|
42
|
+
&:hover:after {
|
|
43
|
+
content: '';
|
|
44
|
+
position: absolute;
|
|
45
|
+
left: 0;
|
|
46
|
+
right: 0;
|
|
47
|
+
height: 0;
|
|
48
|
+
bottom: 2px;
|
|
49
|
+
border-bottom-width: 1px;
|
|
50
|
+
border-color: getCssVar('color', 'primary', 'light-4');
|
|
51
|
+
border-style: solid;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
41
55
|
@include when(underline) {
|
|
42
|
-
&:
|
|
56
|
+
&:after {
|
|
43
57
|
content: '';
|
|
44
58
|
position: absolute;
|
|
45
59
|
left: 0;
|
|
@@ -69,9 +83,13 @@
|
|
|
69
83
|
}
|
|
70
84
|
|
|
71
85
|
@include e(inner) {
|
|
72
|
-
display: inline-flex;
|
|
73
|
-
justify-content: center;
|
|
74
|
-
align-items: center;
|
|
86
|
+
// display: inline-flex;
|
|
87
|
+
// justify-content: center;
|
|
88
|
+
// align-items: center;
|
|
89
|
+
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
text-overflow: ellipsis;
|
|
92
|
+
white-space: nowrap;
|
|
75
93
|
}
|
|
76
94
|
|
|
77
95
|
@each $type in $types {
|
|
@@ -85,8 +103,14 @@
|
|
|
85
103
|
// border-color: getCssVar('link', 'text-color');
|
|
86
104
|
}
|
|
87
105
|
|
|
106
|
+
@include when(hover-underline) {
|
|
107
|
+
&:hover:after {
|
|
108
|
+
border-color: getCssVar('color', $type, 'light-4');
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
88
112
|
@include when(underline) {
|
|
89
|
-
&:hover
|
|
113
|
+
&:hover:after {
|
|
90
114
|
border-color: getCssVar('color', $type, 'light-4');
|
|
91
115
|
}
|
|
92
116
|
}
|
|
@@ -488,7 +488,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
488
488
|
|
|
489
489
|
.el-select__wrapper.is-disabled {
|
|
490
490
|
cursor: not-allowed;
|
|
491
|
-
background-color: var(--el-color-neutral-light-
|
|
491
|
+
background-color: var(--el-color-neutral-light-1);
|
|
492
492
|
color: var(--el-text-color-placeholder);
|
|
493
493
|
box-shadow: 0 0 0 1px var(--el-select-disabled-border) inset;
|
|
494
494
|
}
|
|
@@ -488,7 +488,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
488
488
|
|
|
489
489
|
.el-select__wrapper.is-disabled {
|
|
490
490
|
cursor: not-allowed;
|
|
491
|
-
background-color: var(--el-color-neutral-light-
|
|
491
|
+
background-color: var(--el-color-neutral-light-1);
|
|
492
492
|
color: var(--el-text-color-placeholder);
|
|
493
493
|
box-shadow: 0 0 0 1px var(--el-select-disabled-border) inset;
|
|
494
494
|
}
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
@include when(disabled) {
|
|
69
69
|
cursor: not-allowed;
|
|
70
70
|
|
|
71
|
-
background-color: getCssVar('color-neutral-light-
|
|
71
|
+
background-color: getCssVar('color-neutral-light-1');
|
|
72
72
|
color: getCssVar('text-color', 'placeholder');
|
|
73
73
|
@include mixed-input-border(#{getCssVar('select-disabled-border')});
|
|
74
74
|
|
package/package.json
CHANGED