@infinite-table/infinite-react 5.0.0-canary.5 → 5.0.0-canary.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.dev.js +14 -10
- package/index.dev.mjs +14 -10
- package/index.js +14 -10
- package/index.mjs +14 -10
- package/package.json +2 -2
package/index.dev.js
CHANGED
|
@@ -8295,15 +8295,19 @@ function getColumnRenderingParams(options) {
|
|
|
8295
8295
|
columnId: column.id,
|
|
8296
8296
|
rowIndex: rowInfo.indexInAll
|
|
8297
8297
|
});
|
|
8298
|
-
const stylingParam =
|
|
8299
|
-
|
|
8300
|
-
|
|
8301
|
-
|
|
8302
|
-
|
|
8303
|
-
|
|
8304
|
-
|
|
8305
|
-
|
|
8306
|
-
|
|
8298
|
+
const stylingParam = Object.assign(
|
|
8299
|
+
{
|
|
8300
|
+
rowIndexInHorizontalLayoutPage: options.rowIndexInHorizontalLayoutPage,
|
|
8301
|
+
horizontalLayoutPageIndex: options.horizontalLayoutPageIndex,
|
|
8302
|
+
column: options.column,
|
|
8303
|
+
inEdit,
|
|
8304
|
+
rowHasSelectedCells: false
|
|
8305
|
+
},
|
|
8306
|
+
formattedValueContext,
|
|
8307
|
+
{
|
|
8308
|
+
editError: editingCell && editingCell.primaryKey === rowInfo.id && editingCell.columnId === column.id && !editingCell.active && editingCell.accepted instanceof Error ? editingCell.accepted : void 0
|
|
8309
|
+
}
|
|
8310
|
+
);
|
|
8307
8311
|
Object.defineProperty(stylingParam, "rowHasSelectedCells", {
|
|
8308
8312
|
get() {
|
|
8309
8313
|
return rowInfo.hasSelectedCells(visibleColumnsIds);
|
|
@@ -19863,7 +19867,7 @@ var useLicense = (licenseKey = "") => {
|
|
|
19863
19867
|
}
|
|
19864
19868
|
let valid2 = isValidLicense(licenseKey, {
|
|
19865
19869
|
publishedAt: 1624970570587,
|
|
19866
|
-
version: "5.0.0-canary.
|
|
19870
|
+
version: "5.0.0-canary.6"
|
|
19867
19871
|
});
|
|
19868
19872
|
if (!licenseKey && !valid2 && isInsidePlayground) {
|
|
19869
19873
|
return true;
|
package/index.dev.mjs
CHANGED
|
@@ -8252,15 +8252,19 @@ function getColumnRenderingParams(options) {
|
|
|
8252
8252
|
columnId: column.id,
|
|
8253
8253
|
rowIndex: rowInfo.indexInAll
|
|
8254
8254
|
});
|
|
8255
|
-
const stylingParam =
|
|
8256
|
-
|
|
8257
|
-
|
|
8258
|
-
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
|
|
8255
|
+
const stylingParam = Object.assign(
|
|
8256
|
+
{
|
|
8257
|
+
rowIndexInHorizontalLayoutPage: options.rowIndexInHorizontalLayoutPage,
|
|
8258
|
+
horizontalLayoutPageIndex: options.horizontalLayoutPageIndex,
|
|
8259
|
+
column: options.column,
|
|
8260
|
+
inEdit,
|
|
8261
|
+
rowHasSelectedCells: false
|
|
8262
|
+
},
|
|
8263
|
+
formattedValueContext,
|
|
8264
|
+
{
|
|
8265
|
+
editError: editingCell && editingCell.primaryKey === rowInfo.id && editingCell.columnId === column.id && !editingCell.active && editingCell.accepted instanceof Error ? editingCell.accepted : void 0
|
|
8266
|
+
}
|
|
8267
|
+
);
|
|
8264
8268
|
Object.defineProperty(stylingParam, "rowHasSelectedCells", {
|
|
8265
8269
|
get() {
|
|
8266
8270
|
return rowInfo.hasSelectedCells(visibleColumnsIds);
|
|
@@ -19829,7 +19833,7 @@ var useLicense = (licenseKey = "") => {
|
|
|
19829
19833
|
}
|
|
19830
19834
|
let valid2 = isValidLicense(licenseKey, {
|
|
19831
19835
|
publishedAt: 1624970570587,
|
|
19832
|
-
version: "5.0.0-canary.
|
|
19836
|
+
version: "5.0.0-canary.6"
|
|
19833
19837
|
});
|
|
19834
19838
|
if (!licenseKey && !valid2 && isInsidePlayground) {
|
|
19835
19839
|
return true;
|
package/index.js
CHANGED
|
@@ -8295,15 +8295,19 @@ function getColumnRenderingParams(options) {
|
|
|
8295
8295
|
columnId: column.id,
|
|
8296
8296
|
rowIndex: rowInfo.indexInAll
|
|
8297
8297
|
});
|
|
8298
|
-
const stylingParam =
|
|
8299
|
-
|
|
8300
|
-
|
|
8301
|
-
|
|
8302
|
-
|
|
8303
|
-
|
|
8304
|
-
|
|
8305
|
-
|
|
8306
|
-
|
|
8298
|
+
const stylingParam = Object.assign(
|
|
8299
|
+
{
|
|
8300
|
+
rowIndexInHorizontalLayoutPage: options.rowIndexInHorizontalLayoutPage,
|
|
8301
|
+
horizontalLayoutPageIndex: options.horizontalLayoutPageIndex,
|
|
8302
|
+
column: options.column,
|
|
8303
|
+
inEdit,
|
|
8304
|
+
rowHasSelectedCells: false
|
|
8305
|
+
},
|
|
8306
|
+
formattedValueContext,
|
|
8307
|
+
{
|
|
8308
|
+
editError: editingCell && editingCell.primaryKey === rowInfo.id && editingCell.columnId === column.id && !editingCell.active && editingCell.accepted instanceof Error ? editingCell.accepted : void 0
|
|
8309
|
+
}
|
|
8310
|
+
);
|
|
8307
8311
|
Object.defineProperty(stylingParam, "rowHasSelectedCells", {
|
|
8308
8312
|
get() {
|
|
8309
8313
|
return rowInfo.hasSelectedCells(visibleColumnsIds);
|
|
@@ -19863,7 +19867,7 @@ var useLicense = (licenseKey = "") => {
|
|
|
19863
19867
|
}
|
|
19864
19868
|
let valid2 = isValidLicense(licenseKey, {
|
|
19865
19869
|
publishedAt: 1624970570587,
|
|
19866
|
-
version: "5.0.0-canary.
|
|
19870
|
+
version: "5.0.0-canary.6"
|
|
19867
19871
|
});
|
|
19868
19872
|
if (!licenseKey && !valid2 && isInsidePlayground) {
|
|
19869
19873
|
return true;
|
package/index.mjs
CHANGED
|
@@ -8252,15 +8252,19 @@ function getColumnRenderingParams(options) {
|
|
|
8252
8252
|
columnId: column.id,
|
|
8253
8253
|
rowIndex: rowInfo.indexInAll
|
|
8254
8254
|
});
|
|
8255
|
-
const stylingParam =
|
|
8256
|
-
|
|
8257
|
-
|
|
8258
|
-
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
|
|
8255
|
+
const stylingParam = Object.assign(
|
|
8256
|
+
{
|
|
8257
|
+
rowIndexInHorizontalLayoutPage: options.rowIndexInHorizontalLayoutPage,
|
|
8258
|
+
horizontalLayoutPageIndex: options.horizontalLayoutPageIndex,
|
|
8259
|
+
column: options.column,
|
|
8260
|
+
inEdit,
|
|
8261
|
+
rowHasSelectedCells: false
|
|
8262
|
+
},
|
|
8263
|
+
formattedValueContext,
|
|
8264
|
+
{
|
|
8265
|
+
editError: editingCell && editingCell.primaryKey === rowInfo.id && editingCell.columnId === column.id && !editingCell.active && editingCell.accepted instanceof Error ? editingCell.accepted : void 0
|
|
8266
|
+
}
|
|
8267
|
+
);
|
|
8264
8268
|
Object.defineProperty(stylingParam, "rowHasSelectedCells", {
|
|
8265
8269
|
get() {
|
|
8266
8270
|
return rowInfo.hasSelectedCells(visibleColumnsIds);
|
|
@@ -19829,7 +19833,7 @@ var useLicense = (licenseKey = "") => {
|
|
|
19829
19833
|
}
|
|
19830
19834
|
let valid2 = isValidLicense(licenseKey, {
|
|
19831
19835
|
publishedAt: 1624970570587,
|
|
19832
|
-
version: "5.0.0-canary.
|
|
19836
|
+
version: "5.0.0-canary.6"
|
|
19833
19837
|
});
|
|
19834
19838
|
if (!licenseKey && !valid2 && isInsidePlayground) {
|
|
19835
19839
|
return true;
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"bugs": {
|
|
26
26
|
"url": "https://github.com/infinite-table/infinite-react/issues"
|
|
27
27
|
},
|
|
28
|
-
"version": "5.0.0-canary.
|
|
28
|
+
"version": "5.0.0-canary.6",
|
|
29
29
|
"main": "index.js",
|
|
30
30
|
"module": "index.mjs",
|
|
31
31
|
"typings": "index.d.ts",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
},
|
|
35
35
|
"license": "Commercial & Open Source",
|
|
36
36
|
"//": "will be updated at build time",
|
|
37
|
-
"publishedAt":
|
|
37
|
+
"publishedAt": 1727301903777
|
|
38
38
|
}
|