Socket
Socket
Sign inDemoInstall

jexcel

Package Overview
Dependencies
1
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.4.1 to 4.5.0

27

package.json

@@ -7,21 +7,7 @@ {

"type": "git",
"url": "https://github.com/paulhodel/jexcel.git"
"url": "https://github.com/jspreadsheet/jexcel.git"
},
"author": {
"name": "Paul Hodel <paul.hodel@gmail.com>",
"url": "https://www.linkedin.com/in/paulhodel"
"name": "Contact <contact@jspreadsheet.net>"
},
"maintainers": [
{
"name": "Paul Hodel",
"email": "paul.hodel@gmail.com",
"url": "http://paulhodel.com"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/paulhodel/jexcel/blob/master/LICENSE"
}
],
"keywords": [

@@ -42,7 +28,6 @@ "spreadsheet",

"main": "dist/jexcel.js",
"version": "4.4.1",
"bugs": "https://github.com/paulhodel/jexcel/issues",
"homepage": "https://github.com/paulhodel/jexcel",
"docs": "https://bossanova.uk/jexcel/v4",
"download": "https://github.com/paulhodel/jexcel/archive/master.zip"
"version": "4.5.0",
"bugs": "https://github.com/jspreadsheet/jexcel/issues",
"homepage": "https://github.com/jspreadsheet/jexcel",
"download": "https://github.com/jspreadsheet/jexcel/archive/master.zip"
}

@@ -1,2 +0,2 @@

![The JavaScript spreadsheet](https://bossanova.uk/templates/default/img/logo-jexcel.png)
![The JavaScript spreadsheet](https://bossanova.uk/templates/jexcel-v4/img/logo.png)

@@ -25,3 +25,3 @@ [**jExcel CE**](https://bossanova.uk/jexcel/v4/) is a lightweight Vanilla JavaScript plugin to create amazing web-based interactive HTML tables and spreadsheets compatible

![The JavaScript spreadsheet](https://bossanova.uk/templates/default/img/jexcel.gif)
![The JavaScript spreadsheet](https://bossanova.uk/templates/jexcel-v2/img/jexcel.gif)

@@ -33,3 +33,3 @@

[Download ZIP](https://github.com/paulhodel/jexcel/archive/master.zip)
[Download ZIP](https://github.com/jspreadsheet/ce/archive/master.zip)

@@ -42,4 +42,4 @@ ### Basic demo

<script src="https://bossanova.uk/jexcel/v4/jexcel.js"></script>
<script src="https://bossanova.uk/jsuites/v2/jsuites.js"></script>
<link rel="stylesheet" href="https://bossanova.uk/jsuites/v2/jsuites.css" type="text/css" />
<script src="https://bossanova.uk/jsuites/v3/jsuites.js"></script>
<link rel="stylesheet" href="https://bossanova.uk/jsuites/v3/jsuites.css" type="text/css" />
<link rel="stylesheet" href="https://bossanova.uk/jexcel/v4/jexcel.css" type="text/css" />

@@ -251,4 +251,7 @@ ```

- [jExcel Pro v7 - Javascript Spreasheet](https://jexcel.net/v7)
- [jExcel Pro v5 - Javascript Spreasheet](https://jexcel.net/v5)
## Community
- [GitHub](https://github.com/paulhodel/jexcel/issues)
- [GitHub](https://github.com/jspreadsheet/ce/issues)

@@ -267,5 +270,5 @@ ## Compilation

## Copyright and license
jExcel CE is released under the [MIT license]. Copyrights belong to Paul Hodel <paul.hodel@gmail.com>
jExcel CE is released under the [MIT license]. Contact <contact@jspreadsheet.com>
## Other tools by the author
## Other interesting tools
- [jSuites JavaScriptWeb Components](https://bossanova.uk/jsuites)

@@ -356,3 +356,3 @@ /**

options.columns[i].width = width + 'px';
options.columns[i].title = header.innerText;
options.columns[i].title = header.innerHTML;
options.columns[i].align = header.style.textAlign || 'center';

@@ -394,3 +394,3 @@ }

} else {
var value = content[j].children[i].innerText;
var value = content[j].children[i].innerHTML;
}

@@ -397,0 +397,0 @@ options.data[rowNumber].push(value);

@@ -10,3 +10,3 @@ # Javascript webcomponent online spreadsheet

```
class Jexcel extends HTMLElement {
class Jspreadsheet extends HTMLElement {
constructor() {

@@ -21,13 +21,13 @@ super();

// Style
const cssJexcel = document.createElement('link');
cssJexcel.rel = 'stylesheet';
cssJexcel.type = 'text/css'
cssJexcel.href = 'https://bossanova.uk/jexcel/v4/jexcel.css';
shadowRoot.appendChild(cssJexcel);
const css = document.createElement('link');
css.rel = 'stylesheet';
css.type = 'text/css'
css.href = 'https://bossanova.uk/jexcel/v4/jexcel.css';
shadowRoot.appendChild(css);
const cssJsuites = document.createElement('link');
cssJsuites.rel = 'stylesheet';
cssJsuites.type = 'text/css'
cssJsuites.href = 'https://bossanova.uk/jexcel/v4/jsuites.css';
shadowRoot.appendChild(cssJsuites);
const css2 = document.createElement('link');
css2.rel = 'stylesheet';
css2.type = 'text/css'
css2.href = 'https://bossanova.uk/jexcel/v4/jsuites.css';
shadowRoot.appendChild(css2);

@@ -38,3 +38,3 @@ // Jexcel container

// Create jexcel element
// Create element
this.el = jexcel(container, {

@@ -57,3 +57,3 @@ root: shadowRoot,

window.customElements.define('jexcel-spreadsheet', Jexcel);
window.customElements.define('j-spreadsheet', Jspreadsheet);
```

@@ -65,8 +65,8 @@

<script type="text/javascript" src="/jexcel/v4/jexcel.js"></script>
<script type="text/javascript" src="/jsuites/v2/jsuites.js"></script>
<script type="text/javascript" src="/jsuites/v3/jsuites.js"></script>
<script type="text/javascript" src="/jexcel/v4/jexcel.webcomponent.js"></script>
<jexcel-spreadsheet></jexcel-spreadsheet>
<j-spreadsheet></j-spreadsheet>
</html>
```

@@ -10,6 +10,6 @@ #Jexcel as a webcomponent

<script type="text/javascript" src="/jsuites/v2/jsuites.js"></script>
<script type="text/javascript" src="/jsuites/v3/jsuites.js"></script>
<!-- The configuration goes as a inline JSON string -->
<jexcel-spreadsheet>
<j-spreadsheet>
{

@@ -24,3 +24,3 @@ "minDimensions": [10,10],

}
</jexcel-spreadsheet>
</j-spreadsheet>

@@ -27,0 +27,0 @@

Sorry, the diff of this file is too big to display

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 too big to display

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