@alaarab/ogrid-vue-vuetify 2.2.0 → 2.3.0
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/esm/index.js +10 -0
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -513,6 +513,16 @@ var InlineCellEditor = createInlineCellEditor({
|
|
|
513
513
|
type: "date",
|
|
514
514
|
value,
|
|
515
515
|
style: { width: "100%", height: "100%", border: "none", outline: "none", padding: "0 4px", fontSize: "inherit" },
|
|
516
|
+
onVnodeMounted: (vnode) => {
|
|
517
|
+
const el = vnode.el;
|
|
518
|
+
if (el) {
|
|
519
|
+
el.focus();
|
|
520
|
+
try {
|
|
521
|
+
el.showPicker();
|
|
522
|
+
} catch {
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
},
|
|
516
526
|
onKeydown: (e) => {
|
|
517
527
|
if (e.key === "Enter") {
|
|
518
528
|
e.preventDefault();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alaarab/ogrid-vue-vuetify",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "OGrid Vuetify – Vuetify-based data grid with sorting, filtering, pagination, column chooser, and CSV export.",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"node": ">=18"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@alaarab/ogrid-vue": "2.
|
|
41
|
+
"@alaarab/ogrid-vue": "2.3.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"vue": "^3.3.0",
|