bootstrap-vue-wrapper 3.0.6 → 3.0.7
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
.page-link[data-v-f98dc134]{cursor:pointer}.page-item-first[data-v-f98dc134],.page-item-last[data-v-f98dc134],.page-item-number[data-v-f98dc134]:not(.active){display:none}@media(min-width:576px){.page-item-number[data-v-f98dc134]:not(.active){display:block}}@media(min-width:992px){.page-item-first[data-v-f98dc134],.page-item-last[data-v-f98dc134]{display:block}}.cursor-pointer[data-v-
|
|
1
|
+
.page-link[data-v-f98dc134]{cursor:pointer}.page-item-first[data-v-f98dc134],.page-item-last[data-v-f98dc134],.page-item-number[data-v-f98dc134]:not(.active){display:none}@media(min-width:576px){.page-item-number[data-v-f98dc134]:not(.active){display:block}}@media(min-width:992px){.page-item-first[data-v-f98dc134],.page-item-last[data-v-f98dc134]{display:block}}.cursor-pointer[data-v-ccaa675b]{cursor:pointer}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { default as Field } from '../../types/Field.ts';
|
|
3
|
-
import {
|
|
3
|
+
import { TableRowMeta } from '../../types/TableRow.ts';
|
|
4
4
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
5
|
/**
|
|
6
6
|
* Field list
|
|
@@ -13,7 +13,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
* Item list
|
|
14
14
|
*/
|
|
15
15
|
items: {
|
|
16
|
-
type: PropType<
|
|
16
|
+
type: PropType<Array<Record<string, unknown> & TableRowMeta>>;
|
|
17
17
|
required: true;
|
|
18
18
|
};
|
|
19
19
|
/**
|
|
@@ -108,7 +108,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
108
108
|
* Item list
|
|
109
109
|
*/
|
|
110
110
|
items: {
|
|
111
|
-
type: PropType<
|
|
111
|
+
type: PropType<Array<Record<string, unknown> & TableRowMeta>>;
|
|
112
112
|
required: true;
|
|
113
113
|
};
|
|
114
114
|
/**
|
|
@@ -2,7 +2,7 @@ import h from "./BsTable.vue2.js";
|
|
|
2
2
|
import { openBlock as s, createElementBlock as o, createElementVNode as r, Fragment as a, renderList as u, normalizeClass as d, renderSlot as l, createTextVNode as y, toDisplayString as c, createCommentVNode as p } from "vue";
|
|
3
3
|
/* empty css */
|
|
4
4
|
import C from "../../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
-
const m = { class: "table" }, v = ["onClick"], $ = { key: 0 }, b = ["colspan"], g = { key: 1 },
|
|
5
|
+
const m = { class: "table" }, v = ["onClick"], $ = { key: 0 }, b = ["colspan"], g = { key: 1 }, w = ["colspan"], f = ["textContent"], B = ["data-id", "onClick"], S = { key: 0 }, T = ["colspan"];
|
|
6
6
|
function _(e, k, D, N, V, A) {
|
|
7
7
|
return s(), o("table", m, [
|
|
8
8
|
r("thead", null, [
|
|
@@ -46,9 +46,9 @@ function _(e, k, D, N, V, A) {
|
|
|
46
46
|
key: 0,
|
|
47
47
|
class: "text-center text-muted small",
|
|
48
48
|
textContent: c(e.emptyText)
|
|
49
|
-
}, null, 8,
|
|
49
|
+
}, null, 8, f)) : p("", !0)
|
|
50
50
|
], !0)
|
|
51
|
-
], 8,
|
|
51
|
+
], 8, w)
|
|
52
52
|
])) : (s(!0), o(a, { key: 2 }, u(e.items, (t, i) => (s(), o(a, { key: i }, [
|
|
53
53
|
r("tr", {
|
|
54
54
|
class: d([t.trClass || "", { "cursor-pointer": e.rowClickable }]),
|
|
@@ -80,7 +80,7 @@ function _(e, k, D, N, V, A) {
|
|
|
80
80
|
])
|
|
81
81
|
]);
|
|
82
82
|
}
|
|
83
|
-
const O = /* @__PURE__ */ C(h, [["render", _], ["__scopeId", "data-v-
|
|
83
|
+
const O = /* @__PURE__ */ C(h, [["render", _], ["__scopeId", "data-v-ccaa675b"]]);
|
|
84
84
|
export {
|
|
85
85
|
O as default
|
|
86
86
|
};
|
package/dist/ssr-safe.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ export { default as BsRadio } from './components/bs-radio/BsRadio.vue';
|
|
|
10
10
|
export type { default as BreadCrumbItem } from './types/BreadcrumbItem.ts';
|
|
11
11
|
export type { default as Option } from './types/Option.ts';
|
|
12
12
|
export type { default as Field } from './types/Field.ts';
|
|
13
|
-
export type {
|
|
13
|
+
export type { TableRowMeta } from './types/TableRow.ts';
|
package/dist/types/TableRow.d.ts
CHANGED