@genesislcap/grid-pro 14.127.1 → 14.127.3
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 +412 -386
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +9 -14
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.types.d.ts +6 -1
- package/dist/dts/grid-pro.types.d.ts.map +1 -1
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +33 -5
- package/dist/esm/grid-pro.types.js +7 -2
- package/dist/grid-pro.api.json +24 -41
- package/dist/grid-pro.d.ts +16 -15
- package/docs/api/grid-pro.defaultgridoptionsconfig.md +13 -0
- package/docs/api/grid-pro.gridoptionsconfig.md +5 -3
- package/docs/api/grid-pro.md +1 -1
- package/docs/api-report.md +6 -1
- package/package.json +8 -8
|
@@ -1257,8 +1257,12 @@
|
|
|
1257
1257
|
},
|
|
1258
1258
|
{
|
|
1259
1259
|
"kind": "variable",
|
|
1260
|
-
"name": "
|
|
1261
|
-
"
|
|
1260
|
+
"name": "defaultGridOptionsConfig",
|
|
1261
|
+
"type": {
|
|
1262
|
+
"text": "GridOptionsConfig"
|
|
1263
|
+
},
|
|
1264
|
+
"default": "{}",
|
|
1265
|
+
"description": "Default grid options",
|
|
1262
1266
|
"privacy": "public"
|
|
1263
1267
|
}
|
|
1264
1268
|
],
|
|
@@ -1313,9 +1317,9 @@
|
|
|
1313
1317
|
},
|
|
1314
1318
|
{
|
|
1315
1319
|
"kind": "js",
|
|
1316
|
-
"name": "
|
|
1320
|
+
"name": "defaultGridOptionsConfig",
|
|
1317
1321
|
"declaration": {
|
|
1318
|
-
"name": "
|
|
1322
|
+
"name": "defaultGridOptionsConfig",
|
|
1319
1323
|
"module": "src/grid-pro.types.ts"
|
|
1320
1324
|
}
|
|
1321
1325
|
}
|
|
@@ -3260,6 +3264,229 @@
|
|
|
3260
3264
|
}
|
|
3261
3265
|
]
|
|
3262
3266
|
},
|
|
3267
|
+
{
|
|
3268
|
+
"kind": "javascript-module",
|
|
3269
|
+
"path": "src/column/column.template.ts",
|
|
3270
|
+
"declarations": [
|
|
3271
|
+
{
|
|
3272
|
+
"kind": "variable",
|
|
3273
|
+
"name": "ColumnTemplate",
|
|
3274
|
+
"default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
|
|
3275
|
+
"description": "The Grid Pro Column Template.",
|
|
3276
|
+
"privacy": "public"
|
|
3277
|
+
}
|
|
3278
|
+
],
|
|
3279
|
+
"exports": [
|
|
3280
|
+
{
|
|
3281
|
+
"kind": "js",
|
|
3282
|
+
"name": "ColumnTemplate",
|
|
3283
|
+
"declaration": {
|
|
3284
|
+
"name": "ColumnTemplate",
|
|
3285
|
+
"module": "src/column/column.template.ts"
|
|
3286
|
+
}
|
|
3287
|
+
}
|
|
3288
|
+
]
|
|
3289
|
+
},
|
|
3290
|
+
{
|
|
3291
|
+
"kind": "javascript-module",
|
|
3292
|
+
"path": "src/column/column.ts",
|
|
3293
|
+
"declarations": [
|
|
3294
|
+
{
|
|
3295
|
+
"kind": "class",
|
|
3296
|
+
"description": "The Grid Pro Column element.",
|
|
3297
|
+
"name": "GridProColumn",
|
|
3298
|
+
"members": [
|
|
3299
|
+
{
|
|
3300
|
+
"kind": "field",
|
|
3301
|
+
"name": "slottedAgCell",
|
|
3302
|
+
"type": {
|
|
3303
|
+
"text": "HTMLElement[]"
|
|
3304
|
+
},
|
|
3305
|
+
"privacy": "public"
|
|
3306
|
+
},
|
|
3307
|
+
{
|
|
3308
|
+
"kind": "field",
|
|
3309
|
+
"name": "definition",
|
|
3310
|
+
"type": {
|
|
3311
|
+
"text": "ColDef"
|
|
3312
|
+
},
|
|
3313
|
+
"default": "{}"
|
|
3314
|
+
},
|
|
3315
|
+
{
|
|
3316
|
+
"kind": "method",
|
|
3317
|
+
"name": "slottedAgCellChanged",
|
|
3318
|
+
"privacy": "public"
|
|
3319
|
+
},
|
|
3320
|
+
{
|
|
3321
|
+
"kind": "field",
|
|
3322
|
+
"name": "_presentation",
|
|
3323
|
+
"type": {
|
|
3324
|
+
"text": "ComponentPresentation | null | undefined"
|
|
3325
|
+
},
|
|
3326
|
+
"privacy": "private",
|
|
3327
|
+
"default": "void 0",
|
|
3328
|
+
"inheritedFrom": {
|
|
3329
|
+
"name": "FoundationElement",
|
|
3330
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3331
|
+
}
|
|
3332
|
+
},
|
|
3333
|
+
{
|
|
3334
|
+
"kind": "field",
|
|
3335
|
+
"name": "$presentation",
|
|
3336
|
+
"type": {
|
|
3337
|
+
"text": "ComponentPresentation | null"
|
|
3338
|
+
},
|
|
3339
|
+
"privacy": "public",
|
|
3340
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
3341
|
+
"inheritedFrom": {
|
|
3342
|
+
"name": "FoundationElement",
|
|
3343
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3344
|
+
}
|
|
3345
|
+
},
|
|
3346
|
+
{
|
|
3347
|
+
"kind": "field",
|
|
3348
|
+
"name": "template",
|
|
3349
|
+
"type": {
|
|
3350
|
+
"text": "ElementViewTemplate | void | null"
|
|
3351
|
+
},
|
|
3352
|
+
"privacy": "public",
|
|
3353
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
3354
|
+
"inheritedFrom": {
|
|
3355
|
+
"name": "FoundationElement",
|
|
3356
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3357
|
+
}
|
|
3358
|
+
},
|
|
3359
|
+
{
|
|
3360
|
+
"kind": "method",
|
|
3361
|
+
"name": "templateChanged",
|
|
3362
|
+
"privacy": "protected",
|
|
3363
|
+
"return": {
|
|
3364
|
+
"type": {
|
|
3365
|
+
"text": "void"
|
|
3366
|
+
}
|
|
3367
|
+
},
|
|
3368
|
+
"inheritedFrom": {
|
|
3369
|
+
"name": "FoundationElement",
|
|
3370
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3371
|
+
}
|
|
3372
|
+
},
|
|
3373
|
+
{
|
|
3374
|
+
"kind": "field",
|
|
3375
|
+
"name": "styles",
|
|
3376
|
+
"type": {
|
|
3377
|
+
"text": "ElementStyles | void | null"
|
|
3378
|
+
},
|
|
3379
|
+
"privacy": "public",
|
|
3380
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
3381
|
+
"inheritedFrom": {
|
|
3382
|
+
"name": "FoundationElement",
|
|
3383
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3384
|
+
}
|
|
3385
|
+
},
|
|
3386
|
+
{
|
|
3387
|
+
"kind": "method",
|
|
3388
|
+
"name": "stylesChanged",
|
|
3389
|
+
"privacy": "protected",
|
|
3390
|
+
"return": {
|
|
3391
|
+
"type": {
|
|
3392
|
+
"text": "void"
|
|
3393
|
+
}
|
|
3394
|
+
},
|
|
3395
|
+
"inheritedFrom": {
|
|
3396
|
+
"name": "FoundationElement",
|
|
3397
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3398
|
+
}
|
|
3399
|
+
},
|
|
3400
|
+
{
|
|
3401
|
+
"kind": "method",
|
|
3402
|
+
"name": "compose",
|
|
3403
|
+
"privacy": "public",
|
|
3404
|
+
"static": true,
|
|
3405
|
+
"return": {
|
|
3406
|
+
"type": {
|
|
3407
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
3408
|
+
}
|
|
3409
|
+
},
|
|
3410
|
+
"parameters": [
|
|
3411
|
+
{
|
|
3412
|
+
"name": "this",
|
|
3413
|
+
"type": {
|
|
3414
|
+
"text": "K"
|
|
3415
|
+
}
|
|
3416
|
+
},
|
|
3417
|
+
{
|
|
3418
|
+
"name": "elementDefinition",
|
|
3419
|
+
"type": {
|
|
3420
|
+
"text": "T"
|
|
3421
|
+
},
|
|
3422
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
3423
|
+
}
|
|
3424
|
+
],
|
|
3425
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
3426
|
+
"inheritedFrom": {
|
|
3427
|
+
"name": "FoundationElement",
|
|
3428
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3429
|
+
}
|
|
3430
|
+
}
|
|
3431
|
+
],
|
|
3432
|
+
"superclass": {
|
|
3433
|
+
"name": "FoundationElement",
|
|
3434
|
+
"package": "@microsoft/fast-foundation"
|
|
3435
|
+
},
|
|
3436
|
+
"tagName": "grid-pro-column",
|
|
3437
|
+
"customElement": true
|
|
3438
|
+
}
|
|
3439
|
+
],
|
|
3440
|
+
"exports": [
|
|
3441
|
+
{
|
|
3442
|
+
"kind": "js",
|
|
3443
|
+
"name": "GridProColumn",
|
|
3444
|
+
"declaration": {
|
|
3445
|
+
"name": "GridProColumn",
|
|
3446
|
+
"module": "src/column/column.ts"
|
|
3447
|
+
}
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"kind": "custom-element-definition",
|
|
3451
|
+
"name": "grid-pro-column",
|
|
3452
|
+
"declaration": {
|
|
3453
|
+
"name": "GridProColumn",
|
|
3454
|
+
"module": "src/column/column.ts"
|
|
3455
|
+
}
|
|
3456
|
+
}
|
|
3457
|
+
]
|
|
3458
|
+
},
|
|
3459
|
+
{
|
|
3460
|
+
"kind": "javascript-module",
|
|
3461
|
+
"path": "src/column/index.ts",
|
|
3462
|
+
"declarations": [],
|
|
3463
|
+
"exports": [
|
|
3464
|
+
{
|
|
3465
|
+
"kind": "js",
|
|
3466
|
+
"name": "*",
|
|
3467
|
+
"declaration": {
|
|
3468
|
+
"name": "*",
|
|
3469
|
+
"package": "./column.template"
|
|
3470
|
+
}
|
|
3471
|
+
},
|
|
3472
|
+
{
|
|
3473
|
+
"kind": "js",
|
|
3474
|
+
"name": "*",
|
|
3475
|
+
"declaration": {
|
|
3476
|
+
"name": "*",
|
|
3477
|
+
"package": "./column"
|
|
3478
|
+
}
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
"kind": "js",
|
|
3482
|
+
"name": "*",
|
|
3483
|
+
"declaration": {
|
|
3484
|
+
"name": "*",
|
|
3485
|
+
"package": "./utils"
|
|
3486
|
+
}
|
|
3487
|
+
}
|
|
3488
|
+
]
|
|
3489
|
+
},
|
|
3263
3490
|
{
|
|
3264
3491
|
"kind": "javascript-module",
|
|
3265
3492
|
"path": "src/cell-renderers/action.renderer.ts",
|
|
@@ -4912,331 +5139,108 @@
|
|
|
4912
5139
|
"type": {
|
|
4913
5140
|
"text": "TextField"
|
|
4914
5141
|
},
|
|
4915
|
-
"privacy": "public",
|
|
4916
|
-
"inheritedFrom": {
|
|
4917
|
-
"name": "AgTextFieldRenderer",
|
|
4918
|
-
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
4919
|
-
}
|
|
4920
|
-
},
|
|
4921
|
-
{
|
|
4922
|
-
"kind": "field",
|
|
4923
|
-
"name": "textValue",
|
|
4924
|
-
"type": {
|
|
4925
|
-
"text": "string"
|
|
4926
|
-
},
|
|
4927
|
-
"default": "''",
|
|
4928
|
-
"inheritedFrom": {
|
|
4929
|
-
"name": "AgTextFieldRenderer",
|
|
4930
|
-
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
4931
|
-
}
|
|
4932
|
-
},
|
|
4933
|
-
{
|
|
4934
|
-
"kind": "field",
|
|
4935
|
-
"name": "params",
|
|
4936
|
-
"type": {
|
|
4937
|
-
"text": "FuiCellRendererParams"
|
|
4938
|
-
},
|
|
4939
|
-
"privacy": "public",
|
|
4940
|
-
"inheritedFrom": {
|
|
4941
|
-
"name": "AgTextFieldRenderer",
|
|
4942
|
-
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
4943
|
-
}
|
|
4944
|
-
},
|
|
4945
|
-
{
|
|
4946
|
-
"kind": "method",
|
|
4947
|
-
"name": "init",
|
|
4948
|
-
"privacy": "public",
|
|
4949
|
-
"parameters": [
|
|
4950
|
-
{
|
|
4951
|
-
"name": "params",
|
|
4952
|
-
"type": {
|
|
4953
|
-
"text": "FuiCellRendererParams"
|
|
4954
|
-
}
|
|
4955
|
-
}
|
|
4956
|
-
],
|
|
4957
|
-
"inheritedFrom": {
|
|
4958
|
-
"name": "AgTextFieldRenderer",
|
|
4959
|
-
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
4960
|
-
}
|
|
4961
|
-
},
|
|
4962
|
-
{
|
|
4963
|
-
"kind": "method",
|
|
4964
|
-
"name": "getGui",
|
|
4965
|
-
"privacy": "public",
|
|
4966
|
-
"return": {
|
|
4967
|
-
"type": {
|
|
4968
|
-
"text": "HTMLElement"
|
|
4969
|
-
}
|
|
4970
|
-
},
|
|
4971
|
-
"inheritedFrom": {
|
|
4972
|
-
"name": "AgTextFieldRenderer",
|
|
4973
|
-
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
4974
|
-
}
|
|
4975
|
-
},
|
|
4976
|
-
{
|
|
4977
|
-
"kind": "method",
|
|
4978
|
-
"name": "destroy",
|
|
4979
|
-
"privacy": "public",
|
|
4980
|
-
"inheritedFrom": {
|
|
4981
|
-
"name": "AgTextFieldRenderer",
|
|
4982
|
-
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
4983
|
-
}
|
|
4984
|
-
},
|
|
4985
|
-
{
|
|
4986
|
-
"kind": "method",
|
|
4987
|
-
"name": "refresh",
|
|
4988
|
-
"privacy": "public",
|
|
4989
|
-
"parameters": [
|
|
4990
|
-
{
|
|
4991
|
-
"name": "params",
|
|
4992
|
-
"type": {
|
|
4993
|
-
"text": "FuiCellRendererParams"
|
|
4994
|
-
}
|
|
4995
|
-
}
|
|
4996
|
-
],
|
|
4997
|
-
"inheritedFrom": {
|
|
4998
|
-
"name": "AgTextFieldRenderer",
|
|
4999
|
-
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5000
|
-
}
|
|
5001
|
-
},
|
|
5002
|
-
{
|
|
5003
|
-
"kind": "field",
|
|
5004
|
-
"name": "textChanged",
|
|
5005
|
-
"privacy": "public",
|
|
5006
|
-
"description": "On text change handler",
|
|
5007
|
-
"parameters": [
|
|
5008
|
-
{
|
|
5009
|
-
"description": "CustomEvent",
|
|
5010
|
-
"name": "e"
|
|
5011
|
-
}
|
|
5012
|
-
],
|
|
5013
|
-
"inheritedFrom": {
|
|
5014
|
-
"name": "AgTextFieldRenderer",
|
|
5015
|
-
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5016
|
-
}
|
|
5017
|
-
},
|
|
5018
|
-
{
|
|
5019
|
-
"kind": "field",
|
|
5020
|
-
"name": "_presentation",
|
|
5021
|
-
"type": {
|
|
5022
|
-
"text": "ComponentPresentation | null | undefined"
|
|
5023
|
-
},
|
|
5024
|
-
"privacy": "private",
|
|
5025
|
-
"default": "void 0",
|
|
5026
|
-
"inheritedFrom": {
|
|
5027
|
-
"name": "FoundationElement",
|
|
5028
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
5029
|
-
}
|
|
5030
|
-
},
|
|
5031
|
-
{
|
|
5032
|
-
"kind": "field",
|
|
5033
|
-
"name": "$presentation",
|
|
5034
|
-
"type": {
|
|
5035
|
-
"text": "ComponentPresentation | null"
|
|
5036
|
-
},
|
|
5037
|
-
"privacy": "public",
|
|
5038
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
5039
|
-
"inheritedFrom": {
|
|
5040
|
-
"name": "FoundationElement",
|
|
5041
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
5042
|
-
}
|
|
5043
|
-
},
|
|
5044
|
-
{
|
|
5045
|
-
"kind": "field",
|
|
5046
|
-
"name": "template",
|
|
5047
|
-
"type": {
|
|
5048
|
-
"text": "ElementViewTemplate | void | null"
|
|
5049
|
-
},
|
|
5050
|
-
"privacy": "public",
|
|
5051
|
-
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
5052
|
-
"inheritedFrom": {
|
|
5053
|
-
"name": "FoundationElement",
|
|
5054
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
5055
|
-
}
|
|
5056
|
-
},
|
|
5057
|
-
{
|
|
5058
|
-
"kind": "method",
|
|
5059
|
-
"name": "templateChanged",
|
|
5060
|
-
"privacy": "protected",
|
|
5061
|
-
"return": {
|
|
5062
|
-
"type": {
|
|
5063
|
-
"text": "void"
|
|
5064
|
-
}
|
|
5065
|
-
},
|
|
5066
|
-
"inheritedFrom": {
|
|
5067
|
-
"name": "FoundationElement",
|
|
5068
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
5069
|
-
}
|
|
5070
|
-
},
|
|
5071
|
-
{
|
|
5072
|
-
"kind": "field",
|
|
5073
|
-
"name": "styles",
|
|
5074
|
-
"type": {
|
|
5075
|
-
"text": "ElementStyles | void | null"
|
|
5076
|
-
},
|
|
5077
|
-
"privacy": "public",
|
|
5078
|
-
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
5079
|
-
"inheritedFrom": {
|
|
5080
|
-
"name": "FoundationElement",
|
|
5081
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
5082
|
-
}
|
|
5083
|
-
},
|
|
5084
|
-
{
|
|
5085
|
-
"kind": "method",
|
|
5086
|
-
"name": "stylesChanged",
|
|
5087
|
-
"privacy": "protected",
|
|
5088
|
-
"return": {
|
|
5089
|
-
"type": {
|
|
5090
|
-
"text": "void"
|
|
5091
|
-
}
|
|
5092
|
-
},
|
|
5093
|
-
"inheritedFrom": {
|
|
5094
|
-
"name": "FoundationElement",
|
|
5095
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
5096
|
-
}
|
|
5097
|
-
},
|
|
5098
|
-
{
|
|
5099
|
-
"kind": "method",
|
|
5100
|
-
"name": "compose",
|
|
5101
|
-
"privacy": "public",
|
|
5102
|
-
"static": true,
|
|
5103
|
-
"return": {
|
|
5104
|
-
"type": {
|
|
5105
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
5106
|
-
}
|
|
5107
|
-
},
|
|
5108
|
-
"parameters": [
|
|
5109
|
-
{
|
|
5110
|
-
"name": "this",
|
|
5111
|
-
"type": {
|
|
5112
|
-
"text": "K"
|
|
5113
|
-
}
|
|
5114
|
-
},
|
|
5115
|
-
{
|
|
5116
|
-
"name": "elementDefinition",
|
|
5117
|
-
"type": {
|
|
5118
|
-
"text": "T"
|
|
5119
|
-
},
|
|
5120
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
5121
|
-
}
|
|
5122
|
-
],
|
|
5123
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
5124
|
-
"inheritedFrom": {
|
|
5125
|
-
"name": "FoundationElement",
|
|
5126
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
5127
|
-
}
|
|
5128
|
-
}
|
|
5129
|
-
]
|
|
5130
|
-
},
|
|
5131
|
-
{
|
|
5132
|
-
"kind": "variable",
|
|
5133
|
-
"name": "textRendererStyles",
|
|
5134
|
-
"default": "textFieldRendererStyles",
|
|
5135
|
-
"privacy": "public",
|
|
5136
|
-
"deprecated": "- Use textFieldRendererStyles instead"
|
|
5137
|
-
},
|
|
5138
|
-
{
|
|
5139
|
-
"kind": "variable",
|
|
5140
|
-
"name": "getTextRendererTemplate",
|
|
5141
|
-
"default": "getTextFieldRendererTemplate",
|
|
5142
|
-
"privacy": "public",
|
|
5143
|
-
"deprecated": "- Use getTextFieldRendererTemplate instead"
|
|
5144
|
-
},
|
|
5145
|
-
{
|
|
5146
|
-
"kind": "variable",
|
|
5147
|
-
"name": "foundationAgTextRenderer",
|
|
5148
|
-
"description": "A function that returns a Foundation Text Renderer registration for configuring the component with a DesignSystem.",
|
|
5149
|
-
"privacy": "public",
|
|
5150
|
-
"deprecated": "- Use foundationAgTextFieldRenderer instead"
|
|
5151
|
-
}
|
|
5152
|
-
],
|
|
5153
|
-
"exports": [
|
|
5154
|
-
{
|
|
5155
|
-
"kind": "js",
|
|
5156
|
-
"name": "AgTextRenderer",
|
|
5157
|
-
"declaration": {
|
|
5158
|
-
"name": "AgTextRenderer",
|
|
5159
|
-
"module": "src/cell-renderers/text.renderer.ts"
|
|
5160
|
-
}
|
|
5161
|
-
},
|
|
5162
|
-
{
|
|
5163
|
-
"kind": "js",
|
|
5164
|
-
"name": "textRendererStyles",
|
|
5165
|
-
"declaration": {
|
|
5166
|
-
"name": "textRendererStyles",
|
|
5167
|
-
"module": "src/cell-renderers/text.renderer.ts"
|
|
5168
|
-
}
|
|
5169
|
-
},
|
|
5170
|
-
{
|
|
5171
|
-
"kind": "js",
|
|
5172
|
-
"name": "getTextRendererTemplate",
|
|
5173
|
-
"declaration": {
|
|
5174
|
-
"name": "getTextRendererTemplate",
|
|
5175
|
-
"module": "src/cell-renderers/text.renderer.ts"
|
|
5176
|
-
}
|
|
5177
|
-
},
|
|
5178
|
-
{
|
|
5179
|
-
"kind": "js",
|
|
5180
|
-
"name": "foundationAgTextRenderer",
|
|
5181
|
-
"declaration": {
|
|
5182
|
-
"name": "foundationAgTextRenderer",
|
|
5183
|
-
"module": "src/cell-renderers/text.renderer.ts"
|
|
5184
|
-
}
|
|
5185
|
-
}
|
|
5186
|
-
]
|
|
5187
|
-
},
|
|
5188
|
-
{
|
|
5189
|
-
"kind": "javascript-module",
|
|
5190
|
-
"path": "src/column/column.template.ts",
|
|
5191
|
-
"declarations": [
|
|
5192
|
-
{
|
|
5193
|
-
"kind": "variable",
|
|
5194
|
-
"name": "ColumnTemplate",
|
|
5195
|
-
"default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
|
|
5196
|
-
"description": "The Grid Pro Column Template.",
|
|
5197
|
-
"privacy": "public"
|
|
5198
|
-
}
|
|
5199
|
-
],
|
|
5200
|
-
"exports": [
|
|
5201
|
-
{
|
|
5202
|
-
"kind": "js",
|
|
5203
|
-
"name": "ColumnTemplate",
|
|
5204
|
-
"declaration": {
|
|
5205
|
-
"name": "ColumnTemplate",
|
|
5206
|
-
"module": "src/column/column.template.ts"
|
|
5207
|
-
}
|
|
5208
|
-
}
|
|
5209
|
-
]
|
|
5210
|
-
},
|
|
5211
|
-
{
|
|
5212
|
-
"kind": "javascript-module",
|
|
5213
|
-
"path": "src/column/column.ts",
|
|
5214
|
-
"declarations": [
|
|
5215
|
-
{
|
|
5216
|
-
"kind": "class",
|
|
5217
|
-
"description": "The Grid Pro Column element.",
|
|
5218
|
-
"name": "GridProColumn",
|
|
5219
|
-
"members": [
|
|
5142
|
+
"privacy": "public",
|
|
5143
|
+
"inheritedFrom": {
|
|
5144
|
+
"name": "AgTextFieldRenderer",
|
|
5145
|
+
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5146
|
+
}
|
|
5147
|
+
},
|
|
5220
5148
|
{
|
|
5221
5149
|
"kind": "field",
|
|
5222
|
-
"name": "
|
|
5150
|
+
"name": "textValue",
|
|
5223
5151
|
"type": {
|
|
5224
|
-
"text": "
|
|
5152
|
+
"text": "string"
|
|
5225
5153
|
},
|
|
5226
|
-
"
|
|
5154
|
+
"default": "''",
|
|
5155
|
+
"inheritedFrom": {
|
|
5156
|
+
"name": "AgTextFieldRenderer",
|
|
5157
|
+
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5158
|
+
}
|
|
5227
5159
|
},
|
|
5228
5160
|
{
|
|
5229
5161
|
"kind": "field",
|
|
5230
|
-
"name": "
|
|
5162
|
+
"name": "params",
|
|
5231
5163
|
"type": {
|
|
5232
|
-
"text": "
|
|
5164
|
+
"text": "FuiCellRendererParams"
|
|
5233
5165
|
},
|
|
5234
|
-
"
|
|
5166
|
+
"privacy": "public",
|
|
5167
|
+
"inheritedFrom": {
|
|
5168
|
+
"name": "AgTextFieldRenderer",
|
|
5169
|
+
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5170
|
+
}
|
|
5235
5171
|
},
|
|
5236
5172
|
{
|
|
5237
5173
|
"kind": "method",
|
|
5238
|
-
"name": "
|
|
5239
|
-
"privacy": "public"
|
|
5174
|
+
"name": "init",
|
|
5175
|
+
"privacy": "public",
|
|
5176
|
+
"parameters": [
|
|
5177
|
+
{
|
|
5178
|
+
"name": "params",
|
|
5179
|
+
"type": {
|
|
5180
|
+
"text": "FuiCellRendererParams"
|
|
5181
|
+
}
|
|
5182
|
+
}
|
|
5183
|
+
],
|
|
5184
|
+
"inheritedFrom": {
|
|
5185
|
+
"name": "AgTextFieldRenderer",
|
|
5186
|
+
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5187
|
+
}
|
|
5188
|
+
},
|
|
5189
|
+
{
|
|
5190
|
+
"kind": "method",
|
|
5191
|
+
"name": "getGui",
|
|
5192
|
+
"privacy": "public",
|
|
5193
|
+
"return": {
|
|
5194
|
+
"type": {
|
|
5195
|
+
"text": "HTMLElement"
|
|
5196
|
+
}
|
|
5197
|
+
},
|
|
5198
|
+
"inheritedFrom": {
|
|
5199
|
+
"name": "AgTextFieldRenderer",
|
|
5200
|
+
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5201
|
+
}
|
|
5202
|
+
},
|
|
5203
|
+
{
|
|
5204
|
+
"kind": "method",
|
|
5205
|
+
"name": "destroy",
|
|
5206
|
+
"privacy": "public",
|
|
5207
|
+
"inheritedFrom": {
|
|
5208
|
+
"name": "AgTextFieldRenderer",
|
|
5209
|
+
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5210
|
+
}
|
|
5211
|
+
},
|
|
5212
|
+
{
|
|
5213
|
+
"kind": "method",
|
|
5214
|
+
"name": "refresh",
|
|
5215
|
+
"privacy": "public",
|
|
5216
|
+
"parameters": [
|
|
5217
|
+
{
|
|
5218
|
+
"name": "params",
|
|
5219
|
+
"type": {
|
|
5220
|
+
"text": "FuiCellRendererParams"
|
|
5221
|
+
}
|
|
5222
|
+
}
|
|
5223
|
+
],
|
|
5224
|
+
"inheritedFrom": {
|
|
5225
|
+
"name": "AgTextFieldRenderer",
|
|
5226
|
+
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5227
|
+
}
|
|
5228
|
+
},
|
|
5229
|
+
{
|
|
5230
|
+
"kind": "field",
|
|
5231
|
+
"name": "textChanged",
|
|
5232
|
+
"privacy": "public",
|
|
5233
|
+
"description": "On text change handler",
|
|
5234
|
+
"parameters": [
|
|
5235
|
+
{
|
|
5236
|
+
"description": "CustomEvent",
|
|
5237
|
+
"name": "e"
|
|
5238
|
+
}
|
|
5239
|
+
],
|
|
5240
|
+
"inheritedFrom": {
|
|
5241
|
+
"name": "AgTextFieldRenderer",
|
|
5242
|
+
"module": "src/cell-renderers/text-field.renderer.ts"
|
|
5243
|
+
}
|
|
5240
5244
|
},
|
|
5241
5245
|
{
|
|
5242
5246
|
"kind": "field",
|
|
@@ -5349,61 +5353,61 @@
|
|
|
5349
5353
|
"module": "src/foundation-element/foundation-element.ts"
|
|
5350
5354
|
}
|
|
5351
5355
|
}
|
|
5352
|
-
]
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
"
|
|
5358
|
-
"
|
|
5356
|
+
]
|
|
5357
|
+
},
|
|
5358
|
+
{
|
|
5359
|
+
"kind": "variable",
|
|
5360
|
+
"name": "textRendererStyles",
|
|
5361
|
+
"default": "textFieldRendererStyles",
|
|
5362
|
+
"privacy": "public",
|
|
5363
|
+
"deprecated": "- Use textFieldRendererStyles instead"
|
|
5364
|
+
},
|
|
5365
|
+
{
|
|
5366
|
+
"kind": "variable",
|
|
5367
|
+
"name": "getTextRendererTemplate",
|
|
5368
|
+
"default": "getTextFieldRendererTemplate",
|
|
5369
|
+
"privacy": "public",
|
|
5370
|
+
"deprecated": "- Use getTextFieldRendererTemplate instead"
|
|
5371
|
+
},
|
|
5372
|
+
{
|
|
5373
|
+
"kind": "variable",
|
|
5374
|
+
"name": "foundationAgTextRenderer",
|
|
5375
|
+
"description": "A function that returns a Foundation Text Renderer registration for configuring the component with a DesignSystem.",
|
|
5376
|
+
"privacy": "public",
|
|
5377
|
+
"deprecated": "- Use foundationAgTextFieldRenderer instead"
|
|
5359
5378
|
}
|
|
5360
5379
|
],
|
|
5361
5380
|
"exports": [
|
|
5362
5381
|
{
|
|
5363
5382
|
"kind": "js",
|
|
5364
|
-
"name": "
|
|
5383
|
+
"name": "AgTextRenderer",
|
|
5365
5384
|
"declaration": {
|
|
5366
|
-
"name": "
|
|
5367
|
-
"module": "src/
|
|
5385
|
+
"name": "AgTextRenderer",
|
|
5386
|
+
"module": "src/cell-renderers/text.renderer.ts"
|
|
5368
5387
|
}
|
|
5369
5388
|
},
|
|
5370
|
-
{
|
|
5371
|
-
"kind": "custom-element-definition",
|
|
5372
|
-
"name": "grid-pro-column",
|
|
5373
|
-
"declaration": {
|
|
5374
|
-
"name": "GridProColumn",
|
|
5375
|
-
"module": "src/column/column.ts"
|
|
5376
|
-
}
|
|
5377
|
-
}
|
|
5378
|
-
]
|
|
5379
|
-
},
|
|
5380
|
-
{
|
|
5381
|
-
"kind": "javascript-module",
|
|
5382
|
-
"path": "src/column/index.ts",
|
|
5383
|
-
"declarations": [],
|
|
5384
|
-
"exports": [
|
|
5385
5389
|
{
|
|
5386
5390
|
"kind": "js",
|
|
5387
|
-
"name": "
|
|
5391
|
+
"name": "textRendererStyles",
|
|
5388
5392
|
"declaration": {
|
|
5389
|
-
"name": "
|
|
5390
|
-
"
|
|
5393
|
+
"name": "textRendererStyles",
|
|
5394
|
+
"module": "src/cell-renderers/text.renderer.ts"
|
|
5391
5395
|
}
|
|
5392
5396
|
},
|
|
5393
5397
|
{
|
|
5394
5398
|
"kind": "js",
|
|
5395
|
-
"name": "
|
|
5399
|
+
"name": "getTextRendererTemplate",
|
|
5396
5400
|
"declaration": {
|
|
5397
|
-
"name": "
|
|
5398
|
-
"
|
|
5401
|
+
"name": "getTextRendererTemplate",
|
|
5402
|
+
"module": "src/cell-renderers/text.renderer.ts"
|
|
5399
5403
|
}
|
|
5400
5404
|
},
|
|
5401
5405
|
{
|
|
5402
5406
|
"kind": "js",
|
|
5403
|
-
"name": "
|
|
5407
|
+
"name": "foundationAgTextRenderer",
|
|
5404
5408
|
"declaration": {
|
|
5405
|
-
"name": "
|
|
5406
|
-
"
|
|
5409
|
+
"name": "foundationAgTextRenderer",
|
|
5410
|
+
"module": "src/cell-renderers/text.renderer.ts"
|
|
5407
5411
|
}
|
|
5408
5412
|
}
|
|
5409
5413
|
]
|
|
@@ -6083,6 +6087,19 @@
|
|
|
6083
6087
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
6084
6088
|
}
|
|
6085
6089
|
},
|
|
6090
|
+
{
|
|
6091
|
+
"kind": "field",
|
|
6092
|
+
"name": "defaultRowIdByResourceType",
|
|
6093
|
+
"type": {
|
|
6094
|
+
"text": "string"
|
|
6095
|
+
},
|
|
6096
|
+
"privacy": "private",
|
|
6097
|
+
"readonly": true,
|
|
6098
|
+
"inheritedFrom": {
|
|
6099
|
+
"name": "GridProGenesisDatasource",
|
|
6100
|
+
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
6101
|
+
}
|
|
6102
|
+
},
|
|
6086
6103
|
{
|
|
6087
6104
|
"kind": "method",
|
|
6088
6105
|
"name": "init",
|
|
@@ -8338,6 +8355,15 @@
|
|
|
8338
8355
|
"privacy": "private",
|
|
8339
8356
|
"readonly": true
|
|
8340
8357
|
},
|
|
8358
|
+
{
|
|
8359
|
+
"kind": "field",
|
|
8360
|
+
"name": "defaultRowIdByResourceType",
|
|
8361
|
+
"type": {
|
|
8362
|
+
"text": "string"
|
|
8363
|
+
},
|
|
8364
|
+
"privacy": "private",
|
|
8365
|
+
"readonly": true
|
|
8366
|
+
},
|
|
8341
8367
|
{
|
|
8342
8368
|
"kind": "method",
|
|
8343
8369
|
"name": "init",
|
|
@@ -9264,46 +9290,51 @@
|
|
|
9264
9290
|
},
|
|
9265
9291
|
{
|
|
9266
9292
|
"kind": "javascript-module",
|
|
9267
|
-
"path": "src/
|
|
9293
|
+
"path": "src/column/utils/grid-pro-columns.ts",
|
|
9268
9294
|
"declarations": [
|
|
9269
9295
|
{
|
|
9270
9296
|
"kind": "function",
|
|
9271
|
-
"name": "
|
|
9297
|
+
"name": "gridProColumns",
|
|
9272
9298
|
"return": {
|
|
9273
9299
|
"type": {
|
|
9274
|
-
"text": "
|
|
9300
|
+
"text": "CaptureType<TSource>"
|
|
9275
9301
|
}
|
|
9276
9302
|
},
|
|
9277
9303
|
"parameters": [
|
|
9278
9304
|
{
|
|
9279
|
-
"name": "
|
|
9305
|
+
"name": "itemsBinding",
|
|
9280
9306
|
"type": {
|
|
9281
|
-
"text": "
|
|
9282
|
-
}
|
|
9307
|
+
"text": "Binding<TSource, readonly ColDef[]> | readonly ColDef[]"
|
|
9308
|
+
},
|
|
9309
|
+
"description": "The array to render"
|
|
9283
9310
|
},
|
|
9284
9311
|
{
|
|
9285
|
-
"name": "
|
|
9312
|
+
"name": "includeRenderers",
|
|
9313
|
+
"default": "true",
|
|
9286
9314
|
"type": {
|
|
9287
|
-
"text": "
|
|
9288
|
-
}
|
|
9315
|
+
"text": "boolean"
|
|
9316
|
+
},
|
|
9317
|
+
"description": "Optionally tells whether to include cell renderers, if available"
|
|
9289
9318
|
}
|
|
9290
|
-
]
|
|
9319
|
+
],
|
|
9320
|
+
"description": "A directive that renders a set of grid-pro-column elements from a given input binding",
|
|
9321
|
+
"privacy": "public"
|
|
9291
9322
|
}
|
|
9292
9323
|
],
|
|
9293
9324
|
"exports": [
|
|
9294
9325
|
{
|
|
9295
9326
|
"kind": "js",
|
|
9296
|
-
"name": "
|
|
9327
|
+
"name": "gridProColumns",
|
|
9297
9328
|
"declaration": {
|
|
9298
|
-
"name": "
|
|
9299
|
-
"module": "src/
|
|
9329
|
+
"name": "gridProColumns",
|
|
9330
|
+
"module": "src/column/utils/grid-pro-columns.ts"
|
|
9300
9331
|
}
|
|
9301
9332
|
}
|
|
9302
9333
|
]
|
|
9303
9334
|
},
|
|
9304
9335
|
{
|
|
9305
9336
|
"kind": "javascript-module",
|
|
9306
|
-
"path": "src/
|
|
9337
|
+
"path": "src/column/utils/index.ts",
|
|
9307
9338
|
"declarations": [],
|
|
9308
9339
|
"exports": [
|
|
9309
9340
|
{
|
|
@@ -9311,58 +9342,53 @@
|
|
|
9311
9342
|
"name": "*",
|
|
9312
9343
|
"declaration": {
|
|
9313
9344
|
"name": "*",
|
|
9314
|
-
"package": "./
|
|
9345
|
+
"package": "./grid-pro-columns"
|
|
9315
9346
|
}
|
|
9316
9347
|
}
|
|
9317
9348
|
]
|
|
9318
9349
|
},
|
|
9319
9350
|
{
|
|
9320
9351
|
"kind": "javascript-module",
|
|
9321
|
-
"path": "src/
|
|
9352
|
+
"path": "src/cell-renderers/utils/accessor.ts",
|
|
9322
9353
|
"declarations": [
|
|
9323
9354
|
{
|
|
9324
9355
|
"kind": "function",
|
|
9325
|
-
"name": "
|
|
9356
|
+
"name": "setValueWithAccessor",
|
|
9326
9357
|
"return": {
|
|
9327
9358
|
"type": {
|
|
9328
|
-
"text": "
|
|
9359
|
+
"text": "string"
|
|
9329
9360
|
}
|
|
9330
9361
|
},
|
|
9331
9362
|
"parameters": [
|
|
9332
9363
|
{
|
|
9333
|
-
"name": "
|
|
9364
|
+
"name": "data",
|
|
9334
9365
|
"type": {
|
|
9335
|
-
"text": "
|
|
9336
|
-
}
|
|
9337
|
-
"description": "The array to render"
|
|
9366
|
+
"text": "any"
|
|
9367
|
+
}
|
|
9338
9368
|
},
|
|
9339
9369
|
{
|
|
9340
|
-
"name": "
|
|
9341
|
-
"default": "true",
|
|
9370
|
+
"name": "accessor",
|
|
9342
9371
|
"type": {
|
|
9343
|
-
"text": "
|
|
9344
|
-
}
|
|
9345
|
-
"description": "Optionally tells whether to include cell renderers, if available"
|
|
9372
|
+
"text": "string"
|
|
9373
|
+
}
|
|
9346
9374
|
}
|
|
9347
|
-
]
|
|
9348
|
-
"description": "A directive that renders a set of grid-pro-column elements from a given input binding",
|
|
9349
|
-
"privacy": "public"
|
|
9375
|
+
]
|
|
9350
9376
|
}
|
|
9351
9377
|
],
|
|
9352
9378
|
"exports": [
|
|
9353
9379
|
{
|
|
9354
9380
|
"kind": "js",
|
|
9355
|
-
"name": "
|
|
9381
|
+
"name": "setValueWithAccessor",
|
|
9356
9382
|
"declaration": {
|
|
9357
|
-
"name": "
|
|
9358
|
-
"module": "src/
|
|
9383
|
+
"name": "setValueWithAccessor",
|
|
9384
|
+
"module": "src/cell-renderers/utils/accessor.ts"
|
|
9359
9385
|
}
|
|
9360
9386
|
}
|
|
9361
9387
|
]
|
|
9362
9388
|
},
|
|
9363
9389
|
{
|
|
9364
9390
|
"kind": "javascript-module",
|
|
9365
|
-
"path": "src/
|
|
9391
|
+
"path": "src/cell-renderers/utils/index.ts",
|
|
9366
9392
|
"declarations": [],
|
|
9367
9393
|
"exports": [
|
|
9368
9394
|
{
|
|
@@ -9370,7 +9396,7 @@
|
|
|
9370
9396
|
"name": "*",
|
|
9371
9397
|
"declaration": {
|
|
9372
9398
|
"name": "*",
|
|
9373
|
-
"package": "./
|
|
9399
|
+
"package": "./accessor"
|
|
9374
9400
|
}
|
|
9375
9401
|
}
|
|
9376
9402
|
]
|