@ianicdev/datatables2 0.8.11 → 0.8.13
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/Columns-DeJNOLCM.cjs +1 -0
- package/dist/Columns-GBEpMZ5m.js +28 -0
- package/dist/Comparison-gMTr9mHU.cjs +1 -0
- package/dist/Comparison-v57GhUTZ.js +37 -0
- package/dist/Datepicker-Bv4of4w1.js +1246 -0
- package/dist/Datepicker-DGQbQ2jD.cjs +1 -0
- package/dist/Download-B4zf7Fob.js +164 -0
- package/dist/Download-DFSeQ_uL.cjs +1 -0
- package/dist/Options-C6gv21MY.js +82 -0
- package/dist/Options-XytiOb4O.cjs +1 -0
- package/dist/RefreshTable-BO7uzuWX.js +26 -0
- package/dist/RefreshTable-C-5AmxAL.cjs +1 -0
- package/dist/Search-ByPG22T-.js +72 -0
- package/dist/Search-DIUl3vxm.cjs +1 -0
- package/dist/Table-0QV9000m.js +64 -0
- package/dist/Table-xPzhAgpA.cjs +1 -0
- package/dist/TableServer-ByC-EgB4.js +3937 -0
- package/dist/TableServer-i6_C-Qd2.cjs +27 -0
- package/dist/cellRender-L5NaGvf8.js +2269 -0
- package/dist/cellRender-Ru_IZsKe.cjs +1 -0
- package/dist/dataTables-DP-djHBE.cjs +4 -0
- package/dist/{dataTables-vb6hbdQB.js → dataTables-qd_2hmGP.js} +1548 -1471
- package/dist/datatables.cjs +1 -1
- package/dist/datatables.js +1 -1
- package/dist/datatables2.css +1 -1
- package/dist/escapeKeyString-B_mzfoez.js +17 -0
- package/dist/escapeKeyString-CQVlwp30.cjs +1 -0
- package/dist/exporttocsv-CUWOZ1Z_.js +88 -0
- package/dist/exporttocsv-RZvZEhmM.cjs +6 -0
- package/dist/filesaver-Deatpm3H.cjs +1 -0
- package/dist/filesaver-K4_fCr7v.js +75 -0
- package/dist/index-BeWDgF_v.cjs +1 -0
- package/dist/index-CIkwH8Kr.cjs +1 -0
- package/dist/index-Drz0TALq.js +79 -0
- package/dist/index-Dt2Z193z.js +4316 -0
- package/dist/{index.es-DRbDgHS7.cjs → index.es-B0GUE7KM.cjs} +6 -6
- package/dist/{index.es-JO9irKMX.js → index.es-sKSodxcW.js} +4 -3
- package/dist/jspdf-BDkAtFGI.cjs +194 -0
- package/dist/jspdf-CzuJJB6C.js +10998 -0
- package/dist/printjs-BbgDICDe.cjs +1 -0
- package/dist/printjs-kC3Qmb-l.js +689 -0
- package/dist/sortablejs-BhPwT7wS.cjs +6 -0
- package/dist/sortablejs-DSHM8iDp.js +1260 -0
- package/dist/xlsx-BBXALOAs.cjs +128 -0
- package/dist/xlsx-vtl6oPEm.js +15887 -0
- package/package.json +4 -4
- package/dist/dataTables-DzQnNgjr.cjs +0 -4
- package/dist/index-CsWSROxT.js +0 -41217
- package/dist/index-nr135rbT.cjs +0 -357
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),c=require("vue-i18n"),r=require("./dataTables-DP-djHBE.cjs"),s={__name:"Columns",props:{componentRefs:{type:Object,default:()=>({})}},setup(t){const n=e.inject("pluginOptions"),{t:o}=c.useI18n();return(a,l)=>(e.openBlock(),e.createBlock(r.VBtn,{"prepend-icon":e.unref(n).header.icons.columns,text:e.unref(o)("$datatables.columns"),variant:"text",density:"comfortable",color:"dark",stacked:"",class:"text-capitalize",onClick:t.componentRefs.columns?.openDialog},null,8,["prepend-icon","text","onClick"]))}};exports.default=s;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { inject as c, createBlock as r, openBlock as s, unref as t } from "vue";
|
|
2
|
+
import { useI18n as a } from "vue-i18n";
|
|
3
|
+
import { a9 as p } from "./dataTables-qd_2hmGP.js";
|
|
4
|
+
const d = {
|
|
5
|
+
__name: "Columns",
|
|
6
|
+
props: {
|
|
7
|
+
componentRefs: {
|
|
8
|
+
type: Object,
|
|
9
|
+
default: () => ({})
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
setup(e) {
|
|
13
|
+
const n = c("pluginOptions"), { t: o } = a();
|
|
14
|
+
return (l, i) => (s(), r(p, {
|
|
15
|
+
"prepend-icon": t(n).header.icons.columns,
|
|
16
|
+
text: t(o)("$datatables.columns"),
|
|
17
|
+
variant: "text",
|
|
18
|
+
density: "comfortable",
|
|
19
|
+
color: "dark",
|
|
20
|
+
stacked: "",
|
|
21
|
+
class: "text-capitalize",
|
|
22
|
+
onClick: e.componentRefs.columns?.openDialog
|
|
23
|
+
}, null, 8, ["prepend-icon", "text", "onClick"]));
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
export {
|
|
27
|
+
d as default
|
|
28
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),s=require("./index-CIkwH8Kr.cjs"),u={class:"d-flex align-center",style:{gap:"1rem"}},d=e.defineComponent({__name:"Comparison",props:{modelValue:{},modelModifiers:{},comparison:{},comparisonModifiers:{}},emits:["update:modelValue","update:comparison"],setup(a){const t=e.useModel(a,"modelValue"),r=e.useModel(a,"comparison");return(n,o)=>(e.openBlock(),e.createElementBlock("div",u,[e.createVNode(s.VNumberInput,e.mergeProps(n.$attrs,{modelValue:t.value,"onUpdate:modelValue":o[0]||(o[0]=l=>t.value=l),precision:null,"decimal-separator":","}),null,16,["modelValue"]),e.createVNode(s.VSelect,e.mergeProps({modelValue:r.value,"onUpdate:modelValue":o[1]||(o[1]=l=>r.value=l)},n.$attrs,{label:"Comparison",items:[">","<",">=","<=","="],"max-width":150}),null,16,["modelValue"])]))}});exports.default=d;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { defineComponent as d, useModel as r, createElementBlock as u, openBlock as i, createVNode as s, mergeProps as n } from "vue";
|
|
2
|
+
import { p, V } from "./index-Dt2Z193z.js";
|
|
3
|
+
const c = {
|
|
4
|
+
class: "d-flex align-center",
|
|
5
|
+
style: { gap: "1rem" }
|
|
6
|
+
}, g = /* @__PURE__ */ d({
|
|
7
|
+
__name: "Comparison",
|
|
8
|
+
props: {
|
|
9
|
+
modelValue: {},
|
|
10
|
+
modelModifiers: {},
|
|
11
|
+
comparison: {},
|
|
12
|
+
comparisonModifiers: {}
|
|
13
|
+
},
|
|
14
|
+
emits: ["update:modelValue", "update:comparison"],
|
|
15
|
+
setup(l) {
|
|
16
|
+
const a = r(l, "modelValue"), m = r(l, "comparison");
|
|
17
|
+
return (t, e) => (i(), u("div", c, [
|
|
18
|
+
s(p, n(t.$attrs, {
|
|
19
|
+
modelValue: a.value,
|
|
20
|
+
"onUpdate:modelValue": e[0] || (e[0] = (o) => a.value = o),
|
|
21
|
+
precision: null,
|
|
22
|
+
"decimal-separator": ","
|
|
23
|
+
}), null, 16, ["modelValue"]),
|
|
24
|
+
s(V, n({
|
|
25
|
+
modelValue: m.value,
|
|
26
|
+
"onUpdate:modelValue": e[1] || (e[1] = (o) => m.value = o)
|
|
27
|
+
}, t.$attrs, {
|
|
28
|
+
label: "Comparison",
|
|
29
|
+
items: [">", "<", ">=", "<=", "="],
|
|
30
|
+
"max-width": 150
|
|
31
|
+
}), null, 16, ["modelValue"])
|
|
32
|
+
]));
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
export {
|
|
36
|
+
g as default
|
|
37
|
+
};
|