@genesislcap/g2plot-chart 14.488.2 → 14.489.0-canary.FUI-2574-1
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/dist/custom-elements.json +133 -4
- package/package.json +14 -14
|
@@ -779,11 +779,11 @@
|
|
|
779
779
|
"type": {
|
|
780
780
|
"text": "string"
|
|
781
781
|
},
|
|
782
|
+
"description": "This option can be used to select a Data Server index (defined in the Data Server query),\nwhich is especially useful if you want the data to be sorted in a specific way. By default,\nData Server rows are returned in order of creation (from oldest database record to newest).",
|
|
782
783
|
"inheritedFrom": {
|
|
783
784
|
"name": "BaseDatasource",
|
|
784
785
|
"module": "src/utils/base-datasource.ts"
|
|
785
786
|
},
|
|
786
|
-
"description": "This option can be used to select a Data Server index (defined in the Data Server query),\nwhich is especially useful if you want the data to be sorted in a specific way. By default,\nData Server rows are returned in order of creation (from oldest database record to newest).",
|
|
787
787
|
"privacy": "public"
|
|
788
788
|
},
|
|
789
789
|
{
|
|
@@ -1299,7 +1299,35 @@
|
|
|
1299
1299
|
"type": {
|
|
1300
1300
|
"text": "string"
|
|
1301
1301
|
},
|
|
1302
|
-
"privacy": "
|
|
1302
|
+
"privacy": "protected",
|
|
1303
|
+
"inheritedFrom": {
|
|
1304
|
+
"name": "BaseDatasource",
|
|
1305
|
+
"module": "src/utils/base-datasource.ts"
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"kind": "field",
|
|
1310
|
+
"name": "moreRowsAvailable",
|
|
1311
|
+
"type": {
|
|
1312
|
+
"text": "boolean"
|
|
1313
|
+
},
|
|
1314
|
+
"privacy": "protected",
|
|
1315
|
+
"default": "false",
|
|
1316
|
+
"description": "Whether the server reported more rows are available beyond the ones already fetched.",
|
|
1317
|
+
"inheritedFrom": {
|
|
1318
|
+
"name": "BaseDatasource",
|
|
1319
|
+
"module": "src/utils/base-datasource.ts"
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"kind": "field",
|
|
1324
|
+
"name": "nextRequestOffset",
|
|
1325
|
+
"type": {
|
|
1326
|
+
"text": "number"
|
|
1327
|
+
},
|
|
1328
|
+
"privacy": "protected",
|
|
1329
|
+
"default": "0",
|
|
1330
|
+
"description": "The OFFSET to request the next page from, for REQUEST_SERVER paging.",
|
|
1303
1331
|
"inheritedFrom": {
|
|
1304
1332
|
"name": "BaseDatasource",
|
|
1305
1333
|
"module": "src/utils/base-datasource.ts"
|
|
@@ -1402,6 +1430,107 @@
|
|
|
1402
1430
|
"module": "src/utils/base-datasource.ts"
|
|
1403
1431
|
}
|
|
1404
1432
|
},
|
|
1433
|
+
{
|
|
1434
|
+
"kind": "method",
|
|
1435
|
+
"name": "canRequestMoreRows",
|
|
1436
|
+
"privacy": "public",
|
|
1437
|
+
"return": {
|
|
1438
|
+
"type": {
|
|
1439
|
+
"text": "boolean"
|
|
1440
|
+
}
|
|
1441
|
+
},
|
|
1442
|
+
"description": "Whether a further page of rows can be requested from the server.",
|
|
1443
|
+
"inheritedFrom": {
|
|
1444
|
+
"name": "BaseDatasource",
|
|
1445
|
+
"module": "src/utils/base-datasource.ts"
|
|
1446
|
+
}
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
"kind": "method",
|
|
1450
|
+
"name": "requestMoreRows",
|
|
1451
|
+
"privacy": "public",
|
|
1452
|
+
"return": {
|
|
1453
|
+
"type": {
|
|
1454
|
+
"text": "Promise<void>"
|
|
1455
|
+
}
|
|
1456
|
+
},
|
|
1457
|
+
"description": "Requests the next page of rows (up to `maxRows`) from the server.",
|
|
1458
|
+
"inheritedFrom": {
|
|
1459
|
+
"name": "BaseDatasource",
|
|
1460
|
+
"module": "src/utils/base-datasource.ts"
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"kind": "method",
|
|
1465
|
+
"name": "filterSnapshotResult",
|
|
1466
|
+
"privacy": "private",
|
|
1467
|
+
"return": {
|
|
1468
|
+
"type": {
|
|
1469
|
+
"text": "any[] | undefined"
|
|
1470
|
+
}
|
|
1471
|
+
},
|
|
1472
|
+
"parameters": [
|
|
1473
|
+
{
|
|
1474
|
+
"name": "result",
|
|
1475
|
+
"type": {
|
|
1476
|
+
"text": "Message | any[]"
|
|
1477
|
+
}
|
|
1478
|
+
}
|
|
1479
|
+
],
|
|
1480
|
+
"description": "Row extraction identical to `Datasource.snapshotFiltered`, kept local so the raw\nresponse (with MORE_ROWS/NEXT_OFFSET paging metadata) remains available.",
|
|
1481
|
+
"inheritedFrom": {
|
|
1482
|
+
"name": "BaseDatasource",
|
|
1483
|
+
"module": "src/utils/base-datasource.ts"
|
|
1484
|
+
}
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"kind": "method",
|
|
1488
|
+
"name": "updateRequestPagingState",
|
|
1489
|
+
"privacy": "private",
|
|
1490
|
+
"return": {
|
|
1491
|
+
"type": {
|
|
1492
|
+
"text": "void"
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
"parameters": [
|
|
1496
|
+
{
|
|
1497
|
+
"name": "result",
|
|
1498
|
+
"type": {
|
|
1499
|
+
"text": "Message | any[]"
|
|
1500
|
+
}
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
"name": "rowCount",
|
|
1504
|
+
"type": {
|
|
1505
|
+
"text": "number"
|
|
1506
|
+
}
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"name": "requestedOffset",
|
|
1510
|
+
"type": {
|
|
1511
|
+
"text": "number"
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
],
|
|
1515
|
+
"inheritedFrom": {
|
|
1516
|
+
"name": "BaseDatasource",
|
|
1517
|
+
"module": "src/utils/base-datasource.ts"
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"kind": "method",
|
|
1522
|
+
"name": "initialRequestOffset",
|
|
1523
|
+
"privacy": "private",
|
|
1524
|
+
"return": {
|
|
1525
|
+
"type": {
|
|
1526
|
+
"text": "number"
|
|
1527
|
+
}
|
|
1528
|
+
},
|
|
1529
|
+
"inheritedFrom": {
|
|
1530
|
+
"name": "BaseDatasource",
|
|
1531
|
+
"module": "src/utils/base-datasource.ts"
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1405
1534
|
{
|
|
1406
1535
|
"kind": "method",
|
|
1407
1536
|
"name": "datasourceOptions",
|
|
@@ -1843,12 +1972,12 @@
|
|
|
1843
1972
|
"type": {
|
|
1844
1973
|
"text": "string"
|
|
1845
1974
|
},
|
|
1975
|
+
"description": "This option can be used to select a Data Server index (defined in the Data Server query),\nwhich is especially useful if you want the data to be sorted in a specific way. By default,\nData Server rows are returned in order of creation (from oldest database record to newest).",
|
|
1846
1976
|
"fieldName": "orderBy",
|
|
1847
1977
|
"inheritedFrom": {
|
|
1848
1978
|
"name": "BaseDatasource",
|
|
1849
1979
|
"module": "src/utils/base-datasource.ts"
|
|
1850
|
-
}
|
|
1851
|
-
"description": "This option can be used to select a Data Server index (defined in the Data Server query),\nwhich is especially useful if you want the data to be sorted in a specific way. By default,\nData Server rows are returned in order of creation (from oldest database record to newest)."
|
|
1980
|
+
}
|
|
1852
1981
|
},
|
|
1853
1982
|
{
|
|
1854
1983
|
"type": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/g2plot-chart",
|
|
3
3
|
"description": "Genesis G2plot Chart",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.489.0-canary.FUI-2574-1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -53,21 +53,21 @@
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@genesislcap/foundation-testing": "14.
|
|
57
|
-
"@genesislcap/genx": "14.
|
|
58
|
-
"@genesislcap/rollup-builder": "14.
|
|
59
|
-
"@genesislcap/ts-builder": "14.
|
|
60
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
61
|
-
"@genesislcap/vite-builder": "14.
|
|
62
|
-
"@genesislcap/webpack-builder": "14.
|
|
56
|
+
"@genesislcap/foundation-testing": "14.489.0-canary.FUI-2574-1",
|
|
57
|
+
"@genesislcap/genx": "14.489.0-canary.FUI-2574-1",
|
|
58
|
+
"@genesislcap/rollup-builder": "14.489.0-canary.FUI-2574-1",
|
|
59
|
+
"@genesislcap/ts-builder": "14.489.0-canary.FUI-2574-1",
|
|
60
|
+
"@genesislcap/uvu-playwright-builder": "14.489.0-canary.FUI-2574-1",
|
|
61
|
+
"@genesislcap/vite-builder": "14.489.0-canary.FUI-2574-1",
|
|
62
|
+
"@genesislcap/webpack-builder": "14.489.0-canary.FUI-2574-1"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@antv/g2plot": "^2.4.32",
|
|
66
|
-
"@genesislcap/foundation-comms": "14.
|
|
67
|
-
"@genesislcap/foundation-logger": "14.
|
|
68
|
-
"@genesislcap/foundation-ui": "14.
|
|
69
|
-
"@genesislcap/foundation-utils": "14.
|
|
70
|
-
"@genesislcap/foundation-zero": "14.
|
|
66
|
+
"@genesislcap/foundation-comms": "14.489.0-canary.FUI-2574-1",
|
|
67
|
+
"@genesislcap/foundation-logger": "14.489.0-canary.FUI-2574-1",
|
|
68
|
+
"@genesislcap/foundation-ui": "14.489.0-canary.FUI-2574-1",
|
|
69
|
+
"@genesislcap/foundation-utils": "14.489.0-canary.FUI-2574-1",
|
|
70
|
+
"@genesislcap/foundation-zero": "14.489.0-canary.FUI-2574-1",
|
|
71
71
|
"@microsoft/fast-element": "1.14.0",
|
|
72
72
|
"@microsoft/fast-foundation": "2.50.0"
|
|
73
73
|
},
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"require": "./dist/react.cjs"
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "6dbab0f331e0fa7a280534d5cf111f09138c31e4"
|
|
95
95
|
}
|