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

@glideapps/glide-data-grid

Package Overview
Dependencies
Maintainers
8
Versions
294
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@glideapps/glide-data-grid - npm Package Compare versions

Comparing version 5.3.1 to 5.3.2

2

package.json
{
"name": "@glideapps/glide-data-grid",
"version": "5.3.1",
"version": "5.3.2",
"description": "React data grid for beautifully displaying and editing large amounts of data with amazing performance.",

@@ -5,0 +5,0 @@ "sideEffects": [

@@ -85,2 +85,23 @@ /* eslint-disable sonarjs/no-duplicate-string */

test("Simple text cell with multiple spaces", () => {
const cells: GridCell[][] = [
[
{
kind: GridCellKind.Text,
data: "Hello",
allowOverlay: true,
displayData: "Display Hello",
},
],
];
const columnIndexes = [0];
const result = getCopyBufferContents(cells, columnIndexes);
expect(result.textPlain).toBe("Display Hello");
expect(result.textHtml).toContain(
'<td gdg-raw-value="Hello" gdg-format="string">Display<span> </span><span> </span>Hello</td>'
);
});
test("Simple text cell with special chars", () => {

@@ -87,0 +108,0 @@ const cells: GridCell[][] = [

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

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