@dolusoft/vue3-datatable 1.7.88 → 1.8.1
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/vue3-datatable.cjs
CHANGED
|
@@ -3150,7 +3150,7 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
3150
3150
|
], 4)) : vue.createCommentVNode("", true),
|
|
3151
3151
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(props.all.columns, (col, j) => {
|
|
3152
3152
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
3153
|
-
!col.hide ? (vue.openBlock(), vue.createElementBlock("th", {
|
|
3153
|
+
!col.hide && !col.dataOnly ? (vue.openBlock(), vue.createElementBlock("th", {
|
|
3154
3154
|
key: col.field,
|
|
3155
3155
|
class: vue.normalizeClass(["bh-select-none bh-z-[1]", [
|
|
3156
3156
|
props.all.sortable && col.sort ? "bh-cursor-pointer" : "",
|
|
@@ -3578,6 +3578,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
3578
3578
|
item.type = type;
|
|
3579
3579
|
item.isUnique = item.isUnique !== void 0 ? item.isUnique : false;
|
|
3580
3580
|
item.hide = item.hide !== void 0 ? item.hide : false;
|
|
3581
|
+
item.dataOnly = item.dataOnly !== void 0 ? item.dataOnly : false;
|
|
3581
3582
|
item.filter = item.filter !== void 0 ? item.filter : true;
|
|
3582
3583
|
item.search = item.search !== void 0 ? item.search : true;
|
|
3583
3584
|
item.sort = item.sort !== void 0 ? item.sort : true;
|
|
@@ -4457,7 +4458,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
4457
4458
|
], 6)) : vue.createCommentVNode("", true),
|
|
4458
4459
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(props.columns, (col, j) => {
|
|
4459
4460
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
4460
|
-
!col.hide ? (vue.openBlock(), vue.createElementBlock("td", {
|
|
4461
|
+
!col.hide && !col.dataOnly ? (vue.openBlock(), vue.createElementBlock("td", {
|
|
4461
4462
|
key: col.field,
|
|
4462
4463
|
class: vue.normalizeClass([
|
|
4463
4464
|
isCellClassFunction.value ? _ctx.cellClass(item) : props.cellClass,
|
|
@@ -4521,7 +4522,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
4521
4522
|
}, null, 8, _hoisted_20)) : vue.createCommentVNode("", true),
|
|
4522
4523
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(props.columns, (col, j) => {
|
|
4523
4524
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
4524
|
-
!col.hide ? (vue.openBlock(), vue.createElementBlock("td", {
|
|
4525
|
+
!col.hide && !col.dataOnly ? (vue.openBlock(), vue.createElementBlock("td", {
|
|
4525
4526
|
key: col.field,
|
|
4526
4527
|
class: vue.normalizeClass([
|
|
4527
4528
|
isCellClassFunction.value ? _ctx.cellClass(item) : props.cellClass,
|
|
@@ -4705,7 +4706,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
4705
4706
|
], 6)) : vue.createCommentVNode("", true),
|
|
4706
4707
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(props.columns, (col, j) => {
|
|
4707
4708
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
4708
|
-
!col.hide ? (vue.openBlock(), vue.createElementBlock("td", {
|
|
4709
|
+
!col.hide && !col.dataOnly ? (vue.openBlock(), vue.createElementBlock("td", {
|
|
4709
4710
|
key: col.field,
|
|
4710
4711
|
class: vue.normalizeClass([
|
|
4711
4712
|
isCellClassFunction.value ? _ctx.cellClass(item) : props.cellClass,
|
|
@@ -4780,7 +4781,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
4780
4781
|
}, null, 8, _hoisted_31)) : vue.createCommentVNode("", true),
|
|
4781
4782
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(props.columns, (col, j) => {
|
|
4782
4783
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
4783
|
-
!col.hide ? (vue.openBlock(), vue.createElementBlock("td", {
|
|
4784
|
+
!col.hide && !col.dataOnly ? (vue.openBlock(), vue.createElementBlock("td", {
|
|
4784
4785
|
key: col.field,
|
|
4785
4786
|
class: vue.normalizeClass([
|
|
4786
4787
|
isCellClassFunction.value ? _ctx.cellClass(item) : props.cellClass,
|
package/dist/vue3-datatable.js
CHANGED
|
@@ -3149,7 +3149,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3149
3149
|
], 4)) : createCommentVNode("", true),
|
|
3150
3150
|
(openBlock(true), createElementBlock(Fragment, null, renderList(props.all.columns, (col, j) => {
|
|
3151
3151
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
3152
|
-
!col.hide ? (openBlock(), createElementBlock("th", {
|
|
3152
|
+
!col.hide && !col.dataOnly ? (openBlock(), createElementBlock("th", {
|
|
3153
3153
|
key: col.field,
|
|
3154
3154
|
class: normalizeClass(["bh-select-none bh-z-[1]", [
|
|
3155
3155
|
props.all.sortable && col.sort ? "bh-cursor-pointer" : "",
|
|
@@ -3577,6 +3577,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3577
3577
|
item.type = type;
|
|
3578
3578
|
item.isUnique = item.isUnique !== void 0 ? item.isUnique : false;
|
|
3579
3579
|
item.hide = item.hide !== void 0 ? item.hide : false;
|
|
3580
|
+
item.dataOnly = item.dataOnly !== void 0 ? item.dataOnly : false;
|
|
3580
3581
|
item.filter = item.filter !== void 0 ? item.filter : true;
|
|
3581
3582
|
item.search = item.search !== void 0 ? item.search : true;
|
|
3582
3583
|
item.sort = item.sort !== void 0 ? item.sort : true;
|
|
@@ -4456,7 +4457,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
4456
4457
|
], 6)) : createCommentVNode("", true),
|
|
4457
4458
|
(openBlock(true), createElementBlock(Fragment, null, renderList(props.columns, (col, j) => {
|
|
4458
4459
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
4459
|
-
!col.hide ? (openBlock(), createElementBlock("td", {
|
|
4460
|
+
!col.hide && !col.dataOnly ? (openBlock(), createElementBlock("td", {
|
|
4460
4461
|
key: col.field,
|
|
4461
4462
|
class: normalizeClass([
|
|
4462
4463
|
isCellClassFunction.value ? _ctx.cellClass(item) : props.cellClass,
|
|
@@ -4520,7 +4521,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
4520
4521
|
}, null, 8, _hoisted_20)) : createCommentVNode("", true),
|
|
4521
4522
|
(openBlock(true), createElementBlock(Fragment, null, renderList(props.columns, (col, j) => {
|
|
4522
4523
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
4523
|
-
!col.hide ? (openBlock(), createElementBlock("td", {
|
|
4524
|
+
!col.hide && !col.dataOnly ? (openBlock(), createElementBlock("td", {
|
|
4524
4525
|
key: col.field,
|
|
4525
4526
|
class: normalizeClass([
|
|
4526
4527
|
isCellClassFunction.value ? _ctx.cellClass(item) : props.cellClass,
|
|
@@ -4704,7 +4705,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
4704
4705
|
], 6)) : createCommentVNode("", true),
|
|
4705
4706
|
(openBlock(true), createElementBlock(Fragment, null, renderList(props.columns, (col, j) => {
|
|
4706
4707
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
4707
|
-
!col.hide ? (openBlock(), createElementBlock("td", {
|
|
4708
|
+
!col.hide && !col.dataOnly ? (openBlock(), createElementBlock("td", {
|
|
4708
4709
|
key: col.field,
|
|
4709
4710
|
class: normalizeClass([
|
|
4710
4711
|
isCellClassFunction.value ? _ctx.cellClass(item) : props.cellClass,
|
|
@@ -4779,7 +4780,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
4779
4780
|
}, null, 8, _hoisted_31)) : createCommentVNode("", true),
|
|
4780
4781
|
(openBlock(true), createElementBlock(Fragment, null, renderList(props.columns, (col, j) => {
|
|
4781
4782
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
4782
|
-
!col.hide ? (openBlock(), createElementBlock("td", {
|
|
4783
|
+
!col.hide && !col.dataOnly ? (openBlock(), createElementBlock("td", {
|
|
4783
4784
|
key: col.field,
|
|
4784
4785
|
class: normalizeClass([
|
|
4785
4786
|
isCellClassFunction.value ? _ctx.cellClass(item) : props.cellClass,
|