Socket
Socket
Sign inDemoInstall

@handsontable/vue3

Package Overview
Dependencies
34
Maintainers
5
Versions
557
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-next-d2bcced-20240403 to 0.0.0-next-d3b83d5-20240514

10

commonjs/HotColumn.vue.d.ts

@@ -1,11 +0,3 @@

declare const HotColumn: import("vue").DefineComponent<import("./types").VueProps<import("./types").HotTableProps>, unknown, unknown, {}, {
/**
* Create the column settings based on the data provided to the `hot-column`
* component and it's child components.
*/
createColumnSettings(): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
[x: string]: any;
}, {}>;
declare const HotColumn: any;
export default HotColumn;
export { HotColumn };

@@ -1,30 +0,3 @@

import { VNode } from 'vue';
import Handsontable from 'handsontable/base';
import { HotTableProps } from './types';
declare const HotTable: import("vue").DefineComponent<import("./types").VueProps<HotTableProps>, unknown, {
__hotInstance: Handsontable;
miscCache: {
currentSourceColumns: any;
};
columnSettings: HotTableProps[];
columnsCache: Map<VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>, HotTableProps>;
hotInstance: Handsontable;
}, {}, {
/**
* Initialize Handsontable.
*/
hotInit(): void;
matchHotMappersSize(): void;
/**
* Get settings for the columns provided in the `hot-column` components.
*
* @returns {HotTableProps[] | undefined}
*/
getColumnSettings(): HotTableProps[] | void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
[x: string]: any;
}, {}>;
declare const HotTable: any;
export default HotTable;
export { HotTable };

2

commonjs/types.d.ts

