@timus-networks/theme 2.4.112 → 2.4.115
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.tab.vue +1 -1
- package/dist/runtime/components/development/example.table.vue +2 -2
- package/dist/runtime/pages/theme.vue +1 -1
- package/dist/runtime/public/scss/element-plus/index.css +2 -2
- package/dist/runtime/public/scss/element-plus/table.css +1 -1
- package/dist/runtime/public/scss/element-plus/table.scss +1 -1
- package/dist/runtime/public/scss/element-plus/tabs.css +1 -1
- package/dist/runtime/public/scss/element-plus/tabs.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.114";
|
|
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 = {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
Basic and concise tabs. Tabs provide a selective card functionality. By default the first tab is selected as active, and you can activate any tab by setting the value
|
|
11
11
|
attribute.
|
|
12
12
|
</p>
|
|
13
|
-
<el-tabs v-model="activeName" class="demo-tabs" style="width: 100%"
|
|
13
|
+
<el-tabs v-model="activeName" class="demo-tabs" style="width: 100%">
|
|
14
14
|
<el-tab-pane label="User" name="first">User</el-tab-pane>
|
|
15
15
|
<el-tab-pane label="Config" name="second">Config</el-tab-pane>
|
|
16
16
|
<el-tab-pane label="Role" name="third">Role</el-tab-pane>
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
<el-card>
|
|
46
46
|
<template #header> Without Border </template>
|
|
47
47
|
<div class="flex flex-col gap-7.5 items-start">
|
|
48
|
-
<p>Just add <el-text tag="mark">.
|
|
49
|
-
<el-table :data="tableData" style="width: 100%" flexible height="300" class="
|
|
48
|
+
<p>Just add <el-text tag="mark">.t-border-none</el-text> to table class attribute.</p>
|
|
49
|
+
<el-table :data="tableData" style="width: 100%" flexible height="300" class="t-border-none">
|
|
50
50
|
<el-table-column type="selection" width="16" />
|
|
51
51
|
<el-table-column label="Date" width="120" show-overflow-tooltip>
|
|
52
52
|
<template #default="scope">{{ scope.row.date }}</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<el-tabs v-model="activeName" class="demo-tabs"
|
|
2
|
+
<el-tabs v-model="activeName" class="demo-tabs">
|
|
3
3
|
<el-tab-pane label="Alert" name="alert" lazy><example-alert /></el-tab-pane>
|
|
4
4
|
<el-tab-pane label="Avatar" name="avatar" lazy><example-avatar /></el-tab-pane>
|
|
5
5
|
<el-tab-pane label="Badge" name="badge" lazy><example-badge /></el-tab-pane>
|
|
@@ -13972,7 +13972,7 @@ h6,
|
|
|
13972
13972
|
font-weight: var(--el-table-font-weight-head);
|
|
13973
13973
|
border-bottom: 1px solid var(--el-color-neutral-light-3);
|
|
13974
13974
|
}
|
|
13975
|
-
.el-table thead th
|
|
13975
|
+
.el-table thead th.el-table__cell .cell {
|
|
13976
13976
|
display: flex;
|
|
13977
13977
|
gap: 3px;
|
|
13978
13978
|
}
|
|
@@ -15246,7 +15246,7 @@ h6,
|
|
|
15246
15246
|
}
|
|
15247
15247
|
|
|
15248
15248
|
.el-tabs--top {
|
|
15249
|
-
flex-direction: column
|
|
15249
|
+
flex-direction: column;
|
|
15250
15250
|
}
|
|
15251
15251
|
|
|
15252
15252
|
.slideInRight-transition,
|
|
@@ -424,7 +424,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
424
424
|
font-weight: var(--el-table-font-weight-head);
|
|
425
425
|
border-bottom: 1px solid var(--el-color-neutral-light-3);
|
|
426
426
|
}
|
|
427
|
-
.el-table thead th
|
|
427
|
+
.el-table thead th.el-table__cell .cell {
|
|
428
428
|
display: flex;
|
|
429
429
|
gap: 3px;
|
|
430
430
|
}
|
package/package.json
CHANGED