flameresttable 1.0.33 → 1.0.35
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/package.json
CHANGED
package/src/Table/Table.vue
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
<div class="table-header-group">
|
|
47
47
|
|
|
48
48
|
<!-- ЧЕКБОКСЫ -->
|
|
49
|
-
<div class="table-cell
|
|
49
|
+
<div class="table-cell w-[25px] align-middle">
|
|
50
50
|
<label class="checkbox" v-if="Table.opts.rowSelectors">
|
|
51
51
|
<input type='checkbox' @change="CheckboxSelectionChanged($event, true)">
|
|
52
52
|
<span class='indicator'></span>
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
<div :key="'row_' + (row as any).id" class="defaultRow table-row cursor-pointer hover:bg-slate-100" v-if="true">
|
|
79
79
|
|
|
80
80
|
<!-- ЧЕКБОКСЫ -->
|
|
81
|
-
<div class="table-cell align-middle">
|
|
81
|
+
<div class="table-cell align-middle w-[25px]">
|
|
82
82
|
<label class="checkbox" v-if="Table.opts.rowSelectors">
|
|
83
83
|
<input type='checkbox' v-model="Table.RowsParams[(row as any)[primaryKey]].selected"
|
|
84
84
|
@change="CheckboxSelectionChanged($event, false)">
|
|
@@ -477,8 +477,8 @@ $white: #FFFFFF;
|
|
|
477
477
|
$border-radius: 3px;
|
|
478
478
|
|
|
479
479
|
@mixin checkbox($color) {
|
|
480
|
-
margin-right: 1rem;
|
|
481
|
-
padding-left: 1.75rem;
|
|
480
|
+
//margin-right: 1rem;
|
|
481
|
+
//padding-left: 1.75rem;
|
|
482
482
|
position: relative;
|
|
483
483
|
-webkit-user-select: none;
|
|
484
484
|
-moz-user-select: none;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="fc flex-wrap">
|
|
3
|
-
<div v-for="(col) in props.columns" :key="col.name" v-show="col.Filter.isShow"
|
|
3
|
+
<div v-for="(col) in props.columns" :key="col.name" v-show="col.Filter.isShow" class="py-1"
|
|
4
4
|
:class="col.Filter.classes + (col.Filter.type === 'selector' && col.Filter.selector.mode === 'horizontal' ? ' w-full ' : '')">
|
|
5
5
|
|
|
6
6
|
<div class="fc flex-col">
|