@@ -7,4 +7,4 @@ import Handsontable from 'handsontable/base';

}
export type VueProps<T> = {
export declare type VueProps<T> = {
[P in keyof T]: any;
};

@@ -8,5 +8,5 @@ 'use strict';

function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
var Handsontable__default = /*#__PURE__*/_interopDefaultLegacy(Handsontable);
var Handsontable__default = /*#__PURE__*/_interopDefaultCompat(Handsontable);

@@ -46,3 +46,3 @@ function ownKeys(e, r) {

var i = _toPrimitive(t, "string");
return "symbol" == typeof i ? i : String(i);
return "symbol" == typeof i ? i : i + "";
}

@@ -181,17 +181,28 @@ function _typeof(o) {

function simpleEqual(objectA, objectB) {
var circularReplacer = function () {
var seen = new WeakSet();
return function (key, value) {
if (_typeof(value) === 'object' && value !== null) {
if (seen.has(value)) return;
seen.add(value);
}
return value;
};
}();
return JSON.stringify(objectA, circularReplacer) === JSON.stringify(objectB, circularReplacer);
var stringifyToJSON = function stringifyToJSON(val) {
var circularReplacer = function () {
var seen = new WeakSet();
return function (key, value) {
if (_typeof(value) === 'object' && value !== null) {
if (seen.has(value)) return;
seen.add(value);
}
return value;
};
}();
return JSON.stringify(val, circularReplacer);
};
if (typeof objectA === 'function' && typeof objectB === 'function') {
return objectA.toString() === objectB.toString();
} else if (_typeof(objectA) !== _typeof(objectB)) {
return false;
} else {
return stringifyToJSON(objectA) === stringifyToJSON(objectB);
}
}
var version="0.0.0-next-d2bcced-20240403";
var version="0.0.0-next-d3b83d5-20240514";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
var HotTable = vue.defineComponent({

@@ -198,0 +209,0 @@ name: 'HotTable',

@@ -1,11 +0,3 @@

declare const HotColumn: import("vue").DefineComponent<import("./types").VueProps<import("./types").HotTableProps>, unknown, unknown, {}, {
/**
* Create the column settings based on the data provided to the `hot-column`
* component and it's child components.
*/
createColumnSettings(): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
[x: string]: any;
}, {}>;
declare const HotColumn: any;
export default HotColumn;
export { HotColumn };

@@ -1,30 +0,3 @@

import { VNode } from 'vue';
import Handsontable from 'handsontable/base';
import { HotTableProps } from './types';
declare const HotTable: import("vue").DefineComponent<import("./types").VueProps<HotTableProps>, unknown, {
__hotInstance: Handsontable;
miscCache: {
currentSourceColumns: any;
};
columnSettings: HotTableProps[];
columnsCache: Map<VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>, HotTableProps>;
hotInstance: Handsontable;
}, {}, {
/**
* Initialize Handsontable.
*/
hotInit(): void;
matchHotMappersSize(): void;
/**
* Get settings for the columns provided in the `hot-column` components.
*
* @returns {HotTableProps[] | undefined}
*/
getColumnSettings(): HotTableProps[] | void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
[x: string]: any;
}, {}>;
declare const HotTable: any;
export default HotTable;
export { HotTable };

@@ -7,4 +7,4 @@ import Handsontable from 'handsontable/base';

}
export type VueProps<T> = {
export declare type VueProps<T> = {
[P in keyof T]: any;
};

@@ -28,3 +28,3 @@ /*!

*
* Version: 0.0.0-next-d2bcced-20240403 (built at Wed Apr 03 2024 08:52:05 GMT+0000 (Coordinated Universal Time))
* Version: 0.0.0-next-d3b83d5-20240514 (built at Tue May 14 2024 11:04:06 GMT+0000 (Coordinated Universal Time))
*/

@@ -37,5 +37,5 @@ (function (global, factory) {

function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
var Handsontable__default = /*#__PURE__*/_interopDefaultLegacy(Handsontable);
var Handsontable__default = /*#__PURE__*/_interopDefaultCompat(Handsontable);

@@ -75,3 +75,3 @@ function ownKeys(e, r) {

var i = _toPrimitive(t, "string");
return "symbol" == typeof i ? i : String(i);
return "symbol" == typeof i ? i : i + "";
}

@@ -210,17 +210,28 @@ function _typeof(o) {

function simpleEqual(objectA, objectB) {
var circularReplacer = function () {
var seen = new WeakSet();
return function (key, value) {
if (_typeof(value) === 'object' && value !== null) {
if (seen.has(value)) return;
seen.add(value);
}
return value;
};
}();
return JSON.stringify(objectA, circularReplacer) === JSON.stringify(objectB, circularReplacer);
var stringifyToJSON = function stringifyToJSON(val) {
var circularReplacer = function () {
var seen = new WeakSet();
return function (key, value) {
if (_typeof(value) === 'object' && value !== null) {
if (seen.has(value)) return;
seen.add(value);
}
return value;
};
}();
return JSON.stringify(val, circularReplacer);
};
if (typeof objectA === 'function' && typeof objectB === 'function') {
return objectA.toString() === objectB.toString();
} else if (_typeof(objectA) !== _typeof(objectB)) {
return false;
} else {
return stringifyToJSON(objectA) === stringifyToJSON(objectB);
}
}
var version="0.0.0-next-d2bcced-20240403";
var version="0.0.0-next-d3b83d5-20240514";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
var HotTable = vue.defineComponent({

@@ -227,0 +238,0 @@ name: 'HotTable',

@@ -28,5 +28,5 @@ /*!

*
* Version: 0.0.0-next-d2bcced-20240403 (built at Wed Apr 03 2024 08:52:09 GMT+0000 (Coordinated Universal Time))
* Version: 0.0.0-next-d3b83d5-20240514 (built at Tue May 14 2024 11:04:10 GMT+0000 (Coordinated Universal Time))
*/
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("vue"),require("handsontable/base")):"function"==typeof define&&define.amd?define(["exports","vue","handsontable/base"],e):e(((t="undefined"!=typeof globalThis?globalThis:t||self).Handsontable=t.Handsontable||{},t.Handsontable.vue={}),t.Vue,t.Handsontable)}(this,(function(t,e,n){"use strict";function o(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var r=o(n);function i(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,o)}return n}function s(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var o=n.call(t,e||"default");if("object"!=typeof o)return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:e+""}function a(t){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a(t)}function c(t,e,n){return(e=s(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var u=Symbol("unassigned");function l(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function h(t){var e=r.default.hooks.getRegistered(),n={};for(var o in Object.assign(n,r.default.DefaultSettings),n)n[o]={default:u};for(var i=0;e.length>i;i++)n[e[i]]={default:u};return n.settings={default:u},"HotTable"===t&&(n.id={type:String,default:"hot-".concat(Math.random().toString(36).substring(5))}),n}function f(t){var e={},n=t.settings;if(n!==u)for(var o in n)l(n,o)&&n[o]!==u&&(e[o]=n[o]);for(var r in t)l(t,r)&&"settings"!==r&&t[r]!==u&&(e[r]=t[r]);return e}function d(t,e){var n=f(t),o=t.settings?t.settings:n,r=t.settings?n:null,i={};for(var s in o)!l(o,s)||void 0===o[s]||e&&"data"!==s&&m(e[s],o[s])||(i[s]=o[s]);for(var a in r)!l(r,a)||"id"===a||"settings"===a||void 0===r[a]||e&&"data"!==a&&m(e[a],r[a])||(i[a]=r[a]);return i}function m(t,e){var n,o=(n=new WeakSet,function(t,e){if("object"===a(e)&&null!==e){if(n.has(e))return;n.add(e)}return e});return JSON.stringify(t,o)===JSON.stringify(e,o)}var p=e.defineComponent({name:"HotTable",props:h("HotTable"),provide:function(){return{columnsCache:this.columnsCache}},watch:{$props:{handler:function(t){var e=d(t,this.hotInstance?this.hotInstance.getSettings():void 0);this.hotInstance&&void 0!==e&&(e.data&&(this.hotInstance.isColumnModificationAllowed()||!this.hotInstance.isColumnModificationAllowed()&&this.hotInstance.countSourceCols()===this.miscCache.currentSourceColumns)&&(this.matchHotMappersSize(),delete e.data),Object.keys(e).length?this.hotInstance.updateSettings(e):this.hotInstance.render(),this.miscCache.currentSourceColumns=this.hotInstance.countSourceCols())},deep:!0,immediate:!0}},data:function(){return{__hotInstance:null,miscCache:{currentSourceColumns:null},columnSettings:null,columnsCache:new Map,get hotInstance(){return!this.__hotInstance||this.__hotInstance&&!this.__hotInstance.isDestroyed?this.__hotInstance:(console.warn("The Handsontable instance bound to this component was destroyed and cannot be used properly."),null)},set hotInstance(t){this.__hotInstance=t}}},methods:{hotInit:function(){var t=d(this.$props);t.columns=this.columnSettings?this.columnSettings:t.columns,this.hotInstance=e.markRaw(new r.default.Core(this.$el,t)),this.hotInstance.init(),this.miscCache.currentSourceColumns=this.hotInstance.countSourceCols()},matchHotMappersSize:function(){var t=this;if(this.hotInstance){var e,n=this.hotInstance.getSourceData(),o=[],r=[],i=this.hotInstance.rowIndexMapper.getNumberOfIndexes(),s=this.hotInstance.isColumnModificationAllowed(),a=0;if(n&&n.length!==i&&i>n.length)for(var c=n.length;i>c;c++)o.push(c);if(s)if(a=this.hotInstance.columnIndexMapper.getNumberOfIndexes(),n&&n[0]&&(null===(e=n[0])||void 0===e?void 0:e.length)!==a&&a>n[0].length)for(var u=n[0].length;a>u;u++)r.push(u);this.hotInstance.batch((function(){o.length>0?t.hotInstance.rowIndexMapper.removeIndexes(o):t.hotInstance.rowIndexMapper.insertIndexes(i-1,n.length-i),s&&0!==n.length&&(r.length>0?t.hotInstance.columnIndexMapper.removeIndexes(r):t.hotInstance.columnIndexMapper.insertIndexes(a-1,n[0].length-a))}))}},getColumnSettings:function(){var t=Array.from(this.columnsCache.values());return t.length?t:void 0}},mounted:function(){this.columnSettings=this.getColumnSettings(),this.hotInit()},beforeUnmount:function(){this.hotInstance&&this.hotInstance.destroy()},version:"0.0.0-next-d2bcced-20240403"}),b=["id"];p.render=function(t,n,o,r,i,s){return e.openBlock(),e.createElementBlock("div",{id:t.id},[e.renderSlot(t.$slots,"default")],8,b)},p.__file="src/HotTable.vue";var g=e.defineComponent({name:"HotColumn",props:h("HotColumn"),inject:["columnsCache"],methods:{createColumnSettings:function(){var t=f(this.$props),e=function(t){for(var e=1;arguments.length>e;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?i(Object(n),!0).forEach((function(e){c(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):i(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},t);t.renderer&&(e.renderer=t.renderer),t.editor&&(e.editor=t.editor),this.columnsCache.set(this,e)}},mounted:function(){this.createColumnSettings()},unmounted:function(){this.columnsCache.delete(this)},render:function(){return null}});g.__file="src/HotColumn.vue",t.HotColumn=g,t.HotTable=p,t.default=p,Object.defineProperty(t,"__esModule",{value:!0})}));
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("vue"),require("handsontable/base")):"function"==typeof define&&define.amd?define(["exports","vue","handsontable/base"],e):e(((t="undefined"!=typeof globalThis?globalThis:t||self).Handsontable=t.Handsontable||{},t.Handsontable.vue={}),t.Vue,t.Handsontable)}(this,(function(t,e,n){"use strict";function o(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var r=o(n);function i(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,o)}return n}function s(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var o=n.call(t,e||"default");if("object"!=typeof o)return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:e+""}function a(t){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a(t)}function u(t,e,n){return(e=s(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var c=Symbol("unassigned");function l(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function h(t){var e=r.default.hooks.getRegistered(),n={};for(var o in Object.assign(n,r.default.DefaultSettings),n)n[o]={default:c};for(var i=0;e.length>i;i++)n[e[i]]={default:c};return n.settings={default:c},"HotTable"===t&&(n.id={type:String,default:"hot-".concat(Math.random().toString(36).substring(5))}),n}function f(t){var e={},n=t.settings;if(n!==c)for(var o in n)l(n,o)&&n[o]!==c&&(e[o]=n[o]);for(var r in t)l(t,r)&&"settings"!==r&&t[r]!==c&&(e[r]=t[r]);return e}function d(t,e){var n=f(t),o=t.settings?t.settings:n,r=t.settings?n:null,i={};for(var s in o)!l(o,s)||void 0===o[s]||e&&"data"!==s&&p(e[s],o[s])||(i[s]=o[s]);for(var a in r)!l(r,a)||"id"===a||"settings"===a||void 0===r[a]||e&&"data"!==a&&p(e[a],r[a])||(i[a]=r[a]);return i}function p(t,e){var n=function(t){var e,n=(e=new WeakSet,function(t,n){if("object"===a(n)&&null!==n){if(e.has(n))return;e.add(n)}return n});return JSON.stringify(t,n)};return"function"==typeof t&&"function"==typeof e?""+t==""+e:a(t)===a(e)&&n(t)===n(e)}var m=e.defineComponent({name:"HotTable",props:h("HotTable"),provide:function(){return{columnsCache:this.columnsCache}},watch:{$props:{handler:function(t){var e=d(t,this.hotInstance?this.hotInstance.getSettings():void 0);this.hotInstance&&void 0!==e&&(e.data&&(this.hotInstance.isColumnModificationAllowed()||!this.hotInstance.isColumnModificationAllowed()&&this.hotInstance.countSourceCols()===this.miscCache.currentSourceColumns)&&(this.matchHotMappersSize(),delete e.data),Object.keys(e).length?this.hotInstance.updateSettings(e):this.hotInstance.render(),this.miscCache.currentSourceColumns=this.hotInstance.countSourceCols())},deep:!0,immediate:!0}},data:function(){return{__hotInstance:null,miscCache:{currentSourceColumns:null},columnSettings:null,columnsCache:new Map,get hotInstance(){return!this.__hotInstance||this.__hotInstance&&!this.__hotInstance.isDestroyed?this.__hotInstance:(console.warn("The Handsontable instance bound to this component was destroyed and cannot be used properly."),null)},set hotInstance(t){this.__hotInstance=t}}},methods:{hotInit:function(){var t=d(this.$props);t.columns=this.columnSettings?this.columnSettings:t.columns,this.hotInstance=e.markRaw(new r.default.Core(this.$el,t)),this.hotInstance.init(),this.miscCache.currentSourceColumns=this.hotInstance.countSourceCols()},matchHotMappersSize:function(){var t=this;if(this.hotInstance){var e,n=this.hotInstance.getSourceData(),o=[],r=[],i=this.hotInstance.rowIndexMapper.getNumberOfIndexes(),s=this.hotInstance.isColumnModificationAllowed(),a=0;if(n&&n.length!==i&&i>n.length)for(var u=n.length;i>u;u++)o.push(u);if(s)if(a=this.hotInstance.columnIndexMapper.getNumberOfIndexes(),n&&n[0]&&(null===(e=n[0])||void 0===e?void 0:e.length)!==a&&a>n[0].length)for(var c=n[0].length;a>c;c++)r.push(c);this.hotInstance.batch((function(){o.length>0?t.hotInstance.rowIndexMapper.removeIndexes(o):t.hotInstance.rowIndexMapper.insertIndexes(i-1,n.length-i),s&&0!==n.length&&(r.length>0?t.hotInstance.columnIndexMapper.removeIndexes(r):t.hotInstance.columnIndexMapper.insertIndexes(a-1,n[0].length-a))}))}},getColumnSettings:function(){var t=Array.from(this.columnsCache.values());return t.length?t:void 0}},mounted:function(){this.columnSettings=this.getColumnSettings(),this.hotInit()},beforeUnmount:function(){this.hotInstance&&this.hotInstance.destroy()},version:"0.0.0-next-d3b83d5-20240514"}),b=["id"];m.render=function(t,n,o,r,i,s){return e.openBlock(),e.createElementBlock("div",{id:t.id},[e.renderSlot(t.$slots,"default")],8,b)},m.__file="src/HotTable.vue";var g=e.defineComponent({name:"HotColumn",props:h("HotColumn"),inject:["columnsCache"],methods:{createColumnSettings:function(){var t=f(this.$props),e=function(t){for(var e=1;arguments.length>e;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?i(Object(n),!0).forEach((function(e){u(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):i(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},t);t.renderer&&(e.renderer=t.renderer),t.editor&&(e.editor=t.editor),this.columnsCache.set(this,e)}},mounted:function(){this.createColumnSettings()},unmounted:function(){this.columnsCache.delete(this)},render:function(){return null}});g.__file="src/HotColumn.vue",t.HotColumn=g,t.HotTable=m,t.default=m,Object.defineProperty(t,"__esModule",{value:!0})}));
//# sourceMappingURL=vue-handsontable.min.js.map

@@ -1,11 +0,3 @@

declare const HotColumn: import("vue").DefineComponent<import("./types").VueProps<import("./types").HotTableProps>, unknown, unknown, {}, {
/**
* Create the column settings based on the data provided to the `hot-column`
* component and it's child components.
*/
createColumnSettings(): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
[x: string]: any;
}, {}>;
declare const HotColumn: any;
export default HotColumn;
export { HotColumn };

@@ -1,30 +0,3 @@

import { VNode } from 'vue';
import Handsontable from 'handsontable/base';
import { HotTableProps } from './types';
declare const HotTable: import("vue").DefineComponent<import("./types").VueProps<HotTableProps>, unknown, {
__hotInstance: Handsontable;
miscCache: {
currentSourceColumns: any;
};
columnSettings: HotTableProps[];
columnsCache: Map<VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>, HotTableProps>;
hotInstance: Handsontable;
}, {}, {
/**
* Initialize Handsontable.
*/
hotInit(): void;
matchHotMappersSize(): void;
/**
* Get settings for the columns provided in the `hot-column` components.
*
* @returns {HotTableProps[] | undefined}
*/
getColumnSettings(): HotTableProps[] | void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
[x: string]: any;
}, {}>;
declare const HotTable: any;
export default HotTable;
export { HotTable };
{
"name": "@handsontable/vue3",
"version": "0.0.0-next-d2bcced-20240403",
"version": "0.0.0-next-d3b83d5-20240514",
"description": "Best Data Grid for Vue with Spreadsheet Look and Feel.",

@@ -56,3 +56,3 @@ "author": "Handsoncode <hello@handsoncode.net> (https://handsoncode.net)",

"peerDependencies": {
"handsontable": "0.0.0-next-d2bcced-20240403",
"handsontable": "0.0.0-next-d3b83d5-20240514",
"vue": "^3.2.22"

@@ -68,2 +68,8 @@ },

"@babel/runtime": "^7.11.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-babel": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^5.4.0",

@@ -77,14 +83,7 @@ "@typescript-eslint/parser": "^5.4.0",

"eslint-plugin-vue": "^8.0.3",
"handsontable": "0.0.0-next-d2bcced-20240403",
"handsontable": "0.0.0-next-d3b83d5-20240514",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.21.1",
"rollup": "^4.16.1",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",

@@ -100,6 +99,6 @@ "ts-jest": "^26.5.6",

"build": "npm run clean && npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:min",
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c",
"build:umd": "cross-env NODE_ENV=umd rollup -c",
"build:es": "cross-env NODE_ENV=es rollup -c",
"build:min": "cross-env NODE_ENV=min rollup -c",
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c --bundleConfigAsCjs",
"build:umd": "cross-env NODE_ENV=umd rollup -c --bundleConfigAsCjs",
"build:es": "cross-env NODE_ENV=es rollup -c --bundleConfigAsCjs",
"build:min": "cross-env NODE_ENV=min rollup -c --bundleConfigAsCjs",
"build:esDts": "cross-env NODE_ENV=esDts rollup -c && rimraf ./buildTemp/",

@@ -106,0 +105,0 @@ "watch:commonjs": "cross-env NODE_ENV=cjs rollup -c --watch",

@@ -7,4 +7,4 @@ import Handsontable from 'handsontable/base';

}
export type VueProps<T> = {
export declare type VueProps<T> = {
[P in keyof T]: any;
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc