Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@emdaer/plugin-table

Package Overview
Dependencies
Maintainers
4
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@emdaer/plugin-table - npm Package Compare versions

Comparing version
1.0.0
to
1.2.1
+8
-0
CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

<a name="1.2.1"></a>
## [1.2.1](https://github.com/emdaer/emdaer/compare/v1.2.0...v1.2.1) (2017-10-30)
**Note:** Version bump only for package @emdaer/plugin-table
<a name="1.0.0"></a>

@@ -8,0 +16,0 @@ # [1.0.0](https://github.com/emdaer/emdaer/compare/v1.0.0-beta.2...v1.0.0) (2017-10-29)

+4
-4

@@ -6,6 +6,6 @@ /* */

*
* @param options
* @param {Array<string>} [options.headers] The headers of the table
* @param {Array<Array<string>>} [options.rows] The rows of the table
* @returns {Promise<string>} The table element
* @param options
* @param {Array<string>} [options.headers] The headers of the table
* @param {Array<Array<string>>} [options.rows] The rows and cells of the table
* @returns {Promise<string>} The HTML table element
*/

@@ -12,0 +12,0 @@ async function tablePlugin({

{
"name": "@emdaer/plugin-table",
"description": "an emdaer plugin to generate tables",
"version": "1.0.0",
"description": "An emdaer plugin that renders HTML tables",
"version": "1.2.1",
"repository": "emdaer/emdaer",

@@ -6,0 +6,0 @@ "homepage": "https://emdaer.me/",

@@ -9,3 +9,3 @@ <!--

an emdaer plugin to generate tables
An emdaer plugin that renders HTML tables

@@ -22,5 +22,5 @@ <!-- Generated by documentation.js. Update this documentation by updating the source code. -->

- `options.headers` **[Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array)&lt;[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)>?** The headers of the table
- `options.rows` **[Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array)&lt;[Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array)&lt;[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)>>?** The rows of the table
- `options.rows` **[Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array)&lt;[Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array)&lt;[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)>>?** The rows and cells of the table
Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)>** The table element
Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)>** The HTML table element

@@ -6,6 +6,6 @@ /* @flow */

*
* @param options
* @param {Array<string>} [options.headers] The headers of the table
* @param {Array<Array<string>>} [options.rows] The rows of the table
* @returns {Promise<string>} The table element
* @param options
* @param {Array<string>} [options.headers] The headers of the table
* @param {Array<Array<string>>} [options.rows] The rows and cells of the table
* @returns {Promise<string>} The HTML table element
*/

@@ -12,0 +12,0 @@ async function tablePlugin({