@timus-networks/theme 2.4.30 → 2.4.32
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/composables/useBreadcrumb.mjs +1 -1
- package/dist/runtime/public/scss/element-plus/index.css +1 -0
- package/dist/runtime/public/scss/element-plus/link.css +1 -0
- package/dist/runtime/public/scss/element-plus/link.scss +1 -0
- package/dist/runtime/public/scss/theme.css +0 -17
- package/dist/runtime/public/scss/theme.scss +0 -17
- 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.32";
|
|
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 = {
|
|
@@ -29,7 +29,7 @@ export function useBreadcrumb() {
|
|
|
29
29
|
const found = tabList.value.find((item) => item === (tab || route.query.tab));
|
|
30
30
|
activeTab.value = found || tabList.value[0];
|
|
31
31
|
initial && tabChanged({ paneName: activeTab.value });
|
|
32
|
-
},
|
|
32
|
+
}, 111);
|
|
33
33
|
};
|
|
34
34
|
const setupBreadcrumbs = (tabs) => {
|
|
35
35
|
console.log("CpMS");
|
|
@@ -9814,6 +9814,7 @@ heights > $common-component-size
|
|
|
9814
9814
|
font-weight: var(--el-link-font-weight);
|
|
9815
9815
|
color: var(--el-link-text-color);
|
|
9816
9816
|
border-bottom: 1px solid transparent;
|
|
9817
|
+
line-height: normal;
|
|
9817
9818
|
}
|
|
9818
9819
|
.el-link:hover {
|
|
9819
9820
|
color: var(--el-link-hover-text-color);
|
|
@@ -325,6 +325,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
325
325
|
font-weight: var(--el-link-font-weight);
|
|
326
326
|
color: var(--el-link-text-color);
|
|
327
327
|
border-bottom: 1px solid transparent;
|
|
328
|
+
line-height: normal;
|
|
328
329
|
}
|
|
329
330
|
.el-link:hover {
|
|
330
331
|
color: var(--el-link-hover-text-color);
|
|
@@ -1234,23 +1234,6 @@ body {
|
|
|
1234
1234
|
justify-content: center;
|
|
1235
1235
|
}
|
|
1236
1236
|
|
|
1237
|
-
.page-enter-active,
|
|
1238
|
-
.page-leave-active,
|
|
1239
|
-
.layout-enter-active,
|
|
1240
|
-
.layout-leave-active {
|
|
1241
|
-
opacity: 1;
|
|
1242
|
-
transition: opacity 0.4s;
|
|
1243
|
-
transition-delay: 0.4s;
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
.page-enter-from,
|
|
1247
|
-
.page-leave-to,
|
|
1248
|
-
.layout-enter-from,
|
|
1249
|
-
.layout-leave-to {
|
|
1250
|
-
opacity: 0;
|
|
1251
|
-
transition: opacity 0.4s;
|
|
1252
|
-
}
|
|
1253
|
-
|
|
1254
1237
|
.el-icon.more-icon {
|
|
1255
1238
|
align-items: center;
|
|
1256
1239
|
color: var(--el-color-neutral-light-3);
|
|
@@ -44,23 +44,6 @@ body {
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.page-enter-active,
|
|
48
|
-
.page-leave-active,
|
|
49
|
-
.layout-enter-active,
|
|
50
|
-
.layout-leave-active {
|
|
51
|
-
opacity: 1;
|
|
52
|
-
transition: opacity 0.4s;
|
|
53
|
-
transition-delay: 0.4s;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.page-enter-from,
|
|
57
|
-
.page-leave-to,
|
|
58
|
-
.layout-enter-from,
|
|
59
|
-
.layout-leave-to {
|
|
60
|
-
opacity: 0;
|
|
61
|
-
transition: opacity 0.4s;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
47
|
.el-icon {
|
|
65
48
|
&.more-icon {
|
|
66
49
|
align-items: center;
|
package/package.json
CHANGED