@timus-networks/theme 2.4.107 → 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 +1 -2
- package/dist/runtime/public/scss/element-plus/link.css +1 -2
- package/dist/runtime/public/scss/element-plus/link.scss +2 -2
- 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;
|
|
@@ -9972,7 +9971,7 @@ h6,
|
|
|
9972
9971
|
border-style: solid;
|
|
9973
9972
|
}
|
|
9974
9973
|
|
|
9975
|
-
.el-link.is-underline:
|
|
9974
|
+
.el-link.is-underline:after {
|
|
9976
9975
|
content: "";
|
|
9977
9976
|
position: absolute;
|
|
9978
9977
|
left: 0;
|
|
@@ -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;
|
|
@@ -455,7 +454,7 @@ h6,
|
|
|
455
454
|
border-style: solid;
|
|
456
455
|
}
|
|
457
456
|
|
|
458
|
-
.el-link.is-underline:
|
|
457
|
+
.el-link.is-underline:after {
|
|
459
458
|
content: "";
|
|
460
459
|
position: absolute;
|
|
461
460
|
left: 0;
|
|
@@ -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;
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
@include when(underline) {
|
|
56
|
-
&:
|
|
56
|
+
&:after {
|
|
57
57
|
content: '';
|
|
58
58
|
position: absolute;
|
|
59
59
|
left: 0;
|
package/package.json
CHANGED