Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hashicorp/react-basic-table

Package Overview
Dependencies
Maintainers
17
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hashicorp/react-basic-table - npm Package Compare versions

Comparing version 2.0.2 to 2.0.3-alpha.0

11

dist/index.js

@@ -7,9 +7,12 @@ 'use strict';

var fragment = "fragment basicTableFields on BasicTableRecord {\n headline\n rows {\n id\n timeSlot\n description\n }\n}\n";
var fragment = "fragment basicTableSectionFields on BasicTableRecord {\n headline\n rows {\n id\n timeSlot\n description\n }\n}\n";
function BasicTable(_ref) {
var rows = _ref.data.rows;
var headline = _ref.headline,
rows = _ref.rows;
return React.createElement("div", {
className: "g-basic-table"
}, React.createElement("ul", null, rows.map(function (row) {
}, React.createElement("h4", {
className: "g-type-display-4"
}, headline), React.createElement("ul", null, rows.map(function (row) {
return React.createElement("li", {

@@ -21,3 +24,3 @@ key: "row-".concat(row.id)

BasicTable.fragment = {
BasicTable.fragmentSpec = {
fragment: fragment

@@ -24,0 +27,0 @@ };

{
"name": "@hashicorp/react-basic-table",
"description": "simple table",
"version": "2.0.2",
"version": "2.0.3-alpha.0+81e5d483",
"author": "Hashicorp - Jeff Escalante",

@@ -17,3 +17,3 @@ "license": "MPL-2.0",

},
"gitHead": "24f6d0aae825fd9a6275d53f8165ff40085409c7"
"gitHead": "81e5d48333a50619d437b09f8d910cbf5f3a8f78"
}

@@ -7,4 +7,5 @@ # Basic List

- `_data` (arr) - array of data from the CMS
- `headline` (str) - Headline displayed before the table
- `rows` (arr) - each row to be rendered in the table
- `description` (str)
- `time_slot` (str)
- `timeSlot` (str)

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc