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

@saltcorn/markup

Package Overview
Dependencies
Maintainers
1
Versions
405
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@saltcorn/markup - npm Package Compare versions

Comparing version 0.5.4-beta.1 to 0.5.4

2

package.json
{
"name": "@saltcorn/markup",
"version": "0.5.4-beta.1",
"version": "0.5.4",
"description": "Markup for Saltcorn, open-source no-code platform",

@@ -5,0 +5,0 @@ "homepage": "https://saltcorn.com",

@@ -20,4 +20,8 @@ const { contract, is } = require("contractis");

th(
!!hdr.align && { style: "text-align:" + hdr.align },
!!hdr.sortlink ? a({ href: hdr.sortlink }, hdr.label) : hdr.label
(hdr.align || hdr.width) && {
style:
(hdr.align ? `text-align: ` + hdr.align : "") +
(hdr.width ? `width: ` + hdr.width : ""),
},
hdr.sortlink ? a({ href: hdr.sortlink }, hdr.label) : hdr.label
);

@@ -54,2 +58,3 @@

opts.class,
hdrs.some((h) => h.width) && "table-layout-fixed",
(opts.onRowSelect || (opts.hover && vs && vs.length > 1)) &&

@@ -56,0 +61,0 @@ "table-hover",

@@ -71,2 +71,4 @@ const xss = require("xss");

p: mkTag("p"),
colgroup: mkTag("colgroup"),
col: mkTag("col", true),
table: mkTag("table"),

@@ -73,0 +75,0 @@ img: mkTag("img"),

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