bootstrap-vue-wrapper 3.0.4 → 3.0.6

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-051542bd]{cursor:pointer}
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-6563fdef]{cursor:pointer}
@@ -1,6 +1,6 @@
1
1
  import { PropType } from 'vue';
2
2
  import { default as Field } from '../../types/Field.ts';
3
- import { default as TableRow } from '../../types/TableRow.ts';
3
+ import { TableRow } from '../../types/TableRow.ts';
4
4
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
5
  /**
6
6
  * Field list
@@ -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 }, w = ["colspan"], f = ["textContent"], B = ["data-id", "onClick"], S = { key: 0 }, T = ["colspan"];
5
+ const m = { class: "table" }, v = ["onClick"], $ = { key: 0 }, b = ["colspan"], g = { key: 1 }, f = ["colspan"], w = ["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, f)) : p("", !0)
49
+ }, null, 8, w)) : p("", !0)
50
50
  ], !0)
51
- ], 8, w)
51
+ ], 8, f)
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-051542bd"]]);
83
+ const O = /* @__PURE__ */ C(h, [["render", _], ["__scopeId", "data-v-6563fdef"]]);
84
84
  export {
85
85
  O as default
86
86
  };
@@ -4,7 +4,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
4
4
  * Value for v-model
5
5
  */
6
6
  modelValue: {
7
- type: (StringConstructor | NumberConstructor)[];
7
+ type: (StringConstructor | NumberConstructor | null)[];
8
8
  default: null;
9
9
  };
10
10
  /**
@@ -78,7 +78,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
78
78
  * Value for v-model
79
79
  */
80
80
  modelValue: {
81
- type: (StringConstructor | NumberConstructor)[];
81
+ type: (StringConstructor | NumberConstructor | null)[];
82
82
  default: null;
83
83
  };
84
84
  /**
@@ -128,7 +128,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
128
128
  }>, {
129
129
  label: string;
130
130
  trim: boolean;
131
- modelValue: string | number;
131
+ modelValue: string | number | null;
132
132
  hint: string;
133
133
  validatorEnabled: boolean;
134
134
  emptyStringToNull: boolean;
@@ -1,13 +1,13 @@
1
1
  import { useValidator as a } from "@zemkogabor/vue-form-validator";
2
2
  import { defineComponent as i, ref as r } from "vue";
3
- const u = i({
3
+ const o = i({
4
4
  name: "BsTextarea",
5
5
  props: {
6
6
  /**
7
7
  * Value for v-model
8
8
  */
9
9
  modelValue: {
10
- type: [String, Number],
10
+ type: [String, Number, null],
11
11
  default: null
12
12
  },
13
13
  /**
@@ -89,5 +89,5 @@ const u = i({
89
89
  }
90
90
  });
91
91
  export {
92
- u as default
92
+ o as default
93
93
  };
@@ -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 { default as TableRow } from './types/TableRow.ts';
13
+ export type { TableRow, TableRowMeta } from './types/TableRow.ts';
@@ -1,6 +1,8 @@
1
- export default interface TableRow {
1
+ export interface TableRowMeta {
2
2
  trClass?: string;
3
3
  id?: string | number;
4
4
  _showRowDetails?: boolean;
5
- [key: string]: object | string | number | boolean | undefined | null;
6
5
  }
6
+ export type TableRow = TableRowMeta & {
7
+ [key: string]: unknown;
8
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bootstrap-vue-wrapper",
3
- "version": "3.0.4",
3
+ "version": "3.0.6",
4
4
  "description": "Bootstrap 5 components in Vue3 wrapper.",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",