New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

uxcore-table

Package Overview
Dependencies
Maintainers
3
Versions
299
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uxcore-table - npm Package Compare versions

Comparing version 1.8.0 to 1.8.1

5

build/Header/index.js

@@ -229,7 +229,8 @@ 'use strict';

} else {
var title = typeof item.title === 'function' ? item.title() : item.title;
var content = typeof item.title === 'function' ? item.title() : item.title;
var title = typeof item.title === 'function' ? undefined : item.title;
_v = React.createElement(
'span',
{ title: title },
title
content
);

@@ -236,0 +237,0 @@ }

4

HISTORY.md

@@ -5,2 +5,6 @@ # History

## 1.8.1
* `FIX` fix header title bug when column.title is a function.
## 1.8.0

@@ -7,0 +11,0 @@

{
"name": "uxcore-table",
"version": "1.8.0",
"version": "1.8.1",
"description": "table ui component for react",

@@ -5,0 +5,0 @@ "repository": "https://github.com/uxcore/uxcore-table.git",

@@ -194,4 +194,5 @@ /**

} else {
const title = (typeof item.title === 'function') ? item.title() : item.title;
_v = <span title={title}>{title}</span>;
const content = (typeof item.title === 'function') ? item.title() : item.title;
const title = (typeof item.title === 'function') ? undefined : item.title;
_v = <span title={title}>{content}</span>;
}

@@ -198,0 +199,0 @@

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