Socket
Socket
Sign inDemoInstall

@handsontable/vue3

Package Overview
Dependencies
34
Maintainers
5
Versions
536
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-next-10cbf34-20221130 to 0.0.0-next-12340ef-20240409

4

commonjs/HotColumn.vue.d.ts

@@ -7,6 +7,6 @@ declare const HotColumn: import("vue").DefineComponent<import("./types").VueProps<import("./types").HotTableProps>, unknown, unknown, {}, {

createColumnSettings(): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
[x: string]: any;
}>;
}, {}>;
export default HotColumn;
export { HotColumn };

@@ -26,6 +26,6 @@ import { VNode } from 'vue';

getColumnSettings(): HotTableProps[] | void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
[x: string]: any;
}>;
}, {}>;
export default HotTable;
export { HotTable };

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

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

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

function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
function ownKeys(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function (r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread2(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys(Object(t), !0).forEach(function (r) {
_defineProperty(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _toPrimitive(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _toPropertyKey(t) {
var i = _toPrimitive(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _typeof(o) {
"@babel/helpers - typeof";
var Handsontable__default = /*#__PURE__*/_interopDefaultLegacy(Handsontable);
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
return typeof o;
} : function (o) {
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
}, _typeof(o);
}
function _defineProperty(obj, key, value) {
key = _toPropertyKey(key);
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}

@@ -35,5 +90,5 @@ var unassignedPropSymbol = Symbol('unassigned');

function propFactory(source) {
var registeredHooks = Handsontable__default["default"].hooks.getRegistered();
var registeredHooks = Handsontable.hooks.getRegistered();
var propSchema = {};
Object.assign(propSchema, Handsontable__default["default"].DefaultSettings);
Object.assign(propSchema, Handsontable.DefaultSettings);
// eslint-disable-next-line no-restricted-syntax, guard-for-in

@@ -122,6 +177,25 @@ for (var prop in propSchema) {

function simpleEqual(objectA, objectB) {
return JSON.stringify(objectA) === JSON.stringify(objectB);
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-10cbf34-20221130";
var version="0.0.0-next-12340ef-20240409";

@@ -195,3 +269,3 @@ var HotTable = vue.defineComponent({

newSettings.columns = this.columnSettings ? this.columnSettings : newSettings.columns;
this.hotInstance = vue.markRaw(new Handsontable__default["default"].Core(this.$el, newSettings));
this.hotInstance = vue.markRaw(new Handsontable.Core(this.$el, newSettings));
this.hotInstance.init();

@@ -276,37 +350,2 @@ this.miscCache.currentSourceColumns = this.hotInstance.countSourceCols();

function ownKeys(object, enumerableOnly) {
var keys = Object.keys(object);
if (Object.getOwnPropertySymbols) {
var symbols = Object.getOwnPropertySymbols(object);
enumerableOnly && (symbols = symbols.filter(function (sym) {
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
})), keys.push.apply(keys, symbols);
}
return keys;
}
function _objectSpread2(target) {
for (var i = 1; i < arguments.length; i++) {
var source = null != arguments[i] ? arguments[i] : {};
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
_defineProperty(target, key, source[key]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
});
}
return target;
}
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
var HotColumn = vue.defineComponent({

@@ -348,2 +387,2 @@ name: 'HotColumn',

exports.HotTable = HotTable;
exports["default"] = HotTable;
exports.default = HotTable;

@@ -7,6 +7,6 @@ declare const HotColumn: import("vue").DefineComponent<import("./types").VueProps<import("./types").HotTableProps>, unknown, unknown, {}, {

createColumnSettings(): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
[x: string]: any;
}>;
}, {}>;
export default HotColumn;
export { HotColumn };

@@ -26,6 +26,6 @@ import { VNode } from 'vue';

getColumnSettings(): HotTableProps[] | void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
[x: string]: any;
}>;
}, {}>;
export default HotTable;
export { HotTable };

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

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

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

* HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o., a Polish corporation based in
* Gdynia, Poland, at Aleja Zwycięstwa 96-98, registered by the District Court in Gdansk under number
* Gdynia, Poland, at Aleja Zwyciestwa 96-98, registered by the District Court in Gdansk under number
* 538651, EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
*
* This software is protected by applicable copyright laws, including international treaties, and dual-
* licensed – depending on whether your use for commercial purposes, meaning intended for or
* licensed - depending on whether your use for commercial purposes, meaning intended for or
* resulting in commercial advantage or monetary compensation, or not.

@@ -29,3 +29,3 @@ *

*
* Version: 0.0.0-next-10cbf34-20221130 (built at Wed Nov 30 2022 15:15:53 GMT+0000 (Coordinated Universal Time))
* Version: 0.0.0-next-12340ef-20240409 (built at Tue Apr 09 2024 09:01:29 GMT+0000 (Coordinated Universal Time))
*/

@@ -38,5 +38,60 @@ (function (global, factory) {

function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
function ownKeys(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function (r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread2(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys(Object(t), !0).forEach(function (r) {
_defineProperty(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _toPrimitive(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _toPropertyKey(t) {
var i = _toPrimitive(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _typeof(o) {
"@babel/helpers - typeof";
var Handsontable__default = /*#__PURE__*/_interopDefaultLegacy(Handsontable);
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
return typeof o;
} : function (o) {
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
}, _typeof(o);
}
function _defineProperty(obj, key, value) {
key = _toPropertyKey(key);
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}

@@ -65,5 +120,5 @@ var unassignedPropSymbol = Symbol('unassigned');

function propFactory(source) {
var registeredHooks = Handsontable__default["default"].hooks.getRegistered();
var registeredHooks = Handsontable.hooks.getRegistered();
var propSchema = {};
Object.assign(propSchema, Handsontable__default["default"].DefaultSettings);
Object.assign(propSchema, Handsontable.DefaultSettings);
// eslint-disable-next-line no-restricted-syntax, guard-for-in

@@ -152,6 +207,25 @@ for (var prop in propSchema) {

function simpleEqual(objectA, objectB) {
return JSON.stringify(objectA) === JSON.stringify(objectB);
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-10cbf34-20221130";
var version="0.0.0-next-12340ef-20240409";

@@ -225,3 +299,3 @@ var HotTable = vue.defineComponent({

newSettings.columns = this.columnSettings ? this.columnSettings : newSettings.columns;
this.hotInstance = vue.markRaw(new Handsontable__default["default"].Core(this.$el, newSettings));
this.hotInstance = vue.markRaw(new Handsontable.Core(this.$el, newSettings));
this.hotInstance.init();

@@ -306,37 +380,2 @@ this.miscCache.currentSourceColumns = this.hotInstance.countSourceCols();

function ownKeys(object, enumerableOnly) {
var keys = Object.keys(object);
if (Object.getOwnPropertySymbols) {
var symbols = Object.getOwnPropertySymbols(object);
enumerableOnly && (symbols = symbols.filter(function (sym) {
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
})), keys.push.apply(keys, symbols);
}
return keys;
}
function _objectSpread2(target) {
for (var i = 1; i < arguments.length; i++) {
var source = null != arguments[i] ? arguments[i] : {};
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
_defineProperty(target, key, source[key]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
});
}
return target;
}
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
var HotColumn = vue.defineComponent({

@@ -378,3 +417,3 @@ name: 'HotColumn',

exports.HotTable = HotTable;
exports["default"] = HotTable;
exports.default = HotTable;

@@ -381,0 +420,0 @@ Object.defineProperty(exports, '__esModule', { value: true });

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

* HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o., a Polish corporation based in
* Gdynia, Poland, at Aleja Zwycięstwa 96-98, registered by the District Court in Gdansk under number
* Gdynia, Poland, at Aleja Zwyciestwa 96-98, registered by the District Court in Gdansk under number
* 538651, EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
*
* This software is protected by applicable copyright laws, including international treaties, and dual-
* licensed – depending on whether your use for commercial purposes, meaning intended for or
* licensed - depending on whether your use for commercial purposes, meaning intended for or
* resulting in commercial advantage or monetary compensation, or not.

@@ -29,5 +29,5 @@ *

*
* Version: 0.0.0-next-10cbf34-20221130 (built at Wed Nov 30 2022 15:16:02 GMT+0000 (Coordinated Universal Time))
* Version: 0.0.0-next-12340ef-20240409 (built at Tue Apr 09 2024 09:01:33 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 s=o(n),r=Symbol("unassigned");function i(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function a(t){var e=s.default.hooks.getRegistered(),n={};for(var o in Object.assign(n,s.default.DefaultSettings),n)n[o]={default:r};for(var i=0;e.length>i;i++)n[e[i]]={default:r};return n.settings={default:r},"HotTable"===t&&(n.id={type:String,default:"hot-".concat(Math.random().toString(36).substring(5))}),n}function c(t){var e={},n=t.settings;if(n!==r)for(var o in n)i(n,o)&&n[o]!==r&&(e[o]=n[o]);for(var s in t)i(t,s)&&"settings"!==s&&t[s]!==r&&(e[s]=t[s]);return e}function u(t,e){var n=c(t),o=t.settings?t.settings:n,s=t.settings?n:null,r={};for(var a in o)!i(o,a)||void 0===o[a]||e&&"data"!==a&&l(e[a],o[a])||(r[a]=o[a]);for(var u in s)!i(s,u)||"id"===u||"settings"===u||void 0===s[u]||e&&"data"!==u&&l(e[u],s[u])||(r[u]=s[u]);return r}function l(t,e){return JSON.stringify(t)===JSON.stringify(e)}var h=e.defineComponent({name:"HotTable",props:a("HotTable"),provide:function(){return{columnsCache:this.columnsCache}},watch:{$props:{handler:function(t){var e=u(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=u(this.$props);t.columns=this.columnSettings?this.columnSettings:t.columns,this.hotInstance=e.markRaw(new s.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=[],s=[],r=this.hotInstance.rowIndexMapper.getNumberOfIndexes(),i=this.hotInstance.isColumnModificationAllowed(),a=0;if(n&&n.length!==r&&r>n.length)for(var c=n.length;r>c;c++)o.push(c);if(i)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++)s.push(u);this.hotInstance.batch((function(){o.length>0?t.hotInstance.rowIndexMapper.removeIndexes(o):t.hotInstance.rowIndexMapper.insertIndexes(r-1,n.length-r),i&&0!==n.length&&(s.length>0?t.hotInstance.columnIndexMapper.removeIndexes(s):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-10cbf34-20221130"}),d=["id"];function f(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 p(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}h.render=function(t,n,o,s,r,i){return e.openBlock(),e.createElementBlock("div",{id:t.id},[e.renderSlot(t.$slots,"default")],8,d)},h.__file="src/HotTable.vue";var m=e.defineComponent({name:"HotColumn",props:a("HotColumn"),inject:["columnsCache"],methods:{createColumnSettings:function(){var t=c(this.$props),e=function(t){for(var e=1;arguments.length>e;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?f(Object(n),!0).forEach((function(e){p(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):f(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}});m.__file="src/HotColumn.vue",t.HotColumn=m,t.HotTable=h,t.default=h,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,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 r(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 i(t){return i="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},i(t)}function s(t,e,n){return(e=r(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var a=Symbol("unassigned");function c(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function u(t){var e=n.hooks.getRegistered(),o={};for(var r in Object.assign(o,n.DefaultSettings),o)o[r]={default:a};for(var i=0;e.length>i;i++)o[e[i]]={default:a};return o.settings={default:a},"HotTable"===t&&(o.id={type:String,default:"hot-".concat(Math.random().toString(36).substring(5))}),o}function l(t){var e={},n=t.settings;if(n!==a)for(var o in n)c(n,o)&&n[o]!==a&&(e[o]=n[o]);for(var r in t)c(t,r)&&"settings"!==r&&t[r]!==a&&(e[r]=t[r]);return e}function h(t,e){var n=l(t),o=t.settings?t.settings:n,r=t.settings?n:null,i={};for(var s in o)!c(o,s)||void 0===o[s]||e&&"data"!==s&&f(e[s],o[s])||(i[s]=o[s]);for(var a in r)!c(r,a)||"id"===a||"settings"===a||void 0===r[a]||e&&"data"!==a&&f(e[a],r[a])||(i[a]=r[a]);return i}function f(t,e){var n=function(t){var e,n=(e=new WeakSet,function(t,n){if("object"===i(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:i(t)===i(e)&&n(t)===n(e)}var d=e.defineComponent({name:"HotTable",props:u("HotTable"),provide:function(){return{columnsCache:this.columnsCache}},watch:{$props:{handler:function(t){var e=h(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=h(this.$props);t.columns=this.columnSettings?this.columnSettings:t.columns,this.hotInstance=e.markRaw(new n.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-12340ef-20240409"}),p=["id"];d.render=function(t,n,o,r,i,s){return e.openBlock(),e.createElementBlock("div",{id:t.id},[e.renderSlot(t.$slots,"default")],8,p)},d.__file="src/HotTable.vue";var m=e.defineComponent({name:"HotColumn",props:u("HotColumn"),inject:["columnsCache"],methods:{createColumnSettings:function(){var t=l(this.$props),e=function(t){for(var e=1;arguments.length>e;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?o(Object(n),!0).forEach((function(e){s(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):o(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}});m.__file="src/HotColumn.vue",t.HotColumn=m,t.HotTable=d,t.default=d,Object.defineProperty(t,"__esModule",{value:!0})}));
//# sourceMappingURL=vue-handsontable.min.js.map

@@ -7,6 +7,6 @@ declare const HotColumn: import("vue").DefineComponent<import("./types").VueProps<import("./types").HotTableProps>, unknown, unknown, {}, {

createColumnSettings(): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<import("./types").HotTableProps>>>, {
[x: string]: any;
}>;
}, {}>;
export default HotColumn;
export { HotColumn };

@@ -26,6 +26,6 @@ import { VNode } from 'vue';

getColumnSettings(): HotTableProps[] | void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<import("./types").VueProps<HotTableProps>>>, {
[x: string]: any;
}>;
}, {}>;
export default HotTable;
export { HotTable };
Copyright (c) HANDSONCODE sp. z o. o.
HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o., a Polish corporation based in
Gdynia, Poland, at Aleja Zwycięstwa 96-98, registered by the District Court in Gdansk under number
Gdynia, Poland, at Aleja Zwyciestwa 96-98, registered by the District Court in Gdansk under number
538651, EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
This software is protected by applicable copyright laws, including international treaties, and dual-
licensed – depending on whether your use for commercial purposes, meaning intended for or
licensed - depending on whether your use for commercial purposes, meaning intended for or
resulting in commercial advantage or monetary compensation, or not.

@@ -10,0 +10,0 @@

{
"name": "@handsontable/vue3",
"version": "0.0.0-next-10cbf34-20221130",
"version": "0.0.0-next-12340ef-20240409",
"description": "Best Data Grid for Vue with Spreadsheet Look and Feel.",

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

"main": "./commonjs/vue-handsontable.js",
"module": "./es/vue-handsontable.js",
"module": "./es/vue-handsontable.mjs",
"jsdelivr": "./dist/vue-handsontable.min.js",

@@ -18,2 +18,3 @@ "unpkg": "./dist/vue-handsontable.min.js",

".": {
"types": "./index.d.ts",
"import": "./es/vue-handsontable.mjs",

@@ -57,4 +58,4 @@ "require": "./commonjs/vue-handsontable.js"

"peerDependencies": {
"handsontable": "0.0.0-next-10cbf34-20221130",
"vue": "next"
"handsontable": "0.0.0-next-12340ef-20240409",
"vue": "^3.2.22"
},

@@ -75,8 +76,7 @@ "devDependencies": {

"babel-core": "^7.0.0-bridge.0",
"cross-env": "^7.0.0",
"del-cli": "^4.0.1",
"cross-env": "^7.0.3",
"eslint-plugin-vue": "^8.0.3",
"handsontable": "0.0.0-next-10cbf34-20221130",
"handsontable": "0.0.0-next-12340ef-20240409",
"jest": "^26.6.3",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.0.0",

@@ -90,3 +90,3 @@ "rollup-plugin-babel": "^4.3.2",

"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.21.1",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",

@@ -102,11 +102,11 @@ "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:esDts": "cross-env NODE_ENV=esDts rollup -c && del-cli ./buildTemp/",
"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/",
"watch:commonjs": "cross-env NODE_ENV=cjs rollup -c --watch",
"watch:es": "cross-env NODE_ENV=es rollup -c --watch",
"watch:umd": "cross-env NODE_ENV=umd rollup -c --watch",
"clean": "del-cli ./es/ && del-cli ./commonjs/ && del-cli ./dist/ && del-cli ./*.d.ts",
"clean": "rimraf ./es/ && rimraf ./commonjs/ && rimraf ./dist/ && rimraf ./*.d.ts",
"publish-package": "npm publish",

@@ -113,0 +113,0 @@ "test": "jest"

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

}
export declare type VueProps<T> = {
export 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