@timus-networks/theme 2.4.185 → 2.4.187
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/assets/scss/main.css +6 -7
- package/dist/runtime/components/development/example.table.vue +2 -2
- package/dist/runtime/public/scss/element-plus/index.css +1 -7
- package/dist/runtime/public/scss/element-plus/pagination.css +0 -5
- package/dist/runtime/public/scss/element-plus/pagination.scss +0 -5
- package/dist/runtime/public/scss/element-plus/table.css +1 -2
- package/dist/runtime/public/scss/element-plus/table.scss +3 -2
- package/dist/runtime/public/scss/theme.css +5 -0
- package/dist/runtime/public/scss/theme.scss +7 -0
- 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.186";
|
|
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 = {
|
|
@@ -1246,6 +1246,7 @@ body {
|
|
|
1246
1246
|
display: flex;
|
|
1247
1247
|
gap: 28px;
|
|
1248
1248
|
justify-content: center;
|
|
1249
|
+
margin-top: 16px;
|
|
1249
1250
|
}
|
|
1250
1251
|
.page-footer .el-button {
|
|
1251
1252
|
flex-basis: 100%;
|
|
@@ -1298,6 +1299,10 @@ body {
|
|
|
1298
1299
|
width: 20px;
|
|
1299
1300
|
}
|
|
1300
1301
|
|
|
1302
|
+
.el-table + .el-pagination {
|
|
1303
|
+
margin-top: 16px;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1301
1306
|
:root {
|
|
1302
1307
|
--el-color-white: #ffffff;
|
|
1303
1308
|
--el-color-black: #000000;
|
|
@@ -12430,11 +12435,6 @@ heights > $common-component-size
|
|
|
12430
12435
|
outline-offset: -1px;
|
|
12431
12436
|
}
|
|
12432
12437
|
|
|
12433
|
-
.el-table + .el-pagination {
|
|
12434
|
-
margin-top: 16px;
|
|
12435
|
-
border: 1px solid red;
|
|
12436
|
-
}
|
|
12437
|
-
|
|
12438
12438
|
.el-popconfirm__main {
|
|
12439
12439
|
display: flex;
|
|
12440
12440
|
align-items: center;
|
|
@@ -15058,14 +15058,13 @@ heights > $common-component-size
|
|
|
15058
15058
|
}
|
|
15059
15059
|
.el-table .el-table__cell:last-of-type .cell {
|
|
15060
15060
|
padding-right: 0;
|
|
15061
|
-
padding-left:
|
|
15061
|
+
padding-left: 12px;
|
|
15062
15062
|
}
|
|
15063
15063
|
.el-table .cell {
|
|
15064
15064
|
box-sizing: border-box;
|
|
15065
15065
|
overflow: hidden;
|
|
15066
15066
|
text-overflow: ellipsis;
|
|
15067
15067
|
overflow-wrap: break-word;
|
|
15068
|
-
margin-left: 12px;
|
|
15069
15068
|
padding-left: 12px;
|
|
15070
15069
|
align-items: center;
|
|
15071
15070
|
gap: 2px;
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
</template>
|
|
198
198
|
<script lang="ts" setup>
|
|
199
199
|
import { ElTable } from 'element-plus';
|
|
200
|
-
import { ref } from 'vue';
|
|
200
|
+
import { reactive, ref, toRefs } from 'vue';
|
|
201
201
|
|
|
202
202
|
interface User {
|
|
203
203
|
date: string;
|
|
@@ -232,7 +232,7 @@
|
|
|
232
232
|
},
|
|
233
233
|
});
|
|
234
234
|
|
|
235
|
-
const { current_page,
|
|
235
|
+
const { current_page, page_size, disabled, background, handleSizeChange, handleCurrentChange } = toRefs(paginationState);
|
|
236
236
|
|
|
237
237
|
const tableData: User[] = [
|
|
238
238
|
{
|
|
@@ -11543,11 +11543,6 @@ h6,
|
|
|
11543
11543
|
outline-offset: -1px;
|
|
11544
11544
|
}
|
|
11545
11545
|
|
|
11546
|
-
.el-table + .el-pagination {
|
|
11547
|
-
margin-top: 16px;
|
|
11548
|
-
border: 1px solid red;
|
|
11549
|
-
}
|
|
11550
|
-
|
|
11551
11546
|
.el-popconfirm__main {
|
|
11552
11547
|
display: flex;
|
|
11553
11548
|
align-items: center;
|
|
@@ -14171,14 +14166,13 @@ h6,
|
|
|
14171
14166
|
}
|
|
14172
14167
|
.el-table .el-table__cell:last-of-type .cell {
|
|
14173
14168
|
padding-right: 0;
|
|
14174
|
-
padding-left:
|
|
14169
|
+
padding-left: 12px;
|
|
14175
14170
|
}
|
|
14176
14171
|
.el-table .cell {
|
|
14177
14172
|
box-sizing: border-box;
|
|
14178
14173
|
overflow: hidden;
|
|
14179
14174
|
text-overflow: ellipsis;
|
|
14180
14175
|
overflow-wrap: break-word;
|
|
14181
|
-
margin-left: 12px;
|
|
14182
14176
|
padding-left: 12px;
|
|
14183
14177
|
align-items: center;
|
|
14184
14178
|
gap: 2px;
|
|
@@ -591,9 +591,4 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
591
591
|
.el-pager li:focus-visible {
|
|
592
592
|
outline: 1px solid var(--el-pagination-hover-color);
|
|
593
593
|
outline-offset: -1px;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
.el-table + .el-pagination {
|
|
597
|
-
margin-top: 16px;
|
|
598
|
-
border: 1px solid red;
|
|
599
594
|
}
|
|
@@ -466,14 +466,13 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
466
466
|
}
|
|
467
467
|
.el-table .el-table__cell:last-of-type .cell {
|
|
468
468
|
padding-right: 0;
|
|
469
|
-
padding-left:
|
|
469
|
+
padding-left: 12px;
|
|
470
470
|
}
|
|
471
471
|
.el-table .cell {
|
|
472
472
|
box-sizing: border-box;
|
|
473
473
|
overflow: hidden;
|
|
474
474
|
text-overflow: ellipsis;
|
|
475
475
|
overflow-wrap: break-word;
|
|
476
|
-
margin-left: 12px;
|
|
477
476
|
padding-left: 12px;
|
|
478
477
|
align-items: center;
|
|
479
478
|
gap: 2px;
|
|
@@ -218,7 +218,8 @@
|
|
|
218
218
|
&:last-of-type {
|
|
219
219
|
.cell {
|
|
220
220
|
padding-right: 0;
|
|
221
|
-
padding-left: 0;
|
|
221
|
+
// padding-left: 0;
|
|
222
|
+
padding-left: 12px;
|
|
222
223
|
}
|
|
223
224
|
}
|
|
224
225
|
}
|
|
@@ -229,7 +230,7 @@
|
|
|
229
230
|
text-overflow: ellipsis;
|
|
230
231
|
overflow-wrap: break-word;
|
|
231
232
|
// padding: 0 12px 0 0;
|
|
232
|
-
margin-left: 12px;
|
|
233
|
+
// margin-left: 12px;
|
|
233
234
|
padding-left: 12px;
|
|
234
235
|
align-items: center;
|
|
235
236
|
// display: flex; // bunu eklersem truncate etmiyor o yüzden aşağıdaki line-height: 1 i ekledim çözüldü
|
|
@@ -1241,6 +1241,7 @@ body {
|
|
|
1241
1241
|
display: flex;
|
|
1242
1242
|
gap: 28px;
|
|
1243
1243
|
justify-content: center;
|
|
1244
|
+
margin-top: 16px;
|
|
1244
1245
|
}
|
|
1245
1246
|
.page-footer .el-button {
|
|
1246
1247
|
flex-basis: 100%;
|
|
@@ -1291,4 +1292,8 @@ body {
|
|
|
1291
1292
|
.el-icon.more-icon svg {
|
|
1292
1293
|
height: 20px;
|
|
1293
1294
|
width: 20px;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.el-table + .el-pagination {
|
|
1298
|
+
margin-top: 16px;
|
|
1294
1299
|
}
|
package/package.json
CHANGED