@praxisui/dynamic-fields 9.0.15 → 9.0.16
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/ai/component-registry.json +2352 -90
- package/docs/dynamic-fields-inline-components-guide.md +11 -8
- package/docs/dynamic-fields-inline-filter-catalog.md +12 -1
- package/fesm2022/praxisui-dynamic-fields.mjs +108 -78
- package/package.json +3 -3
- package/src/lib/components/inline-entity-lookup/pdx-inline-entity-lookup.json-api.md +3 -1
- package/types/praxisui-dynamic-fields.d.ts +3 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-24T11:25:54.540Z",
|
|
4
4
|
"packageName": "@praxisui/dynamic-fields",
|
|
5
|
-
"packageVersion": "9.0.
|
|
5
|
+
"packageVersion": "9.0.16",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 76,
|
|
@@ -1574,6 +1574,29 @@
|
|
|
1574
1574
|
"searchable": {
|
|
1575
1575
|
"type": "boolean"
|
|
1576
1576
|
},
|
|
1577
|
+
"actions": {
|
|
1578
|
+
"type": "object",
|
|
1579
|
+
"properties": {
|
|
1580
|
+
"showDetail": {
|
|
1581
|
+
"type": "boolean"
|
|
1582
|
+
},
|
|
1583
|
+
"showChange": {
|
|
1584
|
+
"type": "boolean"
|
|
1585
|
+
},
|
|
1586
|
+
"showCopyCode": {
|
|
1587
|
+
"type": "boolean"
|
|
1588
|
+
},
|
|
1589
|
+
"showCopyId": {
|
|
1590
|
+
"type": "boolean"
|
|
1591
|
+
},
|
|
1592
|
+
"showCreate": {
|
|
1593
|
+
"type": "boolean"
|
|
1594
|
+
},
|
|
1595
|
+
"showClear": {
|
|
1596
|
+
"type": "boolean"
|
|
1597
|
+
}
|
|
1598
|
+
}
|
|
1599
|
+
},
|
|
1577
1600
|
"dialog": {
|
|
1578
1601
|
"type": "object",
|
|
1579
1602
|
"properties": {
|
|
@@ -1625,6 +1648,7 @@
|
|
|
1625
1648
|
"fieldMetadata.valueField",
|
|
1626
1649
|
"fieldMetadata.displayField",
|
|
1627
1650
|
"fieldMetadata.searchable",
|
|
1651
|
+
"fieldMetadata.actions",
|
|
1628
1652
|
"fieldMetadata.dialog"
|
|
1629
1653
|
],
|
|
1630
1654
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -1658,7 +1682,7 @@
|
|
|
1658
1682
|
"examples": [
|
|
1659
1683
|
{
|
|
1660
1684
|
"id": "configure-entity-lookup",
|
|
1661
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
1685
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
1662
1686
|
"operationId": "field.entityLookup.configure",
|
|
1663
1687
|
"params": {
|
|
1664
1688
|
"optionSource": {
|
|
@@ -1682,6 +1706,11 @@
|
|
|
1682
1706
|
"valueField": "id",
|
|
1683
1707
|
"displayField": "name",
|
|
1684
1708
|
"searchable": true,
|
|
1709
|
+
"actions": {
|
|
1710
|
+
"showDetail": true,
|
|
1711
|
+
"showChange": false,
|
|
1712
|
+
"showClear": true
|
|
1713
|
+
},
|
|
1685
1714
|
"dialog": {
|
|
1686
1715
|
"enabled": true,
|
|
1687
1716
|
"size": "lg",
|
|
@@ -5269,6 +5298,29 @@
|
|
|
5269
5298
|
"searchable": {
|
|
5270
5299
|
"type": "boolean"
|
|
5271
5300
|
},
|
|
5301
|
+
"actions": {
|
|
5302
|
+
"type": "object",
|
|
5303
|
+
"properties": {
|
|
5304
|
+
"showDetail": {
|
|
5305
|
+
"type": "boolean"
|
|
5306
|
+
},
|
|
5307
|
+
"showChange": {
|
|
5308
|
+
"type": "boolean"
|
|
5309
|
+
},
|
|
5310
|
+
"showCopyCode": {
|
|
5311
|
+
"type": "boolean"
|
|
5312
|
+
},
|
|
5313
|
+
"showCopyId": {
|
|
5314
|
+
"type": "boolean"
|
|
5315
|
+
},
|
|
5316
|
+
"showCreate": {
|
|
5317
|
+
"type": "boolean"
|
|
5318
|
+
},
|
|
5319
|
+
"showClear": {
|
|
5320
|
+
"type": "boolean"
|
|
5321
|
+
}
|
|
5322
|
+
}
|
|
5323
|
+
},
|
|
5272
5324
|
"dialog": {
|
|
5273
5325
|
"type": "object",
|
|
5274
5326
|
"properties": {
|
|
@@ -5320,6 +5372,7 @@
|
|
|
5320
5372
|
"fieldMetadata.valueField",
|
|
5321
5373
|
"fieldMetadata.displayField",
|
|
5322
5374
|
"fieldMetadata.searchable",
|
|
5375
|
+
"fieldMetadata.actions",
|
|
5323
5376
|
"fieldMetadata.dialog"
|
|
5324
5377
|
],
|
|
5325
5378
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -5353,7 +5406,7 @@
|
|
|
5353
5406
|
"examples": [
|
|
5354
5407
|
{
|
|
5355
5408
|
"id": "configure-entity-lookup",
|
|
5356
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
5409
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
5357
5410
|
"operationId": "field.entityLookup.configure",
|
|
5358
5411
|
"params": {
|
|
5359
5412
|
"optionSource": {
|
|
@@ -5377,6 +5430,11 @@
|
|
|
5377
5430
|
"valueField": "id",
|
|
5378
5431
|
"displayField": "name",
|
|
5379
5432
|
"searchable": true,
|
|
5433
|
+
"actions": {
|
|
5434
|
+
"showDetail": true,
|
|
5435
|
+
"showChange": false,
|
|
5436
|
+
"showClear": true
|
|
5437
|
+
},
|
|
5380
5438
|
"dialog": {
|
|
5381
5439
|
"enabled": true,
|
|
5382
5440
|
"size": "lg",
|
|
@@ -8846,6 +8904,29 @@
|
|
|
8846
8904
|
"searchable": {
|
|
8847
8905
|
"type": "boolean"
|
|
8848
8906
|
},
|
|
8907
|
+
"actions": {
|
|
8908
|
+
"type": "object",
|
|
8909
|
+
"properties": {
|
|
8910
|
+
"showDetail": {
|
|
8911
|
+
"type": "boolean"
|
|
8912
|
+
},
|
|
8913
|
+
"showChange": {
|
|
8914
|
+
"type": "boolean"
|
|
8915
|
+
},
|
|
8916
|
+
"showCopyCode": {
|
|
8917
|
+
"type": "boolean"
|
|
8918
|
+
},
|
|
8919
|
+
"showCopyId": {
|
|
8920
|
+
"type": "boolean"
|
|
8921
|
+
},
|
|
8922
|
+
"showCreate": {
|
|
8923
|
+
"type": "boolean"
|
|
8924
|
+
},
|
|
8925
|
+
"showClear": {
|
|
8926
|
+
"type": "boolean"
|
|
8927
|
+
}
|
|
8928
|
+
}
|
|
8929
|
+
},
|
|
8849
8930
|
"dialog": {
|
|
8850
8931
|
"type": "object",
|
|
8851
8932
|
"properties": {
|
|
@@ -8897,6 +8978,7 @@
|
|
|
8897
8978
|
"fieldMetadata.valueField",
|
|
8898
8979
|
"fieldMetadata.displayField",
|
|
8899
8980
|
"fieldMetadata.searchable",
|
|
8981
|
+
"fieldMetadata.actions",
|
|
8900
8982
|
"fieldMetadata.dialog"
|
|
8901
8983
|
],
|
|
8902
8984
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -8930,7 +9012,7 @@
|
|
|
8930
9012
|
"examples": [
|
|
8931
9013
|
{
|
|
8932
9014
|
"id": "configure-entity-lookup",
|
|
8933
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
9015
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
8934
9016
|
"operationId": "field.entityLookup.configure",
|
|
8935
9017
|
"params": {
|
|
8936
9018
|
"optionSource": {
|
|
@@ -8954,6 +9036,11 @@
|
|
|
8954
9036
|
"valueField": "id",
|
|
8955
9037
|
"displayField": "name",
|
|
8956
9038
|
"searchable": true,
|
|
9039
|
+
"actions": {
|
|
9040
|
+
"showDetail": true,
|
|
9041
|
+
"showChange": false,
|
|
9042
|
+
"showClear": true
|
|
9043
|
+
},
|
|
8957
9044
|
"dialog": {
|
|
8958
9045
|
"enabled": true,
|
|
8959
9046
|
"size": "lg",
|
|
@@ -12438,6 +12525,29 @@
|
|
|
12438
12525
|
"searchable": {
|
|
12439
12526
|
"type": "boolean"
|
|
12440
12527
|
},
|
|
12528
|
+
"actions": {
|
|
12529
|
+
"type": "object",
|
|
12530
|
+
"properties": {
|
|
12531
|
+
"showDetail": {
|
|
12532
|
+
"type": "boolean"
|
|
12533
|
+
},
|
|
12534
|
+
"showChange": {
|
|
12535
|
+
"type": "boolean"
|
|
12536
|
+
},
|
|
12537
|
+
"showCopyCode": {
|
|
12538
|
+
"type": "boolean"
|
|
12539
|
+
},
|
|
12540
|
+
"showCopyId": {
|
|
12541
|
+
"type": "boolean"
|
|
12542
|
+
},
|
|
12543
|
+
"showCreate": {
|
|
12544
|
+
"type": "boolean"
|
|
12545
|
+
},
|
|
12546
|
+
"showClear": {
|
|
12547
|
+
"type": "boolean"
|
|
12548
|
+
}
|
|
12549
|
+
}
|
|
12550
|
+
},
|
|
12441
12551
|
"dialog": {
|
|
12442
12552
|
"type": "object",
|
|
12443
12553
|
"properties": {
|
|
@@ -12489,6 +12599,7 @@
|
|
|
12489
12599
|
"fieldMetadata.valueField",
|
|
12490
12600
|
"fieldMetadata.displayField",
|
|
12491
12601
|
"fieldMetadata.searchable",
|
|
12602
|
+
"fieldMetadata.actions",
|
|
12492
12603
|
"fieldMetadata.dialog"
|
|
12493
12604
|
],
|
|
12494
12605
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -12522,7 +12633,7 @@
|
|
|
12522
12633
|
"examples": [
|
|
12523
12634
|
{
|
|
12524
12635
|
"id": "configure-entity-lookup",
|
|
12525
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
12636
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
12526
12637
|
"operationId": "field.entityLookup.configure",
|
|
12527
12638
|
"params": {
|
|
12528
12639
|
"optionSource": {
|
|
@@ -12546,6 +12657,11 @@
|
|
|
12546
12657
|
"valueField": "id",
|
|
12547
12658
|
"displayField": "name",
|
|
12548
12659
|
"searchable": true,
|
|
12660
|
+
"actions": {
|
|
12661
|
+
"showDetail": true,
|
|
12662
|
+
"showChange": false,
|
|
12663
|
+
"showClear": true
|
|
12664
|
+
},
|
|
12549
12665
|
"dialog": {
|
|
12550
12666
|
"enabled": true,
|
|
12551
12667
|
"size": "lg",
|
|
@@ -17581,6 +17697,29 @@
|
|
|
17581
17697
|
"searchable": {
|
|
17582
17698
|
"type": "boolean"
|
|
17583
17699
|
},
|
|
17700
|
+
"actions": {
|
|
17701
|
+
"type": "object",
|
|
17702
|
+
"properties": {
|
|
17703
|
+
"showDetail": {
|
|
17704
|
+
"type": "boolean"
|
|
17705
|
+
},
|
|
17706
|
+
"showChange": {
|
|
17707
|
+
"type": "boolean"
|
|
17708
|
+
},
|
|
17709
|
+
"showCopyCode": {
|
|
17710
|
+
"type": "boolean"
|
|
17711
|
+
},
|
|
17712
|
+
"showCopyId": {
|
|
17713
|
+
"type": "boolean"
|
|
17714
|
+
},
|
|
17715
|
+
"showCreate": {
|
|
17716
|
+
"type": "boolean"
|
|
17717
|
+
},
|
|
17718
|
+
"showClear": {
|
|
17719
|
+
"type": "boolean"
|
|
17720
|
+
}
|
|
17721
|
+
}
|
|
17722
|
+
},
|
|
17584
17723
|
"dialog": {
|
|
17585
17724
|
"type": "object",
|
|
17586
17725
|
"properties": {
|
|
@@ -17632,6 +17771,7 @@
|
|
|
17632
17771
|
"fieldMetadata.valueField",
|
|
17633
17772
|
"fieldMetadata.displayField",
|
|
17634
17773
|
"fieldMetadata.searchable",
|
|
17774
|
+
"fieldMetadata.actions",
|
|
17635
17775
|
"fieldMetadata.dialog"
|
|
17636
17776
|
],
|
|
17637
17777
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -17665,7 +17805,7 @@
|
|
|
17665
17805
|
"examples": [
|
|
17666
17806
|
{
|
|
17667
17807
|
"id": "configure-entity-lookup",
|
|
17668
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
17808
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
17669
17809
|
"operationId": "field.entityLookup.configure",
|
|
17670
17810
|
"params": {
|
|
17671
17811
|
"optionSource": {
|
|
@@ -17689,6 +17829,11 @@
|
|
|
17689
17829
|
"valueField": "id",
|
|
17690
17830
|
"displayField": "name",
|
|
17691
17831
|
"searchable": true,
|
|
17832
|
+
"actions": {
|
|
17833
|
+
"showDetail": true,
|
|
17834
|
+
"showChange": false,
|
|
17835
|
+
"showClear": true
|
|
17836
|
+
},
|
|
17692
17837
|
"dialog": {
|
|
17693
17838
|
"enabled": true,
|
|
17694
17839
|
"size": "lg",
|
|
@@ -21182,6 +21327,29 @@
|
|
|
21182
21327
|
"searchable": {
|
|
21183
21328
|
"type": "boolean"
|
|
21184
21329
|
},
|
|
21330
|
+
"actions": {
|
|
21331
|
+
"type": "object",
|
|
21332
|
+
"properties": {
|
|
21333
|
+
"showDetail": {
|
|
21334
|
+
"type": "boolean"
|
|
21335
|
+
},
|
|
21336
|
+
"showChange": {
|
|
21337
|
+
"type": "boolean"
|
|
21338
|
+
},
|
|
21339
|
+
"showCopyCode": {
|
|
21340
|
+
"type": "boolean"
|
|
21341
|
+
},
|
|
21342
|
+
"showCopyId": {
|
|
21343
|
+
"type": "boolean"
|
|
21344
|
+
},
|
|
21345
|
+
"showCreate": {
|
|
21346
|
+
"type": "boolean"
|
|
21347
|
+
},
|
|
21348
|
+
"showClear": {
|
|
21349
|
+
"type": "boolean"
|
|
21350
|
+
}
|
|
21351
|
+
}
|
|
21352
|
+
},
|
|
21185
21353
|
"dialog": {
|
|
21186
21354
|
"type": "object",
|
|
21187
21355
|
"properties": {
|
|
@@ -21233,6 +21401,7 @@
|
|
|
21233
21401
|
"fieldMetadata.valueField",
|
|
21234
21402
|
"fieldMetadata.displayField",
|
|
21235
21403
|
"fieldMetadata.searchable",
|
|
21404
|
+
"fieldMetadata.actions",
|
|
21236
21405
|
"fieldMetadata.dialog"
|
|
21237
21406
|
],
|
|
21238
21407
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -21266,7 +21435,7 @@
|
|
|
21266
21435
|
"examples": [
|
|
21267
21436
|
{
|
|
21268
21437
|
"id": "configure-entity-lookup",
|
|
21269
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
21438
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
21270
21439
|
"operationId": "field.entityLookup.configure",
|
|
21271
21440
|
"params": {
|
|
21272
21441
|
"optionSource": {
|
|
@@ -21290,6 +21459,11 @@
|
|
|
21290
21459
|
"valueField": "id",
|
|
21291
21460
|
"displayField": "name",
|
|
21292
21461
|
"searchable": true,
|
|
21462
|
+
"actions": {
|
|
21463
|
+
"showDetail": true,
|
|
21464
|
+
"showChange": false,
|
|
21465
|
+
"showClear": true
|
|
21466
|
+
},
|
|
21293
21467
|
"dialog": {
|
|
21294
21468
|
"enabled": true,
|
|
21295
21469
|
"size": "lg",
|
|
@@ -24765,6 +24939,29 @@
|
|
|
24765
24939
|
"searchable": {
|
|
24766
24940
|
"type": "boolean"
|
|
24767
24941
|
},
|
|
24942
|
+
"actions": {
|
|
24943
|
+
"type": "object",
|
|
24944
|
+
"properties": {
|
|
24945
|
+
"showDetail": {
|
|
24946
|
+
"type": "boolean"
|
|
24947
|
+
},
|
|
24948
|
+
"showChange": {
|
|
24949
|
+
"type": "boolean"
|
|
24950
|
+
},
|
|
24951
|
+
"showCopyCode": {
|
|
24952
|
+
"type": "boolean"
|
|
24953
|
+
},
|
|
24954
|
+
"showCopyId": {
|
|
24955
|
+
"type": "boolean"
|
|
24956
|
+
},
|
|
24957
|
+
"showCreate": {
|
|
24958
|
+
"type": "boolean"
|
|
24959
|
+
},
|
|
24960
|
+
"showClear": {
|
|
24961
|
+
"type": "boolean"
|
|
24962
|
+
}
|
|
24963
|
+
}
|
|
24964
|
+
},
|
|
24768
24965
|
"dialog": {
|
|
24769
24966
|
"type": "object",
|
|
24770
24967
|
"properties": {
|
|
@@ -24816,6 +25013,7 @@
|
|
|
24816
25013
|
"fieldMetadata.valueField",
|
|
24817
25014
|
"fieldMetadata.displayField",
|
|
24818
25015
|
"fieldMetadata.searchable",
|
|
25016
|
+
"fieldMetadata.actions",
|
|
24819
25017
|
"fieldMetadata.dialog"
|
|
24820
25018
|
],
|
|
24821
25019
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -24849,7 +25047,7 @@
|
|
|
24849
25047
|
"examples": [
|
|
24850
25048
|
{
|
|
24851
25049
|
"id": "configure-entity-lookup",
|
|
24852
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
25050
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
24853
25051
|
"operationId": "field.entityLookup.configure",
|
|
24854
25052
|
"params": {
|
|
24855
25053
|
"optionSource": {
|
|
@@ -24873,6 +25071,11 @@
|
|
|
24873
25071
|
"valueField": "id",
|
|
24874
25072
|
"displayField": "name",
|
|
24875
25073
|
"searchable": true,
|
|
25074
|
+
"actions": {
|
|
25075
|
+
"showDetail": true,
|
|
25076
|
+
"showChange": false,
|
|
25077
|
+
"showClear": true
|
|
25078
|
+
},
|
|
24876
25079
|
"dialog": {
|
|
24877
25080
|
"enabled": true,
|
|
24878
25081
|
"size": "lg",
|
|
@@ -26531,6 +26734,29 @@
|
|
|
26531
26734
|
"searchable": {
|
|
26532
26735
|
"type": "boolean"
|
|
26533
26736
|
},
|
|
26737
|
+
"actions": {
|
|
26738
|
+
"type": "object",
|
|
26739
|
+
"properties": {
|
|
26740
|
+
"showDetail": {
|
|
26741
|
+
"type": "boolean"
|
|
26742
|
+
},
|
|
26743
|
+
"showChange": {
|
|
26744
|
+
"type": "boolean"
|
|
26745
|
+
},
|
|
26746
|
+
"showCopyCode": {
|
|
26747
|
+
"type": "boolean"
|
|
26748
|
+
},
|
|
26749
|
+
"showCopyId": {
|
|
26750
|
+
"type": "boolean"
|
|
26751
|
+
},
|
|
26752
|
+
"showCreate": {
|
|
26753
|
+
"type": "boolean"
|
|
26754
|
+
},
|
|
26755
|
+
"showClear": {
|
|
26756
|
+
"type": "boolean"
|
|
26757
|
+
}
|
|
26758
|
+
}
|
|
26759
|
+
},
|
|
26534
26760
|
"dialog": {
|
|
26535
26761
|
"type": "object",
|
|
26536
26762
|
"properties": {
|
|
@@ -26582,6 +26808,7 @@
|
|
|
26582
26808
|
"fieldMetadata.valueField",
|
|
26583
26809
|
"fieldMetadata.displayField",
|
|
26584
26810
|
"fieldMetadata.searchable",
|
|
26811
|
+
"fieldMetadata.actions",
|
|
26585
26812
|
"fieldMetadata.dialog"
|
|
26586
26813
|
],
|
|
26587
26814
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -26615,7 +26842,7 @@
|
|
|
26615
26842
|
"examples": [
|
|
26616
26843
|
{
|
|
26617
26844
|
"id": "configure-entity-lookup",
|
|
26618
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
26845
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
26619
26846
|
"operationId": "field.entityLookup.configure",
|
|
26620
26847
|
"params": {
|
|
26621
26848
|
"optionSource": {
|
|
@@ -26639,6 +26866,11 @@
|
|
|
26639
26866
|
"valueField": "id",
|
|
26640
26867
|
"displayField": "name",
|
|
26641
26868
|
"searchable": true,
|
|
26869
|
+
"actions": {
|
|
26870
|
+
"showDetail": true,
|
|
26871
|
+
"showChange": false,
|
|
26872
|
+
"showClear": true
|
|
26873
|
+
},
|
|
26642
26874
|
"dialog": {
|
|
26643
26875
|
"enabled": true,
|
|
26644
26876
|
"size": "lg",
|
|
@@ -26824,9 +27056,9 @@
|
|
|
26824
27056
|
{
|
|
26825
27057
|
"chunkIndex": 17,
|
|
26826
27058
|
"chunkKind": "authoring_manifest",
|
|
26827
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"entity-lookup\",\"title\":\"Entity lookup controls\",\"description\":\"Profile for entity lookup controls that bind to remote resources.\",\"appliesTo\":{\"componentIds\":[\"pdx-entity-lookup\",\"pdx-inline-entity-lookup\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Entity lookup metadata paths such as resourcePath, value/display fields and governed dialog search behavior.\"}],\"operations\":[{\"operationId\":\"field.entityLookup.configure\",\"title\":\"Configure entity lookup field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"optionSource\":{\"type\":\"object\"},\"resourcePath\":{\"type\":\"string\"},\"valueField\":{\"type\":\"string\"},\"displayField\":{\"type\":\"string\"},\"searchable\":{\"type\":\"boolean\"},\"dialog\":{\"type\":\"object\",\"properties\":{\"enabled\":{\"type\":\"boolean\"},\"title\":{\"type\":\"string\"},\"size\":{\"type\":\"string\",\"enum\":[\"sm\",\"md\",\"lg\",\"xl\",\"full\"]},\"previewPanel\":{\"type\":\"boolean\"},\"allowColumnChooser\":{\"type\":\"boolean\"},\"allowSavedViews\":{\"type\":\"boolean\"}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"entity-resource-binding-valid\",\"option-source-valid\",\"option-identity-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.optionSource\",\"fieldMetadata.resourcePath\",\"fieldMetadata.valueField\",\"fieldMetadata.displayField\",\"fieldMetadata.searchable\",\"fieldMetadata.dialog\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"entity-resource-binding-valid\",\"level\":\"error\",\"code\":\"PDFP007\",\"description\":\"Entity lookup controls require canonical resource binding and stable value/display identity fields.\"},{\"validatorId\":\"option-source-valid\",\"level\":\"error\",\"code\":\"PDFP005\",\"description\":\"Option controls require canonical optionSource/options semantics, including cascade dependency mappings when present.\"},{\"validatorId\":\"option-identity-valid\",\"level\":\"error\",\"code\":\"PDFP006\",\"description\":\"Value and display identity fields must exist in local options or the remote option source schema.\"}],\"examples\":[{\"id\":\"configure-entity-lookup\",\"request\":\"Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.\",\"operationId\":\"field.entityLookup.configure\",\"params\":{\"optionSource\":{\"key\":\"user\",\"type\":\"RESOURCE_ENTITY\",\"resourcePath\":\"/users\",\"valuePropertyPath\":\"id\",\"labelPropertyPath\":\"name\",\"includeIds\":false,\"capabilities\":{\"filter\":true,\"byIds\":true},\"dependsOn\":[\"companyId\"],\"dependencyFilterMap\":{\"companyId\":\"companyId\"}},\"valueField\":\"id\",\"displayField\":\"name\",\"searchable\":true,\"dialog\":{\"enabled\":true,\"size\":\"lg\",\"previewPanel\":true}},\"isPositive\":true}]}]}",
|
|
27059
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"entity-lookup\",\"title\":\"Entity lookup controls\",\"description\":\"Profile for entity lookup controls that bind to remote resources.\",\"appliesTo\":{\"componentIds\":[\"pdx-entity-lookup\",\"pdx-inline-entity-lookup\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Entity lookup metadata paths such as resourcePath, value/display fields and governed dialog search behavior.\"}],\"operations\":[{\"operationId\":\"field.entityLookup.configure\",\"title\":\"Configure entity lookup field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"optionSource\":{\"type\":\"object\"},\"resourcePath\":{\"type\":\"string\"},\"valueField\":{\"type\":\"string\"},\"displayField\":{\"type\":\"string\"},\"searchable\":{\"type\":\"boolean\"},\"actions\":{\"type\":\"object\",\"properties\":{\"showDetail\":{\"type\":\"boolean\"},\"showChange\":{\"type\":\"boolean\"},\"showCopyCode\":{\"type\":\"boolean\"},\"showCopyId\":{\"type\":\"boolean\"},\"showCreate\":{\"type\":\"boolean\"},\"showClear\":{\"type\":\"boolean\"}}},\"dialog\":{\"type\":\"object\",\"properties\":{\"enabled\":{\"type\":\"boolean\"},\"title\":{\"type\":\"string\"},\"size\":{\"type\":\"string\",\"enum\":[\"sm\",\"md\",\"lg\",\"xl\",\"full\"]},\"previewPanel\":{\"type\":\"boolean\"},\"allowColumnChooser\":{\"type\":\"boolean\"},\"allowSavedViews\":{\"type\":\"boolean\"}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"entity-resource-binding-valid\",\"option-source-valid\",\"option-identity-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.optionSource\",\"fieldMetadata.resourcePath\",\"fieldMetadata.valueField\",\"fieldMetadata.displayField\",\"fieldMetadata.searchable\",\"fieldMetadata.actions\",\"fieldMetadata.dialog\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"entity-resource-binding-valid\",\"level\":\"error\",\"code\":\"PDFP007\",\"description\":\"Entity lookup controls require canonical resource binding and stable value/display identity fields.\"},{\"validatorId\":\"option-source-valid\",\"level\":\"error\",\"code\":\"PDFP005\",\"description\":\"Option controls require canonical optionSource/options semantics, including cascade dependency mappings when present.\"},{\"validatorId\":\"option-identity-valid\",\"level\":\"error\",\"code\":\"PDFP006\",\"description\":\"Value and display identity fields must exist in local options or the remote option source schema.\"}],\"examples\":[{\"id\":\"configure-entity-lookup\",\"request\":\"Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.\",\"operationId\":\"field.entityLookup.configure\",\"params\":{\"optionSource\":{\"key\":\"user\",\"type\":\"RESOURCE_ENTITY\",\"resourcePath\":\"/users\",\"valuePropertyPath\":\"id\",\"labelPropertyPath\":\"name\",\"includeIds\":false,\"capabilities\":{\"filter\":true,\"byIds\":true},\"dependsOn\":[\"companyId\"],\"dependencyFilterMap\":{\"companyId\":\"companyId\"}},\"valueField\":\"id\",\"displayField\":\"name\",\"searchable\":true,\"actions\":{\"showDetail\":true,\"showChange\":false,\"showClear\":true},\"dialog\":{\"enabled\":true,\"size\":\"lg\",\"previewPanel\":true}},\"isPositive\":true}]}]}",
|
|
26828
27060
|
"sourcePointer": "projects/praxis-dynamic-fields/src/lib/ai/praxis-dynamic-fields-authoring-manifest.ts",
|
|
26829
|
-
"contentHash": "
|
|
27061
|
+
"contentHash": "447b370af0e64f1c08382919310b28fe2366e298d1f10d3bc12b09cd097e4c64",
|
|
26830
27062
|
"sourceKind": "component_definition",
|
|
26831
27063
|
"sourceId": "pdx-entity-lookup",
|
|
26832
27064
|
"corpusVersion": "1.0.0"
|
|
@@ -28393,6 +28625,29 @@
|
|
|
28393
28625
|
"searchable": {
|
|
28394
28626
|
"type": "boolean"
|
|
28395
28627
|
},
|
|
28628
|
+
"actions": {
|
|
28629
|
+
"type": "object",
|
|
28630
|
+
"properties": {
|
|
28631
|
+
"showDetail": {
|
|
28632
|
+
"type": "boolean"
|
|
28633
|
+
},
|
|
28634
|
+
"showChange": {
|
|
28635
|
+
"type": "boolean"
|
|
28636
|
+
},
|
|
28637
|
+
"showCopyCode": {
|
|
28638
|
+
"type": "boolean"
|
|
28639
|
+
},
|
|
28640
|
+
"showCopyId": {
|
|
28641
|
+
"type": "boolean"
|
|
28642
|
+
},
|
|
28643
|
+
"showCreate": {
|
|
28644
|
+
"type": "boolean"
|
|
28645
|
+
},
|
|
28646
|
+
"showClear": {
|
|
28647
|
+
"type": "boolean"
|
|
28648
|
+
}
|
|
28649
|
+
}
|
|
28650
|
+
},
|
|
28396
28651
|
"dialog": {
|
|
28397
28652
|
"type": "object",
|
|
28398
28653
|
"properties": {
|
|
@@ -28444,6 +28699,7 @@
|
|
|
28444
28699
|
"fieldMetadata.valueField",
|
|
28445
28700
|
"fieldMetadata.displayField",
|
|
28446
28701
|
"fieldMetadata.searchable",
|
|
28702
|
+
"fieldMetadata.actions",
|
|
28447
28703
|
"fieldMetadata.dialog"
|
|
28448
28704
|
],
|
|
28449
28705
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -28477,7 +28733,7 @@
|
|
|
28477
28733
|
"examples": [
|
|
28478
28734
|
{
|
|
28479
28735
|
"id": "configure-entity-lookup",
|
|
28480
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
28736
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
28481
28737
|
"operationId": "field.entityLookup.configure",
|
|
28482
28738
|
"params": {
|
|
28483
28739
|
"optionSource": {
|
|
@@ -28501,6 +28757,11 @@
|
|
|
28501
28757
|
"valueField": "id",
|
|
28502
28758
|
"displayField": "name",
|
|
28503
28759
|
"searchable": true,
|
|
28760
|
+
"actions": {
|
|
28761
|
+
"showDetail": true,
|
|
28762
|
+
"showChange": false,
|
|
28763
|
+
"showClear": true
|
|
28764
|
+
},
|
|
28504
28765
|
"dialog": {
|
|
28505
28766
|
"enabled": true,
|
|
28506
28767
|
"size": "lg",
|
|
@@ -31993,6 +32254,29 @@
|
|
|
31993
32254
|
"searchable": {
|
|
31994
32255
|
"type": "boolean"
|
|
31995
32256
|
},
|
|
32257
|
+
"actions": {
|
|
32258
|
+
"type": "object",
|
|
32259
|
+
"properties": {
|
|
32260
|
+
"showDetail": {
|
|
32261
|
+
"type": "boolean"
|
|
32262
|
+
},
|
|
32263
|
+
"showChange": {
|
|
32264
|
+
"type": "boolean"
|
|
32265
|
+
},
|
|
32266
|
+
"showCopyCode": {
|
|
32267
|
+
"type": "boolean"
|
|
32268
|
+
},
|
|
32269
|
+
"showCopyId": {
|
|
32270
|
+
"type": "boolean"
|
|
32271
|
+
},
|
|
32272
|
+
"showCreate": {
|
|
32273
|
+
"type": "boolean"
|
|
32274
|
+
},
|
|
32275
|
+
"showClear": {
|
|
32276
|
+
"type": "boolean"
|
|
32277
|
+
}
|
|
32278
|
+
}
|
|
32279
|
+
},
|
|
31996
32280
|
"dialog": {
|
|
31997
32281
|
"type": "object",
|
|
31998
32282
|
"properties": {
|
|
@@ -32044,6 +32328,7 @@
|
|
|
32044
32328
|
"fieldMetadata.valueField",
|
|
32045
32329
|
"fieldMetadata.displayField",
|
|
32046
32330
|
"fieldMetadata.searchable",
|
|
32331
|
+
"fieldMetadata.actions",
|
|
32047
32332
|
"fieldMetadata.dialog"
|
|
32048
32333
|
],
|
|
32049
32334
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -32077,7 +32362,7 @@
|
|
|
32077
32362
|
"examples": [
|
|
32078
32363
|
{
|
|
32079
32364
|
"id": "configure-entity-lookup",
|
|
32080
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
32365
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
32081
32366
|
"operationId": "field.entityLookup.configure",
|
|
32082
32367
|
"params": {
|
|
32083
32368
|
"optionSource": {
|
|
@@ -32101,6 +32386,11 @@
|
|
|
32101
32386
|
"valueField": "id",
|
|
32102
32387
|
"displayField": "name",
|
|
32103
32388
|
"searchable": true,
|
|
32389
|
+
"actions": {
|
|
32390
|
+
"showDetail": true,
|
|
32391
|
+
"showChange": false,
|
|
32392
|
+
"showClear": true
|
|
32393
|
+
},
|
|
32104
32394
|
"dialog": {
|
|
32105
32395
|
"enabled": true,
|
|
32106
32396
|
"size": "lg",
|
|
@@ -35595,6 +35885,29 @@
|
|
|
35595
35885
|
"searchable": {
|
|
35596
35886
|
"type": "boolean"
|
|
35597
35887
|
},
|
|
35888
|
+
"actions": {
|
|
35889
|
+
"type": "object",
|
|
35890
|
+
"properties": {
|
|
35891
|
+
"showDetail": {
|
|
35892
|
+
"type": "boolean"
|
|
35893
|
+
},
|
|
35894
|
+
"showChange": {
|
|
35895
|
+
"type": "boolean"
|
|
35896
|
+
},
|
|
35897
|
+
"showCopyCode": {
|
|
35898
|
+
"type": "boolean"
|
|
35899
|
+
},
|
|
35900
|
+
"showCopyId": {
|
|
35901
|
+
"type": "boolean"
|
|
35902
|
+
},
|
|
35903
|
+
"showCreate": {
|
|
35904
|
+
"type": "boolean"
|
|
35905
|
+
},
|
|
35906
|
+
"showClear": {
|
|
35907
|
+
"type": "boolean"
|
|
35908
|
+
}
|
|
35909
|
+
}
|
|
35910
|
+
},
|
|
35598
35911
|
"dialog": {
|
|
35599
35912
|
"type": "object",
|
|
35600
35913
|
"properties": {
|
|
@@ -35646,6 +35959,7 @@
|
|
|
35646
35959
|
"fieldMetadata.valueField",
|
|
35647
35960
|
"fieldMetadata.displayField",
|
|
35648
35961
|
"fieldMetadata.searchable",
|
|
35962
|
+
"fieldMetadata.actions",
|
|
35649
35963
|
"fieldMetadata.dialog"
|
|
35650
35964
|
],
|
|
35651
35965
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -35679,7 +35993,7 @@
|
|
|
35679
35993
|
"examples": [
|
|
35680
35994
|
{
|
|
35681
35995
|
"id": "configure-entity-lookup",
|
|
35682
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
35996
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
35683
35997
|
"operationId": "field.entityLookup.configure",
|
|
35684
35998
|
"params": {
|
|
35685
35999
|
"optionSource": {
|
|
@@ -35703,6 +36017,11 @@
|
|
|
35703
36017
|
"valueField": "id",
|
|
35704
36018
|
"displayField": "name",
|
|
35705
36019
|
"searchable": true,
|
|
36020
|
+
"actions": {
|
|
36021
|
+
"showDetail": true,
|
|
36022
|
+
"showChange": false,
|
|
36023
|
+
"showClear": true
|
|
36024
|
+
},
|
|
35706
36025
|
"dialog": {
|
|
35707
36026
|
"enabled": true,
|
|
35708
36027
|
"size": "lg",
|
|
@@ -39195,6 +39514,29 @@
|
|
|
39195
39514
|
"searchable": {
|
|
39196
39515
|
"type": "boolean"
|
|
39197
39516
|
},
|
|
39517
|
+
"actions": {
|
|
39518
|
+
"type": "object",
|
|
39519
|
+
"properties": {
|
|
39520
|
+
"showDetail": {
|
|
39521
|
+
"type": "boolean"
|
|
39522
|
+
},
|
|
39523
|
+
"showChange": {
|
|
39524
|
+
"type": "boolean"
|
|
39525
|
+
},
|
|
39526
|
+
"showCopyCode": {
|
|
39527
|
+
"type": "boolean"
|
|
39528
|
+
},
|
|
39529
|
+
"showCopyId": {
|
|
39530
|
+
"type": "boolean"
|
|
39531
|
+
},
|
|
39532
|
+
"showCreate": {
|
|
39533
|
+
"type": "boolean"
|
|
39534
|
+
},
|
|
39535
|
+
"showClear": {
|
|
39536
|
+
"type": "boolean"
|
|
39537
|
+
}
|
|
39538
|
+
}
|
|
39539
|
+
},
|
|
39198
39540
|
"dialog": {
|
|
39199
39541
|
"type": "object",
|
|
39200
39542
|
"properties": {
|
|
@@ -39246,6 +39588,7 @@
|
|
|
39246
39588
|
"fieldMetadata.valueField",
|
|
39247
39589
|
"fieldMetadata.displayField",
|
|
39248
39590
|
"fieldMetadata.searchable",
|
|
39591
|
+
"fieldMetadata.actions",
|
|
39249
39592
|
"fieldMetadata.dialog"
|
|
39250
39593
|
],
|
|
39251
39594
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -39279,7 +39622,7 @@
|
|
|
39279
39622
|
"examples": [
|
|
39280
39623
|
{
|
|
39281
39624
|
"id": "configure-entity-lookup",
|
|
39282
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
39625
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
39283
39626
|
"operationId": "field.entityLookup.configure",
|
|
39284
39627
|
"params": {
|
|
39285
39628
|
"optionSource": {
|
|
@@ -39303,6 +39646,11 @@
|
|
|
39303
39646
|
"valueField": "id",
|
|
39304
39647
|
"displayField": "name",
|
|
39305
39648
|
"searchable": true,
|
|
39649
|
+
"actions": {
|
|
39650
|
+
"showDetail": true,
|
|
39651
|
+
"showChange": false,
|
|
39652
|
+
"showClear": true
|
|
39653
|
+
},
|
|
39306
39654
|
"dialog": {
|
|
39307
39655
|
"enabled": true,
|
|
39308
39656
|
"size": "lg",
|
|
@@ -42782,6 +43130,29 @@
|
|
|
42782
43130
|
"searchable": {
|
|
42783
43131
|
"type": "boolean"
|
|
42784
43132
|
},
|
|
43133
|
+
"actions": {
|
|
43134
|
+
"type": "object",
|
|
43135
|
+
"properties": {
|
|
43136
|
+
"showDetail": {
|
|
43137
|
+
"type": "boolean"
|
|
43138
|
+
},
|
|
43139
|
+
"showChange": {
|
|
43140
|
+
"type": "boolean"
|
|
43141
|
+
},
|
|
43142
|
+
"showCopyCode": {
|
|
43143
|
+
"type": "boolean"
|
|
43144
|
+
},
|
|
43145
|
+
"showCopyId": {
|
|
43146
|
+
"type": "boolean"
|
|
43147
|
+
},
|
|
43148
|
+
"showCreate": {
|
|
43149
|
+
"type": "boolean"
|
|
43150
|
+
},
|
|
43151
|
+
"showClear": {
|
|
43152
|
+
"type": "boolean"
|
|
43153
|
+
}
|
|
43154
|
+
}
|
|
43155
|
+
},
|
|
42785
43156
|
"dialog": {
|
|
42786
43157
|
"type": "object",
|
|
42787
43158
|
"properties": {
|
|
@@ -42833,6 +43204,7 @@
|
|
|
42833
43204
|
"fieldMetadata.valueField",
|
|
42834
43205
|
"fieldMetadata.displayField",
|
|
42835
43206
|
"fieldMetadata.searchable",
|
|
43207
|
+
"fieldMetadata.actions",
|
|
42836
43208
|
"fieldMetadata.dialog"
|
|
42837
43209
|
],
|
|
42838
43210
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -42866,7 +43238,7 @@
|
|
|
42866
43238
|
"examples": [
|
|
42867
43239
|
{
|
|
42868
43240
|
"id": "configure-entity-lookup",
|
|
42869
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
43241
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
42870
43242
|
"operationId": "field.entityLookup.configure",
|
|
42871
43243
|
"params": {
|
|
42872
43244
|
"optionSource": {
|
|
@@ -42890,6 +43262,11 @@
|
|
|
42890
43262
|
"valueField": "id",
|
|
42891
43263
|
"displayField": "name",
|
|
42892
43264
|
"searchable": true,
|
|
43265
|
+
"actions": {
|
|
43266
|
+
"showDetail": true,
|
|
43267
|
+
"showChange": false,
|
|
43268
|
+
"showClear": true
|
|
43269
|
+
},
|
|
42893
43270
|
"dialog": {
|
|
42894
43271
|
"enabled": true,
|
|
42895
43272
|
"size": "lg",
|
|
@@ -46368,6 +46745,29 @@
|
|
|
46368
46745
|
"searchable": {
|
|
46369
46746
|
"type": "boolean"
|
|
46370
46747
|
},
|
|
46748
|
+
"actions": {
|
|
46749
|
+
"type": "object",
|
|
46750
|
+
"properties": {
|
|
46751
|
+
"showDetail": {
|
|
46752
|
+
"type": "boolean"
|
|
46753
|
+
},
|
|
46754
|
+
"showChange": {
|
|
46755
|
+
"type": "boolean"
|
|
46756
|
+
},
|
|
46757
|
+
"showCopyCode": {
|
|
46758
|
+
"type": "boolean"
|
|
46759
|
+
},
|
|
46760
|
+
"showCopyId": {
|
|
46761
|
+
"type": "boolean"
|
|
46762
|
+
},
|
|
46763
|
+
"showCreate": {
|
|
46764
|
+
"type": "boolean"
|
|
46765
|
+
},
|
|
46766
|
+
"showClear": {
|
|
46767
|
+
"type": "boolean"
|
|
46768
|
+
}
|
|
46769
|
+
}
|
|
46770
|
+
},
|
|
46371
46771
|
"dialog": {
|
|
46372
46772
|
"type": "object",
|
|
46373
46773
|
"properties": {
|
|
@@ -46419,6 +46819,7 @@
|
|
|
46419
46819
|
"fieldMetadata.valueField",
|
|
46420
46820
|
"fieldMetadata.displayField",
|
|
46421
46821
|
"fieldMetadata.searchable",
|
|
46822
|
+
"fieldMetadata.actions",
|
|
46422
46823
|
"fieldMetadata.dialog"
|
|
46423
46824
|
],
|
|
46424
46825
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -46452,7 +46853,7 @@
|
|
|
46452
46853
|
"examples": [
|
|
46453
46854
|
{
|
|
46454
46855
|
"id": "configure-entity-lookup",
|
|
46455
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
46856
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
46456
46857
|
"operationId": "field.entityLookup.configure",
|
|
46457
46858
|
"params": {
|
|
46458
46859
|
"optionSource": {
|
|
@@ -46476,6 +46877,11 @@
|
|
|
46476
46877
|
"valueField": "id",
|
|
46477
46878
|
"displayField": "name",
|
|
46478
46879
|
"searchable": true,
|
|
46880
|
+
"actions": {
|
|
46881
|
+
"showDetail": true,
|
|
46882
|
+
"showChange": false,
|
|
46883
|
+
"showClear": true
|
|
46884
|
+
},
|
|
46479
46885
|
"dialog": {
|
|
46480
46886
|
"enabled": true,
|
|
46481
46887
|
"size": "lg",
|
|
@@ -49954,6 +50360,29 @@
|
|
|
49954
50360
|
"searchable": {
|
|
49955
50361
|
"type": "boolean"
|
|
49956
50362
|
},
|
|
50363
|
+
"actions": {
|
|
50364
|
+
"type": "object",
|
|
50365
|
+
"properties": {
|
|
50366
|
+
"showDetail": {
|
|
50367
|
+
"type": "boolean"
|
|
50368
|
+
},
|
|
50369
|
+
"showChange": {
|
|
50370
|
+
"type": "boolean"
|
|
50371
|
+
},
|
|
50372
|
+
"showCopyCode": {
|
|
50373
|
+
"type": "boolean"
|
|
50374
|
+
},
|
|
50375
|
+
"showCopyId": {
|
|
50376
|
+
"type": "boolean"
|
|
50377
|
+
},
|
|
50378
|
+
"showCreate": {
|
|
50379
|
+
"type": "boolean"
|
|
50380
|
+
},
|
|
50381
|
+
"showClear": {
|
|
50382
|
+
"type": "boolean"
|
|
50383
|
+
}
|
|
50384
|
+
}
|
|
50385
|
+
},
|
|
49957
50386
|
"dialog": {
|
|
49958
50387
|
"type": "object",
|
|
49959
50388
|
"properties": {
|
|
@@ -50005,6 +50434,7 @@
|
|
|
50005
50434
|
"fieldMetadata.valueField",
|
|
50006
50435
|
"fieldMetadata.displayField",
|
|
50007
50436
|
"fieldMetadata.searchable",
|
|
50437
|
+
"fieldMetadata.actions",
|
|
50008
50438
|
"fieldMetadata.dialog"
|
|
50009
50439
|
],
|
|
50010
50440
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -50038,7 +50468,7 @@
|
|
|
50038
50468
|
"examples": [
|
|
50039
50469
|
{
|
|
50040
50470
|
"id": "configure-entity-lookup",
|
|
50041
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
50471
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
50042
50472
|
"operationId": "field.entityLookup.configure",
|
|
50043
50473
|
"params": {
|
|
50044
50474
|
"optionSource": {
|
|
@@ -50062,6 +50492,11 @@
|
|
|
50062
50492
|
"valueField": "id",
|
|
50063
50493
|
"displayField": "name",
|
|
50064
50494
|
"searchable": true,
|
|
50495
|
+
"actions": {
|
|
50496
|
+
"showDetail": true,
|
|
50497
|
+
"showChange": false,
|
|
50498
|
+
"showClear": true
|
|
50499
|
+
},
|
|
50065
50500
|
"dialog": {
|
|
50066
50501
|
"enabled": true,
|
|
50067
50502
|
"size": "lg",
|
|
@@ -53535,6 +53970,29 @@
|
|
|
53535
53970
|
"searchable": {
|
|
53536
53971
|
"type": "boolean"
|
|
53537
53972
|
},
|
|
53973
|
+
"actions": {
|
|
53974
|
+
"type": "object",
|
|
53975
|
+
"properties": {
|
|
53976
|
+
"showDetail": {
|
|
53977
|
+
"type": "boolean"
|
|
53978
|
+
},
|
|
53979
|
+
"showChange": {
|
|
53980
|
+
"type": "boolean"
|
|
53981
|
+
},
|
|
53982
|
+
"showCopyCode": {
|
|
53983
|
+
"type": "boolean"
|
|
53984
|
+
},
|
|
53985
|
+
"showCopyId": {
|
|
53986
|
+
"type": "boolean"
|
|
53987
|
+
},
|
|
53988
|
+
"showCreate": {
|
|
53989
|
+
"type": "boolean"
|
|
53990
|
+
},
|
|
53991
|
+
"showClear": {
|
|
53992
|
+
"type": "boolean"
|
|
53993
|
+
}
|
|
53994
|
+
}
|
|
53995
|
+
},
|
|
53538
53996
|
"dialog": {
|
|
53539
53997
|
"type": "object",
|
|
53540
53998
|
"properties": {
|
|
@@ -53586,6 +54044,7 @@
|
|
|
53586
54044
|
"fieldMetadata.valueField",
|
|
53587
54045
|
"fieldMetadata.displayField",
|
|
53588
54046
|
"fieldMetadata.searchable",
|
|
54047
|
+
"fieldMetadata.actions",
|
|
53589
54048
|
"fieldMetadata.dialog"
|
|
53590
54049
|
],
|
|
53591
54050
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -53619,7 +54078,7 @@
|
|
|
53619
54078
|
"examples": [
|
|
53620
54079
|
{
|
|
53621
54080
|
"id": "configure-entity-lookup",
|
|
53622
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
54081
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
53623
54082
|
"operationId": "field.entityLookup.configure",
|
|
53624
54083
|
"params": {
|
|
53625
54084
|
"optionSource": {
|
|
@@ -53643,6 +54102,11 @@
|
|
|
53643
54102
|
"valueField": "id",
|
|
53644
54103
|
"displayField": "name",
|
|
53645
54104
|
"searchable": true,
|
|
54105
|
+
"actions": {
|
|
54106
|
+
"showDetail": true,
|
|
54107
|
+
"showChange": false,
|
|
54108
|
+
"showClear": true
|
|
54109
|
+
},
|
|
53646
54110
|
"dialog": {
|
|
53647
54111
|
"enabled": true,
|
|
53648
54112
|
"size": "lg",
|
|
@@ -57112,6 +57576,29 @@
|
|
|
57112
57576
|
"searchable": {
|
|
57113
57577
|
"type": "boolean"
|
|
57114
57578
|
},
|
|
57579
|
+
"actions": {
|
|
57580
|
+
"type": "object",
|
|
57581
|
+
"properties": {
|
|
57582
|
+
"showDetail": {
|
|
57583
|
+
"type": "boolean"
|
|
57584
|
+
},
|
|
57585
|
+
"showChange": {
|
|
57586
|
+
"type": "boolean"
|
|
57587
|
+
},
|
|
57588
|
+
"showCopyCode": {
|
|
57589
|
+
"type": "boolean"
|
|
57590
|
+
},
|
|
57591
|
+
"showCopyId": {
|
|
57592
|
+
"type": "boolean"
|
|
57593
|
+
},
|
|
57594
|
+
"showCreate": {
|
|
57595
|
+
"type": "boolean"
|
|
57596
|
+
},
|
|
57597
|
+
"showClear": {
|
|
57598
|
+
"type": "boolean"
|
|
57599
|
+
}
|
|
57600
|
+
}
|
|
57601
|
+
},
|
|
57115
57602
|
"dialog": {
|
|
57116
57603
|
"type": "object",
|
|
57117
57604
|
"properties": {
|
|
@@ -57163,6 +57650,7 @@
|
|
|
57163
57650
|
"fieldMetadata.valueField",
|
|
57164
57651
|
"fieldMetadata.displayField",
|
|
57165
57652
|
"fieldMetadata.searchable",
|
|
57653
|
+
"fieldMetadata.actions",
|
|
57166
57654
|
"fieldMetadata.dialog"
|
|
57167
57655
|
],
|
|
57168
57656
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -57196,7 +57684,7 @@
|
|
|
57196
57684
|
"examples": [
|
|
57197
57685
|
{
|
|
57198
57686
|
"id": "configure-entity-lookup",
|
|
57199
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
57687
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
57200
57688
|
"operationId": "field.entityLookup.configure",
|
|
57201
57689
|
"params": {
|
|
57202
57690
|
"optionSource": {
|
|
@@ -57220,6 +57708,11 @@
|
|
|
57220
57708
|
"valueField": "id",
|
|
57221
57709
|
"displayField": "name",
|
|
57222
57710
|
"searchable": true,
|
|
57711
|
+
"actions": {
|
|
57712
|
+
"showDetail": true,
|
|
57713
|
+
"showChange": false,
|
|
57714
|
+
"showClear": true
|
|
57715
|
+
},
|
|
57223
57716
|
"dialog": {
|
|
57224
57717
|
"enabled": true,
|
|
57225
57718
|
"size": "lg",
|
|
@@ -60696,6 +61189,29 @@
|
|
|
60696
61189
|
"searchable": {
|
|
60697
61190
|
"type": "boolean"
|
|
60698
61191
|
},
|
|
61192
|
+
"actions": {
|
|
61193
|
+
"type": "object",
|
|
61194
|
+
"properties": {
|
|
61195
|
+
"showDetail": {
|
|
61196
|
+
"type": "boolean"
|
|
61197
|
+
},
|
|
61198
|
+
"showChange": {
|
|
61199
|
+
"type": "boolean"
|
|
61200
|
+
},
|
|
61201
|
+
"showCopyCode": {
|
|
61202
|
+
"type": "boolean"
|
|
61203
|
+
},
|
|
61204
|
+
"showCopyId": {
|
|
61205
|
+
"type": "boolean"
|
|
61206
|
+
},
|
|
61207
|
+
"showCreate": {
|
|
61208
|
+
"type": "boolean"
|
|
61209
|
+
},
|
|
61210
|
+
"showClear": {
|
|
61211
|
+
"type": "boolean"
|
|
61212
|
+
}
|
|
61213
|
+
}
|
|
61214
|
+
},
|
|
60699
61215
|
"dialog": {
|
|
60700
61216
|
"type": "object",
|
|
60701
61217
|
"properties": {
|
|
@@ -60747,6 +61263,7 @@
|
|
|
60747
61263
|
"fieldMetadata.valueField",
|
|
60748
61264
|
"fieldMetadata.displayField",
|
|
60749
61265
|
"fieldMetadata.searchable",
|
|
61266
|
+
"fieldMetadata.actions",
|
|
60750
61267
|
"fieldMetadata.dialog"
|
|
60751
61268
|
],
|
|
60752
61269
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -60780,7 +61297,7 @@
|
|
|
60780
61297
|
"examples": [
|
|
60781
61298
|
{
|
|
60782
61299
|
"id": "configure-entity-lookup",
|
|
60783
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
61300
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
60784
61301
|
"operationId": "field.entityLookup.configure",
|
|
60785
61302
|
"params": {
|
|
60786
61303
|
"optionSource": {
|
|
@@ -60804,6 +61321,11 @@
|
|
|
60804
61321
|
"valueField": "id",
|
|
60805
61322
|
"displayField": "name",
|
|
60806
61323
|
"searchable": true,
|
|
61324
|
+
"actions": {
|
|
61325
|
+
"showDetail": true,
|
|
61326
|
+
"showChange": false,
|
|
61327
|
+
"showClear": true
|
|
61328
|
+
},
|
|
60807
61329
|
"dialog": {
|
|
60808
61330
|
"enabled": true,
|
|
60809
61331
|
"size": "lg",
|
|
@@ -64266,6 +64788,29 @@
|
|
|
64266
64788
|
"searchable": {
|
|
64267
64789
|
"type": "boolean"
|
|
64268
64790
|
},
|
|
64791
|
+
"actions": {
|
|
64792
|
+
"type": "object",
|
|
64793
|
+
"properties": {
|
|
64794
|
+
"showDetail": {
|
|
64795
|
+
"type": "boolean"
|
|
64796
|
+
},
|
|
64797
|
+
"showChange": {
|
|
64798
|
+
"type": "boolean"
|
|
64799
|
+
},
|
|
64800
|
+
"showCopyCode": {
|
|
64801
|
+
"type": "boolean"
|
|
64802
|
+
},
|
|
64803
|
+
"showCopyId": {
|
|
64804
|
+
"type": "boolean"
|
|
64805
|
+
},
|
|
64806
|
+
"showCreate": {
|
|
64807
|
+
"type": "boolean"
|
|
64808
|
+
},
|
|
64809
|
+
"showClear": {
|
|
64810
|
+
"type": "boolean"
|
|
64811
|
+
}
|
|
64812
|
+
}
|
|
64813
|
+
},
|
|
64269
64814
|
"dialog": {
|
|
64270
64815
|
"type": "object",
|
|
64271
64816
|
"properties": {
|
|
@@ -64317,6 +64862,7 @@
|
|
|
64317
64862
|
"fieldMetadata.valueField",
|
|
64318
64863
|
"fieldMetadata.displayField",
|
|
64319
64864
|
"fieldMetadata.searchable",
|
|
64865
|
+
"fieldMetadata.actions",
|
|
64320
64866
|
"fieldMetadata.dialog"
|
|
64321
64867
|
],
|
|
64322
64868
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -64350,7 +64896,7 @@
|
|
|
64350
64896
|
"examples": [
|
|
64351
64897
|
{
|
|
64352
64898
|
"id": "configure-entity-lookup",
|
|
64353
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
64899
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
64354
64900
|
"operationId": "field.entityLookup.configure",
|
|
64355
64901
|
"params": {
|
|
64356
64902
|
"optionSource": {
|
|
@@ -64374,6 +64920,11 @@
|
|
|
64374
64920
|
"valueField": "id",
|
|
64375
64921
|
"displayField": "name",
|
|
64376
64922
|
"searchable": true,
|
|
64923
|
+
"actions": {
|
|
64924
|
+
"showDetail": true,
|
|
64925
|
+
"showChange": false,
|
|
64926
|
+
"showClear": true
|
|
64927
|
+
},
|
|
64377
64928
|
"dialog": {
|
|
64378
64929
|
"enabled": true,
|
|
64379
64930
|
"size": "lg",
|
|
@@ -67866,6 +68417,29 @@
|
|
|
67866
68417
|
"searchable": {
|
|
67867
68418
|
"type": "boolean"
|
|
67868
68419
|
},
|
|
68420
|
+
"actions": {
|
|
68421
|
+
"type": "object",
|
|
68422
|
+
"properties": {
|
|
68423
|
+
"showDetail": {
|
|
68424
|
+
"type": "boolean"
|
|
68425
|
+
},
|
|
68426
|
+
"showChange": {
|
|
68427
|
+
"type": "boolean"
|
|
68428
|
+
},
|
|
68429
|
+
"showCopyCode": {
|
|
68430
|
+
"type": "boolean"
|
|
68431
|
+
},
|
|
68432
|
+
"showCopyId": {
|
|
68433
|
+
"type": "boolean"
|
|
68434
|
+
},
|
|
68435
|
+
"showCreate": {
|
|
68436
|
+
"type": "boolean"
|
|
68437
|
+
},
|
|
68438
|
+
"showClear": {
|
|
68439
|
+
"type": "boolean"
|
|
68440
|
+
}
|
|
68441
|
+
}
|
|
68442
|
+
},
|
|
67869
68443
|
"dialog": {
|
|
67870
68444
|
"type": "object",
|
|
67871
68445
|
"properties": {
|
|
@@ -67917,6 +68491,7 @@
|
|
|
67917
68491
|
"fieldMetadata.valueField",
|
|
67918
68492
|
"fieldMetadata.displayField",
|
|
67919
68493
|
"fieldMetadata.searchable",
|
|
68494
|
+
"fieldMetadata.actions",
|
|
67920
68495
|
"fieldMetadata.dialog"
|
|
67921
68496
|
],
|
|
67922
68497
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -67950,7 +68525,7 @@
|
|
|
67950
68525
|
"examples": [
|
|
67951
68526
|
{
|
|
67952
68527
|
"id": "configure-entity-lookup",
|
|
67953
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
68528
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
67954
68529
|
"operationId": "field.entityLookup.configure",
|
|
67955
68530
|
"params": {
|
|
67956
68531
|
"optionSource": {
|
|
@@ -67974,6 +68549,11 @@
|
|
|
67974
68549
|
"valueField": "id",
|
|
67975
68550
|
"displayField": "name",
|
|
67976
68551
|
"searchable": true,
|
|
68552
|
+
"actions": {
|
|
68553
|
+
"showDetail": true,
|
|
68554
|
+
"showChange": false,
|
|
68555
|
+
"showClear": true
|
|
68556
|
+
},
|
|
67977
68557
|
"dialog": {
|
|
67978
68558
|
"enabled": true,
|
|
67979
68559
|
"size": "lg",
|
|
@@ -71445,6 +72025,29 @@
|
|
|
71445
72025
|
"searchable": {
|
|
71446
72026
|
"type": "boolean"
|
|
71447
72027
|
},
|
|
72028
|
+
"actions": {
|
|
72029
|
+
"type": "object",
|
|
72030
|
+
"properties": {
|
|
72031
|
+
"showDetail": {
|
|
72032
|
+
"type": "boolean"
|
|
72033
|
+
},
|
|
72034
|
+
"showChange": {
|
|
72035
|
+
"type": "boolean"
|
|
72036
|
+
},
|
|
72037
|
+
"showCopyCode": {
|
|
72038
|
+
"type": "boolean"
|
|
72039
|
+
},
|
|
72040
|
+
"showCopyId": {
|
|
72041
|
+
"type": "boolean"
|
|
72042
|
+
},
|
|
72043
|
+
"showCreate": {
|
|
72044
|
+
"type": "boolean"
|
|
72045
|
+
},
|
|
72046
|
+
"showClear": {
|
|
72047
|
+
"type": "boolean"
|
|
72048
|
+
}
|
|
72049
|
+
}
|
|
72050
|
+
},
|
|
71448
72051
|
"dialog": {
|
|
71449
72052
|
"type": "object",
|
|
71450
72053
|
"properties": {
|
|
@@ -71496,6 +72099,7 @@
|
|
|
71496
72099
|
"fieldMetadata.valueField",
|
|
71497
72100
|
"fieldMetadata.displayField",
|
|
71498
72101
|
"fieldMetadata.searchable",
|
|
72102
|
+
"fieldMetadata.actions",
|
|
71499
72103
|
"fieldMetadata.dialog"
|
|
71500
72104
|
],
|
|
71501
72105
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -71529,7 +72133,7 @@
|
|
|
71529
72133
|
"examples": [
|
|
71530
72134
|
{
|
|
71531
72135
|
"id": "configure-entity-lookup",
|
|
71532
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
72136
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
71533
72137
|
"operationId": "field.entityLookup.configure",
|
|
71534
72138
|
"params": {
|
|
71535
72139
|
"optionSource": {
|
|
@@ -71553,6 +72157,11 @@
|
|
|
71553
72157
|
"valueField": "id",
|
|
71554
72158
|
"displayField": "name",
|
|
71555
72159
|
"searchable": true,
|
|
72160
|
+
"actions": {
|
|
72161
|
+
"showDetail": true,
|
|
72162
|
+
"showChange": false,
|
|
72163
|
+
"showClear": true
|
|
72164
|
+
},
|
|
71556
72165
|
"dialog": {
|
|
71557
72166
|
"enabled": true,
|
|
71558
72167
|
"size": "lg",
|
|
@@ -75023,6 +75632,29 @@
|
|
|
75023
75632
|
"searchable": {
|
|
75024
75633
|
"type": "boolean"
|
|
75025
75634
|
},
|
|
75635
|
+
"actions": {
|
|
75636
|
+
"type": "object",
|
|
75637
|
+
"properties": {
|
|
75638
|
+
"showDetail": {
|
|
75639
|
+
"type": "boolean"
|
|
75640
|
+
},
|
|
75641
|
+
"showChange": {
|
|
75642
|
+
"type": "boolean"
|
|
75643
|
+
},
|
|
75644
|
+
"showCopyCode": {
|
|
75645
|
+
"type": "boolean"
|
|
75646
|
+
},
|
|
75647
|
+
"showCopyId": {
|
|
75648
|
+
"type": "boolean"
|
|
75649
|
+
},
|
|
75650
|
+
"showCreate": {
|
|
75651
|
+
"type": "boolean"
|
|
75652
|
+
},
|
|
75653
|
+
"showClear": {
|
|
75654
|
+
"type": "boolean"
|
|
75655
|
+
}
|
|
75656
|
+
}
|
|
75657
|
+
},
|
|
75026
75658
|
"dialog": {
|
|
75027
75659
|
"type": "object",
|
|
75028
75660
|
"properties": {
|
|
@@ -75074,6 +75706,7 @@
|
|
|
75074
75706
|
"fieldMetadata.valueField",
|
|
75075
75707
|
"fieldMetadata.displayField",
|
|
75076
75708
|
"fieldMetadata.searchable",
|
|
75709
|
+
"fieldMetadata.actions",
|
|
75077
75710
|
"fieldMetadata.dialog"
|
|
75078
75711
|
],
|
|
75079
75712
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -75107,7 +75740,7 @@
|
|
|
75107
75740
|
"examples": [
|
|
75108
75741
|
{
|
|
75109
75742
|
"id": "configure-entity-lookup",
|
|
75110
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
75743
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
75111
75744
|
"operationId": "field.entityLookup.configure",
|
|
75112
75745
|
"params": {
|
|
75113
75746
|
"optionSource": {
|
|
@@ -75131,6 +75764,11 @@
|
|
|
75131
75764
|
"valueField": "id",
|
|
75132
75765
|
"displayField": "name",
|
|
75133
75766
|
"searchable": true,
|
|
75767
|
+
"actions": {
|
|
75768
|
+
"showDetail": true,
|
|
75769
|
+
"showChange": false,
|
|
75770
|
+
"showClear": true
|
|
75771
|
+
},
|
|
75134
75772
|
"dialog": {
|
|
75135
75773
|
"enabled": true,
|
|
75136
75774
|
"size": "lg",
|
|
@@ -78608,6 +79246,29 @@
|
|
|
78608
79246
|
"searchable": {
|
|
78609
79247
|
"type": "boolean"
|
|
78610
79248
|
},
|
|
79249
|
+
"actions": {
|
|
79250
|
+
"type": "object",
|
|
79251
|
+
"properties": {
|
|
79252
|
+
"showDetail": {
|
|
79253
|
+
"type": "boolean"
|
|
79254
|
+
},
|
|
79255
|
+
"showChange": {
|
|
79256
|
+
"type": "boolean"
|
|
79257
|
+
},
|
|
79258
|
+
"showCopyCode": {
|
|
79259
|
+
"type": "boolean"
|
|
79260
|
+
},
|
|
79261
|
+
"showCopyId": {
|
|
79262
|
+
"type": "boolean"
|
|
79263
|
+
},
|
|
79264
|
+
"showCreate": {
|
|
79265
|
+
"type": "boolean"
|
|
79266
|
+
},
|
|
79267
|
+
"showClear": {
|
|
79268
|
+
"type": "boolean"
|
|
79269
|
+
}
|
|
79270
|
+
}
|
|
79271
|
+
},
|
|
78611
79272
|
"dialog": {
|
|
78612
79273
|
"type": "object",
|
|
78613
79274
|
"properties": {
|
|
@@ -78659,6 +79320,7 @@
|
|
|
78659
79320
|
"fieldMetadata.valueField",
|
|
78660
79321
|
"fieldMetadata.displayField",
|
|
78661
79322
|
"fieldMetadata.searchable",
|
|
79323
|
+
"fieldMetadata.actions",
|
|
78662
79324
|
"fieldMetadata.dialog"
|
|
78663
79325
|
],
|
|
78664
79326
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -78692,7 +79354,7 @@
|
|
|
78692
79354
|
"examples": [
|
|
78693
79355
|
{
|
|
78694
79356
|
"id": "configure-entity-lookup",
|
|
78695
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
79357
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
78696
79358
|
"operationId": "field.entityLookup.configure",
|
|
78697
79359
|
"params": {
|
|
78698
79360
|
"optionSource": {
|
|
@@ -78716,6 +79378,11 @@
|
|
|
78716
79378
|
"valueField": "id",
|
|
78717
79379
|
"displayField": "name",
|
|
78718
79380
|
"searchable": true,
|
|
79381
|
+
"actions": {
|
|
79382
|
+
"showDetail": true,
|
|
79383
|
+
"showChange": false,
|
|
79384
|
+
"showClear": true
|
|
79385
|
+
},
|
|
78719
79386
|
"dialog": {
|
|
78720
79387
|
"enabled": true,
|
|
78721
79388
|
"size": "lg",
|
|
@@ -82209,6 +82876,29 @@
|
|
|
82209
82876
|
"searchable": {
|
|
82210
82877
|
"type": "boolean"
|
|
82211
82878
|
},
|
|
82879
|
+
"actions": {
|
|
82880
|
+
"type": "object",
|
|
82881
|
+
"properties": {
|
|
82882
|
+
"showDetail": {
|
|
82883
|
+
"type": "boolean"
|
|
82884
|
+
},
|
|
82885
|
+
"showChange": {
|
|
82886
|
+
"type": "boolean"
|
|
82887
|
+
},
|
|
82888
|
+
"showCopyCode": {
|
|
82889
|
+
"type": "boolean"
|
|
82890
|
+
},
|
|
82891
|
+
"showCopyId": {
|
|
82892
|
+
"type": "boolean"
|
|
82893
|
+
},
|
|
82894
|
+
"showCreate": {
|
|
82895
|
+
"type": "boolean"
|
|
82896
|
+
},
|
|
82897
|
+
"showClear": {
|
|
82898
|
+
"type": "boolean"
|
|
82899
|
+
}
|
|
82900
|
+
}
|
|
82901
|
+
},
|
|
82212
82902
|
"dialog": {
|
|
82213
82903
|
"type": "object",
|
|
82214
82904
|
"properties": {
|
|
@@ -82260,6 +82950,7 @@
|
|
|
82260
82950
|
"fieldMetadata.valueField",
|
|
82261
82951
|
"fieldMetadata.displayField",
|
|
82262
82952
|
"fieldMetadata.searchable",
|
|
82953
|
+
"fieldMetadata.actions",
|
|
82263
82954
|
"fieldMetadata.dialog"
|
|
82264
82955
|
],
|
|
82265
82956
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -82293,7 +82984,7 @@
|
|
|
82293
82984
|
"examples": [
|
|
82294
82985
|
{
|
|
82295
82986
|
"id": "configure-entity-lookup",
|
|
82296
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
82987
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
82297
82988
|
"operationId": "field.entityLookup.configure",
|
|
82298
82989
|
"params": {
|
|
82299
82990
|
"optionSource": {
|
|
@@ -82317,6 +83008,11 @@
|
|
|
82317
83008
|
"valueField": "id",
|
|
82318
83009
|
"displayField": "name",
|
|
82319
83010
|
"searchable": true,
|
|
83011
|
+
"actions": {
|
|
83012
|
+
"showDetail": true,
|
|
83013
|
+
"showChange": false,
|
|
83014
|
+
"showClear": true
|
|
83015
|
+
},
|
|
82320
83016
|
"dialog": {
|
|
82321
83017
|
"enabled": true,
|
|
82322
83018
|
"size": "lg",
|
|
@@ -85787,6 +86483,29 @@
|
|
|
85787
86483
|
"searchable": {
|
|
85788
86484
|
"type": "boolean"
|
|
85789
86485
|
},
|
|
86486
|
+
"actions": {
|
|
86487
|
+
"type": "object",
|
|
86488
|
+
"properties": {
|
|
86489
|
+
"showDetail": {
|
|
86490
|
+
"type": "boolean"
|
|
86491
|
+
},
|
|
86492
|
+
"showChange": {
|
|
86493
|
+
"type": "boolean"
|
|
86494
|
+
},
|
|
86495
|
+
"showCopyCode": {
|
|
86496
|
+
"type": "boolean"
|
|
86497
|
+
},
|
|
86498
|
+
"showCopyId": {
|
|
86499
|
+
"type": "boolean"
|
|
86500
|
+
},
|
|
86501
|
+
"showCreate": {
|
|
86502
|
+
"type": "boolean"
|
|
86503
|
+
},
|
|
86504
|
+
"showClear": {
|
|
86505
|
+
"type": "boolean"
|
|
86506
|
+
}
|
|
86507
|
+
}
|
|
86508
|
+
},
|
|
85790
86509
|
"dialog": {
|
|
85791
86510
|
"type": "object",
|
|
85792
86511
|
"properties": {
|
|
@@ -85838,6 +86557,7 @@
|
|
|
85838
86557
|
"fieldMetadata.valueField",
|
|
85839
86558
|
"fieldMetadata.displayField",
|
|
85840
86559
|
"fieldMetadata.searchable",
|
|
86560
|
+
"fieldMetadata.actions",
|
|
85841
86561
|
"fieldMetadata.dialog"
|
|
85842
86562
|
],
|
|
85843
86563
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -85871,7 +86591,7 @@
|
|
|
85871
86591
|
"examples": [
|
|
85872
86592
|
{
|
|
85873
86593
|
"id": "configure-entity-lookup",
|
|
85874
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
86594
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
85875
86595
|
"operationId": "field.entityLookup.configure",
|
|
85876
86596
|
"params": {
|
|
85877
86597
|
"optionSource": {
|
|
@@ -85895,6 +86615,11 @@
|
|
|
85895
86615
|
"valueField": "id",
|
|
85896
86616
|
"displayField": "name",
|
|
85897
86617
|
"searchable": true,
|
|
86618
|
+
"actions": {
|
|
86619
|
+
"showDetail": true,
|
|
86620
|
+
"showChange": false,
|
|
86621
|
+
"showClear": true
|
|
86622
|
+
},
|
|
85898
86623
|
"dialog": {
|
|
85899
86624
|
"enabled": true,
|
|
85900
86625
|
"size": "lg",
|
|
@@ -89365,6 +90090,29 @@
|
|
|
89365
90090
|
"searchable": {
|
|
89366
90091
|
"type": "boolean"
|
|
89367
90092
|
},
|
|
90093
|
+
"actions": {
|
|
90094
|
+
"type": "object",
|
|
90095
|
+
"properties": {
|
|
90096
|
+
"showDetail": {
|
|
90097
|
+
"type": "boolean"
|
|
90098
|
+
},
|
|
90099
|
+
"showChange": {
|
|
90100
|
+
"type": "boolean"
|
|
90101
|
+
},
|
|
90102
|
+
"showCopyCode": {
|
|
90103
|
+
"type": "boolean"
|
|
90104
|
+
},
|
|
90105
|
+
"showCopyId": {
|
|
90106
|
+
"type": "boolean"
|
|
90107
|
+
},
|
|
90108
|
+
"showCreate": {
|
|
90109
|
+
"type": "boolean"
|
|
90110
|
+
},
|
|
90111
|
+
"showClear": {
|
|
90112
|
+
"type": "boolean"
|
|
90113
|
+
}
|
|
90114
|
+
}
|
|
90115
|
+
},
|
|
89368
90116
|
"dialog": {
|
|
89369
90117
|
"type": "object",
|
|
89370
90118
|
"properties": {
|
|
@@ -89416,6 +90164,7 @@
|
|
|
89416
90164
|
"fieldMetadata.valueField",
|
|
89417
90165
|
"fieldMetadata.displayField",
|
|
89418
90166
|
"fieldMetadata.searchable",
|
|
90167
|
+
"fieldMetadata.actions",
|
|
89419
90168
|
"fieldMetadata.dialog"
|
|
89420
90169
|
],
|
|
89421
90170
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -89449,7 +90198,7 @@
|
|
|
89449
90198
|
"examples": [
|
|
89450
90199
|
{
|
|
89451
90200
|
"id": "configure-entity-lookup",
|
|
89452
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
90201
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
89453
90202
|
"operationId": "field.entityLookup.configure",
|
|
89454
90203
|
"params": {
|
|
89455
90204
|
"optionSource": {
|
|
@@ -89473,6 +90222,11 @@
|
|
|
89473
90222
|
"valueField": "id",
|
|
89474
90223
|
"displayField": "name",
|
|
89475
90224
|
"searchable": true,
|
|
90225
|
+
"actions": {
|
|
90226
|
+
"showDetail": true,
|
|
90227
|
+
"showChange": false,
|
|
90228
|
+
"showClear": true
|
|
90229
|
+
},
|
|
89476
90230
|
"dialog": {
|
|
89477
90231
|
"enabled": true,
|
|
89478
90232
|
"size": "lg",
|
|
@@ -92947,6 +93701,29 @@
|
|
|
92947
93701
|
"searchable": {
|
|
92948
93702
|
"type": "boolean"
|
|
92949
93703
|
},
|
|
93704
|
+
"actions": {
|
|
93705
|
+
"type": "object",
|
|
93706
|
+
"properties": {
|
|
93707
|
+
"showDetail": {
|
|
93708
|
+
"type": "boolean"
|
|
93709
|
+
},
|
|
93710
|
+
"showChange": {
|
|
93711
|
+
"type": "boolean"
|
|
93712
|
+
},
|
|
93713
|
+
"showCopyCode": {
|
|
93714
|
+
"type": "boolean"
|
|
93715
|
+
},
|
|
93716
|
+
"showCopyId": {
|
|
93717
|
+
"type": "boolean"
|
|
93718
|
+
},
|
|
93719
|
+
"showCreate": {
|
|
93720
|
+
"type": "boolean"
|
|
93721
|
+
},
|
|
93722
|
+
"showClear": {
|
|
93723
|
+
"type": "boolean"
|
|
93724
|
+
}
|
|
93725
|
+
}
|
|
93726
|
+
},
|
|
92950
93727
|
"dialog": {
|
|
92951
93728
|
"type": "object",
|
|
92952
93729
|
"properties": {
|
|
@@ -92998,6 +93775,7 @@
|
|
|
92998
93775
|
"fieldMetadata.valueField",
|
|
92999
93776
|
"fieldMetadata.displayField",
|
|
93000
93777
|
"fieldMetadata.searchable",
|
|
93778
|
+
"fieldMetadata.actions",
|
|
93001
93779
|
"fieldMetadata.dialog"
|
|
93002
93780
|
],
|
|
93003
93781
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -93031,7 +93809,7 @@
|
|
|
93031
93809
|
"examples": [
|
|
93032
93810
|
{
|
|
93033
93811
|
"id": "configure-entity-lookup",
|
|
93034
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
93812
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
93035
93813
|
"operationId": "field.entityLookup.configure",
|
|
93036
93814
|
"params": {
|
|
93037
93815
|
"optionSource": {
|
|
@@ -93055,6 +93833,11 @@
|
|
|
93055
93833
|
"valueField": "id",
|
|
93056
93834
|
"displayField": "name",
|
|
93057
93835
|
"searchable": true,
|
|
93836
|
+
"actions": {
|
|
93837
|
+
"showDetail": true,
|
|
93838
|
+
"showChange": false,
|
|
93839
|
+
"showClear": true
|
|
93840
|
+
},
|
|
93058
93841
|
"dialog": {
|
|
93059
93842
|
"enabled": true,
|
|
93060
93843
|
"size": "lg",
|
|
@@ -96524,6 +97307,29 @@
|
|
|
96524
97307
|
"searchable": {
|
|
96525
97308
|
"type": "boolean"
|
|
96526
97309
|
},
|
|
97310
|
+
"actions": {
|
|
97311
|
+
"type": "object",
|
|
97312
|
+
"properties": {
|
|
97313
|
+
"showDetail": {
|
|
97314
|
+
"type": "boolean"
|
|
97315
|
+
},
|
|
97316
|
+
"showChange": {
|
|
97317
|
+
"type": "boolean"
|
|
97318
|
+
},
|
|
97319
|
+
"showCopyCode": {
|
|
97320
|
+
"type": "boolean"
|
|
97321
|
+
},
|
|
97322
|
+
"showCopyId": {
|
|
97323
|
+
"type": "boolean"
|
|
97324
|
+
},
|
|
97325
|
+
"showCreate": {
|
|
97326
|
+
"type": "boolean"
|
|
97327
|
+
},
|
|
97328
|
+
"showClear": {
|
|
97329
|
+
"type": "boolean"
|
|
97330
|
+
}
|
|
97331
|
+
}
|
|
97332
|
+
},
|
|
96527
97333
|
"dialog": {
|
|
96528
97334
|
"type": "object",
|
|
96529
97335
|
"properties": {
|
|
@@ -96575,6 +97381,7 @@
|
|
|
96575
97381
|
"fieldMetadata.valueField",
|
|
96576
97382
|
"fieldMetadata.displayField",
|
|
96577
97383
|
"fieldMetadata.searchable",
|
|
97384
|
+
"fieldMetadata.actions",
|
|
96578
97385
|
"fieldMetadata.dialog"
|
|
96579
97386
|
],
|
|
96580
97387
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -96608,7 +97415,7 @@
|
|
|
96608
97415
|
"examples": [
|
|
96609
97416
|
{
|
|
96610
97417
|
"id": "configure-entity-lookup",
|
|
96611
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
97418
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
96612
97419
|
"operationId": "field.entityLookup.configure",
|
|
96613
97420
|
"params": {
|
|
96614
97421
|
"optionSource": {
|
|
@@ -96632,6 +97439,11 @@
|
|
|
96632
97439
|
"valueField": "id",
|
|
96633
97440
|
"displayField": "name",
|
|
96634
97441
|
"searchable": true,
|
|
97442
|
+
"actions": {
|
|
97443
|
+
"showDetail": true,
|
|
97444
|
+
"showChange": false,
|
|
97445
|
+
"showClear": true
|
|
97446
|
+
},
|
|
96635
97447
|
"dialog": {
|
|
96636
97448
|
"enabled": true,
|
|
96637
97449
|
"size": "lg",
|
|
@@ -100124,6 +100936,29 @@
|
|
|
100124
100936
|
"searchable": {
|
|
100125
100937
|
"type": "boolean"
|
|
100126
100938
|
},
|
|
100939
|
+
"actions": {
|
|
100940
|
+
"type": "object",
|
|
100941
|
+
"properties": {
|
|
100942
|
+
"showDetail": {
|
|
100943
|
+
"type": "boolean"
|
|
100944
|
+
},
|
|
100945
|
+
"showChange": {
|
|
100946
|
+
"type": "boolean"
|
|
100947
|
+
},
|
|
100948
|
+
"showCopyCode": {
|
|
100949
|
+
"type": "boolean"
|
|
100950
|
+
},
|
|
100951
|
+
"showCopyId": {
|
|
100952
|
+
"type": "boolean"
|
|
100953
|
+
},
|
|
100954
|
+
"showCreate": {
|
|
100955
|
+
"type": "boolean"
|
|
100956
|
+
},
|
|
100957
|
+
"showClear": {
|
|
100958
|
+
"type": "boolean"
|
|
100959
|
+
}
|
|
100960
|
+
}
|
|
100961
|
+
},
|
|
100127
100962
|
"dialog": {
|
|
100128
100963
|
"type": "object",
|
|
100129
100964
|
"properties": {
|
|
@@ -100175,6 +101010,7 @@
|
|
|
100175
101010
|
"fieldMetadata.valueField",
|
|
100176
101011
|
"fieldMetadata.displayField",
|
|
100177
101012
|
"fieldMetadata.searchable",
|
|
101013
|
+
"fieldMetadata.actions",
|
|
100178
101014
|
"fieldMetadata.dialog"
|
|
100179
101015
|
],
|
|
100180
101016
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -100208,7 +101044,7 @@
|
|
|
100208
101044
|
"examples": [
|
|
100209
101045
|
{
|
|
100210
101046
|
"id": "configure-entity-lookup",
|
|
100211
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
101047
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
100212
101048
|
"operationId": "field.entityLookup.configure",
|
|
100213
101049
|
"params": {
|
|
100214
101050
|
"optionSource": {
|
|
@@ -100232,6 +101068,11 @@
|
|
|
100232
101068
|
"valueField": "id",
|
|
100233
101069
|
"displayField": "name",
|
|
100234
101070
|
"searchable": true,
|
|
101071
|
+
"actions": {
|
|
101072
|
+
"showDetail": true,
|
|
101073
|
+
"showChange": false,
|
|
101074
|
+
"showClear": true
|
|
101075
|
+
},
|
|
100235
101076
|
"dialog": {
|
|
100236
101077
|
"enabled": true,
|
|
100237
101078
|
"size": "lg",
|
|
@@ -103725,6 +104566,29 @@
|
|
|
103725
104566
|
"searchable": {
|
|
103726
104567
|
"type": "boolean"
|
|
103727
104568
|
},
|
|
104569
|
+
"actions": {
|
|
104570
|
+
"type": "object",
|
|
104571
|
+
"properties": {
|
|
104572
|
+
"showDetail": {
|
|
104573
|
+
"type": "boolean"
|
|
104574
|
+
},
|
|
104575
|
+
"showChange": {
|
|
104576
|
+
"type": "boolean"
|
|
104577
|
+
},
|
|
104578
|
+
"showCopyCode": {
|
|
104579
|
+
"type": "boolean"
|
|
104580
|
+
},
|
|
104581
|
+
"showCopyId": {
|
|
104582
|
+
"type": "boolean"
|
|
104583
|
+
},
|
|
104584
|
+
"showCreate": {
|
|
104585
|
+
"type": "boolean"
|
|
104586
|
+
},
|
|
104587
|
+
"showClear": {
|
|
104588
|
+
"type": "boolean"
|
|
104589
|
+
}
|
|
104590
|
+
}
|
|
104591
|
+
},
|
|
103728
104592
|
"dialog": {
|
|
103729
104593
|
"type": "object",
|
|
103730
104594
|
"properties": {
|
|
@@ -103776,6 +104640,7 @@
|
|
|
103776
104640
|
"fieldMetadata.valueField",
|
|
103777
104641
|
"fieldMetadata.displayField",
|
|
103778
104642
|
"fieldMetadata.searchable",
|
|
104643
|
+
"fieldMetadata.actions",
|
|
103779
104644
|
"fieldMetadata.dialog"
|
|
103780
104645
|
],
|
|
103781
104646
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -103809,7 +104674,7 @@
|
|
|
103809
104674
|
"examples": [
|
|
103810
104675
|
{
|
|
103811
104676
|
"id": "configure-entity-lookup",
|
|
103812
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
104677
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
103813
104678
|
"operationId": "field.entityLookup.configure",
|
|
103814
104679
|
"params": {
|
|
103815
104680
|
"optionSource": {
|
|
@@ -103833,6 +104698,11 @@
|
|
|
103833
104698
|
"valueField": "id",
|
|
103834
104699
|
"displayField": "name",
|
|
103835
104700
|
"searchable": true,
|
|
104701
|
+
"actions": {
|
|
104702
|
+
"showDetail": true,
|
|
104703
|
+
"showChange": false,
|
|
104704
|
+
"showClear": true
|
|
104705
|
+
},
|
|
103836
104706
|
"dialog": {
|
|
103837
104707
|
"enabled": true,
|
|
103838
104708
|
"size": "lg",
|
|
@@ -107325,6 +108195,29 @@
|
|
|
107325
108195
|
"searchable": {
|
|
107326
108196
|
"type": "boolean"
|
|
107327
108197
|
},
|
|
108198
|
+
"actions": {
|
|
108199
|
+
"type": "object",
|
|
108200
|
+
"properties": {
|
|
108201
|
+
"showDetail": {
|
|
108202
|
+
"type": "boolean"
|
|
108203
|
+
},
|
|
108204
|
+
"showChange": {
|
|
108205
|
+
"type": "boolean"
|
|
108206
|
+
},
|
|
108207
|
+
"showCopyCode": {
|
|
108208
|
+
"type": "boolean"
|
|
108209
|
+
},
|
|
108210
|
+
"showCopyId": {
|
|
108211
|
+
"type": "boolean"
|
|
108212
|
+
},
|
|
108213
|
+
"showCreate": {
|
|
108214
|
+
"type": "boolean"
|
|
108215
|
+
},
|
|
108216
|
+
"showClear": {
|
|
108217
|
+
"type": "boolean"
|
|
108218
|
+
}
|
|
108219
|
+
}
|
|
108220
|
+
},
|
|
107328
108221
|
"dialog": {
|
|
107329
108222
|
"type": "object",
|
|
107330
108223
|
"properties": {
|
|
@@ -107376,6 +108269,7 @@
|
|
|
107376
108269
|
"fieldMetadata.valueField",
|
|
107377
108270
|
"fieldMetadata.displayField",
|
|
107378
108271
|
"fieldMetadata.searchable",
|
|
108272
|
+
"fieldMetadata.actions",
|
|
107379
108273
|
"fieldMetadata.dialog"
|
|
107380
108274
|
],
|
|
107381
108275
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -107409,7 +108303,7 @@
|
|
|
107409
108303
|
"examples": [
|
|
107410
108304
|
{
|
|
107411
108305
|
"id": "configure-entity-lookup",
|
|
107412
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
108306
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
107413
108307
|
"operationId": "field.entityLookup.configure",
|
|
107414
108308
|
"params": {
|
|
107415
108309
|
"optionSource": {
|
|
@@ -107433,6 +108327,11 @@
|
|
|
107433
108327
|
"valueField": "id",
|
|
107434
108328
|
"displayField": "name",
|
|
107435
108329
|
"searchable": true,
|
|
108330
|
+
"actions": {
|
|
108331
|
+
"showDetail": true,
|
|
108332
|
+
"showChange": false,
|
|
108333
|
+
"showClear": true
|
|
108334
|
+
},
|
|
107436
108335
|
"dialog": {
|
|
107437
108336
|
"enabled": true,
|
|
107438
108337
|
"size": "lg",
|
|
@@ -110911,6 +111810,29 @@
|
|
|
110911
111810
|
"searchable": {
|
|
110912
111811
|
"type": "boolean"
|
|
110913
111812
|
},
|
|
111813
|
+
"actions": {
|
|
111814
|
+
"type": "object",
|
|
111815
|
+
"properties": {
|
|
111816
|
+
"showDetail": {
|
|
111817
|
+
"type": "boolean"
|
|
111818
|
+
},
|
|
111819
|
+
"showChange": {
|
|
111820
|
+
"type": "boolean"
|
|
111821
|
+
},
|
|
111822
|
+
"showCopyCode": {
|
|
111823
|
+
"type": "boolean"
|
|
111824
|
+
},
|
|
111825
|
+
"showCopyId": {
|
|
111826
|
+
"type": "boolean"
|
|
111827
|
+
},
|
|
111828
|
+
"showCreate": {
|
|
111829
|
+
"type": "boolean"
|
|
111830
|
+
},
|
|
111831
|
+
"showClear": {
|
|
111832
|
+
"type": "boolean"
|
|
111833
|
+
}
|
|
111834
|
+
}
|
|
111835
|
+
},
|
|
110914
111836
|
"dialog": {
|
|
110915
111837
|
"type": "object",
|
|
110916
111838
|
"properties": {
|
|
@@ -110962,6 +111884,7 @@
|
|
|
110962
111884
|
"fieldMetadata.valueField",
|
|
110963
111885
|
"fieldMetadata.displayField",
|
|
110964
111886
|
"fieldMetadata.searchable",
|
|
111887
|
+
"fieldMetadata.actions",
|
|
110965
111888
|
"fieldMetadata.dialog"
|
|
110966
111889
|
],
|
|
110967
111890
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -110995,7 +111918,7 @@
|
|
|
110995
111918
|
"examples": [
|
|
110996
111919
|
{
|
|
110997
111920
|
"id": "configure-entity-lookup",
|
|
110998
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
111921
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
110999
111922
|
"operationId": "field.entityLookup.configure",
|
|
111000
111923
|
"params": {
|
|
111001
111924
|
"optionSource": {
|
|
@@ -111019,6 +111942,11 @@
|
|
|
111019
111942
|
"valueField": "id",
|
|
111020
111943
|
"displayField": "name",
|
|
111021
111944
|
"searchable": true,
|
|
111945
|
+
"actions": {
|
|
111946
|
+
"showDetail": true,
|
|
111947
|
+
"showChange": false,
|
|
111948
|
+
"showClear": true
|
|
111949
|
+
},
|
|
111022
111950
|
"dialog": {
|
|
111023
111951
|
"enabled": true,
|
|
111024
111952
|
"size": "lg",
|
|
@@ -114482,6 +115410,29 @@
|
|
|
114482
115410
|
"searchable": {
|
|
114483
115411
|
"type": "boolean"
|
|
114484
115412
|
},
|
|
115413
|
+
"actions": {
|
|
115414
|
+
"type": "object",
|
|
115415
|
+
"properties": {
|
|
115416
|
+
"showDetail": {
|
|
115417
|
+
"type": "boolean"
|
|
115418
|
+
},
|
|
115419
|
+
"showChange": {
|
|
115420
|
+
"type": "boolean"
|
|
115421
|
+
},
|
|
115422
|
+
"showCopyCode": {
|
|
115423
|
+
"type": "boolean"
|
|
115424
|
+
},
|
|
115425
|
+
"showCopyId": {
|
|
115426
|
+
"type": "boolean"
|
|
115427
|
+
},
|
|
115428
|
+
"showCreate": {
|
|
115429
|
+
"type": "boolean"
|
|
115430
|
+
},
|
|
115431
|
+
"showClear": {
|
|
115432
|
+
"type": "boolean"
|
|
115433
|
+
}
|
|
115434
|
+
}
|
|
115435
|
+
},
|
|
114485
115436
|
"dialog": {
|
|
114486
115437
|
"type": "object",
|
|
114487
115438
|
"properties": {
|
|
@@ -114533,6 +115484,7 @@
|
|
|
114533
115484
|
"fieldMetadata.valueField",
|
|
114534
115485
|
"fieldMetadata.displayField",
|
|
114535
115486
|
"fieldMetadata.searchable",
|
|
115487
|
+
"fieldMetadata.actions",
|
|
114536
115488
|
"fieldMetadata.dialog"
|
|
114537
115489
|
],
|
|
114538
115490
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -114566,7 +115518,7 @@
|
|
|
114566
115518
|
"examples": [
|
|
114567
115519
|
{
|
|
114568
115520
|
"id": "configure-entity-lookup",
|
|
114569
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
115521
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
114570
115522
|
"operationId": "field.entityLookup.configure",
|
|
114571
115523
|
"params": {
|
|
114572
115524
|
"optionSource": {
|
|
@@ -114590,6 +115542,11 @@
|
|
|
114590
115542
|
"valueField": "id",
|
|
114591
115543
|
"displayField": "name",
|
|
114592
115544
|
"searchable": true,
|
|
115545
|
+
"actions": {
|
|
115546
|
+
"showDetail": true,
|
|
115547
|
+
"showChange": false,
|
|
115548
|
+
"showClear": true
|
|
115549
|
+
},
|
|
114593
115550
|
"dialog": {
|
|
114594
115551
|
"enabled": true,
|
|
114595
115552
|
"size": "lg",
|
|
@@ -118044,6 +119001,29 @@
|
|
|
118044
119001
|
"searchable": {
|
|
118045
119002
|
"type": "boolean"
|
|
118046
119003
|
},
|
|
119004
|
+
"actions": {
|
|
119005
|
+
"type": "object",
|
|
119006
|
+
"properties": {
|
|
119007
|
+
"showDetail": {
|
|
119008
|
+
"type": "boolean"
|
|
119009
|
+
},
|
|
119010
|
+
"showChange": {
|
|
119011
|
+
"type": "boolean"
|
|
119012
|
+
},
|
|
119013
|
+
"showCopyCode": {
|
|
119014
|
+
"type": "boolean"
|
|
119015
|
+
},
|
|
119016
|
+
"showCopyId": {
|
|
119017
|
+
"type": "boolean"
|
|
119018
|
+
},
|
|
119019
|
+
"showCreate": {
|
|
119020
|
+
"type": "boolean"
|
|
119021
|
+
},
|
|
119022
|
+
"showClear": {
|
|
119023
|
+
"type": "boolean"
|
|
119024
|
+
}
|
|
119025
|
+
}
|
|
119026
|
+
},
|
|
118047
119027
|
"dialog": {
|
|
118048
119028
|
"type": "object",
|
|
118049
119029
|
"properties": {
|
|
@@ -118095,6 +119075,7 @@
|
|
|
118095
119075
|
"fieldMetadata.valueField",
|
|
118096
119076
|
"fieldMetadata.displayField",
|
|
118097
119077
|
"fieldMetadata.searchable",
|
|
119078
|
+
"fieldMetadata.actions",
|
|
118098
119079
|
"fieldMetadata.dialog"
|
|
118099
119080
|
],
|
|
118100
119081
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -118128,7 +119109,7 @@
|
|
|
118128
119109
|
"examples": [
|
|
118129
119110
|
{
|
|
118130
119111
|
"id": "configure-entity-lookup",
|
|
118131
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
119112
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
118132
119113
|
"operationId": "field.entityLookup.configure",
|
|
118133
119114
|
"params": {
|
|
118134
119115
|
"optionSource": {
|
|
@@ -118152,6 +119133,11 @@
|
|
|
118152
119133
|
"valueField": "id",
|
|
118153
119134
|
"displayField": "name",
|
|
118154
119135
|
"searchable": true,
|
|
119136
|
+
"actions": {
|
|
119137
|
+
"showDetail": true,
|
|
119138
|
+
"showChange": false,
|
|
119139
|
+
"showClear": true
|
|
119140
|
+
},
|
|
118155
119141
|
"dialog": {
|
|
118156
119142
|
"enabled": true,
|
|
118157
119143
|
"size": "lg",
|
|
@@ -121627,6 +122613,29 @@
|
|
|
121627
122613
|
"searchable": {
|
|
121628
122614
|
"type": "boolean"
|
|
121629
122615
|
},
|
|
122616
|
+
"actions": {
|
|
122617
|
+
"type": "object",
|
|
122618
|
+
"properties": {
|
|
122619
|
+
"showDetail": {
|
|
122620
|
+
"type": "boolean"
|
|
122621
|
+
},
|
|
122622
|
+
"showChange": {
|
|
122623
|
+
"type": "boolean"
|
|
122624
|
+
},
|
|
122625
|
+
"showCopyCode": {
|
|
122626
|
+
"type": "boolean"
|
|
122627
|
+
},
|
|
122628
|
+
"showCopyId": {
|
|
122629
|
+
"type": "boolean"
|
|
122630
|
+
},
|
|
122631
|
+
"showCreate": {
|
|
122632
|
+
"type": "boolean"
|
|
122633
|
+
},
|
|
122634
|
+
"showClear": {
|
|
122635
|
+
"type": "boolean"
|
|
122636
|
+
}
|
|
122637
|
+
}
|
|
122638
|
+
},
|
|
121630
122639
|
"dialog": {
|
|
121631
122640
|
"type": "object",
|
|
121632
122641
|
"properties": {
|
|
@@ -121678,6 +122687,7 @@
|
|
|
121678
122687
|
"fieldMetadata.valueField",
|
|
121679
122688
|
"fieldMetadata.displayField",
|
|
121680
122689
|
"fieldMetadata.searchable",
|
|
122690
|
+
"fieldMetadata.actions",
|
|
121681
122691
|
"fieldMetadata.dialog"
|
|
121682
122692
|
],
|
|
121683
122693
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -121711,7 +122721,7 @@
|
|
|
121711
122721
|
"examples": [
|
|
121712
122722
|
{
|
|
121713
122723
|
"id": "configure-entity-lookup",
|
|
121714
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
122724
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
121715
122725
|
"operationId": "field.entityLookup.configure",
|
|
121716
122726
|
"params": {
|
|
121717
122727
|
"optionSource": {
|
|
@@ -121735,6 +122745,11 @@
|
|
|
121735
122745
|
"valueField": "id",
|
|
121736
122746
|
"displayField": "name",
|
|
121737
122747
|
"searchable": true,
|
|
122748
|
+
"actions": {
|
|
122749
|
+
"showDetail": true,
|
|
122750
|
+
"showChange": false,
|
|
122751
|
+
"showClear": true
|
|
122752
|
+
},
|
|
121738
122753
|
"dialog": {
|
|
121739
122754
|
"enabled": true,
|
|
121740
122755
|
"size": "lg",
|
|
@@ -125199,6 +126214,29 @@
|
|
|
125199
126214
|
"searchable": {
|
|
125200
126215
|
"type": "boolean"
|
|
125201
126216
|
},
|
|
126217
|
+
"actions": {
|
|
126218
|
+
"type": "object",
|
|
126219
|
+
"properties": {
|
|
126220
|
+
"showDetail": {
|
|
126221
|
+
"type": "boolean"
|
|
126222
|
+
},
|
|
126223
|
+
"showChange": {
|
|
126224
|
+
"type": "boolean"
|
|
126225
|
+
},
|
|
126226
|
+
"showCopyCode": {
|
|
126227
|
+
"type": "boolean"
|
|
126228
|
+
},
|
|
126229
|
+
"showCopyId": {
|
|
126230
|
+
"type": "boolean"
|
|
126231
|
+
},
|
|
126232
|
+
"showCreate": {
|
|
126233
|
+
"type": "boolean"
|
|
126234
|
+
},
|
|
126235
|
+
"showClear": {
|
|
126236
|
+
"type": "boolean"
|
|
126237
|
+
}
|
|
126238
|
+
}
|
|
126239
|
+
},
|
|
125202
126240
|
"dialog": {
|
|
125203
126241
|
"type": "object",
|
|
125204
126242
|
"properties": {
|
|
@@ -125250,6 +126288,7 @@
|
|
|
125250
126288
|
"fieldMetadata.valueField",
|
|
125251
126289
|
"fieldMetadata.displayField",
|
|
125252
126290
|
"fieldMetadata.searchable",
|
|
126291
|
+
"fieldMetadata.actions",
|
|
125253
126292
|
"fieldMetadata.dialog"
|
|
125254
126293
|
],
|
|
125255
126294
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -125283,7 +126322,7 @@
|
|
|
125283
126322
|
"examples": [
|
|
125284
126323
|
{
|
|
125285
126324
|
"id": "configure-entity-lookup",
|
|
125286
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
126325
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
125287
126326
|
"operationId": "field.entityLookup.configure",
|
|
125288
126327
|
"params": {
|
|
125289
126328
|
"optionSource": {
|
|
@@ -125307,6 +126346,11 @@
|
|
|
125307
126346
|
"valueField": "id",
|
|
125308
126347
|
"displayField": "name",
|
|
125309
126348
|
"searchable": true,
|
|
126349
|
+
"actions": {
|
|
126350
|
+
"showDetail": true,
|
|
126351
|
+
"showChange": false,
|
|
126352
|
+
"showClear": true
|
|
126353
|
+
},
|
|
125310
126354
|
"dialog": {
|
|
125311
126355
|
"enabled": true,
|
|
125312
126356
|
"size": "lg",
|
|
@@ -128798,6 +129842,29 @@
|
|
|
128798
129842
|
"searchable": {
|
|
128799
129843
|
"type": "boolean"
|
|
128800
129844
|
},
|
|
129845
|
+
"actions": {
|
|
129846
|
+
"type": "object",
|
|
129847
|
+
"properties": {
|
|
129848
|
+
"showDetail": {
|
|
129849
|
+
"type": "boolean"
|
|
129850
|
+
},
|
|
129851
|
+
"showChange": {
|
|
129852
|
+
"type": "boolean"
|
|
129853
|
+
},
|
|
129854
|
+
"showCopyCode": {
|
|
129855
|
+
"type": "boolean"
|
|
129856
|
+
},
|
|
129857
|
+
"showCopyId": {
|
|
129858
|
+
"type": "boolean"
|
|
129859
|
+
},
|
|
129860
|
+
"showCreate": {
|
|
129861
|
+
"type": "boolean"
|
|
129862
|
+
},
|
|
129863
|
+
"showClear": {
|
|
129864
|
+
"type": "boolean"
|
|
129865
|
+
}
|
|
129866
|
+
}
|
|
129867
|
+
},
|
|
128801
129868
|
"dialog": {
|
|
128802
129869
|
"type": "object",
|
|
128803
129870
|
"properties": {
|
|
@@ -128849,6 +129916,7 @@
|
|
|
128849
129916
|
"fieldMetadata.valueField",
|
|
128850
129917
|
"fieldMetadata.displayField",
|
|
128851
129918
|
"fieldMetadata.searchable",
|
|
129919
|
+
"fieldMetadata.actions",
|
|
128852
129920
|
"fieldMetadata.dialog"
|
|
128853
129921
|
],
|
|
128854
129922
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -128882,7 +129950,7 @@
|
|
|
128882
129950
|
"examples": [
|
|
128883
129951
|
{
|
|
128884
129952
|
"id": "configure-entity-lookup",
|
|
128885
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
129953
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
128886
129954
|
"operationId": "field.entityLookup.configure",
|
|
128887
129955
|
"params": {
|
|
128888
129956
|
"optionSource": {
|
|
@@ -128906,6 +129974,11 @@
|
|
|
128906
129974
|
"valueField": "id",
|
|
128907
129975
|
"displayField": "name",
|
|
128908
129976
|
"searchable": true,
|
|
129977
|
+
"actions": {
|
|
129978
|
+
"showDetail": true,
|
|
129979
|
+
"showChange": false,
|
|
129980
|
+
"showClear": true
|
|
129981
|
+
},
|
|
128909
129982
|
"dialog": {
|
|
128910
129983
|
"enabled": true,
|
|
128911
129984
|
"size": "lg",
|
|
@@ -134094,6 +135167,29 @@
|
|
|
134094
135167
|
"searchable": {
|
|
134095
135168
|
"type": "boolean"
|
|
134096
135169
|
},
|
|
135170
|
+
"actions": {
|
|
135171
|
+
"type": "object",
|
|
135172
|
+
"properties": {
|
|
135173
|
+
"showDetail": {
|
|
135174
|
+
"type": "boolean"
|
|
135175
|
+
},
|
|
135176
|
+
"showChange": {
|
|
135177
|
+
"type": "boolean"
|
|
135178
|
+
},
|
|
135179
|
+
"showCopyCode": {
|
|
135180
|
+
"type": "boolean"
|
|
135181
|
+
},
|
|
135182
|
+
"showCopyId": {
|
|
135183
|
+
"type": "boolean"
|
|
135184
|
+
},
|
|
135185
|
+
"showCreate": {
|
|
135186
|
+
"type": "boolean"
|
|
135187
|
+
},
|
|
135188
|
+
"showClear": {
|
|
135189
|
+
"type": "boolean"
|
|
135190
|
+
}
|
|
135191
|
+
}
|
|
135192
|
+
},
|
|
134097
135193
|
"dialog": {
|
|
134098
135194
|
"type": "object",
|
|
134099
135195
|
"properties": {
|
|
@@ -134145,6 +135241,7 @@
|
|
|
134145
135241
|
"fieldMetadata.valueField",
|
|
134146
135242
|
"fieldMetadata.displayField",
|
|
134147
135243
|
"fieldMetadata.searchable",
|
|
135244
|
+
"fieldMetadata.actions",
|
|
134148
135245
|
"fieldMetadata.dialog"
|
|
134149
135246
|
],
|
|
134150
135247
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -134178,7 +135275,7 @@
|
|
|
134178
135275
|
"examples": [
|
|
134179
135276
|
{
|
|
134180
135277
|
"id": "configure-entity-lookup",
|
|
134181
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
135278
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
134182
135279
|
"operationId": "field.entityLookup.configure",
|
|
134183
135280
|
"params": {
|
|
134184
135281
|
"optionSource": {
|
|
@@ -134202,6 +135299,11 @@
|
|
|
134202
135299
|
"valueField": "id",
|
|
134203
135300
|
"displayField": "name",
|
|
134204
135301
|
"searchable": true,
|
|
135302
|
+
"actions": {
|
|
135303
|
+
"showDetail": true,
|
|
135304
|
+
"showChange": false,
|
|
135305
|
+
"showClear": true
|
|
135306
|
+
},
|
|
134205
135307
|
"dialog": {
|
|
134206
135308
|
"enabled": true,
|
|
134207
135309
|
"size": "lg",
|
|
@@ -137950,6 +139052,29 @@
|
|
|
137950
139052
|
"searchable": {
|
|
137951
139053
|
"type": "boolean"
|
|
137952
139054
|
},
|
|
139055
|
+
"actions": {
|
|
139056
|
+
"type": "object",
|
|
139057
|
+
"properties": {
|
|
139058
|
+
"showDetail": {
|
|
139059
|
+
"type": "boolean"
|
|
139060
|
+
},
|
|
139061
|
+
"showChange": {
|
|
139062
|
+
"type": "boolean"
|
|
139063
|
+
},
|
|
139064
|
+
"showCopyCode": {
|
|
139065
|
+
"type": "boolean"
|
|
139066
|
+
},
|
|
139067
|
+
"showCopyId": {
|
|
139068
|
+
"type": "boolean"
|
|
139069
|
+
},
|
|
139070
|
+
"showCreate": {
|
|
139071
|
+
"type": "boolean"
|
|
139072
|
+
},
|
|
139073
|
+
"showClear": {
|
|
139074
|
+
"type": "boolean"
|
|
139075
|
+
}
|
|
139076
|
+
}
|
|
139077
|
+
},
|
|
137953
139078
|
"dialog": {
|
|
137954
139079
|
"type": "object",
|
|
137955
139080
|
"properties": {
|
|
@@ -138001,6 +139126,7 @@
|
|
|
138001
139126
|
"fieldMetadata.valueField",
|
|
138002
139127
|
"fieldMetadata.displayField",
|
|
138003
139128
|
"fieldMetadata.searchable",
|
|
139129
|
+
"fieldMetadata.actions",
|
|
138004
139130
|
"fieldMetadata.dialog"
|
|
138005
139131
|
],
|
|
138006
139132
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -138034,7 +139160,7 @@
|
|
|
138034
139160
|
"examples": [
|
|
138035
139161
|
{
|
|
138036
139162
|
"id": "configure-entity-lookup",
|
|
138037
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
139163
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
138038
139164
|
"operationId": "field.entityLookup.configure",
|
|
138039
139165
|
"params": {
|
|
138040
139166
|
"optionSource": {
|
|
@@ -138058,6 +139184,11 @@
|
|
|
138058
139184
|
"valueField": "id",
|
|
138059
139185
|
"displayField": "name",
|
|
138060
139186
|
"searchable": true,
|
|
139187
|
+
"actions": {
|
|
139188
|
+
"showDetail": true,
|
|
139189
|
+
"showChange": false,
|
|
139190
|
+
"showClear": true
|
|
139191
|
+
},
|
|
138061
139192
|
"dialog": {
|
|
138062
139193
|
"enabled": true,
|
|
138063
139194
|
"size": "lg",
|
|
@@ -141519,6 +142650,29 @@
|
|
|
141519
142650
|
"searchable": {
|
|
141520
142651
|
"type": "boolean"
|
|
141521
142652
|
},
|
|
142653
|
+
"actions": {
|
|
142654
|
+
"type": "object",
|
|
142655
|
+
"properties": {
|
|
142656
|
+
"showDetail": {
|
|
142657
|
+
"type": "boolean"
|
|
142658
|
+
},
|
|
142659
|
+
"showChange": {
|
|
142660
|
+
"type": "boolean"
|
|
142661
|
+
},
|
|
142662
|
+
"showCopyCode": {
|
|
142663
|
+
"type": "boolean"
|
|
142664
|
+
},
|
|
142665
|
+
"showCopyId": {
|
|
142666
|
+
"type": "boolean"
|
|
142667
|
+
},
|
|
142668
|
+
"showCreate": {
|
|
142669
|
+
"type": "boolean"
|
|
142670
|
+
},
|
|
142671
|
+
"showClear": {
|
|
142672
|
+
"type": "boolean"
|
|
142673
|
+
}
|
|
142674
|
+
}
|
|
142675
|
+
},
|
|
141522
142676
|
"dialog": {
|
|
141523
142677
|
"type": "object",
|
|
141524
142678
|
"properties": {
|
|
@@ -141570,6 +142724,7 @@
|
|
|
141570
142724
|
"fieldMetadata.valueField",
|
|
141571
142725
|
"fieldMetadata.displayField",
|
|
141572
142726
|
"fieldMetadata.searchable",
|
|
142727
|
+
"fieldMetadata.actions",
|
|
141573
142728
|
"fieldMetadata.dialog"
|
|
141574
142729
|
],
|
|
141575
142730
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -141603,7 +142758,7 @@
|
|
|
141603
142758
|
"examples": [
|
|
141604
142759
|
{
|
|
141605
142760
|
"id": "configure-entity-lookup",
|
|
141606
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
142761
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
141607
142762
|
"operationId": "field.entityLookup.configure",
|
|
141608
142763
|
"params": {
|
|
141609
142764
|
"optionSource": {
|
|
@@ -141627,6 +142782,11 @@
|
|
|
141627
142782
|
"valueField": "id",
|
|
141628
142783
|
"displayField": "name",
|
|
141629
142784
|
"searchable": true,
|
|
142785
|
+
"actions": {
|
|
142786
|
+
"showDetail": true,
|
|
142787
|
+
"showChange": false,
|
|
142788
|
+
"showClear": true
|
|
142789
|
+
},
|
|
141630
142790
|
"dialog": {
|
|
141631
142791
|
"enabled": true,
|
|
141632
142792
|
"size": "lg",
|
|
@@ -145118,6 +146278,29 @@
|
|
|
145118
146278
|
"searchable": {
|
|
145119
146279
|
"type": "boolean"
|
|
145120
146280
|
},
|
|
146281
|
+
"actions": {
|
|
146282
|
+
"type": "object",
|
|
146283
|
+
"properties": {
|
|
146284
|
+
"showDetail": {
|
|
146285
|
+
"type": "boolean"
|
|
146286
|
+
},
|
|
146287
|
+
"showChange": {
|
|
146288
|
+
"type": "boolean"
|
|
146289
|
+
},
|
|
146290
|
+
"showCopyCode": {
|
|
146291
|
+
"type": "boolean"
|
|
146292
|
+
},
|
|
146293
|
+
"showCopyId": {
|
|
146294
|
+
"type": "boolean"
|
|
146295
|
+
},
|
|
146296
|
+
"showCreate": {
|
|
146297
|
+
"type": "boolean"
|
|
146298
|
+
},
|
|
146299
|
+
"showClear": {
|
|
146300
|
+
"type": "boolean"
|
|
146301
|
+
}
|
|
146302
|
+
}
|
|
146303
|
+
},
|
|
145121
146304
|
"dialog": {
|
|
145122
146305
|
"type": "object",
|
|
145123
146306
|
"properties": {
|
|
@@ -145169,6 +146352,7 @@
|
|
|
145169
146352
|
"fieldMetadata.valueField",
|
|
145170
146353
|
"fieldMetadata.displayField",
|
|
145171
146354
|
"fieldMetadata.searchable",
|
|
146355
|
+
"fieldMetadata.actions",
|
|
145172
146356
|
"fieldMetadata.dialog"
|
|
145173
146357
|
],
|
|
145174
146358
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -145202,7 +146386,7 @@
|
|
|
145202
146386
|
"examples": [
|
|
145203
146387
|
{
|
|
145204
146388
|
"id": "configure-entity-lookup",
|
|
145205
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
146389
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
145206
146390
|
"operationId": "field.entityLookup.configure",
|
|
145207
146391
|
"params": {
|
|
145208
146392
|
"optionSource": {
|
|
@@ -145226,6 +146410,11 @@
|
|
|
145226
146410
|
"valueField": "id",
|
|
145227
146411
|
"displayField": "name",
|
|
145228
146412
|
"searchable": true,
|
|
146413
|
+
"actions": {
|
|
146414
|
+
"showDetail": true,
|
|
146415
|
+
"showChange": false,
|
|
146416
|
+
"showClear": true
|
|
146417
|
+
},
|
|
145229
146418
|
"dialog": {
|
|
145230
146419
|
"enabled": true,
|
|
145231
146420
|
"size": "lg",
|
|
@@ -148717,6 +149906,29 @@
|
|
|
148717
149906
|
"searchable": {
|
|
148718
149907
|
"type": "boolean"
|
|
148719
149908
|
},
|
|
149909
|
+
"actions": {
|
|
149910
|
+
"type": "object",
|
|
149911
|
+
"properties": {
|
|
149912
|
+
"showDetail": {
|
|
149913
|
+
"type": "boolean"
|
|
149914
|
+
},
|
|
149915
|
+
"showChange": {
|
|
149916
|
+
"type": "boolean"
|
|
149917
|
+
},
|
|
149918
|
+
"showCopyCode": {
|
|
149919
|
+
"type": "boolean"
|
|
149920
|
+
},
|
|
149921
|
+
"showCopyId": {
|
|
149922
|
+
"type": "boolean"
|
|
149923
|
+
},
|
|
149924
|
+
"showCreate": {
|
|
149925
|
+
"type": "boolean"
|
|
149926
|
+
},
|
|
149927
|
+
"showClear": {
|
|
149928
|
+
"type": "boolean"
|
|
149929
|
+
}
|
|
149930
|
+
}
|
|
149931
|
+
},
|
|
148720
149932
|
"dialog": {
|
|
148721
149933
|
"type": "object",
|
|
148722
149934
|
"properties": {
|
|
@@ -148768,6 +149980,7 @@
|
|
|
148768
149980
|
"fieldMetadata.valueField",
|
|
148769
149981
|
"fieldMetadata.displayField",
|
|
148770
149982
|
"fieldMetadata.searchable",
|
|
149983
|
+
"fieldMetadata.actions",
|
|
148771
149984
|
"fieldMetadata.dialog"
|
|
148772
149985
|
],
|
|
148773
149986
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -148801,7 +150014,7 @@
|
|
|
148801
150014
|
"examples": [
|
|
148802
150015
|
{
|
|
148803
150016
|
"id": "configure-entity-lookup",
|
|
148804
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
150017
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
148805
150018
|
"operationId": "field.entityLookup.configure",
|
|
148806
150019
|
"params": {
|
|
148807
150020
|
"optionSource": {
|
|
@@ -148825,6 +150038,11 @@
|
|
|
148825
150038
|
"valueField": "id",
|
|
148826
150039
|
"displayField": "name",
|
|
148827
150040
|
"searchable": true,
|
|
150041
|
+
"actions": {
|
|
150042
|
+
"showDetail": true,
|
|
150043
|
+
"showChange": false,
|
|
150044
|
+
"showClear": true
|
|
150045
|
+
},
|
|
148828
150046
|
"dialog": {
|
|
148829
150047
|
"enabled": true,
|
|
148830
150048
|
"size": "lg",
|
|
@@ -152316,6 +153534,29 @@
|
|
|
152316
153534
|
"searchable": {
|
|
152317
153535
|
"type": "boolean"
|
|
152318
153536
|
},
|
|
153537
|
+
"actions": {
|
|
153538
|
+
"type": "object",
|
|
153539
|
+
"properties": {
|
|
153540
|
+
"showDetail": {
|
|
153541
|
+
"type": "boolean"
|
|
153542
|
+
},
|
|
153543
|
+
"showChange": {
|
|
153544
|
+
"type": "boolean"
|
|
153545
|
+
},
|
|
153546
|
+
"showCopyCode": {
|
|
153547
|
+
"type": "boolean"
|
|
153548
|
+
},
|
|
153549
|
+
"showCopyId": {
|
|
153550
|
+
"type": "boolean"
|
|
153551
|
+
},
|
|
153552
|
+
"showCreate": {
|
|
153553
|
+
"type": "boolean"
|
|
153554
|
+
},
|
|
153555
|
+
"showClear": {
|
|
153556
|
+
"type": "boolean"
|
|
153557
|
+
}
|
|
153558
|
+
}
|
|
153559
|
+
},
|
|
152319
153560
|
"dialog": {
|
|
152320
153561
|
"type": "object",
|
|
152321
153562
|
"properties": {
|
|
@@ -152367,6 +153608,7 @@
|
|
|
152367
153608
|
"fieldMetadata.valueField",
|
|
152368
153609
|
"fieldMetadata.displayField",
|
|
152369
153610
|
"fieldMetadata.searchable",
|
|
153611
|
+
"fieldMetadata.actions",
|
|
152370
153612
|
"fieldMetadata.dialog"
|
|
152371
153613
|
],
|
|
152372
153614
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -152400,7 +153642,7 @@
|
|
|
152400
153642
|
"examples": [
|
|
152401
153643
|
{
|
|
152402
153644
|
"id": "configure-entity-lookup",
|
|
152403
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
153645
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
152404
153646
|
"operationId": "field.entityLookup.configure",
|
|
152405
153647
|
"params": {
|
|
152406
153648
|
"optionSource": {
|
|
@@ -152424,6 +153666,11 @@
|
|
|
152424
153666
|
"valueField": "id",
|
|
152425
153667
|
"displayField": "name",
|
|
152426
153668
|
"searchable": true,
|
|
153669
|
+
"actions": {
|
|
153670
|
+
"showDetail": true,
|
|
153671
|
+
"showChange": false,
|
|
153672
|
+
"showClear": true
|
|
153673
|
+
},
|
|
152427
153674
|
"dialog": {
|
|
152428
153675
|
"enabled": true,
|
|
152429
153676
|
"size": "lg",
|
|
@@ -155885,6 +157132,29 @@
|
|
|
155885
157132
|
"searchable": {
|
|
155886
157133
|
"type": "boolean"
|
|
155887
157134
|
},
|
|
157135
|
+
"actions": {
|
|
157136
|
+
"type": "object",
|
|
157137
|
+
"properties": {
|
|
157138
|
+
"showDetail": {
|
|
157139
|
+
"type": "boolean"
|
|
157140
|
+
},
|
|
157141
|
+
"showChange": {
|
|
157142
|
+
"type": "boolean"
|
|
157143
|
+
},
|
|
157144
|
+
"showCopyCode": {
|
|
157145
|
+
"type": "boolean"
|
|
157146
|
+
},
|
|
157147
|
+
"showCopyId": {
|
|
157148
|
+
"type": "boolean"
|
|
157149
|
+
},
|
|
157150
|
+
"showCreate": {
|
|
157151
|
+
"type": "boolean"
|
|
157152
|
+
},
|
|
157153
|
+
"showClear": {
|
|
157154
|
+
"type": "boolean"
|
|
157155
|
+
}
|
|
157156
|
+
}
|
|
157157
|
+
},
|
|
155888
157158
|
"dialog": {
|
|
155889
157159
|
"type": "object",
|
|
155890
157160
|
"properties": {
|
|
@@ -155936,6 +157206,7 @@
|
|
|
155936
157206
|
"fieldMetadata.valueField",
|
|
155937
157207
|
"fieldMetadata.displayField",
|
|
155938
157208
|
"fieldMetadata.searchable",
|
|
157209
|
+
"fieldMetadata.actions",
|
|
155939
157210
|
"fieldMetadata.dialog"
|
|
155940
157211
|
],
|
|
155941
157212
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -155969,7 +157240,7 @@
|
|
|
155969
157240
|
"examples": [
|
|
155970
157241
|
{
|
|
155971
157242
|
"id": "configure-entity-lookup",
|
|
155972
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
157243
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
155973
157244
|
"operationId": "field.entityLookup.configure",
|
|
155974
157245
|
"params": {
|
|
155975
157246
|
"optionSource": {
|
|
@@ -155993,6 +157264,11 @@
|
|
|
155993
157264
|
"valueField": "id",
|
|
155994
157265
|
"displayField": "name",
|
|
155995
157266
|
"searchable": true,
|
|
157267
|
+
"actions": {
|
|
157268
|
+
"showDetail": true,
|
|
157269
|
+
"showChange": false,
|
|
157270
|
+
"showClear": true
|
|
157271
|
+
},
|
|
155996
157272
|
"dialog": {
|
|
155997
157273
|
"enabled": true,
|
|
155998
157274
|
"size": "lg",
|
|
@@ -159456,6 +160732,29 @@
|
|
|
159456
160732
|
"searchable": {
|
|
159457
160733
|
"type": "boolean"
|
|
159458
160734
|
},
|
|
160735
|
+
"actions": {
|
|
160736
|
+
"type": "object",
|
|
160737
|
+
"properties": {
|
|
160738
|
+
"showDetail": {
|
|
160739
|
+
"type": "boolean"
|
|
160740
|
+
},
|
|
160741
|
+
"showChange": {
|
|
160742
|
+
"type": "boolean"
|
|
160743
|
+
},
|
|
160744
|
+
"showCopyCode": {
|
|
160745
|
+
"type": "boolean"
|
|
160746
|
+
},
|
|
160747
|
+
"showCopyId": {
|
|
160748
|
+
"type": "boolean"
|
|
160749
|
+
},
|
|
160750
|
+
"showCreate": {
|
|
160751
|
+
"type": "boolean"
|
|
160752
|
+
},
|
|
160753
|
+
"showClear": {
|
|
160754
|
+
"type": "boolean"
|
|
160755
|
+
}
|
|
160756
|
+
}
|
|
160757
|
+
},
|
|
159459
160758
|
"dialog": {
|
|
159460
160759
|
"type": "object",
|
|
159461
160760
|
"properties": {
|
|
@@ -159507,6 +160806,7 @@
|
|
|
159507
160806
|
"fieldMetadata.valueField",
|
|
159508
160807
|
"fieldMetadata.displayField",
|
|
159509
160808
|
"fieldMetadata.searchable",
|
|
160809
|
+
"fieldMetadata.actions",
|
|
159510
160810
|
"fieldMetadata.dialog"
|
|
159511
160811
|
],
|
|
159512
160812
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -159540,7 +160840,7 @@
|
|
|
159540
160840
|
"examples": [
|
|
159541
160841
|
{
|
|
159542
160842
|
"id": "configure-entity-lookup",
|
|
159543
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
160843
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
159544
160844
|
"operationId": "field.entityLookup.configure",
|
|
159545
160845
|
"params": {
|
|
159546
160846
|
"optionSource": {
|
|
@@ -159564,6 +160864,11 @@
|
|
|
159564
160864
|
"valueField": "id",
|
|
159565
160865
|
"displayField": "name",
|
|
159566
160866
|
"searchable": true,
|
|
160867
|
+
"actions": {
|
|
160868
|
+
"showDetail": true,
|
|
160869
|
+
"showChange": false,
|
|
160870
|
+
"showClear": true
|
|
160871
|
+
},
|
|
159567
160872
|
"dialog": {
|
|
159568
160873
|
"enabled": true,
|
|
159569
160874
|
"size": "lg",
|
|
@@ -163049,6 +164354,29 @@
|
|
|
163049
164354
|
"searchable": {
|
|
163050
164355
|
"type": "boolean"
|
|
163051
164356
|
},
|
|
164357
|
+
"actions": {
|
|
164358
|
+
"type": "object",
|
|
164359
|
+
"properties": {
|
|
164360
|
+
"showDetail": {
|
|
164361
|
+
"type": "boolean"
|
|
164362
|
+
},
|
|
164363
|
+
"showChange": {
|
|
164364
|
+
"type": "boolean"
|
|
164365
|
+
},
|
|
164366
|
+
"showCopyCode": {
|
|
164367
|
+
"type": "boolean"
|
|
164368
|
+
},
|
|
164369
|
+
"showCopyId": {
|
|
164370
|
+
"type": "boolean"
|
|
164371
|
+
},
|
|
164372
|
+
"showCreate": {
|
|
164373
|
+
"type": "boolean"
|
|
164374
|
+
},
|
|
164375
|
+
"showClear": {
|
|
164376
|
+
"type": "boolean"
|
|
164377
|
+
}
|
|
164378
|
+
}
|
|
164379
|
+
},
|
|
163052
164380
|
"dialog": {
|
|
163053
164381
|
"type": "object",
|
|
163054
164382
|
"properties": {
|
|
@@ -163100,6 +164428,7 @@
|
|
|
163100
164428
|
"fieldMetadata.valueField",
|
|
163101
164429
|
"fieldMetadata.displayField",
|
|
163102
164430
|
"fieldMetadata.searchable",
|
|
164431
|
+
"fieldMetadata.actions",
|
|
163103
164432
|
"fieldMetadata.dialog"
|
|
163104
164433
|
],
|
|
163105
164434
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -163133,7 +164462,7 @@
|
|
|
163133
164462
|
"examples": [
|
|
163134
164463
|
{
|
|
163135
164464
|
"id": "configure-entity-lookup",
|
|
163136
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
164465
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
163137
164466
|
"operationId": "field.entityLookup.configure",
|
|
163138
164467
|
"params": {
|
|
163139
164468
|
"optionSource": {
|
|
@@ -163157,6 +164486,11 @@
|
|
|
163157
164486
|
"valueField": "id",
|
|
163158
164487
|
"displayField": "name",
|
|
163159
164488
|
"searchable": true,
|
|
164489
|
+
"actions": {
|
|
164490
|
+
"showDetail": true,
|
|
164491
|
+
"showChange": false,
|
|
164492
|
+
"showClear": true
|
|
164493
|
+
},
|
|
163160
164494
|
"dialog": {
|
|
163161
164495
|
"enabled": true,
|
|
163162
164496
|
"size": "lg",
|
|
@@ -166635,6 +167969,29 @@
|
|
|
166635
167969
|
"searchable": {
|
|
166636
167970
|
"type": "boolean"
|
|
166637
167971
|
},
|
|
167972
|
+
"actions": {
|
|
167973
|
+
"type": "object",
|
|
167974
|
+
"properties": {
|
|
167975
|
+
"showDetail": {
|
|
167976
|
+
"type": "boolean"
|
|
167977
|
+
},
|
|
167978
|
+
"showChange": {
|
|
167979
|
+
"type": "boolean"
|
|
167980
|
+
},
|
|
167981
|
+
"showCopyCode": {
|
|
167982
|
+
"type": "boolean"
|
|
167983
|
+
},
|
|
167984
|
+
"showCopyId": {
|
|
167985
|
+
"type": "boolean"
|
|
167986
|
+
},
|
|
167987
|
+
"showCreate": {
|
|
167988
|
+
"type": "boolean"
|
|
167989
|
+
},
|
|
167990
|
+
"showClear": {
|
|
167991
|
+
"type": "boolean"
|
|
167992
|
+
}
|
|
167993
|
+
}
|
|
167994
|
+
},
|
|
166638
167995
|
"dialog": {
|
|
166639
167996
|
"type": "object",
|
|
166640
167997
|
"properties": {
|
|
@@ -166686,6 +168043,7 @@
|
|
|
166686
168043
|
"fieldMetadata.valueField",
|
|
166687
168044
|
"fieldMetadata.displayField",
|
|
166688
168045
|
"fieldMetadata.searchable",
|
|
168046
|
+
"fieldMetadata.actions",
|
|
166689
168047
|
"fieldMetadata.dialog"
|
|
166690
168048
|
],
|
|
166691
168049
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -166719,7 +168077,7 @@
|
|
|
166719
168077
|
"examples": [
|
|
166720
168078
|
{
|
|
166721
168079
|
"id": "configure-entity-lookup",
|
|
166722
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
168080
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
166723
168081
|
"operationId": "field.entityLookup.configure",
|
|
166724
168082
|
"params": {
|
|
166725
168083
|
"optionSource": {
|
|
@@ -166743,6 +168101,11 @@
|
|
|
166743
168101
|
"valueField": "id",
|
|
166744
168102
|
"displayField": "name",
|
|
166745
168103
|
"searchable": true,
|
|
168104
|
+
"actions": {
|
|
168105
|
+
"showDetail": true,
|
|
168106
|
+
"showChange": false,
|
|
168107
|
+
"showClear": true
|
|
168108
|
+
},
|
|
166746
168109
|
"dialog": {
|
|
166747
168110
|
"enabled": true,
|
|
166748
168111
|
"size": "lg",
|
|
@@ -170219,6 +171582,29 @@
|
|
|
170219
171582
|
"searchable": {
|
|
170220
171583
|
"type": "boolean"
|
|
170221
171584
|
},
|
|
171585
|
+
"actions": {
|
|
171586
|
+
"type": "object",
|
|
171587
|
+
"properties": {
|
|
171588
|
+
"showDetail": {
|
|
171589
|
+
"type": "boolean"
|
|
171590
|
+
},
|
|
171591
|
+
"showChange": {
|
|
171592
|
+
"type": "boolean"
|
|
171593
|
+
},
|
|
171594
|
+
"showCopyCode": {
|
|
171595
|
+
"type": "boolean"
|
|
171596
|
+
},
|
|
171597
|
+
"showCopyId": {
|
|
171598
|
+
"type": "boolean"
|
|
171599
|
+
},
|
|
171600
|
+
"showCreate": {
|
|
171601
|
+
"type": "boolean"
|
|
171602
|
+
},
|
|
171603
|
+
"showClear": {
|
|
171604
|
+
"type": "boolean"
|
|
171605
|
+
}
|
|
171606
|
+
}
|
|
171607
|
+
},
|
|
170222
171608
|
"dialog": {
|
|
170223
171609
|
"type": "object",
|
|
170224
171610
|
"properties": {
|
|
@@ -170270,6 +171656,7 @@
|
|
|
170270
171656
|
"fieldMetadata.valueField",
|
|
170271
171657
|
"fieldMetadata.displayField",
|
|
170272
171658
|
"fieldMetadata.searchable",
|
|
171659
|
+
"fieldMetadata.actions",
|
|
170273
171660
|
"fieldMetadata.dialog"
|
|
170274
171661
|
],
|
|
170275
171662
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -170303,7 +171690,7 @@
|
|
|
170303
171690
|
"examples": [
|
|
170304
171691
|
{
|
|
170305
171692
|
"id": "configure-entity-lookup",
|
|
170306
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
171693
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
170307
171694
|
"operationId": "field.entityLookup.configure",
|
|
170308
171695
|
"params": {
|
|
170309
171696
|
"optionSource": {
|
|
@@ -170327,6 +171714,11 @@
|
|
|
170327
171714
|
"valueField": "id",
|
|
170328
171715
|
"displayField": "name",
|
|
170329
171716
|
"searchable": true,
|
|
171717
|
+
"actions": {
|
|
171718
|
+
"showDetail": true,
|
|
171719
|
+
"showChange": false,
|
|
171720
|
+
"showClear": true
|
|
171721
|
+
},
|
|
170330
171722
|
"dialog": {
|
|
170331
171723
|
"enabled": true,
|
|
170332
171724
|
"size": "lg",
|
|
@@ -173798,6 +175190,29 @@
|
|
|
173798
175190
|
"searchable": {
|
|
173799
175191
|
"type": "boolean"
|
|
173800
175192
|
},
|
|
175193
|
+
"actions": {
|
|
175194
|
+
"type": "object",
|
|
175195
|
+
"properties": {
|
|
175196
|
+
"showDetail": {
|
|
175197
|
+
"type": "boolean"
|
|
175198
|
+
},
|
|
175199
|
+
"showChange": {
|
|
175200
|
+
"type": "boolean"
|
|
175201
|
+
},
|
|
175202
|
+
"showCopyCode": {
|
|
175203
|
+
"type": "boolean"
|
|
175204
|
+
},
|
|
175205
|
+
"showCopyId": {
|
|
175206
|
+
"type": "boolean"
|
|
175207
|
+
},
|
|
175208
|
+
"showCreate": {
|
|
175209
|
+
"type": "boolean"
|
|
175210
|
+
},
|
|
175211
|
+
"showClear": {
|
|
175212
|
+
"type": "boolean"
|
|
175213
|
+
}
|
|
175214
|
+
}
|
|
175215
|
+
},
|
|
173801
175216
|
"dialog": {
|
|
173802
175217
|
"type": "object",
|
|
173803
175218
|
"properties": {
|
|
@@ -173849,6 +175264,7 @@
|
|
|
173849
175264
|
"fieldMetadata.valueField",
|
|
173850
175265
|
"fieldMetadata.displayField",
|
|
173851
175266
|
"fieldMetadata.searchable",
|
|
175267
|
+
"fieldMetadata.actions",
|
|
173852
175268
|
"fieldMetadata.dialog"
|
|
173853
175269
|
],
|
|
173854
175270
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -173882,7 +175298,7 @@
|
|
|
173882
175298
|
"examples": [
|
|
173883
175299
|
{
|
|
173884
175300
|
"id": "configure-entity-lookup",
|
|
173885
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
175301
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
173886
175302
|
"operationId": "field.entityLookup.configure",
|
|
173887
175303
|
"params": {
|
|
173888
175304
|
"optionSource": {
|
|
@@ -173906,6 +175322,11 @@
|
|
|
173906
175322
|
"valueField": "id",
|
|
173907
175323
|
"displayField": "name",
|
|
173908
175324
|
"searchable": true,
|
|
175325
|
+
"actions": {
|
|
175326
|
+
"showDetail": true,
|
|
175327
|
+
"showChange": false,
|
|
175328
|
+
"showClear": true
|
|
175329
|
+
},
|
|
173909
175330
|
"dialog": {
|
|
173910
175331
|
"enabled": true,
|
|
173911
175332
|
"size": "lg",
|
|
@@ -177398,6 +178819,29 @@
|
|
|
177398
178819
|
"searchable": {
|
|
177399
178820
|
"type": "boolean"
|
|
177400
178821
|
},
|
|
178822
|
+
"actions": {
|
|
178823
|
+
"type": "object",
|
|
178824
|
+
"properties": {
|
|
178825
|
+
"showDetail": {
|
|
178826
|
+
"type": "boolean"
|
|
178827
|
+
},
|
|
178828
|
+
"showChange": {
|
|
178829
|
+
"type": "boolean"
|
|
178830
|
+
},
|
|
178831
|
+
"showCopyCode": {
|
|
178832
|
+
"type": "boolean"
|
|
178833
|
+
},
|
|
178834
|
+
"showCopyId": {
|
|
178835
|
+
"type": "boolean"
|
|
178836
|
+
},
|
|
178837
|
+
"showCreate": {
|
|
178838
|
+
"type": "boolean"
|
|
178839
|
+
},
|
|
178840
|
+
"showClear": {
|
|
178841
|
+
"type": "boolean"
|
|
178842
|
+
}
|
|
178843
|
+
}
|
|
178844
|
+
},
|
|
177401
178845
|
"dialog": {
|
|
177402
178846
|
"type": "object",
|
|
177403
178847
|
"properties": {
|
|
@@ -177449,6 +178893,7 @@
|
|
|
177449
178893
|
"fieldMetadata.valueField",
|
|
177450
178894
|
"fieldMetadata.displayField",
|
|
177451
178895
|
"fieldMetadata.searchable",
|
|
178896
|
+
"fieldMetadata.actions",
|
|
177452
178897
|
"fieldMetadata.dialog"
|
|
177453
178898
|
],
|
|
177454
178899
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -177482,7 +178927,7 @@
|
|
|
177482
178927
|
"examples": [
|
|
177483
178928
|
{
|
|
177484
178929
|
"id": "configure-entity-lookup",
|
|
177485
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
178930
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
177486
178931
|
"operationId": "field.entityLookup.configure",
|
|
177487
178932
|
"params": {
|
|
177488
178933
|
"optionSource": {
|
|
@@ -177506,6 +178951,11 @@
|
|
|
177506
178951
|
"valueField": "id",
|
|
177507
178952
|
"displayField": "name",
|
|
177508
178953
|
"searchable": true,
|
|
178954
|
+
"actions": {
|
|
178955
|
+
"showDetail": true,
|
|
178956
|
+
"showChange": false,
|
|
178957
|
+
"showClear": true
|
|
178958
|
+
},
|
|
177509
178959
|
"dialog": {
|
|
177510
178960
|
"enabled": true,
|
|
177511
178961
|
"size": "lg",
|
|
@@ -180987,6 +182437,29 @@
|
|
|
180987
182437
|
"searchable": {
|
|
180988
182438
|
"type": "boolean"
|
|
180989
182439
|
},
|
|
182440
|
+
"actions": {
|
|
182441
|
+
"type": "object",
|
|
182442
|
+
"properties": {
|
|
182443
|
+
"showDetail": {
|
|
182444
|
+
"type": "boolean"
|
|
182445
|
+
},
|
|
182446
|
+
"showChange": {
|
|
182447
|
+
"type": "boolean"
|
|
182448
|
+
},
|
|
182449
|
+
"showCopyCode": {
|
|
182450
|
+
"type": "boolean"
|
|
182451
|
+
},
|
|
182452
|
+
"showCopyId": {
|
|
182453
|
+
"type": "boolean"
|
|
182454
|
+
},
|
|
182455
|
+
"showCreate": {
|
|
182456
|
+
"type": "boolean"
|
|
182457
|
+
},
|
|
182458
|
+
"showClear": {
|
|
182459
|
+
"type": "boolean"
|
|
182460
|
+
}
|
|
182461
|
+
}
|
|
182462
|
+
},
|
|
180990
182463
|
"dialog": {
|
|
180991
182464
|
"type": "object",
|
|
180992
182465
|
"properties": {
|
|
@@ -181038,6 +182511,7 @@
|
|
|
181038
182511
|
"fieldMetadata.valueField",
|
|
181039
182512
|
"fieldMetadata.displayField",
|
|
181040
182513
|
"fieldMetadata.searchable",
|
|
182514
|
+
"fieldMetadata.actions",
|
|
181041
182515
|
"fieldMetadata.dialog"
|
|
181042
182516
|
],
|
|
181043
182517
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -181071,7 +182545,7 @@
|
|
|
181071
182545
|
"examples": [
|
|
181072
182546
|
{
|
|
181073
182547
|
"id": "configure-entity-lookup",
|
|
181074
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
182548
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
181075
182549
|
"operationId": "field.entityLookup.configure",
|
|
181076
182550
|
"params": {
|
|
181077
182551
|
"optionSource": {
|
|
@@ -181095,6 +182569,11 @@
|
|
|
181095
182569
|
"valueField": "id",
|
|
181096
182570
|
"displayField": "name",
|
|
181097
182571
|
"searchable": true,
|
|
182572
|
+
"actions": {
|
|
182573
|
+
"showDetail": true,
|
|
182574
|
+
"showChange": false,
|
|
182575
|
+
"showClear": true
|
|
182576
|
+
},
|
|
181098
182577
|
"dialog": {
|
|
181099
182578
|
"enabled": true,
|
|
181100
182579
|
"size": "lg",
|
|
@@ -184572,6 +186051,29 @@
|
|
|
184572
186051
|
"searchable": {
|
|
184573
186052
|
"type": "boolean"
|
|
184574
186053
|
},
|
|
186054
|
+
"actions": {
|
|
186055
|
+
"type": "object",
|
|
186056
|
+
"properties": {
|
|
186057
|
+
"showDetail": {
|
|
186058
|
+
"type": "boolean"
|
|
186059
|
+
},
|
|
186060
|
+
"showChange": {
|
|
186061
|
+
"type": "boolean"
|
|
186062
|
+
},
|
|
186063
|
+
"showCopyCode": {
|
|
186064
|
+
"type": "boolean"
|
|
186065
|
+
},
|
|
186066
|
+
"showCopyId": {
|
|
186067
|
+
"type": "boolean"
|
|
186068
|
+
},
|
|
186069
|
+
"showCreate": {
|
|
186070
|
+
"type": "boolean"
|
|
186071
|
+
},
|
|
186072
|
+
"showClear": {
|
|
186073
|
+
"type": "boolean"
|
|
186074
|
+
}
|
|
186075
|
+
}
|
|
186076
|
+
},
|
|
184575
186077
|
"dialog": {
|
|
184576
186078
|
"type": "object",
|
|
184577
186079
|
"properties": {
|
|
@@ -184623,6 +186125,7 @@
|
|
|
184623
186125
|
"fieldMetadata.valueField",
|
|
184624
186126
|
"fieldMetadata.displayField",
|
|
184625
186127
|
"fieldMetadata.searchable",
|
|
186128
|
+
"fieldMetadata.actions",
|
|
184626
186129
|
"fieldMetadata.dialog"
|
|
184627
186130
|
],
|
|
184628
186131
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -184656,7 +186159,7 @@
|
|
|
184656
186159
|
"examples": [
|
|
184657
186160
|
{
|
|
184658
186161
|
"id": "configure-entity-lookup",
|
|
184659
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
186162
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
184660
186163
|
"operationId": "field.entityLookup.configure",
|
|
184661
186164
|
"params": {
|
|
184662
186165
|
"optionSource": {
|
|
@@ -184680,6 +186183,11 @@
|
|
|
184680
186183
|
"valueField": "id",
|
|
184681
186184
|
"displayField": "name",
|
|
184682
186185
|
"searchable": true,
|
|
186186
|
+
"actions": {
|
|
186187
|
+
"showDetail": true,
|
|
186188
|
+
"showChange": false,
|
|
186189
|
+
"showClear": true
|
|
186190
|
+
},
|
|
184683
186191
|
"dialog": {
|
|
184684
186192
|
"enabled": true,
|
|
184685
186193
|
"size": "lg",
|
|
@@ -188172,6 +189680,29 @@
|
|
|
188172
189680
|
"searchable": {
|
|
188173
189681
|
"type": "boolean"
|
|
188174
189682
|
},
|
|
189683
|
+
"actions": {
|
|
189684
|
+
"type": "object",
|
|
189685
|
+
"properties": {
|
|
189686
|
+
"showDetail": {
|
|
189687
|
+
"type": "boolean"
|
|
189688
|
+
},
|
|
189689
|
+
"showChange": {
|
|
189690
|
+
"type": "boolean"
|
|
189691
|
+
},
|
|
189692
|
+
"showCopyCode": {
|
|
189693
|
+
"type": "boolean"
|
|
189694
|
+
},
|
|
189695
|
+
"showCopyId": {
|
|
189696
|
+
"type": "boolean"
|
|
189697
|
+
},
|
|
189698
|
+
"showCreate": {
|
|
189699
|
+
"type": "boolean"
|
|
189700
|
+
},
|
|
189701
|
+
"showClear": {
|
|
189702
|
+
"type": "boolean"
|
|
189703
|
+
}
|
|
189704
|
+
}
|
|
189705
|
+
},
|
|
188175
189706
|
"dialog": {
|
|
188176
189707
|
"type": "object",
|
|
188177
189708
|
"properties": {
|
|
@@ -188223,6 +189754,7 @@
|
|
|
188223
189754
|
"fieldMetadata.valueField",
|
|
188224
189755
|
"fieldMetadata.displayField",
|
|
188225
189756
|
"fieldMetadata.searchable",
|
|
189757
|
+
"fieldMetadata.actions",
|
|
188226
189758
|
"fieldMetadata.dialog"
|
|
188227
189759
|
],
|
|
188228
189760
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -188256,7 +189788,7 @@
|
|
|
188256
189788
|
"examples": [
|
|
188257
189789
|
{
|
|
188258
189790
|
"id": "configure-entity-lookup",
|
|
188259
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
189791
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
188260
189792
|
"operationId": "field.entityLookup.configure",
|
|
188261
189793
|
"params": {
|
|
188262
189794
|
"optionSource": {
|
|
@@ -188280,6 +189812,11 @@
|
|
|
188280
189812
|
"valueField": "id",
|
|
188281
189813
|
"displayField": "name",
|
|
188282
189814
|
"searchable": true,
|
|
189815
|
+
"actions": {
|
|
189816
|
+
"showDetail": true,
|
|
189817
|
+
"showChange": false,
|
|
189818
|
+
"showClear": true
|
|
189819
|
+
},
|
|
188283
189820
|
"dialog": {
|
|
188284
189821
|
"enabled": true,
|
|
188285
189822
|
"size": "lg",
|
|
@@ -191807,6 +193344,29 @@
|
|
|
191807
193344
|
"searchable": {
|
|
191808
193345
|
"type": "boolean"
|
|
191809
193346
|
},
|
|
193347
|
+
"actions": {
|
|
193348
|
+
"type": "object",
|
|
193349
|
+
"properties": {
|
|
193350
|
+
"showDetail": {
|
|
193351
|
+
"type": "boolean"
|
|
193352
|
+
},
|
|
193353
|
+
"showChange": {
|
|
193354
|
+
"type": "boolean"
|
|
193355
|
+
},
|
|
193356
|
+
"showCopyCode": {
|
|
193357
|
+
"type": "boolean"
|
|
193358
|
+
},
|
|
193359
|
+
"showCopyId": {
|
|
193360
|
+
"type": "boolean"
|
|
193361
|
+
},
|
|
193362
|
+
"showCreate": {
|
|
193363
|
+
"type": "boolean"
|
|
193364
|
+
},
|
|
193365
|
+
"showClear": {
|
|
193366
|
+
"type": "boolean"
|
|
193367
|
+
}
|
|
193368
|
+
}
|
|
193369
|
+
},
|
|
191810
193370
|
"dialog": {
|
|
191811
193371
|
"type": "object",
|
|
191812
193372
|
"properties": {
|
|
@@ -191858,6 +193418,7 @@
|
|
|
191858
193418
|
"fieldMetadata.valueField",
|
|
191859
193419
|
"fieldMetadata.displayField",
|
|
191860
193420
|
"fieldMetadata.searchable",
|
|
193421
|
+
"fieldMetadata.actions",
|
|
191861
193422
|
"fieldMetadata.dialog"
|
|
191862
193423
|
],
|
|
191863
193424
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -191891,7 +193452,7 @@
|
|
|
191891
193452
|
"examples": [
|
|
191892
193453
|
{
|
|
191893
193454
|
"id": "configure-entity-lookup",
|
|
191894
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
193455
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
191895
193456
|
"operationId": "field.entityLookup.configure",
|
|
191896
193457
|
"params": {
|
|
191897
193458
|
"optionSource": {
|
|
@@ -191915,6 +193476,11 @@
|
|
|
191915
193476
|
"valueField": "id",
|
|
191916
193477
|
"displayField": "name",
|
|
191917
193478
|
"searchable": true,
|
|
193479
|
+
"actions": {
|
|
193480
|
+
"showDetail": true,
|
|
193481
|
+
"showChange": false,
|
|
193482
|
+
"showClear": true
|
|
193483
|
+
},
|
|
191918
193484
|
"dialog": {
|
|
191919
193485
|
"enabled": true,
|
|
191920
193486
|
"size": "lg",
|
|
@@ -195384,6 +196950,29 @@
|
|
|
195384
196950
|
"searchable": {
|
|
195385
196951
|
"type": "boolean"
|
|
195386
196952
|
},
|
|
196953
|
+
"actions": {
|
|
196954
|
+
"type": "object",
|
|
196955
|
+
"properties": {
|
|
196956
|
+
"showDetail": {
|
|
196957
|
+
"type": "boolean"
|
|
196958
|
+
},
|
|
196959
|
+
"showChange": {
|
|
196960
|
+
"type": "boolean"
|
|
196961
|
+
},
|
|
196962
|
+
"showCopyCode": {
|
|
196963
|
+
"type": "boolean"
|
|
196964
|
+
},
|
|
196965
|
+
"showCopyId": {
|
|
196966
|
+
"type": "boolean"
|
|
196967
|
+
},
|
|
196968
|
+
"showCreate": {
|
|
196969
|
+
"type": "boolean"
|
|
196970
|
+
},
|
|
196971
|
+
"showClear": {
|
|
196972
|
+
"type": "boolean"
|
|
196973
|
+
}
|
|
196974
|
+
}
|
|
196975
|
+
},
|
|
195387
196976
|
"dialog": {
|
|
195388
196977
|
"type": "object",
|
|
195389
196978
|
"properties": {
|
|
@@ -195435,6 +197024,7 @@
|
|
|
195435
197024
|
"fieldMetadata.valueField",
|
|
195436
197025
|
"fieldMetadata.displayField",
|
|
195437
197026
|
"fieldMetadata.searchable",
|
|
197027
|
+
"fieldMetadata.actions",
|
|
195438
197028
|
"fieldMetadata.dialog"
|
|
195439
197029
|
],
|
|
195440
197030
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -195468,7 +197058,7 @@
|
|
|
195468
197058
|
"examples": [
|
|
195469
197059
|
{
|
|
195470
197060
|
"id": "configure-entity-lookup",
|
|
195471
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
197061
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
195472
197062
|
"operationId": "field.entityLookup.configure",
|
|
195473
197063
|
"params": {
|
|
195474
197064
|
"optionSource": {
|
|
@@ -195492,6 +197082,11 @@
|
|
|
195492
197082
|
"valueField": "id",
|
|
195493
197083
|
"displayField": "name",
|
|
195494
197084
|
"searchable": true,
|
|
197085
|
+
"actions": {
|
|
197086
|
+
"showDetail": true,
|
|
197087
|
+
"showChange": false,
|
|
197088
|
+
"showClear": true
|
|
197089
|
+
},
|
|
195495
197090
|
"dialog": {
|
|
195496
197091
|
"enabled": true,
|
|
195497
197092
|
"size": "lg",
|
|
@@ -198983,6 +200578,29 @@
|
|
|
198983
200578
|
"searchable": {
|
|
198984
200579
|
"type": "boolean"
|
|
198985
200580
|
},
|
|
200581
|
+
"actions": {
|
|
200582
|
+
"type": "object",
|
|
200583
|
+
"properties": {
|
|
200584
|
+
"showDetail": {
|
|
200585
|
+
"type": "boolean"
|
|
200586
|
+
},
|
|
200587
|
+
"showChange": {
|
|
200588
|
+
"type": "boolean"
|
|
200589
|
+
},
|
|
200590
|
+
"showCopyCode": {
|
|
200591
|
+
"type": "boolean"
|
|
200592
|
+
},
|
|
200593
|
+
"showCopyId": {
|
|
200594
|
+
"type": "boolean"
|
|
200595
|
+
},
|
|
200596
|
+
"showCreate": {
|
|
200597
|
+
"type": "boolean"
|
|
200598
|
+
},
|
|
200599
|
+
"showClear": {
|
|
200600
|
+
"type": "boolean"
|
|
200601
|
+
}
|
|
200602
|
+
}
|
|
200603
|
+
},
|
|
198986
200604
|
"dialog": {
|
|
198987
200605
|
"type": "object",
|
|
198988
200606
|
"properties": {
|
|
@@ -199034,6 +200652,7 @@
|
|
|
199034
200652
|
"fieldMetadata.valueField",
|
|
199035
200653
|
"fieldMetadata.displayField",
|
|
199036
200654
|
"fieldMetadata.searchable",
|
|
200655
|
+
"fieldMetadata.actions",
|
|
199037
200656
|
"fieldMetadata.dialog"
|
|
199038
200657
|
],
|
|
199039
200658
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -199067,7 +200686,7 @@
|
|
|
199067
200686
|
"examples": [
|
|
199068
200687
|
{
|
|
199069
200688
|
"id": "configure-entity-lookup",
|
|
199070
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
200689
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
199071
200690
|
"operationId": "field.entityLookup.configure",
|
|
199072
200691
|
"params": {
|
|
199073
200692
|
"optionSource": {
|
|
@@ -199091,6 +200710,11 @@
|
|
|
199091
200710
|
"valueField": "id",
|
|
199092
200711
|
"displayField": "name",
|
|
199093
200712
|
"searchable": true,
|
|
200713
|
+
"actions": {
|
|
200714
|
+
"showDetail": true,
|
|
200715
|
+
"showChange": false,
|
|
200716
|
+
"showClear": true
|
|
200717
|
+
},
|
|
199094
200718
|
"dialog": {
|
|
199095
200719
|
"enabled": true,
|
|
199096
200720
|
"size": "lg",
|
|
@@ -202582,6 +204206,29 @@
|
|
|
202582
204206
|
"searchable": {
|
|
202583
204207
|
"type": "boolean"
|
|
202584
204208
|
},
|
|
204209
|
+
"actions": {
|
|
204210
|
+
"type": "object",
|
|
204211
|
+
"properties": {
|
|
204212
|
+
"showDetail": {
|
|
204213
|
+
"type": "boolean"
|
|
204214
|
+
},
|
|
204215
|
+
"showChange": {
|
|
204216
|
+
"type": "boolean"
|
|
204217
|
+
},
|
|
204218
|
+
"showCopyCode": {
|
|
204219
|
+
"type": "boolean"
|
|
204220
|
+
},
|
|
204221
|
+
"showCopyId": {
|
|
204222
|
+
"type": "boolean"
|
|
204223
|
+
},
|
|
204224
|
+
"showCreate": {
|
|
204225
|
+
"type": "boolean"
|
|
204226
|
+
},
|
|
204227
|
+
"showClear": {
|
|
204228
|
+
"type": "boolean"
|
|
204229
|
+
}
|
|
204230
|
+
}
|
|
204231
|
+
},
|
|
202585
204232
|
"dialog": {
|
|
202586
204233
|
"type": "object",
|
|
202587
204234
|
"properties": {
|
|
@@ -202633,6 +204280,7 @@
|
|
|
202633
204280
|
"fieldMetadata.valueField",
|
|
202634
204281
|
"fieldMetadata.displayField",
|
|
202635
204282
|
"fieldMetadata.searchable",
|
|
204283
|
+
"fieldMetadata.actions",
|
|
202636
204284
|
"fieldMetadata.dialog"
|
|
202637
204285
|
],
|
|
202638
204286
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -202666,7 +204314,7 @@
|
|
|
202666
204314
|
"examples": [
|
|
202667
204315
|
{
|
|
202668
204316
|
"id": "configure-entity-lookup",
|
|
202669
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
204317
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
202670
204318
|
"operationId": "field.entityLookup.configure",
|
|
202671
204319
|
"params": {
|
|
202672
204320
|
"optionSource": {
|
|
@@ -202690,6 +204338,11 @@
|
|
|
202690
204338
|
"valueField": "id",
|
|
202691
204339
|
"displayField": "name",
|
|
202692
204340
|
"searchable": true,
|
|
204341
|
+
"actions": {
|
|
204342
|
+
"showDetail": true,
|
|
204343
|
+
"showChange": false,
|
|
204344
|
+
"showClear": true
|
|
204345
|
+
},
|
|
202693
204346
|
"dialog": {
|
|
202694
204347
|
"enabled": true,
|
|
202695
204348
|
"size": "lg",
|
|
@@ -206168,6 +207821,29 @@
|
|
|
206168
207821
|
"searchable": {
|
|
206169
207822
|
"type": "boolean"
|
|
206170
207823
|
},
|
|
207824
|
+
"actions": {
|
|
207825
|
+
"type": "object",
|
|
207826
|
+
"properties": {
|
|
207827
|
+
"showDetail": {
|
|
207828
|
+
"type": "boolean"
|
|
207829
|
+
},
|
|
207830
|
+
"showChange": {
|
|
207831
|
+
"type": "boolean"
|
|
207832
|
+
},
|
|
207833
|
+
"showCopyCode": {
|
|
207834
|
+
"type": "boolean"
|
|
207835
|
+
},
|
|
207836
|
+
"showCopyId": {
|
|
207837
|
+
"type": "boolean"
|
|
207838
|
+
},
|
|
207839
|
+
"showCreate": {
|
|
207840
|
+
"type": "boolean"
|
|
207841
|
+
},
|
|
207842
|
+
"showClear": {
|
|
207843
|
+
"type": "boolean"
|
|
207844
|
+
}
|
|
207845
|
+
}
|
|
207846
|
+
},
|
|
206171
207847
|
"dialog": {
|
|
206172
207848
|
"type": "object",
|
|
206173
207849
|
"properties": {
|
|
@@ -206219,6 +207895,7 @@
|
|
|
206219
207895
|
"fieldMetadata.valueField",
|
|
206220
207896
|
"fieldMetadata.displayField",
|
|
206221
207897
|
"fieldMetadata.searchable",
|
|
207898
|
+
"fieldMetadata.actions",
|
|
206222
207899
|
"fieldMetadata.dialog"
|
|
206223
207900
|
],
|
|
206224
207901
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -206252,7 +207929,7 @@
|
|
|
206252
207929
|
"examples": [
|
|
206253
207930
|
{
|
|
206254
207931
|
"id": "configure-entity-lookup",
|
|
206255
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
207932
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
206256
207933
|
"operationId": "field.entityLookup.configure",
|
|
206257
207934
|
"params": {
|
|
206258
207935
|
"optionSource": {
|
|
@@ -206276,6 +207953,11 @@
|
|
|
206276
207953
|
"valueField": "id",
|
|
206277
207954
|
"displayField": "name",
|
|
206278
207955
|
"searchable": true,
|
|
207956
|
+
"actions": {
|
|
207957
|
+
"showDetail": true,
|
|
207958
|
+
"showChange": false,
|
|
207959
|
+
"showClear": true
|
|
207960
|
+
},
|
|
206279
207961
|
"dialog": {
|
|
206280
207962
|
"enabled": true,
|
|
206281
207963
|
"size": "lg",
|
|
@@ -209728,6 +211410,29 @@
|
|
|
209728
211410
|
"searchable": {
|
|
209729
211411
|
"type": "boolean"
|
|
209730
211412
|
},
|
|
211413
|
+
"actions": {
|
|
211414
|
+
"type": "object",
|
|
211415
|
+
"properties": {
|
|
211416
|
+
"showDetail": {
|
|
211417
|
+
"type": "boolean"
|
|
211418
|
+
},
|
|
211419
|
+
"showChange": {
|
|
211420
|
+
"type": "boolean"
|
|
211421
|
+
},
|
|
211422
|
+
"showCopyCode": {
|
|
211423
|
+
"type": "boolean"
|
|
211424
|
+
},
|
|
211425
|
+
"showCopyId": {
|
|
211426
|
+
"type": "boolean"
|
|
211427
|
+
},
|
|
211428
|
+
"showCreate": {
|
|
211429
|
+
"type": "boolean"
|
|
211430
|
+
},
|
|
211431
|
+
"showClear": {
|
|
211432
|
+
"type": "boolean"
|
|
211433
|
+
}
|
|
211434
|
+
}
|
|
211435
|
+
},
|
|
209731
211436
|
"dialog": {
|
|
209732
211437
|
"type": "object",
|
|
209733
211438
|
"properties": {
|
|
@@ -209779,6 +211484,7 @@
|
|
|
209779
211484
|
"fieldMetadata.valueField",
|
|
209780
211485
|
"fieldMetadata.displayField",
|
|
209781
211486
|
"fieldMetadata.searchable",
|
|
211487
|
+
"fieldMetadata.actions",
|
|
209782
211488
|
"fieldMetadata.dialog"
|
|
209783
211489
|
],
|
|
209784
211490
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -209812,7 +211518,7 @@
|
|
|
209812
211518
|
"examples": [
|
|
209813
211519
|
{
|
|
209814
211520
|
"id": "configure-entity-lookup",
|
|
209815
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
211521
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
209816
211522
|
"operationId": "field.entityLookup.configure",
|
|
209817
211523
|
"params": {
|
|
209818
211524
|
"optionSource": {
|
|
@@ -209836,6 +211542,11 @@
|
|
|
209836
211542
|
"valueField": "id",
|
|
209837
211543
|
"displayField": "name",
|
|
209838
211544
|
"searchable": true,
|
|
211545
|
+
"actions": {
|
|
211546
|
+
"showDetail": true,
|
|
211547
|
+
"showChange": false,
|
|
211548
|
+
"showClear": true
|
|
211549
|
+
},
|
|
209839
211550
|
"dialog": {
|
|
209840
211551
|
"enabled": true,
|
|
209841
211552
|
"size": "lg",
|
|
@@ -213311,6 +215022,29 @@
|
|
|
213311
215022
|
"searchable": {
|
|
213312
215023
|
"type": "boolean"
|
|
213313
215024
|
},
|
|
215025
|
+
"actions": {
|
|
215026
|
+
"type": "object",
|
|
215027
|
+
"properties": {
|
|
215028
|
+
"showDetail": {
|
|
215029
|
+
"type": "boolean"
|
|
215030
|
+
},
|
|
215031
|
+
"showChange": {
|
|
215032
|
+
"type": "boolean"
|
|
215033
|
+
},
|
|
215034
|
+
"showCopyCode": {
|
|
215035
|
+
"type": "boolean"
|
|
215036
|
+
},
|
|
215037
|
+
"showCopyId": {
|
|
215038
|
+
"type": "boolean"
|
|
215039
|
+
},
|
|
215040
|
+
"showCreate": {
|
|
215041
|
+
"type": "boolean"
|
|
215042
|
+
},
|
|
215043
|
+
"showClear": {
|
|
215044
|
+
"type": "boolean"
|
|
215045
|
+
}
|
|
215046
|
+
}
|
|
215047
|
+
},
|
|
213314
215048
|
"dialog": {
|
|
213315
215049
|
"type": "object",
|
|
213316
215050
|
"properties": {
|
|
@@ -213362,6 +215096,7 @@
|
|
|
213362
215096
|
"fieldMetadata.valueField",
|
|
213363
215097
|
"fieldMetadata.displayField",
|
|
213364
215098
|
"fieldMetadata.searchable",
|
|
215099
|
+
"fieldMetadata.actions",
|
|
213365
215100
|
"fieldMetadata.dialog"
|
|
213366
215101
|
],
|
|
213367
215102
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -213395,7 +215130,7 @@
|
|
|
213395
215130
|
"examples": [
|
|
213396
215131
|
{
|
|
213397
215132
|
"id": "configure-entity-lookup",
|
|
213398
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
215133
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
213399
215134
|
"operationId": "field.entityLookup.configure",
|
|
213400
215135
|
"params": {
|
|
213401
215136
|
"optionSource": {
|
|
@@ -213419,6 +215154,11 @@
|
|
|
213419
215154
|
"valueField": "id",
|
|
213420
215155
|
"displayField": "name",
|
|
213421
215156
|
"searchable": true,
|
|
215157
|
+
"actions": {
|
|
215158
|
+
"showDetail": true,
|
|
215159
|
+
"showChange": false,
|
|
215160
|
+
"showClear": true
|
|
215161
|
+
},
|
|
213422
215162
|
"dialog": {
|
|
213423
215163
|
"enabled": true,
|
|
213424
215164
|
"size": "lg",
|
|
@@ -216894,6 +218634,29 @@
|
|
|
216894
218634
|
"searchable": {
|
|
216895
218635
|
"type": "boolean"
|
|
216896
218636
|
},
|
|
218637
|
+
"actions": {
|
|
218638
|
+
"type": "object",
|
|
218639
|
+
"properties": {
|
|
218640
|
+
"showDetail": {
|
|
218641
|
+
"type": "boolean"
|
|
218642
|
+
},
|
|
218643
|
+
"showChange": {
|
|
218644
|
+
"type": "boolean"
|
|
218645
|
+
},
|
|
218646
|
+
"showCopyCode": {
|
|
218647
|
+
"type": "boolean"
|
|
218648
|
+
},
|
|
218649
|
+
"showCopyId": {
|
|
218650
|
+
"type": "boolean"
|
|
218651
|
+
},
|
|
218652
|
+
"showCreate": {
|
|
218653
|
+
"type": "boolean"
|
|
218654
|
+
},
|
|
218655
|
+
"showClear": {
|
|
218656
|
+
"type": "boolean"
|
|
218657
|
+
}
|
|
218658
|
+
}
|
|
218659
|
+
},
|
|
216897
218660
|
"dialog": {
|
|
216898
218661
|
"type": "object",
|
|
216899
218662
|
"properties": {
|
|
@@ -216945,6 +218708,7 @@
|
|
|
216945
218708
|
"fieldMetadata.valueField",
|
|
216946
218709
|
"fieldMetadata.displayField",
|
|
216947
218710
|
"fieldMetadata.searchable",
|
|
218711
|
+
"fieldMetadata.actions",
|
|
216948
218712
|
"fieldMetadata.dialog"
|
|
216949
218713
|
],
|
|
216950
218714
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -216978,7 +218742,7 @@
|
|
|
216978
218742
|
"examples": [
|
|
216979
218743
|
{
|
|
216980
218744
|
"id": "configure-entity-lookup",
|
|
216981
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
218745
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
216982
218746
|
"operationId": "field.entityLookup.configure",
|
|
216983
218747
|
"params": {
|
|
216984
218748
|
"optionSource": {
|
|
@@ -217002,6 +218766,11 @@
|
|
|
217002
218766
|
"valueField": "id",
|
|
217003
218767
|
"displayField": "name",
|
|
217004
218768
|
"searchable": true,
|
|
218769
|
+
"actions": {
|
|
218770
|
+
"showDetail": true,
|
|
218771
|
+
"showChange": false,
|
|
218772
|
+
"showClear": true
|
|
218773
|
+
},
|
|
217005
218774
|
"dialog": {
|
|
217006
218775
|
"enabled": true,
|
|
217007
218776
|
"size": "lg",
|
|
@@ -220471,6 +222240,29 @@
|
|
|
220471
222240
|
"searchable": {
|
|
220472
222241
|
"type": "boolean"
|
|
220473
222242
|
},
|
|
222243
|
+
"actions": {
|
|
222244
|
+
"type": "object",
|
|
222245
|
+
"properties": {
|
|
222246
|
+
"showDetail": {
|
|
222247
|
+
"type": "boolean"
|
|
222248
|
+
},
|
|
222249
|
+
"showChange": {
|
|
222250
|
+
"type": "boolean"
|
|
222251
|
+
},
|
|
222252
|
+
"showCopyCode": {
|
|
222253
|
+
"type": "boolean"
|
|
222254
|
+
},
|
|
222255
|
+
"showCopyId": {
|
|
222256
|
+
"type": "boolean"
|
|
222257
|
+
},
|
|
222258
|
+
"showCreate": {
|
|
222259
|
+
"type": "boolean"
|
|
222260
|
+
},
|
|
222261
|
+
"showClear": {
|
|
222262
|
+
"type": "boolean"
|
|
222263
|
+
}
|
|
222264
|
+
}
|
|
222265
|
+
},
|
|
220474
222266
|
"dialog": {
|
|
220475
222267
|
"type": "object",
|
|
220476
222268
|
"properties": {
|
|
@@ -220522,6 +222314,7 @@
|
|
|
220522
222314
|
"fieldMetadata.valueField",
|
|
220523
222315
|
"fieldMetadata.displayField",
|
|
220524
222316
|
"fieldMetadata.searchable",
|
|
222317
|
+
"fieldMetadata.actions",
|
|
220525
222318
|
"fieldMetadata.dialog"
|
|
220526
222319
|
],
|
|
220527
222320
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -220555,7 +222348,7 @@
|
|
|
220555
222348
|
"examples": [
|
|
220556
222349
|
{
|
|
220557
222350
|
"id": "configure-entity-lookup",
|
|
220558
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
222351
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
220559
222352
|
"operationId": "field.entityLookup.configure",
|
|
220560
222353
|
"params": {
|
|
220561
222354
|
"optionSource": {
|
|
@@ -220579,6 +222372,11 @@
|
|
|
220579
222372
|
"valueField": "id",
|
|
220580
222373
|
"displayField": "name",
|
|
220581
222374
|
"searchable": true,
|
|
222375
|
+
"actions": {
|
|
222376
|
+
"showDetail": true,
|
|
222377
|
+
"showChange": false,
|
|
222378
|
+
"showClear": true
|
|
222379
|
+
},
|
|
220582
222380
|
"dialog": {
|
|
220583
222381
|
"enabled": true,
|
|
220584
222382
|
"size": "lg",
|
|
@@ -224055,6 +225853,29 @@
|
|
|
224055
225853
|
"searchable": {
|
|
224056
225854
|
"type": "boolean"
|
|
224057
225855
|
},
|
|
225856
|
+
"actions": {
|
|
225857
|
+
"type": "object",
|
|
225858
|
+
"properties": {
|
|
225859
|
+
"showDetail": {
|
|
225860
|
+
"type": "boolean"
|
|
225861
|
+
},
|
|
225862
|
+
"showChange": {
|
|
225863
|
+
"type": "boolean"
|
|
225864
|
+
},
|
|
225865
|
+
"showCopyCode": {
|
|
225866
|
+
"type": "boolean"
|
|
225867
|
+
},
|
|
225868
|
+
"showCopyId": {
|
|
225869
|
+
"type": "boolean"
|
|
225870
|
+
},
|
|
225871
|
+
"showCreate": {
|
|
225872
|
+
"type": "boolean"
|
|
225873
|
+
},
|
|
225874
|
+
"showClear": {
|
|
225875
|
+
"type": "boolean"
|
|
225876
|
+
}
|
|
225877
|
+
}
|
|
225878
|
+
},
|
|
224058
225879
|
"dialog": {
|
|
224059
225880
|
"type": "object",
|
|
224060
225881
|
"properties": {
|
|
@@ -224106,6 +225927,7 @@
|
|
|
224106
225927
|
"fieldMetadata.valueField",
|
|
224107
225928
|
"fieldMetadata.displayField",
|
|
224108
225929
|
"fieldMetadata.searchable",
|
|
225930
|
+
"fieldMetadata.actions",
|
|
224109
225931
|
"fieldMetadata.dialog"
|
|
224110
225932
|
],
|
|
224111
225933
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -224139,7 +225961,7 @@
|
|
|
224139
225961
|
"examples": [
|
|
224140
225962
|
{
|
|
224141
225963
|
"id": "configure-entity-lookup",
|
|
224142
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
225964
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
224143
225965
|
"operationId": "field.entityLookup.configure",
|
|
224144
225966
|
"params": {
|
|
224145
225967
|
"optionSource": {
|
|
@@ -224163,6 +225985,11 @@
|
|
|
224163
225985
|
"valueField": "id",
|
|
224164
225986
|
"displayField": "name",
|
|
224165
225987
|
"searchable": true,
|
|
225988
|
+
"actions": {
|
|
225989
|
+
"showDetail": true,
|
|
225990
|
+
"showChange": false,
|
|
225991
|
+
"showClear": true
|
|
225992
|
+
},
|
|
224166
225993
|
"dialog": {
|
|
224167
225994
|
"enabled": true,
|
|
224168
225995
|
"size": "lg",
|
|
@@ -227642,6 +229469,29 @@
|
|
|
227642
229469
|
"searchable": {
|
|
227643
229470
|
"type": "boolean"
|
|
227644
229471
|
},
|
|
229472
|
+
"actions": {
|
|
229473
|
+
"type": "object",
|
|
229474
|
+
"properties": {
|
|
229475
|
+
"showDetail": {
|
|
229476
|
+
"type": "boolean"
|
|
229477
|
+
},
|
|
229478
|
+
"showChange": {
|
|
229479
|
+
"type": "boolean"
|
|
229480
|
+
},
|
|
229481
|
+
"showCopyCode": {
|
|
229482
|
+
"type": "boolean"
|
|
229483
|
+
},
|
|
229484
|
+
"showCopyId": {
|
|
229485
|
+
"type": "boolean"
|
|
229486
|
+
},
|
|
229487
|
+
"showCreate": {
|
|
229488
|
+
"type": "boolean"
|
|
229489
|
+
},
|
|
229490
|
+
"showClear": {
|
|
229491
|
+
"type": "boolean"
|
|
229492
|
+
}
|
|
229493
|
+
}
|
|
229494
|
+
},
|
|
227645
229495
|
"dialog": {
|
|
227646
229496
|
"type": "object",
|
|
227647
229497
|
"properties": {
|
|
@@ -227693,6 +229543,7 @@
|
|
|
227693
229543
|
"fieldMetadata.valueField",
|
|
227694
229544
|
"fieldMetadata.displayField",
|
|
227695
229545
|
"fieldMetadata.searchable",
|
|
229546
|
+
"fieldMetadata.actions",
|
|
227696
229547
|
"fieldMetadata.dialog"
|
|
227697
229548
|
],
|
|
227698
229549
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -227726,7 +229577,7 @@
|
|
|
227726
229577
|
"examples": [
|
|
227727
229578
|
{
|
|
227728
229579
|
"id": "configure-entity-lookup",
|
|
227729
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
229580
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
227730
229581
|
"operationId": "field.entityLookup.configure",
|
|
227731
229582
|
"params": {
|
|
227732
229583
|
"optionSource": {
|
|
@@ -227750,6 +229601,11 @@
|
|
|
227750
229601
|
"valueField": "id",
|
|
227751
229602
|
"displayField": "name",
|
|
227752
229603
|
"searchable": true,
|
|
229604
|
+
"actions": {
|
|
229605
|
+
"showDetail": true,
|
|
229606
|
+
"showChange": false,
|
|
229607
|
+
"showClear": true
|
|
229608
|
+
},
|
|
227753
229609
|
"dialog": {
|
|
227754
229610
|
"enabled": true,
|
|
227755
229611
|
"size": "lg",
|
|
@@ -231231,6 +233087,29 @@
|
|
|
231231
233087
|
"searchable": {
|
|
231232
233088
|
"type": "boolean"
|
|
231233
233089
|
},
|
|
233090
|
+
"actions": {
|
|
233091
|
+
"type": "object",
|
|
233092
|
+
"properties": {
|
|
233093
|
+
"showDetail": {
|
|
233094
|
+
"type": "boolean"
|
|
233095
|
+
},
|
|
233096
|
+
"showChange": {
|
|
233097
|
+
"type": "boolean"
|
|
233098
|
+
},
|
|
233099
|
+
"showCopyCode": {
|
|
233100
|
+
"type": "boolean"
|
|
233101
|
+
},
|
|
233102
|
+
"showCopyId": {
|
|
233103
|
+
"type": "boolean"
|
|
233104
|
+
},
|
|
233105
|
+
"showCreate": {
|
|
233106
|
+
"type": "boolean"
|
|
233107
|
+
},
|
|
233108
|
+
"showClear": {
|
|
233109
|
+
"type": "boolean"
|
|
233110
|
+
}
|
|
233111
|
+
}
|
|
233112
|
+
},
|
|
231234
233113
|
"dialog": {
|
|
231235
233114
|
"type": "object",
|
|
231236
233115
|
"properties": {
|
|
@@ -231282,6 +233161,7 @@
|
|
|
231282
233161
|
"fieldMetadata.valueField",
|
|
231283
233162
|
"fieldMetadata.displayField",
|
|
231284
233163
|
"fieldMetadata.searchable",
|
|
233164
|
+
"fieldMetadata.actions",
|
|
231285
233165
|
"fieldMetadata.dialog"
|
|
231286
233166
|
],
|
|
231287
233167
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -231315,7 +233195,7 @@
|
|
|
231315
233195
|
"examples": [
|
|
231316
233196
|
{
|
|
231317
233197
|
"id": "configure-entity-lookup",
|
|
231318
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
233198
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
231319
233199
|
"operationId": "field.entityLookup.configure",
|
|
231320
233200
|
"params": {
|
|
231321
233201
|
"optionSource": {
|
|
@@ -231339,6 +233219,11 @@
|
|
|
231339
233219
|
"valueField": "id",
|
|
231340
233220
|
"displayField": "name",
|
|
231341
233221
|
"searchable": true,
|
|
233222
|
+
"actions": {
|
|
233223
|
+
"showDetail": true,
|
|
233224
|
+
"showChange": false,
|
|
233225
|
+
"showClear": true
|
|
233226
|
+
},
|
|
231342
233227
|
"dialog": {
|
|
231343
233228
|
"enabled": true,
|
|
231344
233229
|
"size": "lg",
|
|
@@ -234823,6 +236708,29 @@
|
|
|
234823
236708
|
"searchable": {
|
|
234824
236709
|
"type": "boolean"
|
|
234825
236710
|
},
|
|
236711
|
+
"actions": {
|
|
236712
|
+
"type": "object",
|
|
236713
|
+
"properties": {
|
|
236714
|
+
"showDetail": {
|
|
236715
|
+
"type": "boolean"
|
|
236716
|
+
},
|
|
236717
|
+
"showChange": {
|
|
236718
|
+
"type": "boolean"
|
|
236719
|
+
},
|
|
236720
|
+
"showCopyCode": {
|
|
236721
|
+
"type": "boolean"
|
|
236722
|
+
},
|
|
236723
|
+
"showCopyId": {
|
|
236724
|
+
"type": "boolean"
|
|
236725
|
+
},
|
|
236726
|
+
"showCreate": {
|
|
236727
|
+
"type": "boolean"
|
|
236728
|
+
},
|
|
236729
|
+
"showClear": {
|
|
236730
|
+
"type": "boolean"
|
|
236731
|
+
}
|
|
236732
|
+
}
|
|
236733
|
+
},
|
|
234826
236734
|
"dialog": {
|
|
234827
236735
|
"type": "object",
|
|
234828
236736
|
"properties": {
|
|
@@ -234874,6 +236782,7 @@
|
|
|
234874
236782
|
"fieldMetadata.valueField",
|
|
234875
236783
|
"fieldMetadata.displayField",
|
|
234876
236784
|
"fieldMetadata.searchable",
|
|
236785
|
+
"fieldMetadata.actions",
|
|
234877
236786
|
"fieldMetadata.dialog"
|
|
234878
236787
|
],
|
|
234879
236788
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -234907,7 +236816,7 @@
|
|
|
234907
236816
|
"examples": [
|
|
234908
236817
|
{
|
|
234909
236818
|
"id": "configure-entity-lookup",
|
|
234910
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
236819
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
234911
236820
|
"operationId": "field.entityLookup.configure",
|
|
234912
236821
|
"params": {
|
|
234913
236822
|
"optionSource": {
|
|
@@ -234931,6 +236840,11 @@
|
|
|
234931
236840
|
"valueField": "id",
|
|
234932
236841
|
"displayField": "name",
|
|
234933
236842
|
"searchable": true,
|
|
236843
|
+
"actions": {
|
|
236844
|
+
"showDetail": true,
|
|
236845
|
+
"showChange": false,
|
|
236846
|
+
"showClear": true
|
|
236847
|
+
},
|
|
234934
236848
|
"dialog": {
|
|
234935
236849
|
"enabled": true,
|
|
234936
236850
|
"size": "lg",
|
|
@@ -238406,6 +240320,29 @@
|
|
|
238406
240320
|
"searchable": {
|
|
238407
240321
|
"type": "boolean"
|
|
238408
240322
|
},
|
|
240323
|
+
"actions": {
|
|
240324
|
+
"type": "object",
|
|
240325
|
+
"properties": {
|
|
240326
|
+
"showDetail": {
|
|
240327
|
+
"type": "boolean"
|
|
240328
|
+
},
|
|
240329
|
+
"showChange": {
|
|
240330
|
+
"type": "boolean"
|
|
240331
|
+
},
|
|
240332
|
+
"showCopyCode": {
|
|
240333
|
+
"type": "boolean"
|
|
240334
|
+
},
|
|
240335
|
+
"showCopyId": {
|
|
240336
|
+
"type": "boolean"
|
|
240337
|
+
},
|
|
240338
|
+
"showCreate": {
|
|
240339
|
+
"type": "boolean"
|
|
240340
|
+
},
|
|
240341
|
+
"showClear": {
|
|
240342
|
+
"type": "boolean"
|
|
240343
|
+
}
|
|
240344
|
+
}
|
|
240345
|
+
},
|
|
238409
240346
|
"dialog": {
|
|
238410
240347
|
"type": "object",
|
|
238411
240348
|
"properties": {
|
|
@@ -238457,6 +240394,7 @@
|
|
|
238457
240394
|
"fieldMetadata.valueField",
|
|
238458
240395
|
"fieldMetadata.displayField",
|
|
238459
240396
|
"fieldMetadata.searchable",
|
|
240397
|
+
"fieldMetadata.actions",
|
|
238460
240398
|
"fieldMetadata.dialog"
|
|
238461
240399
|
],
|
|
238462
240400
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -238490,7 +240428,7 @@
|
|
|
238490
240428
|
"examples": [
|
|
238491
240429
|
{
|
|
238492
240430
|
"id": "configure-entity-lookup",
|
|
238493
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
240431
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
238494
240432
|
"operationId": "field.entityLookup.configure",
|
|
238495
240433
|
"params": {
|
|
238496
240434
|
"optionSource": {
|
|
@@ -238514,6 +240452,11 @@
|
|
|
238514
240452
|
"valueField": "id",
|
|
238515
240453
|
"displayField": "name",
|
|
238516
240454
|
"searchable": true,
|
|
240455
|
+
"actions": {
|
|
240456
|
+
"showDetail": true,
|
|
240457
|
+
"showChange": false,
|
|
240458
|
+
"showClear": true
|
|
240459
|
+
},
|
|
238517
240460
|
"dialog": {
|
|
238518
240461
|
"enabled": true,
|
|
238519
240462
|
"size": "lg",
|
|
@@ -241998,6 +243941,29 @@
|
|
|
241998
243941
|
"searchable": {
|
|
241999
243942
|
"type": "boolean"
|
|
242000
243943
|
},
|
|
243944
|
+
"actions": {
|
|
243945
|
+
"type": "object",
|
|
243946
|
+
"properties": {
|
|
243947
|
+
"showDetail": {
|
|
243948
|
+
"type": "boolean"
|
|
243949
|
+
},
|
|
243950
|
+
"showChange": {
|
|
243951
|
+
"type": "boolean"
|
|
243952
|
+
},
|
|
243953
|
+
"showCopyCode": {
|
|
243954
|
+
"type": "boolean"
|
|
243955
|
+
},
|
|
243956
|
+
"showCopyId": {
|
|
243957
|
+
"type": "boolean"
|
|
243958
|
+
},
|
|
243959
|
+
"showCreate": {
|
|
243960
|
+
"type": "boolean"
|
|
243961
|
+
},
|
|
243962
|
+
"showClear": {
|
|
243963
|
+
"type": "boolean"
|
|
243964
|
+
}
|
|
243965
|
+
}
|
|
243966
|
+
},
|
|
242001
243967
|
"dialog": {
|
|
242002
243968
|
"type": "object",
|
|
242003
243969
|
"properties": {
|
|
@@ -242049,6 +244015,7 @@
|
|
|
242049
244015
|
"fieldMetadata.valueField",
|
|
242050
244016
|
"fieldMetadata.displayField",
|
|
242051
244017
|
"fieldMetadata.searchable",
|
|
244018
|
+
"fieldMetadata.actions",
|
|
242052
244019
|
"fieldMetadata.dialog"
|
|
242053
244020
|
],
|
|
242054
244021
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -242082,7 +244049,7 @@
|
|
|
242082
244049
|
"examples": [
|
|
242083
244050
|
{
|
|
242084
244051
|
"id": "configure-entity-lookup",
|
|
242085
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
244052
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
242086
244053
|
"operationId": "field.entityLookup.configure",
|
|
242087
244054
|
"params": {
|
|
242088
244055
|
"optionSource": {
|
|
@@ -242106,6 +244073,11 @@
|
|
|
242106
244073
|
"valueField": "id",
|
|
242107
244074
|
"displayField": "name",
|
|
242108
244075
|
"searchable": true,
|
|
244076
|
+
"actions": {
|
|
244077
|
+
"showDetail": true,
|
|
244078
|
+
"showChange": false,
|
|
244079
|
+
"showClear": true
|
|
244080
|
+
},
|
|
242109
244081
|
"dialog": {
|
|
242110
244082
|
"enabled": true,
|
|
242111
244083
|
"size": "lg",
|
|
@@ -245558,6 +247530,29 @@
|
|
|
245558
247530
|
"searchable": {
|
|
245559
247531
|
"type": "boolean"
|
|
245560
247532
|
},
|
|
247533
|
+
"actions": {
|
|
247534
|
+
"type": "object",
|
|
247535
|
+
"properties": {
|
|
247536
|
+
"showDetail": {
|
|
247537
|
+
"type": "boolean"
|
|
247538
|
+
},
|
|
247539
|
+
"showChange": {
|
|
247540
|
+
"type": "boolean"
|
|
247541
|
+
},
|
|
247542
|
+
"showCopyCode": {
|
|
247543
|
+
"type": "boolean"
|
|
247544
|
+
},
|
|
247545
|
+
"showCopyId": {
|
|
247546
|
+
"type": "boolean"
|
|
247547
|
+
},
|
|
247548
|
+
"showCreate": {
|
|
247549
|
+
"type": "boolean"
|
|
247550
|
+
},
|
|
247551
|
+
"showClear": {
|
|
247552
|
+
"type": "boolean"
|
|
247553
|
+
}
|
|
247554
|
+
}
|
|
247555
|
+
},
|
|
245561
247556
|
"dialog": {
|
|
245562
247557
|
"type": "object",
|
|
245563
247558
|
"properties": {
|
|
@@ -245609,6 +247604,7 @@
|
|
|
245609
247604
|
"fieldMetadata.valueField",
|
|
245610
247605
|
"fieldMetadata.displayField",
|
|
245611
247606
|
"fieldMetadata.searchable",
|
|
247607
|
+
"fieldMetadata.actions",
|
|
245612
247608
|
"fieldMetadata.dialog"
|
|
245613
247609
|
],
|
|
245614
247610
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -245642,7 +247638,7 @@
|
|
|
245642
247638
|
"examples": [
|
|
245643
247639
|
{
|
|
245644
247640
|
"id": "configure-entity-lookup",
|
|
245645
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
247641
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
245646
247642
|
"operationId": "field.entityLookup.configure",
|
|
245647
247643
|
"params": {
|
|
245648
247644
|
"optionSource": {
|
|
@@ -245666,6 +247662,11 @@
|
|
|
245666
247662
|
"valueField": "id",
|
|
245667
247663
|
"displayField": "name",
|
|
245668
247664
|
"searchable": true,
|
|
247665
|
+
"actions": {
|
|
247666
|
+
"showDetail": true,
|
|
247667
|
+
"showChange": false,
|
|
247668
|
+
"showClear": true
|
|
247669
|
+
},
|
|
245669
247670
|
"dialog": {
|
|
245670
247671
|
"enabled": true,
|
|
245671
247672
|
"size": "lg",
|
|
@@ -249135,6 +251136,29 @@
|
|
|
249135
251136
|
"searchable": {
|
|
249136
251137
|
"type": "boolean"
|
|
249137
251138
|
},
|
|
251139
|
+
"actions": {
|
|
251140
|
+
"type": "object",
|
|
251141
|
+
"properties": {
|
|
251142
|
+
"showDetail": {
|
|
251143
|
+
"type": "boolean"
|
|
251144
|
+
},
|
|
251145
|
+
"showChange": {
|
|
251146
|
+
"type": "boolean"
|
|
251147
|
+
},
|
|
251148
|
+
"showCopyCode": {
|
|
251149
|
+
"type": "boolean"
|
|
251150
|
+
},
|
|
251151
|
+
"showCopyId": {
|
|
251152
|
+
"type": "boolean"
|
|
251153
|
+
},
|
|
251154
|
+
"showCreate": {
|
|
251155
|
+
"type": "boolean"
|
|
251156
|
+
},
|
|
251157
|
+
"showClear": {
|
|
251158
|
+
"type": "boolean"
|
|
251159
|
+
}
|
|
251160
|
+
}
|
|
251161
|
+
},
|
|
249138
251162
|
"dialog": {
|
|
249139
251163
|
"type": "object",
|
|
249140
251164
|
"properties": {
|
|
@@ -249186,6 +251210,7 @@
|
|
|
249186
251210
|
"fieldMetadata.valueField",
|
|
249187
251211
|
"fieldMetadata.displayField",
|
|
249188
251212
|
"fieldMetadata.searchable",
|
|
251213
|
+
"fieldMetadata.actions",
|
|
249189
251214
|
"fieldMetadata.dialog"
|
|
249190
251215
|
],
|
|
249191
251216
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -249219,7 +251244,7 @@
|
|
|
249219
251244
|
"examples": [
|
|
249220
251245
|
{
|
|
249221
251246
|
"id": "configure-entity-lookup",
|
|
249222
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
251247
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
249223
251248
|
"operationId": "field.entityLookup.configure",
|
|
249224
251249
|
"params": {
|
|
249225
251250
|
"optionSource": {
|
|
@@ -249243,6 +251268,11 @@
|
|
|
249243
251268
|
"valueField": "id",
|
|
249244
251269
|
"displayField": "name",
|
|
249245
251270
|
"searchable": true,
|
|
251271
|
+
"actions": {
|
|
251272
|
+
"showDetail": true,
|
|
251273
|
+
"showChange": false,
|
|
251274
|
+
"showClear": true
|
|
251275
|
+
},
|
|
249246
251276
|
"dialog": {
|
|
249247
251277
|
"enabled": true,
|
|
249248
251278
|
"size": "lg",
|
|
@@ -252724,6 +254754,29 @@
|
|
|
252724
254754
|
"searchable": {
|
|
252725
254755
|
"type": "boolean"
|
|
252726
254756
|
},
|
|
254757
|
+
"actions": {
|
|
254758
|
+
"type": "object",
|
|
254759
|
+
"properties": {
|
|
254760
|
+
"showDetail": {
|
|
254761
|
+
"type": "boolean"
|
|
254762
|
+
},
|
|
254763
|
+
"showChange": {
|
|
254764
|
+
"type": "boolean"
|
|
254765
|
+
},
|
|
254766
|
+
"showCopyCode": {
|
|
254767
|
+
"type": "boolean"
|
|
254768
|
+
},
|
|
254769
|
+
"showCopyId": {
|
|
254770
|
+
"type": "boolean"
|
|
254771
|
+
},
|
|
254772
|
+
"showCreate": {
|
|
254773
|
+
"type": "boolean"
|
|
254774
|
+
},
|
|
254775
|
+
"showClear": {
|
|
254776
|
+
"type": "boolean"
|
|
254777
|
+
}
|
|
254778
|
+
}
|
|
254779
|
+
},
|
|
252727
254780
|
"dialog": {
|
|
252728
254781
|
"type": "object",
|
|
252729
254782
|
"properties": {
|
|
@@ -252775,6 +254828,7 @@
|
|
|
252775
254828
|
"fieldMetadata.valueField",
|
|
252776
254829
|
"fieldMetadata.displayField",
|
|
252777
254830
|
"fieldMetadata.searchable",
|
|
254831
|
+
"fieldMetadata.actions",
|
|
252778
254832
|
"fieldMetadata.dialog"
|
|
252779
254833
|
],
|
|
252780
254834
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -252808,7 +254862,7 @@
|
|
|
252808
254862
|
"examples": [
|
|
252809
254863
|
{
|
|
252810
254864
|
"id": "configure-entity-lookup",
|
|
252811
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
254865
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
252812
254866
|
"operationId": "field.entityLookup.configure",
|
|
252813
254867
|
"params": {
|
|
252814
254868
|
"optionSource": {
|
|
@@ -252832,6 +254886,11 @@
|
|
|
252832
254886
|
"valueField": "id",
|
|
252833
254887
|
"displayField": "name",
|
|
252834
254888
|
"searchable": true,
|
|
254889
|
+
"actions": {
|
|
254890
|
+
"showDetail": true,
|
|
254891
|
+
"showChange": false,
|
|
254892
|
+
"showClear": true
|
|
254893
|
+
},
|
|
252835
254894
|
"dialog": {
|
|
252836
254895
|
"enabled": true,
|
|
252837
254896
|
"size": "lg",
|
|
@@ -256314,6 +258373,29 @@
|
|
|
256314
258373
|
"searchable": {
|
|
256315
258374
|
"type": "boolean"
|
|
256316
258375
|
},
|
|
258376
|
+
"actions": {
|
|
258377
|
+
"type": "object",
|
|
258378
|
+
"properties": {
|
|
258379
|
+
"showDetail": {
|
|
258380
|
+
"type": "boolean"
|
|
258381
|
+
},
|
|
258382
|
+
"showChange": {
|
|
258383
|
+
"type": "boolean"
|
|
258384
|
+
},
|
|
258385
|
+
"showCopyCode": {
|
|
258386
|
+
"type": "boolean"
|
|
258387
|
+
},
|
|
258388
|
+
"showCopyId": {
|
|
258389
|
+
"type": "boolean"
|
|
258390
|
+
},
|
|
258391
|
+
"showCreate": {
|
|
258392
|
+
"type": "boolean"
|
|
258393
|
+
},
|
|
258394
|
+
"showClear": {
|
|
258395
|
+
"type": "boolean"
|
|
258396
|
+
}
|
|
258397
|
+
}
|
|
258398
|
+
},
|
|
256317
258399
|
"dialog": {
|
|
256318
258400
|
"type": "object",
|
|
256319
258401
|
"properties": {
|
|
@@ -256365,6 +258447,7 @@
|
|
|
256365
258447
|
"fieldMetadata.valueField",
|
|
256366
258448
|
"fieldMetadata.displayField",
|
|
256367
258449
|
"fieldMetadata.searchable",
|
|
258450
|
+
"fieldMetadata.actions",
|
|
256368
258451
|
"fieldMetadata.dialog"
|
|
256369
258452
|
],
|
|
256370
258453
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -256398,7 +258481,7 @@
|
|
|
256398
258481
|
"examples": [
|
|
256399
258482
|
{
|
|
256400
258483
|
"id": "configure-entity-lookup",
|
|
256401
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
258484
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
256402
258485
|
"operationId": "field.entityLookup.configure",
|
|
256403
258486
|
"params": {
|
|
256404
258487
|
"optionSource": {
|
|
@@ -256422,6 +258505,11 @@
|
|
|
256422
258505
|
"valueField": "id",
|
|
256423
258506
|
"displayField": "name",
|
|
256424
258507
|
"searchable": true,
|
|
258508
|
+
"actions": {
|
|
258509
|
+
"showDetail": true,
|
|
258510
|
+
"showChange": false,
|
|
258511
|
+
"showClear": true
|
|
258512
|
+
},
|
|
256425
258513
|
"dialog": {
|
|
256426
258514
|
"enabled": true,
|
|
256427
258515
|
"size": "lg",
|
|
@@ -259905,6 +261993,29 @@
|
|
|
259905
261993
|
"searchable": {
|
|
259906
261994
|
"type": "boolean"
|
|
259907
261995
|
},
|
|
261996
|
+
"actions": {
|
|
261997
|
+
"type": "object",
|
|
261998
|
+
"properties": {
|
|
261999
|
+
"showDetail": {
|
|
262000
|
+
"type": "boolean"
|
|
262001
|
+
},
|
|
262002
|
+
"showChange": {
|
|
262003
|
+
"type": "boolean"
|
|
262004
|
+
},
|
|
262005
|
+
"showCopyCode": {
|
|
262006
|
+
"type": "boolean"
|
|
262007
|
+
},
|
|
262008
|
+
"showCopyId": {
|
|
262009
|
+
"type": "boolean"
|
|
262010
|
+
},
|
|
262011
|
+
"showCreate": {
|
|
262012
|
+
"type": "boolean"
|
|
262013
|
+
},
|
|
262014
|
+
"showClear": {
|
|
262015
|
+
"type": "boolean"
|
|
262016
|
+
}
|
|
262017
|
+
}
|
|
262018
|
+
},
|
|
259908
262019
|
"dialog": {
|
|
259909
262020
|
"type": "object",
|
|
259910
262021
|
"properties": {
|
|
@@ -259956,6 +262067,7 @@
|
|
|
259956
262067
|
"fieldMetadata.valueField",
|
|
259957
262068
|
"fieldMetadata.displayField",
|
|
259958
262069
|
"fieldMetadata.searchable",
|
|
262070
|
+
"fieldMetadata.actions",
|
|
259959
262071
|
"fieldMetadata.dialog"
|
|
259960
262072
|
],
|
|
259961
262073
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -259989,7 +262101,7 @@
|
|
|
259989
262101
|
"examples": [
|
|
259990
262102
|
{
|
|
259991
262103
|
"id": "configure-entity-lookup",
|
|
259992
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
262104
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
259993
262105
|
"operationId": "field.entityLookup.configure",
|
|
259994
262106
|
"params": {
|
|
259995
262107
|
"optionSource": {
|
|
@@ -260013,6 +262125,11 @@
|
|
|
260013
262125
|
"valueField": "id",
|
|
260014
262126
|
"displayField": "name",
|
|
260015
262127
|
"searchable": true,
|
|
262128
|
+
"actions": {
|
|
262129
|
+
"showDetail": true,
|
|
262130
|
+
"showChange": false,
|
|
262131
|
+
"showClear": true
|
|
262132
|
+
},
|
|
260016
262133
|
"dialog": {
|
|
260017
262134
|
"enabled": true,
|
|
260018
262135
|
"size": "lg",
|
|
@@ -263495,6 +265612,29 @@
|
|
|
263495
265612
|
"searchable": {
|
|
263496
265613
|
"type": "boolean"
|
|
263497
265614
|
},
|
|
265615
|
+
"actions": {
|
|
265616
|
+
"type": "object",
|
|
265617
|
+
"properties": {
|
|
265618
|
+
"showDetail": {
|
|
265619
|
+
"type": "boolean"
|
|
265620
|
+
},
|
|
265621
|
+
"showChange": {
|
|
265622
|
+
"type": "boolean"
|
|
265623
|
+
},
|
|
265624
|
+
"showCopyCode": {
|
|
265625
|
+
"type": "boolean"
|
|
265626
|
+
},
|
|
265627
|
+
"showCopyId": {
|
|
265628
|
+
"type": "boolean"
|
|
265629
|
+
},
|
|
265630
|
+
"showCreate": {
|
|
265631
|
+
"type": "boolean"
|
|
265632
|
+
},
|
|
265633
|
+
"showClear": {
|
|
265634
|
+
"type": "boolean"
|
|
265635
|
+
}
|
|
265636
|
+
}
|
|
265637
|
+
},
|
|
263498
265638
|
"dialog": {
|
|
263499
265639
|
"type": "object",
|
|
263500
265640
|
"properties": {
|
|
@@ -263546,6 +265686,7 @@
|
|
|
263546
265686
|
"fieldMetadata.valueField",
|
|
263547
265687
|
"fieldMetadata.displayField",
|
|
263548
265688
|
"fieldMetadata.searchable",
|
|
265689
|
+
"fieldMetadata.actions",
|
|
263549
265690
|
"fieldMetadata.dialog"
|
|
263550
265691
|
],
|
|
263551
265692
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -263579,7 +265720,7 @@
|
|
|
263579
265720
|
"examples": [
|
|
263580
265721
|
{
|
|
263581
265722
|
"id": "configure-entity-lookup",
|
|
263582
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
265723
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
263583
265724
|
"operationId": "field.entityLookup.configure",
|
|
263584
265725
|
"params": {
|
|
263585
265726
|
"optionSource": {
|
|
@@ -263603,6 +265744,11 @@
|
|
|
263603
265744
|
"valueField": "id",
|
|
263604
265745
|
"displayField": "name",
|
|
263605
265746
|
"searchable": true,
|
|
265747
|
+
"actions": {
|
|
265748
|
+
"showDetail": true,
|
|
265749
|
+
"showChange": false,
|
|
265750
|
+
"showClear": true
|
|
265751
|
+
},
|
|
263606
265752
|
"dialog": {
|
|
263607
265753
|
"enabled": true,
|
|
263608
265754
|
"size": "lg",
|
|
@@ -267080,6 +269226,29 @@
|
|
|
267080
269226
|
"searchable": {
|
|
267081
269227
|
"type": "boolean"
|
|
267082
269228
|
},
|
|
269229
|
+
"actions": {
|
|
269230
|
+
"type": "object",
|
|
269231
|
+
"properties": {
|
|
269232
|
+
"showDetail": {
|
|
269233
|
+
"type": "boolean"
|
|
269234
|
+
},
|
|
269235
|
+
"showChange": {
|
|
269236
|
+
"type": "boolean"
|
|
269237
|
+
},
|
|
269238
|
+
"showCopyCode": {
|
|
269239
|
+
"type": "boolean"
|
|
269240
|
+
},
|
|
269241
|
+
"showCopyId": {
|
|
269242
|
+
"type": "boolean"
|
|
269243
|
+
},
|
|
269244
|
+
"showCreate": {
|
|
269245
|
+
"type": "boolean"
|
|
269246
|
+
},
|
|
269247
|
+
"showClear": {
|
|
269248
|
+
"type": "boolean"
|
|
269249
|
+
}
|
|
269250
|
+
}
|
|
269251
|
+
},
|
|
267083
269252
|
"dialog": {
|
|
267084
269253
|
"type": "object",
|
|
267085
269254
|
"properties": {
|
|
@@ -267131,6 +269300,7 @@
|
|
|
267131
269300
|
"fieldMetadata.valueField",
|
|
267132
269301
|
"fieldMetadata.displayField",
|
|
267133
269302
|
"fieldMetadata.searchable",
|
|
269303
|
+
"fieldMetadata.actions",
|
|
267134
269304
|
"fieldMetadata.dialog"
|
|
267135
269305
|
],
|
|
267136
269306
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -267164,7 +269334,7 @@
|
|
|
267164
269334
|
"examples": [
|
|
267165
269335
|
{
|
|
267166
269336
|
"id": "configure-entity-lookup",
|
|
267167
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
269337
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
267168
269338
|
"operationId": "field.entityLookup.configure",
|
|
267169
269339
|
"params": {
|
|
267170
269340
|
"optionSource": {
|
|
@@ -267188,6 +269358,11 @@
|
|
|
267188
269358
|
"valueField": "id",
|
|
267189
269359
|
"displayField": "name",
|
|
267190
269360
|
"searchable": true,
|
|
269361
|
+
"actions": {
|
|
269362
|
+
"showDetail": true,
|
|
269363
|
+
"showChange": false,
|
|
269364
|
+
"showClear": true
|
|
269365
|
+
},
|
|
267191
269366
|
"dialog": {
|
|
267192
269367
|
"enabled": true,
|
|
267193
269368
|
"size": "lg",
|
|
@@ -272259,6 +274434,29 @@
|
|
|
272259
274434
|
"searchable": {
|
|
272260
274435
|
"type": "boolean"
|
|
272261
274436
|
},
|
|
274437
|
+
"actions": {
|
|
274438
|
+
"type": "object",
|
|
274439
|
+
"properties": {
|
|
274440
|
+
"showDetail": {
|
|
274441
|
+
"type": "boolean"
|
|
274442
|
+
},
|
|
274443
|
+
"showChange": {
|
|
274444
|
+
"type": "boolean"
|
|
274445
|
+
},
|
|
274446
|
+
"showCopyCode": {
|
|
274447
|
+
"type": "boolean"
|
|
274448
|
+
},
|
|
274449
|
+
"showCopyId": {
|
|
274450
|
+
"type": "boolean"
|
|
274451
|
+
},
|
|
274452
|
+
"showCreate": {
|
|
274453
|
+
"type": "boolean"
|
|
274454
|
+
},
|
|
274455
|
+
"showClear": {
|
|
274456
|
+
"type": "boolean"
|
|
274457
|
+
}
|
|
274458
|
+
}
|
|
274459
|
+
},
|
|
272262
274460
|
"dialog": {
|
|
272263
274461
|
"type": "object",
|
|
272264
274462
|
"properties": {
|
|
@@ -272310,6 +274508,7 @@
|
|
|
272310
274508
|
"fieldMetadata.valueField",
|
|
272311
274509
|
"fieldMetadata.displayField",
|
|
272312
274510
|
"fieldMetadata.searchable",
|
|
274511
|
+
"fieldMetadata.actions",
|
|
272313
274512
|
"fieldMetadata.dialog"
|
|
272314
274513
|
],
|
|
272315
274514
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -272343,7 +274542,7 @@
|
|
|
272343
274542
|
"examples": [
|
|
272344
274543
|
{
|
|
272345
274544
|
"id": "configure-entity-lookup",
|
|
272346
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
274545
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
272347
274546
|
"operationId": "field.entityLookup.configure",
|
|
272348
274547
|
"params": {
|
|
272349
274548
|
"optionSource": {
|
|
@@ -272367,6 +274566,11 @@
|
|
|
272367
274566
|
"valueField": "id",
|
|
272368
274567
|
"displayField": "name",
|
|
272369
274568
|
"searchable": true,
|
|
274569
|
+
"actions": {
|
|
274570
|
+
"showDetail": true,
|
|
274571
|
+
"showChange": false,
|
|
274572
|
+
"showClear": true
|
|
274573
|
+
},
|
|
272370
274574
|
"dialog": {
|
|
272371
274575
|
"enabled": true,
|
|
272372
274576
|
"size": "lg",
|
|
@@ -274483,6 +276687,29 @@
|
|
|
274483
276687
|
"searchable": {
|
|
274484
276688
|
"type": "boolean"
|
|
274485
276689
|
},
|
|
276690
|
+
"actions": {
|
|
276691
|
+
"type": "object",
|
|
276692
|
+
"properties": {
|
|
276693
|
+
"showDetail": {
|
|
276694
|
+
"type": "boolean"
|
|
276695
|
+
},
|
|
276696
|
+
"showChange": {
|
|
276697
|
+
"type": "boolean"
|
|
276698
|
+
},
|
|
276699
|
+
"showCopyCode": {
|
|
276700
|
+
"type": "boolean"
|
|
276701
|
+
},
|
|
276702
|
+
"showCopyId": {
|
|
276703
|
+
"type": "boolean"
|
|
276704
|
+
},
|
|
276705
|
+
"showCreate": {
|
|
276706
|
+
"type": "boolean"
|
|
276707
|
+
},
|
|
276708
|
+
"showClear": {
|
|
276709
|
+
"type": "boolean"
|
|
276710
|
+
}
|
|
276711
|
+
}
|
|
276712
|
+
},
|
|
274486
276713
|
"dialog": {
|
|
274487
276714
|
"type": "object",
|
|
274488
276715
|
"properties": {
|
|
@@ -274534,6 +276761,7 @@
|
|
|
274534
276761
|
"fieldMetadata.valueField",
|
|
274535
276762
|
"fieldMetadata.displayField",
|
|
274536
276763
|
"fieldMetadata.searchable",
|
|
276764
|
+
"fieldMetadata.actions",
|
|
274537
276765
|
"fieldMetadata.dialog"
|
|
274538
276766
|
],
|
|
274539
276767
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -274567,7 +276795,7 @@
|
|
|
274567
276795
|
"examples": [
|
|
274568
276796
|
{
|
|
274569
276797
|
"id": "configure-entity-lookup",
|
|
274570
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
276798
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
274571
276799
|
"operationId": "field.entityLookup.configure",
|
|
274572
276800
|
"params": {
|
|
274573
276801
|
"optionSource": {
|
|
@@ -274591,6 +276819,11 @@
|
|
|
274591
276819
|
"valueField": "id",
|
|
274592
276820
|
"displayField": "name",
|
|
274593
276821
|
"searchable": true,
|
|
276822
|
+
"actions": {
|
|
276823
|
+
"showDetail": true,
|
|
276824
|
+
"showChange": false,
|
|
276825
|
+
"showClear": true
|
|
276826
|
+
},
|
|
274594
276827
|
"dialog": {
|
|
274595
276828
|
"enabled": true,
|
|
274596
276829
|
"size": "lg",
|
|
@@ -276413,9 +278646,9 @@
|
|
|
276413
278646
|
{
|
|
276414
278647
|
"chunkIndex": 21,
|
|
276415
278648
|
"chunkKind": "authoring_manifest",
|
|
276416
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"select\",\"title\":\"Select controls\",\"description\":\"Profile for select, autocomplete, async select, chips, status, sentiment and button-toggle controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-inline-async-select\",\"pdx-inline-autocomplete\",\"pdx-inline-color-label\",\"pdx-inline-multi-select\",\"pdx-inline-pipeline-status\",\"pdx-inline-searchable-select\",\"pdx-inline-select\",\"pdx-inline-sentiment\",\"pdx-material-async-select\",\"pdx-material-autocomplete\",\"pdx-material-button-toggle\",\"pdx-material-checkbox-group\",\"pdx-material-chips\",\"pdx-material-multi-select\",\"pdx-material-radio-group\",\"pdx-material-searchable-select\",\"pdx-material-select\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Option source, local options, display/value fields, search and multi-select metadata paths.\"}],\"operations\":[{\"operationId\":\"field.select.configure\",\"title\":\"Configure select field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"optionSource\":{\"type\":\"object\"},\"options\":{\"type\":\"array\"},\"valueField\":{\"type\":\"string\"},\"displayField\":{\"type\":\"string\"},\"multiple\":{\"type\":\"boolean\"},\"searchable\":{\"type\":\"boolean\"},\"async\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"option-source-valid\",\"option-identity-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.optionSource\",\"fieldMetadata.options\",\"fieldMetadata.valueField\",\"fieldMetadata.displayField\",\"fieldMetadata.multiple\",\"fieldMetadata.searchable\",\"fieldMetadata.async\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"option-source-valid\",\"level\":\"error\",\"code\":\"PDFP005\",\"description\":\"Option controls require canonical optionSource/options semantics, including cascade dependency mappings when present.\"},{\"validatorId\":\"option-identity-valid\",\"level\":\"error\",\"code\":\"PDFP006\",\"description\":\"Value and display identity fields must exist in local options or the remote option source schema.\"}],\"examples\":[{\"id\":\"configure-select-options\",\"request\":\"Configure select to store ids and display labels.\",\"operationId\":\"field.select.configure\",\"params\":{\"valueField\":\"id\",\"displayField\":\"label\",\"searchable\":true},\"isPositive\":true}]},{\"profileId\":\"entity-lookup\",\"title\":\"Entity lookup controls\",\"description\":\"Profile for entity lookup controls that bind to remote resources.\",\"appliesTo\":{\"componentIds\":[\"pdx-entity-lookup\",\"pdx-inline-entity-lookup\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Entity lookup metadata paths such as resourcePath, value/display fields and governed dialog search behavior.\"}],\"operations\":[{\"operationId\":\"field.entityLookup.configure\",\"title\":\"Configure entity lookup field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"optionSource\":{\"type\":\"object\"},\"resourcePath\":{\"type\":\"string\"},\"valueField\":{\"type\":\"string\"},\"displayField\":{\"type\":\"string\"},\"searchable\":{\"type\":\"boolean\"},\"dialog\":{\"type\":\"object\",\"properties\":{\"enabled\":{\"type\":\"boolean\"},\"title\":{\"type\":\"string\"},\"size\":{\"type\":\"string\",\"enum\":[\"sm\",\"md\",\"lg\",\"xl\",\"full\"]},\"previewPanel\":{\"type\":\"boolean\"},\"allowColumnChooser\":{\"type\":\"boolean\"},\"allowSavedViews\":{\"type\":\"boolean\"}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"entity-resource-binding-valid\",\"option-source-valid\",\"option-identity-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.optionSource\",\"fieldMetadata.resourcePath\",\"fieldMetadata.valueField\",\"fieldMetadata.displayField\",\"fieldMetadata.searchable\",\"fieldMetadata.dialog\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"entity-resource-binding-valid\",\"level\":\"error\",\"code\":\"PDFP007\",\"description\":\"Entity lookup controls require canonical resource binding and stable value/display identity fields.\"},{\"validatorId\":\"option-source-valid\",\"level\":\"error\",\"code\":\"PDFP005\",\"description\":\"Option controls require canonical optionSource/options semantics, including cascade dependency mappings when present.\"},{\"validatorId\":\"option-identity-valid\",\"level\":\"error\",\"code\":\"PDFP006\",\"description\":\"Value and display identity fields must exist in local options or the remote option source schema.\"}],\"examples\":[{\"id\":\"configure-entity-lookup\",\"request\":\"Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.\",\"operationId\":\"field.entityLookup.configure\",\"params\":{\"optionSource\":{\"key\":\"user\",\"type\":\"RESOURCE_ENTITY\",\"resourcePath\":\"/users\",\"valuePropertyPath\":\"id\",\"labelPropertyPath\":\"name\",\"includeIds\":false,\"capabilities\":{\"filter\":true,\"byIds\":true},\"dependsOn\":[\"companyId\"],\"dependencyFilterMap\":{\"companyId\":\"companyId\"}},\"valueField\":\"id\",\"displayField\":\"name\",\"searchable\":true,\"
|
|
278649
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"select\",\"title\":\"Select controls\",\"description\":\"Profile for select, autocomplete, async select, chips, status, sentiment and button-toggle controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-inline-async-select\",\"pdx-inline-autocomplete\",\"pdx-inline-color-label\",\"pdx-inline-multi-select\",\"pdx-inline-pipeline-status\",\"pdx-inline-searchable-select\",\"pdx-inline-select\",\"pdx-inline-sentiment\",\"pdx-material-async-select\",\"pdx-material-autocomplete\",\"pdx-material-button-toggle\",\"pdx-material-checkbox-group\",\"pdx-material-chips\",\"pdx-material-multi-select\",\"pdx-material-radio-group\",\"pdx-material-searchable-select\",\"pdx-material-select\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Option source, local options, display/value fields, search and multi-select metadata paths.\"}],\"operations\":[{\"operationId\":\"field.select.configure\",\"title\":\"Configure select field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"optionSource\":{\"type\":\"object\"},\"options\":{\"type\":\"array\"},\"valueField\":{\"type\":\"string\"},\"displayField\":{\"type\":\"string\"},\"multiple\":{\"type\":\"boolean\"},\"searchable\":{\"type\":\"boolean\"},\"async\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"option-source-valid\",\"option-identity-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.optionSource\",\"fieldMetadata.options\",\"fieldMetadata.valueField\",\"fieldMetadata.displayField\",\"fieldMetadata.multiple\",\"fieldMetadata.searchable\",\"fieldMetadata.async\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"option-source-valid\",\"level\":\"error\",\"code\":\"PDFP005\",\"description\":\"Option controls require canonical optionSource/options semantics, including cascade dependency mappings when present.\"},{\"validatorId\":\"option-identity-valid\",\"level\":\"error\",\"code\":\"PDFP006\",\"description\":\"Value and display identity fields must exist in local options or the remote option source schema.\"}],\"examples\":[{\"id\":\"configure-select-options\",\"request\":\"Configure select to store ids and display labels.\",\"operationId\":\"field.select.configure\",\"params\":{\"valueField\":\"id\",\"displayField\":\"label\",\"searchable\":true},\"isPositive\":true}]},{\"profileId\":\"entity-lookup\",\"title\":\"Entity lookup controls\",\"description\":\"Profile for entity lookup controls that bind to remote resources.\",\"appliesTo\":{\"componentIds\":[\"pdx-entity-lookup\",\"pdx-inline-entity-lookup\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Entity lookup metadata paths such as resourcePath, value/display fields and governed dialog search behavior.\"}],\"operations\":[{\"operationId\":\"field.entityLookup.configure\",\"title\":\"Configure entity lookup field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"optionSource\":{\"type\":\"object\"},\"resourcePath\":{\"type\":\"string\"},\"valueField\":{\"type\":\"string\"},\"displayField\":{\"type\":\"string\"},\"searchable\":{\"type\":\"boolean\"},\"actions\":{\"type\":\"object\",\"properties\":{\"showDetail\":{\"type\":\"boolean\"},\"showChange\":{\"type\":\"boolean\"},\"showCopyCode\":{\"type\":\"boolean\"},\"showCopyId\":{\"type\":\"boolean\"},\"showCreate\":{\"type\":\"boolean\"},\"showClear\":{\"type\":\"boolean\"}}},\"dialog\":{\"type\":\"object\",\"properties\":{\"enabled\":{\"type\":\"boolean\"},\"title\":{\"type\":\"string\"},\"size\":{\"type\":\"string\",\"enum\":[\"sm\",\"md\",\"lg\",\"xl\",\"full\"]},\"previewPanel\":{\"type\":\"boolean\"},\"allowColumnChooser\":{\"type\":\"boolean\"},\"allowSavedViews\":{\"type\":\"boolean\"}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"entity-resource-binding-valid\",\"option-source-valid\",\"option-identity-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.optionSource\",\"fieldMetadata.resourcePath\",\"fieldMetadata.valueField\",\"fieldMetadata.displayField\",\"fieldMetadata.searchable\",\"fieldMetadata.actions\",\"fieldMetadata.dialog\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"entity-resource-binding-valid\",\"level\":\"error\",\"code\":\"PDFP007\",\"description\":\"Entity lookup controls require canonical resource binding and stable value/display identity fields.\"},{\"validatorId\":\"option-source-valid\",\"level\":\"error\",\"code\":\"PDFP005\",\"description\":\"Option controls require canonical optionSource/options semantics, including cascade dependency mappings when present.\"},{\"validatorId\":\"option-identity-valid\",\"level\":\"error\",\"code\":\"PDFP006\",\"description\":\"Value and display identity fields must exist in local options or the remote option source schema.\"}],\"examples\":[{\"id\":\"configure-entity-lookup\",\"request\":\"Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.\",\"operationId\":\"field.entityLookup.configure\",\"params\":{\"optionSource\":{\"key\":\"user\",\"type\":\"RESOURCE_ENTITY\",\"resourcePath\":\"/users\",\"valuePropertyPath\":\"id\",\"labelPropertyPath\":\"name\",\"includeIds\":false,\"capabilities\":{\"filter\":true,\"byIds\":true},\"dependsOn\":[\"companyId\"],\"dependencyFilterMap\":{\"companyId\":\"companyId\"}},\"valueField\":\"id\",\"displayField\":\"name\",\"searchable\":true,\"actions\":{\"showDetail\":true,\"showChange\":false,\"showClear\":true},\"dialog\":{\"enabled\":true,\"size\":\"lg\",\"previewPanel\":true}},\"isPositive\":true}]}]}",
|
|
276417
278650
|
"sourcePointer": "projects/praxis-dynamic-fields/src/lib/ai/praxis-dynamic-fields-authoring-manifest.ts",
|
|
276418
|
-
"contentHash": "
|
|
278651
|
+
"contentHash": "cf109aa8fa141597b2179965c478c26047e4c58ba07accd4cc360df42dc0c1d5",
|
|
276419
278652
|
"sourceKind": "component_definition",
|
|
276420
278653
|
"sourceId": "praxis-dynamic-fields",
|
|
276421
278654
|
"corpusVersion": "1.0.0"
|
|
@@ -276423,9 +278656,9 @@
|
|
|
276423
278656
|
{
|
|
276424
278657
|
"chunkIndex": 22,
|
|
276425
278658
|
"chunkKind": "authoring_manifest",
|
|
276426
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"
|
|
278659
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"tree-select\",\"title\":\"Tree select controls\",\"description\":\"Profile for hierarchical tree select controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-inline-tree-select\",\"pdx-material-multi-select-tree\",\"pdx-material-tree-select\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Tree option metadata paths such as node id, parent id, children path, lazy loading and multi-selection.\"}],\"operations\":[{\"operationId\":\"field.treeSelect.configure\",\"title\":\"Configure tree select field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"optionSource\":{\"type\":\"object\"},\"nodeIdField\":{\"type\":\"string\"},\"parentIdField\":{\"type\":\"string\"},\"childrenField\":{\"type\":\"string\"},\"multiple\":{\"type\":\"boolean\"},\"lazyLoad\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"tree-node-identity-valid\",\"tree-option-source-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.optionSource\",\"fieldMetadata.nodeIdField\",\"fieldMetadata.parentIdField\",\"fieldMetadata.childrenField\",\"fieldMetadata.multiple\",\"fieldMetadata.lazyLoad\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"tree-node-identity-valid\",\"level\":\"error\",\"code\":\"PDFP008\",\"description\":\"Tree controls require stable node identity and valid parent/children references.\"},{\"validatorId\":\"tree-option-source-valid\",\"level\":\"error\",\"code\":\"PDFP009\",\"description\":\"Tree option sources must expose hierarchical data compatible with the configured node fields.\"}],\"examples\":[{\"id\":\"configure-tree-select\",\"request\":\"Configure tree select with id, parentId and children fields.\",\"operationId\":\"field.treeSelect.configure\",\"params\":{\"nodeIdField\":\"id\",\"parentIdField\":\"parentId\",\"childrenField\":\"children\"},\"isPositive\":true}]},{\"profileId\":\"list-transfer\",\"title\":\"List and transfer controls\",\"description\":\"Profile for selection-list and transfer-list controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-material-selection-list\",\"pdx-material-transfer-list\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"List option metadata paths such as options, selection mode, value field and ordering.\"}],\"operations\":[{\"operationId\":\"field.list.configure\",\"title\":\"Configure list field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"options\":{\"type\":\"array\"},\"transferOptions\":{\"type\":\"array\"},\"valueField\":{\"type\":\"string\"},\"displayField\":{\"type\":\"string\"},\"multiple\":{\"type\":\"boolean\"},\"ordered\":{\"type\":\"boolean\"},\"maxSelections\":{\"type\":\"number\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"list-selection-valid\",\"option-identity-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.options\",\"fieldMetadata.transferOptions\",\"fieldMetadata.valueField\",\"fieldMetadata.displayField\",\"fieldMetadata.multiple\",\"fieldMetadata.ordered\",\"fieldMetadata.maxSelections\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"list-selection-valid\",\"level\":\"error\",\"code\":\"PDFP010\",\"description\":\"List selection metadata must preserve stable option identity and selected value shape.\"},{\"validatorId\":\"option-identity-valid\",\"level\":\"error\",\"code\":\"PDFP006\",\"description\":\"Value and display identity fields must exist in local options or the remote option source schema.\"}],\"examples\":[{\"id\":\"configure-transfer-list\",\"request\":\"Configure transfer list to store ids and display labels with a maximum of three selected items.\",\"operationId\":\"field.list.configure\",\"params\":{\"valueField\":\"id\",\"displayField\":\"label\",\"multiple\":true,\"ordered\":true,\"maxSelections\":3},\"isPositive\":true}]},{\"profileId\":\"date\",\"title\":\"Date controls\",\"description\":\"Profile for single date, datetime, month, week, year and time picker controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-date-input\",\"pdx-datetime-local-input\",\"pdx-inline-date\",\"pdx-inline-time\",\"pdx-material-datepicker\",\"pdx-material-timepicker\",\"pdx-month-input\",\"pdx-time-input\",\"pdx-week-input\",\"pdx-year-input\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Date/time metadata paths such as min, max, timezone, locale and format.\"}],\"operations\":[{\"operationId\":\"field.date.configure\",\"title\":\"Configure date or time field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"min\":{\"type\":\"string\"},\"max\":{\"type\":\"string\"},\"timezone\":{\"type\":\"string\"},\"locale\":{\"type\":\"string\"},\"format\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"temporal-bounds-valid\",\"timezone-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.min\",\"fieldMetadata.max\",\"fieldMetadata.timezone\",\"fieldMetadata.locale\",\"fieldMetadata.format\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"temporal-bounds-valid\",\"level\":\"error\",\"code\":\"PDFP011\",\"description\":\"Temporal min and max values must be valid and ordered for the target control granularity.\"},{\"validatorId\":\"timezone-valid\",\"level\":\"error\",\"code\":\"PDFP012\",\"description\":\"Timezone configuration must use a valid named timezone when the control is timezone-sensitive.\"}],\"examples\":[{\"id\":\"configure-date-min-max\",\"request\":\"Limit the date field to the current year in Sao Paulo timezone.\",\"operationId\":\"field.date.configure\",\"params\":{\"min\":\"2026-01-01\",\"max\":\"2026-12-31\",\"timezone\":\"America/Sao_Paulo\"},\"isPositive\":true}]}]}",
|
|
276427
278660
|
"sourcePointer": "projects/praxis-dynamic-fields/src/lib/ai/praxis-dynamic-fields-authoring-manifest.ts",
|
|
276428
|
-
"contentHash": "
|
|
278661
|
+
"contentHash": "2e41002c93fc1e8f42949a77910cba81bd53fb4b6c1be1ebac20c121e8710cac",
|
|
276429
278662
|
"sourceKind": "component_definition",
|
|
276430
278663
|
"sourceId": "praxis-dynamic-fields",
|
|
276431
278664
|
"corpusVersion": "1.0.0"
|
|
@@ -276433,9 +278666,9 @@
|
|
|
276433
278666
|
{
|
|
276434
278667
|
"chunkIndex": 23,
|
|
276435
278668
|
"chunkKind": "authoring_manifest",
|
|
276436
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"
|
|
278669
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"date-range\",\"title\":\"Date range controls\",\"description\":\"Profile for date range, month range, year range, period and relative-period controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-inline-date-range\",\"pdx-inline-month-range\",\"pdx-inline-period-range\",\"pdx-inline-relative-period\",\"pdx-inline-year-range\",\"pdx-material-date-range\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Date range metadata paths such as start/end field mapping, min/max and presets.\"}],\"operations\":[{\"operationId\":\"field.dateRange.configure\",\"title\":\"Configure date range field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"startField\":{\"type\":\"string\"},\"endField\":{\"type\":\"string\"},\"min\":{\"type\":\"string\"},\"max\":{\"type\":\"string\"},\"presets\":{\"type\":\"array\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"date-range-fields-valid\",\"temporal-bounds-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.startField\",\"fieldMetadata.endField\",\"fieldMetadata.min\",\"fieldMetadata.max\",\"fieldMetadata.presets\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"date-range-fields-valid\",\"level\":\"error\",\"code\":\"PDFP013\",\"description\":\"Date range controls require distinct start/end field semantics and ordered submitted values.\"},{\"validatorId\":\"temporal-bounds-valid\",\"level\":\"error\",\"code\":\"PDFP011\",\"description\":\"Temporal min and max values must be valid and ordered for the target control granularity.\"}],\"examples\":[{\"id\":\"configure-date-range-fields\",\"request\":\"Use createdFrom and createdTo as the date range field names.\",\"operationId\":\"field.dateRange.configure\",\"params\":{\"startField\":\"createdFrom\",\"endField\":\"createdTo\"},\"isPositive\":true}]},{\"profileId\":\"time-range\",\"title\":\"Time range controls\",\"description\":\"Profile for time range controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-inline-time-range\",\"pdx-material-time-range\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Time range metadata paths such as start/end fields, step minutes and timezone.\"}],\"operations\":[{\"operationId\":\"field.timeRange.configure\",\"title\":\"Configure time range field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"startField\":{\"type\":\"string\"},\"endField\":{\"type\":\"string\"},\"stepMinutes\":{\"type\":\"number\"},\"timezone\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"time-range-fields-valid\",\"timezone-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.startField\",\"fieldMetadata.endField\",\"fieldMetadata.stepMinutes\",\"fieldMetadata.timezone\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"time-range-fields-valid\",\"level\":\"error\",\"code\":\"PDFP014\",\"description\":\"Time range controls require distinct start/end field semantics and valid interval steps.\"},{\"validatorId\":\"timezone-valid\",\"level\":\"error\",\"code\":\"PDFP012\",\"description\":\"Timezone configuration must use a valid named timezone when the control is timezone-sensitive.\"}],\"examples\":[{\"id\":\"configure-time-range-step\",\"request\":\"Configure a time range with fifteen minute increments.\",\"operationId\":\"field.timeRange.configure\",\"params\":{\"stepMinutes\":15},\"isPositive\":true}]},{\"profileId\":\"toggle\",\"title\":\"Toggle controls\",\"description\":\"Profile for boolean toggle controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-inline-toggle\",\"pdx-material-slide-toggle\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Boolean metadata paths such as true label, false label and default value.\"}],\"operations\":[{\"operationId\":\"field.toggle.configure\",\"title\":\"Configure toggle field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"trueLabel\":{\"type\":\"string\"},\"falseLabel\":{\"type\":\"string\"},\"defaultValue\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"boolean-toggle-compatible\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.trueLabel\",\"fieldMetadata.falseLabel\",\"fieldMetadata.defaultValue\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"boolean-toggle-compatible\",\"level\":\"error\",\"code\":\"PDFP015\",\"description\":\"Toggle controls must preserve boolean value semantics and not serialize labels as submitted values.\"}],\"examples\":[{\"id\":\"configure-toggle-labels\",\"request\":\"Set yes/no labels for a toggle without changing boolean submission.\",\"operationId\":\"field.toggle.configure\",\"params\":{\"trueLabel\":\"Yes\",\"falseLabel\":\"No\"},\"isPositive\":true}]},{\"profileId\":\"color\",\"title\":\"Color controls\",\"description\":\"Profile for color input and picker controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-color-input\",\"pdx-color-picker\",\"pdx-material-colorpicker\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Color metadata paths such as format, alpha support and palette presets.\"}],\"operations\":[{\"operationId\":\"field.color.configure\",\"title\":\"Configure color field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"format\":{\"enum\":[\"hex\",\"rgb\",\"rgba\"]},\"allowAlpha\":{\"type\":\"boolean\"},\"palette\":{\"type\":\"array\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"color-format-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.format\",\"fieldMetadata.allowAlpha\",\"fieldMetadata.palette\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"color-format-valid\",\"level\":\"error\",\"code\":\"PDFP016\",\"description\":\"Color values and palette entries must match the configured color format.\"}],\"examples\":[{\"id\":\"configure-color-hex-palette\",\"request\":\"Use hex colors and offer brand palette presets.\",\"operationId\":\"field.color.configure\",\"params\":{\"format\":\"hex\",\"allowAlpha\":false,\"palette\":[\"#0057B8\",\"#00A676\"]},\"isPositive\":true}]}]}",
|
|
276437
278670
|
"sourcePointer": "projects/praxis-dynamic-fields/src/lib/ai/praxis-dynamic-fields-authoring-manifest.ts",
|
|
276438
|
-
"contentHash": "
|
|
278671
|
+
"contentHash": "c1c2395262dc078da40ba4fc04c1e6c9f4e3d2b363ff25a4d8e69f9df28b0ec4",
|
|
276439
278672
|
"sourceKind": "component_definition",
|
|
276440
278673
|
"sourceId": "praxis-dynamic-fields",
|
|
276441
278674
|
"corpusVersion": "1.0.0"
|
|
@@ -276443,9 +278676,9 @@
|
|
|
276443
278676
|
{
|
|
276444
278677
|
"chunkIndex": 24,
|
|
276445
278678
|
"chunkKind": "authoring_manifest",
|
|
276446
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"file-upload\",\"title\":\"File upload controls\",\"description\":\"Profile for file upload controls that bind field metadata to accepted file types, limits and storage semantics.\",\"appliesTo\":{\"componentIds\":[\"pdx-material-file-upload\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"File upload metadata paths such as accepted types, maximum file size, multiplicity and upload endpoint binding.\"}],\"operations\":[{\"operationId\":\"field.fileUpload.configure\",\"title\":\"Configure file upload field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"accept\":{\"type\":\"array\"},\"maxFileSize\":{\"type\":\"number\"},\"multiple\":{\"type\":\"boolean\"},\"maxFiles\":{\"type\":\"number\"},\"uploadEndpoint\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"file-upload-policy-valid\",\"file-upload-endpoint-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.accept\",\"fieldMetadata.maxFileSize\",\"fieldMetadata.multiple\",\"fieldMetadata.maxFiles\",\"fieldMetadata.uploadEndpoint\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"file-upload-policy-valid\",\"level\":\"error\",\"code\":\"PDFP020\",\"description\":\"File upload controls require explicit file type, size and multiplicity constraints before storage binding.\"},{\"validatorId\":\"file-upload-endpoint-valid\",\"level\":\"error\",\"code\":\"PDFP021\",\"description\":\"Upload endpoint metadata must map to the canonical host/backend upload contract instead of an ad hoc URL.\"}],\"examples\":[{\"id\":\"configure-pdf-upload\",\"request\":\"Allow up to three PDF files with a five megabyte limit.\",\"operationId\":\"field.fileUpload.configure\",\"params\":{\"accept\":[\"application/pdf\"],\"maxFileSize\":5242880,\"multiple\":true,\"maxFiles\":3},\"isPositive\":true}]},{\"profileId\":\"collection\",\"title\":\"Collection controls\",\"description\":\"Profile for repeatable collection controls that manage array-shaped field values.\",\"appliesTo\":{\"componentIds\":[\"pdx-editable-collection\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Collection metadata paths such as item schema, minimum and maximum items, ordering and add/remove behavior.\"}],\"operations\":[{\"operationId\":\"field.collection.configure\",\"title\":\"Configure collection field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"itemSchema\":{\"type\":\"object\"},\"minItems\":{\"type\":\"number\"},\"maxItems\":{\"type\":\"number\"},\"ordered\":{\"type\":\"boolean\"},\"allowAdd\":{\"type\":\"boolean\"},\"allowRemove\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"collection-item-schema-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.itemSchema\",\"fieldMetadata.minItems\",\"fieldMetadata.maxItems\",\"fieldMetadata.ordered\",\"fieldMetadata.allowAdd\",\"fieldMetadata.allowRemove\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"collection-item-schema-valid\",\"level\":\"error\",\"code\":\"PDFP022\",\"description\":\"Collection controls require array-compatible item schema and stable item identity semantics.\"}],\"examples\":[{\"id\":\"configure-repeatable-addresses\",\"request\":\"Configure a repeatable address collection with at least one item.\",\"operationId\":\"field.collection.configure\",\"params\":{\"minItems\":1,\"ordered\":true,\"allowAdd\":true,\"allowRemove\":true},\"isPositive\":true}]}]}",
|
|
278679
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.0.0\",\"componentId\":\"praxis-dynamic-fields\",\"ownerPackage\":\"@praxisui/dynamic-fields\",\"configSchemaId\":\"FieldMetadata\",\"chunkSection\":\"controlProfiles\",\"controlProfiles\":[{\"profileId\":\"regional-document\",\"title\":\"Regional document controls\",\"description\":\"Profile for Brazilian CPF/CNPJ document input controls.\",\"appliesTo\":{\"componentIds\":[\"pdx-material-cpf-cnpj-input\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Regional document metadata paths such as document type, mask and validation mode.\"}],\"operations\":[{\"operationId\":\"field.regionalDocument.configure\",\"title\":\"Configure regional document field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"documentType\":{\"enum\":[\"cpf\",\"cnpj\",\"cpfOrCnpj\"]},\"mask\":{\"type\":\"string\"},\"validateChecksum\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"regional-document-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.documentType\",\"fieldMetadata.mask\",\"fieldMetadata.validateChecksum\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"regional-document-valid\",\"level\":\"error\",\"code\":\"PDFP017\",\"description\":\"Regional document controls must preserve document type, mask and checksum validation semantics.\"}],\"examples\":[{\"id\":\"configure-cpf-cnpj-document\",\"request\":\"Accept CPF or CNPJ and validate the document checksum.\",\"operationId\":\"field.regionalDocument.configure\",\"params\":{\"documentType\":\"cpfOrCnpj\",\"validateChecksum\":true},\"isPositive\":true}]},{\"profileId\":\"file-upload\",\"title\":\"File upload controls\",\"description\":\"Profile for file upload controls that bind field metadata to accepted file types, limits and storage semantics.\",\"appliesTo\":{\"componentIds\":[\"pdx-material-file-upload\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"File upload metadata paths such as accepted types, maximum file size, multiplicity and upload endpoint binding.\"}],\"operations\":[{\"operationId\":\"field.fileUpload.configure\",\"title\":\"Configure file upload field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"accept\":{\"type\":\"array\"},\"maxFileSize\":{\"type\":\"number\"},\"multiple\":{\"type\":\"boolean\"},\"maxFiles\":{\"type\":\"number\"},\"uploadEndpoint\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"file-upload-policy-valid\",\"file-upload-endpoint-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.accept\",\"fieldMetadata.maxFileSize\",\"fieldMetadata.multiple\",\"fieldMetadata.maxFiles\",\"fieldMetadata.uploadEndpoint\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"file-upload-policy-valid\",\"level\":\"error\",\"code\":\"PDFP020\",\"description\":\"File upload controls require explicit file type, size and multiplicity constraints before storage binding.\"},{\"validatorId\":\"file-upload-endpoint-valid\",\"level\":\"error\",\"code\":\"PDFP021\",\"description\":\"Upload endpoint metadata must map to the canonical host/backend upload contract instead of an ad hoc URL.\"}],\"examples\":[{\"id\":\"configure-pdf-upload\",\"request\":\"Allow up to three PDF files with a five megabyte limit.\",\"operationId\":\"field.fileUpload.configure\",\"params\":{\"accept\":[\"application/pdf\"],\"maxFileSize\":5242880,\"multiple\":true,\"maxFiles\":3},\"isPositive\":true}]},{\"profileId\":\"collection\",\"title\":\"Collection controls\",\"description\":\"Profile for repeatable collection controls that manage array-shaped field values.\",\"appliesTo\":{\"componentIds\":[\"pdx-editable-collection\"]},\"editableTargets\":[{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"description\":\"Collection metadata paths such as item schema, minimum and maximum items, ordering and add/remove behavior.\"}],\"operations\":[{\"operationId\":\"field.collection.configure\",\"title\":\"Configure collection field metadata\",\"scope\":\"fieldMetadataPath\",\"targetKind\":\"fieldMetadataPath\",\"target\":{\"kind\":\"fieldMetadataPath\",\"resolver\":\"field-metadata-json-path\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"minProperties\":1,\"properties\":{\"itemSchema\":{\"type\":\"object\"},\"minItems\":{\"type\":\"number\"},\"maxItems\":{\"type\":\"number\"},\"ordered\":{\"type\":\"boolean\"},\"allowAdd\":{\"type\":\"boolean\"},\"allowRemove\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"fieldMetadata\"}],\"validators\":[\"collection-item-schema-valid\",\"field-metadata-compatible\",\"editor-tooling-discovers-control\"],\"affectedPaths\":[\"fieldMetadata.itemSchema\",\"fieldMetadata.minItems\",\"fieldMetadata.maxItems\",\"fieldMetadata.ordered\",\"fieldMetadata.allowAdd\",\"fieldMetadata.allowRemove\"],\"submissionImpact\":\"affects-schema-backed-data\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"field-metadata-initialized\"]}],\"validators\":[{\"validatorId\":\"collection-item-schema-valid\",\"level\":\"error\",\"code\":\"PDFP022\",\"description\":\"Collection controls require array-compatible item schema and stable item identity semantics.\"}],\"examples\":[{\"id\":\"configure-repeatable-addresses\",\"request\":\"Configure a repeatable address collection with at least one item.\",\"operationId\":\"field.collection.configure\",\"params\":{\"minItems\":1,\"ordered\":true,\"allowAdd\":true,\"allowRemove\":true},\"isPositive\":true}]}]}",
|
|
276447
278680
|
"sourcePointer": "projects/praxis-dynamic-fields/src/lib/ai/praxis-dynamic-fields-authoring-manifest.ts",
|
|
276448
|
-
"contentHash": "
|
|
278681
|
+
"contentHash": "293ed172d632defb61dc719e529407e7862370a295a6db050547bb23311d50da",
|
|
276449
278682
|
"sourceKind": "component_definition",
|
|
276450
278683
|
"sourceId": "praxis-dynamic-fields",
|
|
276451
278684
|
"corpusVersion": "1.0.0"
|
|
@@ -280309,6 +282542,29 @@
|
|
|
280309
282542
|
"searchable": {
|
|
280310
282543
|
"type": "boolean"
|
|
280311
282544
|
},
|
|
282545
|
+
"actions": {
|
|
282546
|
+
"type": "object",
|
|
282547
|
+
"properties": {
|
|
282548
|
+
"showDetail": {
|
|
282549
|
+
"type": "boolean"
|
|
282550
|
+
},
|
|
282551
|
+
"showChange": {
|
|
282552
|
+
"type": "boolean"
|
|
282553
|
+
},
|
|
282554
|
+
"showCopyCode": {
|
|
282555
|
+
"type": "boolean"
|
|
282556
|
+
},
|
|
282557
|
+
"showCopyId": {
|
|
282558
|
+
"type": "boolean"
|
|
282559
|
+
},
|
|
282560
|
+
"showCreate": {
|
|
282561
|
+
"type": "boolean"
|
|
282562
|
+
},
|
|
282563
|
+
"showClear": {
|
|
282564
|
+
"type": "boolean"
|
|
282565
|
+
}
|
|
282566
|
+
}
|
|
282567
|
+
},
|
|
280312
282568
|
"dialog": {
|
|
280313
282569
|
"type": "object",
|
|
280314
282570
|
"properties": {
|
|
@@ -280360,6 +282616,7 @@
|
|
|
280360
282616
|
"fieldMetadata.valueField",
|
|
280361
282617
|
"fieldMetadata.displayField",
|
|
280362
282618
|
"fieldMetadata.searchable",
|
|
282619
|
+
"fieldMetadata.actions",
|
|
280363
282620
|
"fieldMetadata.dialog"
|
|
280364
282621
|
],
|
|
280365
282622
|
"submissionImpact": "affects-schema-backed-data",
|
|
@@ -280393,7 +282650,7 @@
|
|
|
280393
282650
|
"examples": [
|
|
280394
282651
|
{
|
|
280395
282652
|
"id": "configure-entity-lookup",
|
|
280396
|
-
"request": "Bind the entity lookup to users, show the name while storing the id, and provide governed advanced search.",
|
|
282653
|
+
"request": "Bind the entity lookup to users, show the name while storing the id, use the inline trigger to change the selection, and provide governed advanced search.",
|
|
280397
282654
|
"operationId": "field.entityLookup.configure",
|
|
280398
282655
|
"params": {
|
|
280399
282656
|
"optionSource": {
|
|
@@ -280417,6 +282674,11 @@
|
|
|
280417
282674
|
"valueField": "id",
|
|
280418
282675
|
"displayField": "name",
|
|
280419
282676
|
"searchable": true,
|
|
282677
|
+
"actions": {
|
|
282678
|
+
"showDetail": true,
|
|
282679
|
+
"showChange": false,
|
|
282680
|
+
"showClear": true
|
|
282681
|
+
},
|
|
280420
282682
|
"dialog": {
|
|
280421
282683
|
"enabled": true,
|
|
280422
282684
|
"size": "lg",
|