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

@platform/cell.coord

Package Overview
Dependencies
Maintainers
1
Versions
310
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@platform/cell.coord - npm Package Compare versions

Comparing version 0.5.32 to 0.5.35

9

lib/common/libs.d.ts
/// <reference types="ramda" />
/// <reference types="ts-toolbelt" />
export { value, defaultValue, id } from '@platform/util.value';

@@ -19,5 +20,5 @@ export { MemoryCache } from '@platform/cache';

};
flatten: <T_8>(x: readonly T_8[][] | readonly T_8[] | readonly (readonly T_8[])[]) => T_8[];
flatten: <T_8 extends readonly any[]>(list: T_8) => import("Tuple/Flatten").Flatten<T_8>;
identity: <T_9>(a: T_9) => T_9;
memoizeWith: <T_10 extends (...args: any[]) => any>(keyFn: (...v: Parameters<T_10>) => string, fn: T_10) => T_10;
memoizeWith: <T_10 extends (...args: readonly any[]) => any>(keyFn: (...v: Parameters<T_10>) => string, fn: T_10) => T_10;
prop: {

@@ -30,4 +31,4 @@ <T_11>(__: import("ramda").Placeholder, obj: T_11): <P extends keyof T_11>(p: P) => T_11[P];

sortWith: {
<T_15>(fns: readonly ((a: T_15, b: T_15) => number)[], list: readonly T_15[]): T_15[];
<T_16>(fns: readonly ((a: T_16, b: T_16) => number)[]): (list: readonly T_16[]) => T_16[];
<T_15>(fns: ((a: T_15, b: T_15) => number)[], list: readonly T_15[]): T_15[];
<T_16>(fns: ((a: T_16, b: T_16) => number)[]): (list: readonly T_16[]) => T_16[];
};

@@ -34,0 +35,0 @@ uniq: <T_17>(list: readonly T_17[]) => T_17[];

@@ -24,3 +24,3 @@ import { t } from '../../common';

private constructor();
readonly column: {
get column(): {
readonly left: number;

@@ -30,3 +30,3 @@ readonly right: number;

};
readonly row: {
get row(): {
readonly left: number;

@@ -36,5 +36,5 @@ readonly right: number;

};
readonly keys: string[];
readonly square: CellRange;
readonly is: {
get keys(): string[];
get square(): CellRange;
get is(): {
column: (totalRows: number) => boolean;

@@ -41,0 +41,0 @@ row: (totalColumns: number) => boolean;

@@ -9,12 +9,12 @@ import { t } from '../../common';

readonly ranges: CellRange[];
readonly column: {
get column(): {
readonly keys: string[];
};
readonly row: {
get row(): {
readonly keys: string[];
};
readonly length: number;
readonly key: string;
readonly keys: string[];
readonly square: CellRange | undefined;
get length(): number;
get key(): string;
get keys(): string[];
get square(): CellRange | undefined;
contains(cell: t.ICoordPosition | string): boolean;

@@ -21,0 +21,0 @@ edge(cell: string | t.ICoordPosition): t.CoordEdge[];

@@ -105,3 +105,3 @@ "use strict";

type: 'REF/circular',
message: "The cell " + cell_1.cell + " contains a circular reference (" + path + ").",
message: "The cell " + key + " contains a circular reference (" + path + ").",
path: path,

@@ -108,0 +108,0 @@ };

{
"name": "@platform/cell.coord",
"version": "0.5.32",
"version": "0.5.35",
"description": "Data types for working with grid cell cooridnates (eg 'A1').",

@@ -15,6 +15,6 @@ "main": "lib/index",

"dependencies": {
"@platform/cache": "0.2.0",
"@platform/cell.types": "0.1.1",
"@platform/types": "0.0.32",
"@platform/util.value": "0.5.5",
"@platform/cache": "0.2.3",
"@platform/cell.types": "0.1.4",
"@platform/types": "0.0.35",
"@platform/util.value": "0.5.8",
"excel-formula-ast": "1.1.1",

@@ -25,4 +25,4 @@ "excel-formula-tokenizer": "2.3.0",

"devDependencies": {
"@platform/test": "0.0.64",
"@platform/ts": "3.5.6"
"@platform/test": "0.0.65",
"@platform/ts": "3.7.0"
},

@@ -29,0 +29,0 @@ "files": [

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